├── .eslintrc.json ├── public ├── Music.mp3 ├── images │ ├── hero.jpg │ └── logo.png ├── next.svg └── vercel.svg ├── src └── app │ ├── favicon.ico │ ├── globals.css │ ├── layout.tsx │ ├── page.tsx │ └── components │ ├── Icons │ ├── ResetIcon.tsx │ └── SettingsIcon.tsx │ ├── Config.tsx │ └── Pomodoro.tsx ├── postcss.config.js ├── next.config.js ├── .gitignore ├── tailwind.config.js ├── package.json ├── tsconfig.json ├── lib └── useWindowSize.ts ├── README.md ├── LICENSE └── pnpm-lock.yaml /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /public/Music.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnvgh/animedoro/HEAD/public/Music.mp3 -------------------------------------------------------------------------------- /src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnvgh/animedoro/HEAD/src/app/favicon.ico -------------------------------------------------------------------------------- /public/images/hero.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnvgh/animedoro/HEAD/public/images/hero.jpg -------------------------------------------------------------------------------- /public/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnvgh/animedoro/HEAD/public/images/logo.png -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | plugins: { 3 | tailwindcss: {}, 4 | autoprefixer: {}, 5 | }, 6 | } 7 | -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- 1 | /** @type {import('next').NextConfig} */ 2 | const nextConfig = { 3 | experimental: { 4 | appDir: true, 5 | }, 6 | } 7 | 8 | module.exports = nextConfig 9 | -------------------------------------------------------------------------------- /src/app/globals.css: -------------------------------------------------------------------------------- 1 | @tailwind base; 2 | @tailwind components; 3 | @tailwind utilities; 4 | 5 | body { 6 | background-size: cover; 7 | /* background-image: url(https://marketplace.canva.com/EAFQDK2NEPU/1/0/1600w/canva-purple-anime-city-desktop-wallpaper-LEFL5_yVCqY.jpg); */ 8 | } 9 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files. 2 | 3 | # dependencies 4 | /node_modules 5 | /.pnp 6 | .pnp.js 7 | 8 | # testing 9 | /coverage 10 | 11 | # next.js 12 | /.next/ 13 | /out/ 14 | 15 | # production 16 | /build 17 | 18 | # misc 19 | .DS_Store 20 | *.pem 21 | 22 | # debug 23 | npm-debug.log* 24 | yarn-debug.log* 25 | yarn-error.log* 26 | 27 | # local env files 28 | .env*.local 29 | 30 | # vercel 31 | .vercel 32 | 33 | # typescript 34 | *.tsbuildinfo 35 | next-env.d.ts 36 | -------------------------------------------------------------------------------- /src/app/layout.tsx: -------------------------------------------------------------------------------- 1 | import "./globals.css"; 2 | import { Inter } from "next/font/google"; 3 | 4 | const inter = Inter({ subsets: ["latin"] }); 5 | 6 | export const metadata = { 7 | title: "Animedoro", 8 | description: "Set your pommoro timer and watch anime while you wait!", 9 | }; 10 | 11 | export default function RootLayout({ 12 | children, 13 | }: { 14 | children: React.ReactNode; 15 | }) { 16 | return ( 17 | 18 | {children} 19 | 20 | ); 21 | } 22 | -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- 1 | /** @type {import('tailwindcss').Config} */ 2 | module.exports = { 3 | content: [ 4 | './src/pages/**/*.{js,ts,jsx,tsx,mdx}', 5 | './src/components/**/*.{js,ts,jsx,tsx,mdx}', 6 | './src/app/**/*.{js,ts,jsx,tsx,mdx}', 7 | ], 8 | theme: { 9 | extend: { 10 | backgroundImage: { 11 | 'default': "url(https://marketplace.canva.com/EAFQDK2NEPU/1/0/1600w/canva-purple-anime-city-desktop-wallpaper-LEFL5_yVCqY.jpg)", 12 | }, 13 | }, 14 | }, 15 | daisyui: { 16 | themes: ["dracula"], 17 | }, 18 | plugins: [require("daisyui")], 19 | } 20 | -------------------------------------------------------------------------------- /src/app/page.tsx: -------------------------------------------------------------------------------- 1 | import Pomodoro from "./components/Pomodoro"; 2 | 3 | const Home = () => { 4 | return ( 5 |
11 |
12 |
13 |
14 | 15 |
16 |
17 |
18 | ); 19 | }; 20 | 21 | export default Home; 22 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "animedoro", 3 | "version": "0.1.0", 4 | "private": true, 5 | "scripts": { 6 | "dev": "next dev", 7 | "build": "next build", 8 | "start": "next start", 9 | "lint": "next lint" 10 | }, 11 | "dependencies": { 12 | "@types/node": "20.0.0", 13 | "@types/react": "18.2.5", 14 | "@types/react-dom": "18.2.3", 15 | "autoprefixer": "10.4.14", 16 | "daisyui": "^2.51.6", 17 | "eslint": "8.39.0", 18 | "eslint-config-next": "13.4.0", 19 | "next": "13.4.0", 20 | "postcss": "8.4.23", 21 | "react": "18.2.0", 22 | "react-confetti": "^6.1.0", 23 | "react-dom": "18.2.0", 24 | "tailwindcss": "3.3.2", 25 | "typescript": "5.0.4" 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "target": "es5", 4 | "lib": ["dom", "dom.iterable", "esnext"], 5 | "allowJs": true, 6 | "skipLibCheck": true, 7 | "strict": true, 8 | "forceConsistentCasingInFileNames": true, 9 | "noEmit": true, 10 | "esModuleInterop": true, 11 | "module": "esnext", 12 | "moduleResolution": "node", 13 | "resolveJsonModule": true, 14 | "isolatedModules": true, 15 | "jsx": "preserve", 16 | "incremental": true, 17 | "plugins": [ 18 | { 19 | "name": "next" 20 | } 21 | ], 22 | "paths": { 23 | "@/*": ["./src/*"] 24 | } 25 | }, 26 | "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"], 27 | "exclude": ["node_modules"] 28 | } 29 | -------------------------------------------------------------------------------- /src/app/components/Icons/ResetIcon.tsx: -------------------------------------------------------------------------------- 1 | import { FC } from "react"; 2 | 3 | interface ResetIconProps {} 4 | 5 | const ResetIcon: FC = ({}) => { 6 | return ( 7 |
8 | 16 | 21 | 22 |
23 | ); 24 | }; 25 | 26 | export default ResetIcon; 27 | -------------------------------------------------------------------------------- /lib/useWindowSize.ts: -------------------------------------------------------------------------------- 1 | import { useState, useEffect } from "react"; 2 | 3 | function getWindowDimensions() { 4 | if (typeof window !== "undefined") { 5 | const { innerWidth: width, innerHeight: height } = window; 6 | return { 7 | width, 8 | height, 9 | }; 10 | } 11 | return { width: 0, height: 0 }; // Return default dimensions if window is not available 12 | } 13 | 14 | export default function useWindowDimensions() { 15 | const [windowDimensions, setWindowDimensions] = useState( 16 | getWindowDimensions() 17 | ); 18 | 19 | useEffect(() => { 20 | function handleResize() { 21 | setWindowDimensions(getWindowDimensions()); 22 | } 23 | 24 | if (typeof window !== "undefined") { 25 | window.addEventListener("resize", handleResize); 26 | return () => window.removeEventListener("resize", handleResize); 27 | } 28 | }, []); 29 | 30 | return windowDimensions; 31 | } 32 | -------------------------------------------------------------------------------- /public/next.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/Icons/SettingsIcon.tsx: -------------------------------------------------------------------------------- 1 | import { FC } from "react"; 2 | 3 | interface SettingsProps {} 4 | 5 | const Settings: FC = ({}) => { 6 | return ( 7 |
8 | 16 | 21 | 26 | 27 |
28 | ); 29 | }; 30 | 31 | export default Settings; 32 | -------------------------------------------------------------------------------- /src/app/components/Config.tsx: -------------------------------------------------------------------------------- 1 | "use client"; 2 | import { FC, useState } from "react"; 3 | 4 | interface ConfigProps { 5 | onSubmit: (workTime: number, watchTime: number) => void; 6 | } 7 | 8 | const Config: FC = ({ onSubmit }) => { 9 | const [workTime, setWorkTime] = useState(50); 10 | const [watchTime, setWatchTime] = useState(10); 11 | 12 | const handleSubmit = (e: React.FormEvent) => { 13 | e.preventDefault(); 14 | onSubmit(workTime * 60, watchTime * 60); 15 | }; 16 | 17 | return ( 18 |
19 |
20 | 30 | 40 |
41 | 49 | 55 |
56 | ); 57 | }; 58 | 59 | export default Config; 60 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Animedoro 2 | 3 | Animedoro is a Pomodoro timer application built with Next.js 13, Tailwind CSS, and TypeScript. Inspired by **[animedoro-timer](https://github.com/ankushKun/animedoro-timer)** from Senpai Ankush. 4 | 5 | ![demo.gif](https://media.discordapp.net/attachments/1110910329698914355/1110910329937985567/demo.gif?width=854&height=438) 6 | 7 | ## Features 🚀 8 | 9 | - Start and pause the timer for intense work sessions or well-deserved breaks. 10 | - Choose between work mode and watch mode. Yes, watching anime counts as being productive! 😉 11 | - Customize the duration of your work sessions and breaks. You're the boss of your time! 12 | - Witness the countdown timer ticking away, reminding you that time is fleeting. ⏳ 13 | - Get a satisfying notification sound when the timer reaches zero. Celebrate small victories! 14 | - Watch confetti rain down on your screen when you conquer your task. It's a virtual party! 🎉 15 | - Responsively designed, so you can be productive wherever you go. Time doesn't wait, and neither should you! 16 | - Spotify Playback Control: Play, Pause, Next, Previous, Shuffle, Repeat, Volume Control, and more. **(Coming soon!)** 17 | 18 | ## Technologies Used 🛠️ 19 | 20 | - Next.js 13: The React framework of my choice. 21 | - Tailwind CSS: The styling framework that magically makes your UI look amazing. 22 | - TypeScript: The type-safe language that makes your code more robust. 23 | 24 | ## Getting Started 🏁 25 | 26 | 1. Clone the repository: 27 | 28 | ```bash 29 | git clone 30 | ``` 31 | 32 | 2. Navigate to the project directory: 33 | 34 | ```bash 35 | cd animedoro 36 | ``` 37 | 38 | 3. Install the dependencies: 39 | 40 | ```bash 41 | npm install 42 | ``` 43 | 44 | 4. Run the development server: 45 | 46 | ```bash 47 | npm run dev 48 | ``` 49 | 50 | 5. Open your browser and visit http://localhost:3000 to unleash your productivity ninja! 51 | 52 | ## Usage 💡 53 | 54 | [![animedoro](https://i.ytimg.com/vi/bUjGZJIgse0/hq720.jpg?sqp=-oaymwEcCOgCEMoBSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLAj4sXHvNwa4rIq8qk7CGc74m5YHw)](https://www.youtube.com/watch?v=bUjGZJIgse0) 55 | 56 | ## License 📄 57 | 58 | This project is licensed under the MIT License. See the [LICENSE](LICENSE) file for details. 59 | 60 | --- 61 | 62 | Feel free to reach out to me if you have any questions or suggestions. I'd love to hear from you! 😊 63 | -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /src/app/components/Pomodoro.tsx: -------------------------------------------------------------------------------- 1 | /* eslint-disable react-hooks/rules-of-hooks */ 2 | "use client"; 3 | import { FC, useState, useEffect } from "react"; 4 | import Config from "./Config"; 5 | import SettingsIcon from "./Icons/SettingsIcon"; 6 | import ResetIcon from "./Icons/ResetIcon"; 7 | import useWindowSize from "../../../lib/useWindowSize"; 8 | import Confetti from "react-confetti"; 9 | 10 | interface pomodoroProps {} 11 | 12 | const pomodoro: FC = ({}) => { 13 | const [timer, setTimer] = useState(3000); 14 | const [initialTimer, setInitialTimer] = useState(3000); 15 | const [isRunning, setIsRunning] = useState(false); 16 | const [isWatching, setIsWatching] = useState(false); 17 | const [workTime, setWorkTime] = useState(50 * 60); // default work time is 50 minutes 18 | const [watchTime, setWatchTime] = useState(10 * 60); // default watch time is 10 minutes 19 | const [showConfetti, setShowConfetti] = useState(false); 20 | 21 | const { width, height } = useWindowSize(); 22 | 23 | useEffect(() => { 24 | if (isRunning && timer > 0) { 25 | const interval = setInterval(() => { 26 | setTimer((prevTimer) => prevTimer - 1); 27 | }, 1000); 28 | return () => clearInterval(interval); 29 | } else if (timer === 0) { 30 | playMusic(); 31 | sendNotification(); 32 | setIsRunning(false); 33 | setShowConfetti(true); 34 | setTimer(initialTimer); 35 | setTimeout(() => { 36 | setShowConfetti(false); 37 | }, 10000); 38 | } 39 | }, [timer, isRunning, initialTimer]); 40 | 41 | const toggleTimer = () => { 42 | setIsRunning((prevState) => !prevState); 43 | }; 44 | 45 | const resetTimer = () => { 46 | setIsRunning(false); 47 | setIsWatching(false); 48 | setTimer(initialTimer); 49 | }; 50 | 51 | const startWatching = () => { 52 | setIsWatching(true); 53 | setTimer(watchTime); 54 | setInitialTimer(watchTime); 55 | }; 56 | 57 | const startWorking = () => { 58 | setIsWatching(false); 59 | setTimer(workTime); 60 | setInitialTimer(workTime); 61 | }; 62 | 63 | const getTimer = (timer: number) => { 64 | const minutes = Math.floor(timer / 60); 65 | const seconds = timer % 60; 66 | return `${minutes < 10 ? "0" + minutes : minutes}:${ 67 | seconds < 10 ? "0" + seconds : seconds 68 | }`; 69 | }; 70 | 71 | const handleConfigSubmit = (workTime: number, watchTime: number) => { 72 | setWorkTime(workTime); 73 | setWatchTime(watchTime); 74 | if (!isWatching) { 75 | setTimer(workTime); 76 | setInitialTimer(workTime); 77 | } else { 78 | setTimer(watchTime); 79 | setInitialTimer(watchTime); 80 | } 81 | }; 82 | 83 | const playMusic = () => { 84 | const audio = new Audio( 85 | "https://dl.dropboxusercontent.com/s/52m5j7wdibcjr6k/music.mp3" 86 | ); 87 | audio.play(); 88 | }; 89 | 90 | const sendNotification = () => { 91 | if ("Notification" in window) { 92 | Notification.requestPermission().then((permission) => { 93 | if (permission === "granted") { 94 | new Notification("Timer Ended"); 95 | } 96 | }); 97 | } 98 | }; 99 | 100 | return ( 101 |
102 |

animedoro

103 |
104 |
105 | 113 | 121 |
122 |
123 |
124 |
{getTimer(timer)}
125 |
126 |
127 | 130 | 133 | 134 | 137 | 138 | 139 |
140 |
141 | 142 |
143 |
144 |
145 | {showConfetti && } 146 |
147 | ); 148 | }; 149 | 150 | export default pomodoro; 151 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 275 | d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 368 | b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | 621 | END OF TERMS AND CONDITIONS 622 | 623 | How to Apply These Terms to Your New Programs 624 | 625 | If you develop a new program, and you want it to be of the greatest 626 | possible use to the public, the best way to achieve this is to make it 627 | free software which everyone can redistribute and change under these terms. 628 | 629 | To do so, attach the following notices to the program. It is safest 630 | to attach them to the start of each source file to most effectively 631 | state the exclusion of warranty; and each file should have at least 632 | the "copyright" line and a pointer to where the full notice is found. 633 | 634 | 635 | Copyright (C) 636 | 637 | This program is free software: you can redistribute it and/or modify 638 | it under the terms of the GNU General Public License as published by 639 | the Free Software Foundation, either version 3 of the License, or 640 | (at your option) any later version. 641 | 642 | This program is distributed in the hope that it will be useful, 643 | but WITHOUT ANY WARRANTY; without even the implied warranty of 644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 | GNU General Public License for more details. 646 | 647 | You should have received a copy of the GNU General Public License 648 | along with this program. If not, see . 649 | 650 | Also add information on how to contact you by electronic and paper mail. 651 | 652 | If the program does terminal interaction, make it output a short 653 | notice like this when it starts in an interactive mode: 654 | 655 | Copyright (C) 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands `show w' and `show c' should show the appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | . 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | . -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- 1 | lockfileVersion: '6.0' 2 | 3 | dependencies: 4 | '@types/node': 5 | specifier: 20.0.0 6 | version: 20.0.0 7 | '@types/react': 8 | specifier: 18.2.5 9 | version: 18.2.5 10 | '@types/react-dom': 11 | specifier: 18.2.3 12 | version: 18.2.3 13 | autoprefixer: 14 | specifier: 10.4.14 15 | version: 10.4.14(postcss@8.4.23) 16 | daisyui: 17 | specifier: ^2.51.6 18 | version: 2.51.6(autoprefixer@10.4.14)(postcss@8.4.23) 19 | eslint: 20 | specifier: 8.39.0 21 | version: 8.39.0 22 | eslint-config-next: 23 | specifier: 13.4.0 24 | version: 13.4.0(eslint@8.39.0)(typescript@5.0.4) 25 | next: 26 | specifier: 13.4.0 27 | version: 13.4.0(react-dom@18.2.0)(react@18.2.0) 28 | postcss: 29 | specifier: 8.4.23 30 | version: 8.4.23 31 | react: 32 | specifier: 18.2.0 33 | version: 18.2.0 34 | react-confetti: 35 | specifier: ^6.1.0 36 | version: 6.1.0(react@18.2.0) 37 | react-dom: 38 | specifier: 18.2.0 39 | version: 18.2.0(react@18.2.0) 40 | tailwindcss: 41 | specifier: 3.3.2 42 | version: 3.3.2 43 | typescript: 44 | specifier: 5.0.4 45 | version: 5.0.4 46 | 47 | packages: 48 | 49 | /@alloc/quick-lru@5.2.0: 50 | resolution: {integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==} 51 | engines: {node: '>=10'} 52 | dev: false 53 | 54 | /@babel/runtime@7.21.5: 55 | resolution: {integrity: sha512-8jI69toZqqcsnqGGqwGS4Qb1VwLOEp4hz+CXPywcvjs60u3B4Pom/U/7rm4W8tMOYEB+E9wgD0mW1l3r8qlI9Q==} 56 | engines: {node: '>=6.9.0'} 57 | dependencies: 58 | regenerator-runtime: 0.13.11 59 | dev: false 60 | 61 | /@eslint-community/eslint-utils@4.4.0(eslint@8.39.0): 62 | resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==} 63 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 64 | peerDependencies: 65 | eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 66 | dependencies: 67 | eslint: 8.39.0 68 | eslint-visitor-keys: 3.4.0 69 | dev: false 70 | 71 | /@eslint-community/regexpp@4.5.1: 72 | resolution: {integrity: sha512-Z5ba73P98O1KUYCCJTUeVpja9RcGoMdncZ6T49FCUl2lN38JtCJ+3WgIDBv0AuY4WChU5PmtJmOCTlN6FZTFKQ==} 73 | engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} 74 | dev: false 75 | 76 | /@eslint/eslintrc@2.0.2: 77 | resolution: {integrity: sha512-3W4f5tDUra+pA+FzgugqL2pRimUTDJWKr7BINqOpkZrC0uYI0NIc0/JFgBROCU07HR6GieA5m3/rsPIhDmCXTQ==} 78 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 79 | dependencies: 80 | ajv: 6.12.6 81 | debug: 4.3.4 82 | espree: 9.5.1 83 | globals: 13.20.0 84 | ignore: 5.2.4 85 | import-fresh: 3.3.0 86 | js-yaml: 4.1.0 87 | minimatch: 3.1.2 88 | strip-json-comments: 3.1.1 89 | transitivePeerDependencies: 90 | - supports-color 91 | dev: false 92 | 93 | /@eslint/js@8.39.0: 94 | resolution: {integrity: sha512-kf9RB0Fg7NZfap83B3QOqOGg9QmD9yBudqQXzzOtn3i4y7ZUXe5ONeW34Gwi+TxhH4mvj72R1Zc300KUMa9Bng==} 95 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 96 | dev: false 97 | 98 | /@humanwhocodes/config-array@0.11.8: 99 | resolution: {integrity: sha512-UybHIJzJnR5Qc/MsD9Kr+RpO2h+/P1GhOwdiLPXK5TWk5sgTdu88bTD9UP+CKbPPh5Rni1u0GjAdYQLemG8g+g==} 100 | engines: {node: '>=10.10.0'} 101 | dependencies: 102 | '@humanwhocodes/object-schema': 1.2.1 103 | debug: 4.3.4 104 | minimatch: 3.1.2 105 | transitivePeerDependencies: 106 | - supports-color 107 | dev: false 108 | 109 | /@humanwhocodes/module-importer@1.0.1: 110 | resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==} 111 | engines: {node: '>=12.22'} 112 | dev: false 113 | 114 | /@humanwhocodes/object-schema@1.2.1: 115 | resolution: {integrity: sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==} 116 | dev: false 117 | 118 | /@jridgewell/gen-mapping@0.3.3: 119 | resolution: {integrity: sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==} 120 | engines: {node: '>=6.0.0'} 121 | dependencies: 122 | '@jridgewell/set-array': 1.1.2 123 | '@jridgewell/sourcemap-codec': 1.4.15 124 | '@jridgewell/trace-mapping': 0.3.18 125 | dev: false 126 | 127 | /@jridgewell/resolve-uri@3.1.0: 128 | resolution: {integrity: sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==} 129 | engines: {node: '>=6.0.0'} 130 | dev: false 131 | 132 | /@jridgewell/set-array@1.1.2: 133 | resolution: {integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==} 134 | engines: {node: '>=6.0.0'} 135 | dev: false 136 | 137 | /@jridgewell/sourcemap-codec@1.4.14: 138 | resolution: {integrity: sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==} 139 | dev: false 140 | 141 | /@jridgewell/sourcemap-codec@1.4.15: 142 | resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==} 143 | dev: false 144 | 145 | /@jridgewell/trace-mapping@0.3.18: 146 | resolution: {integrity: sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==} 147 | dependencies: 148 | '@jridgewell/resolve-uri': 3.1.0 149 | '@jridgewell/sourcemap-codec': 1.4.14 150 | dev: false 151 | 152 | /@next/env@13.4.0: 153 | resolution: {integrity: sha512-LKofmUuxwGXk2OZJSSJ2SlJE62s6z+56aRsze7chc5TPoVouLR9liTiSWxzYuVzuxk0ui2wtIjyR2tcgS1dIyw==} 154 | dev: false 155 | 156 | /@next/eslint-plugin-next@13.4.0: 157 | resolution: {integrity: sha512-ZqQi1slguDavpuNUcl9va8+WtHHpgymIW2g+4Gs9FdI+5rjAvrUqqjfCec2hi3Cjbbp7zULFQuAiPwASKHbrxw==} 158 | dependencies: 159 | glob: 7.1.7 160 | dev: false 161 | 162 | /@next/swc-darwin-arm64@13.4.0: 163 | resolution: {integrity: sha512-C39AGL3ANXA+P3cFclQjFZaJ4RHPmuBhskmyy0N3VyCntDmRrNkS4aXeNY4Xwure9IL1nuw02D8bM55I+FsbuQ==} 164 | engines: {node: '>= 10'} 165 | cpu: [arm64] 166 | os: [darwin] 167 | requiresBuild: true 168 | dev: false 169 | optional: true 170 | 171 | /@next/swc-darwin-x64@13.4.0: 172 | resolution: {integrity: sha512-nj6nx6o7rnBXjo1woZFWLk7OUs7y0SQ0k65SX62kc88GqXtYi3BCqbBznjOX8qtrO//NmtAde/Jd5qkjSgINUQ==} 173 | engines: {node: '>= 10'} 174 | cpu: [x64] 175 | os: [darwin] 176 | requiresBuild: true 177 | dev: false 178 | optional: true 179 | 180 | /@next/swc-linux-arm64-gnu@13.4.0: 181 | resolution: {integrity: sha512-FBYL7kpzI2KG3lv8gO4xVYmWcFohptjzD9RCLdXsAz+Kqz5VCJILF21DoRcz4Nwj/jMe0SO7l5kBVW4POl4EaQ==} 182 | engines: {node: '>= 10'} 183 | cpu: [arm64] 184 | os: [linux] 185 | requiresBuild: true 186 | dev: false 187 | optional: true 188 | 189 | /@next/swc-linux-arm64-musl@13.4.0: 190 | resolution: {integrity: sha512-S3htBbcovnLMgVn0z1ThrP1iAeEM43fw8B7S3KyHTAGe0I21ww4rvUkLdgPCqLNvMpv899lmG7NU5rs6rTkGvg==} 191 | engines: {node: '>= 10'} 192 | cpu: [arm64] 193 | os: [linux] 194 | requiresBuild: true 195 | dev: false 196 | optional: true 197 | 198 | /@next/swc-linux-x64-gnu@13.4.0: 199 | resolution: {integrity: sha512-H8GhCgQwFl6iWJ6azQ2tG/GY8BUg1nhPtg4Tp2kIPljdyQypTGJe8oRnPDx0N48WWvB2fNeA7LNEwzVuSidH2w==} 200 | engines: {node: '>= 10'} 201 | cpu: [x64] 202 | os: [linux] 203 | requiresBuild: true 204 | dev: false 205 | optional: true 206 | 207 | /@next/swc-linux-x64-musl@13.4.0: 208 | resolution: {integrity: sha512-mztVybRPY39NfPOA3QrRQKzYuw7A/D8ElR6ruvM1cBsXMEfF5xTzdZqfTtrE/gNTPUFug9FJPpiRpkZ4mDUl8w==} 209 | engines: {node: '>= 10'} 210 | cpu: [x64] 211 | os: [linux] 212 | requiresBuild: true 213 | dev: false 214 | optional: true 215 | 216 | /@next/swc-win32-arm64-msvc@13.4.0: 217 | resolution: {integrity: sha512-mdVh/n0QqT2uXqn8kaTywUoLxY1OYqTpiKbt5b51pDwOStqgbIbqBqG0A7XDaiqWa7RKwllOYxPlPm16EDfWUA==} 218 | engines: {node: '>= 10'} 219 | cpu: [arm64] 220 | os: [win32] 221 | requiresBuild: true 222 | dev: false 223 | optional: true 224 | 225 | /@next/swc-win32-ia32-msvc@13.4.0: 226 | resolution: {integrity: sha512-GNRqT2mqxxH0x9VthFqziBj8X8HsoBUougmLe3kOouRq/jF73LpKXG0Qs2MYkylqvv/Wg31EYjFNcJnBi1Nimg==} 227 | engines: {node: '>= 10'} 228 | cpu: [ia32] 229 | os: [win32] 230 | requiresBuild: true 231 | dev: false 232 | optional: true 233 | 234 | /@next/swc-win32-x64-msvc@13.4.0: 235 | resolution: {integrity: sha512-0AkvhUBUqeb4WKN75IW1KjPkN3HazQFA0OpMuTK+6ptJUXMaMwDDcF3sIPCI741BJ2fpODB7BPM4C63hXWEypg==} 236 | engines: {node: '>= 10'} 237 | cpu: [x64] 238 | os: [win32] 239 | requiresBuild: true 240 | dev: false 241 | optional: true 242 | 243 | /@nodelib/fs.scandir@2.1.5: 244 | resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} 245 | engines: {node: '>= 8'} 246 | dependencies: 247 | '@nodelib/fs.stat': 2.0.5 248 | run-parallel: 1.2.0 249 | dev: false 250 | 251 | /@nodelib/fs.stat@2.0.5: 252 | resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} 253 | engines: {node: '>= 8'} 254 | dev: false 255 | 256 | /@nodelib/fs.walk@1.2.8: 257 | resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} 258 | engines: {node: '>= 8'} 259 | dependencies: 260 | '@nodelib/fs.scandir': 2.1.5 261 | fastq: 1.15.0 262 | dev: false 263 | 264 | /@pkgr/utils@2.4.0: 265 | resolution: {integrity: sha512-2OCURAmRtdlL8iUDTypMrrxfwe8frXTeXaxGsVOaYtc/wrUyk8Z/0OBetM7cdlsy7ZFWlMX72VogKeh+A4Xcjw==} 266 | engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0} 267 | dependencies: 268 | cross-spawn: 7.0.3 269 | fast-glob: 3.2.12 270 | is-glob: 4.0.3 271 | open: 9.1.0 272 | picocolors: 1.0.0 273 | tslib: 2.5.0 274 | dev: false 275 | 276 | /@rushstack/eslint-patch@1.2.0: 277 | resolution: {integrity: sha512-sXo/qW2/pAcmT43VoRKOJbDOfV3cYpq3szSVfIThQXNt+E4DfKj361vaAt3c88U5tPUxzEswam7GW48PJqtKAg==} 278 | dev: false 279 | 280 | /@swc/helpers@0.5.1: 281 | resolution: {integrity: sha512-sJ902EfIzn1Fa+qYmjdQqh8tPsoxyBz+8yBKC2HKUxyezKJFwPGOn7pv4WY6QuQW//ySQi5lJjA/ZT9sNWWNTg==} 282 | dependencies: 283 | tslib: 2.5.0 284 | dev: false 285 | 286 | /@types/json5@0.0.29: 287 | resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==} 288 | dev: false 289 | 290 | /@types/node@20.0.0: 291 | resolution: {integrity: sha512-cD2uPTDnQQCVpmRefonO98/PPijuOnnEy5oytWJFPY1N9aJCz2wJ5kSGWO+zJoed2cY2JxQh6yBuUq4vIn61hw==} 292 | dev: false 293 | 294 | /@types/prop-types@15.7.5: 295 | resolution: {integrity: sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==} 296 | dev: false 297 | 298 | /@types/react-dom@18.2.3: 299 | resolution: {integrity: sha512-hxXEXWxFJXbY0LMj/T69mznqOZJXNtQMqVxIiirVAZnnpeYiD4zt+lPsgcr/cfWg2VLsxZ1y26vigG03prYB+Q==} 300 | dependencies: 301 | '@types/react': 18.2.5 302 | dev: false 303 | 304 | /@types/react@18.2.5: 305 | resolution: {integrity: sha512-RuoMedzJ5AOh23Dvws13LU9jpZHIc/k90AgmK7CecAYeWmSr3553L4u5rk4sWAPBuQosfT7HmTfG4Rg5o4nGEA==} 306 | dependencies: 307 | '@types/prop-types': 15.7.5 308 | '@types/scheduler': 0.16.3 309 | csstype: 3.1.2 310 | dev: false 311 | 312 | /@types/scheduler@0.16.3: 313 | resolution: {integrity: sha512-5cJ8CB4yAx7BH1oMvdU0Jh9lrEXyPkar6F9G/ERswkCuvP4KQZfZkSjcMbAICCpQTN4OuZn8tz0HiKv9TGZgrQ==} 314 | dev: false 315 | 316 | /@typescript-eslint/parser@5.59.2(eslint@8.39.0)(typescript@5.0.4): 317 | resolution: {integrity: sha512-uq0sKyw6ao1iFOZZGk9F8Nro/8+gfB5ezl1cA06SrqbgJAt0SRoFhb9pXaHvkrxUpZaoLxt8KlovHNk8Gp6/HQ==} 318 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 319 | peerDependencies: 320 | eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 321 | typescript: '*' 322 | peerDependenciesMeta: 323 | typescript: 324 | optional: true 325 | dependencies: 326 | '@typescript-eslint/scope-manager': 5.59.2 327 | '@typescript-eslint/types': 5.59.2 328 | '@typescript-eslint/typescript-estree': 5.59.2(typescript@5.0.4) 329 | debug: 4.3.4 330 | eslint: 8.39.0 331 | typescript: 5.0.4 332 | transitivePeerDependencies: 333 | - supports-color 334 | dev: false 335 | 336 | /@typescript-eslint/scope-manager@5.59.2: 337 | resolution: {integrity: sha512-dB1v7ROySwQWKqQ8rEWcdbTsFjh2G0vn8KUyvTXdPoyzSL6lLGkiXEV5CvpJsEe9xIdKV+8Zqb7wif2issoOFA==} 338 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 339 | dependencies: 340 | '@typescript-eslint/types': 5.59.2 341 | '@typescript-eslint/visitor-keys': 5.59.2 342 | dev: false 343 | 344 | /@typescript-eslint/types@5.59.2: 345 | resolution: {integrity: sha512-LbJ/HqoVs2XTGq5shkiKaNTuVv5tTejdHgfdjqRUGdYhjW1crm/M7og2jhVskMt8/4wS3T1+PfFvL1K3wqYj4w==} 346 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 347 | dev: false 348 | 349 | /@typescript-eslint/typescript-estree@5.59.2(typescript@5.0.4): 350 | resolution: {integrity: sha512-+j4SmbwVmZsQ9jEyBMgpuBD0rKwi9RxRpjX71Brr73RsYnEr3Lt5QZ624Bxphp8HUkSKfqGnPJp1kA5nl0Sh7Q==} 351 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 352 | peerDependencies: 353 | typescript: '*' 354 | peerDependenciesMeta: 355 | typescript: 356 | optional: true 357 | dependencies: 358 | '@typescript-eslint/types': 5.59.2 359 | '@typescript-eslint/visitor-keys': 5.59.2 360 | debug: 4.3.4 361 | globby: 11.1.0 362 | is-glob: 4.0.3 363 | semver: 7.5.0 364 | tsutils: 3.21.0(typescript@5.0.4) 365 | typescript: 5.0.4 366 | transitivePeerDependencies: 367 | - supports-color 368 | dev: false 369 | 370 | /@typescript-eslint/visitor-keys@5.59.2: 371 | resolution: {integrity: sha512-EEpsO8m3RASrKAHI9jpavNv9NlEUebV4qmF1OWxSTtKSFBpC1NCmWazDQHFivRf0O1DV11BA645yrLEVQ0/Lig==} 372 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 373 | dependencies: 374 | '@typescript-eslint/types': 5.59.2 375 | eslint-visitor-keys: 3.4.0 376 | dev: false 377 | 378 | /acorn-jsx@5.3.2(acorn@8.8.2): 379 | resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} 380 | peerDependencies: 381 | acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 382 | dependencies: 383 | acorn: 8.8.2 384 | dev: false 385 | 386 | /acorn@8.8.2: 387 | resolution: {integrity: sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw==} 388 | engines: {node: '>=0.4.0'} 389 | hasBin: true 390 | dev: false 391 | 392 | /ajv@6.12.6: 393 | resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==} 394 | dependencies: 395 | fast-deep-equal: 3.1.3 396 | fast-json-stable-stringify: 2.1.0 397 | json-schema-traverse: 0.4.1 398 | uri-js: 4.4.1 399 | dev: false 400 | 401 | /ansi-regex@5.0.1: 402 | resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} 403 | engines: {node: '>=8'} 404 | dev: false 405 | 406 | /ansi-styles@4.3.0: 407 | resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} 408 | engines: {node: '>=8'} 409 | dependencies: 410 | color-convert: 2.0.1 411 | dev: false 412 | 413 | /any-promise@1.3.0: 414 | resolution: {integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==} 415 | dev: false 416 | 417 | /anymatch@3.1.3: 418 | resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==} 419 | engines: {node: '>= 8'} 420 | dependencies: 421 | normalize-path: 3.0.0 422 | picomatch: 2.3.1 423 | dev: false 424 | 425 | /arg@5.0.2: 426 | resolution: {integrity: sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==} 427 | dev: false 428 | 429 | /argparse@2.0.1: 430 | resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} 431 | dev: false 432 | 433 | /aria-query@5.1.3: 434 | resolution: {integrity: sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==} 435 | dependencies: 436 | deep-equal: 2.2.1 437 | dev: false 438 | 439 | /array-buffer-byte-length@1.0.0: 440 | resolution: {integrity: sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==} 441 | dependencies: 442 | call-bind: 1.0.2 443 | is-array-buffer: 3.0.2 444 | dev: false 445 | 446 | /array-includes@3.1.6: 447 | resolution: {integrity: sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw==} 448 | engines: {node: '>= 0.4'} 449 | dependencies: 450 | call-bind: 1.0.2 451 | define-properties: 1.2.0 452 | es-abstract: 1.21.2 453 | get-intrinsic: 1.2.0 454 | is-string: 1.0.7 455 | dev: false 456 | 457 | /array-union@2.1.0: 458 | resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==} 459 | engines: {node: '>=8'} 460 | dev: false 461 | 462 | /array.prototype.flat@1.3.1: 463 | resolution: {integrity: sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA==} 464 | engines: {node: '>= 0.4'} 465 | dependencies: 466 | call-bind: 1.0.2 467 | define-properties: 1.2.0 468 | es-abstract: 1.21.2 469 | es-shim-unscopables: 1.0.0 470 | dev: false 471 | 472 | /array.prototype.flatmap@1.3.1: 473 | resolution: {integrity: sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ==} 474 | engines: {node: '>= 0.4'} 475 | dependencies: 476 | call-bind: 1.0.2 477 | define-properties: 1.2.0 478 | es-abstract: 1.21.2 479 | es-shim-unscopables: 1.0.0 480 | dev: false 481 | 482 | /array.prototype.tosorted@1.1.1: 483 | resolution: {integrity: sha512-pZYPXPRl2PqWcsUs6LOMn+1f1532nEoPTYowBtqLwAW+W8vSVhkIGnmOX1t/UQjD6YGI0vcD2B1U7ZFGQH9jnQ==} 484 | dependencies: 485 | call-bind: 1.0.2 486 | define-properties: 1.2.0 487 | es-abstract: 1.21.2 488 | es-shim-unscopables: 1.0.0 489 | get-intrinsic: 1.2.0 490 | dev: false 491 | 492 | /ast-types-flow@0.0.7: 493 | resolution: {integrity: sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag==} 494 | dev: false 495 | 496 | /autoprefixer@10.4.14(postcss@8.4.23): 497 | resolution: {integrity: sha512-FQzyfOsTlwVzjHxKEqRIAdJx9niO6VCBCoEwax/VLSoQF29ggECcPuBqUMZ+u8jCZOPSy8b8/8KnuFbp0SaFZQ==} 498 | engines: {node: ^10 || ^12 || >=14} 499 | hasBin: true 500 | peerDependencies: 501 | postcss: ^8.1.0 502 | dependencies: 503 | browserslist: 4.21.5 504 | caniuse-lite: 1.0.30001482 505 | fraction.js: 4.2.0 506 | normalize-range: 0.1.2 507 | picocolors: 1.0.0 508 | postcss: 8.4.23 509 | postcss-value-parser: 4.2.0 510 | dev: false 511 | 512 | /available-typed-arrays@1.0.5: 513 | resolution: {integrity: sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==} 514 | engines: {node: '>= 0.4'} 515 | dev: false 516 | 517 | /axe-core@4.7.0: 518 | resolution: {integrity: sha512-M0JtH+hlOL5pLQwHOLNYZaXuhqmvS8oExsqB1SBYgA4Dk7u/xx+YdGHXaK5pyUfed5mYXdlYiphWq3G8cRi5JQ==} 519 | engines: {node: '>=4'} 520 | dev: false 521 | 522 | /axobject-query@3.1.1: 523 | resolution: {integrity: sha512-goKlv8DZrK9hUh975fnHzhNIO4jUnFCfv/dszV5VwUGDFjI6vQ2VwoyjYjYNEbBE8AH87TduWP5uyDR1D+Iteg==} 524 | dependencies: 525 | deep-equal: 2.2.1 526 | dev: false 527 | 528 | /balanced-match@1.0.2: 529 | resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} 530 | dev: false 531 | 532 | /big-integer@1.6.51: 533 | resolution: {integrity: sha512-GPEid2Y9QU1Exl1rpO9B2IPJGHPSupF5GnVIP0blYvNOMer2bTvSWs1jGOUg04hTmu67nmLsQ9TBo1puaotBHg==} 534 | engines: {node: '>=0.6'} 535 | dev: false 536 | 537 | /binary-extensions@2.2.0: 538 | resolution: {integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==} 539 | engines: {node: '>=8'} 540 | dev: false 541 | 542 | /bplist-parser@0.2.0: 543 | resolution: {integrity: sha512-z0M+byMThzQmD9NILRniCUXYsYpjwnlO8N5uCFaCqIOpqRsJCrQL9NK3JsD67CN5a08nF5oIL2bD6loTdHOuKw==} 544 | engines: {node: '>= 5.10.0'} 545 | dependencies: 546 | big-integer: 1.6.51 547 | dev: false 548 | 549 | /brace-expansion@1.1.11: 550 | resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==} 551 | dependencies: 552 | balanced-match: 1.0.2 553 | concat-map: 0.0.1 554 | dev: false 555 | 556 | /braces@3.0.2: 557 | resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==} 558 | engines: {node: '>=8'} 559 | dependencies: 560 | fill-range: 7.0.1 561 | dev: false 562 | 563 | /browserslist@4.21.5: 564 | resolution: {integrity: sha512-tUkiguQGW7S3IhB7N+c2MV/HZPSCPAAiYBZXLsBhFB/PCy6ZKKsZrmBayHV9fdGV/ARIfJ14NkxKzRDjvp7L6w==} 565 | engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} 566 | hasBin: true 567 | dependencies: 568 | caniuse-lite: 1.0.30001482 569 | electron-to-chromium: 1.4.384 570 | node-releases: 2.0.10 571 | update-browserslist-db: 1.0.11(browserslist@4.21.5) 572 | dev: false 573 | 574 | /bundle-name@3.0.0: 575 | resolution: {integrity: sha512-PKA4BeSvBpQKQ8iPOGCSiell+N8P+Tf1DlwqmYhpe2gAhKPHn8EYOxVT+ShuGmhg8lN8XiSlS80yiExKXrURlw==} 576 | engines: {node: '>=12'} 577 | dependencies: 578 | run-applescript: 5.0.0 579 | dev: false 580 | 581 | /busboy@1.6.0: 582 | resolution: {integrity: sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==} 583 | engines: {node: '>=10.16.0'} 584 | dependencies: 585 | streamsearch: 1.1.0 586 | dev: false 587 | 588 | /call-bind@1.0.2: 589 | resolution: {integrity: sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==} 590 | dependencies: 591 | function-bind: 1.1.1 592 | get-intrinsic: 1.2.0 593 | dev: false 594 | 595 | /callsites@3.1.0: 596 | resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} 597 | engines: {node: '>=6'} 598 | dev: false 599 | 600 | /camelcase-css@2.0.1: 601 | resolution: {integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==} 602 | engines: {node: '>= 6'} 603 | dev: false 604 | 605 | /caniuse-lite@1.0.30001482: 606 | resolution: {integrity: sha512-F1ZInsg53cegyjroxLNW9DmrEQ1SuGRTO1QlpA0o2/6OpQ0gFeDRoq1yFmnr8Sakn9qwwt9DmbxHB6w167OSuQ==} 607 | dev: false 608 | 609 | /chalk@4.1.2: 610 | resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} 611 | engines: {node: '>=10'} 612 | dependencies: 613 | ansi-styles: 4.3.0 614 | supports-color: 7.2.0 615 | dev: false 616 | 617 | /chokidar@3.5.3: 618 | resolution: {integrity: sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==} 619 | engines: {node: '>= 8.10.0'} 620 | dependencies: 621 | anymatch: 3.1.3 622 | braces: 3.0.2 623 | glob-parent: 5.1.2 624 | is-binary-path: 2.1.0 625 | is-glob: 4.0.3 626 | normalize-path: 3.0.0 627 | readdirp: 3.6.0 628 | optionalDependencies: 629 | fsevents: 2.3.2 630 | dev: false 631 | 632 | /client-only@0.0.1: 633 | resolution: {integrity: sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==} 634 | dev: false 635 | 636 | /color-convert@2.0.1: 637 | resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} 638 | engines: {node: '>=7.0.0'} 639 | dependencies: 640 | color-name: 1.1.4 641 | dev: false 642 | 643 | /color-name@1.1.4: 644 | resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} 645 | dev: false 646 | 647 | /color-string@1.9.1: 648 | resolution: {integrity: sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==} 649 | dependencies: 650 | color-name: 1.1.4 651 | simple-swizzle: 0.2.2 652 | dev: false 653 | 654 | /color@4.2.3: 655 | resolution: {integrity: sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==} 656 | engines: {node: '>=12.5.0'} 657 | dependencies: 658 | color-convert: 2.0.1 659 | color-string: 1.9.1 660 | dev: false 661 | 662 | /commander@4.1.1: 663 | resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==} 664 | engines: {node: '>= 6'} 665 | dev: false 666 | 667 | /concat-map@0.0.1: 668 | resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} 669 | dev: false 670 | 671 | /cross-spawn@7.0.3: 672 | resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==} 673 | engines: {node: '>= 8'} 674 | dependencies: 675 | path-key: 3.1.1 676 | shebang-command: 2.0.0 677 | which: 2.0.2 678 | dev: false 679 | 680 | /css-selector-tokenizer@0.8.0: 681 | resolution: {integrity: sha512-Jd6Ig3/pe62/qe5SBPTN8h8LeUg/pT4lLgtavPf7updwwHpvFzxvOQBHYj2LZDMjUnBzgvIUSjRcf6oT5HzHFg==} 682 | dependencies: 683 | cssesc: 3.0.0 684 | fastparse: 1.1.2 685 | dev: false 686 | 687 | /cssesc@3.0.0: 688 | resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==} 689 | engines: {node: '>=4'} 690 | hasBin: true 691 | dev: false 692 | 693 | /csstype@3.1.2: 694 | resolution: {integrity: sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==} 695 | dev: false 696 | 697 | /daisyui@2.51.6(autoprefixer@10.4.14)(postcss@8.4.23): 698 | resolution: {integrity: sha512-JRqOKayuFCmWe4X4k6Qvx1y7V/VNao8U5eTSOhusOKIzCsYqf56+TCSe4d7zmqGE0V6JiLDYAT8JeoWUeRKFCw==} 699 | peerDependencies: 700 | autoprefixer: ^10.0.2 701 | postcss: ^8.1.6 702 | dependencies: 703 | autoprefixer: 10.4.14(postcss@8.4.23) 704 | color: 4.2.3 705 | css-selector-tokenizer: 0.8.0 706 | postcss: 8.4.23 707 | postcss-js: 4.0.1(postcss@8.4.23) 708 | tailwindcss: 3.3.2 709 | transitivePeerDependencies: 710 | - ts-node 711 | dev: false 712 | 713 | /damerau-levenshtein@1.0.8: 714 | resolution: {integrity: sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==} 715 | dev: false 716 | 717 | /debug@3.2.7: 718 | resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==} 719 | peerDependencies: 720 | supports-color: '*' 721 | peerDependenciesMeta: 722 | supports-color: 723 | optional: true 724 | dependencies: 725 | ms: 2.1.3 726 | dev: false 727 | 728 | /debug@4.3.4: 729 | resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==} 730 | engines: {node: '>=6.0'} 731 | peerDependencies: 732 | supports-color: '*' 733 | peerDependenciesMeta: 734 | supports-color: 735 | optional: true 736 | dependencies: 737 | ms: 2.1.2 738 | dev: false 739 | 740 | /deep-equal@2.2.1: 741 | resolution: {integrity: sha512-lKdkdV6EOGoVn65XaOsPdH4rMxTZOnmFyuIkMjM1i5HHCbfjC97dawgTAy0deYNfuqUqW+Q5VrVaQYtUpSd6yQ==} 742 | dependencies: 743 | array-buffer-byte-length: 1.0.0 744 | call-bind: 1.0.2 745 | es-get-iterator: 1.1.3 746 | get-intrinsic: 1.2.0 747 | is-arguments: 1.1.1 748 | is-array-buffer: 3.0.2 749 | is-date-object: 1.0.5 750 | is-regex: 1.1.4 751 | is-shared-array-buffer: 1.0.2 752 | isarray: 2.0.5 753 | object-is: 1.1.5 754 | object-keys: 1.1.1 755 | object.assign: 4.1.4 756 | regexp.prototype.flags: 1.5.0 757 | side-channel: 1.0.4 758 | which-boxed-primitive: 1.0.2 759 | which-collection: 1.0.1 760 | which-typed-array: 1.1.9 761 | dev: false 762 | 763 | /deep-is@0.1.4: 764 | resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} 765 | dev: false 766 | 767 | /default-browser-id@3.0.0: 768 | resolution: {integrity: sha512-OZ1y3y0SqSICtE8DE4S8YOE9UZOJ8wO16fKWVP5J1Qz42kV9jcnMVFrEE/noXb/ss3Q4pZIH79kxofzyNNtUNA==} 769 | engines: {node: '>=12'} 770 | dependencies: 771 | bplist-parser: 0.2.0 772 | untildify: 4.0.0 773 | dev: false 774 | 775 | /default-browser@4.0.0: 776 | resolution: {integrity: sha512-wX5pXO1+BrhMkSbROFsyxUm0i/cJEScyNhA4PPxc41ICuv05ZZB/MX28s8aZx6xjmatvebIapF6hLEKEcpneUA==} 777 | engines: {node: '>=14.16'} 778 | dependencies: 779 | bundle-name: 3.0.0 780 | default-browser-id: 3.0.0 781 | execa: 7.1.1 782 | titleize: 3.0.0 783 | dev: false 784 | 785 | /define-lazy-prop@3.0.0: 786 | resolution: {integrity: sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg==} 787 | engines: {node: '>=12'} 788 | dev: false 789 | 790 | /define-properties@1.2.0: 791 | resolution: {integrity: sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA==} 792 | engines: {node: '>= 0.4'} 793 | dependencies: 794 | has-property-descriptors: 1.0.0 795 | object-keys: 1.1.1 796 | dev: false 797 | 798 | /didyoumean@1.2.2: 799 | resolution: {integrity: sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==} 800 | dev: false 801 | 802 | /dir-glob@3.0.1: 803 | resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==} 804 | engines: {node: '>=8'} 805 | dependencies: 806 | path-type: 4.0.0 807 | dev: false 808 | 809 | /dlv@1.1.3: 810 | resolution: {integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==} 811 | dev: false 812 | 813 | /doctrine@2.1.0: 814 | resolution: {integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==} 815 | engines: {node: '>=0.10.0'} 816 | dependencies: 817 | esutils: 2.0.3 818 | dev: false 819 | 820 | /doctrine@3.0.0: 821 | resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==} 822 | engines: {node: '>=6.0.0'} 823 | dependencies: 824 | esutils: 2.0.3 825 | dev: false 826 | 827 | /electron-to-chromium@1.4.384: 828 | resolution: {integrity: sha512-I97q0MmRAAqj53+a8vZsDkEXBZki+ehYAOPzwtQzALip52aEp2+BJqHFtTlsfjoqVZYwPpHC8wM6MbsSZQ/Eqw==} 829 | dev: false 830 | 831 | /emoji-regex@9.2.2: 832 | resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==} 833 | dev: false 834 | 835 | /enhanced-resolve@5.13.0: 836 | resolution: {integrity: sha512-eyV8f0y1+bzyfh8xAwW/WTSZpLbjhqc4ne9eGSH4Zo2ejdyiNG9pU6mf9DG8a7+Auk6MFTlNOT4Y2y/9k8GKVg==} 837 | engines: {node: '>=10.13.0'} 838 | dependencies: 839 | graceful-fs: 4.2.11 840 | tapable: 2.2.1 841 | dev: false 842 | 843 | /es-abstract@1.21.2: 844 | resolution: {integrity: sha512-y/B5POM2iBnIxCiernH1G7rC9qQoM77lLIMQLuob0zhp8C56Po81+2Nj0WFKnd0pNReDTnkYryc+zhOzpEIROg==} 845 | engines: {node: '>= 0.4'} 846 | dependencies: 847 | array-buffer-byte-length: 1.0.0 848 | available-typed-arrays: 1.0.5 849 | call-bind: 1.0.2 850 | es-set-tostringtag: 2.0.1 851 | es-to-primitive: 1.2.1 852 | function.prototype.name: 1.1.5 853 | get-intrinsic: 1.2.0 854 | get-symbol-description: 1.0.0 855 | globalthis: 1.0.3 856 | gopd: 1.0.1 857 | has: 1.0.3 858 | has-property-descriptors: 1.0.0 859 | has-proto: 1.0.1 860 | has-symbols: 1.0.3 861 | internal-slot: 1.0.5 862 | is-array-buffer: 3.0.2 863 | is-callable: 1.2.7 864 | is-negative-zero: 2.0.2 865 | is-regex: 1.1.4 866 | is-shared-array-buffer: 1.0.2 867 | is-string: 1.0.7 868 | is-typed-array: 1.1.10 869 | is-weakref: 1.0.2 870 | object-inspect: 1.12.3 871 | object-keys: 1.1.1 872 | object.assign: 4.1.4 873 | regexp.prototype.flags: 1.5.0 874 | safe-regex-test: 1.0.0 875 | string.prototype.trim: 1.2.7 876 | string.prototype.trimend: 1.0.6 877 | string.prototype.trimstart: 1.0.6 878 | typed-array-length: 1.0.4 879 | unbox-primitive: 1.0.2 880 | which-typed-array: 1.1.9 881 | dev: false 882 | 883 | /es-get-iterator@1.1.3: 884 | resolution: {integrity: sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==} 885 | dependencies: 886 | call-bind: 1.0.2 887 | get-intrinsic: 1.2.0 888 | has-symbols: 1.0.3 889 | is-arguments: 1.1.1 890 | is-map: 2.0.2 891 | is-set: 2.0.2 892 | is-string: 1.0.7 893 | isarray: 2.0.5 894 | stop-iteration-iterator: 1.0.0 895 | dev: false 896 | 897 | /es-set-tostringtag@2.0.1: 898 | resolution: {integrity: sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==} 899 | engines: {node: '>= 0.4'} 900 | dependencies: 901 | get-intrinsic: 1.2.0 902 | has: 1.0.3 903 | has-tostringtag: 1.0.0 904 | dev: false 905 | 906 | /es-shim-unscopables@1.0.0: 907 | resolution: {integrity: sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==} 908 | dependencies: 909 | has: 1.0.3 910 | dev: false 911 | 912 | /es-to-primitive@1.2.1: 913 | resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==} 914 | engines: {node: '>= 0.4'} 915 | dependencies: 916 | is-callable: 1.2.7 917 | is-date-object: 1.0.5 918 | is-symbol: 1.0.4 919 | dev: false 920 | 921 | /escalade@3.1.1: 922 | resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==} 923 | engines: {node: '>=6'} 924 | dev: false 925 | 926 | /escape-string-regexp@4.0.0: 927 | resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} 928 | engines: {node: '>=10'} 929 | dev: false 930 | 931 | /eslint-config-next@13.4.0(eslint@8.39.0)(typescript@5.0.4): 932 | resolution: {integrity: sha512-FkO3QRyUEKAHM4ie0xAcxo7fQ8gWevuLqgf6/g1Y6zWybqSa4FNeJr4hqqTbP25xIRgUUIPILBlx9RSH4C6+gQ==} 933 | peerDependencies: 934 | eslint: ^7.23.0 || ^8.0.0 935 | typescript: '>=3.3.1' 936 | peerDependenciesMeta: 937 | typescript: 938 | optional: true 939 | dependencies: 940 | '@next/eslint-plugin-next': 13.4.0 941 | '@rushstack/eslint-patch': 1.2.0 942 | '@typescript-eslint/parser': 5.59.2(eslint@8.39.0)(typescript@5.0.4) 943 | eslint: 8.39.0 944 | eslint-import-resolver-node: 0.3.7 945 | eslint-import-resolver-typescript: 3.5.5(@typescript-eslint/parser@5.59.2)(eslint-import-resolver-node@0.3.7)(eslint-plugin-import@2.27.5)(eslint@8.39.0) 946 | eslint-plugin-import: 2.27.5(@typescript-eslint/parser@5.59.2)(eslint-import-resolver-typescript@3.5.5)(eslint@8.39.0) 947 | eslint-plugin-jsx-a11y: 6.7.1(eslint@8.39.0) 948 | eslint-plugin-react: 7.32.2(eslint@8.39.0) 949 | eslint-plugin-react-hooks: 4.6.0(eslint@8.39.0) 950 | typescript: 5.0.4 951 | transitivePeerDependencies: 952 | - eslint-import-resolver-webpack 953 | - supports-color 954 | dev: false 955 | 956 | /eslint-import-resolver-node@0.3.7: 957 | resolution: {integrity: sha512-gozW2blMLJCeFpBwugLTGyvVjNoeo1knonXAcatC6bjPBZitotxdWf7Gimr25N4c0AAOo4eOUfaG82IJPDpqCA==} 958 | dependencies: 959 | debug: 3.2.7 960 | is-core-module: 2.12.0 961 | resolve: 1.22.2 962 | transitivePeerDependencies: 963 | - supports-color 964 | dev: false 965 | 966 | /eslint-import-resolver-typescript@3.5.5(@typescript-eslint/parser@5.59.2)(eslint-import-resolver-node@0.3.7)(eslint-plugin-import@2.27.5)(eslint@8.39.0): 967 | resolution: {integrity: sha512-TdJqPHs2lW5J9Zpe17DZNQuDnox4xo2o+0tE7Pggain9Rbc19ik8kFtXdxZ250FVx2kF4vlt2RSf4qlUpG7bhw==} 968 | engines: {node: ^14.18.0 || >=16.0.0} 969 | peerDependencies: 970 | eslint: '*' 971 | eslint-plugin-import: '*' 972 | dependencies: 973 | debug: 4.3.4 974 | enhanced-resolve: 5.13.0 975 | eslint: 8.39.0 976 | eslint-module-utils: 2.8.0(@typescript-eslint/parser@5.59.2)(eslint-import-resolver-node@0.3.7)(eslint-import-resolver-typescript@3.5.5)(eslint@8.39.0) 977 | eslint-plugin-import: 2.27.5(@typescript-eslint/parser@5.59.2)(eslint-import-resolver-typescript@3.5.5)(eslint@8.39.0) 978 | get-tsconfig: 4.5.0 979 | globby: 13.1.4 980 | is-core-module: 2.12.0 981 | is-glob: 4.0.3 982 | synckit: 0.8.5 983 | transitivePeerDependencies: 984 | - '@typescript-eslint/parser' 985 | - eslint-import-resolver-node 986 | - eslint-import-resolver-webpack 987 | - supports-color 988 | dev: false 989 | 990 | /eslint-module-utils@2.8.0(@typescript-eslint/parser@5.59.2)(eslint-import-resolver-node@0.3.7)(eslint-import-resolver-typescript@3.5.5)(eslint@8.39.0): 991 | resolution: {integrity: sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==} 992 | engines: {node: '>=4'} 993 | peerDependencies: 994 | '@typescript-eslint/parser': '*' 995 | eslint: '*' 996 | eslint-import-resolver-node: '*' 997 | eslint-import-resolver-typescript: '*' 998 | eslint-import-resolver-webpack: '*' 999 | peerDependenciesMeta: 1000 | '@typescript-eslint/parser': 1001 | optional: true 1002 | eslint: 1003 | optional: true 1004 | eslint-import-resolver-node: 1005 | optional: true 1006 | eslint-import-resolver-typescript: 1007 | optional: true 1008 | eslint-import-resolver-webpack: 1009 | optional: true 1010 | dependencies: 1011 | '@typescript-eslint/parser': 5.59.2(eslint@8.39.0)(typescript@5.0.4) 1012 | debug: 3.2.7 1013 | eslint: 8.39.0 1014 | eslint-import-resolver-node: 0.3.7 1015 | eslint-import-resolver-typescript: 3.5.5(@typescript-eslint/parser@5.59.2)(eslint-import-resolver-node@0.3.7)(eslint-plugin-import@2.27.5)(eslint@8.39.0) 1016 | transitivePeerDependencies: 1017 | - supports-color 1018 | dev: false 1019 | 1020 | /eslint-plugin-import@2.27.5(@typescript-eslint/parser@5.59.2)(eslint-import-resolver-typescript@3.5.5)(eslint@8.39.0): 1021 | resolution: {integrity: sha512-LmEt3GVofgiGuiE+ORpnvP+kAm3h6MLZJ4Q5HCyHADofsb4VzXFsRiWj3c0OFiV+3DWFh0qg3v9gcPlfc3zRow==} 1022 | engines: {node: '>=4'} 1023 | peerDependencies: 1024 | '@typescript-eslint/parser': '*' 1025 | eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 1026 | peerDependenciesMeta: 1027 | '@typescript-eslint/parser': 1028 | optional: true 1029 | dependencies: 1030 | '@typescript-eslint/parser': 5.59.2(eslint@8.39.0)(typescript@5.0.4) 1031 | array-includes: 3.1.6 1032 | array.prototype.flat: 1.3.1 1033 | array.prototype.flatmap: 1.3.1 1034 | debug: 3.2.7 1035 | doctrine: 2.1.0 1036 | eslint: 8.39.0 1037 | eslint-import-resolver-node: 0.3.7 1038 | eslint-module-utils: 2.8.0(@typescript-eslint/parser@5.59.2)(eslint-import-resolver-node@0.3.7)(eslint-import-resolver-typescript@3.5.5)(eslint@8.39.0) 1039 | has: 1.0.3 1040 | is-core-module: 2.12.0 1041 | is-glob: 4.0.3 1042 | minimatch: 3.1.2 1043 | object.values: 1.1.6 1044 | resolve: 1.22.2 1045 | semver: 6.3.0 1046 | tsconfig-paths: 3.14.2 1047 | transitivePeerDependencies: 1048 | - eslint-import-resolver-typescript 1049 | - eslint-import-resolver-webpack 1050 | - supports-color 1051 | dev: false 1052 | 1053 | /eslint-plugin-jsx-a11y@6.7.1(eslint@8.39.0): 1054 | resolution: {integrity: sha512-63Bog4iIethyo8smBklORknVjB0T2dwB8Mr/hIC+fBS0uyHdYYpzM/Ed+YC8VxTjlXHEWFOdmgwcDn1U2L9VCA==} 1055 | engines: {node: '>=4.0'} 1056 | peerDependencies: 1057 | eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 1058 | dependencies: 1059 | '@babel/runtime': 7.21.5 1060 | aria-query: 5.1.3 1061 | array-includes: 3.1.6 1062 | array.prototype.flatmap: 1.3.1 1063 | ast-types-flow: 0.0.7 1064 | axe-core: 4.7.0 1065 | axobject-query: 3.1.1 1066 | damerau-levenshtein: 1.0.8 1067 | emoji-regex: 9.2.2 1068 | eslint: 8.39.0 1069 | has: 1.0.3 1070 | jsx-ast-utils: 3.3.3 1071 | language-tags: 1.0.5 1072 | minimatch: 3.1.2 1073 | object.entries: 1.1.6 1074 | object.fromentries: 2.0.6 1075 | semver: 6.3.0 1076 | dev: false 1077 | 1078 | /eslint-plugin-react-hooks@4.6.0(eslint@8.39.0): 1079 | resolution: {integrity: sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==} 1080 | engines: {node: '>=10'} 1081 | peerDependencies: 1082 | eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 1083 | dependencies: 1084 | eslint: 8.39.0 1085 | dev: false 1086 | 1087 | /eslint-plugin-react@7.32.2(eslint@8.39.0): 1088 | resolution: {integrity: sha512-t2fBMa+XzonrrNkyVirzKlvn5RXzzPwRHtMvLAtVZrt8oxgnTQaYbU6SXTOO1mwQgp1y5+toMSKInnzGr0Knqg==} 1089 | engines: {node: '>=4'} 1090 | peerDependencies: 1091 | eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 1092 | dependencies: 1093 | array-includes: 3.1.6 1094 | array.prototype.flatmap: 1.3.1 1095 | array.prototype.tosorted: 1.1.1 1096 | doctrine: 2.1.0 1097 | eslint: 8.39.0 1098 | estraverse: 5.3.0 1099 | jsx-ast-utils: 3.3.3 1100 | minimatch: 3.1.2 1101 | object.entries: 1.1.6 1102 | object.fromentries: 2.0.6 1103 | object.hasown: 1.1.2 1104 | object.values: 1.1.6 1105 | prop-types: 15.8.1 1106 | resolve: 2.0.0-next.4 1107 | semver: 6.3.0 1108 | string.prototype.matchall: 4.0.8 1109 | dev: false 1110 | 1111 | /eslint-scope@7.2.0: 1112 | resolution: {integrity: sha512-DYj5deGlHBfMt15J7rdtyKNq/Nqlv5KfU4iodrQ019XESsRnwXH9KAE0y3cwtUHDo2ob7CypAnCqefh6vioWRw==} 1113 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 1114 | dependencies: 1115 | esrecurse: 4.3.0 1116 | estraverse: 5.3.0 1117 | dev: false 1118 | 1119 | /eslint-visitor-keys@3.4.0: 1120 | resolution: {integrity: sha512-HPpKPUBQcAsZOsHAFwTtIKcYlCje62XB7SEAcxjtmW6TD1WVpkS6i6/hOVtTZIl4zGj/mBqpFVGvaDneik+VoQ==} 1121 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 1122 | dev: false 1123 | 1124 | /eslint@8.39.0: 1125 | resolution: {integrity: sha512-mwiok6cy7KTW7rBpo05k6+p4YVZByLNjAZ/ACB9DRCu4YDRwjXI01tWHp6KAUWelsBetTxKK/2sHB0vdS8Z2Og==} 1126 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 1127 | hasBin: true 1128 | dependencies: 1129 | '@eslint-community/eslint-utils': 4.4.0(eslint@8.39.0) 1130 | '@eslint-community/regexpp': 4.5.1 1131 | '@eslint/eslintrc': 2.0.2 1132 | '@eslint/js': 8.39.0 1133 | '@humanwhocodes/config-array': 0.11.8 1134 | '@humanwhocodes/module-importer': 1.0.1 1135 | '@nodelib/fs.walk': 1.2.8 1136 | ajv: 6.12.6 1137 | chalk: 4.1.2 1138 | cross-spawn: 7.0.3 1139 | debug: 4.3.4 1140 | doctrine: 3.0.0 1141 | escape-string-regexp: 4.0.0 1142 | eslint-scope: 7.2.0 1143 | eslint-visitor-keys: 3.4.0 1144 | espree: 9.5.1 1145 | esquery: 1.5.0 1146 | esutils: 2.0.3 1147 | fast-deep-equal: 3.1.3 1148 | file-entry-cache: 6.0.1 1149 | find-up: 5.0.0 1150 | glob-parent: 6.0.2 1151 | globals: 13.20.0 1152 | grapheme-splitter: 1.0.4 1153 | ignore: 5.2.4 1154 | import-fresh: 3.3.0 1155 | imurmurhash: 0.1.4 1156 | is-glob: 4.0.3 1157 | is-path-inside: 3.0.3 1158 | js-sdsl: 4.4.0 1159 | js-yaml: 4.1.0 1160 | json-stable-stringify-without-jsonify: 1.0.1 1161 | levn: 0.4.1 1162 | lodash.merge: 4.6.2 1163 | minimatch: 3.1.2 1164 | natural-compare: 1.4.0 1165 | optionator: 0.9.1 1166 | strip-ansi: 6.0.1 1167 | strip-json-comments: 3.1.1 1168 | text-table: 0.2.0 1169 | transitivePeerDependencies: 1170 | - supports-color 1171 | dev: false 1172 | 1173 | /espree@9.5.1: 1174 | resolution: {integrity: sha512-5yxtHSZXRSW5pvv3hAlXM5+/Oswi1AUFqBmbibKb5s6bp3rGIDkyXU6xCoyuuLhijr4SFwPrXRoZjz0AZDN9tg==} 1175 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 1176 | dependencies: 1177 | acorn: 8.8.2 1178 | acorn-jsx: 5.3.2(acorn@8.8.2) 1179 | eslint-visitor-keys: 3.4.0 1180 | dev: false 1181 | 1182 | /esquery@1.5.0: 1183 | resolution: {integrity: sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==} 1184 | engines: {node: '>=0.10'} 1185 | dependencies: 1186 | estraverse: 5.3.0 1187 | dev: false 1188 | 1189 | /esrecurse@4.3.0: 1190 | resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==} 1191 | engines: {node: '>=4.0'} 1192 | dependencies: 1193 | estraverse: 5.3.0 1194 | dev: false 1195 | 1196 | /estraverse@5.3.0: 1197 | resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==} 1198 | engines: {node: '>=4.0'} 1199 | dev: false 1200 | 1201 | /esutils@2.0.3: 1202 | resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} 1203 | engines: {node: '>=0.10.0'} 1204 | dev: false 1205 | 1206 | /execa@5.1.1: 1207 | resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==} 1208 | engines: {node: '>=10'} 1209 | dependencies: 1210 | cross-spawn: 7.0.3 1211 | get-stream: 6.0.1 1212 | human-signals: 2.1.0 1213 | is-stream: 2.0.1 1214 | merge-stream: 2.0.0 1215 | npm-run-path: 4.0.1 1216 | onetime: 5.1.2 1217 | signal-exit: 3.0.7 1218 | strip-final-newline: 2.0.0 1219 | dev: false 1220 | 1221 | /execa@7.1.1: 1222 | resolution: {integrity: sha512-wH0eMf/UXckdUYnO21+HDztteVv05rq2GXksxT4fCGeHkBhw1DROXh40wcjMcRqDOWE7iPJ4n3M7e2+YFP+76Q==} 1223 | engines: {node: ^14.18.0 || ^16.14.0 || >=18.0.0} 1224 | dependencies: 1225 | cross-spawn: 7.0.3 1226 | get-stream: 6.0.1 1227 | human-signals: 4.3.1 1228 | is-stream: 3.0.0 1229 | merge-stream: 2.0.0 1230 | npm-run-path: 5.1.0 1231 | onetime: 6.0.0 1232 | signal-exit: 3.0.7 1233 | strip-final-newline: 3.0.0 1234 | dev: false 1235 | 1236 | /fast-deep-equal@3.1.3: 1237 | resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} 1238 | dev: false 1239 | 1240 | /fast-glob@3.2.12: 1241 | resolution: {integrity: sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==} 1242 | engines: {node: '>=8.6.0'} 1243 | dependencies: 1244 | '@nodelib/fs.stat': 2.0.5 1245 | '@nodelib/fs.walk': 1.2.8 1246 | glob-parent: 5.1.2 1247 | merge2: 1.4.1 1248 | micromatch: 4.0.5 1249 | dev: false 1250 | 1251 | /fast-json-stable-stringify@2.1.0: 1252 | resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} 1253 | dev: false 1254 | 1255 | /fast-levenshtein@2.0.6: 1256 | resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==} 1257 | dev: false 1258 | 1259 | /fastparse@1.1.2: 1260 | resolution: {integrity: sha512-483XLLxTVIwWK3QTrMGRqUfUpoOs/0hbQrl2oz4J0pAcm3A3bu84wxTFqGqkJzewCLdME38xJLJAxBABfQT8sQ==} 1261 | dev: false 1262 | 1263 | /fastq@1.15.0: 1264 | resolution: {integrity: sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==} 1265 | dependencies: 1266 | reusify: 1.0.4 1267 | dev: false 1268 | 1269 | /file-entry-cache@6.0.1: 1270 | resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==} 1271 | engines: {node: ^10.12.0 || >=12.0.0} 1272 | dependencies: 1273 | flat-cache: 3.0.4 1274 | dev: false 1275 | 1276 | /fill-range@7.0.1: 1277 | resolution: {integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==} 1278 | engines: {node: '>=8'} 1279 | dependencies: 1280 | to-regex-range: 5.0.1 1281 | dev: false 1282 | 1283 | /find-up@5.0.0: 1284 | resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==} 1285 | engines: {node: '>=10'} 1286 | dependencies: 1287 | locate-path: 6.0.0 1288 | path-exists: 4.0.0 1289 | dev: false 1290 | 1291 | /flat-cache@3.0.4: 1292 | resolution: {integrity: sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==} 1293 | engines: {node: ^10.12.0 || >=12.0.0} 1294 | dependencies: 1295 | flatted: 3.2.7 1296 | rimraf: 3.0.2 1297 | dev: false 1298 | 1299 | /flatted@3.2.7: 1300 | resolution: {integrity: sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==} 1301 | dev: false 1302 | 1303 | /for-each@0.3.3: 1304 | resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==} 1305 | dependencies: 1306 | is-callable: 1.2.7 1307 | dev: false 1308 | 1309 | /fraction.js@4.2.0: 1310 | resolution: {integrity: sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==} 1311 | dev: false 1312 | 1313 | /fs.realpath@1.0.0: 1314 | resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} 1315 | dev: false 1316 | 1317 | /fsevents@2.3.2: 1318 | resolution: {integrity: sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==} 1319 | engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} 1320 | os: [darwin] 1321 | requiresBuild: true 1322 | dev: false 1323 | optional: true 1324 | 1325 | /function-bind@1.1.1: 1326 | resolution: {integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==} 1327 | dev: false 1328 | 1329 | /function.prototype.name@1.1.5: 1330 | resolution: {integrity: sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==} 1331 | engines: {node: '>= 0.4'} 1332 | dependencies: 1333 | call-bind: 1.0.2 1334 | define-properties: 1.2.0 1335 | es-abstract: 1.21.2 1336 | functions-have-names: 1.2.3 1337 | dev: false 1338 | 1339 | /functions-have-names@1.2.3: 1340 | resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==} 1341 | dev: false 1342 | 1343 | /get-intrinsic@1.2.0: 1344 | resolution: {integrity: sha512-L049y6nFOuom5wGyRc3/gdTLO94dySVKRACj1RmJZBQXlbTMhtNIgkWkUHq+jYmZvKf14EW1EoJnnjbmoHij0Q==} 1345 | dependencies: 1346 | function-bind: 1.1.1 1347 | has: 1.0.3 1348 | has-symbols: 1.0.3 1349 | dev: false 1350 | 1351 | /get-stream@6.0.1: 1352 | resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==} 1353 | engines: {node: '>=10'} 1354 | dev: false 1355 | 1356 | /get-symbol-description@1.0.0: 1357 | resolution: {integrity: sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==} 1358 | engines: {node: '>= 0.4'} 1359 | dependencies: 1360 | call-bind: 1.0.2 1361 | get-intrinsic: 1.2.0 1362 | dev: false 1363 | 1364 | /get-tsconfig@4.5.0: 1365 | resolution: {integrity: sha512-MjhiaIWCJ1sAU4pIQ5i5OfOuHHxVo1oYeNsWTON7jxYkod8pHocXeh+SSbmu5OZZZK73B6cbJ2XADzXehLyovQ==} 1366 | dev: false 1367 | 1368 | /glob-parent@5.1.2: 1369 | resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} 1370 | engines: {node: '>= 6'} 1371 | dependencies: 1372 | is-glob: 4.0.3 1373 | dev: false 1374 | 1375 | /glob-parent@6.0.2: 1376 | resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==} 1377 | engines: {node: '>=10.13.0'} 1378 | dependencies: 1379 | is-glob: 4.0.3 1380 | dev: false 1381 | 1382 | /glob@7.1.6: 1383 | resolution: {integrity: sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==} 1384 | dependencies: 1385 | fs.realpath: 1.0.0 1386 | inflight: 1.0.6 1387 | inherits: 2.0.4 1388 | minimatch: 3.1.2 1389 | once: 1.4.0 1390 | path-is-absolute: 1.0.1 1391 | dev: false 1392 | 1393 | /glob@7.1.7: 1394 | resolution: {integrity: sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==} 1395 | dependencies: 1396 | fs.realpath: 1.0.0 1397 | inflight: 1.0.6 1398 | inherits: 2.0.4 1399 | minimatch: 3.1.2 1400 | once: 1.4.0 1401 | path-is-absolute: 1.0.1 1402 | dev: false 1403 | 1404 | /glob@7.2.3: 1405 | resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} 1406 | dependencies: 1407 | fs.realpath: 1.0.0 1408 | inflight: 1.0.6 1409 | inherits: 2.0.4 1410 | minimatch: 3.1.2 1411 | once: 1.4.0 1412 | path-is-absolute: 1.0.1 1413 | dev: false 1414 | 1415 | /globals@13.20.0: 1416 | resolution: {integrity: sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==} 1417 | engines: {node: '>=8'} 1418 | dependencies: 1419 | type-fest: 0.20.2 1420 | dev: false 1421 | 1422 | /globalthis@1.0.3: 1423 | resolution: {integrity: sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==} 1424 | engines: {node: '>= 0.4'} 1425 | dependencies: 1426 | define-properties: 1.2.0 1427 | dev: false 1428 | 1429 | /globby@11.1.0: 1430 | resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==} 1431 | engines: {node: '>=10'} 1432 | dependencies: 1433 | array-union: 2.1.0 1434 | dir-glob: 3.0.1 1435 | fast-glob: 3.2.12 1436 | ignore: 5.2.4 1437 | merge2: 1.4.1 1438 | slash: 3.0.0 1439 | dev: false 1440 | 1441 | /globby@13.1.4: 1442 | resolution: {integrity: sha512-iui/IiiW+QrJ1X1hKH5qwlMQyv34wJAYwH1vrf8b9kBA4sNiif3gKsMHa+BrdnOpEudWjpotfa7LrTzB1ERS/g==} 1443 | engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} 1444 | dependencies: 1445 | dir-glob: 3.0.1 1446 | fast-glob: 3.2.12 1447 | ignore: 5.2.4 1448 | merge2: 1.4.1 1449 | slash: 4.0.0 1450 | dev: false 1451 | 1452 | /gopd@1.0.1: 1453 | resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==} 1454 | dependencies: 1455 | get-intrinsic: 1.2.0 1456 | dev: false 1457 | 1458 | /graceful-fs@4.2.11: 1459 | resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} 1460 | dev: false 1461 | 1462 | /grapheme-splitter@1.0.4: 1463 | resolution: {integrity: sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==} 1464 | dev: false 1465 | 1466 | /has-bigints@1.0.2: 1467 | resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==} 1468 | dev: false 1469 | 1470 | /has-flag@4.0.0: 1471 | resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} 1472 | engines: {node: '>=8'} 1473 | dev: false 1474 | 1475 | /has-property-descriptors@1.0.0: 1476 | resolution: {integrity: sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==} 1477 | dependencies: 1478 | get-intrinsic: 1.2.0 1479 | dev: false 1480 | 1481 | /has-proto@1.0.1: 1482 | resolution: {integrity: sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==} 1483 | engines: {node: '>= 0.4'} 1484 | dev: false 1485 | 1486 | /has-symbols@1.0.3: 1487 | resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==} 1488 | engines: {node: '>= 0.4'} 1489 | dev: false 1490 | 1491 | /has-tostringtag@1.0.0: 1492 | resolution: {integrity: sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==} 1493 | engines: {node: '>= 0.4'} 1494 | dependencies: 1495 | has-symbols: 1.0.3 1496 | dev: false 1497 | 1498 | /has@1.0.3: 1499 | resolution: {integrity: sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==} 1500 | engines: {node: '>= 0.4.0'} 1501 | dependencies: 1502 | function-bind: 1.1.1 1503 | dev: false 1504 | 1505 | /human-signals@2.1.0: 1506 | resolution: {integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==} 1507 | engines: {node: '>=10.17.0'} 1508 | dev: false 1509 | 1510 | /human-signals@4.3.1: 1511 | resolution: {integrity: sha512-nZXjEF2nbo7lIw3mgYjItAfgQXog3OjJogSbKa2CQIIvSGWcKgeJnQlNXip6NglNzYH45nSRiEVimMvYL8DDqQ==} 1512 | engines: {node: '>=14.18.0'} 1513 | dev: false 1514 | 1515 | /ignore@5.2.4: 1516 | resolution: {integrity: sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==} 1517 | engines: {node: '>= 4'} 1518 | dev: false 1519 | 1520 | /import-fresh@3.3.0: 1521 | resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==} 1522 | engines: {node: '>=6'} 1523 | dependencies: 1524 | parent-module: 1.0.1 1525 | resolve-from: 4.0.0 1526 | dev: false 1527 | 1528 | /imurmurhash@0.1.4: 1529 | resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} 1530 | engines: {node: '>=0.8.19'} 1531 | dev: false 1532 | 1533 | /inflight@1.0.6: 1534 | resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==} 1535 | dependencies: 1536 | once: 1.4.0 1537 | wrappy: 1.0.2 1538 | dev: false 1539 | 1540 | /inherits@2.0.4: 1541 | resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} 1542 | dev: false 1543 | 1544 | /internal-slot@1.0.5: 1545 | resolution: {integrity: sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==} 1546 | engines: {node: '>= 0.4'} 1547 | dependencies: 1548 | get-intrinsic: 1.2.0 1549 | has: 1.0.3 1550 | side-channel: 1.0.4 1551 | dev: false 1552 | 1553 | /is-arguments@1.1.1: 1554 | resolution: {integrity: sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==} 1555 | engines: {node: '>= 0.4'} 1556 | dependencies: 1557 | call-bind: 1.0.2 1558 | has-tostringtag: 1.0.0 1559 | dev: false 1560 | 1561 | /is-array-buffer@3.0.2: 1562 | resolution: {integrity: sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==} 1563 | dependencies: 1564 | call-bind: 1.0.2 1565 | get-intrinsic: 1.2.0 1566 | is-typed-array: 1.1.10 1567 | dev: false 1568 | 1569 | /is-arrayish@0.3.2: 1570 | resolution: {integrity: sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==} 1571 | dev: false 1572 | 1573 | /is-bigint@1.0.4: 1574 | resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==} 1575 | dependencies: 1576 | has-bigints: 1.0.2 1577 | dev: false 1578 | 1579 | /is-binary-path@2.1.0: 1580 | resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==} 1581 | engines: {node: '>=8'} 1582 | dependencies: 1583 | binary-extensions: 2.2.0 1584 | dev: false 1585 | 1586 | /is-boolean-object@1.1.2: 1587 | resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==} 1588 | engines: {node: '>= 0.4'} 1589 | dependencies: 1590 | call-bind: 1.0.2 1591 | has-tostringtag: 1.0.0 1592 | dev: false 1593 | 1594 | /is-callable@1.2.7: 1595 | resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==} 1596 | engines: {node: '>= 0.4'} 1597 | dev: false 1598 | 1599 | /is-core-module@2.12.0: 1600 | resolution: {integrity: sha512-RECHCBCd/viahWmwj6enj19sKbHfJrddi/6cBDsNTKbNq0f7VeaUkBo60BqzvPqo/W54ChS62Z5qyun7cfOMqQ==} 1601 | dependencies: 1602 | has: 1.0.3 1603 | dev: false 1604 | 1605 | /is-date-object@1.0.5: 1606 | resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==} 1607 | engines: {node: '>= 0.4'} 1608 | dependencies: 1609 | has-tostringtag: 1.0.0 1610 | dev: false 1611 | 1612 | /is-docker@2.2.1: 1613 | resolution: {integrity: sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==} 1614 | engines: {node: '>=8'} 1615 | hasBin: true 1616 | dev: false 1617 | 1618 | /is-docker@3.0.0: 1619 | resolution: {integrity: sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==} 1620 | engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} 1621 | hasBin: true 1622 | dev: false 1623 | 1624 | /is-extglob@2.1.1: 1625 | resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} 1626 | engines: {node: '>=0.10.0'} 1627 | dev: false 1628 | 1629 | /is-glob@4.0.3: 1630 | resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} 1631 | engines: {node: '>=0.10.0'} 1632 | dependencies: 1633 | is-extglob: 2.1.1 1634 | dev: false 1635 | 1636 | /is-inside-container@1.0.0: 1637 | resolution: {integrity: sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==} 1638 | engines: {node: '>=14.16'} 1639 | hasBin: true 1640 | dependencies: 1641 | is-docker: 3.0.0 1642 | dev: false 1643 | 1644 | /is-map@2.0.2: 1645 | resolution: {integrity: sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==} 1646 | dev: false 1647 | 1648 | /is-negative-zero@2.0.2: 1649 | resolution: {integrity: sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==} 1650 | engines: {node: '>= 0.4'} 1651 | dev: false 1652 | 1653 | /is-number-object@1.0.7: 1654 | resolution: {integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==} 1655 | engines: {node: '>= 0.4'} 1656 | dependencies: 1657 | has-tostringtag: 1.0.0 1658 | dev: false 1659 | 1660 | /is-number@7.0.0: 1661 | resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} 1662 | engines: {node: '>=0.12.0'} 1663 | dev: false 1664 | 1665 | /is-path-inside@3.0.3: 1666 | resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==} 1667 | engines: {node: '>=8'} 1668 | dev: false 1669 | 1670 | /is-regex@1.1.4: 1671 | resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==} 1672 | engines: {node: '>= 0.4'} 1673 | dependencies: 1674 | call-bind: 1.0.2 1675 | has-tostringtag: 1.0.0 1676 | dev: false 1677 | 1678 | /is-set@2.0.2: 1679 | resolution: {integrity: sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==} 1680 | dev: false 1681 | 1682 | /is-shared-array-buffer@1.0.2: 1683 | resolution: {integrity: sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==} 1684 | dependencies: 1685 | call-bind: 1.0.2 1686 | dev: false 1687 | 1688 | /is-stream@2.0.1: 1689 | resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==} 1690 | engines: {node: '>=8'} 1691 | dev: false 1692 | 1693 | /is-stream@3.0.0: 1694 | resolution: {integrity: sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==} 1695 | engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} 1696 | dev: false 1697 | 1698 | /is-string@1.0.7: 1699 | resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==} 1700 | engines: {node: '>= 0.4'} 1701 | dependencies: 1702 | has-tostringtag: 1.0.0 1703 | dev: false 1704 | 1705 | /is-symbol@1.0.4: 1706 | resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==} 1707 | engines: {node: '>= 0.4'} 1708 | dependencies: 1709 | has-symbols: 1.0.3 1710 | dev: false 1711 | 1712 | /is-typed-array@1.1.10: 1713 | resolution: {integrity: sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A==} 1714 | engines: {node: '>= 0.4'} 1715 | dependencies: 1716 | available-typed-arrays: 1.0.5 1717 | call-bind: 1.0.2 1718 | for-each: 0.3.3 1719 | gopd: 1.0.1 1720 | has-tostringtag: 1.0.0 1721 | dev: false 1722 | 1723 | /is-weakmap@2.0.1: 1724 | resolution: {integrity: sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==} 1725 | dev: false 1726 | 1727 | /is-weakref@1.0.2: 1728 | resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==} 1729 | dependencies: 1730 | call-bind: 1.0.2 1731 | dev: false 1732 | 1733 | /is-weakset@2.0.2: 1734 | resolution: {integrity: sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==} 1735 | dependencies: 1736 | call-bind: 1.0.2 1737 | get-intrinsic: 1.2.0 1738 | dev: false 1739 | 1740 | /is-wsl@2.2.0: 1741 | resolution: {integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==} 1742 | engines: {node: '>=8'} 1743 | dependencies: 1744 | is-docker: 2.2.1 1745 | dev: false 1746 | 1747 | /isarray@2.0.5: 1748 | resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==} 1749 | dev: false 1750 | 1751 | /isexe@2.0.0: 1752 | resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} 1753 | dev: false 1754 | 1755 | /jiti@1.18.2: 1756 | resolution: {integrity: sha512-QAdOptna2NYiSSpv0O/BwoHBSmz4YhpzJHyi+fnMRTXFjp7B8i/YG5Z8IfusxB1ufjcD2Sre1F3R+nX3fvy7gg==} 1757 | hasBin: true 1758 | dev: false 1759 | 1760 | /js-sdsl@4.4.0: 1761 | resolution: {integrity: sha512-FfVSdx6pJ41Oa+CF7RDaFmTnCaFhua+SNYQX74riGOpl96x+2jQCqEfQ2bnXu/5DPCqlRuiqyvTJM0Qjz26IVg==} 1762 | dev: false 1763 | 1764 | /js-tokens@4.0.0: 1765 | resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} 1766 | dev: false 1767 | 1768 | /js-yaml@4.1.0: 1769 | resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} 1770 | hasBin: true 1771 | dependencies: 1772 | argparse: 2.0.1 1773 | dev: false 1774 | 1775 | /json-schema-traverse@0.4.1: 1776 | resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==} 1777 | dev: false 1778 | 1779 | /json-stable-stringify-without-jsonify@1.0.1: 1780 | resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==} 1781 | dev: false 1782 | 1783 | /json5@1.0.2: 1784 | resolution: {integrity: sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==} 1785 | hasBin: true 1786 | dependencies: 1787 | minimist: 1.2.8 1788 | dev: false 1789 | 1790 | /jsx-ast-utils@3.3.3: 1791 | resolution: {integrity: sha512-fYQHZTZ8jSfmWZ0iyzfwiU4WDX4HpHbMCZ3gPlWYiCl3BoeOTsqKBqnTVfH2rYT7eP5c3sVbeSPHnnJOaTrWiw==} 1792 | engines: {node: '>=4.0'} 1793 | dependencies: 1794 | array-includes: 3.1.6 1795 | object.assign: 4.1.4 1796 | dev: false 1797 | 1798 | /language-subtag-registry@0.3.22: 1799 | resolution: {integrity: sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==} 1800 | dev: false 1801 | 1802 | /language-tags@1.0.5: 1803 | resolution: {integrity: sha512-qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ==} 1804 | dependencies: 1805 | language-subtag-registry: 0.3.22 1806 | dev: false 1807 | 1808 | /levn@0.4.1: 1809 | resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==} 1810 | engines: {node: '>= 0.8.0'} 1811 | dependencies: 1812 | prelude-ls: 1.2.1 1813 | type-check: 0.4.0 1814 | dev: false 1815 | 1816 | /lilconfig@2.1.0: 1817 | resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==} 1818 | engines: {node: '>=10'} 1819 | dev: false 1820 | 1821 | /lines-and-columns@1.2.4: 1822 | resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} 1823 | dev: false 1824 | 1825 | /locate-path@6.0.0: 1826 | resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==} 1827 | engines: {node: '>=10'} 1828 | dependencies: 1829 | p-locate: 5.0.0 1830 | dev: false 1831 | 1832 | /lodash.merge@4.6.2: 1833 | resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} 1834 | dev: false 1835 | 1836 | /loose-envify@1.4.0: 1837 | resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==} 1838 | hasBin: true 1839 | dependencies: 1840 | js-tokens: 4.0.0 1841 | dev: false 1842 | 1843 | /lru-cache@6.0.0: 1844 | resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==} 1845 | engines: {node: '>=10'} 1846 | dependencies: 1847 | yallist: 4.0.0 1848 | dev: false 1849 | 1850 | /merge-stream@2.0.0: 1851 | resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==} 1852 | dev: false 1853 | 1854 | /merge2@1.4.1: 1855 | resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} 1856 | engines: {node: '>= 8'} 1857 | dev: false 1858 | 1859 | /micromatch@4.0.5: 1860 | resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==} 1861 | engines: {node: '>=8.6'} 1862 | dependencies: 1863 | braces: 3.0.2 1864 | picomatch: 2.3.1 1865 | dev: false 1866 | 1867 | /mimic-fn@2.1.0: 1868 | resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==} 1869 | engines: {node: '>=6'} 1870 | dev: false 1871 | 1872 | /mimic-fn@4.0.0: 1873 | resolution: {integrity: sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==} 1874 | engines: {node: '>=12'} 1875 | dev: false 1876 | 1877 | /minimatch@3.1.2: 1878 | resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} 1879 | dependencies: 1880 | brace-expansion: 1.1.11 1881 | dev: false 1882 | 1883 | /minimist@1.2.8: 1884 | resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} 1885 | dev: false 1886 | 1887 | /ms@2.1.2: 1888 | resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==} 1889 | dev: false 1890 | 1891 | /ms@2.1.3: 1892 | resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} 1893 | dev: false 1894 | 1895 | /mz@2.7.0: 1896 | resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==} 1897 | dependencies: 1898 | any-promise: 1.3.0 1899 | object-assign: 4.1.1 1900 | thenify-all: 1.6.0 1901 | dev: false 1902 | 1903 | /nanoid@3.3.6: 1904 | resolution: {integrity: sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==} 1905 | engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} 1906 | hasBin: true 1907 | dev: false 1908 | 1909 | /natural-compare@1.4.0: 1910 | resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} 1911 | dev: false 1912 | 1913 | /next@13.4.0(react-dom@18.2.0)(react@18.2.0): 1914 | resolution: {integrity: sha512-y3E+2ZjiVrphkz7zcJvd2rEG6miOekI8krPfWV4AZZ9TaF0LDuFdP/f+RQ5M9wRvsz6GWw8k8+7jsO860GxSqg==} 1915 | engines: {node: '>=16.8.0'} 1916 | hasBin: true 1917 | peerDependencies: 1918 | '@opentelemetry/api': ^1.1.0 1919 | fibers: '>= 3.1.0' 1920 | node-sass: ^6.0.0 || ^7.0.0 1921 | react: ^18.2.0 1922 | react-dom: ^18.2.0 1923 | sass: ^1.3.0 1924 | peerDependenciesMeta: 1925 | '@opentelemetry/api': 1926 | optional: true 1927 | fibers: 1928 | optional: true 1929 | node-sass: 1930 | optional: true 1931 | sass: 1932 | optional: true 1933 | dependencies: 1934 | '@next/env': 13.4.0 1935 | '@swc/helpers': 0.5.1 1936 | busboy: 1.6.0 1937 | caniuse-lite: 1.0.30001482 1938 | postcss: 8.4.14 1939 | react: 18.2.0 1940 | react-dom: 18.2.0(react@18.2.0) 1941 | styled-jsx: 5.1.1(react@18.2.0) 1942 | zod: 3.21.4 1943 | optionalDependencies: 1944 | '@next/swc-darwin-arm64': 13.4.0 1945 | '@next/swc-darwin-x64': 13.4.0 1946 | '@next/swc-linux-arm64-gnu': 13.4.0 1947 | '@next/swc-linux-arm64-musl': 13.4.0 1948 | '@next/swc-linux-x64-gnu': 13.4.0 1949 | '@next/swc-linux-x64-musl': 13.4.0 1950 | '@next/swc-win32-arm64-msvc': 13.4.0 1951 | '@next/swc-win32-ia32-msvc': 13.4.0 1952 | '@next/swc-win32-x64-msvc': 13.4.0 1953 | transitivePeerDependencies: 1954 | - '@babel/core' 1955 | - babel-plugin-macros 1956 | dev: false 1957 | 1958 | /node-releases@2.0.10: 1959 | resolution: {integrity: sha512-5GFldHPXVG/YZmFzJvKK2zDSzPKhEp0+ZR5SVaoSag9fsL5YgHbUHDfnG5494ISANDcK4KwPXAx2xqVEydmd7w==} 1960 | dev: false 1961 | 1962 | /normalize-path@3.0.0: 1963 | resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} 1964 | engines: {node: '>=0.10.0'} 1965 | dev: false 1966 | 1967 | /normalize-range@0.1.2: 1968 | resolution: {integrity: sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==} 1969 | engines: {node: '>=0.10.0'} 1970 | dev: false 1971 | 1972 | /npm-run-path@4.0.1: 1973 | resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==} 1974 | engines: {node: '>=8'} 1975 | dependencies: 1976 | path-key: 3.1.1 1977 | dev: false 1978 | 1979 | /npm-run-path@5.1.0: 1980 | resolution: {integrity: sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q==} 1981 | engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} 1982 | dependencies: 1983 | path-key: 4.0.0 1984 | dev: false 1985 | 1986 | /object-assign@4.1.1: 1987 | resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} 1988 | engines: {node: '>=0.10.0'} 1989 | dev: false 1990 | 1991 | /object-hash@3.0.0: 1992 | resolution: {integrity: sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==} 1993 | engines: {node: '>= 6'} 1994 | dev: false 1995 | 1996 | /object-inspect@1.12.3: 1997 | resolution: {integrity: sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==} 1998 | dev: false 1999 | 2000 | /object-is@1.1.5: 2001 | resolution: {integrity: sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==} 2002 | engines: {node: '>= 0.4'} 2003 | dependencies: 2004 | call-bind: 1.0.2 2005 | define-properties: 1.2.0 2006 | dev: false 2007 | 2008 | /object-keys@1.1.1: 2009 | resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==} 2010 | engines: {node: '>= 0.4'} 2011 | dev: false 2012 | 2013 | /object.assign@4.1.4: 2014 | resolution: {integrity: sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==} 2015 | engines: {node: '>= 0.4'} 2016 | dependencies: 2017 | call-bind: 1.0.2 2018 | define-properties: 1.2.0 2019 | has-symbols: 1.0.3 2020 | object-keys: 1.1.1 2021 | dev: false 2022 | 2023 | /object.entries@1.1.6: 2024 | resolution: {integrity: sha512-leTPzo4Zvg3pmbQ3rDK69Rl8GQvIqMWubrkxONG9/ojtFE2rD9fjMKfSI5BxW3osRH1m6VdzmqK8oAY9aT4x5w==} 2025 | engines: {node: '>= 0.4'} 2026 | dependencies: 2027 | call-bind: 1.0.2 2028 | define-properties: 1.2.0 2029 | es-abstract: 1.21.2 2030 | dev: false 2031 | 2032 | /object.fromentries@2.0.6: 2033 | resolution: {integrity: sha512-VciD13dswC4j1Xt5394WR4MzmAQmlgN72phd/riNp9vtD7tp4QQWJ0R4wvclXcafgcYK8veHRed2W6XeGBvcfg==} 2034 | engines: {node: '>= 0.4'} 2035 | dependencies: 2036 | call-bind: 1.0.2 2037 | define-properties: 1.2.0 2038 | es-abstract: 1.21.2 2039 | dev: false 2040 | 2041 | /object.hasown@1.1.2: 2042 | resolution: {integrity: sha512-B5UIT3J1W+WuWIU55h0mjlwaqxiE5vYENJXIXZ4VFe05pNYrkKuK0U/6aFcb0pKywYJh7IhfoqUfKVmrJJHZHw==} 2043 | dependencies: 2044 | define-properties: 1.2.0 2045 | es-abstract: 1.21.2 2046 | dev: false 2047 | 2048 | /object.values@1.1.6: 2049 | resolution: {integrity: sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw==} 2050 | engines: {node: '>= 0.4'} 2051 | dependencies: 2052 | call-bind: 1.0.2 2053 | define-properties: 1.2.0 2054 | es-abstract: 1.21.2 2055 | dev: false 2056 | 2057 | /once@1.4.0: 2058 | resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} 2059 | dependencies: 2060 | wrappy: 1.0.2 2061 | dev: false 2062 | 2063 | /onetime@5.1.2: 2064 | resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==} 2065 | engines: {node: '>=6'} 2066 | dependencies: 2067 | mimic-fn: 2.1.0 2068 | dev: false 2069 | 2070 | /onetime@6.0.0: 2071 | resolution: {integrity: sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==} 2072 | engines: {node: '>=12'} 2073 | dependencies: 2074 | mimic-fn: 4.0.0 2075 | dev: false 2076 | 2077 | /open@9.1.0: 2078 | resolution: {integrity: sha512-OS+QTnw1/4vrf+9hh1jc1jnYjzSG4ttTBB8UxOwAnInG3Uo4ssetzC1ihqaIHjLJnA5GGlRl6QlZXOTQhRBUvg==} 2079 | engines: {node: '>=14.16'} 2080 | dependencies: 2081 | default-browser: 4.0.0 2082 | define-lazy-prop: 3.0.0 2083 | is-inside-container: 1.0.0 2084 | is-wsl: 2.2.0 2085 | dev: false 2086 | 2087 | /optionator@0.9.1: 2088 | resolution: {integrity: sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==} 2089 | engines: {node: '>= 0.8.0'} 2090 | dependencies: 2091 | deep-is: 0.1.4 2092 | fast-levenshtein: 2.0.6 2093 | levn: 0.4.1 2094 | prelude-ls: 1.2.1 2095 | type-check: 0.4.0 2096 | word-wrap: 1.2.3 2097 | dev: false 2098 | 2099 | /p-limit@3.1.0: 2100 | resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==} 2101 | engines: {node: '>=10'} 2102 | dependencies: 2103 | yocto-queue: 0.1.0 2104 | dev: false 2105 | 2106 | /p-locate@5.0.0: 2107 | resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==} 2108 | engines: {node: '>=10'} 2109 | dependencies: 2110 | p-limit: 3.1.0 2111 | dev: false 2112 | 2113 | /parent-module@1.0.1: 2114 | resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} 2115 | engines: {node: '>=6'} 2116 | dependencies: 2117 | callsites: 3.1.0 2118 | dev: false 2119 | 2120 | /path-exists@4.0.0: 2121 | resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} 2122 | engines: {node: '>=8'} 2123 | dev: false 2124 | 2125 | /path-is-absolute@1.0.1: 2126 | resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==} 2127 | engines: {node: '>=0.10.0'} 2128 | dev: false 2129 | 2130 | /path-key@3.1.1: 2131 | resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} 2132 | engines: {node: '>=8'} 2133 | dev: false 2134 | 2135 | /path-key@4.0.0: 2136 | resolution: {integrity: sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==} 2137 | engines: {node: '>=12'} 2138 | dev: false 2139 | 2140 | /path-parse@1.0.7: 2141 | resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} 2142 | dev: false 2143 | 2144 | /path-type@4.0.0: 2145 | resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==} 2146 | engines: {node: '>=8'} 2147 | dev: false 2148 | 2149 | /picocolors@1.0.0: 2150 | resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==} 2151 | dev: false 2152 | 2153 | /picomatch@2.3.1: 2154 | resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} 2155 | engines: {node: '>=8.6'} 2156 | dev: false 2157 | 2158 | /pify@2.3.0: 2159 | resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==} 2160 | engines: {node: '>=0.10.0'} 2161 | dev: false 2162 | 2163 | /pirates@4.0.5: 2164 | resolution: {integrity: sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ==} 2165 | engines: {node: '>= 6'} 2166 | dev: false 2167 | 2168 | /postcss-import@15.1.0(postcss@8.4.23): 2169 | resolution: {integrity: sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==} 2170 | engines: {node: '>=14.0.0'} 2171 | peerDependencies: 2172 | postcss: ^8.0.0 2173 | dependencies: 2174 | postcss: 8.4.23 2175 | postcss-value-parser: 4.2.0 2176 | read-cache: 1.0.0 2177 | resolve: 1.22.2 2178 | dev: false 2179 | 2180 | /postcss-js@4.0.1(postcss@8.4.23): 2181 | resolution: {integrity: sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==} 2182 | engines: {node: ^12 || ^14 || >= 16} 2183 | peerDependencies: 2184 | postcss: ^8.4.21 2185 | dependencies: 2186 | camelcase-css: 2.0.1 2187 | postcss: 8.4.23 2188 | dev: false 2189 | 2190 | /postcss-load-config@4.0.1(postcss@8.4.23): 2191 | resolution: {integrity: sha512-vEJIc8RdiBRu3oRAI0ymerOn+7rPuMvRXslTvZUKZonDHFIczxztIyJ1urxM1x9JXEikvpWWTUUqal5j/8QgvA==} 2192 | engines: {node: '>= 14'} 2193 | peerDependencies: 2194 | postcss: '>=8.0.9' 2195 | ts-node: '>=9.0.0' 2196 | peerDependenciesMeta: 2197 | postcss: 2198 | optional: true 2199 | ts-node: 2200 | optional: true 2201 | dependencies: 2202 | lilconfig: 2.1.0 2203 | postcss: 8.4.23 2204 | yaml: 2.2.2 2205 | dev: false 2206 | 2207 | /postcss-nested@6.0.1(postcss@8.4.23): 2208 | resolution: {integrity: sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==} 2209 | engines: {node: '>=12.0'} 2210 | peerDependencies: 2211 | postcss: ^8.2.14 2212 | dependencies: 2213 | postcss: 8.4.23 2214 | postcss-selector-parser: 6.0.12 2215 | dev: false 2216 | 2217 | /postcss-selector-parser@6.0.12: 2218 | resolution: {integrity: sha512-NdxGCAZdRrwVI1sy59+Wzrh+pMMHxapGnpfenDVlMEXoOcvt4pGE0JLK9YY2F5dLxcFYA/YbVQKhcGU+FtSYQg==} 2219 | engines: {node: '>=4'} 2220 | dependencies: 2221 | cssesc: 3.0.0 2222 | util-deprecate: 1.0.2 2223 | dev: false 2224 | 2225 | /postcss-value-parser@4.2.0: 2226 | resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==} 2227 | dev: false 2228 | 2229 | /postcss@8.4.14: 2230 | resolution: {integrity: sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig==} 2231 | engines: {node: ^10 || ^12 || >=14} 2232 | dependencies: 2233 | nanoid: 3.3.6 2234 | picocolors: 1.0.0 2235 | source-map-js: 1.0.2 2236 | dev: false 2237 | 2238 | /postcss@8.4.23: 2239 | resolution: {integrity: sha512-bQ3qMcpF6A/YjR55xtoTr0jGOlnPOKAIMdOWiv0EIT6HVPEaJiJB4NLljSbiHoC2RX7DN5Uvjtpbg1NPdwv1oA==} 2240 | engines: {node: ^10 || ^12 || >=14} 2241 | dependencies: 2242 | nanoid: 3.3.6 2243 | picocolors: 1.0.0 2244 | source-map-js: 1.0.2 2245 | dev: false 2246 | 2247 | /prelude-ls@1.2.1: 2248 | resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} 2249 | engines: {node: '>= 0.8.0'} 2250 | dev: false 2251 | 2252 | /prop-types@15.8.1: 2253 | resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==} 2254 | dependencies: 2255 | loose-envify: 1.4.0 2256 | object-assign: 4.1.1 2257 | react-is: 16.13.1 2258 | dev: false 2259 | 2260 | /punycode@2.3.0: 2261 | resolution: {integrity: sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==} 2262 | engines: {node: '>=6'} 2263 | dev: false 2264 | 2265 | /queue-microtask@1.2.3: 2266 | resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} 2267 | dev: false 2268 | 2269 | /react-confetti@6.1.0(react@18.2.0): 2270 | resolution: {integrity: sha512-7Ypx4vz0+g8ECVxr88W9zhcQpbeujJAVqL14ZnXJ3I23mOI9/oBVTQ3dkJhUmB0D6XOtCZEM6N0Gm9PMngkORw==} 2271 | engines: {node: '>=10.18'} 2272 | peerDependencies: 2273 | react: ^16.3.0 || ^17.0.1 || ^18.0.0 2274 | dependencies: 2275 | react: 18.2.0 2276 | tween-functions: 1.2.0 2277 | dev: false 2278 | 2279 | /react-dom@18.2.0(react@18.2.0): 2280 | resolution: {integrity: sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==} 2281 | peerDependencies: 2282 | react: ^18.2.0 2283 | dependencies: 2284 | loose-envify: 1.4.0 2285 | react: 18.2.0 2286 | scheduler: 0.23.0 2287 | dev: false 2288 | 2289 | /react-is@16.13.1: 2290 | resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==} 2291 | dev: false 2292 | 2293 | /react@18.2.0: 2294 | resolution: {integrity: sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==} 2295 | engines: {node: '>=0.10.0'} 2296 | dependencies: 2297 | loose-envify: 1.4.0 2298 | dev: false 2299 | 2300 | /read-cache@1.0.0: 2301 | resolution: {integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==} 2302 | dependencies: 2303 | pify: 2.3.0 2304 | dev: false 2305 | 2306 | /readdirp@3.6.0: 2307 | resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==} 2308 | engines: {node: '>=8.10.0'} 2309 | dependencies: 2310 | picomatch: 2.3.1 2311 | dev: false 2312 | 2313 | /regenerator-runtime@0.13.11: 2314 | resolution: {integrity: sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==} 2315 | dev: false 2316 | 2317 | /regexp.prototype.flags@1.5.0: 2318 | resolution: {integrity: sha512-0SutC3pNudRKgquxGoRGIz946MZVHqbNfPjBdxeOhBrdgDKlRoXmYLQN9xRbrR09ZXWeGAdPuif7egofn6v5LA==} 2319 | engines: {node: '>= 0.4'} 2320 | dependencies: 2321 | call-bind: 1.0.2 2322 | define-properties: 1.2.0 2323 | functions-have-names: 1.2.3 2324 | dev: false 2325 | 2326 | /resolve-from@4.0.0: 2327 | resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} 2328 | engines: {node: '>=4'} 2329 | dev: false 2330 | 2331 | /resolve@1.22.2: 2332 | resolution: {integrity: sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g==} 2333 | hasBin: true 2334 | dependencies: 2335 | is-core-module: 2.12.0 2336 | path-parse: 1.0.7 2337 | supports-preserve-symlinks-flag: 1.0.0 2338 | dev: false 2339 | 2340 | /resolve@2.0.0-next.4: 2341 | resolution: {integrity: sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==} 2342 | hasBin: true 2343 | dependencies: 2344 | is-core-module: 2.12.0 2345 | path-parse: 1.0.7 2346 | supports-preserve-symlinks-flag: 1.0.0 2347 | dev: false 2348 | 2349 | /reusify@1.0.4: 2350 | resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} 2351 | engines: {iojs: '>=1.0.0', node: '>=0.10.0'} 2352 | dev: false 2353 | 2354 | /rimraf@3.0.2: 2355 | resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==} 2356 | hasBin: true 2357 | dependencies: 2358 | glob: 7.2.3 2359 | dev: false 2360 | 2361 | /run-applescript@5.0.0: 2362 | resolution: {integrity: sha512-XcT5rBksx1QdIhlFOCtgZkB99ZEouFZ1E2Kc2LHqNW13U3/74YGdkQRmThTwxy4QIyookibDKYZOPqX//6BlAg==} 2363 | engines: {node: '>=12'} 2364 | dependencies: 2365 | execa: 5.1.1 2366 | dev: false 2367 | 2368 | /run-parallel@1.2.0: 2369 | resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} 2370 | dependencies: 2371 | queue-microtask: 1.2.3 2372 | dev: false 2373 | 2374 | /safe-regex-test@1.0.0: 2375 | resolution: {integrity: sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==} 2376 | dependencies: 2377 | call-bind: 1.0.2 2378 | get-intrinsic: 1.2.0 2379 | is-regex: 1.1.4 2380 | dev: false 2381 | 2382 | /scheduler@0.23.0: 2383 | resolution: {integrity: sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==} 2384 | dependencies: 2385 | loose-envify: 1.4.0 2386 | dev: false 2387 | 2388 | /semver@6.3.0: 2389 | resolution: {integrity: sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==} 2390 | hasBin: true 2391 | dev: false 2392 | 2393 | /semver@7.5.0: 2394 | resolution: {integrity: sha512-+XC0AD/R7Q2mPSRuy2Id0+CGTZ98+8f+KvwirxOKIEyid+XSx6HbC63p+O4IndTHuX5Z+JxQ0TghCkO5Cg/2HA==} 2395 | engines: {node: '>=10'} 2396 | hasBin: true 2397 | dependencies: 2398 | lru-cache: 6.0.0 2399 | dev: false 2400 | 2401 | /shebang-command@2.0.0: 2402 | resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} 2403 | engines: {node: '>=8'} 2404 | dependencies: 2405 | shebang-regex: 3.0.0 2406 | dev: false 2407 | 2408 | /shebang-regex@3.0.0: 2409 | resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} 2410 | engines: {node: '>=8'} 2411 | dev: false 2412 | 2413 | /side-channel@1.0.4: 2414 | resolution: {integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==} 2415 | dependencies: 2416 | call-bind: 1.0.2 2417 | get-intrinsic: 1.2.0 2418 | object-inspect: 1.12.3 2419 | dev: false 2420 | 2421 | /signal-exit@3.0.7: 2422 | resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==} 2423 | dev: false 2424 | 2425 | /simple-swizzle@0.2.2: 2426 | resolution: {integrity: sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==} 2427 | dependencies: 2428 | is-arrayish: 0.3.2 2429 | dev: false 2430 | 2431 | /slash@3.0.0: 2432 | resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} 2433 | engines: {node: '>=8'} 2434 | dev: false 2435 | 2436 | /slash@4.0.0: 2437 | resolution: {integrity: sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==} 2438 | engines: {node: '>=12'} 2439 | dev: false 2440 | 2441 | /source-map-js@1.0.2: 2442 | resolution: {integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==} 2443 | engines: {node: '>=0.10.0'} 2444 | dev: false 2445 | 2446 | /stop-iteration-iterator@1.0.0: 2447 | resolution: {integrity: sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ==} 2448 | engines: {node: '>= 0.4'} 2449 | dependencies: 2450 | internal-slot: 1.0.5 2451 | dev: false 2452 | 2453 | /streamsearch@1.1.0: 2454 | resolution: {integrity: sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==} 2455 | engines: {node: '>=10.0.0'} 2456 | dev: false 2457 | 2458 | /string.prototype.matchall@4.0.8: 2459 | resolution: {integrity: sha512-6zOCOcJ+RJAQshcTvXPHoxoQGONa3e/Lqx90wUA+wEzX78sg5Bo+1tQo4N0pohS0erG9qtCqJDjNCQBjeWVxyg==} 2460 | dependencies: 2461 | call-bind: 1.0.2 2462 | define-properties: 1.2.0 2463 | es-abstract: 1.21.2 2464 | get-intrinsic: 1.2.0 2465 | has-symbols: 1.0.3 2466 | internal-slot: 1.0.5 2467 | regexp.prototype.flags: 1.5.0 2468 | side-channel: 1.0.4 2469 | dev: false 2470 | 2471 | /string.prototype.trim@1.2.7: 2472 | resolution: {integrity: sha512-p6TmeT1T3411M8Cgg9wBTMRtY2q9+PNy9EV1i2lIXUN/btt763oIfxwN3RR8VU6wHX8j/1CFy0L+YuThm6bgOg==} 2473 | engines: {node: '>= 0.4'} 2474 | dependencies: 2475 | call-bind: 1.0.2 2476 | define-properties: 1.2.0 2477 | es-abstract: 1.21.2 2478 | dev: false 2479 | 2480 | /string.prototype.trimend@1.0.6: 2481 | resolution: {integrity: sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ==} 2482 | dependencies: 2483 | call-bind: 1.0.2 2484 | define-properties: 1.2.0 2485 | es-abstract: 1.21.2 2486 | dev: false 2487 | 2488 | /string.prototype.trimstart@1.0.6: 2489 | resolution: {integrity: sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==} 2490 | dependencies: 2491 | call-bind: 1.0.2 2492 | define-properties: 1.2.0 2493 | es-abstract: 1.21.2 2494 | dev: false 2495 | 2496 | /strip-ansi@6.0.1: 2497 | resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} 2498 | engines: {node: '>=8'} 2499 | dependencies: 2500 | ansi-regex: 5.0.1 2501 | dev: false 2502 | 2503 | /strip-bom@3.0.0: 2504 | resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==} 2505 | engines: {node: '>=4'} 2506 | dev: false 2507 | 2508 | /strip-final-newline@2.0.0: 2509 | resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==} 2510 | engines: {node: '>=6'} 2511 | dev: false 2512 | 2513 | /strip-final-newline@3.0.0: 2514 | resolution: {integrity: sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==} 2515 | engines: {node: '>=12'} 2516 | dev: false 2517 | 2518 | /strip-json-comments@3.1.1: 2519 | resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} 2520 | engines: {node: '>=8'} 2521 | dev: false 2522 | 2523 | /styled-jsx@5.1.1(react@18.2.0): 2524 | resolution: {integrity: sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==} 2525 | engines: {node: '>= 12.0.0'} 2526 | peerDependencies: 2527 | '@babel/core': '*' 2528 | babel-plugin-macros: '*' 2529 | react: '>= 16.8.0 || 17.x.x || ^18.0.0-0' 2530 | peerDependenciesMeta: 2531 | '@babel/core': 2532 | optional: true 2533 | babel-plugin-macros: 2534 | optional: true 2535 | dependencies: 2536 | client-only: 0.0.1 2537 | react: 18.2.0 2538 | dev: false 2539 | 2540 | /sucrase@3.32.0: 2541 | resolution: {integrity: sha512-ydQOU34rpSyj2TGyz4D2p8rbktIOZ8QY9s+DGLvFU1i5pWJE8vkpruCjGCMHsdXwnD7JDcS+noSwM/a7zyNFDQ==} 2542 | engines: {node: '>=8'} 2543 | hasBin: true 2544 | dependencies: 2545 | '@jridgewell/gen-mapping': 0.3.3 2546 | commander: 4.1.1 2547 | glob: 7.1.6 2548 | lines-and-columns: 1.2.4 2549 | mz: 2.7.0 2550 | pirates: 4.0.5 2551 | ts-interface-checker: 0.1.13 2552 | dev: false 2553 | 2554 | /supports-color@7.2.0: 2555 | resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} 2556 | engines: {node: '>=8'} 2557 | dependencies: 2558 | has-flag: 4.0.0 2559 | dev: false 2560 | 2561 | /supports-preserve-symlinks-flag@1.0.0: 2562 | resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} 2563 | engines: {node: '>= 0.4'} 2564 | dev: false 2565 | 2566 | /synckit@0.8.5: 2567 | resolution: {integrity: sha512-L1dapNV6vu2s/4Sputv8xGsCdAVlb5nRDMFU/E27D44l5U6cw1g0dGd45uLc+OXjNMmF4ntiMdCimzcjFKQI8Q==} 2568 | engines: {node: ^14.18.0 || >=16.0.0} 2569 | dependencies: 2570 | '@pkgr/utils': 2.4.0 2571 | tslib: 2.5.0 2572 | dev: false 2573 | 2574 | /tailwindcss@3.3.2: 2575 | resolution: {integrity: sha512-9jPkMiIBXvPc2KywkraqsUfbfj+dHDb+JPWtSJa9MLFdrPyazI7q6WX2sUrm7R9eVR7qqv3Pas7EvQFzxKnI6w==} 2576 | engines: {node: '>=14.0.0'} 2577 | hasBin: true 2578 | dependencies: 2579 | '@alloc/quick-lru': 5.2.0 2580 | arg: 5.0.2 2581 | chokidar: 3.5.3 2582 | didyoumean: 1.2.2 2583 | dlv: 1.1.3 2584 | fast-glob: 3.2.12 2585 | glob-parent: 6.0.2 2586 | is-glob: 4.0.3 2587 | jiti: 1.18.2 2588 | lilconfig: 2.1.0 2589 | micromatch: 4.0.5 2590 | normalize-path: 3.0.0 2591 | object-hash: 3.0.0 2592 | picocolors: 1.0.0 2593 | postcss: 8.4.23 2594 | postcss-import: 15.1.0(postcss@8.4.23) 2595 | postcss-js: 4.0.1(postcss@8.4.23) 2596 | postcss-load-config: 4.0.1(postcss@8.4.23) 2597 | postcss-nested: 6.0.1(postcss@8.4.23) 2598 | postcss-selector-parser: 6.0.12 2599 | postcss-value-parser: 4.2.0 2600 | resolve: 1.22.2 2601 | sucrase: 3.32.0 2602 | transitivePeerDependencies: 2603 | - ts-node 2604 | dev: false 2605 | 2606 | /tapable@2.2.1: 2607 | resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==} 2608 | engines: {node: '>=6'} 2609 | dev: false 2610 | 2611 | /text-table@0.2.0: 2612 | resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==} 2613 | dev: false 2614 | 2615 | /thenify-all@1.6.0: 2616 | resolution: {integrity: sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==} 2617 | engines: {node: '>=0.8'} 2618 | dependencies: 2619 | thenify: 3.3.1 2620 | dev: false 2621 | 2622 | /thenify@3.3.1: 2623 | resolution: {integrity: sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==} 2624 | dependencies: 2625 | any-promise: 1.3.0 2626 | dev: false 2627 | 2628 | /titleize@3.0.0: 2629 | resolution: {integrity: sha512-KxVu8EYHDPBdUYdKZdKtU2aj2XfEx9AfjXxE/Aj0vT06w2icA09Vus1rh6eSu1y01akYg6BjIK/hxyLJINoMLQ==} 2630 | engines: {node: '>=12'} 2631 | dev: false 2632 | 2633 | /to-regex-range@5.0.1: 2634 | resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} 2635 | engines: {node: '>=8.0'} 2636 | dependencies: 2637 | is-number: 7.0.0 2638 | dev: false 2639 | 2640 | /ts-interface-checker@0.1.13: 2641 | resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==} 2642 | dev: false 2643 | 2644 | /tsconfig-paths@3.14.2: 2645 | resolution: {integrity: sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g==} 2646 | dependencies: 2647 | '@types/json5': 0.0.29 2648 | json5: 1.0.2 2649 | minimist: 1.2.8 2650 | strip-bom: 3.0.0 2651 | dev: false 2652 | 2653 | /tslib@1.14.1: 2654 | resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==} 2655 | dev: false 2656 | 2657 | /tslib@2.5.0: 2658 | resolution: {integrity: sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==} 2659 | dev: false 2660 | 2661 | /tsutils@3.21.0(typescript@5.0.4): 2662 | resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==} 2663 | engines: {node: '>= 6'} 2664 | peerDependencies: 2665 | 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' 2666 | dependencies: 2667 | tslib: 1.14.1 2668 | typescript: 5.0.4 2669 | dev: false 2670 | 2671 | /tween-functions@1.2.0: 2672 | resolution: {integrity: sha512-PZBtLYcCLtEcjL14Fzb1gSxPBeL7nWvGhO5ZFPGqziCcr8uvHp0NDmdjBchp6KHL+tExcg0m3NISmKxhU394dA==} 2673 | dev: false 2674 | 2675 | /type-check@0.4.0: 2676 | resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==} 2677 | engines: {node: '>= 0.8.0'} 2678 | dependencies: 2679 | prelude-ls: 1.2.1 2680 | dev: false 2681 | 2682 | /type-fest@0.20.2: 2683 | resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==} 2684 | engines: {node: '>=10'} 2685 | dev: false 2686 | 2687 | /typed-array-length@1.0.4: 2688 | resolution: {integrity: sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==} 2689 | dependencies: 2690 | call-bind: 1.0.2 2691 | for-each: 0.3.3 2692 | is-typed-array: 1.1.10 2693 | dev: false 2694 | 2695 | /typescript@5.0.4: 2696 | resolution: {integrity: sha512-cW9T5W9xY37cc+jfEnaUvX91foxtHkza3Nw3wkoF4sSlKn0MONdkdEndig/qPBWXNkmplh3NzayQzCiHM4/hqw==} 2697 | engines: {node: '>=12.20'} 2698 | hasBin: true 2699 | dev: false 2700 | 2701 | /unbox-primitive@1.0.2: 2702 | resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==} 2703 | dependencies: 2704 | call-bind: 1.0.2 2705 | has-bigints: 1.0.2 2706 | has-symbols: 1.0.3 2707 | which-boxed-primitive: 1.0.2 2708 | dev: false 2709 | 2710 | /untildify@4.0.0: 2711 | resolution: {integrity: sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==} 2712 | engines: {node: '>=8'} 2713 | dev: false 2714 | 2715 | /update-browserslist-db@1.0.11(browserslist@4.21.5): 2716 | resolution: {integrity: sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==} 2717 | hasBin: true 2718 | peerDependencies: 2719 | browserslist: '>= 4.21.0' 2720 | dependencies: 2721 | browserslist: 4.21.5 2722 | escalade: 3.1.1 2723 | picocolors: 1.0.0 2724 | dev: false 2725 | 2726 | /uri-js@4.4.1: 2727 | resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} 2728 | dependencies: 2729 | punycode: 2.3.0 2730 | dev: false 2731 | 2732 | /util-deprecate@1.0.2: 2733 | resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} 2734 | dev: false 2735 | 2736 | /which-boxed-primitive@1.0.2: 2737 | resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==} 2738 | dependencies: 2739 | is-bigint: 1.0.4 2740 | is-boolean-object: 1.1.2 2741 | is-number-object: 1.0.7 2742 | is-string: 1.0.7 2743 | is-symbol: 1.0.4 2744 | dev: false 2745 | 2746 | /which-collection@1.0.1: 2747 | resolution: {integrity: sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A==} 2748 | dependencies: 2749 | is-map: 2.0.2 2750 | is-set: 2.0.2 2751 | is-weakmap: 2.0.1 2752 | is-weakset: 2.0.2 2753 | dev: false 2754 | 2755 | /which-typed-array@1.1.9: 2756 | resolution: {integrity: sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA==} 2757 | engines: {node: '>= 0.4'} 2758 | dependencies: 2759 | available-typed-arrays: 1.0.5 2760 | call-bind: 1.0.2 2761 | for-each: 0.3.3 2762 | gopd: 1.0.1 2763 | has-tostringtag: 1.0.0 2764 | is-typed-array: 1.1.10 2765 | dev: false 2766 | 2767 | /which@2.0.2: 2768 | resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} 2769 | engines: {node: '>= 8'} 2770 | hasBin: true 2771 | dependencies: 2772 | isexe: 2.0.0 2773 | dev: false 2774 | 2775 | /word-wrap@1.2.3: 2776 | resolution: {integrity: sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==} 2777 | engines: {node: '>=0.10.0'} 2778 | dev: false 2779 | 2780 | /wrappy@1.0.2: 2781 | resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} 2782 | dev: false 2783 | 2784 | /yallist@4.0.0: 2785 | resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==} 2786 | dev: false 2787 | 2788 | /yaml@2.2.2: 2789 | resolution: {integrity: sha512-CBKFWExMn46Foo4cldiChEzn7S7SRV+wqiluAb6xmueD/fGyRHIhX8m14vVGgeFWjN540nKCNVj6P21eQjgTuA==} 2790 | engines: {node: '>= 14'} 2791 | dev: false 2792 | 2793 | /yocto-queue@0.1.0: 2794 | resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} 2795 | engines: {node: '>=10'} 2796 | dev: false 2797 | 2798 | /zod@3.21.4: 2799 | resolution: {integrity: sha512-m46AKbrzKVzOzs/DZgVnG5H55N1sv1M8qZU3A8RIKbs3mrACDNeIOeilDymVb2HdmP8uwshOCF4uJ8uM9rCqJw==} 2800 | dev: false 2801 | --------------------------------------------------------------------------------