commit 94a3197208fe9642b79e32616377190f4c79a3fc Author: Eugene Fox Date: Wed Mar 26 16:42:06 2025 +0000 major: initial commit diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 0000000..e4a11ca --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,41 @@ +// For format details, see https://aka.ms/devcontainer.json. For config options, see the +// README at: https://github.com/devcontainers/templates/tree/main/src/typescript-node +{ + "name": "easylogon-web", + // Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile + "image": "mcr.microsoft.com/devcontainers/typescript-node:1-22-bookworm", + "features": { + "ghcr.io/devcontainers/features/docker-in-docker:2": { + "installDockerBuildx": true, + "version": "latest", + "dockerDashComposeVersion": "latest" + } + }, + + // Features to add to the dev container. More info: https://containers.dev/features. + // "features": {}, + + // Use 'forwardPorts' to make a list of ports inside the container available locally. + // "forwardPorts": [], + + // Use 'postCreateCommand' to run commands after the container is created. + "postCreateCommand": "yarn install", + + // Configure tool-specific properties. + "customizations": { + "vscode": { + "extensions": [ + "bierner.github-markdown-preview", + "dbaeumer.vscode-eslint", + "github.vscode-github-actions", + "Gruntfuggly.todo-tree", + "jock.svg", + "ms-azuretools.vscode-docker", + "saeris.markdown-github-alerts" + ] + } + } + + // Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root. + // "remoteUser": "root" +} diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 0000000..9a3fc67 --- /dev/null +++ b/.dockerignore @@ -0,0 +1,31 @@ +# Logs +logs +*.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* +pnpm-debug.log* +lerna-debug.log* + +node_modules +dist +dist-ssr +*.local + +# Editor directories and files +.vscode/* +.devcontainer/* +.idea +.DS_Store +*.suo +*.ntvs* +*.njsproj +*.sln +*.sw? + +# Docs +*.md +COPYING + +# Project-specific files +.env diff --git a/.env b/.env new file mode 100644 index 0000000..b728626 --- /dev/null +++ b/.env @@ -0,0 +1,3 @@ +VITE_SIGNALR_URL=http://localhost:8000/ws +VITE_ENDPOINT_URL=http://localhost:8000/send +VITE_COMMIT=devbuild diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml new file mode 100644 index 0000000..a14fcdb --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -0,0 +1,120 @@ +name: "🐞 Bug Report" +description: Create a report to help us improve the website +title: "[Bug]: " +labels: ["bug", "needs-triage"] +assignees: + - xfox111 +body: + - type: markdown + attributes: + value: | + Thanks for taking the time to fill out this bug report! + + - type: markdown + attributes: + value: | + > [!IMPORTANT] + > This repository is for tracking issues within **EasyLogon web application** only. + > + > List of all repositories: + > - [xfox111/easylogon-mobile](https://github.com/xfox111.net/easylogon-mobile) (mobile application) + > - [xfox111/easylogon-plugin](https://github.com/xfox111.net/easylogon-plugin) (website plugin) + > - [xfox111/easylogon-extension](https://github.com/xfox111.net/easylogon-plugin) (browser extension) + + - type: textarea + id: description + attributes: + label: Description + description: A clear and concise description of what the bug is. + validations: + required: true + + - type: textarea + attributes: + label: Reproduction steps + description: Precisely describe minimal number of steps that make the bug to appear + placeholder: | + 1. Go to '...' + 2. Click on '...' + 3. Scroll down to '...' + 4. See '...' + validations: + required: true + + - type: textarea + attributes: + label: Expected behavior + description: A clear and concise description of what you expected to happen. + validations: + required: true + + - type: textarea + attributes: + label: Screenshot + description: If applicable, add screenshots to help explain your problem. + validations: + required: false + + - type: input + id: version + attributes: + label: Version and commit hash + placeholder: e.g. Microsoft Edge 119.0.2151.58 + description: Go to the application, click "About" and copy the "Version" string + validations: + required: true + + - type: dropdown + id: pwa + attributes: + label: Is this a PWA? + description: Did you install the application, or are you using it in the browser? + options: + - "Yes, it is a PWA" + - "No, I used it inside a browser" + validations: + required: true + + - type: dropdown + id: os + attributes: + label: Operating system + options: + - "Windows 10 and newer" + - "Windows 8/8.1" + - "Windows 7 and older" + - "Android" + - "MacOS" + - "iOS/iPadOS" + - "Debian or Debian-based" + - "Other" + validations: + required: true + + - type: input + id: browser + attributes: + label: Browser name and version + placeholder: e.g. Microsoft Edge 119.0.2151.58 + description: Put here your browser's name and version + validations: + required: true + + - type: textarea + id: context + attributes: + label: Additional context + description: Add any other context about the problem here. + validations: + required: false + + - type: checkboxes + id: checkboxes + attributes: + label: Validations + description: Before submitting the issue, please make sure you do the following + options: + - label: Check that there isn't already an issue that reports the same bug to avoid creating a duplicate. + required: true + - label: The provided reproduction is a minimal reproducible example of the bug. + required: true diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 0000000..9e6deba --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1,3 @@ +# yaml-language-server: $schema=https://json.schemastore.org/github-issue-config.json + +blank_issues_enabled: true diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml new file mode 100644 index 0000000..099f22c --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.yml @@ -0,0 +1,63 @@ +name: "🚀 New feature proposal" +description: Suggest a feature idea for the website +title: "[Feature]: " +labels: ["feature", "needs-triage"] +assignees: + - xfox111 +body: + - type: markdown + attributes: + value: | + Thanks for your interest and taking the time to fill out this form! + + - type: markdown + attributes: + value: | + > [!IMPORTANT] + > This repository is for tracking issues within **EasyLogon web application** only. + > + > List of all repositories: + > - [xfox111/easylogon-mobile](https://github.com/xfox111.net/easylogon-mobile) (mobile application) + > - [xfox111/easylogon-plugin](https://github.com/xfox111.net/easylogon-plugin) (website plugin) + > - [xfox111/easylogon-extension](https://github.com/xfox111.net/easylogon-plugin) (browser extension) + + - type: textarea + id: proposition + attributes: + label: Proposed solution + description: Describe the solution you'd like + validations: + required: true + + - type: textarea + id: justification + attributes: + label: Justification + description: Is your feature request related to a problem? Please describe. + validations: + required: true + + - type: textarea + id: alts + attributes: + label: Alternatives + description: Describe alternatives you've considered. + validations: + required: true + + - type: textarea + id: context + attributes: + label: Additional context + description: Add any other context or screenshots about the feature request here. + validations: + required: false + + - type: checkboxes + id: checkboxes + attributes: + label: Validations + description: Before submitting the issue, please make sure you do the following + options: + - label: Check that there isn't already an issue that request the same feature to avoid creating a duplicate. + required: true diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..81ec586 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,55 @@ +# Please see the documentation for all configuration options: +# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates + +# yaml-language-server: $schema=https://json.schemastore.org/dependabot-2.0.json + +version: 2 +updates: + + - package-ecosystem: "npm" + directory: "/" + target-branch: "next" + assignees: + - "xfox111" + reviewers: + - "xfox111" + schedule: + interval: monthly + rebase-strategy: disabled + open-pull-requests-limit: 20 + + - package-ecosystem: "github-actions" + directory: "/" + target-branch: "next" + assignees: + - "xfox111" + reviewers: + - "xfox111" + schedule: + interval: monthly + rebase-strategy: disabled + open-pull-requests-limit: 20 + + - package-ecosystem: "devcontainers" + directory: "/" + target-branch: "next" + assignees: + - "xfox111" + reviewers: + - "xfox111" + schedule: + interval: monthly + rebase-strategy: disabled + open-pull-requests-limit: 20 + + - package-ecosystem: "docker" + directory: "/" + target-branch: "next" + assignees: + - "xfox111" + reviewers: + - "xfox111" + schedule: + interval: monthly + rebase-strategy: disabled + open-pull-requests-limit: 20 diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md new file mode 100644 index 0000000..b080b7f --- /dev/null +++ b/.github/pull_request_template.md @@ -0,0 +1,7 @@ +Resolves: #issue_number + +# Description + + + + diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..e469cb4 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,75 @@ +name: "CI pipeline" + +on: + push: + branches: [ "main" ] + paths-ignore: + - '.devcontainer/*' + - '.github/*' + - '!.github/workflows/ci.yml' + - '.vscode/*' + - '**.md' + - '.env*' + - 'COPYING' + pull_request: + branches: [ "main", "deps" ] + paths-ignore: + - '.devcontainer/*' + - '.github/*' + - '!.github/workflows/ci.yml' + - '.vscode/*' + - '**.md' + - '.env*' + - 'COPYING' + workflow_dispatch: + inputs: + push: + type: boolean + required: false + default: false + description: "Push to Docker Hub" + +jobs: + build: + runs-on: ubuntu-latest + + permissions: + packages: write + + steps: + - uses: actions/checkout@v4 + + - uses: docker/metadata-action@v5 + id: meta + with: + images: | + ${{ github.repository }} + ghcr.io/${{ github.repository }} + tags: | + latest + ${{ github.sha }} + + - name: "Login to Docker Hub" + if: github.event_name != 'pull_request' || github.event.inputs.push == 'true' + uses: docker/login-action@v3 + with: + username: ${{ secrets.DOCKERHUB_USERNAME }} + password: ${{ secrets.DOCKERHUB_TOKEN }} + + - name: "Login to GitHub Container Registry" + if: github.event_name != 'pull_request' || github.event.inputs.push == 'true' + uses: docker/login-action@v3 + with: + registry: ghcr.io + username: ${{ github.repository_owner }} + password: ${{ secrets.GITHUB_TOKEN }} + + - uses: docker/build-push-action@v6 + with: + context: . + build-args: | + SIGNALR_URL=https://ezlog.app/api/comms + ENDPOINT_URL=https://ezlog.app/api/send + COMMIT=${{ github.sha }} + push: ${{ github.event_name != 'pull_request' || github.event.inputs.push == 'true' }} + tags: ${{ steps.meta.outputs.tags }} diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..a547bf3 --- /dev/null +++ b/.gitignore @@ -0,0 +1,24 @@ +# Logs +logs +*.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* +pnpm-debug.log* +lerna-debug.log* + +node_modules +dist +dist-ssr +*.local + +# Editor directories and files +.vscode/* +!.vscode/extensions.json +.idea +.DS_Store +*.suo +*.ntvs* +*.njsproj +*.sln +*.sw? diff --git a/.vscode/extensions.json b/.vscode/extensions.json new file mode 100644 index 0000000..c22c281 --- /dev/null +++ b/.vscode/extensions.json @@ -0,0 +1,12 @@ +{ + "recommendations": [ + "bierner.github-markdown-preview", + "dbaeumer.vscode-eslint", + "github.vscode-github-actions", + "Gruntfuggly.todo-tree", + "jock.svg", + "mrmlnc.vscode-scss", + "ms-azuretools.vscode-docker", + "saeris.markdown-github-alerts" + ] +} diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md new file mode 100644 index 0000000..18231ab --- /dev/null +++ b/CODE_OF_CONDUCT.md @@ -0,0 +1,135 @@ + +# Contributor Covenant Code of Conduct + +## Our Pledge + +We as members, contributors, and leaders pledge to make participation in our +community a harassment-free experience for everyone, regardless of age, body +size, visible or invisible disability, ethnicity, sex characteristics, gender +identity and expression, level of experience, education, socio-economic status, +nationality, personal appearance, race, caste, color, religion, or sexual +identity and orientation. + +We pledge to act and interact in ways that contribute to an open, welcoming, +diverse, inclusive, and healthy community. + +## Our Standards + +Examples of behavior that contributes to a positive environment for our +community include: + +* Demonstrating empathy and kindness toward other people +* Being respectful of differing opinions, viewpoints, and experiences +* Giving and gracefully accepting constructive feedback +* Accepting responsibility and apologizing to those affected by our mistakes, + and learning from the experience +* Focusing on what is best not just for us as individuals, but for the overall + community + +Examples of unacceptable behavior include: + +* The use of sexualized language or imagery, and sexual attention or advances of + any kind +* Trolling, insulting or derogatory comments, and personal or political attacks +* Public or private harassment +* Publishing others' private information, such as a physical or email address, + without their explicit permission +* Other conduct which could reasonably be considered inappropriate in a + professional setting + +## Enforcement Responsibilities + +Community leaders are responsible for clarifying and enforcing our standards of +acceptable behavior and will take appropriate and fair corrective action in +response to any behavior that they deem inappropriate, threatening, offensive, +or harmful. + +Community leaders have the right and responsibility to remove, edit, or reject +comments, commits, code, wiki edits, issues, and other contributions that are +not aligned to this Code of Conduct, and will communicate reasons for moderation +decisions when appropriate. + +## Scope + +This Code of Conduct applies within all community spaces, and also applies when +an individual is officially representing the community in public spaces. +Examples of representing our community include using an official email address, +posting via an official social media account, or acting as an appointed +representative at an online or offline event. + +## Enforcement + +Instances of abusive, harassing, or otherwise unacceptable behavior may be +reported to the community leaders responsible for enforcement at +[opensource@xfox111.net](mailto:opensource@xfox111.net). +All complaints will be reviewed and investigated promptly and fairly. + +All community leaders are obligated to respect the privacy and security of the +reporter of any incident. + +## Enforcement Guidelines + +Community leaders will follow these Community Impact Guidelines in determining +the consequences for any action they deem in violation of this Code of Conduct: + +### 1. Correction + +**Community Impact**: Use of inappropriate language or other behavior deemed +unprofessional or unwelcome in the community. + +**Consequence**: A private, written warning from community leaders, providing +clarity around the nature of the violation and an explanation of why the +behavior was inappropriate. A public apology may be requested. + +### 2. Warning + +**Community Impact**: A violation through a single incident or series of +actions. + +**Consequence**: A warning with consequences for continued behavior. No +interaction with the people involved, including unsolicited interaction with +those enforcing the Code of Conduct, for a specified period of time. This +includes avoiding interactions in community spaces as well as external channels +like social media. Violating these terms may lead to a temporary or permanent +ban. + +### 3. Temporary Ban + +**Community Impact**: A serious violation of community standards, including +sustained inappropriate behavior. + +**Consequence**: A temporary ban from any sort of interaction or public +communication with the community for a specified period of time. No public or +private interaction with the people involved, including unsolicited interaction +with those enforcing the Code of Conduct, is allowed during this period. +Violating these terms may lead to a permanent ban. + +### 4. Permanent Ban + +**Community Impact**: Demonstrating a pattern of violation of community +standards, including sustained inappropriate behavior, harassment of an +individual, or aggression toward or disparagement of classes of individuals. + +**Consequence**: A permanent ban from any sort of public interaction within the +community. + +## Attribution + +This Code of Conduct is adapted from the [Contributor Covenant][homepage], +version 2.1, available at +[https://www.contributor-covenant.org/version/2/1/code_of_conduct.html][v2.1]. + +Community Impact Guidelines were inspired by +[Mozilla's code of conduct enforcement ladder][Mozilla CoC]. + +For answers to common questions about this code of conduct, see the FAQ at +[https://www.contributor-covenant.org/faq][FAQ]. Translations are available at +[https://www.contributor-covenant.org/translations][translations]. + +> Contributor Covenant is released under the [Creative Commons Attribution 4.0 International Public License](https://github.com/EthicalSource/contributor_covenant/blob/release/LICENSE.md). + +[homepage]: https://www.contributor-covenant.org +[v2.1]: https://www.contributor-covenant.org/version/2/1/code_of_conduct.html +[Mozilla CoC]: https://github.com/mozilla/diversity +[FAQ]: https://www.contributor-covenant.org/faq +[translations]: https://www.contributor-covenant.org/translations diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 0000000..9b599c6 --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,37 @@ +# Contribution Guidelines + +Thank you for considering contributing to the project! We welcome your help and appreciate your support. + +> [!IMPORTANT] +> Since this is a proprietary project, we have a strict PR policy. While you are welcome to create issues, send your feedback or ask to work on an issue, do not expect getting assigned one. + +## General guidelines + +- **Follow templates:** Use the provided issue and pull request templates to ensure consistency and completeness. Be concise. +- **Follow Single responisibility principle:** Each contribution must correspond to a single area of work. Don't mix them up (e.g. fixing a bug and adding a new feature in the same PR). +- **Code of Conduct:** Be sure to follow our [Code of Conduct](CODE_OF_CONDUCT.md). + +> [!IMPORTANT] +> **Do not work on a PR unless you were assigned to an issue.** All unassigned PRs will be closed without review! + +## Contributing Process + +1. **Create an Issue:** Before starting work, check the issue tracker to see if a relevant issue already exists. If not, create a new issue to describe the bug or feature. + +2. **Get Assigned:** Make sure you are assigned to an issue before beginning any work. This helps prevent duplicate efforts. + +3. **Fork the Repository:** Fork the repository and clone it to your local machine. + +4. **Work on Your Changes:** Create a new branch for your work and make your changes. + +5. **Commit Your Changes:** Write clear, concise commit messages. + +6. **Open a Pull Request (PR):** Once your changes are ready, open a PR. Ensure you link the PR to the corresponding issue. + +7. **Review Process:** Be responsive to feedback and make any requested changes. + +## Additional Notes + +Feel free to suggest improvements or ask questions. You can send your feedback to [opensource@xfox111.net](mailto:opensource@xfox111.net) + +Thank you! diff --git a/COPYING b/COPYING new file mode 100644 index 0000000..f7d0c53 --- /dev/null +++ b/COPYING @@ -0,0 +1,21 @@ +©2025 Eugene Fox. Some rights reserved. + +This repository and its content are subject to general copyright law. + +You must obtain written permission from the author to deploy, modify, or +distribute (use) any copyrighted material. + +You may use copyrighted material without excplicit permission +in following cases: + + - Educational purposes. + - Scientific research. + - Information security research and analysis. + - Source code contributions to the original author. + +When shared or modified, each copyrighted material must have a proper +attribution. + +When contributing source code, the contributor agrees to transfer +the intellectual property rights of the contribution to the original author +on the condition of proper attribution by the original author. diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..e8aa19d --- /dev/null +++ b/Dockerfile @@ -0,0 +1,35 @@ +# Use the official Node.js 20 image as the base image +FROM node:20 AS builder + +ARG SIGNALR_URL=http://localhost:8080/ws +ARG ENDPOINT_URL=http://localhost:8080/send +ARG COMMIT=devbuild + +# Set the working directory inside the container +WORKDIR /app + +# Copy the package.json and yarn.lock files to the working directory +COPY package.json ./ +COPY yarn.lock ./ + +# Install the app dependencies +RUN yarn install +RUN yarn audit + +# Copy the app source code to the working directory +COPY . . +RUN yarn lint + +RUN echo "VITE_SIGNALR_URL=${SIGNALR_URL}" >> .env +RUN echo "VITE_ENDPOINT_URL=${ENDPOINT_URL}" >> .env +RUN echo "VITE_COMMIT=${COMMIT}" >> .env + +# Build the app +RUN yarn build + +FROM steebchen/nginx-spa:stable AS runner +WORKDIR /app + +COPY --from=builder /app/dist . +EXPOSE 80 +CMD ["nginx"] diff --git a/PRIVACY.md b/PRIVACY.md new file mode 100644 index 0000000..4166f43 --- /dev/null +++ b/PRIVACY.md @@ -0,0 +1,23 @@ +1742920769 +--- +## 1. General terms +1. EasyLogon Privacy Policy (hereinafter "the Policy") is applied to its end-user - a person, who utilizes EasyLogon mobile application and/or uses EasyLogon QR code authorization to access their personal data (hereinafter "User") +2. User agrees to the Policy by ticking "I accept EasyLogon privacy policy" checkbox and clicking "Continue" inside EasyLogon mobile application installed on their device. +3. An up-to-date version of the Policy can be found on [https://ezlog.app/privacy](https://ezlog.app/privacy), or inside project's repository: [https://github.com/xfox111/easylogon-web/blob/main/POLICY.md](https://github.com/xfox111/easylogon-web/blob/main/POLICY.md). +4. User will be notified of the Policy changes next time they open EasyLogon mobile application, if such occur. +5. User can revoke their consent to the Policy at any time by uninstalling EasyLogon mobile application from their device. + +## 2. Personal data +1. EasyLogon stores and aggregates the following personal data: + - Passwords + - Logins (usernames, emails) + - Domain names, associated with credentials + - One-time passwords' secret keys and configuration details (issuer, account name, etc.) +2. EasyLogon does not store any other personal data unless it is stated in paragraph 2.1. of the Policy +3. All credentials saved by user in EasyLogon mobile application are stored locally on user's device +4. EasyLogon does not share any of User's personal data with any third party +5. EasyLogon is responsible for user's personal data while it's being transferred and is not responsible for data stored on user's end devices. + +## 3. Data protection +1. EasyLogon stores and transfers your passwords and usernames using only encrypted data channels as well as encrypting all your data before transmission +2. EasyLogon maintainers must notify end users about all data leaks and security problems as soon as possible diff --git a/README.md b/README.md new file mode 100644 index 0000000..b72d6d4 --- /dev/null +++ b/README.md @@ -0,0 +1,87 @@ +# ezlog.app (web application) + +[![Website status](https://img.shields.io/website?url=http%3A//ezlog.app/)](https://ezlog.app) +[![GitHub last commit](https://img.shields.io/github/last-commit/xfox111/easylogon-web?label=Last+update)](https://github.com/XFox111/easylogon-web/commits/main) +[![Docker Image Size](https://img.shields.io/docker/image-size/xfox111/easylogon-web?logo=docker&logoColor=white)](https://hub.docker.com/r/xfox111/easylogon-web/) + +> [!WARNING] +> This project is in early development stage and is missing some essential components that will be released sometime in the future. + + + + + Easylogon. Forget about passwords. This time for real. + + +EasyLogon is a service that can help you authenticate on any device by scanning a QR code. + +This is a collection of applications, that includes password manager web application, web application, plugin for thrid-party websites and browser extension! + +## Demo + + + +## Features + +- **Authenticator + password manager:** Store all your credentials securely on your device. +- **QR code authentication:** Once you need to login on a new device - just open the app, scan QR code, and voila. +- **Plugin for 3rd party website:** Add QR code authentication to your website with a single line of code. + +## Download + +- Live web application: https://ezlog.app +- Mobile app for Android: https://at.xfox111.net/easylogon-android + +## Papers + +- [QR Code Authentication System as an Ultimate Tool for Personal Cybersecurity (2023, IEEE)](https://ieeexplore.ieee.org/abstract/document/10397212) + +## Development + +> [!IMPORTANT] +> Please make sure you have read [the copyright notice](/COPYING) + +### Prerequisites + +For development you can use [Dev Containers](https://devcontainers.io/) or [GitHub Codespaces](https://github.com/features/codespaces). Otherwise you will need to install following tools: +- [Node.js](https://nodejs.org/en/) +- [Yarn](https://yarnpkg.com/) +- [Docker](https://www.docker.com/) + + +### Building and debugging + +Here're some commonly used commands: +```bash +yarn install # Install dependencies +yarn dev # Start the development server +yarn lint # Lint the project with ESLint +yarn build # Build the project for production +``` + +To build a Docker image, run: + +```bash +docker build -t . +``` + +> [!TIP] +> If you use VS Code, you can also use pre-defined tasks for building and debugging. + +## Contributing +This project doesn't accept pull requests, but we are open to suggestions and feedback. If you have any ideas or improvements, please feel free to open an issue. + +> [!NOTE] +> Please make sure to follow the [contributing guidelines](/CONTRIBUTING.md) + +## Copyright notice + +This is a proprietary project and is subject to general copyright law. See [COPYING](/COPYING) for more information. + +--- + +[![Bluesky](https://img.shields.io/badge/%40xfox111.net-BSky?logo=bluesky&logoColor=%230285FF&label=Bluesky&labelColor=white&color=%230285FF)](https://bsky.app/profile/xfox111.net) +[![GitHub](https://img.shields.io/badge/%40xfox111-GitHub?logo=github&logoColor=%23181717&label=GitHub&labelColor=white&color=%23181717)](https://github.com/xfox111) +[![Buy Me a Coffee](https://img.shields.io/badge/%40xfox111-BMC?logo=buymeacoffee&logoColor=black&label=Buy%20me%20a%20coffee&labelColor=white&color=%23FFDD00)](https://buymeacoffee.com/xfox111) + +> ©2025 Eugene Fox. All rights reserved diff --git a/SECURITY.md b/SECURITY.md new file mode 100644 index 0000000..9725dfc --- /dev/null +++ b/SECURITY.md @@ -0,0 +1,18 @@ +# Security Policy + +We as maintainers of this project are committed to maintaining the security of our software. We take security vulnerabilities seriously and will work to address them as quickly as possible. + +## Reporting vulnerabilities + +Here's a basic steps to report a vulnerability: + +1. Send an email to opensource@xfox111.net +1. Give a clear description of the issue, including how to reproduce it and what impact it might have. +1. If applicanle, provide a proof-of-concept or screenshot showing the problem. + +> [!IMPORTANT] +> Please do not disclose the vulnerability publicly until we have had a chance to address it. This helps us keep our users safe and gives us time to fix the issue. + +We'll do our best to address any issues and give you an update. + +Thank you <3 diff --git a/eslint.config.js b/eslint.config.js new file mode 100644 index 0000000..b7a240c --- /dev/null +++ b/eslint.config.js @@ -0,0 +1,45 @@ +import js from "@eslint/js"; +import globals from "globals"; +import reactHooks from "eslint-plugin-react-hooks"; +import reactRefresh from "eslint-plugin-react-refresh"; +import tseslint from "typescript-eslint"; + +export default tseslint.config( + { ignores: ["dist"] }, + { + extends: [js.configs.recommended, ...tseslint.configs.recommended], + files: ["**/*.{ts,tsx}"], + languageOptions: { + ecmaVersion: 2020, + globals: globals.browser, + }, + plugins: { + "react-hooks": reactHooks, + "react-refresh": reactRefresh, + }, + rules: { + ...reactHooks.configs.recommended.rules, + "react-refresh/only-export-components": [ + "warn", + { allowConstantExport: true }, + ], + "@typescript-eslint/no-unused-vars": "warn", + "no-constant-binary-expression": "warn", + "indent": [ + "warn", + "tab", + { + "SwitchCase": 1 + } + ], + "quotes": [ + "error", + "double" + ], + "semi": [ + "error", + "always" + ] + }, + }, +); diff --git a/index.html b/index.html new file mode 100644 index 0000000..c168d2c --- /dev/null +++ b/index.html @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + EasyLogon + + + +
+ + + + diff --git a/package.json b/package.json new file mode 100644 index 0000000..f30bdcf --- /dev/null +++ b/package.json @@ -0,0 +1,45 @@ +{ + "name": "easylogon-web", + "private": true, + "version": "2.0.0", + "type": "module", + "scripts": { + "dev": "vite", + "build": "tsc -b && vite build", + "lint": "eslint .", + "preview": "vite preview" + }, + "dependencies": { + "@fluentui/react-components": "^9.61.3", + "@fluentui/react-icons": "^2.0.292", + "@microsoft/signalr": "^8.0.7", + "crypto-js": "^4.2.0", + "qrcode.react": "^4.2.0", + "react": "18", + "react-dom": "18", + "react-helmet": "^6.1.0", + "react-markdown": "^10.1.0", + "react-router-dom": "^7.4.0" + }, + "devDependencies": { + "@eslint/js": "^9.23.0", + "@types/crypto-js": "^4.2.2", + "@types/react": "18", + "@types/react-dom": "18", + "@types/react-helmet": "^6.1.11", + "@vitejs/plugin-react": "^4.3.4", + "eslint": "^9.23.0", + "eslint-plugin-react-hooks": "^5.2.0", + "eslint-plugin-react-refresh": "^0.4.19", + "globals": "^16.0.0", + "typescript": "^5.8.2", + "typescript-eslint": "^8.28.0", + "vite": "^6.2.3", + "vite-plugin-svgr": "^4.3.0" + }, + "resolutions": { + "scheduler": "^0.19.0", + "@babel/runtime": "^7.26.10", + "@babel/helpers": "^7.26.10" + } +} diff --git a/public/AppImages/android/android-launchericon-144-144.png b/public/AppImages/android/android-launchericon-144-144.png new file mode 100644 index 0000000..d844a07 Binary files /dev/null and b/public/AppImages/android/android-launchericon-144-144.png differ diff --git a/public/AppImages/android/android-launchericon-192-192.png b/public/AppImages/android/android-launchericon-192-192.png new file mode 100644 index 0000000..e56d6a4 Binary files /dev/null and b/public/AppImages/android/android-launchericon-192-192.png differ diff --git a/public/AppImages/android/android-launchericon-48-48.png b/public/AppImages/android/android-launchericon-48-48.png new file mode 100644 index 0000000..fefc8b2 Binary files /dev/null and b/public/AppImages/android/android-launchericon-48-48.png differ diff --git a/public/AppImages/android/android-launchericon-512-512.png b/public/AppImages/android/android-launchericon-512-512.png new file mode 100644 index 0000000..b5696d0 Binary files /dev/null and b/public/AppImages/android/android-launchericon-512-512.png differ diff --git a/public/AppImages/android/android-launchericon-72-72.png b/public/AppImages/android/android-launchericon-72-72.png new file mode 100644 index 0000000..414ec20 Binary files /dev/null and b/public/AppImages/android/android-launchericon-72-72.png differ diff --git a/public/AppImages/android/android-launchericon-96-96.png b/public/AppImages/android/android-launchericon-96-96.png new file mode 100644 index 0000000..f6bc5a6 Binary files /dev/null and b/public/AppImages/android/android-launchericon-96-96.png differ diff --git a/public/AppImages/icons.json b/public/AppImages/icons.json new file mode 100644 index 0000000..bffa169 --- /dev/null +++ b/public/AppImages/icons.json @@ -0,0 +1,452 @@ +{ + "icons": [ + { + "src": "windows11/SmallTile.scale-100.png", + "sizes": "71x71" + }, + { + "src": "windows11/SmallTile.scale-125.png", + "sizes": "89x89" + }, + { + "src": "windows11/SmallTile.scale-150.png", + "sizes": "107x107" + }, + { + "src": "windows11/SmallTile.scale-200.png", + "sizes": "142x142" + }, + { + "src": "windows11/SmallTile.scale-400.png", + "sizes": "284x284" + }, + { + "src": "windows11/Square150x150Logo.scale-100.png", + "sizes": "150x150" + }, + { + "src": "windows11/Square150x150Logo.scale-125.png", + "sizes": "188x188" + }, + { + "src": "windows11/Square150x150Logo.scale-150.png", + "sizes": "225x225" + }, + { + "src": "windows11/Square150x150Logo.scale-200.png", + "sizes": "300x300" + }, + { + "src": "windows11/Square150x150Logo.scale-400.png", + "sizes": "600x600" + }, + { + "src": "windows11/Wide310x150Logo.scale-100.png", + "sizes": "310x150" + }, + { + "src": "windows11/Wide310x150Logo.scale-125.png", + "sizes": "388x188" + }, + { + "src": "windows11/Wide310x150Logo.scale-150.png", + "sizes": "465x225" + }, + { + "src": "windows11/Wide310x150Logo.scale-200.png", + "sizes": "620x300" + }, + { + "src": "windows11/Wide310x150Logo.scale-400.png", + "sizes": "1240x600" + }, + { + "src": "windows11/LargeTile.scale-100.png", + "sizes": "310x310" + }, + { + "src": "windows11/LargeTile.scale-125.png", + "sizes": "388x388" + }, + { + "src": "windows11/LargeTile.scale-150.png", + "sizes": "465x465" + }, + { + "src": "windows11/LargeTile.scale-200.png", + "sizes": "620x620" + }, + { + "src": "windows11/LargeTile.scale-400.png", + "sizes": "1240x1240" + }, + { + "src": "windows11/Square44x44Logo.scale-100.png", + "sizes": "44x44" + }, + { + "src": "windows11/Square44x44Logo.scale-125.png", + "sizes": "55x55" + }, + { + "src": "windows11/Square44x44Logo.scale-150.png", + "sizes": "66x66" + }, + { + "src": "windows11/Square44x44Logo.scale-200.png", + "sizes": "88x88" + }, + { + "src": "windows11/Square44x44Logo.scale-400.png", + "sizes": "176x176" + }, + { + "src": "windows11/StoreLogo.scale-100.png", + "sizes": "50x50" + }, + { + "src": "windows11/StoreLogo.scale-125.png", + "sizes": "63x63" + }, + { + "src": "windows11/StoreLogo.scale-150.png", + "sizes": "75x75" + }, + { + "src": "windows11/StoreLogo.scale-200.png", + "sizes": "100x100" + }, + { + "src": "windows11/StoreLogo.scale-400.png", + "sizes": "200x200" + }, + { + "src": "windows11/SplashScreen.scale-100.png", + "sizes": "620x300" + }, + { + "src": "windows11/SplashScreen.scale-125.png", + "sizes": "775x375" + }, + { + "src": "windows11/SplashScreen.scale-150.png", + "sizes": "930x450" + }, + { + "src": "windows11/SplashScreen.scale-200.png", + "sizes": "1240x600" + }, + { + "src": "windows11/SplashScreen.scale-400.png", + "sizes": "2480x1200" + }, + { + "src": "windows11/Square44x44Logo.targetsize-16.png", + "sizes": "16x16" + }, + { + "src": "windows11/Square44x44Logo.targetsize-20.png", + "sizes": "20x20" + }, + { + "src": "windows11/Square44x44Logo.targetsize-24.png", + "sizes": "24x24" + }, + { + "src": "windows11/Square44x44Logo.targetsize-30.png", + "sizes": "30x30" + }, + { + "src": "windows11/Square44x44Logo.targetsize-32.png", + "sizes": "32x32" + }, + { + "src": "windows11/Square44x44Logo.targetsize-36.png", + "sizes": "36x36" + }, + { + "src": "windows11/Square44x44Logo.targetsize-40.png", + "sizes": "40x40" + }, + { + "src": "windows11/Square44x44Logo.targetsize-44.png", + "sizes": "44x44" + }, + { + "src": "windows11/Square44x44Logo.targetsize-48.png", + "sizes": "48x48" + }, + { + "src": "windows11/Square44x44Logo.targetsize-60.png", + "sizes": "60x60" + }, + { + "src": "windows11/Square44x44Logo.targetsize-64.png", + "sizes": "64x64" + }, + { + "src": "windows11/Square44x44Logo.targetsize-72.png", + "sizes": "72x72" + }, + { + "src": "windows11/Square44x44Logo.targetsize-80.png", + "sizes": "80x80" + }, + { + "src": "windows11/Square44x44Logo.targetsize-96.png", + "sizes": "96x96" + }, + { + "src": "windows11/Square44x44Logo.targetsize-256.png", + "sizes": "256x256" + }, + { + "src": "windows11/Square44x44Logo.altform-unplated_targetsize-16.png", + "sizes": "16x16" + }, + { + "src": "windows11/Square44x44Logo.altform-unplated_targetsize-20.png", + "sizes": "20x20" + }, + { + "src": "windows11/Square44x44Logo.altform-unplated_targetsize-24.png", + "sizes": "24x24" + }, + { + "src": "windows11/Square44x44Logo.altform-unplated_targetsize-30.png", + "sizes": "30x30" + }, + { + "src": "windows11/Square44x44Logo.altform-unplated_targetsize-32.png", + "sizes": "32x32" + }, + { + "src": "windows11/Square44x44Logo.altform-unplated_targetsize-36.png", + "sizes": "36x36" + }, + { + "src": "windows11/Square44x44Logo.altform-unplated_targetsize-40.png", + "sizes": "40x40" + }, + { + "src": "windows11/Square44x44Logo.altform-unplated_targetsize-44.png", + "sizes": "44x44" + }, + { + "src": "windows11/Square44x44Logo.altform-unplated_targetsize-48.png", + "sizes": "48x48" + }, + { + "src": "windows11/Square44x44Logo.altform-unplated_targetsize-60.png", + "sizes": "60x60" + }, + { + "src": "windows11/Square44x44Logo.altform-unplated_targetsize-64.png", + "sizes": "64x64" + }, + { + "src": "windows11/Square44x44Logo.altform-unplated_targetsize-72.png", + "sizes": "72x72" + }, + { + "src": "windows11/Square44x44Logo.altform-unplated_targetsize-80.png", + "sizes": "80x80" + }, + { + "src": "windows11/Square44x44Logo.altform-unplated_targetsize-96.png", + "sizes": "96x96" + }, + { + "src": "windows11/Square44x44Logo.altform-unplated_targetsize-256.png", + "sizes": "256x256" + }, + { + "src": "windows11/Square44x44Logo.altform-lightunplated_targetsize-16.png", + "sizes": "16x16" + }, + { + "src": "windows11/Square44x44Logo.altform-lightunplated_targetsize-20.png", + "sizes": "20x20" + }, + { + "src": "windows11/Square44x44Logo.altform-lightunplated_targetsize-24.png", + "sizes": "24x24" + }, + { + "src": "windows11/Square44x44Logo.altform-lightunplated_targetsize-30.png", + "sizes": "30x30" + }, + { + "src": "windows11/Square44x44Logo.altform-lightunplated_targetsize-32.png", + "sizes": "32x32" + }, + { + "src": "windows11/Square44x44Logo.altform-lightunplated_targetsize-36.png", + "sizes": "36x36" + }, + { + "src": "windows11/Square44x44Logo.altform-lightunplated_targetsize-40.png", + "sizes": "40x40" + }, + { + "src": "windows11/Square44x44Logo.altform-lightunplated_targetsize-44.png", + "sizes": "44x44" + }, + { + "src": "windows11/Square44x44Logo.altform-lightunplated_targetsize-48.png", + "sizes": "48x48" + }, + { + "src": "windows11/Square44x44Logo.altform-lightunplated_targetsize-60.png", + "sizes": "60x60" + }, + { + "src": "windows11/Square44x44Logo.altform-lightunplated_targetsize-64.png", + "sizes": "64x64" + }, + { + "src": "windows11/Square44x44Logo.altform-lightunplated_targetsize-72.png", + "sizes": "72x72" + }, + { + "src": "windows11/Square44x44Logo.altform-lightunplated_targetsize-80.png", + "sizes": "80x80" + }, + { + "src": "windows11/Square44x44Logo.altform-lightunplated_targetsize-96.png", + "sizes": "96x96" + }, + { + "src": "windows11/Square44x44Logo.altform-lightunplated_targetsize-256.png", + "sizes": "256x256" + }, + { + "src": "android/android-launchericon-512-512.png", + "sizes": "512x512" + }, + { + "src": "android/android-launchericon-192-192.png", + "sizes": "192x192" + }, + { + "src": "android/android-launchericon-144-144.png", + "sizes": "144x144" + }, + { + "src": "android/android-launchericon-96-96.png", + "sizes": "96x96" + }, + { + "src": "android/android-launchericon-72-72.png", + "sizes": "72x72" + }, + { + "src": "android/android-launchericon-48-48.png", + "sizes": "48x48" + }, + { + "src": "ios/16.png", + "sizes": "16x16" + }, + { + "src": "ios/20.png", + "sizes": "20x20" + }, + { + "src": "ios/29.png", + "sizes": "29x29" + }, + { + "src": "ios/32.png", + "sizes": "32x32" + }, + { + "src": "ios/40.png", + "sizes": "40x40" + }, + { + "src": "ios/50.png", + "sizes": "50x50" + }, + { + "src": "ios/57.png", + "sizes": "57x57" + }, + { + "src": "ios/58.png", + "sizes": "58x58" + }, + { + "src": "ios/60.png", + "sizes": "60x60" + }, + { + "src": "ios/64.png", + "sizes": "64x64" + }, + { + "src": "ios/72.png", + "sizes": "72x72" + }, + { + "src": "ios/76.png", + "sizes": "76x76" + }, + { + "src": "ios/80.png", + "sizes": "80x80" + }, + { + "src": "ios/87.png", + "sizes": "87x87" + }, + { + "src": "ios/100.png", + "sizes": "100x100" + }, + { + "src": "ios/114.png", + "sizes": "114x114" + }, + { + "src": "ios/120.png", + "sizes": "120x120" + }, + { + "src": "ios/128.png", + "sizes": "128x128" + }, + { + "src": "ios/144.png", + "sizes": "144x144" + }, + { + "src": "ios/152.png", + "sizes": "152x152" + }, + { + "src": "ios/167.png", + "sizes": "167x167" + }, + { + "src": "ios/180.png", + "sizes": "180x180" + }, + { + "src": "ios/192.png", + "sizes": "192x192" + }, + { + "src": "ios/256.png", + "sizes": "256x256" + }, + { + "src": "ios/512.png", + "sizes": "512x512" + }, + { + "src": "ios/1024.png", + "sizes": "1024x1024" + } + ] +} diff --git a/public/AppImages/ios/100.png b/public/AppImages/ios/100.png new file mode 100644 index 0000000..2befea3 Binary files /dev/null and b/public/AppImages/ios/100.png differ diff --git a/public/AppImages/ios/1024.png b/public/AppImages/ios/1024.png new file mode 100644 index 0000000..ee18311 Binary files /dev/null and b/public/AppImages/ios/1024.png differ diff --git a/public/AppImages/ios/114.png b/public/AppImages/ios/114.png new file mode 100644 index 0000000..e80efcb Binary files /dev/null and b/public/AppImages/ios/114.png differ diff --git a/public/AppImages/ios/120.png b/public/AppImages/ios/120.png new file mode 100644 index 0000000..622653c Binary files /dev/null and b/public/AppImages/ios/120.png differ diff --git a/public/AppImages/ios/128.png b/public/AppImages/ios/128.png new file mode 100644 index 0000000..f42206a Binary files /dev/null and b/public/AppImages/ios/128.png differ diff --git a/public/AppImages/ios/144.png b/public/AppImages/ios/144.png new file mode 100644 index 0000000..d844a07 Binary files /dev/null and b/public/AppImages/ios/144.png differ diff --git a/public/AppImages/ios/152.png b/public/AppImages/ios/152.png new file mode 100644 index 0000000..5765d64 Binary files /dev/null and b/public/AppImages/ios/152.png differ diff --git a/public/AppImages/ios/16.png b/public/AppImages/ios/16.png new file mode 100644 index 0000000..c5f43c5 Binary files /dev/null and b/public/AppImages/ios/16.png differ diff --git a/public/AppImages/ios/167.png b/public/AppImages/ios/167.png new file mode 100644 index 0000000..cf474f2 Binary files /dev/null and b/public/AppImages/ios/167.png differ diff --git a/public/AppImages/ios/180.png b/public/AppImages/ios/180.png new file mode 100644 index 0000000..1938fba Binary files /dev/null and b/public/AppImages/ios/180.png differ diff --git a/public/AppImages/ios/192.png b/public/AppImages/ios/192.png new file mode 100644 index 0000000..e56d6a4 Binary files /dev/null and b/public/AppImages/ios/192.png differ diff --git a/public/AppImages/ios/20.png b/public/AppImages/ios/20.png new file mode 100644 index 0000000..fc34934 Binary files /dev/null and b/public/AppImages/ios/20.png differ diff --git a/public/AppImages/ios/256.png b/public/AppImages/ios/256.png new file mode 100644 index 0000000..40893f5 Binary files /dev/null and b/public/AppImages/ios/256.png differ diff --git a/public/AppImages/ios/29.png b/public/AppImages/ios/29.png new file mode 100644 index 0000000..b7d7da6 Binary files /dev/null and b/public/AppImages/ios/29.png differ diff --git a/public/AppImages/ios/32.png b/public/AppImages/ios/32.png new file mode 100644 index 0000000..dfd4713 Binary files /dev/null and b/public/AppImages/ios/32.png differ diff --git a/public/AppImages/ios/40.png b/public/AppImages/ios/40.png new file mode 100644 index 0000000..894dac8 Binary files /dev/null and b/public/AppImages/ios/40.png differ diff --git a/public/AppImages/ios/50.png b/public/AppImages/ios/50.png new file mode 100644 index 0000000..02bf444 Binary files /dev/null and b/public/AppImages/ios/50.png differ diff --git a/public/AppImages/ios/512.png b/public/AppImages/ios/512.png new file mode 100644 index 0000000..b5696d0 Binary files /dev/null and b/public/AppImages/ios/512.png differ diff --git a/public/AppImages/ios/57.png b/public/AppImages/ios/57.png new file mode 100644 index 0000000..4df1616 Binary files /dev/null and b/public/AppImages/ios/57.png differ diff --git a/public/AppImages/ios/58.png b/public/AppImages/ios/58.png new file mode 100644 index 0000000..17c445b Binary files /dev/null and b/public/AppImages/ios/58.png differ diff --git a/public/AppImages/ios/60.png b/public/AppImages/ios/60.png new file mode 100644 index 0000000..b12c567 Binary files /dev/null and b/public/AppImages/ios/60.png differ diff --git a/public/AppImages/ios/64.png b/public/AppImages/ios/64.png new file mode 100644 index 0000000..59c9b44 Binary files /dev/null and b/public/AppImages/ios/64.png differ diff --git a/public/AppImages/ios/72.png b/public/AppImages/ios/72.png new file mode 100644 index 0000000..414ec20 Binary files /dev/null and b/public/AppImages/ios/72.png differ diff --git a/public/AppImages/ios/76.png b/public/AppImages/ios/76.png new file mode 100644 index 0000000..f74ec88 Binary files /dev/null and b/public/AppImages/ios/76.png differ diff --git a/public/AppImages/ios/80.png b/public/AppImages/ios/80.png new file mode 100644 index 0000000..036d38f Binary files /dev/null and b/public/AppImages/ios/80.png differ diff --git a/public/AppImages/ios/87.png b/public/AppImages/ios/87.png new file mode 100644 index 0000000..d606a32 Binary files /dev/null and b/public/AppImages/ios/87.png differ diff --git a/public/AppImages/windows11/LargeTile.scale-100.png b/public/AppImages/windows11/LargeTile.scale-100.png new file mode 100644 index 0000000..c915c1c Binary files /dev/null and b/public/AppImages/windows11/LargeTile.scale-100.png differ diff --git a/public/AppImages/windows11/LargeTile.scale-125.png b/public/AppImages/windows11/LargeTile.scale-125.png new file mode 100644 index 0000000..4ac9835 Binary files /dev/null and b/public/AppImages/windows11/LargeTile.scale-125.png differ diff --git a/public/AppImages/windows11/LargeTile.scale-150.png b/public/AppImages/windows11/LargeTile.scale-150.png new file mode 100644 index 0000000..8be1454 Binary files /dev/null and b/public/AppImages/windows11/LargeTile.scale-150.png differ diff --git a/public/AppImages/windows11/LargeTile.scale-200.png b/public/AppImages/windows11/LargeTile.scale-200.png new file mode 100644 index 0000000..490cd76 Binary files /dev/null and b/public/AppImages/windows11/LargeTile.scale-200.png differ diff --git a/public/AppImages/windows11/LargeTile.scale-400.png b/public/AppImages/windows11/LargeTile.scale-400.png new file mode 100644 index 0000000..f3d0af7 Binary files /dev/null and b/public/AppImages/windows11/LargeTile.scale-400.png differ diff --git a/public/AppImages/windows11/SmallTile.scale-100.png b/public/AppImages/windows11/SmallTile.scale-100.png new file mode 100644 index 0000000..b510857 Binary files /dev/null and b/public/AppImages/windows11/SmallTile.scale-100.png differ diff --git a/public/AppImages/windows11/SmallTile.scale-125.png b/public/AppImages/windows11/SmallTile.scale-125.png new file mode 100644 index 0000000..7e23666 Binary files /dev/null and b/public/AppImages/windows11/SmallTile.scale-125.png differ diff --git a/public/AppImages/windows11/SmallTile.scale-150.png b/public/AppImages/windows11/SmallTile.scale-150.png new file mode 100644 index 0000000..9238d4d Binary files /dev/null and b/public/AppImages/windows11/SmallTile.scale-150.png differ diff --git a/public/AppImages/windows11/SmallTile.scale-200.png b/public/AppImages/windows11/SmallTile.scale-200.png new file mode 100644 index 0000000..6e2a22f Binary files /dev/null and b/public/AppImages/windows11/SmallTile.scale-200.png differ diff --git a/public/AppImages/windows11/SmallTile.scale-400.png b/public/AppImages/windows11/SmallTile.scale-400.png new file mode 100644 index 0000000..8c83e16 Binary files /dev/null and b/public/AppImages/windows11/SmallTile.scale-400.png differ diff --git a/public/AppImages/windows11/SplashScreen.scale-100.png b/public/AppImages/windows11/SplashScreen.scale-100.png new file mode 100644 index 0000000..059432f Binary files /dev/null and b/public/AppImages/windows11/SplashScreen.scale-100.png differ diff --git a/public/AppImages/windows11/SplashScreen.scale-125.png b/public/AppImages/windows11/SplashScreen.scale-125.png new file mode 100644 index 0000000..fade7be Binary files /dev/null and b/public/AppImages/windows11/SplashScreen.scale-125.png differ diff --git a/public/AppImages/windows11/SplashScreen.scale-150.png b/public/AppImages/windows11/SplashScreen.scale-150.png new file mode 100644 index 0000000..6f8ece5 Binary files /dev/null and b/public/AppImages/windows11/SplashScreen.scale-150.png differ diff --git a/public/AppImages/windows11/SplashScreen.scale-200.png b/public/AppImages/windows11/SplashScreen.scale-200.png new file mode 100644 index 0000000..3cad08f Binary files /dev/null and b/public/AppImages/windows11/SplashScreen.scale-200.png differ diff --git a/public/AppImages/windows11/SplashScreen.scale-400.png b/public/AppImages/windows11/SplashScreen.scale-400.png new file mode 100644 index 0000000..334670f Binary files /dev/null and b/public/AppImages/windows11/SplashScreen.scale-400.png differ diff --git a/public/AppImages/windows11/Square150x150Logo.scale-100.png b/public/AppImages/windows11/Square150x150Logo.scale-100.png new file mode 100644 index 0000000..59fcf30 Binary files /dev/null and b/public/AppImages/windows11/Square150x150Logo.scale-100.png differ diff --git a/public/AppImages/windows11/Square150x150Logo.scale-125.png b/public/AppImages/windows11/Square150x150Logo.scale-125.png new file mode 100644 index 0000000..af7d04c Binary files /dev/null and b/public/AppImages/windows11/Square150x150Logo.scale-125.png differ diff --git a/public/AppImages/windows11/Square150x150Logo.scale-150.png b/public/AppImages/windows11/Square150x150Logo.scale-150.png new file mode 100644 index 0000000..3e5b760 Binary files /dev/null and b/public/AppImages/windows11/Square150x150Logo.scale-150.png differ diff --git a/public/AppImages/windows11/Square150x150Logo.scale-200.png b/public/AppImages/windows11/Square150x150Logo.scale-200.png new file mode 100644 index 0000000..9238ccc Binary files /dev/null and b/public/AppImages/windows11/Square150x150Logo.scale-200.png differ diff --git a/public/AppImages/windows11/Square150x150Logo.scale-400.png b/public/AppImages/windows11/Square150x150Logo.scale-400.png new file mode 100644 index 0000000..ba75841 Binary files /dev/null and b/public/AppImages/windows11/Square150x150Logo.scale-400.png differ diff --git a/public/AppImages/windows11/Square44x44Logo.altform-lightunplated_targetsize-16.png b/public/AppImages/windows11/Square44x44Logo.altform-lightunplated_targetsize-16.png new file mode 100644 index 0000000..cb07f46 Binary files /dev/null and b/public/AppImages/windows11/Square44x44Logo.altform-lightunplated_targetsize-16.png differ diff --git a/public/AppImages/windows11/Square44x44Logo.altform-lightunplated_targetsize-20.png b/public/AppImages/windows11/Square44x44Logo.altform-lightunplated_targetsize-20.png new file mode 100644 index 0000000..3c8e5a8 Binary files /dev/null and b/public/AppImages/windows11/Square44x44Logo.altform-lightunplated_targetsize-20.png differ diff --git a/public/AppImages/windows11/Square44x44Logo.altform-lightunplated_targetsize-24.png b/public/AppImages/windows11/Square44x44Logo.altform-lightunplated_targetsize-24.png new file mode 100644 index 0000000..2032aad Binary files /dev/null and b/public/AppImages/windows11/Square44x44Logo.altform-lightunplated_targetsize-24.png differ diff --git a/public/AppImages/windows11/Square44x44Logo.altform-lightunplated_targetsize-256.png b/public/AppImages/windows11/Square44x44Logo.altform-lightunplated_targetsize-256.png new file mode 100644 index 0000000..1c568c5 Binary files /dev/null and b/public/AppImages/windows11/Square44x44Logo.altform-lightunplated_targetsize-256.png differ diff --git a/public/AppImages/windows11/Square44x44Logo.altform-lightunplated_targetsize-30.png b/public/AppImages/windows11/Square44x44Logo.altform-lightunplated_targetsize-30.png new file mode 100644 index 0000000..1b7dbd7 Binary files /dev/null and b/public/AppImages/windows11/Square44x44Logo.altform-lightunplated_targetsize-30.png differ diff --git a/public/AppImages/windows11/Square44x44Logo.altform-lightunplated_targetsize-32.png b/public/AppImages/windows11/Square44x44Logo.altform-lightunplated_targetsize-32.png new file mode 100644 index 0000000..b0882ab Binary files /dev/null and b/public/AppImages/windows11/Square44x44Logo.altform-lightunplated_targetsize-32.png differ diff --git a/public/AppImages/windows11/Square44x44Logo.altform-lightunplated_targetsize-36.png b/public/AppImages/windows11/Square44x44Logo.altform-lightunplated_targetsize-36.png new file mode 100644 index 0000000..4db3fc9 Binary files /dev/null and b/public/AppImages/windows11/Square44x44Logo.altform-lightunplated_targetsize-36.png differ diff --git a/public/AppImages/windows11/Square44x44Logo.altform-lightunplated_targetsize-40.png b/public/AppImages/windows11/Square44x44Logo.altform-lightunplated_targetsize-40.png new file mode 100644 index 0000000..cf98034 Binary files /dev/null and b/public/AppImages/windows11/Square44x44Logo.altform-lightunplated_targetsize-40.png differ diff --git a/public/AppImages/windows11/Square44x44Logo.altform-lightunplated_targetsize-44.png b/public/AppImages/windows11/Square44x44Logo.altform-lightunplated_targetsize-44.png new file mode 100644 index 0000000..901ad72 Binary files /dev/null and b/public/AppImages/windows11/Square44x44Logo.altform-lightunplated_targetsize-44.png differ diff --git a/public/AppImages/windows11/Square44x44Logo.altform-lightunplated_targetsize-48.png b/public/AppImages/windows11/Square44x44Logo.altform-lightunplated_targetsize-48.png new file mode 100644 index 0000000..dd759c4 Binary files /dev/null and b/public/AppImages/windows11/Square44x44Logo.altform-lightunplated_targetsize-48.png differ diff --git a/public/AppImages/windows11/Square44x44Logo.altform-lightunplated_targetsize-60.png b/public/AppImages/windows11/Square44x44Logo.altform-lightunplated_targetsize-60.png new file mode 100644 index 0000000..d18a34c Binary files /dev/null and b/public/AppImages/windows11/Square44x44Logo.altform-lightunplated_targetsize-60.png differ diff --git a/public/AppImages/windows11/Square44x44Logo.altform-lightunplated_targetsize-64.png b/public/AppImages/windows11/Square44x44Logo.altform-lightunplated_targetsize-64.png new file mode 100644 index 0000000..f11d016 Binary files /dev/null and b/public/AppImages/windows11/Square44x44Logo.altform-lightunplated_targetsize-64.png differ diff --git a/public/AppImages/windows11/Square44x44Logo.altform-lightunplated_targetsize-72.png b/public/AppImages/windows11/Square44x44Logo.altform-lightunplated_targetsize-72.png new file mode 100644 index 0000000..91df3f4 Binary files /dev/null and b/public/AppImages/windows11/Square44x44Logo.altform-lightunplated_targetsize-72.png differ diff --git a/public/AppImages/windows11/Square44x44Logo.altform-lightunplated_targetsize-80.png b/public/AppImages/windows11/Square44x44Logo.altform-lightunplated_targetsize-80.png new file mode 100644 index 0000000..d35ac0d Binary files /dev/null and b/public/AppImages/windows11/Square44x44Logo.altform-lightunplated_targetsize-80.png differ diff --git a/public/AppImages/windows11/Square44x44Logo.altform-lightunplated_targetsize-96.png b/public/AppImages/windows11/Square44x44Logo.altform-lightunplated_targetsize-96.png new file mode 100644 index 0000000..2571110 Binary files /dev/null and b/public/AppImages/windows11/Square44x44Logo.altform-lightunplated_targetsize-96.png differ diff --git a/public/AppImages/windows11/Square44x44Logo.altform-unplated_targetsize-16.png b/public/AppImages/windows11/Square44x44Logo.altform-unplated_targetsize-16.png new file mode 100644 index 0000000..cb07f46 Binary files /dev/null and b/public/AppImages/windows11/Square44x44Logo.altform-unplated_targetsize-16.png differ diff --git a/public/AppImages/windows11/Square44x44Logo.altform-unplated_targetsize-20.png b/public/AppImages/windows11/Square44x44Logo.altform-unplated_targetsize-20.png new file mode 100644 index 0000000..3c8e5a8 Binary files /dev/null and b/public/AppImages/windows11/Square44x44Logo.altform-unplated_targetsize-20.png differ diff --git a/public/AppImages/windows11/Square44x44Logo.altform-unplated_targetsize-24.png b/public/AppImages/windows11/Square44x44Logo.altform-unplated_targetsize-24.png new file mode 100644 index 0000000..2032aad Binary files /dev/null and b/public/AppImages/windows11/Square44x44Logo.altform-unplated_targetsize-24.png differ diff --git a/public/AppImages/windows11/Square44x44Logo.altform-unplated_targetsize-256.png b/public/AppImages/windows11/Square44x44Logo.altform-unplated_targetsize-256.png new file mode 100644 index 0000000..1c568c5 Binary files /dev/null and b/public/AppImages/windows11/Square44x44Logo.altform-unplated_targetsize-256.png differ diff --git a/public/AppImages/windows11/Square44x44Logo.altform-unplated_targetsize-30.png b/public/AppImages/windows11/Square44x44Logo.altform-unplated_targetsize-30.png new file mode 100644 index 0000000..1b7dbd7 Binary files /dev/null and b/public/AppImages/windows11/Square44x44Logo.altform-unplated_targetsize-30.png differ diff --git a/public/AppImages/windows11/Square44x44Logo.altform-unplated_targetsize-32.png b/public/AppImages/windows11/Square44x44Logo.altform-unplated_targetsize-32.png new file mode 100644 index 0000000..b0882ab Binary files /dev/null and b/public/AppImages/windows11/Square44x44Logo.altform-unplated_targetsize-32.png differ diff --git a/public/AppImages/windows11/Square44x44Logo.altform-unplated_targetsize-36.png b/public/AppImages/windows11/Square44x44Logo.altform-unplated_targetsize-36.png new file mode 100644 index 0000000..4db3fc9 Binary files /dev/null and b/public/AppImages/windows11/Square44x44Logo.altform-unplated_targetsize-36.png differ diff --git a/public/AppImages/windows11/Square44x44Logo.altform-unplated_targetsize-40.png b/public/AppImages/windows11/Square44x44Logo.altform-unplated_targetsize-40.png new file mode 100644 index 0000000..cf98034 Binary files /dev/null and b/public/AppImages/windows11/Square44x44Logo.altform-unplated_targetsize-40.png differ diff --git a/public/AppImages/windows11/Square44x44Logo.altform-unplated_targetsize-44.png b/public/AppImages/windows11/Square44x44Logo.altform-unplated_targetsize-44.png new file mode 100644 index 0000000..901ad72 Binary files /dev/null and b/public/AppImages/windows11/Square44x44Logo.altform-unplated_targetsize-44.png differ diff --git a/public/AppImages/windows11/Square44x44Logo.altform-unplated_targetsize-48.png b/public/AppImages/windows11/Square44x44Logo.altform-unplated_targetsize-48.png new file mode 100644 index 0000000..dd759c4 Binary files /dev/null and b/public/AppImages/windows11/Square44x44Logo.altform-unplated_targetsize-48.png differ diff --git a/public/AppImages/windows11/Square44x44Logo.altform-unplated_targetsize-60.png b/public/AppImages/windows11/Square44x44Logo.altform-unplated_targetsize-60.png new file mode 100644 index 0000000..d18a34c Binary files /dev/null and b/public/AppImages/windows11/Square44x44Logo.altform-unplated_targetsize-60.png differ diff --git a/public/AppImages/windows11/Square44x44Logo.altform-unplated_targetsize-64.png b/public/AppImages/windows11/Square44x44Logo.altform-unplated_targetsize-64.png new file mode 100644 index 0000000..f11d016 Binary files /dev/null and b/public/AppImages/windows11/Square44x44Logo.altform-unplated_targetsize-64.png differ diff --git a/public/AppImages/windows11/Square44x44Logo.altform-unplated_targetsize-72.png b/public/AppImages/windows11/Square44x44Logo.altform-unplated_targetsize-72.png new file mode 100644 index 0000000..91df3f4 Binary files /dev/null and b/public/AppImages/windows11/Square44x44Logo.altform-unplated_targetsize-72.png differ diff --git a/public/AppImages/windows11/Square44x44Logo.altform-unplated_targetsize-80.png b/public/AppImages/windows11/Square44x44Logo.altform-unplated_targetsize-80.png new file mode 100644 index 0000000..d35ac0d Binary files /dev/null and b/public/AppImages/windows11/Square44x44Logo.altform-unplated_targetsize-80.png differ diff --git a/public/AppImages/windows11/Square44x44Logo.altform-unplated_targetsize-96.png b/public/AppImages/windows11/Square44x44Logo.altform-unplated_targetsize-96.png new file mode 100644 index 0000000..2571110 Binary files /dev/null and b/public/AppImages/windows11/Square44x44Logo.altform-unplated_targetsize-96.png differ diff --git a/public/AppImages/windows11/Square44x44Logo.scale-100.png b/public/AppImages/windows11/Square44x44Logo.scale-100.png new file mode 100644 index 0000000..901ad72 Binary files /dev/null and b/public/AppImages/windows11/Square44x44Logo.scale-100.png differ diff --git a/public/AppImages/windows11/Square44x44Logo.scale-125.png b/public/AppImages/windows11/Square44x44Logo.scale-125.png new file mode 100644 index 0000000..0fb3eb5 Binary files /dev/null and b/public/AppImages/windows11/Square44x44Logo.scale-125.png differ diff --git a/public/AppImages/windows11/Square44x44Logo.scale-150.png b/public/AppImages/windows11/Square44x44Logo.scale-150.png new file mode 100644 index 0000000..4cca0c6 Binary files /dev/null and b/public/AppImages/windows11/Square44x44Logo.scale-150.png differ diff --git a/public/AppImages/windows11/Square44x44Logo.scale-200.png b/public/AppImages/windows11/Square44x44Logo.scale-200.png new file mode 100644 index 0000000..f9e25de Binary files /dev/null and b/public/AppImages/windows11/Square44x44Logo.scale-200.png differ diff --git a/public/AppImages/windows11/Square44x44Logo.scale-400.png b/public/AppImages/windows11/Square44x44Logo.scale-400.png new file mode 100644 index 0000000..8ad5a1c Binary files /dev/null and b/public/AppImages/windows11/Square44x44Logo.scale-400.png differ diff --git a/public/AppImages/windows11/Square44x44Logo.targetsize-16.png b/public/AppImages/windows11/Square44x44Logo.targetsize-16.png new file mode 100644 index 0000000..cb07f46 Binary files /dev/null and b/public/AppImages/windows11/Square44x44Logo.targetsize-16.png differ diff --git a/public/AppImages/windows11/Square44x44Logo.targetsize-20.png b/public/AppImages/windows11/Square44x44Logo.targetsize-20.png new file mode 100644 index 0000000..3c8e5a8 Binary files /dev/null and b/public/AppImages/windows11/Square44x44Logo.targetsize-20.png differ diff --git a/public/AppImages/windows11/Square44x44Logo.targetsize-24.png b/public/AppImages/windows11/Square44x44Logo.targetsize-24.png new file mode 100644 index 0000000..2032aad Binary files /dev/null and b/public/AppImages/windows11/Square44x44Logo.targetsize-24.png differ diff --git a/public/AppImages/windows11/Square44x44Logo.targetsize-256.png b/public/AppImages/windows11/Square44x44Logo.targetsize-256.png new file mode 100644 index 0000000..1c568c5 Binary files /dev/null and b/public/AppImages/windows11/Square44x44Logo.targetsize-256.png differ diff --git a/public/AppImages/windows11/Square44x44Logo.targetsize-30.png b/public/AppImages/windows11/Square44x44Logo.targetsize-30.png new file mode 100644 index 0000000..1b7dbd7 Binary files /dev/null and b/public/AppImages/windows11/Square44x44Logo.targetsize-30.png differ diff --git a/public/AppImages/windows11/Square44x44Logo.targetsize-32.png b/public/AppImages/windows11/Square44x44Logo.targetsize-32.png new file mode 100644 index 0000000..b0882ab Binary files /dev/null and b/public/AppImages/windows11/Square44x44Logo.targetsize-32.png differ diff --git a/public/AppImages/windows11/Square44x44Logo.targetsize-36.png b/public/AppImages/windows11/Square44x44Logo.targetsize-36.png new file mode 100644 index 0000000..4db3fc9 Binary files /dev/null and b/public/AppImages/windows11/Square44x44Logo.targetsize-36.png differ diff --git a/public/AppImages/windows11/Square44x44Logo.targetsize-40.png b/public/AppImages/windows11/Square44x44Logo.targetsize-40.png new file mode 100644 index 0000000..cf98034 Binary files /dev/null and b/public/AppImages/windows11/Square44x44Logo.targetsize-40.png differ diff --git a/public/AppImages/windows11/Square44x44Logo.targetsize-44.png b/public/AppImages/windows11/Square44x44Logo.targetsize-44.png new file mode 100644 index 0000000..901ad72 Binary files /dev/null and b/public/AppImages/windows11/Square44x44Logo.targetsize-44.png differ diff --git a/public/AppImages/windows11/Square44x44Logo.targetsize-48.png b/public/AppImages/windows11/Square44x44Logo.targetsize-48.png new file mode 100644 index 0000000..dd759c4 Binary files /dev/null and b/public/AppImages/windows11/Square44x44Logo.targetsize-48.png differ diff --git a/public/AppImages/windows11/Square44x44Logo.targetsize-60.png b/public/AppImages/windows11/Square44x44Logo.targetsize-60.png new file mode 100644 index 0000000..d18a34c Binary files /dev/null and b/public/AppImages/windows11/Square44x44Logo.targetsize-60.png differ diff --git a/public/AppImages/windows11/Square44x44Logo.targetsize-64.png b/public/AppImages/windows11/Square44x44Logo.targetsize-64.png new file mode 100644 index 0000000..f11d016 Binary files /dev/null and b/public/AppImages/windows11/Square44x44Logo.targetsize-64.png differ diff --git a/public/AppImages/windows11/Square44x44Logo.targetsize-72.png b/public/AppImages/windows11/Square44x44Logo.targetsize-72.png new file mode 100644 index 0000000..91df3f4 Binary files /dev/null and b/public/AppImages/windows11/Square44x44Logo.targetsize-72.png differ diff --git a/public/AppImages/windows11/Square44x44Logo.targetsize-80.png b/public/AppImages/windows11/Square44x44Logo.targetsize-80.png new file mode 100644 index 0000000..d35ac0d Binary files /dev/null and b/public/AppImages/windows11/Square44x44Logo.targetsize-80.png differ diff --git a/public/AppImages/windows11/Square44x44Logo.targetsize-96.png b/public/AppImages/windows11/Square44x44Logo.targetsize-96.png new file mode 100644 index 0000000..2571110 Binary files /dev/null and b/public/AppImages/windows11/Square44x44Logo.targetsize-96.png differ diff --git a/public/AppImages/windows11/StoreLogo.scale-100.png b/public/AppImages/windows11/StoreLogo.scale-100.png new file mode 100644 index 0000000..02bf444 Binary files /dev/null and b/public/AppImages/windows11/StoreLogo.scale-100.png differ diff --git a/public/AppImages/windows11/StoreLogo.scale-125.png b/public/AppImages/windows11/StoreLogo.scale-125.png new file mode 100644 index 0000000..3cc57c3 Binary files /dev/null and b/public/AppImages/windows11/StoreLogo.scale-125.png differ diff --git a/public/AppImages/windows11/StoreLogo.scale-150.png b/public/AppImages/windows11/StoreLogo.scale-150.png new file mode 100644 index 0000000..a5db68e Binary files /dev/null and b/public/AppImages/windows11/StoreLogo.scale-150.png differ diff --git a/public/AppImages/windows11/StoreLogo.scale-200.png b/public/AppImages/windows11/StoreLogo.scale-200.png new file mode 100644 index 0000000..2befea3 Binary files /dev/null and b/public/AppImages/windows11/StoreLogo.scale-200.png differ diff --git a/public/AppImages/windows11/StoreLogo.scale-400.png b/public/AppImages/windows11/StoreLogo.scale-400.png new file mode 100644 index 0000000..d4719d0 Binary files /dev/null and b/public/AppImages/windows11/StoreLogo.scale-400.png differ diff --git a/public/AppImages/windows11/Wide310x150Logo.scale-100.png b/public/AppImages/windows11/Wide310x150Logo.scale-100.png new file mode 100644 index 0000000..7a3b116 Binary files /dev/null and b/public/AppImages/windows11/Wide310x150Logo.scale-100.png differ diff --git a/public/AppImages/windows11/Wide310x150Logo.scale-125.png b/public/AppImages/windows11/Wide310x150Logo.scale-125.png new file mode 100644 index 0000000..ab93639 Binary files /dev/null and b/public/AppImages/windows11/Wide310x150Logo.scale-125.png differ diff --git a/public/AppImages/windows11/Wide310x150Logo.scale-150.png b/public/AppImages/windows11/Wide310x150Logo.scale-150.png new file mode 100644 index 0000000..74df9ba Binary files /dev/null and b/public/AppImages/windows11/Wide310x150Logo.scale-150.png differ diff --git a/public/AppImages/windows11/Wide310x150Logo.scale-200.png b/public/AppImages/windows11/Wide310x150Logo.scale-200.png new file mode 100644 index 0000000..059432f Binary files /dev/null and b/public/AppImages/windows11/Wide310x150Logo.scale-200.png differ diff --git a/public/AppImages/windows11/Wide310x150Logo.scale-400.png b/public/AppImages/windows11/Wide310x150Logo.scale-400.png new file mode 100644 index 0000000..3cad08f Binary files /dev/null and b/public/AppImages/windows11/Wide310x150Logo.scale-400.png differ diff --git a/public/Logo.svg b/public/Logo.svg new file mode 100644 index 0000000..473af3b --- /dev/null +++ b/public/Logo.svg @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/apple-touch-icon.png b/public/apple-touch-icon.png new file mode 100644 index 0000000..349188d Binary files /dev/null and b/public/apple-touch-icon.png differ diff --git a/public/banner.png b/public/banner.png new file mode 100644 index 0000000..ec701e6 Binary files /dev/null and b/public/banner.png differ diff --git a/public/favicon.ico b/public/favicon.ico new file mode 100644 index 0000000..4ea22cd Binary files /dev/null and b/public/favicon.ico differ diff --git a/public/favicon.svg b/public/favicon.svg new file mode 100644 index 0000000..d56a79a --- /dev/null +++ b/public/favicon.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/public/manifest.json b/public/manifest.json new file mode 100644 index 0000000..98990f9 --- /dev/null +++ b/public/manifest.json @@ -0,0 +1,466 @@ +{ + "$schema": "https://json.schemastore.org/web-manifest-combined.json", + "short_name": "EasyLogon", + "id": "/", + "name": "EasyLogon", + "description": "Log in on any device with a few clicks", + "lang": "en", + "dir": "auto", + "categories": [ "productivity", "security", "utilities" ], + "start_url": "/", + "scope": "/", + "display": "standalone", + "theme_color": "#ffffff", + "background_color": "#ffffff", + "icons": + [ + { + "src": "/AppImages/windows11/SmallTile.scale-100.png", + "sizes": "71x71" + }, + { + "src": "/AppImages/windows11/SmallTile.scale-125.png", + "sizes": "89x89" + }, + { + "src": "/AppImages/windows11/SmallTile.scale-150.png", + "sizes": "107x107" + }, + { + "src": "/AppImages/windows11/SmallTile.scale-200.png", + "sizes": "142x142" + }, + { + "src": "/AppImages/windows11/SmallTile.scale-400.png", + "sizes": "284x284" + }, + { + "src": "/AppImages/windows11/Square150x150Logo.scale-100.png", + "sizes": "150x150" + }, + { + "src": "/AppImages/windows11/Square150x150Logo.scale-125.png", + "sizes": "188x188" + }, + { + "src": "/AppImages/windows11/Square150x150Logo.scale-150.png", + "sizes": "225x225" + }, + { + "src": "/AppImages/windows11/Square150x150Logo.scale-200.png", + "sizes": "300x300" + }, + { + "src": "/AppImages/windows11/Square150x150Logo.scale-400.png", + "sizes": "600x600" + }, + { + "src": "/AppImages/windows11/Wide310x150Logo.scale-100.png", + "sizes": "310x150" + }, + { + "src": "/AppImages/windows11/Wide310x150Logo.scale-125.png", + "sizes": "388x188" + }, + { + "src": "/AppImages/windows11/Wide310x150Logo.scale-150.png", + "sizes": "465x225" + }, + { + "src": "/AppImages/windows11/Wide310x150Logo.scale-200.png", + "sizes": "620x300" + }, + { + "src": "/AppImages/windows11/Wide310x150Logo.scale-400.png", + "sizes": "1240x600" + }, + { + "src": "/AppImages/windows11/LargeTile.scale-100.png", + "sizes": "310x310" + }, + { + "src": "/AppImages/windows11/LargeTile.scale-125.png", + "sizes": "388x388" + }, + { + "src": "/AppImages/windows11/LargeTile.scale-150.png", + "sizes": "465x465" + }, + { + "src": "/AppImages/windows11/LargeTile.scale-200.png", + "sizes": "620x620" + }, + { + "src": "/AppImages/windows11/LargeTile.scale-400.png", + "sizes": "1240x1240" + }, + { + "src": "/AppImages/windows11/Square44x44Logo.scale-100.png", + "sizes": "44x44" + }, + { + "src": "/AppImages/windows11/Square44x44Logo.scale-125.png", + "sizes": "55x55" + }, + { + "src": "/AppImages/windows11/Square44x44Logo.scale-150.png", + "sizes": "66x66" + }, + { + "src": "/AppImages/windows11/Square44x44Logo.scale-200.png", + "sizes": "88x88" + }, + { + "src": "/AppImages/windows11/Square44x44Logo.scale-400.png", + "sizes": "176x176" + }, + { + "src": "/AppImages/windows11/StoreLogo.scale-100.png", + "sizes": "50x50" + }, + { + "src": "/AppImages/windows11/StoreLogo.scale-125.png", + "sizes": "63x63" + }, + { + "src": "/AppImages/windows11/StoreLogo.scale-150.png", + "sizes": "75x75" + }, + { + "src": "/AppImages/windows11/StoreLogo.scale-200.png", + "sizes": "100x100" + }, + { + "src": "/AppImages/windows11/StoreLogo.scale-400.png", + "sizes": "200x200" + }, + { + "src": "/AppImages/windows11/SplashScreen.scale-100.png", + "sizes": "620x300" + }, + { + "src": "/AppImages/windows11/SplashScreen.scale-125.png", + "sizes": "775x375" + }, + { + "src": "/AppImages/windows11/SplashScreen.scale-150.png", + "sizes": "930x450" + }, + { + "src": "/AppImages/windows11/SplashScreen.scale-200.png", + "sizes": "1240x600" + }, + { + "src": "/AppImages/windows11/SplashScreen.scale-400.png", + "sizes": "2480x1200" + }, + { + "src": "/AppImages/windows11/Square44x44Logo.targetsize-16.png", + "sizes": "16x16" + }, + { + "src": "/AppImages/windows11/Square44x44Logo.targetsize-20.png", + "sizes": "20x20" + }, + { + "src": "/AppImages/windows11/Square44x44Logo.targetsize-24.png", + "sizes": "24x24" + }, + { + "src": "/AppImages/windows11/Square44x44Logo.targetsize-30.png", + "sizes": "30x30" + }, + { + "src": "/AppImages/windows11/Square44x44Logo.targetsize-32.png", + "sizes": "32x32" + }, + { + "src": "/AppImages/windows11/Square44x44Logo.targetsize-36.png", + "sizes": "36x36" + }, + { + "src": "/AppImages/windows11/Square44x44Logo.targetsize-40.png", + "sizes": "40x40" + }, + { + "src": "/AppImages/windows11/Square44x44Logo.targetsize-44.png", + "sizes": "44x44" + }, + { + "src": "/AppImages/windows11/Square44x44Logo.targetsize-48.png", + "sizes": "48x48" + }, + { + "src": "/AppImages/windows11/Square44x44Logo.targetsize-60.png", + "sizes": "60x60" + }, + { + "src": "/AppImages/windows11/Square44x44Logo.targetsize-64.png", + "sizes": "64x64" + }, + { + "src": "/AppImages/windows11/Square44x44Logo.targetsize-72.png", + "sizes": "72x72" + }, + { + "src": "/AppImages/windows11/Square44x44Logo.targetsize-80.png", + "sizes": "80x80" + }, + { + "src": "/AppImages/windows11/Square44x44Logo.targetsize-96.png", + "sizes": "96x96" + }, + { + "src": "/AppImages/windows11/Square44x44Logo.targetsize-256.png", + "sizes": "256x256" + }, + { + "src": "/AppImages/windows11/Square44x44Logo.altform-unplated_targetsize-16.png", + "sizes": "16x16" + }, + { + "src": "/AppImages/windows11/Square44x44Logo.altform-unplated_targetsize-20.png", + "sizes": "20x20" + }, + { + "src": "/AppImages/windows11/Square44x44Logo.altform-unplated_targetsize-24.png", + "sizes": "24x24" + }, + { + "src": "/AppImages/windows11/Square44x44Logo.altform-unplated_targetsize-30.png", + "sizes": "30x30" + }, + { + "src": "/AppImages/windows11/Square44x44Logo.altform-unplated_targetsize-32.png", + "sizes": "32x32" + }, + { + "src": "/AppImages/windows11/Square44x44Logo.altform-unplated_targetsize-36.png", + "sizes": "36x36" + }, + { + "src": "/AppImages/windows11/Square44x44Logo.altform-unplated_targetsize-40.png", + "sizes": "40x40" + }, + { + "src": "/AppImages/windows11/Square44x44Logo.altform-unplated_targetsize-44.png", + "sizes": "44x44" + }, + { + "src": "/AppImages/windows11/Square44x44Logo.altform-unplated_targetsize-48.png", + "sizes": "48x48" + }, + { + "src": "/AppImages/windows11/Square44x44Logo.altform-unplated_targetsize-60.png", + "sizes": "60x60" + }, + { + "src": "/AppImages/windows11/Square44x44Logo.altform-unplated_targetsize-64.png", + "sizes": "64x64" + }, + { + "src": "/AppImages/windows11/Square44x44Logo.altform-unplated_targetsize-72.png", + "sizes": "72x72" + }, + { + "src": "/AppImages/windows11/Square44x44Logo.altform-unplated_targetsize-80.png", + "sizes": "80x80" + }, + { + "src": "/AppImages/windows11/Square44x44Logo.altform-unplated_targetsize-96.png", + "sizes": "96x96" + }, + { + "src": "/AppImages/windows11/Square44x44Logo.altform-unplated_targetsize-256.png", + "sizes": "256x256" + }, + { + "src": "/AppImages/windows11/Square44x44Logo.altform-lightunplated_targetsize-16.png", + "sizes": "16x16" + }, + { + "src": "/AppImages/windows11/Square44x44Logo.altform-lightunplated_targetsize-20.png", + "sizes": "20x20" + }, + { + "src": "/AppImages/windows11/Square44x44Logo.altform-lightunplated_targetsize-24.png", + "sizes": "24x24" + }, + { + "src": "/AppImages/windows11/Square44x44Logo.altform-lightunplated_targetsize-30.png", + "sizes": "30x30" + }, + { + "src": "/AppImages/windows11/Square44x44Logo.altform-lightunplated_targetsize-32.png", + "sizes": "32x32" + }, + { + "src": "/AppImages/windows11/Square44x44Logo.altform-lightunplated_targetsize-36.png", + "sizes": "36x36" + }, + { + "src": "/AppImages/windows11/Square44x44Logo.altform-lightunplated_targetsize-40.png", + "sizes": "40x40" + }, + { + "src": "/AppImages/windows11/Square44x44Logo.altform-lightunplated_targetsize-44.png", + "sizes": "44x44" + }, + { + "src": "/AppImages/windows11/Square44x44Logo.altform-lightunplated_targetsize-48.png", + "sizes": "48x48" + }, + { + "src": "/AppImages/windows11/Square44x44Logo.altform-lightunplated_targetsize-60.png", + "sizes": "60x60" + }, + { + "src": "/AppImages/windows11/Square44x44Logo.altform-lightunplated_targetsize-64.png", + "sizes": "64x64" + }, + { + "src": "/AppImages/windows11/Square44x44Logo.altform-lightunplated_targetsize-72.png", + "sizes": "72x72" + }, + { + "src": "/AppImages/windows11/Square44x44Logo.altform-lightunplated_targetsize-80.png", + "sizes": "80x80" + }, + { + "src": "/AppImages/windows11/Square44x44Logo.altform-lightunplated_targetsize-96.png", + "sizes": "96x96" + }, + { + "src": "/AppImages/windows11/Square44x44Logo.altform-lightunplated_targetsize-256.png", + "sizes": "256x256" + }, + { + "src": "/AppImages/android/android-launchericon-512-512.png", + "sizes": "512x512" + }, + { + "src": "/AppImages/android/android-launchericon-192-192.png", + "sizes": "192x192" + }, + { + "src": "/AppImages/android/android-launchericon-144-144.png", + "sizes": "144x144" + }, + { + "src": "/AppImages/android/android-launchericon-96-96.png", + "sizes": "96x96" + }, + { + "src": "/AppImages/android/android-launchericon-72-72.png", + "sizes": "72x72" + }, + { + "src": "/AppImages/android/android-launchericon-48-48.png", + "sizes": "48x48" + }, + { + "src": "/AppImages/ios/16.png", + "sizes": "16x16" + }, + { + "src": "/AppImages/ios/20.png", + "sizes": "20x20" + }, + { + "src": "/AppImages/ios/29.png", + "sizes": "29x29" + }, + { + "src": "/AppImages/ios/32.png", + "sizes": "32x32" + }, + { + "src": "/AppImages/ios/40.png", + "sizes": "40x40" + }, + { + "src": "/AppImages/ios/50.png", + "sizes": "50x50" + }, + { + "src": "/AppImages/ios/57.png", + "sizes": "57x57" + }, + { + "src": "/AppImages/ios/58.png", + "sizes": "58x58" + }, + { + "src": "/AppImages/ios/60.png", + "sizes": "60x60" + }, + { + "src": "/AppImages/ios/64.png", + "sizes": "64x64" + }, + { + "src": "/AppImages/ios/72.png", + "sizes": "72x72" + }, + { + "src": "/AppImages/ios/76.png", + "sizes": "76x76" + }, + { + "src": "/AppImages/ios/80.png", + "sizes": "80x80" + }, + { + "src": "/AppImages/ios/87.png", + "sizes": "87x87" + }, + { + "src": "/AppImages/ios/100.png", + "sizes": "100x100" + }, + { + "src": "/AppImages/ios/114.png", + "sizes": "114x114" + }, + { + "src": "/AppImages/ios/120.png", + "sizes": "120x120" + }, + { + "src": "/AppImages/ios/128.png", + "sizes": "128x128" + }, + { + "src": "/AppImages/ios/144.png", + "sizes": "144x144" + }, + { + "src": "/AppImages/ios/152.png", + "sizes": "152x152" + }, + { + "src": "/AppImages/ios/167.png", + "sizes": "167x167" + }, + { + "src": "/AppImages/ios/180.png", + "sizes": "180x180" + }, + { + "src": "/AppImages/ios/192.png", + "sizes": "192x192" + }, + { + "src": "/AppImages/ios/256.png", + "sizes": "256x256" + }, + { + "src": "/AppImages/ios/512.png", + "sizes": "512x512" + }, + { + "src": "/AppImages/ios/1024.png", + "sizes": "1024x1024" + } + ] +} diff --git a/public/robots.txt b/public/robots.txt new file mode 100644 index 0000000..1025744 --- /dev/null +++ b/public/robots.txt @@ -0,0 +1,6 @@ +# https://www.robotstxt.org/robotstxt.html +User-agent: * +Allow: /$ +Allow: /privacy +Allow: /sitemap.xml +Disallow: / diff --git a/public/sitemap.xml b/public/sitemap.xml new file mode 100644 index 0000000..38ad0ae --- /dev/null +++ b/public/sitemap.xml @@ -0,0 +1,19 @@ + + + + + https://ezlog.app/ + always + 1 + + + + https://ezlog.app/privacy + weekly + 0.5 + + + diff --git a/public/sw.js b/public/sw.js new file mode 100644 index 0000000..13a28ae --- /dev/null +++ b/public/sw.js @@ -0,0 +1,55 @@ +console.log("[sw.js]: Running service worker"); + +/** @type {string} */ +let cacheName = "easylogon-pwa"; + +/** @type {string[]} */ +let filesToCache = [ + "/", + "/success", + "/error", + "/privacy", + "/assets/index.js", + "/assets/PrivacyPage.js", + "/assets/index.css", + "/favicon.svg" +]; + +self.addEventListener("install", /** @param {InstallEvent} event */ event => + event.waitUntil((async () => + { + /** @type {Cache} */ + let cache = await caches.open(cacheName); + await cache.addAll(filesToCache); + })()) +); + +self.addEventListener("fetch", /** @param {FetchEvent} event */ event => + event.respondWith( + (async () => + { + // Don't cache anything but GET requests + if (event.request.method !== "GET") + return await fetch(event.request); + + // Try cache first + let response = await caches.match(new URL(event.request.url)); + + if (response) + return response; + + response = await fetch(event.request); + + // If fetch succeeds, cache the response + if (response.ok) + { + console.log("[sw.js]: Caching file", event.request.url); + + const cache = await caches.open(cacheName); + await cache.put(event.request, response.clone()); + } + + return response; + })() + ) +); diff --git a/src/App.tsx b/src/App.tsx new file mode 100644 index 0000000..56dd463 --- /dev/null +++ b/src/App.tsx @@ -0,0 +1,33 @@ +import { lazy, ReactElement } from "react"; +import { useTheme } from "./utils/useTheme"; +import { FluentProvider } from "@fluentui/react-components"; +import { BrowserRouter, Navigate, Route, Routes } from "react-router-dom"; +import { Helmet } from "react-helmet"; +import StartPage from "./pages/StartPage"; +import SuccessPage from "./pages/SuccessPage"; +import ErrorPage from "./pages/ErrorPage"; + +const PrivacyPage = lazy(() => import("./pages/PrivacyPage")); + +export default function App(): ReactElement +{ + const theme = useTheme(); + + return ( + + + + } /> + } /> + } /> + } /> + } /> + + + + + + + + ); +} diff --git a/src/assets/Bmc.svg b/src/assets/Bmc.svg new file mode 100644 index 0000000..a56b046 --- /dev/null +++ b/src/assets/Bmc.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/assets/StandWithUkraine.svg b/src/assets/StandWithUkraine.svg new file mode 100644 index 0000000..158e540 --- /dev/null +++ b/src/assets/StandWithUkraine.svg @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + diff --git a/src/components/BmcButton.tsx b/src/components/BmcButton.tsx new file mode 100644 index 0000000..56ec47c --- /dev/null +++ b/src/components/BmcButton.tsx @@ -0,0 +1,61 @@ +import { Button, FluentProvider, makeStyles, mergeClasses } from "@fluentui/react-components"; +import { BrandVariants, Theme, createDarkTheme, createLightTheme } from "@fluentui/react-components"; +import { ReactElement } from "react"; +import { useTheme } from "../utils/useTheme"; +import Bmc from "../assets/Bmc.svg"; + +export default function BmcButton(): ReactElement +{ + const bmcTheme = useTheme(bmcLightTheme, bmcDarkTheme); + const cls = useStyles(); + + return ( + + + + ); +} + +const useStyles = makeStyles({ + root: { + backgroundColor: "transparent", + } +}); + +const bmcBrandRamp: BrandVariants = +{ + "10": "#050201", + "20": "#20140C", + "30": "#372014", + "40": "#492918", + "50": "#5C321D", + "60": "#6F3C21", + "70": "#834525", + "80": "#984F2A", + "90": "#AD5A2E", + "100": "#C36433", + "110": "#D96E37", + "120": "#EF793C", + "130": "#FF884A", + "140": "#FFA170", + "150": "#FFB792", + "160": "#FFCCB3" +}; + +const bmcLightTheme: Theme = +{ + ...createLightTheme(bmcBrandRamp), + colorBrandBackground: bmcBrandRamp[110], +}; + +const bmcDarkTheme: Theme = +{ + ...createDarkTheme(bmcBrandRamp), + colorBrandBackground: bmcBrandRamp[120], + colorBrandForeground1: bmcBrandRamp[110], + colorBrandForeground2: bmcBrandRamp[120] +}; diff --git a/src/components/CtaPopover.tsx b/src/components/CtaPopover.tsx new file mode 100644 index 0000000..affed32 --- /dev/null +++ b/src/components/CtaPopover.tsx @@ -0,0 +1,71 @@ +import { Popover, PopoverSurface, Subtitle1, Button, Text, makeStyles, tokens } from "@fluentui/react-components"; +import { PersonFeedbackRegular } from "@fluentui/react-icons"; +import { ReactElement, useEffect, useState } from "react"; +import BmcButton from "./BmcButton"; + +export default function CtaPopover(): ReactElement +{ + const [ctaOpen, setCtaOpen] = useState(false); + const cls = useStyles(); + + useEffect(() => + { + // We have to open it manually, otherwise it struggles to find the target anchor + setCtaOpen(true); + }, []); + + return ( + <> +
+ + + + + + Did you like the service?
+ Help us improve by submitting an idea, or supporting with a donation +
+ +
+ + +
+ +
+
+ + ); +} + +const useStyles = makeStyles({ + popoverTarget: + { + position: "fixed", + bottom: 0, + right: 0 + }, + popoverSurface: + { + display: "flex", + flexFlow: "column", + gap: tokens.spacingVerticalM, + marginRight: tokens.spacingHorizontalXXXL + " !important" + }, + popoverActions: + { + display: "flex", + justifyContent: "flex-end", + gap: tokens.spacingHorizontalS + } +}); diff --git a/src/dialogs/AboutDialog.tsx b/src/dialogs/AboutDialog.tsx new file mode 100644 index 0000000..cf8c534 --- /dev/null +++ b/src/dialogs/AboutDialog.tsx @@ -0,0 +1,76 @@ +import * as fui from "@fluentui/react-components"; +import { Dismiss24Regular } from "@fluentui/react-icons"; +import { ReactElement } from "react"; +import useNavigation from "../utils/useNavigation"; +import BmcButton from "../components/BmcButton"; +import { useLocation } from "react-router"; +import Package from "../../package.json"; + +export default function AboutDialog(): ReactElement +{ + const location = useLocation(); + const { hrefProps } = useNavigation(); + const cls = useStyles(); + + return ( + document.location.replace("#") }> + + + + } /> + + } + > + About + + + + + EasyLogon
+ Version { Package.version } (commit: { import.meta.env.VITE_COMMIT })
+ Privacy policy +
+ + + + Have any ideas?
+ + Let me know via email at feedback@xfox111.net, + or open an issue on the project's GitHub page + +
+ + + Like the project?
+ Support me with a donation. Even small amount is a big deal! +
+ + + + Source code
+ My website
+ Follow me on Bluesky +
+ + ©{ new Date().getFullYear() } Eugene Fox. All rights reserved +
+
+
+
+ ); +} + +const useStyles = fui.makeStyles({ + content: + { + display: "flex", + flexFlow: "column", + gap: fui.tokens.spacingVerticalM + }, + versionText: + { + userSelect: "text" + } +}); diff --git a/src/dialogs/DownloadDialog.tsx b/src/dialogs/DownloadDialog.tsx new file mode 100644 index 0000000..ab11c08 --- /dev/null +++ b/src/dialogs/DownloadDialog.tsx @@ -0,0 +1,72 @@ +import * as fui from "@fluentui/react-components"; +import { ReactElement } from "react"; +import { QRCodeSVG } from "qrcode.react"; +import { useLocation } from "react-router"; + +const GooglePlayLink: string = "http://at.xfox111.net/easylogon-android"; + +export default function DownloadDialog(): ReactElement +{ + const location = useLocation(); + const cls = useStyles(); + + return ( + document.location.replace("#") }> + + + Download EasyLogon app on your phone + + + + + Our mobile app allows you to store all your passwords in one place, + and send them to other devices via QR code + + + + + + The app is currently available only for Android devices + + + + + + + + Close + + + + Google Play + + + + + + + + ); +} + +const useStyles = fui.makeStyles({ + surface: + { + maxWidth: "300px" + }, + body: + { + gridTemplateColumns: "unset" + }, + content: + { + display: "flex", + flexFlow: "column", + gap: fui.tokens.spacingVerticalM + } +}); diff --git a/src/dialogs/QnaDialog.tsx b/src/dialogs/QnaDialog.tsx new file mode 100644 index 0000000..352e0cf --- /dev/null +++ b/src/dialogs/QnaDialog.tsx @@ -0,0 +1,98 @@ +import * as fui from "@fluentui/react-components"; +import { Dismiss24Regular } from "@fluentui/react-icons"; +import { ReactElement } from "react"; +import { useLocation } from "react-router"; + +export default function QnaDialog(): ReactElement +{ + const location = useLocation(); + const cls = useStyles(); + + return ( + document.location.replace("#") }> + + + + } /> + + } + > + Q&A + + + + +
+ How does it work? + + When you open this site, it generates a QR code with a unique session ID and an encryption key. + Once you scan the QR code with EasyLogon mobile app, it will encrypt your login information and send it to this device. + After that, it can be decrypted and used to log you in. + +
+ +
+ Is my data sent directly to this device? + + Almost. First the data is sent to a relay server, which then forwards it here. + This approach was chosen to avoid networking issues that can happen on some networks + when using peer-to-peer protocols. The relay server doesn't store your data, + nor it has any capability to decrypt it. + +
+ +
+ How is my data secured? + + First, your data is end-to-end encrypted using AES-256 algorithm (which was, by the + way, + approved by the NSA for encrypting top secret information). + While the encryption key is symmetric (meaning it can be used for both encryption and decryption), + since the key is never send through the network, it can be only intercepted using spyware, + or by someone who is standing right behind you. + +
+ +
+ What about mobile app? + + Your credentials in EasyLogon mobile app are stored in a secure storage, using the + means provided by the operating system. The specific implementation depends on the platform. + See this article for + more information. + +
+ +
+ How do I know if you are lying? + + We have released souce code for each component of this service on GitHub, + so every aspect of the system, and every future change can be viewed and verified by anyone. + This is a non-commercial project, so we don't collect or sell any of your data either. + +
+ +
+
+
+
+ ); +} + +const useStyles = fui.makeStyles({ + content: + { + display: "flex", + flexFlow: "column", + gap: fui.tokens.spacingVerticalL, + userSelect: "text" + }, + section: + { + display: "flex", + flexFlow: "column", + gap: fui.tokens.spacingVerticalS, + } +}); diff --git a/src/main.css b/src/main.css new file mode 100644 index 0000000..53d6466 --- /dev/null +++ b/src/main.css @@ -0,0 +1,75 @@ +body +{ + margin: 0; + user-select: none; + overflow-x: hidden; +} + +#root > .fui-FluentProvider +{ + min-height: 100vh; + display: grid; +} + +p, h1, h2, h3 +{ + margin: 0; +} + +@keyframes fadeIn +{ + 0% + { + opacity: 0; + } + + 100% + { + opacity: 1; + } +} + +@keyframes scaleUpFade +{ + 0% + { + opacity: 0; + transform: scale(0.8); + } + + 100% + { + opacity: 1; + transform: scale(1); + } +} + +@keyframes slideLeftIn +{ + 0% + { + opacity: 0; + transform: translateX(40px); + } + + 100% + { + opacity: 1; + transform: translateX(0); + } +} + +@keyframes slideRightIn +{ + 0% + { + opacity: 0; + transform: translateX(-40px); + } + + 100% + { + opacity: 1; + transform: translateX(0); + } +} diff --git a/src/main.tsx b/src/main.tsx new file mode 100644 index 0000000..25bf61e --- /dev/null +++ b/src/main.tsx @@ -0,0 +1,10 @@ +import { StrictMode } from "react"; +import { createRoot } from "react-dom/client"; +import "./main.css"; +import App from "./App.tsx"; + +createRoot(document.getElementById("root")!).render( + + + , +); diff --git a/src/pages/ErrorPage.tsx b/src/pages/ErrorPage.tsx new file mode 100644 index 0000000..4503ac6 --- /dev/null +++ b/src/pages/ErrorPage.tsx @@ -0,0 +1,67 @@ +import { Button, LargeTitle, makeStyles, Text, Title3, tokens } from "@fluentui/react-components"; +import { ArrowCounterclockwiseRegular, ErrorCircleRegular } from "@fluentui/react-icons"; +import { ReactElement } from "react"; +import useNavigation from "../utils/useNavigation"; +import { useLocation } from "react-router-dom"; +import MetaTitle from "../utils/MetaTitle"; + +export default function ErrorPage(): ReactElement +{ + const { hrefProps } = useNavigation(); + const location = useLocation(); + const cls = useStyles(); + + if (!location.state) + { + document.location.replace("/"); + return <>; + } + + return ( +
+
+ + + + Something went wrong +
+ + + We received your data but were unable to decrypt it. + + + + + +
+ ); +} + +const useStyles = makeStyles({ + root: + { + display: "flex", + flexFlow: "column", + alignSelf: "center", + justifySelf: "center", + alignItems: "center", + gap: tokens.spacingVerticalL, + padding: `${tokens.spacingVerticalS} ${tokens.spacingHorizontalL}`, + + animationName: "slideLeftIn", + animationDuration: tokens.durationFast, + animationTimingFunction: tokens.curveEasyEaseMax + }, + header: + { + display: "flex", + flexFlow: "column", + alignItems: "center", + color: tokens.colorStatusDangerForeground1 + } +}); diff --git a/src/pages/PrivacyPage.skeleton.tsx b/src/pages/PrivacyPage.skeleton.tsx new file mode 100644 index 0000000..a91597e --- /dev/null +++ b/src/pages/PrivacyPage.skeleton.tsx @@ -0,0 +1,57 @@ +import { makeStyles, Skeleton, SkeletonItem, tokens } from "@fluentui/react-components"; + +export function PrivacyPageSkeleton() +{ + const cls = useStyles(); + + return ( + + +
+ + + + + + +
+ +
+ + + + + + + + + +
+ +
+ + +
+
+ ); +} + +const useStyles = makeStyles({ + contentSkeleton: + { + display: "flex", + flexFlow: "column" + }, + skeletonHeader: + { + maxWidth: "240px" + }, + skeletonSection: + { + display: "flex", + flexFlow: "column", + margin: "14px 0", + marginLeft: "40px", + gap: tokens.spacingVerticalSNudge + } +}); diff --git a/src/pages/PrivacyPage.styles.ts b/src/pages/PrivacyPage.styles.ts new file mode 100644 index 0000000..144358e --- /dev/null +++ b/src/pages/PrivacyPage.styles.ts @@ -0,0 +1,50 @@ +import { makeStyles, tokens } from "@fluentui/react-components"; + +export const useStyles = makeStyles({ + root: + { + margin: `${tokens.spacingVerticalXL} ${tokens.spacingHorizontalXXXL}`, + + animationName: "fadeIn", + animationDuration: tokens.durationSlow, + }, + header: + { + display: "flex", + flexFlow: "column", + alignItems: "flex-start", + marginBottom: tokens.spacingVerticalXL, + }, + headerTitle: + { + margin: 0 + }, + titleContainer: + { + display: "flex", + flexFlow: "column", + userSelect: "text" + }, + lastUpdated: + { + display: "flex", + alignItems: "center", + gap: tokens.spacingHorizontalSNudge + }, + lastUpdatedSkeleton: + { + width: "160px" + }, + article: + { + display: "flex", + flexFlow: "column", + userSelect: "text", + + animationName: "fadeIn", + animationDuration: tokens.durationNormal, + animationTimingFunction: tokens.curveEasyEaseMax, + + gap: tokens.spacingVerticalM, + }, +}); diff --git a/src/pages/PrivacyPage.tsx b/src/pages/PrivacyPage.tsx new file mode 100644 index 0000000..3d0b493 --- /dev/null +++ b/src/pages/PrivacyPage.tsx @@ -0,0 +1,85 @@ +import { Button, Link, MessageBar, MessageBarBody, Skeleton, SkeletonItem, Subtitle1, Text, Title2 } from "@fluentui/react-components"; +import { ReactElement, useEffect, useState } from "react"; +import useNavigation from "../utils/useNavigation"; +import { ChevronLeftRegular } from "@fluentui/react-icons"; +import MetaTitle from "../utils/MetaTitle"; +import ReactMarkdown, { Components } from "react-markdown"; +import { useStyles } from "./PrivacyPage.styles"; +import { PrivacyPageSkeleton } from "./PrivacyPage.skeleton"; + +const PrivacyPolicyUrl: string = "https://raw.githubusercontent.com/XFox111/easylogon-web/refs/heads/main/PRIVACY.md"; + +export default function PrivacyPage(): ReactElement +{ + const { hrefProps } = useNavigation(); + const cls = useStyles(); + + const [policy, setPolicy] = useState(null); + + useEffect(() => + { + fetch(PrivacyPolicyUrl) + .then(res => res.text()) + .then(setPolicy) + .catch(() => setPolicy(false)); + }, []); + + return ( +
+
+ + +
+ Privacy policy + { policy !== false && +
+ + Last updated: { policy ? new Date(parseInt(policy.split("\n---\n")[0]) * 1000).toDateString() : "" } + + { policy === null && + + + + } +
+ } +
+
+ + { policy === null ? + + : +
+ { policy ? + + { policy.split("\n---\n")[1] } + + : + + + We couldn't fetch privacy policy. Try again later, or view it + on GitHub. + + + } + + ©{ new Date().getFullYear() } Eugene Fox. + All rights reserved + +
+ } + + +
+ ); +} + +const customMarkdownComponents: Components = +{ + a: (props) => + { props.children }, + h2: (props) => + { props.children } +}; diff --git a/src/pages/StartPage.styles.ts b/src/pages/StartPage.styles.ts new file mode 100644 index 0000000..6f57199 --- /dev/null +++ b/src/pages/StartPage.styles.ts @@ -0,0 +1,89 @@ +import { makeStyles, tokens } from "@fluentui/react-components"; + +export const useStyles = makeStyles({ + root: + { + display: "grid", + gridTemplateRows: "auto 1fr auto" + }, + content: + { + width: "100%", + maxWidth: "320px", + boxSizing: "border-box", + alignSelf: "center", + justifySelf: "center", + gridRow: 2, + + display: "flex", + flexFlow: "column", + alignItems: "center", + + padding: `${tokens.spacingVerticalM} ${tokens.spacingHorizontalL}`, + gap: tokens.spacingVerticalXL, + + animationName: "slideLeftIn", + animationDuration: tokens.durationFast, + animationTimingFunction: tokens.curveEasyEaseMax, + }, + header: + { + display: "flex", + flexFlow: "column", + gap: tokens.spacingVerticalMNudge + }, + errorBar: + { + margin: `${tokens.spacingVerticalM} ${tokens.spacingHorizontalL}`, + + animationName: "fadeIn", + animationDuration: tokens.durationSlower + }, + errorBar_body: + { + whiteSpace: "normal", + margin: `${tokens.spacingVerticalSNudge} ${tokens.spacingHorizontalNone}` + }, + qrRoot: + { + position: "relative" + }, + loaderRoot: + { + position: "absolute", + top: "0", + right: "0", + width: "100%", + height: "100%", + display: "flex", + flexFlow: "column", + gap: tokens.spacingVerticalM, + alignItems: "center", + justifyContent: "center", + backdropFilter: "blur(8px)", + + transitionProperty: "opacity", + transitionTimingFunction: tokens.curveEasyEaseMax, + transitionDuration: tokens.durationNormal + }, + loaderRoot_hidden: + { + opacity: "0", + pointerEvents: "none" + }, + u24_icon: + { + height: "unset", + width: "unset", + marginRight: tokens.spacingHorizontalMNudge + }, + footer: + { + display: "flex", + flexWrap: "wrap", + justifyContent: "center", + margin: "12px", + gap: "4px", + gridRow: 3 + } +}); diff --git a/src/pages/StartPage.tsx b/src/pages/StartPage.tsx new file mode 100644 index 0000000..3c5327a --- /dev/null +++ b/src/pages/StartPage.tsx @@ -0,0 +1,121 @@ +import * as fui from "@fluentui/react-components"; +import * as ic from "@fluentui/react-icons"; +import { ReactElement } from "react"; +import { Outlet, useNavigate } from "react-router-dom"; +import { useStyles } from "./StartPage.styles"; +import { QRCodeSVG } from "qrcode.react"; +import MetaTitle from "../utils/MetaTitle"; +import useConnection from "../utils/useConnection"; +import StandWithUkraine from "../assets/StandWithUkraine.svg"; +import AboutDialog from "../dialogs/AboutDialog"; +import DownloadDialog from "../dialogs/DownloadDialog"; +import QnaDialog from "../dialogs/QnaDialog"; + +export default function StartPage(): ReactElement +{ + const navigate = useNavigate(); + const [status, url] = useConnection( + data => navigate("/success", { state: data }), + () => navigate("/error", { state: true }) + ); + + const cls = useStyles(); + + const AboutIcon: ic.FluentIcon = ic.bundleIcon(ic.InfoFilled, ic.InfoRegular); + const QnaIcon: ic.FluentIcon = ic.bundleIcon(ic.LockClosedFilled, ic.LockClosedRegular); + // const DevIcon: ic.FluentIcon = ic.bundleIcon(ic.CodeFilled, ic.CodeRegular); + + return ( +
+ { status === "failed" && + + + Cannot establish connection to the server. + Please check your internet connection and refresh the page + + + window.location.reload() }>Refresh + + + } + +
+
+ EasyLogon + Sign in on any device with a few clicks +
+ +
+ + +
+ { status === "failed" ? + + : + + } + { status === "reconnecting" && + + + Reconnecting... + + + } +
+
+ + + 1. Open EasyLogon app on your phone
+ 2. Scan the QR code
+ 3. Select an account to send
+ 4. Copy and paste your info on a login page +
+ + } } + > + #StandWithUkraine + + +
+
+ }> + Is this secure? + + }> + About + + {/* }> + Add QR code authentication on my site + */} +
+ + + + + { import.meta.env.DEV && + + Status: { status }; URL: { url.href }
+ navigator.clipboard.writeText(url.href) }>Write URI to clipboard
+ navigate("/success", { state: { login: "login", password: "password" } }) }>/success (login + password)
+ navigate("/success", { state: { login: "login".repeat(10), password: "password".repeat(10), freetext: "The quick brown fox jumps over the lazy dog.".repeat(10) } }) }>/success (overflow test)
+ navigate("/success", { state: { freetext: "The quick brown fox jumps over the lazy dog.".repeat(2) } }) }>/success (freetext)
+ navigate("/error", { state: true }) }>/error +
+ } + + + + +
+ ); +} diff --git a/src/pages/SuccessPage.styles.ts b/src/pages/SuccessPage.styles.ts new file mode 100644 index 0000000..4ff5c21 --- /dev/null +++ b/src/pages/SuccessPage.styles.ts @@ -0,0 +1,74 @@ +import { makeStyles, shorthands, tokens } from "@fluentui/react-components"; + +export const useStyles = makeStyles({ + root: + { + display: "flex", + flexFlow: "column", + alignSelf: "center", + justifySelf: "center", + alignItems: "center", + gap: tokens.spacingVerticalL, + padding: `${tokens.spacingVerticalS} ${tokens.spacingHorizontalL}`, + + animationName: "slideLeftIn", + animationDuration: tokens.durationFast, + animationTimingFunction: tokens.curveEasyEaseMax + }, + header: + { + display: "flex", + flexFlow: "column", + alignItems: "center", + color: tokens.colorStatusSuccessForeground1 + }, + section: + { + display: "flex", + flexFlow: "column", + width: "100%", + maxWidth: "288px", + gap: tokens.spacingVerticalMNudge + }, + copyButton: + { + width: "100%", + justifyContent: "flex-start", + fontWeight: 400, + whiteSpace: "pre-wrap", + textAlign: "left", + + transitionProperty: "color, border-color", + transitionDuration: tokens.durationFaster + }, + dataText: + { + textOverflow: "ellipsis", + overflow: "hidden", + whiteSpace: "nowrap", + }, + revealButton: + { + width: "20px", + height: "20px", + fontSize: "20px" + }, + freeText: + { + textOverflow: "ellipsis", + overflow: "hidden", + whiteSpace: "pre", + maxHeight: "60px" + }, + copiedStyle: + { + color: tokens.colorStatusSuccessForeground1 + " !important", + ...shorthands.borderColor(tokens.colorStatusSuccessBorder1 + " !important") + }, + copiedIcon: + { + animationName: "scaleUpFade", + animationDuration: tokens.durationFast, + animationTimingFunction: tokens.curveEasyEaseMax, + } +}); diff --git a/src/pages/SuccessPage.tsx b/src/pages/SuccessPage.tsx new file mode 100644 index 0000000..68204c6 --- /dev/null +++ b/src/pages/SuccessPage.tsx @@ -0,0 +1,107 @@ +import { Button, LargeTitle, mergeClasses, SplitButton, Title3 } from "@fluentui/react-components"; +import * as ic from "@fluentui/react-icons"; +import { ReactElement, useMemo, useState } from "react"; +import useNavigation from "../utils/useNavigation"; +import { useStyles } from "./SuccessPage.styles"; +import CtaPopover from "../components/CtaPopover"; +import useTimeout from "../utils/useTimeout"; +import { UserData } from "../utils/useConnection"; +import { useLocation } from "react-router-dom"; +import MetaTitle from "../utils/MetaTitle"; + +export default function SuccessPage(): ReactElement +{ + const { hrefProps } = useNavigation(); + const location = useLocation(); + const data: UserData = location.state as UserData ?? document.location.replace("/"); + + const cls = useStyles(); + + const [showText, setShowText] = useState(false); + const revealIcon = useMemo( + () => showText ? + : + , + [showText, cls]); + + const [loginCopy, triggerLoginCopy] = useTimeout(3000); + const [otherCopy, triggerOtherCopy] = useTimeout(3000); + + const handleCopy = async (text: string, animationTrigger: () => void) => + { + await navigator.clipboard.writeText(text); + animationTrigger(); + }; + + return ( + <> +
+
+ + + + Account information received! +
+ +
+ { data.login && + + } + + { data.password && + handleCopy(data.password!, triggerOtherCopy), + } } + icon={ otherCopy ? : } + menuButton={ { "aria-hidden": true, "aria-label": "Reveal text. Not supported by the Narrator", onClick: () => setShowText(!showText), appearance: showText ? "primary" : "secondary" } } + menuIcon={ { className: cls.revealButton, children: revealIcon } } + > + { showText ? data.password : "••••••••••••••" } + + } + + { data.freetext && + handleCopy(data.freetext!, triggerOtherCopy), + } } + icon={ otherCopy ? : } + menuButton={ { "aria-hidden": true, "aria-label": "Reveal text. Not supported by the Narrator", onClick: () => setShowText(!showText), appearance: showText ? "primary" : "secondary" } } + menuIcon={ { className: cls.revealButton, children: revealIcon } } + > + + { showText ? + data.freetext : + data.freetext.split("\n").map(i => "•".repeat(i.length)).join("\n") + } + + + } +
+ + + +
+ + + + + ); +} diff --git a/src/utils/MetaTitle.tsx b/src/utils/MetaTitle.tsx new file mode 100644 index 0000000..436914f --- /dev/null +++ b/src/utils/MetaTitle.tsx @@ -0,0 +1,11 @@ +import { ReactElement } from "react"; +import { Helmet } from "react-helmet"; + +export default function MetaTitle(props: { title?: string }): ReactElement +{ + return ( + + { props.title ? `${props.title} - EasyLogon` : "EasyLogon" } + + ); +} diff --git a/src/utils/useConnection.ts b/src/utils/useConnection.ts new file mode 100644 index 0000000..b4c57de --- /dev/null +++ b/src/utils/useConnection.ts @@ -0,0 +1,89 @@ +import { HubConnection, HubConnectionBuilder, LogLevel } from "@microsoft/signalr"; +import { useEffect, useMemo, useState } from "react"; +import CryptoJS from "crypto-js"; + +export default function useConnection(onSuccess: (data: UserData) => void, onError: () => void): [ConnectionState, URL] +{ + const [state, setState] = useState("connecting"); + const [connectionId, setConnectionId] = useState(null!); + const key: CryptoJS.lib.WordArray = useMemo(() => CryptoJS.lib.WordArray.random(256 / 8), []); + + useEffect(() => + { + const connection: HubConnection = new HubConnectionBuilder() + .withAutomaticReconnect() + .withUrl(import.meta.env.VITE_SIGNALR_URL) + .configureLogging(import.meta.env.DEV ? LogLevel.Debug : LogLevel.Error) + .build(); + + connection.onreconnecting(() => setState("reconnecting")); + connection.onreconnected(() => setState("connected")); + connection.on("ReceiveData", encryptedData => + { + const userData = decryptMessage(encryptedData, key); + + if (!userData || !(userData.login || userData.password || userData.freetext)) + onError(); + else + onSuccess(userData); + }); + + connection.start() + .then(() => + { + setConnectionId(connection.connectionId!); + setState("connected"); + }) + .catch(() => setState("failed")); + + return () => + { + connection.stop(); + }; + // eslint-disable-next-line react-hooks/exhaustive-deps + }, []); + + return [state, buildConnectionString(connectionId, key)]; +} + +function decryptMessage(message: string, key: CryptoJS.lib.WordArray): T | undefined +{ + try + { + console.log(message, CryptoJS.enc.Base64.stringify(key)); + const raw: string = CryptoJS.AES.decrypt(message, key, + { + mode: CryptoJS.mode.ECB, + padding: CryptoJS.pad.Pkcs7 + }) + .toString(CryptoJS.enc.Utf8); + + return JSON.parse(raw) as T; + } + catch (error) + { + console.error("Error decrypting message:", error); + return undefined; + } +} + +function buildConnectionString(connectionId: string, key: CryptoJS.lib.WordArray): URL +{ + const url: URL = new URL(`elp://auth/${connectionId}`); + url.searchParams.append("key", key?.toString(CryptoJS.enc.Base64)); + url.searchParams.append("via", import.meta.env.VITE_ENDPOINT_URL); + + if (document.referrer && new URL(document.referrer).host !== document.location.host) + url.searchParams.append("res", new URL(document.referrer).host); + + return url; +} + +export type ConnectionState = "connecting" | "reconnecting" | "connected" | "failed"; + +export type UserData = + { + login?: string; + password?: string; + freetext?: string; + }; diff --git a/src/utils/useNavigation.ts b/src/utils/useNavigation.ts new file mode 100644 index 0000000..209c88b --- /dev/null +++ b/src/utils/useNavigation.ts @@ -0,0 +1,18 @@ +import { AnchorHTMLAttributes } from "react"; +import { NavigateFunction, NavigateOptions, useNavigate } from "react-router-dom"; + +export default function useNavigation() +{ + const navigate: NavigateFunction = useNavigate(); + + const hrefProps = (href: string, options?: NavigateOptions): Partial> => ({ + href, + onClick: (e) => + { + e.preventDefault(); + navigate(href, options); + } + }); + + return { hrefProps, navigate }; +} diff --git a/src/utils/useTheme.ts b/src/utils/useTheme.ts new file mode 100644 index 0000000..bb30635 --- /dev/null +++ b/src/utils/useTheme.ts @@ -0,0 +1,24 @@ +import { useState, useEffect, useCallback } from "react"; +import { Theme, webDarkTheme, webLightTheme } from "@fluentui/react-components"; + +const media = window.matchMedia("(prefers-color-scheme: dark)"); + +export function useTheme(lightTheme?: Theme, darkTheme?: Theme): Theme +{ + const getTheme = useCallback( + (isDark: boolean) => + isDark ? (darkTheme ?? webDarkTheme) : (lightTheme ?? webLightTheme), + [darkTheme, lightTheme] + ); + + const [theme, setTheme] = useState(getTheme(media.matches)); + + useEffect(() => + { + const updateTheme = (args: MediaQueryListEvent) => setTheme(getTheme(args.matches)); + media.addEventListener("change", updateTheme); + return () => media.removeEventListener("change", updateTheme); + }, [getTheme]); + + return theme; +} diff --git a/src/utils/useTimeout.ts b/src/utils/useTimeout.ts new file mode 100644 index 0000000..d225636 --- /dev/null +++ b/src/utils/useTimeout.ts @@ -0,0 +1,17 @@ +import { useCallback, useState } from "react"; + +export default function useTimeout(timeout: number): [boolean, () => void] +{ + const [isActive, setActive] = useState(false); + + const trigger = useCallback(() => + { + if (isActive) + return; + + setActive(true); + setTimeout(() => setActive(false), timeout); + }, [timeout, isActive]); + + return [isActive, trigger]; +} diff --git a/src/vite-env.d.ts b/src/vite-env.d.ts new file mode 100644 index 0000000..11f02fe --- /dev/null +++ b/src/vite-env.d.ts @@ -0,0 +1 @@ +/// diff --git a/tsconfig.app.json b/tsconfig.app.json new file mode 100644 index 0000000..85976a7 --- /dev/null +++ b/tsconfig.app.json @@ -0,0 +1,30 @@ +{ + "compilerOptions": { + "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo", + "target": "ES2020", + "useDefineForClassFields": true, + "lib": [ + "ES2020", + "DOM", + "DOM.Iterable" + ], + "module": "ESNext", + "skipLibCheck": true, + /* Bundler mode */ + "moduleResolution": "bundler", + "allowImportingTsExtensions": true, + "isolatedModules": true, + "moduleDetection": "force", + "noEmit": true, + "jsx": "react-jsx", + /* Linting */ + "strict": true, + "noUnusedLocals": true, + "noUnusedParameters": true, + "noFallthroughCasesInSwitch": true, + "noUncheckedSideEffectImports": true + }, + "include": [ + "src" + ] +} diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..a5b06bf --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,11 @@ +{ + "files": [], + "references": [ + { + "path": "./tsconfig.app.json" + }, + { + "path": "./tsconfig.node.json" + } + ] +} diff --git a/tsconfig.node.json b/tsconfig.node.json new file mode 100644 index 0000000..60cbd18 --- /dev/null +++ b/tsconfig.node.json @@ -0,0 +1,26 @@ +{ + "compilerOptions": { + "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo", + "target": "ES2022", + "lib": [ + "ES2023" + ], + "module": "ESNext", + "skipLibCheck": true, + /* Bundler mode */ + "moduleResolution": "bundler", + "allowImportingTsExtensions": true, + "isolatedModules": true, + "moduleDetection": "force", + "noEmit": true, + /* Linting */ + "strict": true, + "noUnusedLocals": true, + "noUnusedParameters": true, + "noFallthroughCasesInSwitch": true, + "noUncheckedSideEffectImports": true + }, + "include": [ + "vite.config.ts" + ] +} diff --git a/vite.config.ts b/vite.config.ts new file mode 100644 index 0000000..32ee031 --- /dev/null +++ b/vite.config.ts @@ -0,0 +1,26 @@ +import { defineConfig } from "vite"; +import react from "@vitejs/plugin-react"; +import svgr from "vite-plugin-svgr"; + +// https://vite.dev/config/ +export default defineConfig({ + plugins: + [ + svgr(), + react(), + svgr({ + svgrOptions: { exportType: "default", ref: true, svgo: false, titleProp: true }, + include: "**/*.svg", + }), + ], + build: { + chunkSizeWarningLimit: 700, + rollupOptions: { + output: { + entryFileNames: "assets/[name].js", + assetFileNames: "assets/[name].css", + chunkFileNames: "assets/[name].js", + } + } + } +}); diff --git a/yarn.lock b/yarn.lock new file mode 100644 index 0000000..80c728b --- /dev/null +++ b/yarn.lock @@ -0,0 +1,4066 @@ +# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. +# yarn lockfile v1 + + +"@ampproject/remapping@^2.2.0": + version "2.3.0" + resolved "https://registry.yarnpkg.com/@ampproject/remapping/-/remapping-2.3.0.tgz#ed441b6fa600072520ce18b43d2c8cc8caecc7f4" + integrity sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw== + dependencies: + "@jridgewell/gen-mapping" "^0.3.5" + "@jridgewell/trace-mapping" "^0.3.24" + +"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.25.9", "@babel/code-frame@^7.26.0", "@babel/code-frame@^7.26.2": + version "7.26.2" + resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.26.2.tgz#4b5fab97d33338eff916235055f0ebc21e573a85" + integrity sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ== + dependencies: + "@babel/helper-validator-identifier" "^7.25.9" + js-tokens "^4.0.0" + picocolors "^1.0.0" + +"@babel/compat-data@^7.25.9": + version "7.26.3" + resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.26.3.tgz#99488264a56b2aded63983abd6a417f03b92ed02" + integrity sha512-nHIxvKPniQXpmQLb0vhY3VaFb3S0YrTAwpOWJZh1wn3oJPjJk9Asva204PsBdmAE8vpzfHudT8DB0scYvy9q0g== + +"@babel/compat-data@^7.26.8": + version "7.26.8" + resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.26.8.tgz#821c1d35641c355284d4a870b8a4a7b0c141e367" + integrity sha512-oH5UPLMWR3L2wEFLnFJ1TZXqHufiTKAiLfqw5zkhS4dKXLJ10yVztfil/twG8EDTA4F/tvVNw9nOl4ZMslB8rQ== + +"@babel/core@^7.21.3": + version "7.26.10" + resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.26.10.tgz#5c876f83c8c4dcb233ee4b670c0606f2ac3000f9" + integrity sha512-vMqyb7XCDMPvJFFOaT9kxtiRh42GwlZEg1/uIgtZshS5a/8OaduUfCi7kynKgc3Tw/6Uo2D+db9qBttghhmxwQ== + dependencies: + "@ampproject/remapping" "^2.2.0" + "@babel/code-frame" "^7.26.2" + "@babel/generator" "^7.26.10" + "@babel/helper-compilation-targets" "^7.26.5" + "@babel/helper-module-transforms" "^7.26.0" + "@babel/helpers" "^7.26.10" + "@babel/parser" "^7.26.10" + "@babel/template" "^7.26.9" + "@babel/traverse" "^7.26.10" + "@babel/types" "^7.26.10" + convert-source-map "^2.0.0" + debug "^4.1.0" + gensync "^1.0.0-beta.2" + json5 "^2.2.3" + semver "^6.3.1" + +"@babel/core@^7.26.0": + version "7.26.0" + resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.26.0.tgz#d78b6023cc8f3114ccf049eb219613f74a747b40" + integrity sha512-i1SLeK+DzNnQ3LL/CswPCa/E5u4lh1k6IAEphON8F+cXt0t9euTshDru0q7/IqMa1PMPz5RnHuHscF8/ZJsStg== + dependencies: + "@ampproject/remapping" "^2.2.0" + "@babel/code-frame" "^7.26.0" + "@babel/generator" "^7.26.0" + "@babel/helper-compilation-targets" "^7.25.9" + "@babel/helper-module-transforms" "^7.26.0" + "@babel/helpers" "^7.26.0" + "@babel/parser" "^7.26.0" + "@babel/template" "^7.25.9" + "@babel/traverse" "^7.25.9" + "@babel/types" "^7.26.0" + convert-source-map "^2.0.0" + debug "^4.1.0" + gensync "^1.0.0-beta.2" + json5 "^2.2.3" + semver "^6.3.1" + +"@babel/generator@^7.26.0", "@babel/generator@^7.26.3": + version "7.26.3" + resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.26.3.tgz#ab8d4360544a425c90c248df7059881f4b2ce019" + integrity sha512-6FF/urZvD0sTeO7k6/B15pMLC4CHUv1426lzr3N01aHJTl046uCAh9LXW/fzeXXjPNCJ6iABW5XaWOsIZB93aQ== + dependencies: + "@babel/parser" "^7.26.3" + "@babel/types" "^7.26.3" + "@jridgewell/gen-mapping" "^0.3.5" + "@jridgewell/trace-mapping" "^0.3.25" + jsesc "^3.0.2" + +"@babel/generator@^7.26.10", "@babel/generator@^7.27.0": + version "7.27.0" + resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.27.0.tgz#764382b5392e5b9aff93cadb190d0745866cbc2c" + integrity sha512-VybsKvpiN1gU1sdMZIp7FcqphVVKEwcuj02x73uvcHE0PTihx1nlBcowYWhDwjpoAXRv43+gDzyggGnn1XZhVw== + dependencies: + "@babel/parser" "^7.27.0" + "@babel/types" "^7.27.0" + "@jridgewell/gen-mapping" "^0.3.5" + "@jridgewell/trace-mapping" "^0.3.25" + jsesc "^3.0.2" + +"@babel/helper-compilation-targets@^7.25.9": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.25.9.tgz#55af025ce365be3cdc0c1c1e56c6af617ce88875" + integrity sha512-j9Db8Suy6yV/VHa4qzrj9yZfZxhLWQdVnRlXxmKLYlhWUVB1sB2G5sxuWYXk/whHD9iW76PmNzxZ4UCnTQTVEQ== + dependencies: + "@babel/compat-data" "^7.25.9" + "@babel/helper-validator-option" "^7.25.9" + browserslist "^4.24.0" + lru-cache "^5.1.1" + semver "^6.3.1" + +"@babel/helper-compilation-targets@^7.26.5": + version "7.27.0" + resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.27.0.tgz#de0c753b1cd1d9ab55d473c5a5cf7170f0a81880" + integrity sha512-LVk7fbXml0H2xH34dFzKQ7TDZ2G4/rVTOrq9V+icbbadjbVxxeFeDsNHv2SrZeWoA+6ZiTyWYWtScEIW07EAcA== + dependencies: + "@babel/compat-data" "^7.26.8" + "@babel/helper-validator-option" "^7.25.9" + browserslist "^4.24.0" + lru-cache "^5.1.1" + semver "^6.3.1" + +"@babel/helper-module-imports@^7.25.9": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.25.9.tgz#e7f8d20602ebdbf9ebbea0a0751fb0f2a4141715" + integrity sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw== + dependencies: + "@babel/traverse" "^7.25.9" + "@babel/types" "^7.25.9" + +"@babel/helper-module-transforms@^7.26.0": + version "7.26.0" + resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.26.0.tgz#8ce54ec9d592695e58d84cd884b7b5c6a2fdeeae" + integrity sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw== + dependencies: + "@babel/helper-module-imports" "^7.25.9" + "@babel/helper-validator-identifier" "^7.25.9" + "@babel/traverse" "^7.25.9" + +"@babel/helper-plugin-utils@^7.25.9": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.25.9.tgz#9cbdd63a9443a2c92a725cca7ebca12cc8dd9f46" + integrity sha512-kSMlyUVdWe25rEsRGviIgOWnoT/nfABVWlqt9N19/dIPWViAOW2s9wznP5tURbs/IDuNk4gPy3YdYRgH3uxhBw== + +"@babel/helper-string-parser@^7.25.9": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.25.9.tgz#1aabb72ee72ed35789b4bbcad3ca2862ce614e8c" + integrity sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA== + +"@babel/helper-validator-identifier@^7.25.9": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.25.9.tgz#24b64e2c3ec7cd3b3c547729b8d16871f22cbdc7" + integrity sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ== + +"@babel/helper-validator-option@^7.25.9": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.25.9.tgz#86e45bd8a49ab7e03f276577f96179653d41da72" + integrity sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw== + +"@babel/helpers@^7.26.0", "@babel/helpers@^7.26.10": + version "7.27.0" + resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.27.0.tgz#53d156098defa8243eab0f32fa17589075a1b808" + integrity sha512-U5eyP/CTFPuNE3qk+WZMxFkp/4zUzdceQlfzf7DdGdhp+Fezd7HD+i8Y24ZuTMKX3wQBld449jijbGq6OdGNQg== + dependencies: + "@babel/template" "^7.27.0" + "@babel/types" "^7.27.0" + +"@babel/parser@^7.1.0", "@babel/parser@^7.20.7", "@babel/parser@^7.25.9", "@babel/parser@^7.26.0", "@babel/parser@^7.26.3": + version "7.26.3" + resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.26.3.tgz#8c51c5db6ddf08134af1ddbacf16aaab48bac234" + integrity sha512-WJ/CvmY8Mea8iDXo6a7RK2wbmJITT5fN3BEkRuFlxVyNx8jOKIIhmC4fSkTcPcf8JyavbBwIe6OpiCOBXt/IcA== + dependencies: + "@babel/types" "^7.26.3" + +"@babel/parser@^7.26.10", "@babel/parser@^7.27.0": + version "7.27.0" + resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.27.0.tgz#3d7d6ee268e41d2600091cbd4e145ffee85a44ec" + integrity sha512-iaepho73/2Pz7w2eMS0Q5f83+0RKI7i4xmiYeBmDzfRVbQtTOG7Ts0S4HzJVsTMGI9keU8rNfuZr8DKfSt7Yyg== + dependencies: + "@babel/types" "^7.27.0" + +"@babel/plugin-transform-react-jsx-self@^7.25.9": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.25.9.tgz#c0b6cae9c1b73967f7f9eb2fca9536ba2fad2858" + integrity sha512-y8quW6p0WHkEhmErnfe58r7x0A70uKphQm8Sp8cV7tjNQwK56sNVK0M73LK3WuYmsuyrftut4xAkjjgU0twaMg== + dependencies: + "@babel/helper-plugin-utils" "^7.25.9" + +"@babel/plugin-transform-react-jsx-source@^7.25.9": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.25.9.tgz#4c6b8daa520b5f155b5fb55547d7c9fa91417503" + integrity sha512-+iqjT8xmXhhYv4/uiYd8FNQsraMFZIfxVSqxxVSZP0WbbSAWvBXAul0m/zu+7Vv4O/3WtApy9pmaTMiumEZgfg== + dependencies: + "@babel/helper-plugin-utils" "^7.25.9" + +"@babel/runtime@^7.1.2", "@babel/runtime@^7.26.10", "@babel/runtime@^7.5.5", "@babel/runtime@^7.8.7": + version "7.27.0" + resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.27.0.tgz#fbee7cf97c709518ecc1f590984481d5460d4762" + integrity sha512-VtPOkrdPHZsKc/clNqyi9WUA8TINkZ4cGk63UUE3u4pmB2k+ZMQRDuIOagv8UVd6j7k0T3+RRIb7beKTebNbcw== + dependencies: + regenerator-runtime "^0.14.0" + +"@babel/template@^7.25.9": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.25.9.tgz#ecb62d81a8a6f5dc5fe8abfc3901fc52ddf15016" + integrity sha512-9DGttpmPvIxBb/2uwpVo3dqJ+O6RooAFOS+lB+xDqoE2PVCE8nfoHMdZLpfCQRLwvohzXISPZcgxt80xLfsuwg== + dependencies: + "@babel/code-frame" "^7.25.9" + "@babel/parser" "^7.25.9" + "@babel/types" "^7.25.9" + +"@babel/template@^7.26.9", "@babel/template@^7.27.0": + version "7.27.0" + resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.27.0.tgz#b253e5406cc1df1c57dcd18f11760c2dbf40c0b4" + integrity sha512-2ncevenBqXI6qRMukPlXwHKHchC7RyMuu4xv5JBXRfOGVcTy1mXCD12qrp7Jsoxll1EV3+9sE4GugBVRjT2jFA== + dependencies: + "@babel/code-frame" "^7.26.2" + "@babel/parser" "^7.27.0" + "@babel/types" "^7.27.0" + +"@babel/traverse@^7.25.9": + version "7.26.4" + resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.26.4.tgz#ac3a2a84b908dde6d463c3bfa2c5fdc1653574bd" + integrity sha512-fH+b7Y4p3yqvApJALCPJcwb0/XaOSgtK4pzV6WVjPR5GLFQBRI7pfoX2V2iM48NXvX07NUxxm1Vw98YjqTcU5w== + dependencies: + "@babel/code-frame" "^7.26.2" + "@babel/generator" "^7.26.3" + "@babel/parser" "^7.26.3" + "@babel/template" "^7.25.9" + "@babel/types" "^7.26.3" + debug "^4.3.1" + globals "^11.1.0" + +"@babel/traverse@^7.26.10": + version "7.27.0" + resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.27.0.tgz#11d7e644779e166c0442f9a07274d02cd91d4a70" + integrity sha512-19lYZFzYVQkkHkl4Cy4WrAVcqBkgvV2YM2TU3xG6DIwO7O3ecbDPfW3yM3bjAGcqcQHi+CCtjMR3dIEHxsd6bA== + dependencies: + "@babel/code-frame" "^7.26.2" + "@babel/generator" "^7.27.0" + "@babel/parser" "^7.27.0" + "@babel/template" "^7.27.0" + "@babel/types" "^7.27.0" + debug "^4.3.1" + globals "^11.1.0" + +"@babel/types@^7.0.0", "@babel/types@^7.20.7", "@babel/types@^7.25.9", "@babel/types@^7.26.0", "@babel/types@^7.26.3": + version "7.26.3" + resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.26.3.tgz#37e79830f04c2b5687acc77db97fbc75fb81f3c0" + integrity sha512-vN5p+1kl59GVKMvTHt55NzzmYVxprfJD+ql7U9NFIfKCBkYE55LYtS+WtPlaYOyzydrKI8Nezd+aZextrd+FMA== + dependencies: + "@babel/helper-string-parser" "^7.25.9" + "@babel/helper-validator-identifier" "^7.25.9" + +"@babel/types@^7.21.3", "@babel/types@^7.26.10", "@babel/types@^7.27.0": + version "7.27.0" + resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.27.0.tgz#ef9acb6b06c3173f6632d993ecb6d4ae470b4559" + integrity sha512-H45s8fVLYjbhFH62dIJ3WtmJ6RSPt/3DRO0ZcT2SUiYiQyz3BLVb9ADEnLl91m74aQPS3AzzeajZHYOalWe3bg== + dependencies: + "@babel/helper-string-parser" "^7.25.9" + "@babel/helper-validator-identifier" "^7.25.9" + +"@ctrl/tinycolor@^3.3.4": + version "3.6.1" + resolved "https://registry.yarnpkg.com/@ctrl/tinycolor/-/tinycolor-3.6.1.tgz#b6c75a56a1947cc916ea058772d666a2c8932f31" + integrity sha512-SITSV6aIXsuVNV3f3O0f2n/cgyEDWoSqtZMYiAmcsYHydcKrOz3gUxB/iXd/Qf08+IZX4KpgNbvUdMBmWz+kcA== + +"@emotion/hash@^0.9.0": + version "0.9.2" + resolved "https://registry.yarnpkg.com/@emotion/hash/-/hash-0.9.2.tgz#ff9221b9f58b4dfe61e619a7788734bd63f6898b" + integrity sha512-MyqliTZGuOm3+5ZRSaaBGP3USLw6+EGykkwZns2EPC5g8jJ4z9OrdZY9apkl3+UP9+sdz76YYkwCKP5gh8iY3g== + +"@esbuild/aix-ppc64@0.25.1": + version "0.25.1" + resolved "https://registry.yarnpkg.com/@esbuild/aix-ppc64/-/aix-ppc64-0.25.1.tgz#c33cf6bbee34975626b01b80451cbb72b4c6c91d" + integrity sha512-kfYGy8IdzTGy+z0vFGvExZtxkFlA4zAxgKEahG9KE1ScBjpQnFsNOX8KTU5ojNru5ed5CVoJYXFtoxaq5nFbjQ== + +"@esbuild/android-arm64@0.25.1": + version "0.25.1" + resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.25.1.tgz#ea766015c7d2655164f22100d33d7f0308a28d6d" + integrity sha512-50tM0zCJW5kGqgG7fQ7IHvQOcAn9TKiVRuQ/lN0xR+T2lzEFvAi1ZcS8DiksFcEpf1t/GYOeOfCAgDHFpkiSmA== + +"@esbuild/android-arm@0.25.1": + version "0.25.1" + resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.25.1.tgz#e84d2bf2fe2e6177a0facda3a575b2139fd3cb9c" + integrity sha512-dp+MshLYux6j/JjdqVLnMglQlFu+MuVeNrmT5nk6q07wNhCdSnB7QZj+7G8VMUGh1q+vj2Bq8kRsuyA00I/k+Q== + +"@esbuild/android-x64@0.25.1": + version "0.25.1" + resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.25.1.tgz#58337bee3bc6d78d10425e5500bd11370cfdfbed" + integrity sha512-GCj6WfUtNldqUzYkN/ITtlhwQqGWu9S45vUXs7EIYf+7rCiiqH9bCloatO9VhxsL0Pji+PF4Lz2XXCES+Q8hDw== + +"@esbuild/darwin-arm64@0.25.1": + version "0.25.1" + resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.25.1.tgz#a46805c1c585d451aa83be72500bd6e8495dd591" + integrity sha512-5hEZKPf+nQjYoSr/elb62U19/l1mZDdqidGfmFutVUjjUZrOazAtwK+Kr+3y0C/oeJfLlxo9fXb1w7L+P7E4FQ== + +"@esbuild/darwin-x64@0.25.1": + version "0.25.1" + resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.25.1.tgz#0643e003bb238c63fc93ddbee7d26a003be3cd98" + integrity sha512-hxVnwL2Dqs3fM1IWq8Iezh0cX7ZGdVhbTfnOy5uURtao5OIVCEyj9xIzemDi7sRvKsuSdtCAhMKarxqtlyVyfA== + +"@esbuild/freebsd-arm64@0.25.1": + version "0.25.1" + resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.25.1.tgz#cff18da5469c09986b93e87979de5d6872fe8f8e" + integrity sha512-1MrCZs0fZa2g8E+FUo2ipw6jw5qqQiH+tERoS5fAfKnRx6NXH31tXBKI3VpmLijLH6yriMZsxJtaXUyFt/8Y4A== + +"@esbuild/freebsd-x64@0.25.1": + version "0.25.1" + resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.25.1.tgz#362fc09c2de14987621c1878af19203c46365dde" + integrity sha512-0IZWLiTyz7nm0xuIs0q1Y3QWJC52R8aSXxe40VUxm6BB1RNmkODtW6LHvWRrGiICulcX7ZvyH6h5fqdLu4gkww== + +"@esbuild/linux-arm64@0.25.1": + version "0.25.1" + resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.25.1.tgz#aa90d5b02efc97a271e124e6d1cea490634f7498" + integrity sha512-jaN3dHi0/DDPelk0nLcXRm1q7DNJpjXy7yWaWvbfkPvI+7XNSc/lDOnCLN7gzsyzgu6qSAmgSvP9oXAhP973uQ== + +"@esbuild/linux-arm@0.25.1": + version "0.25.1" + resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.25.1.tgz#dfcefcbac60a20918b19569b4b657844d39db35a" + integrity sha512-NdKOhS4u7JhDKw9G3cY6sWqFcnLITn6SqivVArbzIaf3cemShqfLGHYMx8Xlm/lBit3/5d7kXvriTUGa5YViuQ== + +"@esbuild/linux-ia32@0.25.1": + version "0.25.1" + resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.25.1.tgz#6f9527077ccb7953ed2af02e013d4bac69f13754" + integrity sha512-OJykPaF4v8JidKNGz8c/q1lBO44sQNUQtq1KktJXdBLn1hPod5rE/Hko5ugKKZd+D2+o1a9MFGUEIUwO2YfgkQ== + +"@esbuild/linux-loong64@0.25.1": + version "0.25.1" + resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.25.1.tgz#287d2412a5456e5860c2839d42a4b51284d1697c" + integrity sha512-nGfornQj4dzcq5Vp835oM/o21UMlXzn79KobKlcs3Wz9smwiifknLy4xDCLUU0BWp7b/houtdrgUz7nOGnfIYg== + +"@esbuild/linux-mips64el@0.25.1": + version "0.25.1" + resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.25.1.tgz#530574b9e1bc5d20f7a4f44c5f045e26f3783d57" + integrity sha512-1osBbPEFYwIE5IVB/0g2X6i1qInZa1aIoj1TdL4AaAb55xIIgbg8Doq6a5BzYWgr+tEcDzYH67XVnTmUzL+nXg== + +"@esbuild/linux-ppc64@0.25.1": + version "0.25.1" + resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.25.1.tgz#5d7e6b283a0b321ea42c6bc0abeb9eb99c1f5589" + integrity sha512-/6VBJOwUf3TdTvJZ82qF3tbLuWsscd7/1w+D9LH0W/SqUgM5/JJD0lrJ1fVIfZsqB6RFmLCe0Xz3fmZc3WtyVg== + +"@esbuild/linux-riscv64@0.25.1": + version "0.25.1" + resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.25.1.tgz#14fa0cd073c26b4ee2465d18cd1e18eea7859fa8" + integrity sha512-nSut/Mx5gnilhcq2yIMLMe3Wl4FK5wx/o0QuuCLMtmJn+WeWYoEGDN1ipcN72g1WHsnIbxGXd4i/MF0gTcuAjQ== + +"@esbuild/linux-s390x@0.25.1": + version "0.25.1" + resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.25.1.tgz#e677b4b9d1b384098752266ccaa0d52a420dc1aa" + integrity sha512-cEECeLlJNfT8kZHqLarDBQso9a27o2Zd2AQ8USAEoGtejOrCYHNtKP8XQhMDJMtthdF4GBmjR2au3x1udADQQQ== + +"@esbuild/linux-x64@0.25.1": + version "0.25.1" + resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.25.1.tgz#f1c796b78fff5ce393658313e8c58613198d9954" + integrity sha512-xbfUhu/gnvSEg+EGovRc+kjBAkrvtk38RlerAzQxvMzlB4fXpCFCeUAYzJvrnhFtdeyVCDANSjJvOvGYoeKzFA== + +"@esbuild/netbsd-arm64@0.25.1": + version "0.25.1" + resolved "https://registry.yarnpkg.com/@esbuild/netbsd-arm64/-/netbsd-arm64-0.25.1.tgz#0d280b7dfe3973f111b02d5fe9f3063b92796d29" + integrity sha512-O96poM2XGhLtpTh+s4+nP7YCCAfb4tJNRVZHfIE7dgmax+yMP2WgMd2OecBuaATHKTHsLWHQeuaxMRnCsH8+5g== + +"@esbuild/netbsd-x64@0.25.1": + version "0.25.1" + resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.25.1.tgz#be663893931a4bb3f3a009c5cc24fa9681cc71c0" + integrity sha512-X53z6uXip6KFXBQ+Krbx25XHV/NCbzryM6ehOAeAil7X7oa4XIq+394PWGnwaSQ2WRA0KI6PUO6hTO5zeF5ijA== + +"@esbuild/openbsd-arm64@0.25.1": + version "0.25.1" + resolved "https://registry.yarnpkg.com/@esbuild/openbsd-arm64/-/openbsd-arm64-0.25.1.tgz#d9021b884233673a05dc1cc26de0bf325d824217" + integrity sha512-Na9T3szbXezdzM/Kfs3GcRQNjHzM6GzFBeU1/6IV/npKP5ORtp9zbQjvkDJ47s6BCgaAZnnnu/cY1x342+MvZg== + +"@esbuild/openbsd-x64@0.25.1": + version "0.25.1" + resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.25.1.tgz#9f1dc1786ed2e2938c404b06bcc48be9a13250de" + integrity sha512-T3H78X2h1tszfRSf+txbt5aOp/e7TAz3ptVKu9Oyir3IAOFPGV6O9c2naym5TOriy1l0nNf6a4X5UXRZSGX/dw== + +"@esbuild/sunos-x64@0.25.1": + version "0.25.1" + resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.25.1.tgz#89aac24a4b4115959b3f790192cf130396696c27" + integrity sha512-2H3RUvcmULO7dIE5EWJH8eubZAI4xw54H1ilJnRNZdeo8dTADEZ21w6J22XBkXqGJbe0+wnNJtw3UXRoLJnFEg== + +"@esbuild/win32-arm64@0.25.1": + version "0.25.1" + resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.25.1.tgz#354358647a6ea98ea6d243bf48bdd7a434999582" + integrity sha512-GE7XvrdOzrb+yVKB9KsRMq+7a2U/K5Cf/8grVFRAGJmfADr/e/ODQ134RK2/eeHqYV5eQRFxb1hY7Nr15fv1NQ== + +"@esbuild/win32-ia32@0.25.1": + version "0.25.1" + resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.25.1.tgz#8cea7340f2647eba951a041dc95651e3908cd4cb" + integrity sha512-uOxSJCIcavSiT6UnBhBzE8wy3n0hOkJsBOzy7HDAuTDE++1DJMRRVCPGisULScHL+a/ZwdXPpXD3IyFKjA7K8A== + +"@esbuild/win32-x64@0.25.1": + version "0.25.1" + resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.25.1.tgz#7d79922cb2d88f9048f06393dbf62d2e4accb584" + integrity sha512-Y1EQdcfwMSeQN/ujR5VayLOJ1BHaK+ssyk0AEzPjC+t1lITgsnccPqFjb6V+LsTp/9Iov4ysfjxLaGJ9RPtkVg== + +"@eslint-community/eslint-utils@^4.2.0", "@eslint-community/eslint-utils@^4.4.0": + version "4.4.1" + resolved "https://registry.yarnpkg.com/@eslint-community/eslint-utils/-/eslint-utils-4.4.1.tgz#d1145bf2c20132d6400495d6df4bf59362fd9d56" + integrity sha512-s3O3waFUrMV8P/XaF/+ZTp1X9XBZW1a4B97ZnjQF2KYWaFD2A8KyFBsrsfSjEmjn3RGWAIuvlneuZm3CUK3jbA== + dependencies: + eslint-visitor-keys "^3.4.3" + +"@eslint-community/regexpp@^4.10.0", "@eslint-community/regexpp@^4.12.1": + version "4.12.1" + resolved "https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.12.1.tgz#cfc6cffe39df390a3841cde2abccf92eaa7ae0e0" + integrity sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ== + +"@eslint/config-array@^0.19.2": + version "0.19.2" + resolved "https://registry.yarnpkg.com/@eslint/config-array/-/config-array-0.19.2.tgz#3060b809e111abfc97adb0bb1172778b90cb46aa" + integrity sha512-GNKqxfHG2ySmJOBSHg7LxeUx4xpuCoFjacmlCoYWEbaPXLwvfIjixRI12xCQZeULksQb23uiA8F40w5TojpV7w== + dependencies: + "@eslint/object-schema" "^2.1.6" + debug "^4.3.1" + minimatch "^3.1.2" + +"@eslint/config-helpers@^0.2.0": + version "0.2.0" + resolved "https://registry.yarnpkg.com/@eslint/config-helpers/-/config-helpers-0.2.0.tgz#12dc8d65c31c4b6c3ebf0758db6601eb7692ce59" + integrity sha512-yJLLmLexii32mGrhW29qvU3QBVTu0GUmEf/J4XsBtVhp4JkIUFN/BjWqTF63yRvGApIDpZm5fa97LtYtINmfeQ== + +"@eslint/core@^0.12.0": + version "0.12.0" + resolved "https://registry.yarnpkg.com/@eslint/core/-/core-0.12.0.tgz#5f960c3d57728be9f6c65bd84aa6aa613078798e" + integrity sha512-cmrR6pytBuSMTaBweKoGMwu3EiHiEC+DoyupPmlZ0HxBJBtIxwe+j/E4XPIKNx+Q74c8lXKPwYawBf5glsTkHg== + dependencies: + "@types/json-schema" "^7.0.15" + +"@eslint/eslintrc@^3.3.1": + version "3.3.1" + resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-3.3.1.tgz#e55f7f1dd400600dd066dbba349c4c0bac916964" + integrity sha512-gtF186CXhIl1p4pJNGZw8Yc6RlshoePRvE0X91oPGb3vZ8pM3qOS9W9NGPat9LziaBV7XrJWGylNQXkGcnM3IQ== + dependencies: + ajv "^6.12.4" + debug "^4.3.2" + espree "^10.0.1" + globals "^14.0.0" + ignore "^5.2.0" + import-fresh "^3.2.1" + js-yaml "^4.1.0" + minimatch "^3.1.2" + strip-json-comments "^3.1.1" + +"@eslint/js@9.23.0", "@eslint/js@^9.23.0": + version "9.23.0" + resolved "https://registry.yarnpkg.com/@eslint/js/-/js-9.23.0.tgz#c09ded4f3dc63b40b933bcaeb853fceddb64da30" + integrity sha512-35MJ8vCPU0ZMxo7zfev2pypqTwWTofFZO6m4KAtdoFhRpLJUpHTZZ+KB3C7Hb1d7bULYwO4lJXGCi5Se+8OMbw== + +"@eslint/object-schema@^2.1.6": + version "2.1.6" + resolved "https://registry.yarnpkg.com/@eslint/object-schema/-/object-schema-2.1.6.tgz#58369ab5b5b3ca117880c0f6c0b0f32f6950f24f" + integrity sha512-RBMg5FRL0I0gs51M/guSAj5/e14VQ4tpZnQNWwuDT66P14I43ItmPfIZRhO9fUVIPOAQXU47atlywZ/czoqFPA== + +"@eslint/plugin-kit@^0.2.7": + version "0.2.7" + resolved "https://registry.yarnpkg.com/@eslint/plugin-kit/-/plugin-kit-0.2.7.tgz#9901d52c136fb8f375906a73dcc382646c3b6a27" + integrity sha512-JubJ5B2pJ4k4yGxaNLdbjrnk9d/iDz6/q8wOilpIowd6PJPgaxCuHBnBszq7Ce2TyMrywm5r4PnKm6V3iiZF+g== + dependencies: + "@eslint/core" "^0.12.0" + levn "^0.4.1" + +"@floating-ui/core@^1.6.0": + version "1.6.8" + resolved "https://registry.yarnpkg.com/@floating-ui/core/-/core-1.6.8.tgz#aa43561be075815879305965020f492cdb43da12" + integrity sha512-7XJ9cPU+yI2QeLS+FCSlqNFZJq8arvswefkZrYI1yQBbftw6FyrZOxYSh+9S7z7TpeWlRt9zJ5IhM1WIL334jA== + dependencies: + "@floating-ui/utils" "^0.2.8" + +"@floating-ui/devtools@0.2.1": + version "0.2.1" + resolved "https://registry.yarnpkg.com/@floating-ui/devtools/-/devtools-0.2.1.tgz#3e8023e09ede273a7aa426e7911f3dac630024c5" + integrity sha512-8PHJLbD6VhBh+LJ1uty/Bz30qs02NXCE5u8WpOhSewlYXUWl03GNXknr9AS2yaAWJEQaY27x7eByJs44gODBcw== + +"@floating-ui/dom@^1.2.0": + version "1.6.12" + resolved "https://registry.yarnpkg.com/@floating-ui/dom/-/dom-1.6.12.tgz#6333dcb5a8ead3b2bf82f33d6bc410e95f54e556" + integrity sha512-NP83c0HjokcGVEMeoStg317VD9W7eDlGK7457dMBANbKA6GJZdc7rjujdgqzTaz93jkGgc5P/jeWbaCHnMNc+w== + dependencies: + "@floating-ui/core" "^1.6.0" + "@floating-ui/utils" "^0.2.8" + +"@floating-ui/dom@^1.6.12": + version "1.6.13" + resolved "https://registry.yarnpkg.com/@floating-ui/dom/-/dom-1.6.13.tgz#a8a938532aea27a95121ec16e667a7cbe8c59e34" + integrity sha512-umqzocjDgNRGTuO7Q8CU32dkHkECqI8ZdMZ5Swb6QAM0t5rnlrN3lGo1hdpscRd3WS8T6DKYK4ephgIH9iRh3w== + dependencies: + "@floating-ui/core" "^1.6.0" + "@floating-ui/utils" "^0.2.9" + +"@floating-ui/utils@^0.2.8": + version "0.2.8" + resolved "https://registry.yarnpkg.com/@floating-ui/utils/-/utils-0.2.8.tgz#21a907684723bbbaa5f0974cf7730bd797eb8e62" + integrity sha512-kym7SodPp8/wloecOpcmSnWJsK7M0E5Wg8UcFA+uO4B9s5d0ywXOEro/8HM9x0rW+TljRzul/14UYz3TleT3ig== + +"@floating-ui/utils@^0.2.9": + version "0.2.9" + resolved "https://registry.yarnpkg.com/@floating-ui/utils/-/utils-0.2.9.tgz#50dea3616bc8191fb8e112283b49eaff03e78429" + integrity sha512-MDWhGtE+eHw5JW7lq4qhc5yRLS11ERl1c7Z6Xd0a58DozHES6EnNNwUWbMiG4J9Cgj053Bhk8zvlhFYKVhULwg== + +"@fluentui/keyboard-keys@^9.0.8": + version "9.0.8" + resolved "https://registry.yarnpkg.com/@fluentui/keyboard-keys/-/keyboard-keys-9.0.8.tgz#812b923f20d428f3c5cdff9922a4478b59e907c5" + integrity sha512-iUSJUUHAyTosnXK8O2Ilbfxma+ZyZPMua5vB028Ys96z80v+LFwntoehlFsdH3rMuPsA8GaC1RE7LMezwPBPdw== + dependencies: + "@swc/helpers" "^0.5.1" + +"@fluentui/priority-overflow@^9.1.15": + version "9.1.15" + resolved "https://registry.yarnpkg.com/@fluentui/priority-overflow/-/priority-overflow-9.1.15.tgz#edce236aa21024ead00dbf6e7c5e4eaa89cd6a1d" + integrity sha512-/3jPBBq64hRdA416grVj+ZeMBUIaKZk2S5HiRg7CKCAV1JuyF84Do0rQI6ns8Vb9XOGuc4kurMcL/UEftoEVrg== + dependencies: + "@swc/helpers" "^0.5.1" + +"@fluentui/react-accordion@^9.6.3": + version "9.6.3" + resolved "https://registry.yarnpkg.com/@fluentui/react-accordion/-/react-accordion-9.6.3.tgz#4e84e76e164ed6af4cffb632627a12c4661c1e56" + integrity sha512-fuHYFonOj1LlALY2epmkowf+IgMj6pFA7EchyFeIAcVY/uIBR7dV62Eu6HiBar/xWY48QZ7FbCshDLMOoZn8/g== + dependencies: + "@fluentui/react-aria" "^9.14.2" + "@fluentui/react-context-selector" "^9.1.74" + "@fluentui/react-icons" "^2.0.245" + "@fluentui/react-jsx-runtime" "^9.0.52" + "@fluentui/react-motion" "^9.6.10" + "@fluentui/react-motion-components-preview" "^0.4.6" + "@fluentui/react-shared-contexts" "^9.23.0" + "@fluentui/react-tabster" "^9.24.2" + "@fluentui/react-theme" "^9.1.24" + "@fluentui/react-utilities" "^9.18.22" + "@griffel/react" "^1.5.22" + "@swc/helpers" "^0.5.1" + +"@fluentui/react-alert@9.0.0-beta.124": + version "9.0.0-beta.124" + resolved "https://registry.yarnpkg.com/@fluentui/react-alert/-/react-alert-9.0.0-beta.124.tgz#b408971fd5b1e76bdca20fcae280a527858ad2f5" + integrity sha512-yFBo3B5H9hnoaXxlkuz8wRz04DEyQ+ElYA/p5p+Vojf19Zuta8DmFZZ6JtWdtxcdnnQ4LvAfC5OYYlzdReozPA== + dependencies: + "@fluentui/react-avatar" "^9.6.29" + "@fluentui/react-button" "^9.3.83" + "@fluentui/react-icons" "^2.0.239" + "@fluentui/react-jsx-runtime" "^9.0.39" + "@fluentui/react-tabster" "^9.21.5" + "@fluentui/react-theme" "^9.1.19" + "@fluentui/react-utilities" "^9.18.10" + "@griffel/react" "^1.5.22" + "@swc/helpers" "^0.5.1" + +"@fluentui/react-aria@^9.13.11": + version "9.13.11" + resolved "https://registry.yarnpkg.com/@fluentui/react-aria/-/react-aria-9.13.11.tgz#7cd28a67586cd3e66dc0bb0e4c01eb5795c84ad6" + integrity sha512-SINn+m+QUMALyAO5usOfPPLKRPQVHLE+UKc+Do75F2DgwbDzcy3KQJFgfJIMoujb5TPmVPrzxRWlezQ36cDxDQ== + dependencies: + "@fluentui/keyboard-keys" "^9.0.8" + "@fluentui/react-jsx-runtime" "^9.0.47" + "@fluentui/react-shared-contexts" "^9.21.1" + "@fluentui/react-tabster" "^9.23.1" + "@fluentui/react-utilities" "^9.18.18" + "@swc/helpers" "^0.5.1" + +"@fluentui/react-aria@^9.14.2": + version "9.14.2" + resolved "https://registry.yarnpkg.com/@fluentui/react-aria/-/react-aria-9.14.2.tgz#ad2612f83c9922bfb62297459c57c6606e616bc6" + integrity sha512-dVnUdMI/nKgILfktY48LDHo7Ug1Clcb/cw6vW7GWogU6jz5QjvHJx8MDHmlOp7EtaiJ8rk+ObPb1p0G8IWquGw== + dependencies: + "@fluentui/keyboard-keys" "^9.0.8" + "@fluentui/react-jsx-runtime" "^9.0.52" + "@fluentui/react-shared-contexts" "^9.23.0" + "@fluentui/react-tabster" "^9.24.2" + "@fluentui/react-utilities" "^9.18.22" + "@swc/helpers" "^0.5.1" + +"@fluentui/react-avatar@^9.6.29": + version "9.6.45" + resolved "https://registry.yarnpkg.com/@fluentui/react-avatar/-/react-avatar-9.6.45.tgz#a45bc2ff923eebb3fc2a83649dd7ec444f4177f3" + integrity sha512-4ZyUsTix4I2vF1BsU+aonNz/Srpk2LJBpSgqx4Vzf5lwGYezNnOfVoDnjH13G2Mr1FyKFFDcOwZCXa3phX09Ig== + dependencies: + "@fluentui/react-badge" "^9.2.47" + "@fluentui/react-context-selector" "^9.1.70" + "@fluentui/react-icons" "^2.0.245" + "@fluentui/react-jsx-runtime" "^9.0.47" + "@fluentui/react-popover" "^9.9.27" + "@fluentui/react-shared-contexts" "^9.21.1" + "@fluentui/react-tabster" "^9.23.1" + "@fluentui/react-theme" "^9.1.23" + "@fluentui/react-tooltip" "^9.5.1" + "@fluentui/react-utilities" "^9.18.18" + "@griffel/react" "^1.5.22" + "@swc/helpers" "^0.5.1" + +"@fluentui/react-avatar@^9.7.2": + version "9.7.2" + resolved "https://registry.yarnpkg.com/@fluentui/react-avatar/-/react-avatar-9.7.2.tgz#af1f838d6dce545255939da0325dc736a75d532c" + integrity sha512-z+rPg10NSrQsJlLq2GFpplYaPbX7muhMrQD0NNvoi8MAIpmFcWiZeyaWNMazh9KU+BriKh4iCPjxzJL67ger4g== + dependencies: + "@fluentui/react-badge" "^9.2.52" + "@fluentui/react-context-selector" "^9.1.74" + "@fluentui/react-icons" "^2.0.245" + "@fluentui/react-jsx-runtime" "^9.0.52" + "@fluentui/react-popover" "^9.10.2" + "@fluentui/react-shared-contexts" "^9.23.0" + "@fluentui/react-tabster" "^9.24.2" + "@fluentui/react-theme" "^9.1.24" + "@fluentui/react-tooltip" "^9.6.2" + "@fluentui/react-utilities" "^9.18.22" + "@griffel/react" "^1.5.22" + "@swc/helpers" "^0.5.1" + +"@fluentui/react-badge@^9.2.47": + version "9.2.47" + resolved "https://registry.yarnpkg.com/@fluentui/react-badge/-/react-badge-9.2.47.tgz#69b1d6393593eb750254a2014089a5d829f19979" + integrity sha512-vhQNl4ozuOfGox514Kgb7wDmNRtosm17A5VJbvqpZ44ZBNa8PKxNlGq9MJSJZiesDkvLsLbLqMOoNS7gfLOnZA== + dependencies: + "@fluentui/react-icons" "^2.0.245" + "@fluentui/react-jsx-runtime" "^9.0.47" + "@fluentui/react-shared-contexts" "^9.21.1" + "@fluentui/react-theme" "^9.1.23" + "@fluentui/react-utilities" "^9.18.18" + "@griffel/react" "^1.5.22" + "@swc/helpers" "^0.5.1" + +"@fluentui/react-badge@^9.2.52": + version "9.2.52" + resolved "https://registry.yarnpkg.com/@fluentui/react-badge/-/react-badge-9.2.52.tgz#a4b8405a161eb7715c3c1b9aed50609a4ceab656" + integrity sha512-p1AeQysVA8Xm7u0Jj2D5JuNid98tunAf7uFmSzcdGDpnt4RWjWLd4pOqszCbedCJbQnFhz2M3BCKmBRIzRzpMA== + dependencies: + "@fluentui/react-icons" "^2.0.245" + "@fluentui/react-jsx-runtime" "^9.0.52" + "@fluentui/react-shared-contexts" "^9.23.0" + "@fluentui/react-theme" "^9.1.24" + "@fluentui/react-utilities" "^9.18.22" + "@griffel/react" "^1.5.22" + "@swc/helpers" "^0.5.1" + +"@fluentui/react-breadcrumb@^9.1.2": + version "9.1.2" + resolved "https://registry.yarnpkg.com/@fluentui/react-breadcrumb/-/react-breadcrumb-9.1.2.tgz#c92959324871efef9df118604e11a3901c431695" + integrity sha512-k6egTCR8VoKm07rOUZoOTby89RaZA3oikl67Q0DNZ4gsf/jv/88K2/SUvpEm+vnGV1qR6rzQjUHrdUbpHrdZsg== + dependencies: + "@fluentui/react-aria" "^9.14.2" + "@fluentui/react-button" "^9.4.2" + "@fluentui/react-icons" "^2.0.245" + "@fluentui/react-jsx-runtime" "^9.0.52" + "@fluentui/react-link" "^9.4.2" + "@fluentui/react-shared-contexts" "^9.23.0" + "@fluentui/react-tabster" "^9.24.2" + "@fluentui/react-theme" "^9.1.24" + "@fluentui/react-utilities" "^9.18.22" + "@griffel/react" "^1.5.22" + "@swc/helpers" "^0.5.1" + +"@fluentui/react-button@^9.3.83": + version "9.3.97" + resolved "https://registry.yarnpkg.com/@fluentui/react-button/-/react-button-9.3.97.tgz#b40cc51297e0c00c7ac63df28b09ea9b1876d4bb" + integrity sha512-t+1EqV6siALxf6hioiujQvuUISNsTVh1T9R4AEgEbR659g2LX0fu6QD3QZGgt0rlI04V0RnyVUNv1u2+RueuUQ== + dependencies: + "@fluentui/keyboard-keys" "^9.0.8" + "@fluentui/react-aria" "^9.13.11" + "@fluentui/react-icons" "^2.0.245" + "@fluentui/react-jsx-runtime" "^9.0.47" + "@fluentui/react-shared-contexts" "^9.21.1" + "@fluentui/react-tabster" "^9.23.1" + "@fluentui/react-theme" "^9.1.23" + "@fluentui/react-utilities" "^9.18.18" + "@griffel/react" "^1.5.22" + "@swc/helpers" "^0.5.1" + +"@fluentui/react-button@^9.4.2": + version "9.4.2" + resolved "https://registry.yarnpkg.com/@fluentui/react-button/-/react-button-9.4.2.tgz#8cd251ee9551ae16937096bb59a13c0defc0b413" + integrity sha512-qAsfpRqB5VLa+CGLb2ta3gv2cR0K51mkXE3NdJZGJv8yMvb9lmt5ntaXnFVISHZWM65R3bEoCHGGpvHC4AEQuA== + dependencies: + "@fluentui/keyboard-keys" "^9.0.8" + "@fluentui/react-aria" "^9.14.2" + "@fluentui/react-icons" "^2.0.245" + "@fluentui/react-jsx-runtime" "^9.0.52" + "@fluentui/react-shared-contexts" "^9.23.0" + "@fluentui/react-tabster" "^9.24.2" + "@fluentui/react-theme" "^9.1.24" + "@fluentui/react-utilities" "^9.18.22" + "@griffel/react" "^1.5.22" + "@swc/helpers" "^0.5.1" + +"@fluentui/react-card@^9.2.1": + version "9.2.1" + resolved "https://registry.yarnpkg.com/@fluentui/react-card/-/react-card-9.2.1.tgz#515247809860bf47d4172a13d49544c9c57c39f9" + integrity sha512-QK9aMOzfBr7pBvmEBpdQ0eS2WWwbcVQmuusLJQReFkv3qD0Ip4iCXuysiTIxFyNsj7R0eER4TeCrZteFvWkQ1A== + dependencies: + "@fluentui/keyboard-keys" "^9.0.8" + "@fluentui/react-jsx-runtime" "^9.0.52" + "@fluentui/react-shared-contexts" "^9.23.0" + "@fluentui/react-tabster" "^9.24.2" + "@fluentui/react-text" "^9.4.34" + "@fluentui/react-theme" "^9.1.24" + "@fluentui/react-utilities" "^9.18.22" + "@griffel/react" "^1.5.22" + "@swc/helpers" "^0.5.1" + +"@fluentui/react-carousel@^9.6.2": + version "9.6.2" + resolved "https://registry.yarnpkg.com/@fluentui/react-carousel/-/react-carousel-9.6.2.tgz#6ac4416ba881e4528bfd421ff2e11873b7026ec4" + integrity sha512-ifpNTB9yc+8YpZYUYD5C+z+k2dg0A2F1Y2o9NDAJ14YJcmaJeNgo5BR2eQlCAn6n9ZsEWMT7MMzcJxoDIeWWTg== + dependencies: + "@fluentui/react-aria" "^9.14.2" + "@fluentui/react-button" "^9.4.2" + "@fluentui/react-context-selector" "^9.1.74" + "@fluentui/react-icons" "^2.0.245" + "@fluentui/react-jsx-runtime" "^9.0.52" + "@fluentui/react-shared-contexts" "^9.23.0" + "@fluentui/react-tabster" "^9.24.2" + "@fluentui/react-theme" "^9.1.24" + "@fluentui/react-tooltip" "^9.6.2" + "@fluentui/react-utilities" "^9.18.22" + "@griffel/react" "^1.5.22" + "@swc/helpers" "^0.5.1" + embla-carousel "^8.5.1" + embla-carousel-autoplay "^8.5.1" + embla-carousel-fade "^8.5.1" + +"@fluentui/react-checkbox@^9.3.2": + version "9.3.2" + resolved "https://registry.yarnpkg.com/@fluentui/react-checkbox/-/react-checkbox-9.3.2.tgz#b03ef4b5789217b3de76b0aa0ba8da14d56779e9" + integrity sha512-mQNqN2TFH9CmoHkeAkfsQwyIzbEw726GP5jXakaTsrYDKfQyAniJlq8O3FKQCOqv2H6P4sjf0ykzRzcJNgVCdw== + dependencies: + "@fluentui/react-field" "^9.2.2" + "@fluentui/react-icons" "^2.0.245" + "@fluentui/react-jsx-runtime" "^9.0.52" + "@fluentui/react-label" "^9.1.85" + "@fluentui/react-shared-contexts" "^9.23.0" + "@fluentui/react-tabster" "^9.24.2" + "@fluentui/react-theme" "^9.1.24" + "@fluentui/react-utilities" "^9.18.22" + "@griffel/react" "^1.5.22" + "@swc/helpers" "^0.5.1" + +"@fluentui/react-color-picker@^9.0.0": + version "9.0.0" + resolved "https://registry.yarnpkg.com/@fluentui/react-color-picker/-/react-color-picker-9.0.0.tgz#1cd175256a0155eed4cb5e19a1dab9fa328fd3a6" + integrity sha512-xLGkdN5NPRZVR8QQjtx2iCKj0b9BBq6RJqKQwUKuqgfLIj9dQhaj3n3nuviLCFXcYAN2SOZ17BRBw8BmrldiEw== + dependencies: + "@ctrl/tinycolor" "^3.3.4" + "@fluentui/react-context-selector" "^9.1.74" + "@fluentui/react-jsx-runtime" "^9.0.52" + "@fluentui/react-shared-contexts" "^9.23.0" + "@fluentui/react-tabster" "^9.24.2" + "@fluentui/react-theme" "^9.1.24" + "@fluentui/react-utilities" "^9.18.22" + "@griffel/react" "^1.5.22" + "@swc/helpers" "^0.5.1" + +"@fluentui/react-combobox@^9.14.2": + version "9.14.2" + resolved "https://registry.yarnpkg.com/@fluentui/react-combobox/-/react-combobox-9.14.2.tgz#6f5108fad5a37cd238ce9c87e8a5c0b499be0ac6" + integrity sha512-UUR24lz33AgXKjEQ3tbkh4jfLGUcwesyypVFX8WPrk5YSVyzur+8BffKU0e7ghyIGIT/l4x5DZlJOQIKrns1iQ== + dependencies: + "@fluentui/keyboard-keys" "^9.0.8" + "@fluentui/react-aria" "^9.14.2" + "@fluentui/react-context-selector" "^9.1.74" + "@fluentui/react-field" "^9.2.2" + "@fluentui/react-icons" "^2.0.245" + "@fluentui/react-jsx-runtime" "^9.0.52" + "@fluentui/react-portal" "^9.5.2" + "@fluentui/react-positioning" "^9.16.5" + "@fluentui/react-shared-contexts" "^9.23.0" + "@fluentui/react-tabster" "^9.24.2" + "@fluentui/react-theme" "^9.1.24" + "@fluentui/react-utilities" "^9.18.22" + "@griffel/react" "^1.5.22" + "@swc/helpers" "^0.5.1" + +"@fluentui/react-components@^9.61.3": + version "9.61.3" + resolved "https://registry.yarnpkg.com/@fluentui/react-components/-/react-components-9.61.3.tgz#d4f06bff039b81c2c6de8dba37b08ffb585074ab" + integrity sha512-WqCPzHzmUbSvMeTYRhFQ8EJsBMjeJVMuX00Ik1ib2X7awPVN0zAMimad9aPQXsTRGYJ8M/Zk6G7oLa+T9czuEg== + dependencies: + "@fluentui/react-accordion" "^9.6.3" + "@fluentui/react-alert" "9.0.0-beta.124" + "@fluentui/react-aria" "^9.14.2" + "@fluentui/react-avatar" "^9.7.2" + "@fluentui/react-badge" "^9.2.52" + "@fluentui/react-breadcrumb" "^9.1.2" + "@fluentui/react-button" "^9.4.2" + "@fluentui/react-card" "^9.2.1" + "@fluentui/react-carousel" "^9.6.2" + "@fluentui/react-checkbox" "^9.3.2" + "@fluentui/react-color-picker" "^9.0.0" + "@fluentui/react-combobox" "^9.14.2" + "@fluentui/react-dialog" "^9.12.3" + "@fluentui/react-divider" "^9.2.84" + "@fluentui/react-drawer" "^9.7.3" + "@fluentui/react-field" "^9.2.2" + "@fluentui/react-image" "^9.1.82" + "@fluentui/react-infobutton" "9.0.0-beta.102" + "@fluentui/react-infolabel" "^9.1.2" + "@fluentui/react-input" "^9.5.2" + "@fluentui/react-label" "^9.1.85" + "@fluentui/react-link" "^9.4.2" + "@fluentui/react-list" "^9.1.2" + "@fluentui/react-menu" "^9.16.2" + "@fluentui/react-message-bar" "^9.4.3" + "@fluentui/react-motion" "^9.6.10" + "@fluentui/react-overflow" "^9.3.2" + "@fluentui/react-persona" "^9.3.2" + "@fluentui/react-popover" "^9.10.2" + "@fluentui/react-portal" "^9.5.2" + "@fluentui/react-positioning" "^9.16.5" + "@fluentui/react-progress" "^9.2.2" + "@fluentui/react-provider" "^9.20.2" + "@fluentui/react-radio" "^9.3.2" + "@fluentui/react-rating" "^9.1.2" + "@fluentui/react-search" "^9.1.2" + "@fluentui/react-select" "^9.2.2" + "@fluentui/react-shared-contexts" "^9.23.0" + "@fluentui/react-skeleton" "^9.2.2" + "@fluentui/react-slider" "^9.3.3" + "@fluentui/react-spinbutton" "^9.3.2" + "@fluentui/react-spinner" "^9.5.9" + "@fluentui/react-swatch-picker" "^9.2.2" + "@fluentui/react-switch" "^9.2.2" + "@fluentui/react-table" "^9.16.2" + "@fluentui/react-tabs" "^9.7.2" + "@fluentui/react-tabster" "^9.24.2" + "@fluentui/react-tag-picker" "^9.5.2" + "@fluentui/react-tags" "^9.5.0" + "@fluentui/react-teaching-popover" "^9.4.1" + "@fluentui/react-text" "^9.4.34" + "@fluentui/react-textarea" "^9.4.2" + "@fluentui/react-theme" "^9.1.24" + "@fluentui/react-toast" "^9.4.3" + "@fluentui/react-toolbar" "^9.4.1" + "@fluentui/react-tooltip" "^9.6.2" + "@fluentui/react-tree" "^9.10.4" + "@fluentui/react-utilities" "^9.18.22" + "@fluentui/react-virtualizer" "9.0.0-alpha.94" + "@griffel/react" "^1.5.22" + "@swc/helpers" "^0.5.1" + +"@fluentui/react-context-selector@^9.1.70": + version "9.1.70" + resolved "https://registry.yarnpkg.com/@fluentui/react-context-selector/-/react-context-selector-9.1.70.tgz#2bee1c7536ee23d2cac1cf4ad0ea0a63fba793e0" + integrity sha512-2qv6I/CQ5HILvIFH6MM/WQn0pytDV/jOUvW1KnIZzs97nyoi0Bfae+i9WtDQbg663/AcAtYj776aaajuGLzZmw== + dependencies: + "@fluentui/react-utilities" "^9.18.18" + "@swc/helpers" "^0.5.1" + +"@fluentui/react-context-selector@^9.1.74": + version "9.1.74" + resolved "https://registry.yarnpkg.com/@fluentui/react-context-selector/-/react-context-selector-9.1.74.tgz#837c1a3737d21eacd6d0f37d7702a753a8f679de" + integrity sha512-Ts3MzV4fIJtyTow5uZDfW3DqPGE7LM66+0/f3/eoL6SodrgVP/eKNayU7NxY5OP+qHOIr2ZZGwcZxLjBAtWHUQ== + dependencies: + "@fluentui/react-utilities" "^9.18.22" + "@swc/helpers" "^0.5.1" + +"@fluentui/react-dialog@^9.12.3": + version "9.12.3" + resolved "https://registry.yarnpkg.com/@fluentui/react-dialog/-/react-dialog-9.12.3.tgz#8957535a457da85e4651ae24a77a6b59a723aecd" + integrity sha512-QKtemZAqOXXPgo8vdSHLKanwiP1uVwu9VAQKvTMXTgmhWRJoIu6rXUYlLEkY7zRKIRbCeupk65Y9hiIX4ZPWXQ== + dependencies: + "@fluentui/keyboard-keys" "^9.0.8" + "@fluentui/react-aria" "^9.14.2" + "@fluentui/react-context-selector" "^9.1.74" + "@fluentui/react-icons" "^2.0.245" + "@fluentui/react-jsx-runtime" "^9.0.52" + "@fluentui/react-motion" "^9.6.10" + "@fluentui/react-motion-components-preview" "^0.4.6" + "@fluentui/react-portal" "^9.5.2" + "@fluentui/react-shared-contexts" "^9.23.0" + "@fluentui/react-tabster" "^9.24.2" + "@fluentui/react-theme" "^9.1.24" + "@fluentui/react-utilities" "^9.18.22" + "@griffel/react" "^1.5.22" + "@swc/helpers" "^0.5.1" + +"@fluentui/react-divider@^9.2.84": + version "9.2.84" + resolved "https://registry.yarnpkg.com/@fluentui/react-divider/-/react-divider-9.2.84.tgz#25f30dc3c3ca468f9366964ea28577e48e3a6d45" + integrity sha512-+XLoHbj5/W1PrXl91Enqu8oC+7tMLkeIjp5dCGuw/W3oWltD44LM6BQqZpSGjYW6dgbHUiSDjT8J73txqqwCKQ== + dependencies: + "@fluentui/react-jsx-runtime" "^9.0.52" + "@fluentui/react-shared-contexts" "^9.23.0" + "@fluentui/react-theme" "^9.1.24" + "@fluentui/react-utilities" "^9.18.22" + "@griffel/react" "^1.5.22" + "@swc/helpers" "^0.5.1" + +"@fluentui/react-drawer@^9.7.3": + version "9.7.3" + resolved "https://registry.yarnpkg.com/@fluentui/react-drawer/-/react-drawer-9.7.3.tgz#20465fb167a7f66eec1e6777a94172642e027d07" + integrity sha512-08T4WE6tHt5aN7YsmGJ1sT/tcyhYpzNaZ4+2SHqjzeP9DnwOSq87YD+TqrwKHrUMGJB0aHbqdh0jb8Aoz76kWQ== + dependencies: + "@fluentui/react-dialog" "^9.12.3" + "@fluentui/react-jsx-runtime" "^9.0.52" + "@fluentui/react-motion" "^9.6.10" + "@fluentui/react-portal" "^9.5.2" + "@fluentui/react-shared-contexts" "^9.23.0" + "@fluentui/react-tabster" "^9.24.2" + "@fluentui/react-theme" "^9.1.24" + "@fluentui/react-utilities" "^9.18.22" + "@griffel/react" "^1.5.22" + "@swc/helpers" "^0.5.1" + +"@fluentui/react-field@^9.2.2": + version "9.2.2" + resolved "https://registry.yarnpkg.com/@fluentui/react-field/-/react-field-9.2.2.tgz#81ea3879760e052ea0234035d14f9d1a92782826" + integrity sha512-xQmrEmmOtbnuH5n2XA+NHrPX6EVgNb9TWra8MI+Kv8YKePlBhPiHh9m+uxbQ03nRxrVFjwZEYHMcqkFAqeLwmw== + dependencies: + "@fluentui/react-context-selector" "^9.1.74" + "@fluentui/react-icons" "^2.0.245" + "@fluentui/react-jsx-runtime" "^9.0.52" + "@fluentui/react-label" "^9.1.85" + "@fluentui/react-theme" "^9.1.24" + "@fluentui/react-utilities" "^9.18.22" + "@griffel/react" "^1.5.22" + "@swc/helpers" "^0.5.1" + +"@fluentui/react-icons@^2.0.237", "@fluentui/react-icons@^2.0.239", "@fluentui/react-icons@^2.0.245": + version "2.0.269" + resolved "https://registry.yarnpkg.com/@fluentui/react-icons/-/react-icons-2.0.269.tgz#91af6b6a77f02a48e66ed98c0d118edfdbbbf4de" + integrity sha512-UBIqBg4fZYIT77TQpx4FnZGqpL4LoCc5vpqjBXWP2FUmMDgZp5yWHZwGq+sUWFRdqK8cU+bzYhHz4jqQpIRYlQ== + dependencies: + "@griffel/react" "^1.0.0" + tslib "^2.1.0" + +"@fluentui/react-icons@^2.0.292": + version "2.0.292" + resolved "https://registry.yarnpkg.com/@fluentui/react-icons/-/react-icons-2.0.292.tgz#25855ef934e0e6628f629412d7d6538e9aa35ff1" + integrity sha512-8955IBoD0rBq4re+rEGKTpquqTJc6rnhZJH2NgCR3dCBulgY4PsKLL1+0KKQXNGJeTqliOdFGenzLq9SY0BTHQ== + dependencies: + "@griffel/react" "^1.0.0" + tslib "^2.1.0" + +"@fluentui/react-image@^9.1.82": + version "9.1.82" + resolved "https://registry.yarnpkg.com/@fluentui/react-image/-/react-image-9.1.82.tgz#1fbd04d6f95cb3e9fc07430aa887980f77129181" + integrity sha512-93/lJwvz9HeER4vS+T+R7O0vIYuH/qvef+rvCV3qbev4ET9qrvTIWZN1CEGbXR7KuMarRkKKdOsxqljL9cSVnQ== + dependencies: + "@fluentui/react-jsx-runtime" "^9.0.52" + "@fluentui/react-shared-contexts" "^9.23.0" + "@fluentui/react-theme" "^9.1.24" + "@fluentui/react-utilities" "^9.18.22" + "@griffel/react" "^1.5.22" + "@swc/helpers" "^0.5.1" + +"@fluentui/react-infobutton@9.0.0-beta.102": + version "9.0.0-beta.102" + resolved "https://registry.yarnpkg.com/@fluentui/react-infobutton/-/react-infobutton-9.0.0-beta.102.tgz#c0473275141999455fae4388f47d4f77b98c0f89" + integrity sha512-3kA4F0Vga8Ds6JGlBajLCCDOo/LmPuS786Wg7ui4ZTDYVIMzy1yp2XuVcZniifBFvEp0HQCUoDPWUV0VI3FfzQ== + dependencies: + "@fluentui/react-icons" "^2.0.237" + "@fluentui/react-jsx-runtime" "^9.0.36" + "@fluentui/react-label" "^9.1.68" + "@fluentui/react-popover" "^9.9.6" + "@fluentui/react-tabster" "^9.21.0" + "@fluentui/react-theme" "^9.1.19" + "@fluentui/react-utilities" "^9.18.7" + "@griffel/react" "^1.5.14" + "@swc/helpers" "^0.5.1" + +"@fluentui/react-infolabel@^9.1.2": + version "9.1.2" + resolved "https://registry.yarnpkg.com/@fluentui/react-infolabel/-/react-infolabel-9.1.2.tgz#5cb0be959b22b88b1b27870125b726f8a07bbee3" + integrity sha512-RuIR7GDMNjAQvfOP+gJjR6+3Ob8dOeeegPRJbvVo6qqt9quUYj2Q3QduOwTycgTblSsYpJqRqbWFT94aSs3s9Q== + dependencies: + "@fluentui/react-icons" "^2.0.245" + "@fluentui/react-jsx-runtime" "^9.0.52" + "@fluentui/react-label" "^9.1.85" + "@fluentui/react-popover" "^9.10.2" + "@fluentui/react-tabster" "^9.24.2" + "@fluentui/react-theme" "^9.1.24" + "@fluentui/react-utilities" "^9.18.22" + "@griffel/react" "^1.5.22" + "@swc/helpers" "^0.5.1" + +"@fluentui/react-input@^9.5.2": + version "9.5.2" + resolved "https://registry.yarnpkg.com/@fluentui/react-input/-/react-input-9.5.2.tgz#719e0df63db1aaae14d64d74ed95765acd3b7730" + integrity sha512-hUXP1rqha4MMlPK+nAGqtvQP/c3atoo0cKgjtQcYGt6ZPv8LFBjbStcfgVy6haTIDSGi9d4yi9KdYTCnOuL7+A== + dependencies: + "@fluentui/react-field" "^9.2.2" + "@fluentui/react-jsx-runtime" "^9.0.52" + "@fluentui/react-shared-contexts" "^9.23.0" + "@fluentui/react-theme" "^9.1.24" + "@fluentui/react-utilities" "^9.18.22" + "@griffel/react" "^1.5.22" + "@swc/helpers" "^0.5.1" + +"@fluentui/react-jsx-runtime@^9.0.36", "@fluentui/react-jsx-runtime@^9.0.39", "@fluentui/react-jsx-runtime@^9.0.47": + version "9.0.47" + resolved "https://registry.yarnpkg.com/@fluentui/react-jsx-runtime/-/react-jsx-runtime-9.0.47.tgz#4ff76d5cc594d13faca19136d4571abff7794e4f" + integrity sha512-lLCAXV5+PoRLUE4X2eugM/IlKfgK4hqipF8G4dz3/e45urCzFWBRiewGKjS84lM2S1V1dCMskwEzvzz6My0BPQ== + dependencies: + "@fluentui/react-utilities" "^9.18.18" + "@swc/helpers" "^0.5.1" + react-is "^17.0.2" + +"@fluentui/react-jsx-runtime@^9.0.52": + version "9.0.52" + resolved "https://registry.yarnpkg.com/@fluentui/react-jsx-runtime/-/react-jsx-runtime-9.0.52.tgz#089583efec07afbe7e0eb36b6aa901baeb296417" + integrity sha512-SzZvYfYwelpNoaIAHgm2TIChlQLJX3n3KLjcZs+X3IW1xo5DgyB8ea6scFWzKHH4f+TfWWp3bMBKJCL8SfpZVQ== + dependencies: + "@fluentui/react-utilities" "^9.18.22" + "@swc/helpers" "^0.5.1" + react-is "^17.0.2" + +"@fluentui/react-label@^9.1.68": + version "9.1.80" + resolved "https://registry.yarnpkg.com/@fluentui/react-label/-/react-label-9.1.80.tgz#63e6a0f8fec13bcc917a0c5ccf64a3923a740178" + integrity sha512-JCplRrk5VN7TXs+6NUic9dq/bPXj8VnD48g+UZKOGIN70jgz8YVTCdAiil8CNE4UPRjGSJeFNAcdAGKjbF00vg== + dependencies: + "@fluentui/react-jsx-runtime" "^9.0.47" + "@fluentui/react-shared-contexts" "^9.21.1" + "@fluentui/react-theme" "^9.1.23" + "@fluentui/react-utilities" "^9.18.18" + "@griffel/react" "^1.5.22" + "@swc/helpers" "^0.5.1" + +"@fluentui/react-label@^9.1.85": + version "9.1.85" + resolved "https://registry.yarnpkg.com/@fluentui/react-label/-/react-label-9.1.85.tgz#197054954f095c588d5d1b657e46b883a861b804" + integrity sha512-G+X/CmQqTy7+uZvkPXh1NWi5wGAKrswdlFMYr/0lCi0x9tfbCVUAG9kYBI0YA7KIHnwvyDOtrUstthpW+pQ7Qg== + dependencies: + "@fluentui/react-jsx-runtime" "^9.0.52" + "@fluentui/react-shared-contexts" "^9.23.0" + "@fluentui/react-theme" "^9.1.24" + "@fluentui/react-utilities" "^9.18.22" + "@griffel/react" "^1.5.22" + "@swc/helpers" "^0.5.1" + +"@fluentui/react-link@^9.4.2": + version "9.4.2" + resolved "https://registry.yarnpkg.com/@fluentui/react-link/-/react-link-9.4.2.tgz#6a1ffe3fe6aaabfb18a19150a2d3d6a7eb2e1311" + integrity sha512-zAAol/8xtdjf5yaOUtChEeV3E3s5S5SbXbz3uT3Pq933Tu5qySexU0wtYURIFOXG2VFo51tzXUdWowKAiAWhMg== + dependencies: + "@fluentui/keyboard-keys" "^9.0.8" + "@fluentui/react-jsx-runtime" "^9.0.52" + "@fluentui/react-shared-contexts" "^9.23.0" + "@fluentui/react-tabster" "^9.24.2" + "@fluentui/react-theme" "^9.1.24" + "@fluentui/react-utilities" "^9.18.22" + "@griffel/react" "^1.5.22" + "@swc/helpers" "^0.5.1" + +"@fluentui/react-list@^9.1.2": + version "9.1.2" + resolved "https://registry.yarnpkg.com/@fluentui/react-list/-/react-list-9.1.2.tgz#9b53526287c1cf5bb68853c252f2243e55222154" + integrity sha512-pL5G79dW0EIpbWpW8sXHZ7tdBi8fAl/8MHWZyue2WnD3+FXeDckIpA/LBOXRO2mIoVmiSXGkXnILmbTVEP3M7w== + dependencies: + "@fluentui/keyboard-keys" "^9.0.8" + "@fluentui/react-checkbox" "^9.3.2" + "@fluentui/react-context-selector" "^9.1.74" + "@fluentui/react-jsx-runtime" "^9.0.52" + "@fluentui/react-shared-contexts" "^9.23.0" + "@fluentui/react-tabster" "^9.24.2" + "@fluentui/react-theme" "^9.1.24" + "@fluentui/react-utilities" "^9.18.22" + "@griffel/react" "^1.5.22" + "@swc/helpers" "^0.5.1" + +"@fluentui/react-menu@^9.16.2": + version "9.16.2" + resolved "https://registry.yarnpkg.com/@fluentui/react-menu/-/react-menu-9.16.2.tgz#95700714e98bd3aa635c706c3b0704d7c077f17f" + integrity sha512-T648rBQhP1bv4IH1ATiebshhRNvZUTdaD5NgMVEzxJu60TmAJH0zVyCx3VT47xcM9Oo76kzOmdApmDkJc5oT7A== + dependencies: + "@fluentui/keyboard-keys" "^9.0.8" + "@fluentui/react-aria" "^9.14.2" + "@fluentui/react-context-selector" "^9.1.74" + "@fluentui/react-icons" "^2.0.245" + "@fluentui/react-jsx-runtime" "^9.0.52" + "@fluentui/react-portal" "^9.5.2" + "@fluentui/react-positioning" "^9.16.5" + "@fluentui/react-shared-contexts" "^9.23.0" + "@fluentui/react-tabster" "^9.24.2" + "@fluentui/react-theme" "^9.1.24" + "@fluentui/react-utilities" "^9.18.22" + "@griffel/react" "^1.5.22" + "@swc/helpers" "^0.5.1" + +"@fluentui/react-message-bar@^9.4.3": + version "9.4.3" + resolved "https://registry.yarnpkg.com/@fluentui/react-message-bar/-/react-message-bar-9.4.3.tgz#d32c2b196c0a4845b2d790b04082fa3cb0c04dbb" + integrity sha512-ITGBGpndf8VHSIQ5KK0Ztwv1FNoJ0QVaYxQOxTyaQmwG4tyMXpJKUHsKR425kxJS9G0a23+e5ZyOt0WfVXM9sw== + dependencies: + "@fluentui/react-button" "^9.4.2" + "@fluentui/react-icons" "^2.0.245" + "@fluentui/react-jsx-runtime" "^9.0.52" + "@fluentui/react-link" "^9.4.2" + "@fluentui/react-shared-contexts" "^9.23.0" + "@fluentui/react-theme" "^9.1.24" + "@fluentui/react-utilities" "^9.18.22" + "@griffel/react" "^1.5.22" + "@swc/helpers" "^0.5.1" + react-transition-group "^4.4.1" + +"@fluentui/react-motion-components-preview@^0.4.6": + version "0.4.6" + resolved "https://registry.yarnpkg.com/@fluentui/react-motion-components-preview/-/react-motion-components-preview-0.4.6.tgz#f269fd1a62cedaf0ae4c95438822e1a65a15dfdf" + integrity sha512-BDxcl4Fd8yokVRwAu1kPGfbc3WyD6nYVBsrgNiUc0i5qbBGNy1uqIizWRrQ5AaFRiTU+RZ0WdilDSTX0IzwKyg== + dependencies: + "@fluentui/react-motion" "*" + "@swc/helpers" "^0.5.1" + +"@fluentui/react-motion@*": + version "9.6.4" + resolved "https://registry.yarnpkg.com/@fluentui/react-motion/-/react-motion-9.6.4.tgz#c0be5fff4ea7883368389acd400ba831b24da6b4" + integrity sha512-v7OHRL6DSdJupiAiMdACWPPidZmz8aJHRnbXIbolwCS+F0sm4/++LmyhqyQNdyBvnZldJ2lw1jNaxlSfGDNlMQ== + dependencies: + "@fluentui/react-shared-contexts" "^9.21.1" + "@fluentui/react-utilities" "^9.18.18" + "@swc/helpers" "^0.5.1" + react-is "^17.0.2" + +"@fluentui/react-motion@^9.6.10": + version "9.6.10" + resolved "https://registry.yarnpkg.com/@fluentui/react-motion/-/react-motion-9.6.10.tgz#35c9ed77b60c358d382fd95a887f952fd5cfece2" + integrity sha512-Z4Aq//5zw6Qh6KGYj0hss8HZAcxGsVFBhn/R/b9sk5PAbM4hjTfdY0x9u0F2HohwNegVIFZNcU+7gBmLi2dlkw== + dependencies: + "@fluentui/react-shared-contexts" "^9.23.0" + "@fluentui/react-utilities" "^9.18.22" + "@swc/helpers" "^0.5.1" + react-is "^17.0.2" + +"@fluentui/react-overflow@^9.3.2": + version "9.3.2" + resolved "https://registry.yarnpkg.com/@fluentui/react-overflow/-/react-overflow-9.3.2.tgz#b56ea1c263d936374b86f2b2445adf5fc847e1f1" + integrity sha512-WKtlteNh9ESTqfLXU9kvWZ6pQouuxn2UaYrm7hB6FSUNcTRC5e8M94TiyYoLKfiuRGYWArX09mploBe1NT+RuQ== + dependencies: + "@fluentui/priority-overflow" "^9.1.15" + "@fluentui/react-context-selector" "^9.1.74" + "@fluentui/react-theme" "^9.1.24" + "@fluentui/react-utilities" "^9.18.22" + "@griffel/react" "^1.5.22" + "@swc/helpers" "^0.5.1" + +"@fluentui/react-persona@^9.3.2": + version "9.3.2" + resolved "https://registry.yarnpkg.com/@fluentui/react-persona/-/react-persona-9.3.2.tgz#95271fd64c7375ef6736a8e28837accba5811ea9" + integrity sha512-61N2dcRDib7eveX/CnO+mz4J58Ey38VwCDMHjxAhv2DDOk82K8/azN0/5bDxQZL4PCuJxCx43gElz9r/3eCBBQ== + dependencies: + "@fluentui/react-avatar" "^9.7.2" + "@fluentui/react-badge" "^9.2.52" + "@fluentui/react-jsx-runtime" "^9.0.52" + "@fluentui/react-shared-contexts" "^9.23.0" + "@fluentui/react-theme" "^9.1.24" + "@fluentui/react-utilities" "^9.18.22" + "@griffel/react" "^1.5.22" + "@swc/helpers" "^0.5.1" + +"@fluentui/react-popover@^9.10.2": + version "9.10.2" + resolved "https://registry.yarnpkg.com/@fluentui/react-popover/-/react-popover-9.10.2.tgz#0e91b77756c3dd4a7e388424f08e6122403beaa6" + integrity sha512-fHALx8QNDo25V94fm+vYyFMLFYGd3cZblM/RDkULPrt1Ghusi+vbK/GVS0uQ0zOClwef0zQQ+wrzLd9LYc7JxQ== + dependencies: + "@fluentui/keyboard-keys" "^9.0.8" + "@fluentui/react-aria" "^9.14.2" + "@fluentui/react-context-selector" "^9.1.74" + "@fluentui/react-jsx-runtime" "^9.0.52" + "@fluentui/react-portal" "^9.5.2" + "@fluentui/react-positioning" "^9.16.5" + "@fluentui/react-shared-contexts" "^9.23.0" + "@fluentui/react-tabster" "^9.24.2" + "@fluentui/react-theme" "^9.1.24" + "@fluentui/react-utilities" "^9.18.22" + "@griffel/react" "^1.5.22" + "@swc/helpers" "^0.5.1" + +"@fluentui/react-popover@^9.9.27", "@fluentui/react-popover@^9.9.6": + version "9.9.27" + resolved "https://registry.yarnpkg.com/@fluentui/react-popover/-/react-popover-9.9.27.tgz#e83477f2617edd4d879b0947505d60ee364ea0f2" + integrity sha512-mU3i2F4U+ra0+6X96xTBDjmIcxYA4o8Nm3P0TtT8NwmhOvS/+XNrryZpVChqz6YWG8ArBWwhX0GrXHPys3wGnw== + dependencies: + "@fluentui/keyboard-keys" "^9.0.8" + "@fluentui/react-aria" "^9.13.11" + "@fluentui/react-context-selector" "^9.1.70" + "@fluentui/react-jsx-runtime" "^9.0.47" + "@fluentui/react-portal" "^9.4.39" + "@fluentui/react-positioning" "^9.15.14" + "@fluentui/react-shared-contexts" "^9.21.1" + "@fluentui/react-tabster" "^9.23.1" + "@fluentui/react-theme" "^9.1.23" + "@fluentui/react-utilities" "^9.18.18" + "@griffel/react" "^1.5.22" + "@swc/helpers" "^0.5.1" + +"@fluentui/react-portal@^9.4.39": + version "9.4.39" + resolved "https://registry.yarnpkg.com/@fluentui/react-portal/-/react-portal-9.4.39.tgz#439fcba2408d31f43e2ca50a289550def3759de3" + integrity sha512-ZkkmitTy/rGBG1bnL28SnInXfqzelTsn1GEtNDc81duzvCBRS8n57xc6N0DK+4rNgXIXcrkcMsbgGo9uuyFXRA== + dependencies: + "@fluentui/react-shared-contexts" "^9.21.1" + "@fluentui/react-tabster" "^9.23.1" + "@fluentui/react-utilities" "^9.18.18" + "@griffel/react" "^1.5.22" + "@swc/helpers" "^0.5.1" + use-disposable "^1.0.1" + +"@fluentui/react-portal@^9.5.2": + version "9.5.2" + resolved "https://registry.yarnpkg.com/@fluentui/react-portal/-/react-portal-9.5.2.tgz#6fdbea46919be5fb33989fb52416541e286b7739" + integrity sha512-iARkQdUOHYFix5ZwiwJzbk3Zt3i/LEPPbwTyDDmd+0VYCD3oJ43WabiZAQVFDemhXbWK2mi0MbmPB9rdPoPTAA== + dependencies: + "@fluentui/react-shared-contexts" "^9.23.0" + "@fluentui/react-tabster" "^9.24.2" + "@fluentui/react-utilities" "^9.18.22" + "@griffel/react" "^1.5.22" + "@swc/helpers" "^0.5.1" + use-disposable "^1.0.1" + +"@fluentui/react-positioning@^9.15.14": + version "9.15.14" + resolved "https://registry.yarnpkg.com/@fluentui/react-positioning/-/react-positioning-9.15.14.tgz#fef0a0c7d397a40e6dbb35ae12ba2a2a12043f24" + integrity sha512-dmTVg7A6PnzGAFzULgHN7FIAe2cgUrabtbvqBp3tTIqCj8OZWTigjvvCQIA28/rLXQC3IRyiMaSGZV8+RMftaQ== + dependencies: + "@floating-ui/devtools" "0.2.1" + "@floating-ui/dom" "^1.2.0" + "@fluentui/react-shared-contexts" "^9.21.1" + "@fluentui/react-theme" "^9.1.23" + "@fluentui/react-utilities" "^9.18.18" + "@griffel/react" "^1.5.22" + "@swc/helpers" "^0.5.1" + +"@fluentui/react-positioning@^9.16.5": + version "9.16.5" + resolved "https://registry.yarnpkg.com/@fluentui/react-positioning/-/react-positioning-9.16.5.tgz#e7c96817c3434b6af0babc4480fa0f19bfbf319d" + integrity sha512-0rQW2CfhqdhqE40oiM8BTGBznCHZJQksO/tLxf2ubDnThf8303gFBSwXNJsXWZWBBrFRnQMt6m8rjEFaYy1sPw== + dependencies: + "@floating-ui/devtools" "0.2.1" + "@floating-ui/dom" "^1.6.12" + "@fluentui/react-shared-contexts" "^9.23.0" + "@fluentui/react-theme" "^9.1.24" + "@fluentui/react-utilities" "^9.18.22" + "@griffel/react" "^1.5.22" + "@swc/helpers" "^0.5.1" + +"@fluentui/react-progress@^9.2.2": + version "9.2.2" + resolved "https://registry.yarnpkg.com/@fluentui/react-progress/-/react-progress-9.2.2.tgz#ebdda222942b3c9e2c7dca258fae772ac51b6508" + integrity sha512-BnbqB/vl1nrJ9JxsPpyFb8BJgXKEvnXwqv1iAy/pYCdFDxQFUXDjrZ0bbX53AUXxTC3pbnZo5iSVvMQLEAq3UQ== + dependencies: + "@fluentui/react-field" "^9.2.2" + "@fluentui/react-jsx-runtime" "^9.0.52" + "@fluentui/react-shared-contexts" "^9.23.0" + "@fluentui/react-theme" "^9.1.24" + "@fluentui/react-utilities" "^9.18.22" + "@griffel/react" "^1.5.22" + "@swc/helpers" "^0.5.1" + +"@fluentui/react-provider@^9.20.2": + version "9.20.2" + resolved "https://registry.yarnpkg.com/@fluentui/react-provider/-/react-provider-9.20.2.tgz#5a6afdb2b87dbed6214491eee5b2b0f1e5b5cbbc" + integrity sha512-JabGTPY0cNOhZrcpvfe8F8rp912n5hrhvbn41EQAcW810wEK+N5hMvU3Sjjc1GuOpSUd1OFO4LbCsnSyAHuZ/Q== + dependencies: + "@fluentui/react-icons" "^2.0.245" + "@fluentui/react-jsx-runtime" "^9.0.52" + "@fluentui/react-shared-contexts" "^9.23.0" + "@fluentui/react-tabster" "^9.24.2" + "@fluentui/react-theme" "^9.1.24" + "@fluentui/react-utilities" "^9.18.22" + "@griffel/core" "^1.16.0" + "@griffel/react" "^1.5.22" + "@swc/helpers" "^0.5.1" + +"@fluentui/react-radio@^9.3.2": + version "9.3.2" + resolved "https://registry.yarnpkg.com/@fluentui/react-radio/-/react-radio-9.3.2.tgz#c4587e279fe317f76432efe2ce4756e49c99adf8" + integrity sha512-sOcXGV6i00Ywd+xVTb4q6Waypj2QdCT4iUlGWRtayn7OTn6gxdDfCtM4o1mrx1qz4HYvSchmqqrktlMwZ1fAJg== + dependencies: + "@fluentui/react-field" "^9.2.2" + "@fluentui/react-jsx-runtime" "^9.0.52" + "@fluentui/react-label" "^9.1.85" + "@fluentui/react-shared-contexts" "^9.23.0" + "@fluentui/react-tabster" "^9.24.2" + "@fluentui/react-theme" "^9.1.24" + "@fluentui/react-utilities" "^9.18.22" + "@griffel/react" "^1.5.22" + "@swc/helpers" "^0.5.1" + +"@fluentui/react-rating@^9.1.2": + version "9.1.2" + resolved "https://registry.yarnpkg.com/@fluentui/react-rating/-/react-rating-9.1.2.tgz#ef34ba664a526384d9dd4b1c0361969534c0b4a8" + integrity sha512-ccDvvl0sPuiOZ7G16f+SaW498kHok/B2hZNsRHhxXzM0zVBH0rsvpA9Gj32x8OLFEfyHuImtmBF8MlveWUKGyg== + dependencies: + "@fluentui/react-icons" "^2.0.245" + "@fluentui/react-jsx-runtime" "^9.0.52" + "@fluentui/react-tabster" "^9.24.2" + "@fluentui/react-theme" "^9.1.24" + "@fluentui/react-utilities" "^9.18.22" + "@griffel/react" "^1.5.22" + "@swc/helpers" "^0.5.1" + +"@fluentui/react-search@^9.1.2": + version "9.1.2" + resolved "https://registry.yarnpkg.com/@fluentui/react-search/-/react-search-9.1.2.tgz#5b60858596cb3a5f26cd218f11b1df42aed60058" + integrity sha512-22LkBa97yhzqvNk2qfTLakvgSXq+PwPkHgCA/SZ2H0T3z/1YSSpdPyhZ4/HgW7cc7b3oV3g0IiXuOkniLUToIA== + dependencies: + "@fluentui/react-icons" "^2.0.245" + "@fluentui/react-input" "^9.5.2" + "@fluentui/react-jsx-runtime" "^9.0.52" + "@fluentui/react-shared-contexts" "^9.23.0" + "@fluentui/react-theme" "^9.1.24" + "@fluentui/react-utilities" "^9.18.22" + "@griffel/react" "^1.5.22" + "@swc/helpers" "^0.5.1" + +"@fluentui/react-select@^9.2.2": + version "9.2.2" + resolved "https://registry.yarnpkg.com/@fluentui/react-select/-/react-select-9.2.2.tgz#832cbeccada6d7f29e746463422f472feefe3702" + integrity sha512-tf2PcnkNFGfyYjz7iyJGgvziQldbKaJUr72+i2Pv2ENhBDnue5gezoIwIQNtyhUnaX1OfjyhShHSdo7qFLtM5w== + dependencies: + "@fluentui/react-field" "^9.2.2" + "@fluentui/react-icons" "^2.0.245" + "@fluentui/react-jsx-runtime" "^9.0.52" + "@fluentui/react-shared-contexts" "^9.23.0" + "@fluentui/react-theme" "^9.1.24" + "@fluentui/react-utilities" "^9.18.22" + "@griffel/react" "^1.5.22" + "@swc/helpers" "^0.5.1" + +"@fluentui/react-shared-contexts@^9.21.1": + version "9.21.1" + resolved "https://registry.yarnpkg.com/@fluentui/react-shared-contexts/-/react-shared-contexts-9.21.1.tgz#9f27ad9bb1c4666e632f7f3e3463119df9d41ec2" + integrity sha512-NWjow/MaPfyc+MLpSQ8yPVyuEfoJ7CQdjbVrEAaYV0Ne2aASWOn4qzSA6Fz5sOoJlB7RWqrWTWwWlu+AmziS0Q== + dependencies: + "@fluentui/react-theme" "^9.1.23" + "@swc/helpers" "^0.5.1" + +"@fluentui/react-shared-contexts@^9.23.0": + version "9.23.0" + resolved "https://registry.yarnpkg.com/@fluentui/react-shared-contexts/-/react-shared-contexts-9.23.0.tgz#3c82a5d34f652baeaa75050a90c0ee9b0c9371ca" + integrity sha512-coQLGRZj7cgSlR8ojCLzZURwQjsZOAlubBQanJvdMR20zCCrJCMUNt6vT2+jhIrQJT0nyqrjNJSeHtBnsPMucw== + dependencies: + "@fluentui/react-theme" "^9.1.24" + "@swc/helpers" "^0.5.1" + +"@fluentui/react-skeleton@^9.2.2": + version "9.2.2" + resolved "https://registry.yarnpkg.com/@fluentui/react-skeleton/-/react-skeleton-9.2.2.tgz#e9c696b2d5b8ee694914ca7bc04dd947a6726770" + integrity sha512-kM6IsWPiWel/fXgPXMwKQayPd4jDnK3A4wn1YMtIe8S0No5i97rG6M21mGeuMHWJxfvxQVIoFRg2hb8qk6TOZA== + dependencies: + "@fluentui/react-field" "^9.2.2" + "@fluentui/react-jsx-runtime" "^9.0.52" + "@fluentui/react-shared-contexts" "^9.23.0" + "@fluentui/react-theme" "^9.1.24" + "@fluentui/react-utilities" "^9.18.22" + "@griffel/react" "^1.5.22" + "@swc/helpers" "^0.5.1" + +"@fluentui/react-slider@^9.3.3": + version "9.3.3" + resolved "https://registry.yarnpkg.com/@fluentui/react-slider/-/react-slider-9.3.3.tgz#2e4432dd3bb37f70101172e67709e72c589cb172" + integrity sha512-oTaU0aPncSjCmo0i2P6+ka+qeLi/llPqRkJBe9cJILIZinXXHphsYiDAR6SNstCvwVs2Zo3DppZYU12GSOFLJQ== + dependencies: + "@fluentui/react-field" "^9.2.2" + "@fluentui/react-jsx-runtime" "^9.0.52" + "@fluentui/react-shared-contexts" "^9.23.0" + "@fluentui/react-tabster" "^9.24.2" + "@fluentui/react-theme" "^9.1.24" + "@fluentui/react-utilities" "^9.18.22" + "@griffel/react" "^1.5.22" + "@swc/helpers" "^0.5.1" + +"@fluentui/react-spinbutton@^9.3.2": + version "9.3.2" + resolved "https://registry.yarnpkg.com/@fluentui/react-spinbutton/-/react-spinbutton-9.3.2.tgz#1f1e9d2230c9d697c004d3860e0129a14a7f12c6" + integrity sha512-Kb9gpvKk0z8mk2r45Ln78EuqSAVv17n0L45yF1gh1Gz3CwjzKrR3FCmZtvbJlMnQhiiRvkb/qqLkGnGVudVv+w== + dependencies: + "@fluentui/keyboard-keys" "^9.0.8" + "@fluentui/react-field" "^9.2.2" + "@fluentui/react-icons" "^2.0.245" + "@fluentui/react-jsx-runtime" "^9.0.52" + "@fluentui/react-shared-contexts" "^9.23.0" + "@fluentui/react-theme" "^9.1.24" + "@fluentui/react-utilities" "^9.18.22" + "@griffel/react" "^1.5.22" + "@swc/helpers" "^0.5.1" + +"@fluentui/react-spinner@^9.5.9": + version "9.5.9" + resolved "https://registry.yarnpkg.com/@fluentui/react-spinner/-/react-spinner-9.5.9.tgz#7a2103e31fb75f6cff53b750444ea332bef0a9be" + integrity sha512-rNhkafVj8LsRHigboHA7N38BKLvrr1A8femNv0ai3DJUdJmH7j5MLrk4tMJwMdjMeqZHagmlNg48A57FYd4lFQ== + dependencies: + "@fluentui/react-jsx-runtime" "^9.0.52" + "@fluentui/react-label" "^9.1.85" + "@fluentui/react-shared-contexts" "^9.23.0" + "@fluentui/react-theme" "^9.1.24" + "@fluentui/react-utilities" "^9.18.22" + "@griffel/react" "^1.5.22" + "@swc/helpers" "^0.5.1" + +"@fluentui/react-swatch-picker@^9.2.2": + version "9.2.2" + resolved "https://registry.yarnpkg.com/@fluentui/react-swatch-picker/-/react-swatch-picker-9.2.2.tgz#f130c63e5cd0bc329cb2482518edaf21d25db1f3" + integrity sha512-UDFM1O3Qv5uHqpXhM7K9U1id74UQMOp4KGT3NCCdA95yTKkvpZn7G16yzxuhh63d8Hc8+5MW1CHyqqnriFVqoA== + dependencies: + "@fluentui/react-context-selector" "^9.1.74" + "@fluentui/react-field" "^9.2.2" + "@fluentui/react-icons" "^2.0.245" + "@fluentui/react-jsx-runtime" "^9.0.52" + "@fluentui/react-shared-contexts" "^9.23.0" + "@fluentui/react-tabster" "^9.24.2" + "@fluentui/react-theme" "^9.1.24" + "@fluentui/react-utilities" "^9.18.22" + "@griffel/react" "^1.5.22" + "@swc/helpers" "^0.5.1" + +"@fluentui/react-switch@^9.2.2": + version "9.2.2" + resolved "https://registry.yarnpkg.com/@fluentui/react-switch/-/react-switch-9.2.2.tgz#7536ec8cdbd7e9e329cd4d1d8b8a0f37b9efd91d" + integrity sha512-v8FOOsz+5SfW69C2Nd71bf96rICoOjC68K4wKasd1c37/qq9ew8IdMocBVFnmiaMAzUtIdt7cj++1GQCSMmoPA== + dependencies: + "@fluentui/react-field" "^9.2.2" + "@fluentui/react-icons" "^2.0.245" + "@fluentui/react-jsx-runtime" "^9.0.52" + "@fluentui/react-label" "^9.1.85" + "@fluentui/react-shared-contexts" "^9.23.0" + "@fluentui/react-tabster" "^9.24.2" + "@fluentui/react-theme" "^9.1.24" + "@fluentui/react-utilities" "^9.18.22" + "@griffel/react" "^1.5.22" + "@swc/helpers" "^0.5.1" + +"@fluentui/react-table@^9.16.2": + version "9.16.2" + resolved "https://registry.yarnpkg.com/@fluentui/react-table/-/react-table-9.16.2.tgz#ed43ce2d79fbbfe8a08750f55602b5fd710b08c5" + integrity sha512-Ku4AKtUvdxWYu8Quccc+nhFc+u/mAlB+zAKJ7n3bKvpHvSgJlT95wO2Y07bdsjDktcsB0W0EtNL8rccPJdttRA== + dependencies: + "@fluentui/keyboard-keys" "^9.0.8" + "@fluentui/react-aria" "^9.14.2" + "@fluentui/react-avatar" "^9.7.2" + "@fluentui/react-checkbox" "^9.3.2" + "@fluentui/react-context-selector" "^9.1.74" + "@fluentui/react-icons" "^2.0.245" + "@fluentui/react-jsx-runtime" "^9.0.52" + "@fluentui/react-radio" "^9.3.2" + "@fluentui/react-shared-contexts" "^9.23.0" + "@fluentui/react-tabster" "^9.24.2" + "@fluentui/react-theme" "^9.1.24" + "@fluentui/react-utilities" "^9.18.22" + "@griffel/react" "^1.5.22" + "@swc/helpers" "^0.5.1" + +"@fluentui/react-tabs@^9.7.2": + version "9.7.2" + resolved "https://registry.yarnpkg.com/@fluentui/react-tabs/-/react-tabs-9.7.2.tgz#b2fc8e7116befea352d4ef30db6c2a88badaf567" + integrity sha512-6IIV9Z7xbCu/LUKcLK1VBKl3sx9lLDUb+daG5J1Zw7IJ3hzk5JF0GtEvnaD9k9MShKH7Yv17j0gxSSW+fo14Fg== + dependencies: + "@fluentui/react-context-selector" "^9.1.74" + "@fluentui/react-jsx-runtime" "^9.0.52" + "@fluentui/react-shared-contexts" "^9.23.0" + "@fluentui/react-tabster" "^9.24.2" + "@fluentui/react-theme" "^9.1.24" + "@fluentui/react-utilities" "^9.18.22" + "@griffel/react" "^1.5.22" + "@swc/helpers" "^0.5.1" + +"@fluentui/react-tabster@^9.21.0", "@fluentui/react-tabster@^9.21.5", "@fluentui/react-tabster@^9.23.1": + version "9.23.1" + resolved "https://registry.yarnpkg.com/@fluentui/react-tabster/-/react-tabster-9.23.1.tgz#8969d318538de40cd65916117d3252595e0b9568" + integrity sha512-IMOxOaB8taiTP3EfGBfVaX9gQWnf4GL3yVR1nUp+XWIisOt4pEMTQK1a9wAxZvl4PGxJAXuYHLjDDrTcFaNvKQ== + dependencies: + "@fluentui/react-shared-contexts" "^9.21.1" + "@fluentui/react-theme" "^9.1.23" + "@fluentui/react-utilities" "^9.18.18" + "@griffel/react" "^1.5.22" + "@swc/helpers" "^0.5.1" + keyborg "^2.6.0" + tabster "^8.2.0" + +"@fluentui/react-tabster@^9.24.2": + version "9.24.2" + resolved "https://registry.yarnpkg.com/@fluentui/react-tabster/-/react-tabster-9.24.2.tgz#a0babed05d19fade5f576a5466707c7ee7a81c9b" + integrity sha512-aSTwb4SshZluwNa2VYCVczYvb/pabSoCdaUGE+fyTcxi3y42VWAO5BipNkSBTIXp4Cgg/tKPDVl9nMiSMbTyxw== + dependencies: + "@fluentui/react-shared-contexts" "^9.23.0" + "@fluentui/react-theme" "^9.1.24" + "@fluentui/react-utilities" "^9.18.22" + "@griffel/react" "^1.5.22" + "@swc/helpers" "^0.5.1" + keyborg "^2.6.0" + tabster "^8.5.0" + +"@fluentui/react-tag-picker@^9.5.2": + version "9.5.2" + resolved "https://registry.yarnpkg.com/@fluentui/react-tag-picker/-/react-tag-picker-9.5.2.tgz#7f97d34e28e01bb823a133a9ee6266aabfeb7985" + integrity sha512-i+M6XmbjOWyvmUnNFtM58zNvMdSjUEvcIZKp6lOl2BOIW4ERApkOqYIChErHxzNxlOJyf0bz8/5yRMzlbACMHg== + dependencies: + "@fluentui/keyboard-keys" "^9.0.8" + "@fluentui/react-aria" "^9.14.2" + "@fluentui/react-combobox" "^9.14.2" + "@fluentui/react-context-selector" "^9.1.74" + "@fluentui/react-field" "^9.2.2" + "@fluentui/react-icons" "^2.0.245" + "@fluentui/react-jsx-runtime" "^9.0.52" + "@fluentui/react-portal" "^9.5.2" + "@fluentui/react-positioning" "^9.16.5" + "@fluentui/react-shared-contexts" "^9.23.0" + "@fluentui/react-tabster" "^9.24.2" + "@fluentui/react-tags" "^9.5.0" + "@fluentui/react-theme" "^9.1.24" + "@fluentui/react-utilities" "^9.18.22" + "@griffel/react" "^1.5.22" + "@swc/helpers" "^0.5.1" + +"@fluentui/react-tags@^9.5.0": + version "9.5.0" + resolved "https://registry.yarnpkg.com/@fluentui/react-tags/-/react-tags-9.5.0.tgz#2c3551c351c12fa08d444c5681c72236ada43382" + integrity sha512-ZTBcL51ZY+g3QLDB8FulM4OyJeQ4fbUIpMBIur0DqZT18/ik8NpPmX79+eXxyJD5wBQpE36lgQxr1QIvqDtztg== + dependencies: + "@fluentui/keyboard-keys" "^9.0.8" + "@fluentui/react-aria" "^9.14.2" + "@fluentui/react-avatar" "^9.7.2" + "@fluentui/react-icons" "^2.0.245" + "@fluentui/react-jsx-runtime" "^9.0.52" + "@fluentui/react-shared-contexts" "^9.23.0" + "@fluentui/react-tabster" "^9.24.2" + "@fluentui/react-theme" "^9.1.24" + "@fluentui/react-utilities" "^9.18.22" + "@griffel/react" "^1.5.22" + "@swc/helpers" "^0.5.1" + +"@fluentui/react-teaching-popover@^9.4.1": + version "9.4.1" + resolved "https://registry.yarnpkg.com/@fluentui/react-teaching-popover/-/react-teaching-popover-9.4.1.tgz#74bc3456b192477c05923ba2898879e617e1a936" + integrity sha512-bSi0ne+P/NB9nhQb45xS61jiCBC9svCEp2969oN2DCTItjvTArrnhgdA3CFDlInoP9X3AMZhbHvgTTvcwl6u/Q== + dependencies: + "@fluentui/react-aria" "^9.14.2" + "@fluentui/react-button" "^9.4.2" + "@fluentui/react-context-selector" "^9.1.74" + "@fluentui/react-icons" "^2.0.245" + "@fluentui/react-jsx-runtime" "^9.0.52" + "@fluentui/react-popover" "^9.10.2" + "@fluentui/react-shared-contexts" "^9.23.0" + "@fluentui/react-tabster" "^9.24.2" + "@fluentui/react-theme" "^9.1.24" + "@fluentui/react-utilities" "^9.18.22" + "@griffel/react" "^1.5.22" + "@swc/helpers" "^0.5.1" + use-sync-external-store "^1.2.0" + +"@fluentui/react-text@^9.4.34": + version "9.4.34" + resolved "https://registry.yarnpkg.com/@fluentui/react-text/-/react-text-9.4.34.tgz#a84794c7d369e461be2103498f566e4d43417ab1" + integrity sha512-GOcinBCrW2G+3moIrtmRDH0v8dGitnybWtHHPVqet1El83C6saOg5PtlsTrK97ZW8rx/FzjyYqyVOvkaTN/mVA== + dependencies: + "@fluentui/react-jsx-runtime" "^9.0.52" + "@fluentui/react-shared-contexts" "^9.23.0" + "@fluentui/react-theme" "^9.1.24" + "@fluentui/react-utilities" "^9.18.22" + "@griffel/react" "^1.5.22" + "@swc/helpers" "^0.5.1" + +"@fluentui/react-textarea@^9.4.2": + version "9.4.2" + resolved "https://registry.yarnpkg.com/@fluentui/react-textarea/-/react-textarea-9.4.2.tgz#4547ca64638f893bea2d0e645f57ffb2bb2ec034" + integrity sha512-d8V0MntkS0vpcJxoglCKRPzhbWCe91sIBV5t2G+sGHc1jQwUNRLsq3P1wkudyVza0m/dE08J0xghHw+qUpUa2w== + dependencies: + "@fluentui/react-field" "^9.2.2" + "@fluentui/react-jsx-runtime" "^9.0.52" + "@fluentui/react-shared-contexts" "^9.23.0" + "@fluentui/react-theme" "^9.1.24" + "@fluentui/react-utilities" "^9.18.22" + "@griffel/react" "^1.5.22" + "@swc/helpers" "^0.5.1" + +"@fluentui/react-theme@^9.1.19", "@fluentui/react-theme@^9.1.23": + version "9.1.23" + resolved "https://registry.yarnpkg.com/@fluentui/react-theme/-/react-theme-9.1.23.tgz#4140e40cd03d5e1c325f324cbdb1e2b4da6c3e00" + integrity sha512-AFBF8dKNPWBVOWdX7SRD8LNzUJmn3aN3hd+d25sIiHvDNqKTnioLW1ap2QQmYeMGc2kD9fydFN1mNBLTCX0zEA== + dependencies: + "@fluentui/tokens" "1.0.0-alpha.20" + "@swc/helpers" "^0.5.1" + +"@fluentui/react-theme@^9.1.24": + version "9.1.24" + resolved "https://registry.yarnpkg.com/@fluentui/react-theme/-/react-theme-9.1.24.tgz#8ad614df32a60278719a073ea7e308f5016aae34" + integrity sha512-OhVKYD7CMYHxzJEn4PtIszledj8hbQJNWBMfIZsp4Sytdp9vCi0txIQUx4BhS1WqtQPhNGCF16eW9Q3NRrnIrQ== + dependencies: + "@fluentui/tokens" "1.0.0-alpha.21" + "@swc/helpers" "^0.5.1" + +"@fluentui/react-toast@^9.4.3": + version "9.4.3" + resolved "https://registry.yarnpkg.com/@fluentui/react-toast/-/react-toast-9.4.3.tgz#e1f48989adddc4c4ea9b627fde02748f7ee9cc2e" + integrity sha512-phNvQwxGYJ6L989u8EPci2pqv0r2AvY3x+oAd3YRLeThLzwbLVrb+OTXDtOI6//9H43TTKUJpK903n/9RhYK+g== + dependencies: + "@fluentui/keyboard-keys" "^9.0.8" + "@fluentui/react-aria" "^9.14.2" + "@fluentui/react-icons" "^2.0.245" + "@fluentui/react-jsx-runtime" "^9.0.52" + "@fluentui/react-motion" "^9.6.10" + "@fluentui/react-motion-components-preview" "^0.4.6" + "@fluentui/react-portal" "^9.5.2" + "@fluentui/react-shared-contexts" "^9.23.0" + "@fluentui/react-tabster" "^9.24.2" + "@fluentui/react-theme" "^9.1.24" + "@fluentui/react-utilities" "^9.18.22" + "@griffel/react" "^1.5.22" + "@swc/helpers" "^0.5.1" + +"@fluentui/react-toolbar@^9.4.1": + version "9.4.1" + resolved "https://registry.yarnpkg.com/@fluentui/react-toolbar/-/react-toolbar-9.4.1.tgz#398a574aa190cb600d7854d5fda9d99ecaac855d" + integrity sha512-geP3gQRoRvlYPGFk/1BO96wdx9zF/U7zRa487JHe1wzOPg34OOcq/SS1RrdBkhKYML6PK0c3SdGNgt9NDejhnw== + dependencies: + "@fluentui/react-button" "^9.4.2" + "@fluentui/react-context-selector" "^9.1.74" + "@fluentui/react-divider" "^9.2.84" + "@fluentui/react-jsx-runtime" "^9.0.52" + "@fluentui/react-radio" "^9.3.2" + "@fluentui/react-shared-contexts" "^9.23.0" + "@fluentui/react-tabster" "^9.24.2" + "@fluentui/react-theme" "^9.1.24" + "@fluentui/react-utilities" "^9.18.22" + "@griffel/react" "^1.5.22" + "@swc/helpers" "^0.5.1" + +"@fluentui/react-tooltip@^9.5.1": + version "9.5.1" + resolved "https://registry.yarnpkg.com/@fluentui/react-tooltip/-/react-tooltip-9.5.1.tgz#a9d689134d7654f71c06488d3de0e626cdbe8c7e" + integrity sha512-UXP3m636YWUbznBm7IzUpdgK03lQJXnTSWEVpQcdC8FC3ucEzdhbAlElCs4STHg2v9dXyal/GibyHgIfp30rUg== + dependencies: + "@fluentui/keyboard-keys" "^9.0.8" + "@fluentui/react-jsx-runtime" "^9.0.47" + "@fluentui/react-portal" "^9.4.39" + "@fluentui/react-positioning" "^9.15.14" + "@fluentui/react-shared-contexts" "^9.21.1" + "@fluentui/react-tabster" "^9.23.1" + "@fluentui/react-theme" "^9.1.23" + "@fluentui/react-utilities" "^9.18.18" + "@griffel/react" "^1.5.22" + "@swc/helpers" "^0.5.1" + +"@fluentui/react-tooltip@^9.6.2": + version "9.6.2" + resolved "https://registry.yarnpkg.com/@fluentui/react-tooltip/-/react-tooltip-9.6.2.tgz#cec167029b0273fb28fedd04a37712165931c182" + integrity sha512-9bJCgL0I5P/UBtOK2gNN2ArpPG0KIJlALzqO4msoLmmPiqbbYjLGCEOsrwYDsyFLCkfWNQXSQsG1+TrKXhvauw== + dependencies: + "@fluentui/keyboard-keys" "^9.0.8" + "@fluentui/react-jsx-runtime" "^9.0.52" + "@fluentui/react-portal" "^9.5.2" + "@fluentui/react-positioning" "^9.16.5" + "@fluentui/react-shared-contexts" "^9.23.0" + "@fluentui/react-tabster" "^9.24.2" + "@fluentui/react-theme" "^9.1.24" + "@fluentui/react-utilities" "^9.18.22" + "@griffel/react" "^1.5.22" + "@swc/helpers" "^0.5.1" + +"@fluentui/react-tree@^9.10.4": + version "9.10.4" + resolved "https://registry.yarnpkg.com/@fluentui/react-tree/-/react-tree-9.10.4.tgz#56062e4ec0f51ccc3b6c718d5362743574264f45" + integrity sha512-G0LdvfB3lTQ3L39VwU1kMVPJv1t+msWRuZ7gwBdTHAt1WAkUrqozKyFnGcRcOmJtZvkVxb12yEzuu31WHHHkTQ== + dependencies: + "@fluentui/keyboard-keys" "^9.0.8" + "@fluentui/react-aria" "^9.14.2" + "@fluentui/react-avatar" "^9.7.2" + "@fluentui/react-button" "^9.4.2" + "@fluentui/react-checkbox" "^9.3.2" + "@fluentui/react-context-selector" "^9.1.74" + "@fluentui/react-icons" "^2.0.245" + "@fluentui/react-jsx-runtime" "^9.0.52" + "@fluentui/react-motion" "^9.6.10" + "@fluentui/react-motion-components-preview" "^0.4.6" + "@fluentui/react-radio" "^9.3.2" + "@fluentui/react-shared-contexts" "^9.23.0" + "@fluentui/react-tabster" "^9.24.2" + "@fluentui/react-theme" "^9.1.24" + "@fluentui/react-utilities" "^9.18.22" + "@griffel/react" "^1.5.22" + "@swc/helpers" "^0.5.1" + +"@fluentui/react-utilities@^9.18.10", "@fluentui/react-utilities@^9.18.18", "@fluentui/react-utilities@^9.18.7": + version "9.18.18" + resolved "https://registry.yarnpkg.com/@fluentui/react-utilities/-/react-utilities-9.18.18.tgz#5d61f27991411f3be16fe16b80a08b8d692fb541" + integrity sha512-lhzm4tnG6Ti33k/RxCNP+AqE0RVCnlOlT3W0t0dnOMpYX2wx5fqEwxjgy/ItXnic1mcNmc0DEG3roy2B3fk77A== + dependencies: + "@fluentui/keyboard-keys" "^9.0.8" + "@fluentui/react-shared-contexts" "^9.21.1" + "@swc/helpers" "^0.5.1" + +"@fluentui/react-utilities@^9.18.22": + version "9.18.22" + resolved "https://registry.yarnpkg.com/@fluentui/react-utilities/-/react-utilities-9.18.22.tgz#af820161484a58a93e61fe351c9bf5a7e844e29d" + integrity sha512-MruiqeyUfk1Tlx+5DALXmwS1UBqHjBNYcZL14mpW12Bmig0SNt7aO4bsJL5Gv/uABrRiESBkF0Yl353huCD+EQ== + dependencies: + "@fluentui/keyboard-keys" "^9.0.8" + "@fluentui/react-shared-contexts" "^9.23.0" + "@swc/helpers" "^0.5.1" + +"@fluentui/react-virtualizer@9.0.0-alpha.94": + version "9.0.0-alpha.94" + resolved "https://registry.yarnpkg.com/@fluentui/react-virtualizer/-/react-virtualizer-9.0.0-alpha.94.tgz#5af8c293f921b0ee9e4885af152d116d0aad941b" + integrity sha512-h3kCGQAOW9FmdYe06fLvZaz3FsrGyZzMkPkIUOu5iEPV18nlIvRKcFzdUAmKMG/sxjRCQLOgZIzUJt9xMzfCqg== + dependencies: + "@fluentui/react-jsx-runtime" "^9.0.52" + "@fluentui/react-shared-contexts" "^9.23.0" + "@fluentui/react-utilities" "^9.18.22" + "@griffel/react" "^1.5.22" + "@swc/helpers" "^0.5.1" + +"@fluentui/tokens@1.0.0-alpha.20": + version "1.0.0-alpha.20" + resolved "https://registry.yarnpkg.com/@fluentui/tokens/-/tokens-1.0.0-alpha.20.tgz#25ec7fd74e39a4ceedb3d090bd86019e6211885f" + integrity sha512-9WsCVDM/+A6lcMAB0cxHSlM94xe/DLIQFd2g7R9e7XYBFMqnt6t/b8S3NVDMruG57wd0o/UMiRJtnqjEkB2gpw== + dependencies: + "@swc/helpers" "^0.5.1" + +"@fluentui/tokens@1.0.0-alpha.21": + version "1.0.0-alpha.21" + resolved "https://registry.yarnpkg.com/@fluentui/tokens/-/tokens-1.0.0-alpha.21.tgz#25738cabb95aa5a90dad92397325ce70044ad5f7" + integrity sha512-xQ1T56sNgDFGl+kJdIwhz67mHng8vcwO7Dvx5Uja4t+NRULQBgMcJ4reUo4FGF3TjufHj08pP0/OnKQgnOaSVg== + dependencies: + "@swc/helpers" "^0.5.1" + +"@griffel/core@^1.16.0", "@griffel/core@^1.18.2": + version "1.18.2" + resolved "https://registry.yarnpkg.com/@griffel/core/-/core-1.18.2.tgz#bba9833c5ac91deeb550fed6a90468a0ff548566" + integrity sha512-odJspTMohsYZLSlO/oKsf6El6px1vg1461CpPverOzS9f0xaUKh/ZGenW+MjyyZ3aQ6adkPzcr/my6JFH/zdXQ== + dependencies: + "@emotion/hash" "^0.9.0" + "@griffel/style-types" "^1.3.0" + csstype "^3.1.3" + rtl-css-js "^1.16.1" + stylis "^4.2.0" + tslib "^2.1.0" + +"@griffel/react@^1.0.0", "@griffel/react@^1.5.14", "@griffel/react@^1.5.22": + version "1.5.27" + resolved "https://registry.yarnpkg.com/@griffel/react/-/react-1.5.27.tgz#d9ed76968c3600dbbc9193d458d8c3df326ddf54" + integrity sha512-985A8iEBo++h9u96dbj3Kj5hdsBWbpkkwFpy0W8EGL0VRCzZmpb0AlWuq9pDJZACS6eZ2GAb/f9CqgVAgnTnOg== + dependencies: + "@griffel/core" "^1.18.2" + tslib "^2.1.0" + +"@griffel/style-types@^1.3.0": + version "1.3.0" + resolved "https://registry.yarnpkg.com/@griffel/style-types/-/style-types-1.3.0.tgz#42b4f1902a0221a9a8334fda12a2fe88f13d65ee" + integrity sha512-bHwD3sUE84Xwv4dH011gOKe1jul77M1S6ZFN9Tnq8pvZ48UMdY//vtES6fv7GRS5wXYT4iqxQPBluAiYAfkpmw== + dependencies: + csstype "^3.1.3" + +"@humanfs/core@^0.19.1": + version "0.19.1" + resolved "https://registry.yarnpkg.com/@humanfs/core/-/core-0.19.1.tgz#17c55ca7d426733fe3c561906b8173c336b40a77" + integrity sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA== + +"@humanfs/node@^0.16.6": + version "0.16.6" + resolved "https://registry.yarnpkg.com/@humanfs/node/-/node-0.16.6.tgz#ee2a10eaabd1131987bf0488fd9b820174cd765e" + integrity sha512-YuI2ZHQL78Q5HbhDiBA1X4LmYdXCKCMQIfw0pw7piHJwyREFebJUvrQN4cMssyES6x+vfUbx1CIpaQUKYdQZOw== + dependencies: + "@humanfs/core" "^0.19.1" + "@humanwhocodes/retry" "^0.3.0" + +"@humanwhocodes/module-importer@^1.0.1": + version "1.0.1" + resolved "https://registry.yarnpkg.com/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz#af5b2691a22b44be847b0ca81641c5fb6ad0172c" + integrity sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA== + +"@humanwhocodes/retry@^0.3.0": + version "0.3.1" + resolved "https://registry.yarnpkg.com/@humanwhocodes/retry/-/retry-0.3.1.tgz#c72a5c76a9fbaf3488e231b13dc52c0da7bab42a" + integrity sha512-JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA== + +"@humanwhocodes/retry@^0.4.2": + version "0.4.2" + resolved "https://registry.yarnpkg.com/@humanwhocodes/retry/-/retry-0.4.2.tgz#1860473de7dfa1546767448f333db80cb0ff2161" + integrity sha512-xeO57FpIu4p1Ri3Jq/EXq4ClRm86dVF2z/+kvFnyqVYRavTZmaFaUBbWCOuuTh0o/g7DSsk6kc2vrS4Vl5oPOQ== + +"@jridgewell/gen-mapping@^0.3.5": + version "0.3.8" + resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.8.tgz#4f0e06362e01362f823d348f1872b08f666d8142" + integrity sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA== + dependencies: + "@jridgewell/set-array" "^1.2.1" + "@jridgewell/sourcemap-codec" "^1.4.10" + "@jridgewell/trace-mapping" "^0.3.24" + +"@jridgewell/resolve-uri@^3.1.0": + version "3.1.2" + resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz#7a0ee601f60f99a20c7c7c5ff0c80388c1189bd6" + integrity sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw== + +"@jridgewell/set-array@^1.2.1": + version "1.2.1" + resolved "https://registry.yarnpkg.com/@jridgewell/set-array/-/set-array-1.2.1.tgz#558fb6472ed16a4c850b889530e6b36438c49280" + integrity sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A== + +"@jridgewell/sourcemap-codec@^1.4.10", "@jridgewell/sourcemap-codec@^1.4.14": + version "1.5.0" + resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz#3188bcb273a414b0d215fd22a58540b989b9409a" + integrity sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ== + +"@jridgewell/trace-mapping@^0.3.24", "@jridgewell/trace-mapping@^0.3.25": + version "0.3.25" + resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz#15f190e98895f3fc23276ee14bc76b675c2e50f0" + integrity sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ== + dependencies: + "@jridgewell/resolve-uri" "^3.1.0" + "@jridgewell/sourcemap-codec" "^1.4.14" + +"@microsoft/signalr@^8.0.7": + version "8.0.7" + resolved "https://registry.yarnpkg.com/@microsoft/signalr/-/signalr-8.0.7.tgz#94419ddbf9418753e493f4ae4c13990316ec2ea5" + integrity sha512-PHcdMv8v5hJlBkRHAuKG5trGViQEkPYee36LnJQx4xHOQ5LL4X0nEWIxOp5cCtZ7tu+30quz5V3k0b1YNuc6lw== + dependencies: + abort-controller "^3.0.0" + eventsource "^2.0.2" + fetch-cookie "^2.0.3" + node-fetch "^2.6.7" + ws "^7.4.5" + +"@nodelib/fs.scandir@2.1.5": + version "2.1.5" + resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz#7619c2eb21b25483f6d167548b4cfd5a7488c3d5" + integrity sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g== + dependencies: + "@nodelib/fs.stat" "2.0.5" + run-parallel "^1.1.9" + +"@nodelib/fs.stat@2.0.5", "@nodelib/fs.stat@^2.0.2": + version "2.0.5" + resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz#5bd262af94e9d25bd1e71b05deed44876a222e8b" + integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A== + +"@nodelib/fs.walk@^1.2.3": + version "1.2.8" + resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz#e95737e8bb6746ddedf69c556953494f196fe69a" + integrity sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg== + dependencies: + "@nodelib/fs.scandir" "2.1.5" + fastq "^1.6.0" + +"@rollup/pluginutils@^5.1.3": + version "5.1.4" + resolved "https://registry.yarnpkg.com/@rollup/pluginutils/-/pluginutils-5.1.4.tgz#bb94f1f9eaaac944da237767cdfee6c5b2262d4a" + integrity sha512-USm05zrsFxYLPdWWq+K3STlWiT/3ELn3RcV5hJMghpeAIhxfsUIg6mt12CBJBInWMV4VneoV7SfGv8xIwo2qNQ== + dependencies: + "@types/estree" "^1.0.0" + estree-walker "^2.0.2" + picomatch "^4.0.2" + +"@rollup/rollup-android-arm-eabi@4.37.0": + version "4.37.0" + resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.37.0.tgz#9bedc746a97fe707154086365f269ced92ff4aa9" + integrity sha512-l7StVw6WAa8l3vA1ov80jyetOAEo1FtHvZDbzXDO/02Sq/QVvqlHkYoFwDJPIMj0GKiistsBudfx5tGFnwYWDQ== + +"@rollup/rollup-android-arm64@4.37.0": + version "4.37.0" + resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.37.0.tgz#6edc6ffc8af8773e4bc28c72894dd5e846b8ee6c" + integrity sha512-6U3SlVyMxezt8Y+/iEBcbp945uZjJwjZimu76xoG7tO1av9VO691z8PkhzQ85ith2I8R2RddEPeSfcbyPfD4hA== + +"@rollup/rollup-darwin-arm64@4.37.0": + version "4.37.0" + resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.37.0.tgz#737a7b8be9ff79bd24a7efaae0903e8c66ac0676" + integrity sha512-+iTQ5YHuGmPt10NTzEyMPbayiNTcOZDWsbxZYR1ZnmLnZxG17ivrPSWFO9j6GalY0+gV3Jtwrrs12DBscxnlYA== + +"@rollup/rollup-darwin-x64@4.37.0": + version "4.37.0" + resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.37.0.tgz#a6a697bb685ca9462a7caeea5f22f6a686acff1f" + integrity sha512-m8W2UbxLDcmRKVjgl5J/k4B8d7qX2EcJve3Sut7YGrQoPtCIQGPH5AMzuFvYRWZi0FVS0zEY4c8uttPfX6bwYQ== + +"@rollup/rollup-freebsd-arm64@4.37.0": + version "4.37.0" + resolved "https://registry.yarnpkg.com/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.37.0.tgz#18113e8e133ccb6de4b9dc9d3e09f7acff344cb7" + integrity sha512-FOMXGmH15OmtQWEt174v9P1JqqhlgYge/bUjIbiVD1nI1NeJ30HYT9SJlZMqdo1uQFyt9cz748F1BHghWaDnVA== + +"@rollup/rollup-freebsd-x64@4.37.0": + version "4.37.0" + resolved "https://registry.yarnpkg.com/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.37.0.tgz#5e56ffd4a0d7ccfcbc86867c40b8f0e6a2c0c81e" + integrity sha512-SZMxNttjPKvV14Hjck5t70xS3l63sbVwl98g3FlVVx2YIDmfUIy29jQrsw06ewEYQ8lQSuY9mpAPlmgRD2iSsA== + +"@rollup/rollup-linux-arm-gnueabihf@4.37.0": + version "4.37.0" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.37.0.tgz#5addf1a51e1495ae7ff28d26442a88adf629c980" + integrity sha512-hhAALKJPidCwZcj+g+iN+38SIOkhK2a9bqtJR+EtyxrKKSt1ynCBeqrQy31z0oWU6thRZzdx53hVgEbRkuI19w== + +"@rollup/rollup-linux-arm-musleabihf@4.37.0": + version "4.37.0" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.37.0.tgz#00cddb9ab51086c5f2cd33cd4738259e24be4e73" + integrity sha512-jUb/kmn/Gd8epbHKEqkRAxq5c2EwRt0DqhSGWjPFxLeFvldFdHQs/n8lQ9x85oAeVb6bHcS8irhTJX2FCOd8Ag== + +"@rollup/rollup-linux-arm64-gnu@4.37.0": + version "4.37.0" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.37.0.tgz#c3b4324496236b6fd9f31fda5701c6d6060b1512" + integrity sha512-oNrJxcQT9IcbcmKlkF+Yz2tmOxZgG9D9GRq+1OE6XCQwCVwxixYAa38Z8qqPzQvzt1FCfmrHX03E0pWoXm1DqA== + +"@rollup/rollup-linux-arm64-musl@4.37.0": + version "4.37.0" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.37.0.tgz#b5222180bb1a50e6e9bc8263efd771c1ce770b6f" + integrity sha512-pfxLBMls+28Ey2enpX3JvjEjaJMBX5XlPCZNGxj4kdJyHduPBXtxYeb8alo0a7bqOoWZW2uKynhHxF/MWoHaGQ== + +"@rollup/rollup-linux-loongarch64-gnu@4.37.0": + version "4.37.0" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-loongarch64-gnu/-/rollup-linux-loongarch64-gnu-4.37.0.tgz#5660181c1c1efb7b19c7a531d496e685236c5ce7" + integrity sha512-yCE0NnutTC/7IGUq/PUHmoeZbIwq3KRh02e9SfFh7Vmc1Z7atuJRYWhRME5fKgT8aS20mwi1RyChA23qSyRGpA== + +"@rollup/rollup-linux-powerpc64le-gnu@4.37.0": + version "4.37.0" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.37.0.tgz#8273166495d2f5d3fbc556cf42a5a6e24b78bdab" + integrity sha512-NxcICptHk06E2Lh3a4Pu+2PEdZ6ahNHuK7o6Np9zcWkrBMuv21j10SQDJW3C9Yf/A/P7cutWoC/DptNLVsZ0VQ== + +"@rollup/rollup-linux-riscv64-gnu@4.37.0": + version "4.37.0" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.37.0.tgz#9677e39288ccc91ebcd707cdd794732d701cd174" + integrity sha512-PpWwHMPCVpFZLTfLq7EWJWvrmEuLdGn1GMYcm5MV7PaRgwCEYJAwiN94uBuZev0/J/hFIIJCsYw4nLmXA9J7Pw== + +"@rollup/rollup-linux-riscv64-musl@4.37.0": + version "4.37.0" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.37.0.tgz#71cc5ca7be1ed263357618bfe4f8f50c09725a7e" + integrity sha512-DTNwl6a3CfhGTAOYZ4KtYbdS8b+275LSLqJVJIrPa5/JuIufWWZ/QFvkxp52gpmguN95eujrM68ZG+zVxa8zHA== + +"@rollup/rollup-linux-s390x-gnu@4.37.0": + version "4.37.0" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.37.0.tgz#6b0b7df33eb32b0ee7423898b183acc1b5fee33e" + integrity sha512-hZDDU5fgWvDdHFuExN1gBOhCuzo/8TMpidfOR+1cPZJflcEzXdCy1LjnklQdW8/Et9sryOPJAKAQRw8Jq7Tg+A== + +"@rollup/rollup-linux-x64-gnu@4.37.0": + version "4.37.0" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.37.0.tgz#52c27717d3c4819d13b5ebc2373ddea099d2e71b" + integrity sha512-pKivGpgJM5g8dwj0ywBwe/HeVAUSuVVJhUTa/URXjxvoyTT/AxsLTAbkHkDHG7qQxLoW2s3apEIl26uUe08LVQ== + +"@rollup/rollup-linux-x64-musl@4.37.0": + version "4.37.0" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.37.0.tgz#c134a22d30642345de8b799c816345674bf68019" + integrity sha512-E2lPrLKE8sQbY/2bEkVTGDEk4/49UYRVWgj90MY8yPjpnGBQ+Xi1Qnr7b7UIWw1NOggdFQFOLZ8+5CzCiz143w== + +"@rollup/rollup-win32-arm64-msvc@4.37.0": + version "4.37.0" + resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.37.0.tgz#8063d5f8195dd1845e056d069366fbe06a424d09" + integrity sha512-Jm7biMazjNzTU4PrQtr7VS8ibeys9Pn29/1bm4ph7CP2kf21950LgN+BaE2mJ1QujnvOc6p54eWWiVvn05SOBg== + +"@rollup/rollup-win32-ia32-msvc@4.37.0": + version "4.37.0" + resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.37.0.tgz#891d90e3b5517f9d290bb416afdfe2ebfb12139e" + integrity sha512-e3/1SFm1OjefWICB2Ucstg2dxYDkDTZGDYgwufcbsxTHyqQps1UQf33dFEChBNmeSsTOyrjw2JJq0zbG5GF6RA== + +"@rollup/rollup-win32-x64-msvc@4.37.0": + version "4.37.0" + resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.37.0.tgz#a54d7304c3bd45573d8bcd1270de89771f8195fe" + integrity sha512-LWbXUBwn/bcLx2sSsqy7pK5o+Nr+VCoRoAohfJ5C/aBio9nfJmGQqHAhU6pwxV/RmyTk5AqdySma7uwWGlmeuA== + +"@svgr/babel-plugin-add-jsx-attribute@8.0.0": + version "8.0.0" + resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-add-jsx-attribute/-/babel-plugin-add-jsx-attribute-8.0.0.tgz#4001f5d5dd87fa13303e36ee106e3ff3a7eb8b22" + integrity sha512-b9MIk7yhdS1pMCZM8VeNfUlSKVRhsHZNMl5O9SfaX0l0t5wjdgu4IDzGB8bpnGBBOjGST3rRFVsaaEtI4W6f7g== + +"@svgr/babel-plugin-remove-jsx-attribute@8.0.0": + version "8.0.0" + resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-remove-jsx-attribute/-/babel-plugin-remove-jsx-attribute-8.0.0.tgz#69177f7937233caca3a1afb051906698f2f59186" + integrity sha512-BcCkm/STipKvbCl6b7QFrMh/vx00vIP63k2eM66MfHJzPr6O2U0jYEViXkHJWqXqQYjdeA9cuCl5KWmlwjDvbA== + +"@svgr/babel-plugin-remove-jsx-empty-expression@8.0.0": + version "8.0.0" + resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-remove-jsx-empty-expression/-/babel-plugin-remove-jsx-empty-expression-8.0.0.tgz#c2c48104cfd7dcd557f373b70a56e9e3bdae1d44" + integrity sha512-5BcGCBfBxB5+XSDSWnhTThfI9jcO5f0Ai2V24gZpG+wXF14BzwxxdDb4g6trdOux0rhibGs385BeFMSmxtS3uA== + +"@svgr/babel-plugin-replace-jsx-attribute-value@8.0.0": + version "8.0.0" + resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-replace-jsx-attribute-value/-/babel-plugin-replace-jsx-attribute-value-8.0.0.tgz#8fbb6b2e91fa26ac5d4aa25c6b6e4f20f9c0ae27" + integrity sha512-KVQ+PtIjb1BuYT3ht8M5KbzWBhdAjjUPdlMtpuw/VjT8coTrItWX6Qafl9+ji831JaJcu6PJNKCV0bp01lBNzQ== + +"@svgr/babel-plugin-svg-dynamic-title@8.0.0": + version "8.0.0" + resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-svg-dynamic-title/-/babel-plugin-svg-dynamic-title-8.0.0.tgz#1d5ba1d281363fc0f2f29a60d6d936f9bbc657b0" + integrity sha512-omNiKqwjNmOQJ2v6ge4SErBbkooV2aAWwaPFs2vUY7p7GhVkzRkJ00kILXQvRhA6miHnNpXv7MRnnSjdRjK8og== + +"@svgr/babel-plugin-svg-em-dimensions@8.0.0": + version "8.0.0" + resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-svg-em-dimensions/-/babel-plugin-svg-em-dimensions-8.0.0.tgz#35e08df300ea8b1d41cb8f62309c241b0369e501" + integrity sha512-mURHYnu6Iw3UBTbhGwE/vsngtCIbHE43xCRK7kCw4t01xyGqb2Pd+WXekRRoFOBIY29ZoOhUCTEweDMdrjfi9g== + +"@svgr/babel-plugin-transform-react-native-svg@8.1.0": + version "8.1.0" + resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-transform-react-native-svg/-/babel-plugin-transform-react-native-svg-8.1.0.tgz#90a8b63998b688b284f255c6a5248abd5b28d754" + integrity sha512-Tx8T58CHo+7nwJ+EhUwx3LfdNSG9R2OKfaIXXs5soiy5HtgoAEkDay9LIimLOcG8dJQH1wPZp/cnAv6S9CrR1Q== + +"@svgr/babel-plugin-transform-svg-component@8.0.0": + version "8.0.0" + resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-transform-svg-component/-/babel-plugin-transform-svg-component-8.0.0.tgz#013b4bfca88779711f0ed2739f3f7efcefcf4f7e" + integrity sha512-DFx8xa3cZXTdb/k3kfPeaixecQLgKh5NVBMwD0AQxOzcZawK4oo1Jh9LbrcACUivsCA7TLG8eeWgrDXjTMhRmw== + +"@svgr/babel-preset@8.1.0": + version "8.1.0" + resolved "https://registry.yarnpkg.com/@svgr/babel-preset/-/babel-preset-8.1.0.tgz#0e87119aecdf1c424840b9d4565b7137cabf9ece" + integrity sha512-7EYDbHE7MxHpv4sxvnVPngw5fuR6pw79SkcrILHJ/iMpuKySNCl5W1qcwPEpU+LgyRXOaAFgH0KhwD18wwg6ug== + dependencies: + "@svgr/babel-plugin-add-jsx-attribute" "8.0.0" + "@svgr/babel-plugin-remove-jsx-attribute" "8.0.0" + "@svgr/babel-plugin-remove-jsx-empty-expression" "8.0.0" + "@svgr/babel-plugin-replace-jsx-attribute-value" "8.0.0" + "@svgr/babel-plugin-svg-dynamic-title" "8.0.0" + "@svgr/babel-plugin-svg-em-dimensions" "8.0.0" + "@svgr/babel-plugin-transform-react-native-svg" "8.1.0" + "@svgr/babel-plugin-transform-svg-component" "8.0.0" + +"@svgr/core@^8.1.0": + version "8.1.0" + resolved "https://registry.yarnpkg.com/@svgr/core/-/core-8.1.0.tgz#41146f9b40b1a10beaf5cc4f361a16a3c1885e88" + integrity sha512-8QqtOQT5ACVlmsvKOJNEaWmRPmcojMOzCz4Hs2BGG/toAp/K38LcsMRyLp349glq5AzJbCEeimEoxaX6v/fLrA== + dependencies: + "@babel/core" "^7.21.3" + "@svgr/babel-preset" "8.1.0" + camelcase "^6.2.0" + cosmiconfig "^8.1.3" + snake-case "^3.0.4" + +"@svgr/hast-util-to-babel-ast@8.0.0": + version "8.0.0" + resolved "https://registry.yarnpkg.com/@svgr/hast-util-to-babel-ast/-/hast-util-to-babel-ast-8.0.0.tgz#6952fd9ce0f470e1aded293b792a2705faf4ffd4" + integrity sha512-EbDKwO9GpfWP4jN9sGdYwPBU0kdomaPIL2Eu4YwmgP+sJeXT+L7bMwJUBnhzfH8Q2qMBqZ4fJwpCyYsAN3mt2Q== + dependencies: + "@babel/types" "^7.21.3" + entities "^4.4.0" + +"@svgr/plugin-jsx@^8.1.0": + version "8.1.0" + resolved "https://registry.yarnpkg.com/@svgr/plugin-jsx/-/plugin-jsx-8.1.0.tgz#96969f04a24b58b174ee4cd974c60475acbd6928" + integrity sha512-0xiIyBsLlr8quN+WyuxooNW9RJ0Dpr8uOnH/xrCVO8GLUcwHISwj1AG0k+LFzteTkAA0GbX0kj9q6Dk70PTiPA== + dependencies: + "@babel/core" "^7.21.3" + "@svgr/babel-preset" "8.1.0" + "@svgr/hast-util-to-babel-ast" "8.0.0" + svg-parser "^2.0.4" + +"@swc/helpers@^0.5.1": + version "0.5.15" + resolved "https://registry.yarnpkg.com/@swc/helpers/-/helpers-0.5.15.tgz#79efab344c5819ecf83a43f3f9f811fc84b516d7" + integrity sha512-JQ5TuMi45Owi4/BIMAJBoSQoOJu12oOk/gADqlcUL9JEdHB8vyjUSsxqeNXnmXHjYKMi2WcYtezGEEhqUI/E2g== + dependencies: + tslib "^2.8.0" + +"@types/babel__core@^7.20.5": + version "7.20.5" + resolved "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.20.5.tgz#3df15f27ba85319caa07ba08d0721889bb39c017" + integrity sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA== + dependencies: + "@babel/parser" "^7.20.7" + "@babel/types" "^7.20.7" + "@types/babel__generator" "*" + "@types/babel__template" "*" + "@types/babel__traverse" "*" + +"@types/babel__generator@*": + version "7.6.8" + resolved "https://registry.yarnpkg.com/@types/babel__generator/-/babel__generator-7.6.8.tgz#f836c61f48b1346e7d2b0d93c6dacc5b9535d3ab" + integrity sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw== + dependencies: + "@babel/types" "^7.0.0" + +"@types/babel__template@*": + version "7.4.4" + resolved "https://registry.yarnpkg.com/@types/babel__template/-/babel__template-7.4.4.tgz#5672513701c1b2199bc6dad636a9d7491586766f" + integrity sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A== + dependencies: + "@babel/parser" "^7.1.0" + "@babel/types" "^7.0.0" + +"@types/babel__traverse@*": + version "7.20.6" + resolved "https://registry.yarnpkg.com/@types/babel__traverse/-/babel__traverse-7.20.6.tgz#8dc9f0ae0f202c08d8d4dab648912c8d6038e3f7" + integrity sha512-r1bzfrm0tomOI8g1SzvCaQHo6Lcv6zu0EA+W2kHrt8dyrHQxGzBBL4kdkzIS+jBMV+EYcMAEAqXqYaLJq5rOZg== + dependencies: + "@babel/types" "^7.20.7" + +"@types/cookie@^0.6.0": + version "0.6.0" + resolved "https://registry.yarnpkg.com/@types/cookie/-/cookie-0.6.0.tgz#eac397f28bf1d6ae0ae081363eca2f425bedf0d5" + integrity sha512-4Kh9a6B2bQciAhf7FSuMRRkUWecJgJu9nPnx3yzpsfXX/c50REIqpHY4C82bXP90qrLtXtkDxTZosYO3UpOwlA== + +"@types/crypto-js@^4.2.2": + version "4.2.2" + resolved "https://registry.yarnpkg.com/@types/crypto-js/-/crypto-js-4.2.2.tgz#771c4a768d94eb5922cc202a3009558204df0cea" + integrity sha512-sDOLlVbHhXpAUAL0YHDUUwDZf3iN4Bwi4W6a0W0b+QcAezUbRtH4FVb+9J4h+XFPW7l/gQ9F8qC7P+Ec4k8QVQ== + +"@types/debug@^4.0.0": + version "4.1.12" + resolved "https://registry.yarnpkg.com/@types/debug/-/debug-4.1.12.tgz#a155f21690871953410df4b6b6f53187f0500917" + integrity sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ== + dependencies: + "@types/ms" "*" + +"@types/estree-jsx@^1.0.0": + version "1.0.5" + resolved "https://registry.yarnpkg.com/@types/estree-jsx/-/estree-jsx-1.0.5.tgz#858a88ea20f34fe65111f005a689fa1ebf70dc18" + integrity sha512-52CcUVNFyfb1A2ALocQw/Dd1BQFNmSdkuC3BkZ6iqhdMfQz7JWOFRuJFloOzjk+6WijU56m9oKXFAXc7o3Towg== + dependencies: + "@types/estree" "*" + +"@types/estree@*", "@types/estree@1.0.6", "@types/estree@^1.0.0", "@types/estree@^1.0.6": + version "1.0.6" + resolved "https://registry.yarnpkg.com/@types/estree/-/estree-1.0.6.tgz#628effeeae2064a1b4e79f78e81d87b7e5fc7b50" + integrity sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw== + +"@types/hast@^3.0.0": + version "3.0.4" + resolved "https://registry.yarnpkg.com/@types/hast/-/hast-3.0.4.tgz#1d6b39993b82cea6ad783945b0508c25903e15aa" + integrity sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ== + dependencies: + "@types/unist" "*" + +"@types/json-schema@^7.0.15": + version "7.0.15" + resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.15.tgz#596a1747233694d50f6ad8a7869fcb6f56cf5841" + integrity sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA== + +"@types/mdast@^4.0.0": + version "4.0.4" + resolved "https://registry.yarnpkg.com/@types/mdast/-/mdast-4.0.4.tgz#7ccf72edd2f1aa7dd3437e180c64373585804dd6" + integrity sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA== + dependencies: + "@types/unist" "*" + +"@types/ms@*": + version "2.1.0" + resolved "https://registry.yarnpkg.com/@types/ms/-/ms-2.1.0.tgz#052aa67a48eccc4309d7f0191b7e41434b90bb78" + integrity sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA== + +"@types/prop-types@*": + version "15.7.14" + resolved "https://registry.yarnpkg.com/@types/prop-types/-/prop-types-15.7.14.tgz#1433419d73b2a7ebfc6918dcefd2ec0d5cd698f2" + integrity sha512-gNMvNH49DJ7OJYv+KAKn0Xp45p8PLl6zo2YnvDIbTd4J6MER2BmWN49TG7n9LvkyihINxeKW8+3bfS2yDC9dzQ== + +"@types/react-dom@18": + version "18.3.5" + resolved "https://registry.yarnpkg.com/@types/react-dom/-/react-dom-18.3.5.tgz#45f9f87398c5dcea085b715c58ddcf1faf65f716" + integrity sha512-P4t6saawp+b/dFrUr2cvkVsfvPguwsxtH6dNIYRllMsefqFzkZk5UIjzyDOv5g1dXIPdG4Sp1yCR4Z6RCUsG/Q== + +"@types/react-helmet@^6.1.11": + version "6.1.11" + resolved "https://registry.yarnpkg.com/@types/react-helmet/-/react-helmet-6.1.11.tgz#8cafcafff38f75361f451563ba7b406b0c5d3907" + integrity sha512-0QcdGLddTERotCXo3VFlUSWO3ztraw8nZ6e3zJSgG7apwV5xt+pJUS8ewPBqT4NYB1optGLprNQzFleIY84u/g== + dependencies: + "@types/react" "*" + +"@types/react@*": + version "18.3.16" + resolved "https://registry.yarnpkg.com/@types/react/-/react-18.3.16.tgz#5326789125fac98b718d586ad157442ceb44ff28" + integrity sha512-oh8AMIC4Y2ciKufU8hnKgs+ufgbA/dhPTACaZPM86AbwX9QwnFtSoPWEeRUj8fge+v6kFt78BXcDhAU1SrrAsw== + dependencies: + "@types/prop-types" "*" + csstype "^3.0.2" + +"@types/react@18": + version "18.3.20" + resolved "https://registry.yarnpkg.com/@types/react/-/react-18.3.20.tgz#b0dccda9d2f1bc24d2a04b1d0cb5d0b9a3576ad3" + integrity sha512-IPaCZN7PShZK/3t6Q87pfTkRm6oLTd4vztyoj+cbHUF1g3FfVb2tFIL79uCRKEfv16AhqDMBywP2VW3KIZUvcg== + dependencies: + "@types/prop-types" "*" + csstype "^3.0.2" + +"@types/unist@*", "@types/unist@^3.0.0": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@types/unist/-/unist-3.0.3.tgz#acaab0f919ce69cce629c2d4ed2eb4adc1b6c20c" + integrity sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q== + +"@types/unist@^2.0.0": + version "2.0.11" + resolved "https://registry.yarnpkg.com/@types/unist/-/unist-2.0.11.tgz#11af57b127e32487774841f7a4e54eab166d03c4" + integrity sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA== + +"@typescript-eslint/eslint-plugin@8.28.0": + version "8.28.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.28.0.tgz#ad1465aa6fe7e937801c291648dec951c4dc38e6" + integrity sha512-lvFK3TCGAHsItNdWZ/1FkvpzCxTHUVuFrdnOGLMa0GGCFIbCgQWVk3CzCGdA7kM3qGVc+dfW9tr0Z/sHnGDFyg== + dependencies: + "@eslint-community/regexpp" "^4.10.0" + "@typescript-eslint/scope-manager" "8.28.0" + "@typescript-eslint/type-utils" "8.28.0" + "@typescript-eslint/utils" "8.28.0" + "@typescript-eslint/visitor-keys" "8.28.0" + graphemer "^1.4.0" + ignore "^5.3.1" + natural-compare "^1.4.0" + ts-api-utils "^2.0.1" + +"@typescript-eslint/parser@8.28.0": + version "8.28.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-8.28.0.tgz#85321707e8711c0e66a949ea228224af35f45c98" + integrity sha512-LPcw1yHD3ToaDEoljFEfQ9j2xShY367h7FZ1sq5NJT9I3yj4LHer1Xd1yRSOdYy9BpsrxU7R+eoDokChYM53lQ== + dependencies: + "@typescript-eslint/scope-manager" "8.28.0" + "@typescript-eslint/types" "8.28.0" + "@typescript-eslint/typescript-estree" "8.28.0" + "@typescript-eslint/visitor-keys" "8.28.0" + debug "^4.3.4" + +"@typescript-eslint/scope-manager@8.28.0": + version "8.28.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-8.28.0.tgz#e495b20438a3787e00498774d5625e620d68f9fe" + integrity sha512-u2oITX3BJwzWCapoZ/pXw6BCOl8rJP4Ij/3wPoGvY8XwvXflOzd1kLrDUUUAIEdJSFh+ASwdTHqtan9xSg8buw== + dependencies: + "@typescript-eslint/types" "8.28.0" + "@typescript-eslint/visitor-keys" "8.28.0" + +"@typescript-eslint/type-utils@8.28.0": + version "8.28.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-8.28.0.tgz#fc565414ebc16de1fc65e0dd8652ce02c78ca61f" + integrity sha512-oRoXu2v0Rsy/VoOGhtWrOKDiIehvI+YNrDk5Oqj40Mwm0Yt01FC/Q7nFqg088d3yAsR1ZcZFVfPCTTFCe/KPwg== + dependencies: + "@typescript-eslint/typescript-estree" "8.28.0" + "@typescript-eslint/utils" "8.28.0" + debug "^4.3.4" + ts-api-utils "^2.0.1" + +"@typescript-eslint/types@8.28.0": + version "8.28.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-8.28.0.tgz#7c73878385edfd9674c7aa10975e6c484b4f896e" + integrity sha512-bn4WS1bkKEjx7HqiwG2JNB3YJdC1q6Ue7GyGlwPHyt0TnVq6TtD/hiOdTZt71sq0s7UzqBFXD8t8o2e63tXgwA== + +"@typescript-eslint/typescript-estree@8.28.0": + version "8.28.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-8.28.0.tgz#56b999f26f7ca67b9d75d6a67af5c8b8e4e80114" + integrity sha512-H74nHEeBGeklctAVUvmDkxB1mk+PAZ9FiOMPFncdqeRBXxk1lWSYraHw8V12b7aa6Sg9HOBNbGdSHobBPuQSuA== + dependencies: + "@typescript-eslint/types" "8.28.0" + "@typescript-eslint/visitor-keys" "8.28.0" + debug "^4.3.4" + fast-glob "^3.3.2" + is-glob "^4.0.3" + minimatch "^9.0.4" + semver "^7.6.0" + ts-api-utils "^2.0.1" + +"@typescript-eslint/utils@8.28.0": + version "8.28.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-8.28.0.tgz#7850856620a896b7ac621ac12d49c282aefbb528" + integrity sha512-OELa9hbTYciYITqgurT1u/SzpQVtDLmQMFzy/N8pQE+tefOyCWT79jHsav294aTqV1q1u+VzqDGbuujvRYaeSQ== + dependencies: + "@eslint-community/eslint-utils" "^4.4.0" + "@typescript-eslint/scope-manager" "8.28.0" + "@typescript-eslint/types" "8.28.0" + "@typescript-eslint/typescript-estree" "8.28.0" + +"@typescript-eslint/visitor-keys@8.28.0": + version "8.28.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-8.28.0.tgz#18eb9a25cc9dadb027835c58efe93a5c4ee81969" + integrity sha512-hbn8SZ8w4u2pRwgQ1GlUrPKE+t2XvcCW5tTRF7j6SMYIuYG37XuzIW44JCZPa36evi0Oy2SnM664BlIaAuQcvg== + dependencies: + "@typescript-eslint/types" "8.28.0" + eslint-visitor-keys "^4.2.0" + +"@ungap/structured-clone@^1.0.0": + version "1.3.0" + resolved "https://registry.yarnpkg.com/@ungap/structured-clone/-/structured-clone-1.3.0.tgz#d06bbb384ebcf6c505fde1c3d0ed4ddffe0aaff8" + integrity sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g== + +"@vitejs/plugin-react@^4.3.4": + version "4.3.4" + resolved "https://registry.yarnpkg.com/@vitejs/plugin-react/-/plugin-react-4.3.4.tgz#c64be10b54c4640135a5b28a2432330e88ad7c20" + integrity sha512-SCCPBJtYLdE8PX/7ZQAs1QAZ8Jqwih+0VBLum1EGqmCCQal+MIUqLCzj3ZUy8ufbC0cAM4LRlSTm7IQJwWT4ug== + dependencies: + "@babel/core" "^7.26.0" + "@babel/plugin-transform-react-jsx-self" "^7.25.9" + "@babel/plugin-transform-react-jsx-source" "^7.25.9" + "@types/babel__core" "^7.20.5" + react-refresh "^0.14.2" + +abort-controller@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/abort-controller/-/abort-controller-3.0.0.tgz#eaf54d53b62bae4138e809ca225c8439a6efb392" + integrity sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg== + dependencies: + event-target-shim "^5.0.0" + +acorn-jsx@^5.3.2: + version "5.3.2" + resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz#7ed5bb55908b3b2f1bc55c6af1653bada7f07937" + integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ== + +acorn@^8.14.0: + version "8.14.0" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.14.0.tgz#063e2c70cac5fb4f6467f0b11152e04c682795b0" + integrity sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA== + +ajv@^6.12.4: + version "6.12.6" + resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4" + integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g== + dependencies: + fast-deep-equal "^3.1.1" + fast-json-stable-stringify "^2.0.0" + json-schema-traverse "^0.4.1" + uri-js "^4.2.2" + +ansi-styles@^4.1.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" + integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== + dependencies: + color-convert "^2.0.1" + +argparse@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38" + integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q== + +bail@^2.0.0: + version "2.0.2" + resolved "https://registry.yarnpkg.com/bail/-/bail-2.0.2.tgz#d26f5cd8fe5d6f832a31517b9f7c356040ba6d5d" + integrity sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw== + +balanced-match@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" + integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== + +brace-expansion@^1.1.7: + version "1.1.11" + resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" + integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== + dependencies: + balanced-match "^1.0.0" + concat-map "0.0.1" + +brace-expansion@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-2.0.1.tgz#1edc459e0f0c548486ecf9fc99f2221364b9a0ae" + integrity sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA== + dependencies: + balanced-match "^1.0.0" + +braces@^3.0.3: + version "3.0.3" + resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.3.tgz#490332f40919452272d55a8480adc0c441358789" + integrity sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA== + dependencies: + fill-range "^7.1.1" + +browserslist@^4.24.0: + version "4.24.3" + resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.24.3.tgz#5fc2725ca8fb3c1432e13dac278c7cc103e026d2" + integrity sha512-1CPmv8iobE2fyRMV97dAcMVegvvWKxmq94hkLiAkUGwKVTyDLw33K+ZxiFrREKmmps4rIw6grcCFCnTMSZ/YiA== + dependencies: + caniuse-lite "^1.0.30001688" + electron-to-chromium "^1.5.73" + node-releases "^2.0.19" + update-browserslist-db "^1.1.1" + +callsites@^3.0.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" + integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== + +camelcase@^6.2.0: + version "6.3.0" + resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-6.3.0.tgz#5685b95eb209ac9c0c177467778c9c84df58ba9a" + integrity sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA== + +caniuse-lite@^1.0.30001688: + version "1.0.30001688" + resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001688.tgz#f9d3ede749f083ce0db4c13db9d828adaf2e8d0a" + integrity sha512-Nmqpru91cuABu/DTCXbM2NSRHzM2uVHfPnhJ/1zEAJx/ILBRVmz3pzH4N7DZqbdG0gWClsCC05Oj0mJ/1AWMbA== + +ccount@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/ccount/-/ccount-2.0.1.tgz#17a3bf82302e0870d6da43a01311a8bc02a3ecf5" + integrity sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg== + +chalk@^4.0.0: + version "4.1.2" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" + integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== + dependencies: + ansi-styles "^4.1.0" + supports-color "^7.1.0" + +character-entities-html4@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/character-entities-html4/-/character-entities-html4-2.1.0.tgz#1f1adb940c971a4b22ba39ddca6b618dc6e56b2b" + integrity sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA== + +character-entities-legacy@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/character-entities-legacy/-/character-entities-legacy-3.0.0.tgz#76bc83a90738901d7bc223a9e93759fdd560125b" + integrity sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ== + +character-entities@^2.0.0: + version "2.0.2" + resolved "https://registry.yarnpkg.com/character-entities/-/character-entities-2.0.2.tgz#2d09c2e72cd9523076ccb21157dff66ad43fcc22" + integrity sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ== + +character-reference-invalid@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/character-reference-invalid/-/character-reference-invalid-2.0.1.tgz#85c66b041e43b47210faf401278abf808ac45cb9" + integrity sha512-iBZ4F4wRbyORVsu0jPV7gXkOsGYjGHPmAyv+HiHG8gi5PtC9KI2j1+v8/tlibRvjoWX027ypmG/n0HtO5t7unw== + +color-convert@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" + integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== + dependencies: + color-name "~1.1.4" + +color-name@~1.1.4: + version "1.1.4" + resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" + integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== + +comma-separated-tokens@^2.0.0: + version "2.0.3" + resolved "https://registry.yarnpkg.com/comma-separated-tokens/-/comma-separated-tokens-2.0.3.tgz#4e89c9458acb61bc8fef19f4529973b2392839ee" + integrity sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg== + +concat-map@0.0.1: + version "0.0.1" + resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" + integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg== + +convert-source-map@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-2.0.0.tgz#4b560f649fc4e918dd0ab75cf4961e8bc882d82a" + integrity sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg== + +cookie@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/cookie/-/cookie-1.0.2.tgz#27360701532116bd3f1f9416929d176afe1e4610" + integrity sha512-9Kr/j4O16ISv8zBBhJoi4bXOYNTkFLOqSL3UDB0njXxCXNezjeyVrJyGOWtgfs/q2km1gwBcfH8q1yEGoMYunA== + +cosmiconfig@^8.1.3: + version "8.3.6" + resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-8.3.6.tgz#060a2b871d66dba6c8538ea1118ba1ac16f5fae3" + integrity sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA== + dependencies: + import-fresh "^3.3.0" + js-yaml "^4.1.0" + parse-json "^5.2.0" + path-type "^4.0.0" + +cross-spawn@^7.0.6: + version "7.0.6" + resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.6.tgz#8a58fe78f00dcd70c370451759dfbfaf03e8ee9f" + integrity sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA== + dependencies: + path-key "^3.1.0" + shebang-command "^2.0.0" + which "^2.0.1" + +crypto-js@^4.2.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/crypto-js/-/crypto-js-4.2.0.tgz#4d931639ecdfd12ff80e8186dba6af2c2e856631" + integrity sha512-KALDyEYgpY+Rlob/iriUtjV6d5Eq+Y191A5g4UqLAi8CyGP9N1+FdVbkc1SxKc2r4YAYqG8JzO2KGL+AizD70Q== + +csstype@^3.0.2, csstype@^3.1.3: + version "3.1.3" + resolved "https://registry.yarnpkg.com/csstype/-/csstype-3.1.3.tgz#d80ff294d114fb0e6ac500fbf85b60137d7eff81" + integrity sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw== + +debug@^4.0.0, debug@^4.1.0, debug@^4.3.1, debug@^4.3.2, debug@^4.3.4: + version "4.4.0" + resolved "https://registry.yarnpkg.com/debug/-/debug-4.4.0.tgz#2b3f2aea2ffeb776477460267377dc8710faba8a" + integrity sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA== + dependencies: + ms "^2.1.3" + +decode-named-character-reference@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/decode-named-character-reference/-/decode-named-character-reference-1.0.2.tgz#daabac9690874c394c81e4162a0304b35d824f0e" + integrity sha512-O8x12RzrUF8xyVcY0KJowWsmaJxQbmy0/EtnNtHRpsOcT7dFk5W598coHqBVpmWo1oQQfsCqfCmkZN5DJrZVdg== + dependencies: + character-entities "^2.0.0" + +deep-is@^0.1.3: + version "0.1.4" + resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.4.tgz#a6f2dce612fadd2ef1f519b73551f17e85199831" + integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ== + +dequal@^2.0.0: + version "2.0.3" + resolved "https://registry.yarnpkg.com/dequal/-/dequal-2.0.3.tgz#2644214f1997d39ed0ee0ece72335490a7ac67be" + integrity sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA== + +devlop@^1.0.0, devlop@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/devlop/-/devlop-1.1.0.tgz#4db7c2ca4dc6e0e834c30be70c94bbc976dc7018" + integrity sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA== + dependencies: + dequal "^2.0.0" + +dom-helpers@^5.0.1: + version "5.2.1" + resolved "https://registry.yarnpkg.com/dom-helpers/-/dom-helpers-5.2.1.tgz#d9400536b2bf8225ad98fe052e029451ac40e902" + integrity sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA== + dependencies: + "@babel/runtime" "^7.8.7" + csstype "^3.0.2" + +dot-case@^3.0.4: + version "3.0.4" + resolved "https://registry.yarnpkg.com/dot-case/-/dot-case-3.0.4.tgz#9b2b670d00a431667a8a75ba29cd1b98809ce751" + integrity sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w== + dependencies: + no-case "^3.0.4" + tslib "^2.0.3" + +electron-to-chromium@^1.5.73: + version "1.5.73" + resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.5.73.tgz#f32956ce40947fa3c8606726a96cd8fb5bb5f720" + integrity sha512-8wGNxG9tAG5KhGd3eeA0o6ixhiNdgr0DcHWm85XPCphwZgD1lIEoi6t3VERayWao7SF7AAZTw6oARGJeVjH8Kg== + +embla-carousel-autoplay@^8.5.1: + version "8.5.1" + resolved "https://registry.yarnpkg.com/embla-carousel-autoplay/-/embla-carousel-autoplay-8.5.1.tgz#d0213ab6d7beeafcfcb8f7b1fa023a4d3882f0a2" + integrity sha512-FnZklFpePfp8wbj177UwVaGFehgs+ASVcJvYLWTtHuYKURynCc3IdDn2qrn0E5Qpa3g9yeGwCS4p8QkrZmO8xg== + +embla-carousel-fade@^8.5.1: + version "8.5.1" + resolved "https://registry.yarnpkg.com/embla-carousel-fade/-/embla-carousel-fade-8.5.1.tgz#216b27198ee7ed71b27c545d231da76697e34185" + integrity sha512-n7vRe2tsTW0vc0Xxtk3APoxhUSXIGh/lGRKYtBJS/SWDeXf9E3qVUst4MfHhwXaHlfu5PLqG3xIEDAr2gwbbNA== + +embla-carousel@^8.5.1: + version "8.5.1" + resolved "https://registry.yarnpkg.com/embla-carousel/-/embla-carousel-8.5.1.tgz#8d83217e831666f6df573b0d3727ff0ae9208002" + integrity sha512-JUb5+FOHobSiWQ2EJNaueCNT/cQU9L6XWBbWmorWPQT9bkbk+fhsuLr8wWrzXKagO3oWszBO7MSx+GfaRk4E6A== + +entities@^4.4.0: + version "4.5.0" + resolved "https://registry.yarnpkg.com/entities/-/entities-4.5.0.tgz#5d268ea5e7113ec74c4d033b79ea5a35a488fb48" + integrity sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw== + +error-ex@^1.3.1: + version "1.3.2" + resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" + integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== + dependencies: + is-arrayish "^0.2.1" + +esbuild@^0.25.0: + version "0.25.1" + resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.25.1.tgz#a16b8d070b6ad4871935277bda6ccfe852e3fa2f" + integrity sha512-BGO5LtrGC7vxnqucAe/rmvKdJllfGaYWdyABvyMoXQlfYMb2bbRuReWR5tEGE//4LcNJj9XrkovTqNYRFZHAMQ== + optionalDependencies: + "@esbuild/aix-ppc64" "0.25.1" + "@esbuild/android-arm" "0.25.1" + "@esbuild/android-arm64" "0.25.1" + "@esbuild/android-x64" "0.25.1" + "@esbuild/darwin-arm64" "0.25.1" + "@esbuild/darwin-x64" "0.25.1" + "@esbuild/freebsd-arm64" "0.25.1" + "@esbuild/freebsd-x64" "0.25.1" + "@esbuild/linux-arm" "0.25.1" + "@esbuild/linux-arm64" "0.25.1" + "@esbuild/linux-ia32" "0.25.1" + "@esbuild/linux-loong64" "0.25.1" + "@esbuild/linux-mips64el" "0.25.1" + "@esbuild/linux-ppc64" "0.25.1" + "@esbuild/linux-riscv64" "0.25.1" + "@esbuild/linux-s390x" "0.25.1" + "@esbuild/linux-x64" "0.25.1" + "@esbuild/netbsd-arm64" "0.25.1" + "@esbuild/netbsd-x64" "0.25.1" + "@esbuild/openbsd-arm64" "0.25.1" + "@esbuild/openbsd-x64" "0.25.1" + "@esbuild/sunos-x64" "0.25.1" + "@esbuild/win32-arm64" "0.25.1" + "@esbuild/win32-ia32" "0.25.1" + "@esbuild/win32-x64" "0.25.1" + +escalade@^3.2.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.2.0.tgz#011a3f69856ba189dffa7dc8fcce99d2a87903e5" + integrity sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA== + +escape-string-regexp@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34" + integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== + +eslint-plugin-react-hooks@^5.2.0: + version "5.2.0" + resolved "https://registry.yarnpkg.com/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-5.2.0.tgz#1be0080901e6ac31ce7971beed3d3ec0a423d9e3" + integrity sha512-+f15FfK64YQwZdJNELETdn5ibXEUQmW1DZL6KXhNnc2heoy/sg9VJJeT7n8TlMWouzWqSWavFkIhHyIbIAEapg== + +eslint-plugin-react-refresh@^0.4.19: + version "0.4.19" + resolved "https://registry.yarnpkg.com/eslint-plugin-react-refresh/-/eslint-plugin-react-refresh-0.4.19.tgz#f15020c0caa58e33fc4efda27d328281ca74e53d" + integrity sha512-eyy8pcr/YxSYjBoqIFSrlbn9i/xvxUFa8CjzAYo9cFjgGXqq1hyjihcpZvxRLalpaWmueWR81xn7vuKmAFijDQ== + +eslint-scope@^8.3.0: + version "8.3.0" + resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-8.3.0.tgz#10cd3a918ffdd722f5f3f7b5b83db9b23c87340d" + integrity sha512-pUNxi75F8MJ/GdeKtVLSbYg4ZI34J6C0C7sbL4YOp2exGwen7ZsuBqKzUhXd0qMQ362yET3z+uPwKeg/0C2XCQ== + dependencies: + esrecurse "^4.3.0" + estraverse "^5.2.0" + +eslint-visitor-keys@^3.4.3: + version "3.4.3" + resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz#0cd72fe8550e3c2eae156a96a4dddcd1c8ac5800" + integrity sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag== + +eslint-visitor-keys@^4.2.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-4.2.0.tgz#687bacb2af884fcdda8a6e7d65c606f46a14cd45" + integrity sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw== + +eslint@^9.23.0: + version "9.23.0" + resolved "https://registry.yarnpkg.com/eslint/-/eslint-9.23.0.tgz#b88f3ab6dc83bcb927fdb54407c69ffe5f2441a6" + integrity sha512-jV7AbNoFPAY1EkFYpLq5bslU9NLNO8xnEeQXwErNibVryjk67wHVmddTBilc5srIttJDBrB0eMHKZBFbSIABCw== + dependencies: + "@eslint-community/eslint-utils" "^4.2.0" + "@eslint-community/regexpp" "^4.12.1" + "@eslint/config-array" "^0.19.2" + "@eslint/config-helpers" "^0.2.0" + "@eslint/core" "^0.12.0" + "@eslint/eslintrc" "^3.3.1" + "@eslint/js" "9.23.0" + "@eslint/plugin-kit" "^0.2.7" + "@humanfs/node" "^0.16.6" + "@humanwhocodes/module-importer" "^1.0.1" + "@humanwhocodes/retry" "^0.4.2" + "@types/estree" "^1.0.6" + "@types/json-schema" "^7.0.15" + ajv "^6.12.4" + chalk "^4.0.0" + cross-spawn "^7.0.6" + debug "^4.3.2" + escape-string-regexp "^4.0.0" + eslint-scope "^8.3.0" + eslint-visitor-keys "^4.2.0" + espree "^10.3.0" + esquery "^1.5.0" + esutils "^2.0.2" + fast-deep-equal "^3.1.3" + file-entry-cache "^8.0.0" + find-up "^5.0.0" + glob-parent "^6.0.2" + ignore "^5.2.0" + imurmurhash "^0.1.4" + is-glob "^4.0.0" + json-stable-stringify-without-jsonify "^1.0.1" + lodash.merge "^4.6.2" + minimatch "^3.1.2" + natural-compare "^1.4.0" + optionator "^0.9.3" + +espree@^10.0.1, espree@^10.3.0: + version "10.3.0" + resolved "https://registry.yarnpkg.com/espree/-/espree-10.3.0.tgz#29267cf5b0cb98735b65e64ba07e0ed49d1eed8a" + integrity sha512-0QYC8b24HWY8zjRnDTL6RiHfDbAWn63qb4LMj1Z4b076A4une81+z03Kg7l7mn/48PUTqoLptSXez8oknU8Clg== + dependencies: + acorn "^8.14.0" + acorn-jsx "^5.3.2" + eslint-visitor-keys "^4.2.0" + +esquery@^1.5.0: + version "1.6.0" + resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.6.0.tgz#91419234f804d852a82dceec3e16cdc22cf9dae7" + integrity sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg== + dependencies: + estraverse "^5.1.0" + +esrecurse@^4.3.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.3.0.tgz#7ad7964d679abb28bee72cec63758b1c5d2c9921" + integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag== + dependencies: + estraverse "^5.2.0" + +estraverse@^5.1.0, estraverse@^5.2.0: + version "5.3.0" + resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.3.0.tgz#2eea5290702f26ab8fe5370370ff86c965d21123" + integrity sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA== + +estree-util-is-identifier-name@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/estree-util-is-identifier-name/-/estree-util-is-identifier-name-3.0.0.tgz#0b5ef4c4ff13508b34dcd01ecfa945f61fce5dbd" + integrity sha512-hFtqIDZTIUZ9BXLb8y4pYGyk6+wekIivNVTcmvk8NoOh+VeRn5y6cEHzbURrWbfp1fIqdVipilzj+lfaadNZmg== + +estree-walker@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-2.0.2.tgz#52f010178c2a4c117a7757cfe942adb7d2da4cac" + integrity sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w== + +esutils@^2.0.2: + version "2.0.3" + resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" + integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== + +event-target-shim@^5.0.0: + version "5.0.1" + resolved "https://registry.yarnpkg.com/event-target-shim/-/event-target-shim-5.0.1.tgz#5d4d3ebdf9583d63a5333ce2deb7480ab2b05789" + integrity sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ== + +eventsource@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/eventsource/-/eventsource-2.0.2.tgz#76dfcc02930fb2ff339520b6d290da573a9e8508" + integrity sha512-IzUmBGPR3+oUG9dUeXynyNmf91/3zUSJg1lCktzKw47OXuhco54U3r9B7O4XX+Rb1Itm9OZ2b0RkTs10bICOxA== + +extend@^3.0.0: + version "3.0.2" + resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa" + integrity sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g== + +fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3: + version "3.1.3" + resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" + integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== + +fast-glob@^3.3.2: + version "3.3.2" + resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.3.2.tgz#a904501e57cfdd2ffcded45e99a54fef55e46129" + integrity sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow== + dependencies: + "@nodelib/fs.stat" "^2.0.2" + "@nodelib/fs.walk" "^1.2.3" + glob-parent "^5.1.2" + merge2 "^1.3.0" + micromatch "^4.0.4" + +fast-json-stable-stringify@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" + integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== + +fast-levenshtein@^2.0.6: + version "2.0.6" + resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" + integrity sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw== + +fastq@^1.6.0: + version "1.17.1" + resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.17.1.tgz#2a523f07a4e7b1e81a42b91b8bf2254107753b47" + integrity sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w== + dependencies: + reusify "^1.0.4" + +fetch-cookie@^2.0.3: + version "2.2.0" + resolved "https://registry.yarnpkg.com/fetch-cookie/-/fetch-cookie-2.2.0.tgz#01086b6b5b1c3e08f15ffd8647b02ca100377365" + integrity sha512-h9AgfjURuCgA2+2ISl8GbavpUdR+WGAM2McW/ovn4tVccegp8ZqCKWSBR8uRdM8dDNlx5WdKRWxBYUwteLDCNQ== + dependencies: + set-cookie-parser "^2.4.8" + tough-cookie "^4.0.0" + +file-entry-cache@^8.0.0: + version "8.0.0" + resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-8.0.0.tgz#7787bddcf1131bffb92636c69457bbc0edd6d81f" + integrity sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ== + dependencies: + flat-cache "^4.0.0" + +fill-range@^7.1.1: + version "7.1.1" + resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.1.1.tgz#44265d3cac07e3ea7dc247516380643754a05292" + integrity sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg== + dependencies: + to-regex-range "^5.0.1" + +find-up@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/find-up/-/find-up-5.0.0.tgz#4c92819ecb7083561e4f4a240a86be5198f536fc" + integrity sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng== + dependencies: + locate-path "^6.0.0" + path-exists "^4.0.0" + +flat-cache@^4.0.0: + version "4.0.1" + resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-4.0.1.tgz#0ece39fcb14ee012f4b0410bd33dd9c1f011127c" + integrity sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw== + dependencies: + flatted "^3.2.9" + keyv "^4.5.4" + +flatted@^3.2.9: + version "3.3.2" + resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.3.2.tgz#adba1448a9841bec72b42c532ea23dbbedef1a27" + integrity sha512-AiwGJM8YcNOaobumgtng+6NHuOqC3A7MixFeDafM3X9cIUM+xUXoS5Vfgf+OihAYe20fxqNM9yPBXJzRtZ/4eA== + +fsevents@~2.3.2, fsevents@~2.3.3: + version "2.3.3" + resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.3.tgz#cac6407785d03675a2a5e1a5305c697b347d90d6" + integrity sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw== + +gensync@^1.0.0-beta.2: + version "1.0.0-beta.2" + resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.2.tgz#32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0" + integrity sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg== + +glob-parent@^5.1.2: + version "5.1.2" + resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" + integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== + dependencies: + is-glob "^4.0.1" + +glob-parent@^6.0.2: + version "6.0.2" + resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-6.0.2.tgz#6d237d99083950c79290f24c7642a3de9a28f9e3" + integrity sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A== + dependencies: + is-glob "^4.0.3" + +globals@^11.1.0: + version "11.12.0" + resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e" + integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA== + +globals@^14.0.0: + version "14.0.0" + resolved "https://registry.yarnpkg.com/globals/-/globals-14.0.0.tgz#898d7413c29babcf6bafe56fcadded858ada724e" + integrity sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ== + +globals@^16.0.0: + version "16.0.0" + resolved "https://registry.yarnpkg.com/globals/-/globals-16.0.0.tgz#3d7684652c5c4fbd086ec82f9448214da49382d8" + integrity sha512-iInW14XItCXET01CQFqudPOWP2jYMl7T+QRQT+UNcR/iQncN/F0UNpgd76iFkBPgNQb4+X3LV9tLJYzwh+Gl3A== + +graphemer@^1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/graphemer/-/graphemer-1.4.0.tgz#fb2f1d55e0e3a1849aeffc90c4fa0dd53a0e66c6" + integrity sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag== + +has-flag@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" + integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== + +hast-util-to-jsx-runtime@^2.0.0: + version "2.3.2" + resolved "https://registry.yarnpkg.com/hast-util-to-jsx-runtime/-/hast-util-to-jsx-runtime-2.3.2.tgz#6d11b027473e69adeaa00ca4cfb5bb68e3d282fa" + integrity sha512-1ngXYb+V9UT5h+PxNRa1O1FYguZK/XL+gkeqvp7EdHlB9oHUG0eYRo/vY5inBdcqo3RkPMC58/H94HvkbfGdyg== + dependencies: + "@types/estree" "^1.0.0" + "@types/hast" "^3.0.0" + "@types/unist" "^3.0.0" + comma-separated-tokens "^2.0.0" + devlop "^1.0.0" + estree-util-is-identifier-name "^3.0.0" + hast-util-whitespace "^3.0.0" + mdast-util-mdx-expression "^2.0.0" + mdast-util-mdx-jsx "^3.0.0" + mdast-util-mdxjs-esm "^2.0.0" + property-information "^6.0.0" + space-separated-tokens "^2.0.0" + style-to-object "^1.0.0" + unist-util-position "^5.0.0" + vfile-message "^4.0.0" + +hast-util-whitespace@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/hast-util-whitespace/-/hast-util-whitespace-3.0.0.tgz#7778ed9d3c92dd9e8c5c8f648a49c21fc51cb621" + integrity sha512-88JUN06ipLwsnv+dVn+OIYOvAuvBMy/Qoi6O7mQHxdPXpjy+Cd6xRkWwux7DKO+4sYILtLBRIKgsdpS2gQc7qw== + dependencies: + "@types/hast" "^3.0.0" + +html-url-attributes@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/html-url-attributes/-/html-url-attributes-3.0.1.tgz#83b052cd5e437071b756cd74ae70f708870c2d87" + integrity sha512-ol6UPyBWqsrO6EJySPz2O7ZSr856WDrEzM5zMqp+FJJLGMW35cLYmmZnl0vztAZxRUoNZJFTCohfjuIJ8I4QBQ== + +ignore@^5.2.0, ignore@^5.3.1: + version "5.3.2" + resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.3.2.tgz#3cd40e729f3643fd87cb04e50bf0eb722bc596f5" + integrity sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g== + +import-fresh@^3.2.1: + version "3.3.0" + resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b" + integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw== + dependencies: + parent-module "^1.0.0" + resolve-from "^4.0.0" + +import-fresh@^3.3.0: + version "3.3.1" + resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.1.tgz#9cecb56503c0ada1f2741dbbd6546e4b13b57ccf" + integrity sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ== + dependencies: + parent-module "^1.0.0" + resolve-from "^4.0.0" + +imurmurhash@^0.1.4: + version "0.1.4" + resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" + integrity sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA== + +inline-style-parser@0.2.4: + version "0.2.4" + resolved "https://registry.yarnpkg.com/inline-style-parser/-/inline-style-parser-0.2.4.tgz#f4af5fe72e612839fcd453d989a586566d695f22" + integrity sha512-0aO8FkhNZlj/ZIbNi7Lxxr12obT7cL1moPfE4tg1LkX7LlLfC6DeX4l2ZEud1ukP9jNQyNnfzQVqwbwmAATY4Q== + +is-alphabetical@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/is-alphabetical/-/is-alphabetical-2.0.1.tgz#01072053ea7c1036df3c7d19a6daaec7f19e789b" + integrity sha512-FWyyY60MeTNyeSRpkM2Iry0G9hpr7/9kD40mD/cGQEuilcZYS4okz8SN2Q6rLCJ8gbCt6fN+rC+6tMGS99LaxQ== + +is-alphanumerical@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/is-alphanumerical/-/is-alphanumerical-2.0.1.tgz#7c03fbe96e3e931113e57f964b0a368cc2dfd875" + integrity sha512-hmbYhX/9MUMF5uh7tOXyK/n0ZvWpad5caBA17GsC6vyuCqaWliRG5K1qS9inmUhEMaOBIW7/whAnSwveW/LtZw== + dependencies: + is-alphabetical "^2.0.0" + is-decimal "^2.0.0" + +is-arrayish@^0.2.1: + version "0.2.1" + resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" + integrity sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg== + +is-decimal@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/is-decimal/-/is-decimal-2.0.1.tgz#9469d2dc190d0214fd87d78b78caecc0cc14eef7" + integrity sha512-AAB9hiomQs5DXWcRB1rqsxGUstbRroFOPPVAomNk/3XHR5JyEZChOyTWe2oayKnsSsr/kcGqF+z6yuH6HHpN0A== + +is-extglob@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" + integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ== + +is-glob@^4.0.0, is-glob@^4.0.1, is-glob@^4.0.3: + version "4.0.3" + resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084" + integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== + dependencies: + is-extglob "^2.1.1" + +is-hexadecimal@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/is-hexadecimal/-/is-hexadecimal-2.0.1.tgz#86b5bf668fca307498d319dfc03289d781a90027" + integrity sha512-DgZQp241c8oO6cA1SbTEWiXeoxV42vlcJxgH+B3hi1AiqqKruZR3ZGF8In3fj4+/y/7rHvlOZLZtgJ/4ttYGZg== + +is-number@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" + integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== + +is-plain-obj@^4.0.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-4.1.0.tgz#d65025edec3657ce032fd7db63c97883eaed71f0" + integrity sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg== + +isexe@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" + integrity sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw== + +"js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" + integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== + +js-yaml@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.0.tgz#c1fb65f8f5017901cdd2c951864ba18458a10602" + integrity sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA== + dependencies: + argparse "^2.0.1" + +jsesc@^3.0.2: + version "3.1.0" + resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-3.1.0.tgz#74d335a234f67ed19907fdadfac7ccf9d409825d" + integrity sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA== + +json-buffer@3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/json-buffer/-/json-buffer-3.0.1.tgz#9338802a30d3b6605fbe0613e094008ca8c05a13" + integrity sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ== + +json-parse-even-better-errors@^2.3.0: + version "2.3.1" + resolved "https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz#7c47805a94319928e05777405dc12e1f7a4ee02d" + integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w== + +json-schema-traverse@^0.4.1: + version "0.4.1" + resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" + integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== + +json-stable-stringify-without-jsonify@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" + integrity sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw== + +json5@^2.2.3: + version "2.2.3" + resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.3.tgz#78cd6f1a19bdc12b73db5ad0c61efd66c1e29283" + integrity sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg== + +keyborg@2.6.0, keyborg@^2.6.0: + version "2.6.0" + resolved "https://registry.yarnpkg.com/keyborg/-/keyborg-2.6.0.tgz#ebfcaaed2f517f9295058ff5d57d14e71958ab5a" + integrity sha512-o5kvLbuTF+o326CMVYpjlaykxqYP9DphFQZ2ZpgrvBouyvOxyEB7oqe8nOLFpiV5VCtz0D3pt8gXQYWpLpBnmA== + +keyv@^4.5.4: + version "4.5.4" + resolved "https://registry.yarnpkg.com/keyv/-/keyv-4.5.4.tgz#a879a99e29452f942439f2a405e3af8b31d4de93" + integrity sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw== + dependencies: + json-buffer "3.0.1" + +levn@^0.4.1: + version "0.4.1" + resolved "https://registry.yarnpkg.com/levn/-/levn-0.4.1.tgz#ae4562c007473b932a6200d403268dd2fffc6ade" + integrity sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ== + dependencies: + prelude-ls "^1.2.1" + type-check "~0.4.0" + +lines-and-columns@^1.1.6: + version "1.2.4" + resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.2.4.tgz#eca284f75d2965079309dc0ad9255abb2ebc1632" + integrity sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg== + +locate-path@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-6.0.0.tgz#55321eb309febbc59c4801d931a72452a681d286" + integrity sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw== + dependencies: + p-locate "^5.0.0" + +lodash.merge@^4.6.2: + version "4.6.2" + resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.2.tgz#558aa53b43b661e1925a0afdfa36a9a1085fe57a" + integrity sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ== + +longest-streak@^3.0.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/longest-streak/-/longest-streak-3.1.0.tgz#62fa67cd958742a1574af9f39866364102d90cd4" + integrity sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g== + +loose-envify@^1.1.0, loose-envify@^1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf" + integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q== + dependencies: + js-tokens "^3.0.0 || ^4.0.0" + +lower-case@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/lower-case/-/lower-case-2.0.2.tgz#6fa237c63dbdc4a82ca0fd882e4722dc5e634e28" + integrity sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg== + dependencies: + tslib "^2.0.3" + +lru-cache@^5.1.1: + version "5.1.1" + resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-5.1.1.tgz#1da27e6710271947695daf6848e847f01d84b920" + integrity sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w== + dependencies: + yallist "^3.0.2" + +mdast-util-from-markdown@^2.0.0: + version "2.0.2" + resolved "https://registry.yarnpkg.com/mdast-util-from-markdown/-/mdast-util-from-markdown-2.0.2.tgz#4850390ca7cf17413a9b9a0fbefcd1bc0eb4160a" + integrity sha512-uZhTV/8NBuw0WHkPTrCqDOl0zVe1BIng5ZtHoDk49ME1qqcjYmmLmOf0gELgcRMxN4w2iuIeVso5/6QymSrgmA== + dependencies: + "@types/mdast" "^4.0.0" + "@types/unist" "^3.0.0" + decode-named-character-reference "^1.0.0" + devlop "^1.0.0" + mdast-util-to-string "^4.0.0" + micromark "^4.0.0" + micromark-util-decode-numeric-character-reference "^2.0.0" + micromark-util-decode-string "^2.0.0" + micromark-util-normalize-identifier "^2.0.0" + micromark-util-symbol "^2.0.0" + micromark-util-types "^2.0.0" + unist-util-stringify-position "^4.0.0" + +mdast-util-mdx-expression@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/mdast-util-mdx-expression/-/mdast-util-mdx-expression-2.0.1.tgz#43f0abac9adc756e2086f63822a38c8d3c3a5096" + integrity sha512-J6f+9hUp+ldTZqKRSg7Vw5V6MqjATc+3E4gf3CFNcuZNWD8XdyI6zQ8GqH7f8169MM6P7hMBRDVGnn7oHB9kXQ== + dependencies: + "@types/estree-jsx" "^1.0.0" + "@types/hast" "^3.0.0" + "@types/mdast" "^4.0.0" + devlop "^1.0.0" + mdast-util-from-markdown "^2.0.0" + mdast-util-to-markdown "^2.0.0" + +mdast-util-mdx-jsx@^3.0.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/mdast-util-mdx-jsx/-/mdast-util-mdx-jsx-3.2.0.tgz#fd04c67a2a7499efb905a8a5c578dddc9fdada0d" + integrity sha512-lj/z8v0r6ZtsN/cGNNtemmmfoLAFZnjMbNyLzBafjzikOM+glrjNHPlf6lQDOTccj9n5b0PPihEBbhneMyGs1Q== + dependencies: + "@types/estree-jsx" "^1.0.0" + "@types/hast" "^3.0.0" + "@types/mdast" "^4.0.0" + "@types/unist" "^3.0.0" + ccount "^2.0.0" + devlop "^1.1.0" + mdast-util-from-markdown "^2.0.0" + mdast-util-to-markdown "^2.0.0" + parse-entities "^4.0.0" + stringify-entities "^4.0.0" + unist-util-stringify-position "^4.0.0" + vfile-message "^4.0.0" + +mdast-util-mdxjs-esm@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/mdast-util-mdxjs-esm/-/mdast-util-mdxjs-esm-2.0.1.tgz#019cfbe757ad62dd557db35a695e7314bcc9fa97" + integrity sha512-EcmOpxsZ96CvlP03NghtH1EsLtr0n9Tm4lPUJUBccV9RwUOneqSycg19n5HGzCf+10LozMRSObtVr3ee1WoHtg== + dependencies: + "@types/estree-jsx" "^1.0.0" + "@types/hast" "^3.0.0" + "@types/mdast" "^4.0.0" + devlop "^1.0.0" + mdast-util-from-markdown "^2.0.0" + mdast-util-to-markdown "^2.0.0" + +mdast-util-phrasing@^4.0.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/mdast-util-phrasing/-/mdast-util-phrasing-4.1.0.tgz#7cc0a8dec30eaf04b7b1a9661a92adb3382aa6e3" + integrity sha512-TqICwyvJJpBwvGAMZjj4J2n0X8QWp21b9l0o7eXyVJ25YNWYbJDVIyD1bZXE6WtV6RmKJVYmQAKWa0zWOABz2w== + dependencies: + "@types/mdast" "^4.0.0" + unist-util-is "^6.0.0" + +mdast-util-to-hast@^13.0.0: + version "13.2.0" + resolved "https://registry.yarnpkg.com/mdast-util-to-hast/-/mdast-util-to-hast-13.2.0.tgz#5ca58e5b921cc0a3ded1bc02eed79a4fe4fe41f4" + integrity sha512-QGYKEuUsYT9ykKBCMOEDLsU5JRObWQusAolFMeko/tYPufNkRffBAQjIE+99jbA87xv6FgmjLtwjh9wBWajwAA== + dependencies: + "@types/hast" "^3.0.0" + "@types/mdast" "^4.0.0" + "@ungap/structured-clone" "^1.0.0" + devlop "^1.0.0" + micromark-util-sanitize-uri "^2.0.0" + trim-lines "^3.0.0" + unist-util-position "^5.0.0" + unist-util-visit "^5.0.0" + vfile "^6.0.0" + +mdast-util-to-markdown@^2.0.0: + version "2.1.2" + resolved "https://registry.yarnpkg.com/mdast-util-to-markdown/-/mdast-util-to-markdown-2.1.2.tgz#f910ffe60897f04bb4b7e7ee434486f76288361b" + integrity sha512-xj68wMTvGXVOKonmog6LwyJKrYXZPvlwabaryTjLh9LuvovB/KAH+kvi8Gjj+7rJjsFi23nkUxRQv1KqSroMqA== + dependencies: + "@types/mdast" "^4.0.0" + "@types/unist" "^3.0.0" + longest-streak "^3.0.0" + mdast-util-phrasing "^4.0.0" + mdast-util-to-string "^4.0.0" + micromark-util-classify-character "^2.0.0" + micromark-util-decode-string "^2.0.0" + unist-util-visit "^5.0.0" + zwitch "^2.0.0" + +mdast-util-to-string@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/mdast-util-to-string/-/mdast-util-to-string-4.0.0.tgz#7a5121475556a04e7eddeb67b264aae79d312814" + integrity sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg== + dependencies: + "@types/mdast" "^4.0.0" + +merge2@^1.3.0: + version "1.4.1" + resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae" + integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg== + +micromark-core-commonmark@^2.0.0: + version "2.0.2" + resolved "https://registry.yarnpkg.com/micromark-core-commonmark/-/micromark-core-commonmark-2.0.2.tgz#6a45bbb139e126b3f8b361a10711ccc7c6e15e93" + integrity sha512-FKjQKbxd1cibWMM1P9N+H8TwlgGgSkWZMmfuVucLCHaYqeSvJ0hFeHsIa65pA2nYbes0f8LDHPMrd9X7Ujxg9w== + dependencies: + decode-named-character-reference "^1.0.0" + devlop "^1.0.0" + micromark-factory-destination "^2.0.0" + micromark-factory-label "^2.0.0" + micromark-factory-space "^2.0.0" + micromark-factory-title "^2.0.0" + micromark-factory-whitespace "^2.0.0" + micromark-util-character "^2.0.0" + micromark-util-chunked "^2.0.0" + micromark-util-classify-character "^2.0.0" + micromark-util-html-tag-name "^2.0.0" + micromark-util-normalize-identifier "^2.0.0" + micromark-util-resolve-all "^2.0.0" + micromark-util-subtokenize "^2.0.0" + micromark-util-symbol "^2.0.0" + micromark-util-types "^2.0.0" + +micromark-factory-destination@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/micromark-factory-destination/-/micromark-factory-destination-2.0.1.tgz#8fef8e0f7081f0474fbdd92deb50c990a0264639" + integrity sha512-Xe6rDdJlkmbFRExpTOmRj9N3MaWmbAgdpSrBQvCFqhezUn4AHqJHbaEnfbVYYiexVSs//tqOdY/DxhjdCiJnIA== + dependencies: + micromark-util-character "^2.0.0" + micromark-util-symbol "^2.0.0" + micromark-util-types "^2.0.0" + +micromark-factory-label@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/micromark-factory-label/-/micromark-factory-label-2.0.1.tgz#5267efa97f1e5254efc7f20b459a38cb21058ba1" + integrity sha512-VFMekyQExqIW7xIChcXn4ok29YE3rnuyveW3wZQWWqF4Nv9Wk5rgJ99KzPvHjkmPXF93FXIbBp6YdW3t71/7Vg== + dependencies: + devlop "^1.0.0" + micromark-util-character "^2.0.0" + micromark-util-symbol "^2.0.0" + micromark-util-types "^2.0.0" + +micromark-factory-space@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/micromark-factory-space/-/micromark-factory-space-2.0.1.tgz#36d0212e962b2b3121f8525fc7a3c7c029f334fc" + integrity sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg== + dependencies: + micromark-util-character "^2.0.0" + micromark-util-types "^2.0.0" + +micromark-factory-title@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/micromark-factory-title/-/micromark-factory-title-2.0.1.tgz#237e4aa5d58a95863f01032d9ee9b090f1de6e94" + integrity sha512-5bZ+3CjhAd9eChYTHsjy6TGxpOFSKgKKJPJxr293jTbfry2KDoWkhBb6TcPVB4NmzaPhMs1Frm9AZH7OD4Cjzw== + dependencies: + micromark-factory-space "^2.0.0" + micromark-util-character "^2.0.0" + micromark-util-symbol "^2.0.0" + micromark-util-types "^2.0.0" + +micromark-factory-whitespace@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/micromark-factory-whitespace/-/micromark-factory-whitespace-2.0.1.tgz#06b26b2983c4d27bfcc657b33e25134d4868b0b1" + integrity sha512-Ob0nuZ3PKt/n0hORHyvoD9uZhr+Za8sFoP+OnMcnWK5lngSzALgQYKMr9RJVOWLqQYuyn6ulqGWSXdwf6F80lQ== + dependencies: + micromark-factory-space "^2.0.0" + micromark-util-character "^2.0.0" + micromark-util-symbol "^2.0.0" + micromark-util-types "^2.0.0" + +micromark-util-character@^2.0.0: + version "2.1.1" + resolved "https://registry.yarnpkg.com/micromark-util-character/-/micromark-util-character-2.1.1.tgz#2f987831a40d4c510ac261e89852c4e9703ccda6" + integrity sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q== + dependencies: + micromark-util-symbol "^2.0.0" + micromark-util-types "^2.0.0" + +micromark-util-chunked@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/micromark-util-chunked/-/micromark-util-chunked-2.0.1.tgz#47fbcd93471a3fccab86cff03847fc3552db1051" + integrity sha512-QUNFEOPELfmvv+4xiNg2sRYeS/P84pTW0TCgP5zc9FpXetHY0ab7SxKyAQCNCc1eK0459uoLI1y5oO5Vc1dbhA== + dependencies: + micromark-util-symbol "^2.0.0" + +micromark-util-classify-character@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/micromark-util-classify-character/-/micromark-util-classify-character-2.0.1.tgz#d399faf9c45ca14c8b4be98b1ea481bced87b629" + integrity sha512-K0kHzM6afW/MbeWYWLjoHQv1sgg2Q9EccHEDzSkxiP/EaagNzCm7T/WMKZ3rjMbvIpvBiZgwR3dKMygtA4mG1Q== + dependencies: + micromark-util-character "^2.0.0" + micromark-util-symbol "^2.0.0" + micromark-util-types "^2.0.0" + +micromark-util-combine-extensions@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/micromark-util-combine-extensions/-/micromark-util-combine-extensions-2.0.1.tgz#2a0f490ab08bff5cc2fd5eec6dd0ca04f89b30a9" + integrity sha512-OnAnH8Ujmy59JcyZw8JSbK9cGpdVY44NKgSM7E9Eh7DiLS2E9RNQf0dONaGDzEG9yjEl5hcqeIsj4hfRkLH/Bg== + dependencies: + micromark-util-chunked "^2.0.0" + micromark-util-types "^2.0.0" + +micromark-util-decode-numeric-character-reference@^2.0.0: + version "2.0.2" + resolved "https://registry.yarnpkg.com/micromark-util-decode-numeric-character-reference/-/micromark-util-decode-numeric-character-reference-2.0.2.tgz#fcf15b660979388e6f118cdb6bf7d79d73d26fe5" + integrity sha512-ccUbYk6CwVdkmCQMyr64dXz42EfHGkPQlBj5p7YVGzq8I7CtjXZJrubAYezf7Rp+bjPseiROqe7G6foFd+lEuw== + dependencies: + micromark-util-symbol "^2.0.0" + +micromark-util-decode-string@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/micromark-util-decode-string/-/micromark-util-decode-string-2.0.1.tgz#6cb99582e5d271e84efca8e61a807994d7161eb2" + integrity sha512-nDV/77Fj6eH1ynwscYTOsbK7rR//Uj0bZXBwJZRfaLEJ1iGBR6kIfNmlNqaqJf649EP0F3NWNdeJi03elllNUQ== + dependencies: + decode-named-character-reference "^1.0.0" + micromark-util-character "^2.0.0" + micromark-util-decode-numeric-character-reference "^2.0.0" + micromark-util-symbol "^2.0.0" + +micromark-util-encode@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/micromark-util-encode/-/micromark-util-encode-2.0.1.tgz#0d51d1c095551cfaac368326963cf55f15f540b8" + integrity sha512-c3cVx2y4KqUnwopcO9b/SCdo2O67LwJJ/UyqGfbigahfegL9myoEFoDYZgkT7f36T0bLrM9hZTAaAyH+PCAXjw== + +micromark-util-html-tag-name@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/micromark-util-html-tag-name/-/micromark-util-html-tag-name-2.0.1.tgz#e40403096481986b41c106627f98f72d4d10b825" + integrity sha512-2cNEiYDhCWKI+Gs9T0Tiysk136SnR13hhO8yW6BGNyhOC4qYFnwF1nKfD3HFAIXA5c45RrIG1ub11GiXeYd1xA== + +micromark-util-normalize-identifier@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/micromark-util-normalize-identifier/-/micromark-util-normalize-identifier-2.0.1.tgz#c30d77b2e832acf6526f8bf1aa47bc9c9438c16d" + integrity sha512-sxPqmo70LyARJs0w2UclACPUUEqltCkJ6PhKdMIDuJ3gSf/Q+/GIe3WKl0Ijb/GyH9lOpUkRAO2wp0GVkLvS9Q== + dependencies: + micromark-util-symbol "^2.0.0" + +micromark-util-resolve-all@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/micromark-util-resolve-all/-/micromark-util-resolve-all-2.0.1.tgz#e1a2d62cdd237230a2ae11839027b19381e31e8b" + integrity sha512-VdQyxFWFT2/FGJgwQnJYbe1jjQoNTS4RjglmSjTUlpUMa95Htx9NHeYW4rGDJzbjvCsl9eLjMQwGeElsqmzcHg== + dependencies: + micromark-util-types "^2.0.0" + +micromark-util-sanitize-uri@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-2.0.1.tgz#ab89789b818a58752b73d6b55238621b7faa8fd7" + integrity sha512-9N9IomZ/YuGGZZmQec1MbgxtlgougxTodVwDzzEouPKo3qFWvymFHWcnDi2vzV1ff6kas9ucW+o3yzJK9YB1AQ== + dependencies: + micromark-util-character "^2.0.0" + micromark-util-encode "^2.0.0" + micromark-util-symbol "^2.0.0" + +micromark-util-subtokenize@^2.0.0: + version "2.0.4" + resolved "https://registry.yarnpkg.com/micromark-util-subtokenize/-/micromark-util-subtokenize-2.0.4.tgz#50d8ca981373c717f497dc64a0dbfccce6c03ed2" + integrity sha512-N6hXjrin2GTJDe3MVjf5FuXpm12PGm80BrUAeub9XFXca8JZbP+oIwY4LJSVwFUCL1IPm/WwSVUN7goFHmSGGQ== + dependencies: + devlop "^1.0.0" + micromark-util-chunked "^2.0.0" + micromark-util-symbol "^2.0.0" + micromark-util-types "^2.0.0" + +micromark-util-symbol@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz#e5da494e8eb2b071a0d08fb34f6cefec6c0a19b8" + integrity sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q== + +micromark-util-types@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/micromark-util-types/-/micromark-util-types-2.0.1.tgz#a3edfda3022c6c6b55bfb049ef5b75d70af50709" + integrity sha512-534m2WhVTddrcKVepwmVEVnUAmtrx9bfIjNoQHRqfnvdaHQiFytEhJoTgpWJvDEXCO5gLTQh3wYC1PgOJA4NSQ== + +micromark@^4.0.0: + version "4.0.1" + resolved "https://registry.yarnpkg.com/micromark/-/micromark-4.0.1.tgz#294c2f12364759e5f9e925a767ae3dfde72223ff" + integrity sha512-eBPdkcoCNvYcxQOAKAlceo5SNdzZWfF+FcSupREAzdAh9rRmE239CEQAiTwIgblwnoM8zzj35sZ5ZwvSEOF6Kw== + dependencies: + "@types/debug" "^4.0.0" + debug "^4.0.0" + decode-named-character-reference "^1.0.0" + devlop "^1.0.0" + micromark-core-commonmark "^2.0.0" + micromark-factory-space "^2.0.0" + micromark-util-character "^2.0.0" + micromark-util-chunked "^2.0.0" + micromark-util-combine-extensions "^2.0.0" + micromark-util-decode-numeric-character-reference "^2.0.0" + micromark-util-encode "^2.0.0" + micromark-util-normalize-identifier "^2.0.0" + micromark-util-resolve-all "^2.0.0" + micromark-util-sanitize-uri "^2.0.0" + micromark-util-subtokenize "^2.0.0" + micromark-util-symbol "^2.0.0" + micromark-util-types "^2.0.0" + +micromatch@^4.0.4: + version "4.0.8" + resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.8.tgz#d66fa18f3a47076789320b9b1af32bd86d9fa202" + integrity sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA== + dependencies: + braces "^3.0.3" + picomatch "^2.3.1" + +minimatch@^3.1.2: + version "3.1.2" + resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" + integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== + dependencies: + brace-expansion "^1.1.7" + +minimatch@^9.0.4: + version "9.0.5" + resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-9.0.5.tgz#d74f9dd6b57d83d8e98cfb82133b03978bc929e5" + integrity sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow== + dependencies: + brace-expansion "^2.0.1" + +ms@^2.1.3: + version "2.1.3" + resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" + integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== + +nanoid@^3.3.8: + version "3.3.11" + resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.11.tgz#4f4f112cefbe303202f2199838128936266d185b" + integrity sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w== + +natural-compare@^1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" + integrity sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw== + +no-case@^3.0.4: + version "3.0.4" + resolved "https://registry.yarnpkg.com/no-case/-/no-case-3.0.4.tgz#d361fd5c9800f558551a8369fc0dcd4662b6124d" + integrity sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg== + dependencies: + lower-case "^2.0.2" + tslib "^2.0.3" + +node-fetch@^2.6.7: + version "2.7.0" + resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.7.0.tgz#d0f0fa6e3e2dc1d27efcd8ad99d550bda94d187d" + integrity sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A== + dependencies: + whatwg-url "^5.0.0" + +node-releases@^2.0.19: + version "2.0.19" + resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.19.tgz#9e445a52950951ec4d177d843af370b411caf314" + integrity sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw== + +object-assign@^4.1.1: + version "4.1.1" + resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" + integrity sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg== + +optionator@^0.9.3: + version "0.9.4" + resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.9.4.tgz#7ea1c1a5d91d764fb282139c88fe11e182a3a734" + integrity sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g== + dependencies: + deep-is "^0.1.3" + fast-levenshtein "^2.0.6" + levn "^0.4.1" + prelude-ls "^1.2.1" + type-check "^0.4.0" + word-wrap "^1.2.5" + +p-limit@^3.0.2: + version "3.1.0" + resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-3.1.0.tgz#e1daccbe78d0d1388ca18c64fea38e3e57e3706b" + integrity sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ== + dependencies: + yocto-queue "^0.1.0" + +p-locate@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-5.0.0.tgz#83c8315c6785005e3bd021839411c9e110e6d834" + integrity sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw== + dependencies: + p-limit "^3.0.2" + +parent-module@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" + integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g== + dependencies: + callsites "^3.0.0" + +parse-entities@^4.0.0: + version "4.0.2" + resolved "https://registry.yarnpkg.com/parse-entities/-/parse-entities-4.0.2.tgz#61d46f5ed28e4ee62e9ddc43d6b010188443f159" + integrity sha512-GG2AQYWoLgL877gQIKeRPGO1xF9+eG1ujIb5soS5gPvLQ1y2o8FL90w2QWNdf9I361Mpp7726c+lj3U0qK1uGw== + dependencies: + "@types/unist" "^2.0.0" + character-entities-legacy "^3.0.0" + character-reference-invalid "^2.0.0" + decode-named-character-reference "^1.0.0" + is-alphanumerical "^2.0.0" + is-decimal "^2.0.0" + is-hexadecimal "^2.0.0" + +parse-json@^5.2.0: + version "5.2.0" + resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-5.2.0.tgz#c76fc66dee54231c962b22bcc8a72cf2f99753cd" + integrity sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg== + dependencies: + "@babel/code-frame" "^7.0.0" + error-ex "^1.3.1" + json-parse-even-better-errors "^2.3.0" + lines-and-columns "^1.1.6" + +path-exists@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" + integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== + +path-key@^3.1.0: + version "3.1.1" + resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" + integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== + +path-type@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b" + integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw== + +picocolors@^1.0.0, picocolors@^1.1.0, picocolors@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.1.1.tgz#3d321af3eab939b083c8f929a1d12cda81c26b6b" + integrity sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA== + +picomatch@^2.3.1: + version "2.3.1" + resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" + integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== + +picomatch@^4.0.2: + version "4.0.2" + resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-4.0.2.tgz#77c742931e8f3b8820946c76cd0c1f13730d1dab" + integrity sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg== + +postcss@^8.5.3: + version "8.5.3" + resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.5.3.tgz#1463b6f1c7fb16fe258736cba29a2de35237eafb" + integrity sha512-dle9A3yYxlBSrt8Fu+IpjGT8SY8hN0mlaA6GY8t0P5PjIOZemULz/E2Bnm/2dcUOena75OTNkHI76uZBNUUq3A== + dependencies: + nanoid "^3.3.8" + picocolors "^1.1.1" + source-map-js "^1.2.1" + +prelude-ls@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396" + integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g== + +prop-types@^15.6.2, prop-types@^15.7.2: + version "15.8.1" + resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.8.1.tgz#67d87bf1a694f48435cf332c24af10214a3140b5" + integrity sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg== + dependencies: + loose-envify "^1.4.0" + object-assign "^4.1.1" + react-is "^16.13.1" + +property-information@^6.0.0: + version "6.5.0" + resolved "https://registry.yarnpkg.com/property-information/-/property-information-6.5.0.tgz#6212fbb52ba757e92ef4fb9d657563b933b7ffec" + integrity sha512-PgTgs/BlvHxOu8QuEN7wi5A0OmXaBcHpmCSTehcs6Uuu9IkDIEo13Hy7n898RHfrQ49vKCoGeWZSaAK01nwVig== + +psl@^1.1.33: + version "1.15.0" + resolved "https://registry.yarnpkg.com/psl/-/psl-1.15.0.tgz#bdace31896f1d97cec6a79e8224898ce93d974c6" + integrity sha512-JZd3gMVBAVQkSs6HdNZo9Sdo0LNcQeMNP3CozBJb3JYC/QUYZTnKxP+f8oWRX4rHP5EurWxqAHTSwUCjlNKa1w== + dependencies: + punycode "^2.3.1" + +punycode@^2.1.0, punycode@^2.1.1, punycode@^2.3.1: + version "2.3.1" + resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.3.1.tgz#027422e2faec0b25e1549c3e1bd8309b9133b6e5" + integrity sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg== + +qrcode.react@^4.2.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/qrcode.react/-/qrcode.react-4.2.0.tgz#1bce8363f348197d145c0da640929a24c83cbca3" + integrity sha512-QpgqWi8rD9DsS9EP3z7BT+5lY5SFhsqGjpgW5DY/i3mK4M9DTBNz3ErMi8BWYEfI3L0d8GIbGmcdFAS1uIRGjA== + +querystringify@^2.1.1: + version "2.2.0" + resolved "https://registry.yarnpkg.com/querystringify/-/querystringify-2.2.0.tgz#3345941b4153cb9d082d8eee4cda2016a9aef7f6" + integrity sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ== + +queue-microtask@^1.2.2: + version "1.2.3" + resolved "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243" + integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A== + +react-dom@18: + version "18.3.1" + resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-18.3.1.tgz#c2265d79511b57d479b3dd3fdfa51536494c5cb4" + integrity sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw== + dependencies: + loose-envify "^1.1.0" + scheduler "^0.23.2" + +react-fast-compare@^3.1.1: + version "3.2.2" + resolved "https://registry.yarnpkg.com/react-fast-compare/-/react-fast-compare-3.2.2.tgz#929a97a532304ce9fee4bcae44234f1ce2c21d49" + integrity sha512-nsO+KSNgo1SbJqJEYRE9ERzo7YtYbou/OqjSQKxV7jcKox7+usiUVZOAC+XnDOABXggQTno0Y1CpVnuWEc1boQ== + +react-helmet@^6.1.0: + version "6.1.0" + resolved "https://registry.yarnpkg.com/react-helmet/-/react-helmet-6.1.0.tgz#a750d5165cb13cf213e44747502652e794468726" + integrity sha512-4uMzEY9nlDlgxr61NL3XbKRy1hEkXmKNXhjbAIOVw5vcFrsdYbH2FEwcNyWvWinl103nXgzYNlns9ca+8kFiWw== + dependencies: + object-assign "^4.1.1" + prop-types "^15.7.2" + react-fast-compare "^3.1.1" + react-side-effect "^2.1.0" + +react-is@^16.13.1: + version "16.13.1" + resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4" + integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ== + +react-is@^17.0.2: + version "17.0.2" + resolved "https://registry.yarnpkg.com/react-is/-/react-is-17.0.2.tgz#e691d4a8e9c789365655539ab372762b0efb54f0" + integrity sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w== + +react-markdown@^10.1.0: + version "10.1.0" + resolved "https://registry.yarnpkg.com/react-markdown/-/react-markdown-10.1.0.tgz#e22bc20faddbc07605c15284255653c0f3bad5ca" + integrity sha512-qKxVopLT/TyA6BX3Ue5NwabOsAzm0Q7kAPwq6L+wWDwisYs7R8vZ0nRXqq6rkueboxpkjvLGU9fWifiX/ZZFxQ== + dependencies: + "@types/hast" "^3.0.0" + "@types/mdast" "^4.0.0" + devlop "^1.0.0" + hast-util-to-jsx-runtime "^2.0.0" + html-url-attributes "^3.0.0" + mdast-util-to-hast "^13.0.0" + remark-parse "^11.0.0" + remark-rehype "^11.0.0" + unified "^11.0.0" + unist-util-visit "^5.0.0" + vfile "^6.0.0" + +react-refresh@^0.14.2: + version "0.14.2" + resolved "https://registry.yarnpkg.com/react-refresh/-/react-refresh-0.14.2.tgz#3833da01ce32da470f1f936b9d477da5c7028bf9" + integrity sha512-jCvmsr+1IUSMUyzOkRcvnVbX3ZYC6g9TDrDbFuFmRDq7PD4yaGbLKNQL6k2jnArV8hjYxh7hVhAZB6s9HDGpZA== + +react-router-dom@^7.4.0: + version "7.4.0" + resolved "https://registry.yarnpkg.com/react-router-dom/-/react-router-dom-7.4.0.tgz#cb97968f4233c0bec57c9662442a7c070b4c31e9" + integrity sha512-VlksBPf3n2bijPvnA7nkTsXxMAKOj+bWp4R9c3i+bnwlSOFAGOkJkKhzy/OsRkWaBMICqcAl1JDzh9ZSOze9CA== + dependencies: + react-router "7.4.0" + +react-router@7.4.0: + version "7.4.0" + resolved "https://registry.yarnpkg.com/react-router/-/react-router-7.4.0.tgz#9787041425bc4bf52e6d472b6ccfd78a43ace133" + integrity sha512-Y2g5ObjkvX3VFeVt+0CIPuYd9PpgqCslG7ASSIdN73LwA1nNWzcMLaoMRJfP3prZFI92svxFwbn7XkLJ+UPQ6A== + dependencies: + "@types/cookie" "^0.6.0" + cookie "^1.0.1" + set-cookie-parser "^2.6.0" + turbo-stream "2.4.0" + +react-side-effect@^2.1.0: + version "2.1.2" + resolved "https://registry.yarnpkg.com/react-side-effect/-/react-side-effect-2.1.2.tgz#dc6345b9e8f9906dc2eeb68700b615e0b4fe752a" + integrity sha512-PVjOcvVOyIILrYoyGEpDN3vmYNLdy1CajSFNt4TDsVQC5KpTijDvWVoR+/7Rz2xT978D8/ZtFceXxzsPwZEDvw== + +react-transition-group@^4.4.1: + version "4.4.5" + resolved "https://registry.yarnpkg.com/react-transition-group/-/react-transition-group-4.4.5.tgz#e53d4e3f3344da8521489fbef8f2581d42becdd1" + integrity sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g== + dependencies: + "@babel/runtime" "^7.5.5" + dom-helpers "^5.0.1" + loose-envify "^1.4.0" + prop-types "^15.6.2" + +react@18: + version "18.3.1" + resolved "https://registry.yarnpkg.com/react/-/react-18.3.1.tgz#49ab892009c53933625bd16b2533fc754cab2891" + integrity sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ== + dependencies: + loose-envify "^1.1.0" + +regenerator-runtime@^0.14.0: + version "0.14.1" + resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz#356ade10263f685dda125100cd862c1db895327f" + integrity sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw== + +remark-parse@^11.0.0: + version "11.0.0" + resolved "https://registry.yarnpkg.com/remark-parse/-/remark-parse-11.0.0.tgz#aa60743fcb37ebf6b069204eb4da304e40db45a1" + integrity sha512-FCxlKLNGknS5ba/1lmpYijMUzX2esxW5xQqjWxw2eHFfS2MSdaHVINFmhjo+qN1WhZhNimq0dZATN9pH0IDrpA== + dependencies: + "@types/mdast" "^4.0.0" + mdast-util-from-markdown "^2.0.0" + micromark-util-types "^2.0.0" + unified "^11.0.0" + +remark-rehype@^11.0.0: + version "11.1.1" + resolved "https://registry.yarnpkg.com/remark-rehype/-/remark-rehype-11.1.1.tgz#f864dd2947889a11997c0a2667cd6b38f685bca7" + integrity sha512-g/osARvjkBXb6Wo0XvAeXQohVta8i84ACbenPpoSsxTOQH/Ae0/RGP4WZgnMH5pMLpsj4FG7OHmcIcXxpza8eQ== + dependencies: + "@types/hast" "^3.0.0" + "@types/mdast" "^4.0.0" + mdast-util-to-hast "^13.0.0" + unified "^11.0.0" + vfile "^6.0.0" + +requires-port@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/requires-port/-/requires-port-1.0.0.tgz#925d2601d39ac485e091cf0da5c6e694dc3dcaff" + integrity sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ== + +resolve-from@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" + integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== + +reusify@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76" + integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw== + +rollup@^4.30.1: + version "4.37.0" + resolved "https://registry.yarnpkg.com/rollup/-/rollup-4.37.0.tgz#e4172f8bdb6ea7df08a1b0acf99abeccb2250378" + integrity sha512-iAtQy/L4QFU+rTJ1YUjXqJOJzuwEghqWzCEYD2FEghT7Gsy1VdABntrO4CLopA5IkflTyqNiLNwPcOJ3S7UKLg== + dependencies: + "@types/estree" "1.0.6" + optionalDependencies: + "@rollup/rollup-android-arm-eabi" "4.37.0" + "@rollup/rollup-android-arm64" "4.37.0" + "@rollup/rollup-darwin-arm64" "4.37.0" + "@rollup/rollup-darwin-x64" "4.37.0" + "@rollup/rollup-freebsd-arm64" "4.37.0" + "@rollup/rollup-freebsd-x64" "4.37.0" + "@rollup/rollup-linux-arm-gnueabihf" "4.37.0" + "@rollup/rollup-linux-arm-musleabihf" "4.37.0" + "@rollup/rollup-linux-arm64-gnu" "4.37.0" + "@rollup/rollup-linux-arm64-musl" "4.37.0" + "@rollup/rollup-linux-loongarch64-gnu" "4.37.0" + "@rollup/rollup-linux-powerpc64le-gnu" "4.37.0" + "@rollup/rollup-linux-riscv64-gnu" "4.37.0" + "@rollup/rollup-linux-riscv64-musl" "4.37.0" + "@rollup/rollup-linux-s390x-gnu" "4.37.0" + "@rollup/rollup-linux-x64-gnu" "4.37.0" + "@rollup/rollup-linux-x64-musl" "4.37.0" + "@rollup/rollup-win32-arm64-msvc" "4.37.0" + "@rollup/rollup-win32-ia32-msvc" "4.37.0" + "@rollup/rollup-win32-x64-msvc" "4.37.0" + fsevents "~2.3.2" + +rtl-css-js@^1.16.1: + version "1.16.1" + resolved "https://registry.yarnpkg.com/rtl-css-js/-/rtl-css-js-1.16.1.tgz#4b48b4354b0ff917a30488d95100fbf7219a3e80" + integrity sha512-lRQgou1mu19e+Ya0LsTvKrVJ5TYUbqCVPAiImX3UfLTenarvPUl1QFdvu5Z3PYmHT9RCcwIfbjRQBntExyj3Zg== + dependencies: + "@babel/runtime" "^7.1.2" + +run-parallel@^1.1.9: + version "1.2.0" + resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.2.0.tgz#66d1368da7bdf921eb9d95bd1a9229e7f21a43ee" + integrity sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA== + dependencies: + queue-microtask "^1.2.2" + +scheduler@^0.19.0, scheduler@^0.23.2: + version "0.19.1" + resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.19.1.tgz#4f3e2ed2c1a7d65681f4c854fa8c5a1ccb40f196" + integrity sha512-n/zwRWRYSUj0/3g/otKDRPMh6qv2SYMWNq85IEa8iZyAv8od9zDYpGSnpBEjNgcMNq6Scbu5KfIPxNF72R/2EA== + dependencies: + loose-envify "^1.1.0" + object-assign "^4.1.1" + +semver@^6.3.1: + version "6.3.1" + resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.1.tgz#556d2ef8689146e46dcea4bfdd095f3434dffcb4" + integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA== + +semver@^7.6.0: + version "7.6.3" + resolved "https://registry.yarnpkg.com/semver/-/semver-7.6.3.tgz#980f7b5550bc175fb4dc09403085627f9eb33143" + integrity sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A== + +set-cookie-parser@^2.4.8, set-cookie-parser@^2.6.0: + version "2.7.1" + resolved "https://registry.yarnpkg.com/set-cookie-parser/-/set-cookie-parser-2.7.1.tgz#3016f150072202dfbe90fadee053573cc89d2943" + integrity sha512-IOc8uWeOZgnb3ptbCURJWNjWUPcO3ZnTTdzsurqERrP6nPyv+paC55vJM0LpOlT2ne+Ix+9+CRG1MNLlyZ4GjQ== + +shebang-command@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" + integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== + dependencies: + shebang-regex "^3.0.0" + +shebang-regex@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" + integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== + +snake-case@^3.0.4: + version "3.0.4" + resolved "https://registry.yarnpkg.com/snake-case/-/snake-case-3.0.4.tgz#4f2bbd568e9935abdfd593f34c691dadb49c452c" + integrity sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg== + dependencies: + dot-case "^3.0.4" + tslib "^2.0.3" + +source-map-js@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.2.1.tgz#1ce5650fddd87abc099eda37dcff024c2667ae46" + integrity sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA== + +space-separated-tokens@^2.0.0: + version "2.0.2" + resolved "https://registry.yarnpkg.com/space-separated-tokens/-/space-separated-tokens-2.0.2.tgz#1ecd9d2350a3844572c3f4a312bceb018348859f" + integrity sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q== + +stringify-entities@^4.0.0: + version "4.0.4" + resolved "https://registry.yarnpkg.com/stringify-entities/-/stringify-entities-4.0.4.tgz#b3b79ef5f277cc4ac73caeb0236c5ba939b3a4f3" + integrity sha512-IwfBptatlO+QCJUo19AqvrPNqlVMpW9YEL2LIVY+Rpv2qsjCGxaDLNRgeGsQWJhfItebuJhsGSLjaBbNSQ+ieg== + dependencies: + character-entities-html4 "^2.0.0" + character-entities-legacy "^3.0.0" + +strip-json-comments@^3.1.1: + version "3.1.1" + resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006" + integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== + +style-to-object@^1.0.0: + version "1.0.8" + resolved "https://registry.yarnpkg.com/style-to-object/-/style-to-object-1.0.8.tgz#67a29bca47eaa587db18118d68f9d95955e81292" + integrity sha512-xT47I/Eo0rwJmaXC4oilDGDWLohVhR6o/xAQcPQN8q6QBuZVL8qMYL85kLmST5cPjAorwvqIA4qXTRQoYHaL6g== + dependencies: + inline-style-parser "0.2.4" + +stylis@^4.2.0: + version "4.3.4" + resolved "https://registry.yarnpkg.com/stylis/-/stylis-4.3.4.tgz#ca5c6c4a35c4784e4e93a2a24dc4e9fa075250a4" + integrity sha512-osIBl6BGUmSfDkyH2mB7EFvCJntXDrLhKjHTRj/rK6xLH0yuPrHULDRQzKokSOD4VoorhtKpfcfW1GAntu8now== + +supports-color@^7.1.0: + version "7.2.0" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" + integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== + dependencies: + has-flag "^4.0.0" + +svg-parser@^2.0.4: + version "2.0.4" + resolved "https://registry.yarnpkg.com/svg-parser/-/svg-parser-2.0.4.tgz#fdc2e29e13951736140b76cb122c8ee6630eb6b5" + integrity sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ== + +tabster@^8.2.0: + version "8.2.0" + resolved "https://registry.yarnpkg.com/tabster/-/tabster-8.2.0.tgz#474b32af394495b0835d4eceeab6594f276486d0" + integrity sha512-Gvplk/Yl/12aVFA6FPOqGcq31Qv8hbPfYO0N+6IxrRgRT6eSLsipT6gkZBYjyOwGsp6BD5XlZAuJgupfG/GHoA== + dependencies: + keyborg "2.6.0" + tslib "^2.3.1" + +tabster@^8.5.0: + version "8.5.2" + resolved "https://registry.yarnpkg.com/tabster/-/tabster-8.5.2.tgz#b08deefc1d3b293e29c91dedf8471391eba59cf0" + integrity sha512-0kVcNM09sefFE5FybfX/bLuyPziuQDnGzZW7RQWJuBKh438vh3Y0fARrkiPaMwMD/4uph7ScwETfOvdDwOaJNQ== + dependencies: + keyborg "2.6.0" + tslib "^2.3.1" + +to-regex-range@^5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" + integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== + dependencies: + is-number "^7.0.0" + +tough-cookie@^4.0.0: + version "4.1.4" + resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-4.1.4.tgz#945f1461b45b5a8c76821c33ea49c3ac192c1b36" + integrity sha512-Loo5UUvLD9ScZ6jh8beX1T6sO1w2/MpCRpEP7V280GKMVUQ0Jzar2U3UJPsrdbziLEMMhu3Ujnq//rhiFuIeag== + dependencies: + psl "^1.1.33" + punycode "^2.1.1" + universalify "^0.2.0" + url-parse "^1.5.3" + +tr46@~0.0.3: + version "0.0.3" + resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a" + integrity sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw== + +trim-lines@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/trim-lines/-/trim-lines-3.0.1.tgz#d802e332a07df861c48802c04321017b1bd87338" + integrity sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg== + +trough@^2.0.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/trough/-/trough-2.2.0.tgz#94a60bd6bd375c152c1df911a4b11d5b0256f50f" + integrity sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw== + +ts-api-utils@^2.0.1: + version "2.1.0" + resolved "https://registry.yarnpkg.com/ts-api-utils/-/ts-api-utils-2.1.0.tgz#595f7094e46eed364c13fd23e75f9513d29baf91" + integrity sha512-CUgTZL1irw8u29bzrOD/nH85jqyc74D6SshFgujOIA7osm2Rz7dYH77agkx7H4FBNxDq7Cjf+IjaX/8zwFW+ZQ== + +tslib@^2.0.3, tslib@^2.1.0, tslib@^2.3.1, tslib@^2.8.0: + version "2.8.1" + resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.8.1.tgz#612efe4ed235d567e8aba5f2a5fab70280ade83f" + integrity sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w== + +turbo-stream@2.4.0: + version "2.4.0" + resolved "https://registry.yarnpkg.com/turbo-stream/-/turbo-stream-2.4.0.tgz#1e4fca6725e90fa14ac4adb782f2d3759a5695f0" + integrity sha512-FHncC10WpBd2eOmGwpmQsWLDoK4cqsA/UT/GqNoaKOQnT8uzhtCbg3EoUDMvqpOSAI0S26mr0rkjzbOO6S3v1g== + +type-check@^0.4.0, type-check@~0.4.0: + version "0.4.0" + resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.4.0.tgz#07b8203bfa7056c0657050e3ccd2c37730bab8f1" + integrity sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew== + dependencies: + prelude-ls "^1.2.1" + +typescript-eslint@^8.28.0: + version "8.28.0" + resolved "https://registry.yarnpkg.com/typescript-eslint/-/typescript-eslint-8.28.0.tgz#70b0ac51dc15eeb9fcfad66c0b0ec78f3ad341e3" + integrity sha512-jfZtxJoHm59bvoCMYCe2BM0/baMswRhMmYhy+w6VfcyHrjxZ0OJe0tGasydCpIpA+A/WIJhTyZfb3EtwNC/kHQ== + dependencies: + "@typescript-eslint/eslint-plugin" "8.28.0" + "@typescript-eslint/parser" "8.28.0" + "@typescript-eslint/utils" "8.28.0" + +typescript@^5.8.2: + version "5.8.2" + resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.8.2.tgz#8170b3702f74b79db2e5a96207c15e65807999e4" + integrity sha512-aJn6wq13/afZp/jT9QZmwEjDqqvSGp1VT5GVg+f/t6/oVyrgXM6BY1h9BRh/O5p3PlUPAe+WuiEZOmb/49RqoQ== + +unified@^11.0.0: + version "11.0.5" + resolved "https://registry.yarnpkg.com/unified/-/unified-11.0.5.tgz#f66677610a5c0a9ee90cab2b8d4d66037026d9e1" + integrity sha512-xKvGhPWw3k84Qjh8bI3ZeJjqnyadK+GEFtazSfZv/rKeTkTjOJho6mFqh2SM96iIcZokxiOpg78GazTSg8+KHA== + dependencies: + "@types/unist" "^3.0.0" + bail "^2.0.0" + devlop "^1.0.0" + extend "^3.0.0" + is-plain-obj "^4.0.0" + trough "^2.0.0" + vfile "^6.0.0" + +unist-util-is@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/unist-util-is/-/unist-util-is-6.0.0.tgz#b775956486aff107a9ded971d996c173374be424" + integrity sha512-2qCTHimwdxLfz+YzdGfkqNlH0tLi9xjTnHddPmJwtIG9MGsdbutfTc4P+haPD7l7Cjxf/WZj+we5qfVPvvxfYw== + dependencies: + "@types/unist" "^3.0.0" + +unist-util-position@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/unist-util-position/-/unist-util-position-5.0.0.tgz#678f20ab5ca1207a97d7ea8a388373c9cf896be4" + integrity sha512-fucsC7HjXvkB5R3kTCO7kUjRdrS0BJt3M/FPxmHMBOm8JQi2BsHAHFsy27E0EolP8rp0NzXsJ+jNPyDWvOJZPA== + dependencies: + "@types/unist" "^3.0.0" + +unist-util-stringify-position@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/unist-util-stringify-position/-/unist-util-stringify-position-4.0.0.tgz#449c6e21a880e0855bf5aabadeb3a740314abac2" + integrity sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ== + dependencies: + "@types/unist" "^3.0.0" + +unist-util-visit-parents@^6.0.0: + version "6.0.1" + resolved "https://registry.yarnpkg.com/unist-util-visit-parents/-/unist-util-visit-parents-6.0.1.tgz#4d5f85755c3b8f0dc69e21eca5d6d82d22162815" + integrity sha512-L/PqWzfTP9lzzEa6CKs0k2nARxTdZduw3zyh8d2NVBnsyvHjSX4TWse388YrrQKbvI8w20fGjGlhgT96WwKykw== + dependencies: + "@types/unist" "^3.0.0" + unist-util-is "^6.0.0" + +unist-util-visit@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/unist-util-visit/-/unist-util-visit-5.0.0.tgz#a7de1f31f72ffd3519ea71814cccf5fd6a9217d6" + integrity sha512-MR04uvD+07cwl/yhVuVWAtw+3GOR/knlL55Nd/wAdblk27GCVt3lqpTivy/tkJcZoNPzTwS1Y+KMojlLDhoTzg== + dependencies: + "@types/unist" "^3.0.0" + unist-util-is "^6.0.0" + unist-util-visit-parents "^6.0.0" + +universalify@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.2.0.tgz#6451760566fa857534745ab1dde952d1b1761be0" + integrity sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg== + +update-browserslist-db@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.1.1.tgz#80846fba1d79e82547fb661f8d141e0945755fe5" + integrity sha512-R8UzCaa9Az+38REPiJ1tXlImTJXlVfgHZsglwBD/k6nj76ctsH1E3q4doGrukiLQd3sGQYu56r5+lo5r94l29A== + dependencies: + escalade "^3.2.0" + picocolors "^1.1.0" + +uri-js@^4.2.2: + version "4.4.1" + resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e" + integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg== + dependencies: + punycode "^2.1.0" + +url-parse@^1.5.3: + version "1.5.10" + resolved "https://registry.yarnpkg.com/url-parse/-/url-parse-1.5.10.tgz#9d3c2f736c1d75dd3bd2be507dcc111f1e2ea9c1" + integrity sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ== + dependencies: + querystringify "^2.1.1" + requires-port "^1.0.0" + +use-disposable@^1.0.1: + version "1.0.4" + resolved "https://registry.yarnpkg.com/use-disposable/-/use-disposable-1.0.4.tgz#9fb7b0cd4828fc8a271be16c136daefa2fd9ebca" + integrity sha512-j83t6AMLWUyb5zwlTDqf6dP9LezM9R0yTbI/b6olmdaGtCKQUe9pgJWV6dRaaQLcozypjIEp4EmZr2DkZGKLSg== + +use-sync-external-store@^1.2.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/use-sync-external-store/-/use-sync-external-store-1.4.0.tgz#adbc795d8eeb47029963016cefdf89dc799fcebc" + integrity sha512-9WXSPC5fMv61vaupRkCKCxsPxBocVnwakBEkMIHHpkTTg6icbJtg6jzgtLDm4bl3cSHAca52rYWih0k4K3PfHw== + +vfile-message@^4.0.0: + version "4.0.2" + resolved "https://registry.yarnpkg.com/vfile-message/-/vfile-message-4.0.2.tgz#c883c9f677c72c166362fd635f21fc165a7d1181" + integrity sha512-jRDZ1IMLttGj41KcZvlrYAaI3CfqpLpfpf+Mfig13viT6NKvRzWZ+lXz0Y5D60w6uJIBAOGq9mSHf0gktF0duw== + dependencies: + "@types/unist" "^3.0.0" + unist-util-stringify-position "^4.0.0" + +vfile@^6.0.0: + version "6.0.3" + resolved "https://registry.yarnpkg.com/vfile/-/vfile-6.0.3.tgz#3652ab1c496531852bf55a6bac57af981ebc38ab" + integrity sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q== + dependencies: + "@types/unist" "^3.0.0" + vfile-message "^4.0.0" + +vite-plugin-svgr@^4.3.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/vite-plugin-svgr/-/vite-plugin-svgr-4.3.0.tgz#742f16f11375996306c696ec323e4d23f6005075" + integrity sha512-Jy9qLB2/PyWklpYy0xk0UU3TlU0t2UMpJXZvf+hWII1lAmRHrOUKi11Uw8N3rxoNk7atZNYO3pR3vI1f7oi+6w== + dependencies: + "@rollup/pluginutils" "^5.1.3" + "@svgr/core" "^8.1.0" + "@svgr/plugin-jsx" "^8.1.0" + +vite@^6.2.3: + version "6.2.3" + resolved "https://registry.yarnpkg.com/vite/-/vite-6.2.3.tgz#249e92d32886981ab46bc1f049ac72abc6fa81e2" + integrity sha512-IzwM54g4y9JA/xAeBPNaDXiBF8Jsgl3VBQ2YQ/wOY6fyW3xMdSoltIV3Bo59DErdqdE6RxUfv8W69DvUorE4Eg== + dependencies: + esbuild "^0.25.0" + postcss "^8.5.3" + rollup "^4.30.1" + optionalDependencies: + fsevents "~2.3.3" + +webidl-conversions@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871" + integrity sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ== + +whatwg-url@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-5.0.0.tgz#966454e8765462e37644d3626f6742ce8b70965d" + integrity sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw== + dependencies: + tr46 "~0.0.3" + webidl-conversions "^3.0.0" + +which@^2.0.1: + version "2.0.2" + resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" + integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== + dependencies: + isexe "^2.0.0" + +word-wrap@^1.2.5: + version "1.2.5" + resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.5.tgz#d2c45c6dd4fbce621a66f136cbe328afd0410b34" + integrity sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA== + +ws@^7.4.5: + version "7.5.10" + resolved "https://registry.yarnpkg.com/ws/-/ws-7.5.10.tgz#58b5c20dc281633f6c19113f39b349bd8bd558d9" + integrity sha512-+dbF1tHwZpXcbOJdVOkzLDxZP1ailvSxM6ZweXTegylPny803bFhA+vqBYw4s31NSAk4S2Qz+AKXK9a4wkdjcQ== + +yallist@^3.0.2: + version "3.1.1" + resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.1.1.tgz#dbb7daf9bfd8bac9ab45ebf602b8cbad0d5d08fd" + integrity sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g== + +yocto-queue@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b" + integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q== + +zwitch@^2.0.0: + version "2.0.4" + resolved "https://registry.yarnpkg.com/zwitch/-/zwitch-2.0.4.tgz#c827d4b0acb76fc3e685a4c6ec2902d51070e9d7" + integrity sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==