diff --git a/README.md b/README.md deleted file mode 100644 index 4ff58b0bd..000000000 --- a/README.md +++ /dev/null @@ -1,18 +0,0 @@ -# CodeYourFuture React Challenges - -A collection of introductory React challenges. - -There are also some larger projects at https://github.com/CodeYourFuture/group-projects#react-only-projects - -## Contribution Guide -Want to add a challenge? - -A good challenge consists of - -- A real world application for what the student is building -- Uses real world data to make the application interesting -- Has multiple levels that a student can complete -- Is well definined -- Is targetted at begineer developers - -Everyone is welcome to raise a Pull Request on this repository - please share with volunteers and/or students before merging. diff --git a/challenge-baby-name-picker/README.md b/challenge-baby-name-picker/README.md deleted file mode 100644 index 8afb08230..000000000 --- a/challenge-baby-name-picker/README.md +++ /dev/null @@ -1,132 +0,0 @@ -# Challenge: "Baby Name Picker (React)" - -![Example Screenshot from the finished challenge](./example-screenshots/finished.png) - -## Challenge Overview - -Make a React app which shows some baby names and lets you pick your favourites. The names data is provided for you. - -## Difficulty Level - -This is a beginner challenge. Level one can be completed by any student who has done week 1 of the CYF React module. - -The later levels are suitable from students who have completed at least week 2 of the CYF React module. - -## Pre-requisites - what do I need to know to finish this challenge? - -(Level 1) - -- React `props` -- The `array.map` method and its use in React JSX - -(Later levels) - -- Event handlers: onClick for buttons -- Event handlers: onChange for input fields -- The `useState` hook - -## Getting Started - -**Don't** clone this repo. - -Make your own React app using `create-react-app`. See [(this guide)](https://docs.codeyourfuture.io/students/guides/creating-a-react-app) if you have forgotten how. - -Copy across the names file (or its contents) from this repo to your app, and then import from that file. - -Write a plain HTML prototype (e.g. on codepen). THEN, once you know the HTML you're attempting to create, work on the React version! This is not mandatory but it is recommended. - -### The data: - -The data is available in the file [./babyNamesData.json](./babyNamesData.json). - -Copy across this file to your src/ directory, and then import it. - -## GitHub & Hosting: - -Add your project in github and host it on Netlify. - -The github repo name should be exactly: -`baby-names-react` - -The netlify site suffix should be `-baby-names` - -so... - -`cyf-YOURGITHUBUSERNAME-baby-names` - -# Level 1 Challenge - -* Write a react app which lists baby names from the given file. - -* It should display boys' and girls' names differently - your choice* - -* The names should be displayed in alphabetical order, ascending. - -* Your project should be on GitHub and Netlify with correct names (see Hosting, above). - -(*) Please, please feel free to break from the the "blue-for-boys/pink-for-girls" stereotyping and style it differently. The best creative solution will be included in this challenge document for subsequent cohorts to admire. - -### Example Screenshot - -![Level 1 Example Screenshot](./example-screenshots/level-1.png) - -# Level 2 challenge - -* Add a search bar. - -* When someone types into it, your app should update the displayed list of baby names to only show matches. - -* Matches should be case-insensitive. - -* When the search bar is clear, all names should be shown. - -### Example Screenshot - -![Level 2 Example Screenshot](./example-screenshots/level-2.png) - -# Level 3 challenge - -* Add "favourites". - -* When the user clicks a name from the main list, it should be moved to a "favourites" list, displayed separately. -It should disappear from the main list! - -* When the user clicks a name from the _favourites_ list, it should be moved back to the main list. It should disappear from the favourites list! - -### Example Screenshot - -![Level 3 Example Screenshot](./example-screenshots/level-3.png) - -# Level 4 challenge - -Add "name gender" filter buttons. - -Add buttons that allow the user to only see boy or girl names (or all names). - -The buttons should operate as "radio" buttons - exactly one should be active at any time. - -The app should start by showing all names. - -The app should make it clear which filter is in effect. - -_How it works with search:_ - -If there is also a search term in effect, your app should apply any name gender filter to those search results. - -### Example Screenshot - -![Level 4 Example Screenshot](./example-screenshots/level-4.png) - -# Beyond - ideas for more work - -- Find a way to persist the favourites even after the browser tab is closed -- Add the ability for the user to shuffle the list of names -- Add the ability for the user to be presented with one or two randomly chosen names. -- Find an attractive way to differentiate names by gender that doesn't use blue/pink stereotypes. -- Add some suitably-themed sound effects for the UI. Josh W Comeau's [useSound hook](https://www.joshwcomeau.com/react/announcing-use-sound-react-hook/) can help here, as can [freesound.org](https://freesound.org/) - -## Further resources - -# Credits - -This application idea, and look, were taken from [Simon Vrachliotis'](https://simonswiss.com/) app, found via [react.rocks](https://react.rocks/example/Baby_name_inspiration). diff --git a/challenge-baby-name-picker/babyNamesData.json b/challenge-baby-name-picker/babyNamesData.json deleted file mode 100644 index 6267493ee..000000000 --- a/challenge-baby-name-picker/babyNamesData.json +++ /dev/null @@ -1,857 +0,0 @@ -[ - { - "id": 0, - "name": "Zahra", - "sex": "f" - }, - { - "id": 1, - "name": "Parsa", - "sex": "m" - }, - { - "id": 2, - "name": "Avah", - "sex": "f" - }, - { - "id": 3, - "name": "Lala", - "sex": "f" - }, - { - "id": 4, - "name": "Jamshed", - "sex": "m" - }, - { - "id": 5, - "name": "Yasir", - "sex": "m" - }, - { - "id": 6, - "name": "Damiya", - "sex": "f" - }, - { - "id": 7, - "name": "Abbas", - "sex": "m" - }, - { - "id": 8, - "name": "Sahar", - "sex": "f" - }, - { - "id": 9, - "name": "Neo", - "sex": "m" - }, - { - "id": 10, - "name": "Damali", - "sex": "f" - }, - { - "id": 11, - "name": "Olajuwon", - "sex": "m" - }, - { - "id": 12, - "name": "Elinda", - "sex": "f" - }, - { - "id": 13, - "name": "Emoni", - "sex": "f" - }, - { - "id": 14, - "name": "Nabil", - "sex": "m" - }, - { - "id": 15, - "name": "Kheri", - "sex": "f" - }, - { - "id": 16, - "name": "Kidus", - "sex": "m" - }, - { - "id": 17, - "name": "Aiyana", - "sex": "f" - }, - { - "id": 18, - "name": "Ayana", - "sex": "f" - }, - { - "id": 19, - "name": "Makoa", - "sex": "m" - }, - { - "id": 20, - "name": "Cyrus", - "sex": "m" - }, - { - "id": 21, - "name": "Mina", - "sex": "f" - }, - { - "id": 22, - "name": "Zia", - "sex": "f" - }, - { - "id": 23, - "name": "Roshan", - "sex": "m" - }, - { - "id": 24, - "name": "Taja", - "sex": "f" - }, - { - "id": 25, - "name": "Naveed", - "sex": "m" - }, - { - "id": 26, - "name": "Suri", - "sex": "f" - }, - { - "id": 27, - "name": "Farah", - "sex": "f" - }, - { - "id": 28, - "name": "Shirin", - "sex": "f" - }, - { - "id": 29, - "name": "Navid", - "sex": "m" - }, - { - "id": 30, - "name": "Azra", - "sex": "f" - }, - { - "id": 31, - "name": "Adonai", - "sex": "m" - }, - { - "id": 32, - "name": "Livna", - "sex": "f" - }, - { - "id": 33, - "name": "Sheran", - "sex": "f" - }, - { - "id": 34, - "name": "Mayar", - "sex": "f" - }, - { - "id": 35, - "name": "Magdalene", - "sex": "f" - }, - { - "id": 36, - "name": "Areli", - "sex": "f" - }, - { - "id": 37, - "name": "Or", - "sex": "m" - }, - { - "id": 38, - "name": "Josiah", - "sex": "m" - }, - { - "id": 39, - "name": "Zetta", - "sex": "f" - }, - { - "id": 40, - "name": "Rohin", - "sex": "m" - }, - { - "id": 41, - "name": "Vilas", - "sex": "m" - }, - { - "id": 42, - "name": "Isha", - "sex": "f" - }, - { - "id": 43, - "name": "Shlok", - "sex": "m" - }, - { - "id": 44, - "name": "Setia", - "sex": "f" - }, - { - "id": 45, - "name": "Surya", - "sex": "m" - }, - { - "id": 46, - "name": "Arushi", - "sex": "f" - }, - { - "id": 47, - "name": "Aditi", - "sex": "f" - }, - { - "id": 48, - "name": "Rachana", - "sex": "f" - }, - { - "id": 49, - "name": "Vadhir", - "sex": "m" - }, - { - "id": 50, - "name": "Mohammad", - "sex": "m" - }, - { - "id": 51, - "name": "Shaan", - "sex": "m" - }, - { - "id": 52, - "name": "Arathi", - "sex": "m" - }, - { - "id": 53, - "name": "Ashwin", - "sex": "m" - }, - { - "id": 54, - "name": "Rudra", - "sex": "m" - }, - { - "id": 55, - "name": "Loma", - "sex": "f" - }, - { - "id": 56, - "name": "Patrick", - "sex": "m" - }, - { - "id": 57, - "name": "Sriram", - "sex": "m" - }, - { - "id": 58, - "name": "Aayan", - "sex": "m" - }, - { - "id": 59, - "name": "Shakila", - "sex": "f" - }, - { - "id": 60, - "name": "Iran", - "sex": "m" - }, - { - "id": 62, - "name": "Dara", - "sex": "f" - }, - { - "id": 63, - "name": "Jama", - "sex": "f" - }, - { - "id": 64, - "name": "Yasmina", - "sex": "f" - }, - { - "id": 65, - "name": "Mikah", - "sex": "m" - }, - { - "id": 66, - "name": "Aram", - "sex": "m" - }, - { - "id": 67, - "name": "Arash", - "sex": "m" - }, - { - "id": 69, - "name": "Aashi", - "sex": "f" - }, - { - "id": 70, - "name": "Zamir", - "sex": "m" - }, - { - "id": 71, - "name": "Mostafa", - "sex": "m" - }, - { - "id": 72, - "name": "Yasin", - "sex": "m" - }, - { - "id": 73, - "name": "Zaki", - "sex": "m" - }, - { - "id": 74, - "name": "Ammar", - "sex": "m" - }, - { - "id": 76, - "name": "An", - "sex": "f" - }, - { - "id": 77, - "name": "Shira", - "sex": "f" - }, - { - "id": 78, - "name": "Yaron", - "sex": "m" - }, - { - "id": 79, - "name": "Noam", - "sex": "m" - }, - { - "id": 80, - "name": "Shalom", - "sex": "f" - }, - { - "id": 81, - "name": "Ester", - "sex": "f" - }, - { - "id": 82, - "name": "Aharon", - "sex": "m" - }, - { - "id": 83, - "name": "Ahuva", - "sex": "f" - }, - { - "id": 84, - "name": "Shomron", - "sex": "m" - }, - { - "id": 85, - "name": "David", - "sex": "m" - }, - { - "id": 86, - "name": "Michal", - "sex": "m" - }, - { - "id": 88, - "name": "Ahmed", - "sex": "m" - }, - { - "id": 89, - "name": "Abdul", - "sex": "m" - }, - { - "id": 90, - "name": "Ahmad", - "sex": "m" - }, - { - "id": 91, - "name": "Noor", - "sex": "f" - }, - { - "id": 92, - "name": "Wira", - "sex": "m" - }, - { - "id": 93, - "name": "Malik", - "sex": "m" - }, - { - "id": 96, - "name": "Hakim", - "sex": "m" - }, - { - "id": 97, - "name": "Samar", - "sex": "m" - }, - { - "id": 98, - "name": "Raniya", - "sex": "f" - }, - { - "id": 99, - "name": "Nader", - "sex": "m" - }, - { - "id": 100, - "name": "Bahar", - "sex": "f" - }, - { - "id": 101, - "name": "Gibran", - "sex": "m" - }, - { - "id": 102, - "name": "Alysia", - "sex": "f" - }, - { - "id": 104, - "name": "Nadiyya", - "sex": "f" - }, - { - "id": 105, - "name": "Najah", - "sex": "f" - }, - { - "id": 106, - "name": "Basil", - "sex": "m" - }, - { - "id": 107, - "name": "Yasmin", - "sex": "f" - }, - { - "id": 109, - "name": "Salma", - "sex": "f" - }, - { - "id": 111, - "name": "Rahim", - "sex": "m" - }, - { - "id": 112, - "name": "Ibrahim", - "sex": "m" - }, - { - "id": 113, - "name": "Samira", - "sex": "f" - }, - { - "id": 114, - "name": "Sabir", - "sex": "m" - }, - { - "id": 115, - "name": "Suhana", - "sex": "f" - }, - { - "id": 116, - "name": "Rasheed", - "sex": "m" - }, - { - "id": 117, - "name": "Osman", - "sex": "m" - }, - { - "id": 118, - "name": "Irania", - "sex": "f" - }, - { - "id": 120, - "name": "Rasheen", - "sex": "m" - }, - { - "id": 121, - "name": "Estie", - "sex": "f" - }, - { - "id": 122, - "name": "Armaan", - "sex": "m" - }, - { - "id": 123, - "name": "Lela", - "sex": "f" - }, - { - "id": 124, - "name": "Malikah", - "sex": "f" - }, - { - "id": 125, - "name": "Gulzar", - "sex": "m" - }, - { - "id": 126, - "name": "Maryam", - "sex": "f" - }, - { - "id": 127, - "name": "Adrian", - "sex": "m" - }, - { - "id": 128, - "name": "Blenda", - "sex": "f" - }, - { - "id": 129, - "name": "Kasandra", - "sex": "f" - }, - { - "id": 130, - "name": "Hubert", - "sex": "m" - }, - { - "id": 131, - "name": "Deniel", - "sex": "m" - }, - { - "id": 132, - "name": "Konrad", - "sex": "m" - }, - { - "id": 133, - "name": "Mateusz", - "sex": "m" - }, - { - "id": 134, - "name": "Leon", - "sex": "m" - }, - { - "id": 135, - "name": "Kamila", - "sex": "f" - }, - { - "id": 136, - "name": "Albin", - "sex": "m" - }, - { - "id": 137, - "name": "Cezar", - "sex": "m" - }, - { - "id": 138, - "name": "Gabriel", - "sex": "m" - }, - { - "id": 139, - "name": "Maria", - "sex": "f" - }, - { - "id": 141, - "name": "Ina", - "sex": "f" - }, - { - "id": 142, - "name": "Eduard", - "sex": "m" - }, - { - "id": 143, - "name": "Claudia", - "sex": "f" - }, - { - "id": 144, - "name": "Paul", - "sex": "m" - }, - { - "id": 145, - "name": "Ileana", - "sex": "f" - }, - { - "id": 146, - "name": "Lucian", - "sex": "m" - }, - { - "id": 147, - "name": "Aida", - "sex": "f" - }, - { - "id": 149, - "name": "Fatoumata", - "sex": "f" - }, - { - "id": 150, - "name": "Fatou", - "sex": "f" - }, - { - "id": 151, - "name": "Musa", - "sex": "m" - }, - { - "id": 152, - "name": "Mariama", - "sex": "f" - }, - { - "id": 153, - "name": "Oumar", - "sex": "m" - }, - { - "id": 154, - "name": "Agata", - "sex": "f" - }, - { - "id": 156, - "name": "Aminata", - "sex": "f" - }, - { - "id": 157, - "name": "Asante", - "sex": "f" - }, - { - "id": 158, - "name": "Zakiyah", - "sex": "f" - }, - { - "id": 159, - "name": "Kwasi", - "sex": "m" - }, - { - "id": 160, - "name": "Jina", - "sex": "f" - }, - { - "id": 163, - "name": "Kwanza", - "sex": "m" - }, - { - "id": 164, - "name": "Imani", - "sex": "f" - }, - { - "id": 165, - "name": "Milly", - "sex": "f" - }, - { - "id": 166, - "name": "Saskia", - "sex": "f" - }, - { - "id": 167, - "name": "Lyuba", - "sex": "f" - }, - { - "id": 168, - "name": "Laszlo", - "sex": "m" - }, - { - "id": 169, - "name": "Nika", - "sex": "f" - }, - { - "id": 170, - "name": "Yana", - "sex": "f" - }, - { - "id": 171, - "name": "Vlasta", - "sex": "f" - }, - { - "id": 172, - "name": "Ivan", - "sex": "m" - }, - { - "id": 173, - "name": "Milana", - "sex": "f" - }, - { - "id": 174, - "name": "Marica", - "sex": "f" - }, - { - "id": 175, - "name": "Marko", - "sex": "m" - }, - { - "id": 176, - "name": "Petra", - "sex": "f" - }, - { - "id": 177, - "name": "Arica", - "sex": "f" - }, - { - "id": 178, - "name": "Zainab", - "sex": "f" - }, - { - "id": 179, - "name": "Attila", - "sex": "f" - }, - { - "id": 180, - "name": "Eren", - "sex": "f" - }, - { - "id": 182, - "name": "Demir", - "sex": "m" - }, - { - "id": 183, - "name": "Angus", - "sex": "m" - }, - { - "id": 184, - "name": "Temür", - "sex": "m" - }, - { - "id": 185, - "name": "Sulaiman", - "sex": "m" - }, - { - "id": 186, - "name": "Ozella", - "sex": "f" - } -] diff --git a/challenge-baby-name-picker/example-screenshots/finished.png b/challenge-baby-name-picker/example-screenshots/finished.png deleted file mode 100644 index d77ed520f..000000000 Binary files a/challenge-baby-name-picker/example-screenshots/finished.png and /dev/null differ diff --git a/challenge-baby-name-picker/example-screenshots/level-1.png b/challenge-baby-name-picker/example-screenshots/level-1.png deleted file mode 100644 index 29f986116..000000000 Binary files a/challenge-baby-name-picker/example-screenshots/level-1.png and /dev/null differ diff --git a/challenge-baby-name-picker/example-screenshots/level-2.png b/challenge-baby-name-picker/example-screenshots/level-2.png deleted file mode 100644 index 493de7b32..000000000 Binary files a/challenge-baby-name-picker/example-screenshots/level-2.png and /dev/null differ diff --git a/challenge-baby-name-picker/example-screenshots/level-3.png b/challenge-baby-name-picker/example-screenshots/level-3.png deleted file mode 100644 index 7aac783b6..000000000 Binary files a/challenge-baby-name-picker/example-screenshots/level-3.png and /dev/null differ diff --git a/challenge-baby-name-picker/example-screenshots/level-4.png b/challenge-baby-name-picker/example-screenshots/level-4.png deleted file mode 100644 index 705272fac..000000000 Binary files a/challenge-baby-name-picker/example-screenshots/level-4.png and /dev/null differ diff --git a/challenge-counters/README.md b/challenge-counters/README.md deleted file mode 100644 index 04e96911a..000000000 --- a/challenge-counters/README.md +++ /dev/null @@ -1,81 +0,0 @@ -# Challenge: Lunch Order Counters - -## Challenge Overview - -Make a React app which assists you in taking an order for lunch for a large group. - -It should provide multiple counters for different options (vegetarian, halal, vegan, etc). - -### Try a live demo - -[Try the live demo here](https://cyf-counters-react.netlify.com/). - -### Example Screenshot - -![Example Screenshot](./images/counters-screenshot-basic.png) - -## What you need to know before starting: - -This challenge is suitable if you have successfully completed the homework of CYF React Week 2. - -# Try to figure the rest out by yourself - -If you want a harder challenge, don't read the rest of this document but try to build the app by yourself. - -# Suggested approach - -Here's one approach you might take to building this app. - -## Task: Create a new React app - -Create a new empty React app for this challenge. - -The tool can take a while to run, so continue with the next task while it's running... - -## Task: Design your layout _on paper_ - -Design your layout on paper. Keep it very simple - this is a React challenge, not a CSS challenge. - -Use a layout that will be ok on a phone (but don't do responsive design). - -Keep this drawing around for reference later. - -## Task: Convert your layout to JSX (HTML) - -Make a prototype which just shows two or three example counters. _Don't_ worry about the JSON yet. - -You can do this all within your `App.js`, or you can immediately build some React Component(s). - -## Task: Make a component to represent a counter - -Make a single counter which has a title given to it and which increments its count when clicked. - -## Task: Use this component repeatedly - -Reuse your component for each meal option you want to present. - -## Task: Host your app - -Host your app and prove it works by viewing it on your phone! - -## Task: Host your app - -Host your app and prove it works by viewing it on your phone! - -We recommend you use Netlify. [Instructions are here](https://gist.github.com/nbogie/bf58a391fab6884f77a6adec66047181). - -(You can instead use Heroku to host, or github pages, or codesandbox.io, or glitch.com...) - -## Advanced challenges: total, and reset - -![Example Screenshot](./images/counters-screenshot-advanced.png) - -See more detail below... - -### Advanced Challenge: Add a reset button - -Add a reset button which will set all counts back to zero. - -### Advanced Challenge: Add a total - -Add a live total of meals selected. diff --git a/challenge-counters/images/counters-screenshot-advanced.png b/challenge-counters/images/counters-screenshot-advanced.png deleted file mode 100644 index b160a7e38..000000000 Binary files a/challenge-counters/images/counters-screenshot-advanced.png and /dev/null differ diff --git a/challenge-counters/images/counters-screenshot-basic.png b/challenge-counters/images/counters-screenshot-basic.png deleted file mode 100644 index d2800f5ac..000000000 Binary files a/challenge-counters/images/counters-screenshot-basic.png and /dev/null differ diff --git a/challenge-countries/README.md b/challenge-countries/README.md deleted file mode 100644 index 18d1f9626..000000000 --- a/challenge-countries/README.md +++ /dev/null @@ -1,110 +0,0 @@ -# Challenge: "Frontend Mentor's REST Countries API with color theme switcher (React)" - -This excellent challenge was created by, and lives at [frontendmentor.io](https://www.frontendmentor.io/challenges/rest-countries-api-with-color-theme-switcher-5cacc469fec04111f7b848ca). - -In *this* document we will simply break down that challenge into approachable levels, and give extra tips for getting started. - -## Challenge Overview - -Your *eventual* challenge is to make a React app integrate with the REST Countries API to fetch country data and display it like in the designs provided by [frontendmentor.io](https://www.frontendmentor.io/challenges/rest-countries-api-with-color-theme-switcher-5cacc469fec04111f7b848ca). - -However, in the earlier levels you will be given a file containing with the downloaded countries data, so that you do not have to fetch it from the API. - -## Pre-requisites - what do I need to know to finish this challenge? - -Level 1 - React week 1: - -- React `props` -- The `array.map` method and its use in React JSX -- Lots of CSS (flexbox recommended) - -Later levels - React week 2: - -- Event handlers: `onClick` for buttons -- Event handlers: `onChange` for input fields and `select` elements -- `useState`: The React State hook -- `useEffect`: The React Effect hook, and how to use it with `fetch`. - -## Getting Started - -* **Don't** clone this repo. -* Read Level 1 below, but don't start -* Carefully read [the brief in the frontend mentor challenge](https://www.frontendmentor.io/challenges/rest-countries-api-with-color-theme-switcher-5cacc469fec04111f7b848ca) -* Sign in to frontendmentor.io and download and expand the starter pack -* Read the instructions and guidance in that pack. -* Read Level 1 below, again! It tells you what you can ignore! -* Make your own React app using `create-react-app`. See [(this guide)](https://docs.codeyourfuture.io/students/guides/creating-a-react-app) if you have forgotten how. -* Copy the [./countriesAll.json](./countriesAll.json) data file into your `src/` directory, and then import it. -* Put your project on GitHub (see below) -* Host it on Netlify (see below) -* Write a plain HTML prototype (e.g. on codepen) with some copy-pasted country "cards". THEN, once you are confident about the HTML you need to create... -* Start to code the React app! - -### The data: - -* The data you will need is available in the file [./countriesAll.json](./countriesAll.json). This is a list of all countries, obtained from `https://restcountries.eu/rest/v2/all` -* Read "Getting Started" for what to do with this file. -* In *later* levels you will make your app fetch the data directly from the API as described in the frontendmentor challenge. - -## GitHub & Hosting: - -Add your project in github and host it on Netlify. - - -| site: | correct name | -| ------------- | ----------------------------------------------- | -| GitHub repo | `countries-react` | -| Netlify site | `cyf-YOURGITHUBUSERNAME-countries-react` | - - - -# Level 1 Challenge - -* Write a react app to present the list of countries as shown in the frontend mentor challenge. -* Get as close as possible to the presentation. -* Format the population correctly -* Ignore the search box -* Ignore the region select -* Ignore the colour theme selector -* Ignore the requirement to allow "clicking into" specific countries. Just show the main list. -* Publish your project on GitHub and Netlify with the correct names (see Hosting, above). - -# Level 2 challenge - -* Add the search box -* When the search box has text in it, your app should update the displayed list of countries to only show matches - * Accept matches of the string in the country name **AND** matches in the capital's name -* Matches should be case-insensitive. -* When the search bar is clear, all countries should be shown. - -# Level 3 challenge - -* Add the "region select" menu -* When this is changed, only show the countries which: - * have the chosen region, AND - * match the search box term (if there is one) -* When a region is not selected (i.e. the menu is set to "Filter by region") then countries should NOT be filtered by region and only the search rules should apply. - -# Level 4 challenge - -* Allow users to click on a country and view that country's full details, as shown in the frontendmentor challenge. -* Make sure to allow clicking on bordering countries to visit these neighbours -* Don't forget the "back" button - -# Level 5 challenge -* Implement the colour scheme picker - -# Beyond - ideas for more work - -- easy: Add a "random country" button -- Advanced: Make a quiz where a country card is shown and 5 random capitals - the user must correctly guess the correct capital. - - use a separate component to develop this without affecting your main app -- Advanced: Make a game where two countries are named and the user tries to navigate from one country to another via their bordering countries in the fewest possible steps. -- record "favourite" countries - - Find a way to persist these even after the browser tab is closed -- See the existing [CYF Group project: Countries](https://github.com/CodeYourFuture/group-project-countries) for more ideas - - -# Credits - -This is a presentation (and further structuring) of a free challenge made available [here](https://www.frontendmentor.io/challenges/rest-countries-api-with-color-theme-switcher-5cacc469fec04111f7b848ca) by [Frontend Mentor](https://www.frontendmentor.io/). Code Your Future are grateful for that excellent resource! diff --git a/challenge-countries/countriesAll.json b/challenge-countries/countriesAll.json deleted file mode 100644 index 69ed5180a..000000000 --- a/challenge-countries/countriesAll.json +++ /dev/null @@ -1,14551 +0,0 @@ -[ - { - "name": "Afghanistan", - "topLevelDomain": [".af"], - "alpha2Code": "AF", - "alpha3Code": "AFG", - "callingCodes": ["93"], - "capital": "Kabul", - "altSpellings": ["AF", "Afġānistān"], - "region": "Asia", - "subregion": "Southern Asia", - "population": 27657145, - "latlng": [33.0, 65.0], - "demonym": "Afghan", - "area": 652230.0, - "gini": 27.8, - "timezones": ["UTC+04:30"], - "borders": ["IRN", "PAK", "TKM", "UZB", "TJK", "CHN"], - "nativeName": "افغانستان", - "numericCode": "004", - "currencies": [{ "code": "AFN", "name": "Afghan afghani", "symbol": "؋" }], - "languages": [ - { - "iso639_1": "ps", - "iso639_2": "pus", - "name": "Pashto", - "nativeName": "پښتو" - }, - { - "iso639_1": "uz", - "iso639_2": "uzb", - "name": "Uzbek", - "nativeName": "Oʻzbek" - }, - { - "iso639_1": "tk", - "iso639_2": "tuk", - "name": "Turkmen", - "nativeName": "Türkmen" - } - ], - "translations": { - "de": "Afghanistan", - "es": "Afganistán", - "fr": "Afghanistan", - "ja": "アフガニスタン", - "it": "Afghanistan", - "br": "Afeganistão", - "pt": "Afeganistão", - "nl": "Afghanistan", - "hr": "Afganistan", - "fa": "افغانستان" - }, - "flag": "https://restcountries.eu/data/afg.svg", - "regionalBlocs": [ - { - "acronym": "SAARC", - "name": "South Asian Association for Regional Cooperation", - "otherAcronyms": [], - "otherNames": [] - } - ], - "cioc": "AFG" - }, - { - "name": "Åland Islands", - "topLevelDomain": [".ax"], - "alpha2Code": "AX", - "alpha3Code": "ALA", - "callingCodes": ["358"], - "capital": "Mariehamn", - "altSpellings": ["AX", "Aaland", "Aland", "Ahvenanmaa"], - "region": "Europe", - "subregion": "Northern Europe", - "population": 28875, - "latlng": [60.116667, 19.9], - "demonym": "Ålandish", - "area": 1580.0, - "gini": null, - "timezones": ["UTC+02:00"], - "borders": [], - "nativeName": "Åland", - "numericCode": "248", - "currencies": [{ "code": "EUR", "name": "Euro", "symbol": "€" }], - "languages": [ - { - "iso639_1": "sv", - "iso639_2": "swe", - "name": "Swedish", - "nativeName": "svenska" - } - ], - "translations": { - "de": "Åland", - "es": "Alandia", - "fr": "Åland", - "ja": "オーランド諸島", - "it": "Isole Aland", - "br": "Ilhas de Aland", - "pt": "Ilhas de Aland", - "nl": "Ålandeilanden", - "hr": "Ålandski otoci", - "fa": "جزایر الند" - }, - "flag": "https://restcountries.eu/data/ala.svg", - "regionalBlocs": [ - { - "acronym": "EU", - "name": "European Union", - "otherAcronyms": [], - "otherNames": [] - } - ], - "cioc": "" - }, - { - "name": "Albania", - "topLevelDomain": [".al"], - "alpha2Code": "AL", - "alpha3Code": "ALB", - "callingCodes": ["355"], - "capital": "Tirana", - "altSpellings": ["AL", "Shqipëri", "Shqipëria", "Shqipnia"], - "region": "Europe", - "subregion": "Southern Europe", - "population": 2886026, - "latlng": [41.0, 20.0], - "demonym": "Albanian", - "area": 28748.0, - "gini": 34.5, - "timezones": ["UTC+01:00"], - "borders": ["MNE", "GRC", "MKD", "KOS"], - "nativeName": "Shqipëria", - "numericCode": "008", - "currencies": [{ "code": "ALL", "name": "Albanian lek", "symbol": "L" }], - "languages": [ - { - "iso639_1": "sq", - "iso639_2": "sqi", - "name": "Albanian", - "nativeName": "Shqip" - } - ], - "translations": { - "de": "Albanien", - "es": "Albania", - "fr": "Albanie", - "ja": "アルバニア", - "it": "Albania", - "br": "Albânia", - "pt": "Albânia", - "nl": "Albanië", - "hr": "Albanija", - "fa": "آلبانی" - }, - "flag": "https://restcountries.eu/data/alb.svg", - "regionalBlocs": [ - { - "acronym": "CEFTA", - "name": "Central European Free Trade Agreement", - "otherAcronyms": [], - "otherNames": [] - } - ], - "cioc": "ALB" - }, - { - "name": "Algeria", - "topLevelDomain": [".dz"], - "alpha2Code": "DZ", - "alpha3Code": "DZA", - "callingCodes": ["213"], - "capital": "Algiers", - "altSpellings": ["DZ", "Dzayer", "Algérie"], - "region": "Africa", - "subregion": "Northern Africa", - "population": 40400000, - "latlng": [28.0, 3.0], - "demonym": "Algerian", - "area": 2381741.0, - "gini": 35.3, - "timezones": ["UTC+01:00"], - "borders": ["TUN", "LBY", "NER", "ESH", "MRT", "MLI", "MAR"], - "nativeName": "الجزائر", - "numericCode": "012", - "currencies": [ - { "code": "DZD", "name": "Algerian dinar", "symbol": "د.ج" } - ], - "languages": [ - { - "iso639_1": "ar", - "iso639_2": "ara", - "name": "Arabic", - "nativeName": "العربية" - } - ], - "translations": { - "de": "Algerien", - "es": "Argelia", - "fr": "Algérie", - "ja": "アルジェリア", - "it": "Algeria", - "br": "Argélia", - "pt": "Argélia", - "nl": "Algerije", - "hr": "Alžir", - "fa": "الجزایر" - }, - "flag": "https://restcountries.eu/data/dza.svg", - "regionalBlocs": [ - { - "acronym": "AU", - "name": "African Union", - "otherAcronyms": [], - "otherNames": [ - "الاتحاد الأفريقي", - "Union africaine", - "União Africana", - "Unión Africana", - "Umoja wa Afrika" - ] - }, - { - "acronym": "AL", - "name": "Arab League", - "otherAcronyms": [], - "otherNames": [ - "جامعة الدول العربية", - "Jāmiʻat ad-Duwal al-ʻArabīyah", - "League of Arab States" - ] - } - ], - "cioc": "ALG" - }, - { - "name": "American Samoa", - "topLevelDomain": [".as"], - "alpha2Code": "AS", - "alpha3Code": "ASM", - "callingCodes": ["1684"], - "capital": "Pago Pago", - "altSpellings": ["AS", "Amerika Sāmoa", "Amelika Sāmoa", "Sāmoa Amelika"], - "region": "Oceania", - "subregion": "Polynesia", - "population": 57100, - "latlng": [-14.33333333, -170.0], - "demonym": "American Samoan", - "area": 199.0, - "gini": null, - "timezones": ["UTC-11:00"], - "borders": [], - "nativeName": "American Samoa", - "numericCode": "016", - "currencies": [ - { "code": "USD", "name": "United State Dollar", "symbol": "$" } - ], - "languages": [ - { - "iso639_1": "en", - "iso639_2": "eng", - "name": "English", - "nativeName": "English" - }, - { - "iso639_1": "sm", - "iso639_2": "smo", - "name": "Samoan", - "nativeName": "gagana fa'a Samoa" - } - ], - "translations": { - "de": "Amerikanisch-Samoa", - "es": "Samoa Americana", - "fr": "Samoa américaines", - "ja": "アメリカ領サモア", - "it": "Samoa Americane", - "br": "Samoa Americana", - "pt": "Samoa Americana", - "nl": "Amerikaans Samoa", - "hr": "Američka Samoa", - "fa": "ساموآی آمریکا" - }, - "flag": "https://restcountries.eu/data/asm.svg", - "regionalBlocs": [], - "cioc": "ASA" - }, - { - "name": "Andorra", - "topLevelDomain": [".ad"], - "alpha2Code": "AD", - "alpha3Code": "AND", - "callingCodes": ["376"], - "capital": "Andorra la Vella", - "altSpellings": ["AD", "Principality of Andorra", "Principat d'Andorra"], - "region": "Europe", - "subregion": "Southern Europe", - "population": 78014, - "latlng": [42.5, 1.5], - "demonym": "Andorran", - "area": 468.0, - "gini": null, - "timezones": ["UTC+01:00"], - "borders": ["FRA", "ESP"], - "nativeName": "Andorra", - "numericCode": "020", - "currencies": [{ "code": "EUR", "name": "Euro", "symbol": "€" }], - "languages": [ - { - "iso639_1": "ca", - "iso639_2": "cat", - "name": "Catalan", - "nativeName": "català" - } - ], - "translations": { - "de": "Andorra", - "es": "Andorra", - "fr": "Andorre", - "ja": "アンドラ", - "it": "Andorra", - "br": "Andorra", - "pt": "Andorra", - "nl": "Andorra", - "hr": "Andora", - "fa": "آندورا" - }, - "flag": "https://restcountries.eu/data/and.svg", - "regionalBlocs": [], - "cioc": "AND" - }, - { - "name": "Angola", - "topLevelDomain": [".ao"], - "alpha2Code": "AO", - "alpha3Code": "AGO", - "callingCodes": ["244"], - "capital": "Luanda", - "altSpellings": ["AO", "República de Angola", "ʁɛpublika de an'ɡɔla"], - "region": "Africa", - "subregion": "Middle Africa", - "population": 25868000, - "latlng": [-12.5, 18.5], - "demonym": "Angolan", - "area": 1246700.0, - "gini": 58.6, - "timezones": ["UTC+01:00"], - "borders": ["COG", "COD", "ZMB", "NAM"], - "nativeName": "Angola", - "numericCode": "024", - "currencies": [{ "code": "AOA", "name": "Angolan kwanza", "symbol": "Kz" }], - "languages": [ - { - "iso639_1": "pt", - "iso639_2": "por", - "name": "Portuguese", - "nativeName": "Português" - } - ], - "translations": { - "de": "Angola", - "es": "Angola", - "fr": "Angola", - "ja": "アンゴラ", - "it": "Angola", - "br": "Angola", - "pt": "Angola", - "nl": "Angola", - "hr": "Angola", - "fa": "آنگولا" - }, - "flag": "https://restcountries.eu/data/ago.svg", - "regionalBlocs": [ - { - "acronym": "AU", - "name": "African Union", - "otherAcronyms": [], - "otherNames": [ - "الاتحاد الأفريقي", - "Union africaine", - "União Africana", - "Unión Africana", - "Umoja wa Afrika" - ] - } - ], - "cioc": "ANG" - }, - { - "name": "Anguilla", - "topLevelDomain": [".ai"], - "alpha2Code": "AI", - "alpha3Code": "AIA", - "callingCodes": ["1264"], - "capital": "The Valley", - "altSpellings": ["AI"], - "region": "Americas", - "subregion": "Caribbean", - "population": 13452, - "latlng": [18.25, -63.16666666], - "demonym": "Anguillian", - "area": 91.0, - "gini": null, - "timezones": ["UTC-04:00"], - "borders": [], - "nativeName": "Anguilla", - "numericCode": "660", - "currencies": [ - { "code": "XCD", "name": "East Caribbean dollar", "symbol": "$" } - ], - "languages": [ - { - "iso639_1": "en", - "iso639_2": "eng", - "name": "English", - "nativeName": "English" - } - ], - "translations": { - "de": "Anguilla", - "es": "Anguilla", - "fr": "Anguilla", - "ja": "アンギラ", - "it": "Anguilla", - "br": "Anguila", - "pt": "Anguila", - "nl": "Anguilla", - "hr": "Angvila", - "fa": "آنگویلا" - }, - "flag": "https://restcountries.eu/data/aia.svg", - "regionalBlocs": [], - "cioc": "" - }, - { - "name": "Antarctica", - "topLevelDomain": [".aq"], - "alpha2Code": "AQ", - "alpha3Code": "ATA", - "callingCodes": ["672"], - "capital": "", - "altSpellings": [], - "region": "Polar", - "subregion": "", - "population": 1000, - "latlng": [-74.65, 4.48], - "demonym": "", - "area": 1.4e7, - "gini": null, - "timezones": [ - "UTC-03:00", - "UTC+03:00", - "UTC+05:00", - "UTC+06:00", - "UTC+07:00", - "UTC+08:00", - "UTC+10:00", - "UTC+12:00" - ], - "borders": [], - "nativeName": "Antarctica", - "numericCode": "010", - "currencies": [ - { "code": "AUD", "name": "Australian dollar", "symbol": "$" }, - { "code": "GBP", "name": "British pound", "symbol": "£" } - ], - "languages": [ - { - "iso639_1": "en", - "iso639_2": "eng", - "name": "English", - "nativeName": "English" - }, - { - "iso639_1": "ru", - "iso639_2": "rus", - "name": "Russian", - "nativeName": "Русский" - } - ], - "translations": { - "de": "Antarktika", - "es": "Antártida", - "fr": "Antarctique", - "ja": "南極大陸", - "it": "Antartide", - "br": "Antártida", - "pt": "Antárctida", - "nl": "Antarctica", - "hr": "Antarktika", - "fa": "جنوبگان" - }, - "flag": "https://restcountries.eu/data/ata.svg", - "regionalBlocs": [], - "cioc": "" - }, - { - "name": "Antigua and Barbuda", - "topLevelDomain": [".ag"], - "alpha2Code": "AG", - "alpha3Code": "ATG", - "callingCodes": ["1268"], - "capital": "Saint John's", - "altSpellings": ["AG"], - "region": "Americas", - "subregion": "Caribbean", - "population": 86295, - "latlng": [17.05, -61.8], - "demonym": "Antiguan, Barbudan", - "area": 442.0, - "gini": null, - "timezones": ["UTC-04:00"], - "borders": [], - "nativeName": "Antigua and Barbuda", - "numericCode": "028", - "currencies": [ - { "code": "XCD", "name": "East Caribbean dollar", "symbol": "$" } - ], - "languages": [ - { - "iso639_1": "en", - "iso639_2": "eng", - "name": "English", - "nativeName": "English" - } - ], - "translations": { - "de": "Antigua und Barbuda", - "es": "Antigua y Barbuda", - "fr": "Antigua-et-Barbuda", - "ja": "アンティグア・バーブーダ", - "it": "Antigua e Barbuda", - "br": "Antígua e Barbuda", - "pt": "Antígua e Barbuda", - "nl": "Antigua en Barbuda", - "hr": "Antigva i Barbuda", - "fa": "آنتیگوا و باربودا" - }, - "flag": "https://restcountries.eu/data/atg.svg", - "regionalBlocs": [ - { - "acronym": "CARICOM", - "name": "Caribbean Community", - "otherAcronyms": [], - "otherNames": [ - "Comunidad del Caribe", - "Communauté Caribéenne", - "Caribische Gemeenschap" - ] - } - ], - "cioc": "ANT" - }, - { - "name": "Argentina", - "topLevelDomain": [".ar"], - "alpha2Code": "AR", - "alpha3Code": "ARG", - "callingCodes": ["54"], - "capital": "Buenos Aires", - "altSpellings": ["AR", "Argentine Republic", "República Argentina"], - "region": "Americas", - "subregion": "South America", - "population": 43590400, - "latlng": [-34.0, -64.0], - "demonym": "Argentinean", - "area": 2780400.0, - "gini": 44.5, - "timezones": ["UTC-03:00"], - "borders": ["BOL", "BRA", "CHL", "PRY", "URY"], - "nativeName": "Argentina", - "numericCode": "032", - "currencies": [{ "code": "ARS", "name": "Argentine peso", "symbol": "$" }], - "languages": [ - { - "iso639_1": "es", - "iso639_2": "spa", - "name": "Spanish", - "nativeName": "Español" - }, - { - "iso639_1": "gn", - "iso639_2": "grn", - "name": "Guaraní", - "nativeName": "Avañe'ẽ" - } - ], - "translations": { - "de": "Argentinien", - "es": "Argentina", - "fr": "Argentine", - "ja": "アルゼンチン", - "it": "Argentina", - "br": "Argentina", - "pt": "Argentina", - "nl": "Argentinië", - "hr": "Argentina", - "fa": "آرژانتین" - }, - "flag": "https://restcountries.eu/data/arg.svg", - "regionalBlocs": [ - { - "acronym": "USAN", - "name": "Union of South American Nations", - "otherAcronyms": ["UNASUR", "UNASUL", "UZAN"], - "otherNames": [ - "Unión de Naciones Suramericanas", - "União de Nações Sul-Americanas", - "Unie van Zuid-Amerikaanse Naties", - "South American Union" - ] - } - ], - "cioc": "ARG" - }, - { - "name": "Armenia", - "topLevelDomain": [".am"], - "alpha2Code": "AM", - "alpha3Code": "ARM", - "callingCodes": ["374"], - "capital": "Yerevan", - "altSpellings": [ - "AM", - "Hayastan", - "Republic of Armenia", - "Հայաստանի Հանրապետություն" - ], - "region": "Asia", - "subregion": "Western Asia", - "population": 2994400, - "latlng": [40.0, 45.0], - "demonym": "Armenian", - "area": 29743.0, - "gini": 30.9, - "timezones": ["UTC+04:00"], - "borders": ["AZE", "GEO", "IRN", "TUR"], - "nativeName": "Հայաստան", - "numericCode": "051", - "currencies": [{ "code": "AMD", "name": "Armenian dram", "symbol": null }], - "languages": [ - { - "iso639_1": "hy", - "iso639_2": "hye", - "name": "Armenian", - "nativeName": "Հայերեն" - }, - { - "iso639_1": "ru", - "iso639_2": "rus", - "name": "Russian", - "nativeName": "Русский" - } - ], - "translations": { - "de": "Armenien", - "es": "Armenia", - "fr": "Arménie", - "ja": "アルメニア", - "it": "Armenia", - "br": "Armênia", - "pt": "Arménia", - "nl": "Armenië", - "hr": "Armenija", - "fa": "ارمنستان" - }, - "flag": "https://restcountries.eu/data/arm.svg", - "regionalBlocs": [ - { - "acronym": "EEU", - "name": "Eurasian Economic Union", - "otherAcronyms": ["EAEU"], - "otherNames": [] - } - ], - "cioc": "ARM" - }, - { - "name": "Aruba", - "topLevelDomain": [".aw"], - "alpha2Code": "AW", - "alpha3Code": "ABW", - "callingCodes": ["297"], - "capital": "Oranjestad", - "altSpellings": ["AW"], - "region": "Americas", - "subregion": "Caribbean", - "population": 107394, - "latlng": [12.5, -69.96666666], - "demonym": "Aruban", - "area": 180.0, - "gini": null, - "timezones": ["UTC-04:00"], - "borders": [], - "nativeName": "Aruba", - "numericCode": "533", - "currencies": [{ "code": "AWG", "name": "Aruban florin", "symbol": "ƒ" }], - "languages": [ - { - "iso639_1": "nl", - "iso639_2": "nld", - "name": "Dutch", - "nativeName": "Nederlands" - }, - { - "iso639_1": "pa", - "iso639_2": "pan", - "name": "(Eastern) Punjabi", - "nativeName": "ਪੰਜਾਬੀ" - } - ], - "translations": { - "de": "Aruba", - "es": "Aruba", - "fr": "Aruba", - "ja": "アルバ", - "it": "Aruba", - "br": "Aruba", - "pt": "Aruba", - "nl": "Aruba", - "hr": "Aruba", - "fa": "آروبا" - }, - "flag": "https://restcountries.eu/data/abw.svg", - "regionalBlocs": [], - "cioc": "ARU" - }, - { - "name": "Australia", - "topLevelDomain": [".au"], - "alpha2Code": "AU", - "alpha3Code": "AUS", - "callingCodes": ["61"], - "capital": "Canberra", - "altSpellings": ["AU"], - "region": "Oceania", - "subregion": "Australia and New Zealand", - "population": 24117360, - "latlng": [-27.0, 133.0], - "demonym": "Australian", - "area": 7692024.0, - "gini": 30.5, - "timezones": [ - "UTC+05:00", - "UTC+06:30", - "UTC+07:00", - "UTC+08:00", - "UTC+09:30", - "UTC+10:00", - "UTC+10:30", - "UTC+11:30" - ], - "borders": [], - "nativeName": "Australia", - "numericCode": "036", - "currencies": [ - { "code": "AUD", "name": "Australian dollar", "symbol": "$" } - ], - "languages": [ - { - "iso639_1": "en", - "iso639_2": "eng", - "name": "English", - "nativeName": "English" - } - ], - "translations": { - "de": "Australien", - "es": "Australia", - "fr": "Australie", - "ja": "オーストラリア", - "it": "Australia", - "br": "Austrália", - "pt": "Austrália", - "nl": "Australië", - "hr": "Australija", - "fa": "استرالیا" - }, - "flag": "https://restcountries.eu/data/aus.svg", - "regionalBlocs": [], - "cioc": "AUS" - }, - { - "name": "Austria", - "topLevelDomain": [".at"], - "alpha2Code": "AT", - "alpha3Code": "AUT", - "callingCodes": ["43"], - "capital": "Vienna", - "altSpellings": ["AT", "Österreich", "Osterreich", "Oesterreich"], - "region": "Europe", - "subregion": "Western Europe", - "population": 8725931, - "latlng": [47.33333333, 13.33333333], - "demonym": "Austrian", - "area": 83871.0, - "gini": 26.0, - "timezones": ["UTC+01:00"], - "borders": ["CZE", "DEU", "HUN", "ITA", "LIE", "SVK", "SVN", "CHE"], - "nativeName": "Österreich", - "numericCode": "040", - "currencies": [{ "code": "EUR", "name": "Euro", "symbol": "€" }], - "languages": [ - { - "iso639_1": "de", - "iso639_2": "deu", - "name": "German", - "nativeName": "Deutsch" - } - ], - "translations": { - "de": "Österreich", - "es": "Austria", - "fr": "Autriche", - "ja": "オーストリア", - "it": "Austria", - "br": "áustria", - "pt": "áustria", - "nl": "Oostenrijk", - "hr": "Austrija", - "fa": "اتریش" - }, - "flag": "https://restcountries.eu/data/aut.svg", - "regionalBlocs": [ - { - "acronym": "EU", - "name": "European Union", - "otherAcronyms": [], - "otherNames": [] - } - ], - "cioc": "AUT" - }, - { - "name": "Azerbaijan", - "topLevelDomain": [".az"], - "alpha2Code": "AZ", - "alpha3Code": "AZE", - "callingCodes": ["994"], - "capital": "Baku", - "altSpellings": ["AZ", "Republic of Azerbaijan", "Azərbaycan Respublikası"], - "region": "Asia", - "subregion": "Western Asia", - "population": 9730500, - "latlng": [40.5, 47.5], - "demonym": "Azerbaijani", - "area": 86600.0, - "gini": 33.7, - "timezones": ["UTC+04:00"], - "borders": ["ARM", "GEO", "IRN", "RUS", "TUR"], - "nativeName": "Azərbaycan", - "numericCode": "031", - "currencies": [ - { "code": "AZN", "name": "Azerbaijani manat", "symbol": null } - ], - "languages": [ - { - "iso639_1": "az", - "iso639_2": "aze", - "name": "Azerbaijani", - "nativeName": "azərbaycan dili" - } - ], - "translations": { - "de": "Aserbaidschan", - "es": "Azerbaiyán", - "fr": "Azerbaïdjan", - "ja": "アゼルバイジャン", - "it": "Azerbaijan", - "br": "Azerbaijão", - "pt": "Azerbaijão", - "nl": "Azerbeidzjan", - "hr": "Azerbajdžan", - "fa": "آذربایجان" - }, - "flag": "https://restcountries.eu/data/aze.svg", - "regionalBlocs": [], - "cioc": "AZE" - }, - { - "name": "Bahamas", - "topLevelDomain": [".bs"], - "alpha2Code": "BS", - "alpha3Code": "BHS", - "callingCodes": ["1242"], - "capital": "Nassau", - "altSpellings": ["BS", "Commonwealth of the Bahamas"], - "region": "Americas", - "subregion": "Caribbean", - "population": 378040, - "latlng": [24.25, -76.0], - "demonym": "Bahamian", - "area": 13943.0, - "gini": null, - "timezones": ["UTC-05:00"], - "borders": [], - "nativeName": "Bahamas", - "numericCode": "044", - "currencies": [{ "code": "BSD", "name": "Bahamian dollar", "symbol": "$" }], - "languages": [ - { - "iso639_1": "en", - "iso639_2": "eng", - "name": "English", - "nativeName": "English" - } - ], - "translations": { - "de": "Bahamas", - "es": "Bahamas", - "fr": "Bahamas", - "ja": "バハマ", - "it": "Bahamas", - "br": "Bahamas", - "pt": "Baamas", - "nl": "Bahama’s", - "hr": "Bahami", - "fa": "باهاما" - }, - "flag": "https://restcountries.eu/data/bhs.svg", - "regionalBlocs": [ - { - "acronym": "CARICOM", - "name": "Caribbean Community", - "otherAcronyms": [], - "otherNames": [ - "Comunidad del Caribe", - "Communauté Caribéenne", - "Caribische Gemeenschap" - ] - } - ], - "cioc": "BAH" - }, - { - "name": "Bahrain", - "topLevelDomain": [".bh"], - "alpha2Code": "BH", - "alpha3Code": "BHR", - "callingCodes": ["973"], - "capital": "Manama", - "altSpellings": ["BH", "Kingdom of Bahrain", "Mamlakat al-Baḥrayn"], - "region": "Asia", - "subregion": "Western Asia", - "population": 1404900, - "latlng": [26.0, 50.55], - "demonym": "Bahraini", - "area": 765.0, - "gini": null, - "timezones": ["UTC+03:00"], - "borders": [], - "nativeName": "‏البحرين", - "numericCode": "048", - "currencies": [ - { "code": "BHD", "name": "Bahraini dinar", "symbol": ".د.ب" } - ], - "languages": [ - { - "iso639_1": "ar", - "iso639_2": "ara", - "name": "Arabic", - "nativeName": "العربية" - } - ], - "translations": { - "de": "Bahrain", - "es": "Bahrein", - "fr": "Bahreïn", - "ja": "バーレーン", - "it": "Bahrein", - "br": "Bahrein", - "pt": "Barém", - "nl": "Bahrein", - "hr": "Bahrein", - "fa": "بحرین" - }, - "flag": "https://restcountries.eu/data/bhr.svg", - "regionalBlocs": [ - { - "acronym": "AL", - "name": "Arab League", - "otherAcronyms": [], - "otherNames": [ - "جامعة الدول العربية", - "Jāmiʻat ad-Duwal al-ʻArabīyah", - "League of Arab States" - ] - } - ], - "cioc": "BRN" - }, - { - "name": "Bangladesh", - "topLevelDomain": [".bd"], - "alpha2Code": "BD", - "alpha3Code": "BGD", - "callingCodes": ["880"], - "capital": "Dhaka", - "altSpellings": [ - "BD", - "People's Republic of Bangladesh", - "Gônôprôjatôntri Bangladesh" - ], - "region": "Asia", - "subregion": "Southern Asia", - "population": 161006790, - "latlng": [24.0, 90.0], - "demonym": "Bangladeshi", - "area": 147570.0, - "gini": 32.1, - "timezones": ["UTC+06:00"], - "borders": ["MMR", "IND"], - "nativeName": "Bangladesh", - "numericCode": "050", - "currencies": [ - { "code": "BDT", "name": "Bangladeshi taka", "symbol": "৳" } - ], - "languages": [ - { - "iso639_1": "bn", - "iso639_2": "ben", - "name": "Bengali", - "nativeName": "বাংলা" - } - ], - "translations": { - "de": "Bangladesch", - "es": "Bangladesh", - "fr": "Bangladesh", - "ja": "バングラデシュ", - "it": "Bangladesh", - "br": "Bangladesh", - "pt": "Bangladeche", - "nl": "Bangladesh", - "hr": "Bangladeš", - "fa": "بنگلادش" - }, - "flag": "https://restcountries.eu/data/bgd.svg", - "regionalBlocs": [ - { - "acronym": "SAARC", - "name": "South Asian Association for Regional Cooperation", - "otherAcronyms": [], - "otherNames": [] - } - ], - "cioc": "BAN" - }, - { - "name": "Barbados", - "topLevelDomain": [".bb"], - "alpha2Code": "BB", - "alpha3Code": "BRB", - "callingCodes": ["1246"], - "capital": "Bridgetown", - "altSpellings": ["BB"], - "region": "Americas", - "subregion": "Caribbean", - "population": 285000, - "latlng": [13.16666666, -59.53333333], - "demonym": "Barbadian", - "area": 430.0, - "gini": null, - "timezones": ["UTC-04:00"], - "borders": [], - "nativeName": "Barbados", - "numericCode": "052", - "currencies": [ - { "code": "BBD", "name": "Barbadian dollar", "symbol": "$" } - ], - "languages": [ - { - "iso639_1": "en", - "iso639_2": "eng", - "name": "English", - "nativeName": "English" - } - ], - "translations": { - "de": "Barbados", - "es": "Barbados", - "fr": "Barbade", - "ja": "バルバドス", - "it": "Barbados", - "br": "Barbados", - "pt": "Barbados", - "nl": "Barbados", - "hr": "Barbados", - "fa": "باربادوس" - }, - "flag": "https://restcountries.eu/data/brb.svg", - "regionalBlocs": [ - { - "acronym": "CARICOM", - "name": "Caribbean Community", - "otherAcronyms": [], - "otherNames": [ - "Comunidad del Caribe", - "Communauté Caribéenne", - "Caribische Gemeenschap" - ] - } - ], - "cioc": "BAR" - }, - { - "name": "Belarus", - "topLevelDomain": [".by"], - "alpha2Code": "BY", - "alpha3Code": "BLR", - "callingCodes": ["375"], - "capital": "Minsk", - "altSpellings": [ - "BY", - "Bielaruś", - "Republic of Belarus", - "Белоруссия", - "Республика Беларусь", - "Belorussiya", - "Respublika Belarus’" - ], - "region": "Europe", - "subregion": "Eastern Europe", - "population": 9498700, - "latlng": [53.0, 28.0], - "demonym": "Belarusian", - "area": 207600.0, - "gini": 26.5, - "timezones": ["UTC+03:00"], - "borders": ["LVA", "LTU", "POL", "RUS", "UKR"], - "nativeName": "Белару́сь", - "numericCode": "112", - "currencies": [ - { "code": "BYN", "name": "New Belarusian ruble", "symbol": "Br" }, - { "code": "BYR", "name": "Old Belarusian ruble", "symbol": "Br" } - ], - "languages": [ - { - "iso639_1": "be", - "iso639_2": "bel", - "name": "Belarusian", - "nativeName": "беларуская мова" - }, - { - "iso639_1": "ru", - "iso639_2": "rus", - "name": "Russian", - "nativeName": "Русский" - } - ], - "translations": { - "de": "Weißrussland", - "es": "Bielorrusia", - "fr": "Biélorussie", - "ja": "ベラルーシ", - "it": "Bielorussia", - "br": "Bielorrússia", - "pt": "Bielorrússia", - "nl": "Wit-Rusland", - "hr": "Bjelorusija", - "fa": "بلاروس" - }, - "flag": "https://restcountries.eu/data/blr.svg", - "regionalBlocs": [ - { - "acronym": "EEU", - "name": "Eurasian Economic Union", - "otherAcronyms": ["EAEU"], - "otherNames": [] - } - ], - "cioc": "BLR" - }, - { - "name": "Belgium", - "topLevelDomain": [".be"], - "alpha2Code": "BE", - "alpha3Code": "BEL", - "callingCodes": ["32"], - "capital": "Brussels", - "altSpellings": [ - "BE", - "België", - "Belgie", - "Belgien", - "Belgique", - "Kingdom of Belgium", - "Koninkrijk België", - "Royaume de Belgique", - "Königreich Belgien" - ], - "region": "Europe", - "subregion": "Western Europe", - "population": 11319511, - "latlng": [50.83333333, 4.0], - "demonym": "Belgian", - "area": 30528.0, - "gini": 33.0, - "timezones": ["UTC+01:00"], - "borders": ["FRA", "DEU", "LUX", "NLD"], - "nativeName": "België", - "numericCode": "056", - "currencies": [{ "code": "EUR", "name": "Euro", "symbol": "€" }], - "languages": [ - { - "iso639_1": "nl", - "iso639_2": "nld", - "name": "Dutch", - "nativeName": "Nederlands" - }, - { - "iso639_1": "fr", - "iso639_2": "fra", - "name": "French", - "nativeName": "français" - }, - { - "iso639_1": "de", - "iso639_2": "deu", - "name": "German", - "nativeName": "Deutsch" - } - ], - "translations": { - "de": "Belgien", - "es": "Bélgica", - "fr": "Belgique", - "ja": "ベルギー", - "it": "Belgio", - "br": "Bélgica", - "pt": "Bélgica", - "nl": "België", - "hr": "Belgija", - "fa": "بلژیک" - }, - "flag": "https://restcountries.eu/data/bel.svg", - "regionalBlocs": [ - { - "acronym": "EU", - "name": "European Union", - "otherAcronyms": [], - "otherNames": [] - } - ], - "cioc": "BEL" - }, - { - "name": "Belize", - "topLevelDomain": [".bz"], - "alpha2Code": "BZ", - "alpha3Code": "BLZ", - "callingCodes": ["501"], - "capital": "Belmopan", - "altSpellings": ["BZ"], - "region": "Americas", - "subregion": "Central America", - "population": 370300, - "latlng": [17.25, -88.75], - "demonym": "Belizean", - "area": 22966.0, - "gini": 53.1, - "timezones": ["UTC-06:00"], - "borders": ["GTM", "MEX"], - "nativeName": "Belize", - "numericCode": "084", - "currencies": [{ "code": "BZD", "name": "Belize dollar", "symbol": "$" }], - "languages": [ - { - "iso639_1": "en", - "iso639_2": "eng", - "name": "English", - "nativeName": "English" - }, - { - "iso639_1": "es", - "iso639_2": "spa", - "name": "Spanish", - "nativeName": "Español" - } - ], - "translations": { - "de": "Belize", - "es": "Belice", - "fr": "Belize", - "ja": "ベリーズ", - "it": "Belize", - "br": "Belize", - "pt": "Belize", - "nl": "Belize", - "hr": "Belize", - "fa": "بلیز" - }, - "flag": "https://restcountries.eu/data/blz.svg", - "regionalBlocs": [ - { - "acronym": "CARICOM", - "name": "Caribbean Community", - "otherAcronyms": [], - "otherNames": [ - "Comunidad del Caribe", - "Communauté Caribéenne", - "Caribische Gemeenschap" - ] - }, - { - "acronym": "CAIS", - "name": "Central American Integration System", - "otherAcronyms": ["SICA"], - "otherNames": ["Sistema de la Integración Centroamericana,"] - } - ], - "cioc": "BIZ" - }, - { - "name": "Benin", - "topLevelDomain": [".bj"], - "alpha2Code": "BJ", - "alpha3Code": "BEN", - "callingCodes": ["229"], - "capital": "Porto-Novo", - "altSpellings": ["BJ", "Republic of Benin", "République du Bénin"], - "region": "Africa", - "subregion": "Western Africa", - "population": 10653654, - "latlng": [9.5, 2.25], - "demonym": "Beninese", - "area": 112622.0, - "gini": 38.6, - "timezones": ["UTC+01:00"], - "borders": ["BFA", "NER", "NGA", "TGO"], - "nativeName": "Bénin", - "numericCode": "204", - "currencies": [ - { "code": "XOF", "name": "West African CFA franc", "symbol": "Fr" } - ], - "languages": [ - { - "iso639_1": "fr", - "iso639_2": "fra", - "name": "French", - "nativeName": "français" - } - ], - "translations": { - "de": "Benin", - "es": "Benín", - "fr": "Bénin", - "ja": "ベナン", - "it": "Benin", - "br": "Benin", - "pt": "Benim", - "nl": "Benin", - "hr": "Benin", - "fa": "بنین" - }, - "flag": "https://restcountries.eu/data/ben.svg", - "regionalBlocs": [ - { - "acronym": "AU", - "name": "African Union", - "otherAcronyms": [], - "otherNames": [ - "الاتحاد الأفريقي", - "Union africaine", - "União Africana", - "Unión Africana", - "Umoja wa Afrika" - ] - } - ], - "cioc": "BEN" - }, - { - "name": "Bermuda", - "topLevelDomain": [".bm"], - "alpha2Code": "BM", - "alpha3Code": "BMU", - "callingCodes": ["1441"], - "capital": "Hamilton", - "altSpellings": [ - "BM", - "The Islands of Bermuda", - "The Bermudas", - "Somers Isles" - ], - "region": "Americas", - "subregion": "Northern America", - "population": 61954, - "latlng": [32.33333333, -64.75], - "demonym": "Bermudian", - "area": 54.0, - "gini": null, - "timezones": ["UTC-04:00"], - "borders": [], - "nativeName": "Bermuda", - "numericCode": "060", - "currencies": [ - { "code": "BMD", "name": "Bermudian dollar", "symbol": "$" } - ], - "languages": [ - { - "iso639_1": "en", - "iso639_2": "eng", - "name": "English", - "nativeName": "English" - } - ], - "translations": { - "de": "Bermuda", - "es": "Bermudas", - "fr": "Bermudes", - "ja": "バミューダ", - "it": "Bermuda", - "br": "Bermudas", - "pt": "Bermudas", - "nl": "Bermuda", - "hr": "Bermudi", - "fa": "برمودا" - }, - "flag": "https://restcountries.eu/data/bmu.svg", - "regionalBlocs": [], - "cioc": "BER" - }, - { - "name": "Bhutan", - "topLevelDomain": [".bt"], - "alpha2Code": "BT", - "alpha3Code": "BTN", - "callingCodes": ["975"], - "capital": "Thimphu", - "altSpellings": ["BT", "Kingdom of Bhutan"], - "region": "Asia", - "subregion": "Southern Asia", - "population": 775620, - "latlng": [27.5, 90.5], - "demonym": "Bhutanese", - "area": 38394.0, - "gini": 38.1, - "timezones": ["UTC+06:00"], - "borders": ["CHN", "IND"], - "nativeName": "ʼbrug-yul", - "numericCode": "064", - "currencies": [ - { "code": "BTN", "name": "Bhutanese ngultrum", "symbol": "Nu." }, - { "code": "INR", "name": "Indian rupee", "symbol": "₹" } - ], - "languages": [ - { - "iso639_1": "dz", - "iso639_2": "dzo", - "name": "Dzongkha", - "nativeName": "རྫོང་ཁ" - } - ], - "translations": { - "de": "Bhutan", - "es": "Bután", - "fr": "Bhoutan", - "ja": "ブータン", - "it": "Bhutan", - "br": "Butão", - "pt": "Butão", - "nl": "Bhutan", - "hr": "Butan", - "fa": "بوتان" - }, - "flag": "https://restcountries.eu/data/btn.svg", - "regionalBlocs": [ - { - "acronym": "SAARC", - "name": "South Asian Association for Regional Cooperation", - "otherAcronyms": [], - "otherNames": [] - } - ], - "cioc": "BHU" - }, - { - "name": "Bolivia (Plurinational State of)", - "topLevelDomain": [".bo"], - "alpha2Code": "BO", - "alpha3Code": "BOL", - "callingCodes": ["591"], - "capital": "Sucre", - "altSpellings": [ - "BO", - "Buliwya", - "Wuliwya", - "Plurinational State of Bolivia", - "Estado Plurinacional de Bolivia", - "Buliwya Mamallaqta", - "Wuliwya Suyu", - "Tetã Volívia" - ], - "region": "Americas", - "subregion": "South America", - "population": 10985059, - "latlng": [-17.0, -65.0], - "demonym": "Bolivian", - "area": 1098581.0, - "gini": 56.3, - "timezones": ["UTC-04:00"], - "borders": ["ARG", "BRA", "CHL", "PRY", "PER"], - "nativeName": "Bolivia", - "numericCode": "068", - "currencies": [ - { "code": "BOB", "name": "Bolivian boliviano", "symbol": "Bs." } - ], - "languages": [ - { - "iso639_1": "es", - "iso639_2": "spa", - "name": "Spanish", - "nativeName": "Español" - }, - { - "iso639_1": "ay", - "iso639_2": "aym", - "name": "Aymara", - "nativeName": "aymar aru" - }, - { - "iso639_1": "qu", - "iso639_2": "que", - "name": "Quechua", - "nativeName": "Runa Simi" - } - ], - "translations": { - "de": "Bolivien", - "es": "Bolivia", - "fr": "Bolivie", - "ja": "ボリビア多民族国", - "it": "Bolivia", - "br": "Bolívia", - "pt": "Bolívia", - "nl": "Bolivia", - "hr": "Bolivija", - "fa": "بولیوی" - }, - "flag": "https://restcountries.eu/data/bol.svg", - "regionalBlocs": [ - { - "acronym": "USAN", - "name": "Union of South American Nations", - "otherAcronyms": ["UNASUR", "UNASUL", "UZAN"], - "otherNames": [ - "Unión de Naciones Suramericanas", - "União de Nações Sul-Americanas", - "Unie van Zuid-Amerikaanse Naties", - "South American Union" - ] - } - ], - "cioc": "BOL" - }, - { - "name": "Bonaire, Sint Eustatius and Saba", - "topLevelDomain": [".an", ".nl"], - "alpha2Code": "BQ", - "alpha3Code": "BES", - "callingCodes": ["5997"], - "capital": "Kralendijk", - "altSpellings": ["BQ", "Boneiru"], - "region": "Americas", - "subregion": "Caribbean", - "population": 17408, - "latlng": [12.15, -68.266667], - "demonym": "Dutch", - "area": 294.0, - "gini": null, - "timezones": ["UTC-04:00"], - "borders": [], - "nativeName": "Bonaire", - "numericCode": "535", - "currencies": [ - { "code": "USD", "name": "United States dollar", "symbol": "$" } - ], - "languages": [ - { - "iso639_1": "nl", - "iso639_2": "nld", - "name": "Dutch", - "nativeName": "Nederlands" - } - ], - "translations": { - "de": "Bonaire, Sint Eustatius und Saba", - "es": null, - "fr": "Bonaire, Saint-Eustache et Saba", - "ja": null, - "it": "Bonaire, Saint-Eustache e Saba", - "br": "Bonaire", - "pt": "Bonaire", - "nl": null, - "hr": null, - "fa": "بونیر" - }, - "flag": "https://restcountries.eu/data/bes.svg", - "regionalBlocs": [], - "cioc": null - }, - { - "name": "Bosnia and Herzegovina", - "topLevelDomain": [".ba"], - "alpha2Code": "BA", - "alpha3Code": "BIH", - "callingCodes": ["387"], - "capital": "Sarajevo", - "altSpellings": ["BA", "Bosnia-Herzegovina", "Босна и Херцеговина"], - "region": "Europe", - "subregion": "Southern Europe", - "population": 3531159, - "latlng": [44.0, 18.0], - "demonym": "Bosnian, Herzegovinian", - "area": 51209.0, - "gini": 36.2, - "timezones": ["UTC+01:00"], - "borders": ["HRV", "MNE", "SRB"], - "nativeName": "Bosna i Hercegovina", - "numericCode": "070", - "currencies": [ - { - "code": "BAM", - "name": "Bosnia and Herzegovina convertible mark", - "symbol": null - } - ], - "languages": [ - { - "iso639_1": "bs", - "iso639_2": "bos", - "name": "Bosnian", - "nativeName": "bosanski jezik" - }, - { - "iso639_1": "hr", - "iso639_2": "hrv", - "name": "Croatian", - "nativeName": "hrvatski jezik" - }, - { - "iso639_1": "sr", - "iso639_2": "srp", - "name": "Serbian", - "nativeName": "српски језик" - } - ], - "translations": { - "de": "Bosnien und Herzegowina", - "es": "Bosnia y Herzegovina", - "fr": "Bosnie-Herzégovine", - "ja": "ボスニア・ヘルツェゴビナ", - "it": "Bosnia ed Erzegovina", - "br": "Bósnia e Herzegovina", - "pt": "Bósnia e Herzegovina", - "nl": "Bosnië en Herzegovina", - "hr": "Bosna i Hercegovina", - "fa": "بوسنی و هرزگوین" - }, - "flag": "https://restcountries.eu/data/bih.svg", - "regionalBlocs": [ - { - "acronym": "CEFTA", - "name": "Central European Free Trade Agreement", - "otherAcronyms": [], - "otherNames": [] - } - ], - "cioc": "BIH" - }, - { - "name": "Botswana", - "topLevelDomain": [".bw"], - "alpha2Code": "BW", - "alpha3Code": "BWA", - "callingCodes": ["267"], - "capital": "Gaborone", - "altSpellings": ["BW", "Republic of Botswana", "Lefatshe la Botswana"], - "region": "Africa", - "subregion": "Southern Africa", - "population": 2141206, - "latlng": [-22.0, 24.0], - "demonym": "Motswana", - "area": 582000.0, - "gini": 61.0, - "timezones": ["UTC+02:00"], - "borders": ["NAM", "ZAF", "ZMB", "ZWE"], - "nativeName": "Botswana", - "numericCode": "072", - "currencies": [{ "code": "BWP", "name": "Botswana pula", "symbol": "P" }], - "languages": [ - { - "iso639_1": "en", - "iso639_2": "eng", - "name": "English", - "nativeName": "English" - }, - { - "iso639_1": "tn", - "iso639_2": "tsn", - "name": "Tswana", - "nativeName": "Setswana" - } - ], - "translations": { - "de": "Botswana", - "es": "Botswana", - "fr": "Botswana", - "ja": "ボツワナ", - "it": "Botswana", - "br": "Botsuana", - "pt": "Botsuana", - "nl": "Botswana", - "hr": "Bocvana", - "fa": "بوتسوانا" - }, - "flag": "https://restcountries.eu/data/bwa.svg", - "regionalBlocs": [ - { - "acronym": "AU", - "name": "African Union", - "otherAcronyms": [], - "otherNames": [ - "الاتحاد الأفريقي", - "Union africaine", - "União Africana", - "Unión Africana", - "Umoja wa Afrika" - ] - } - ], - "cioc": "BOT" - }, - { - "name": "Bouvet Island", - "topLevelDomain": [".bv"], - "alpha2Code": "BV", - "alpha3Code": "BVT", - "callingCodes": [""], - "capital": "", - "altSpellings": ["BV", "Bouvetøya", "Bouvet-øya"], - "region": "", - "subregion": "", - "population": 0, - "latlng": [-54.43333333, 3.4], - "demonym": "", - "area": 49.0, - "gini": null, - "timezones": ["UTC+01:00"], - "borders": [], - "nativeName": "Bouvetøya", - "numericCode": "074", - "currencies": [ - { "code": "NOK", "name": "Norwegian krone", "symbol": "kr" } - ], - "languages": [ - { - "iso639_1": "no", - "iso639_2": "nor", - "name": "Norwegian", - "nativeName": "Norsk" - }, - { - "iso639_1": "nb", - "iso639_2": "nob", - "name": "Norwegian Bokmål", - "nativeName": "Norsk bokmål" - }, - { - "iso639_1": "nn", - "iso639_2": "nno", - "name": "Norwegian Nynorsk", - "nativeName": "Norsk nynorsk" - } - ], - "translations": { - "de": "Bouvetinsel", - "es": "Isla Bouvet", - "fr": "Île Bouvet", - "ja": "ブーベ島", - "it": "Isola Bouvet", - "br": "Ilha Bouvet", - "pt": "Ilha Bouvet", - "nl": "Bouveteiland", - "hr": "Otok Bouvet", - "fa": "جزیره بووه" - }, - "flag": "https://restcountries.eu/data/bvt.svg", - "regionalBlocs": [], - "cioc": "" - }, - { - "name": "Brazil", - "topLevelDomain": [".br"], - "alpha2Code": "BR", - "alpha3Code": "BRA", - "callingCodes": ["55"], - "capital": "Brasília", - "altSpellings": [ - "BR", - "Brasil", - "Federative Republic of Brazil", - "República Federativa do Brasil" - ], - "region": "Americas", - "subregion": "South America", - "population": 206135893, - "latlng": [-10.0, -55.0], - "demonym": "Brazilian", - "area": 8515767.0, - "gini": 54.7, - "timezones": ["UTC-05:00", "UTC-04:00", "UTC-03:00", "UTC-02:00"], - "borders": [ - "ARG", - "BOL", - "COL", - "GUF", - "GUY", - "PRY", - "PER", - "SUR", - "URY", - "VEN" - ], - "nativeName": "Brasil", - "numericCode": "076", - "currencies": [{ "code": "BRL", "name": "Brazilian real", "symbol": "R$" }], - "languages": [ - { - "iso639_1": "pt", - "iso639_2": "por", - "name": "Portuguese", - "nativeName": "Português" - } - ], - "translations": { - "de": "Brasilien", - "es": "Brasil", - "fr": "Brésil", - "ja": "ブラジル", - "it": "Brasile", - "br": "Brasil", - "pt": "Brasil", - "nl": "Brazilië", - "hr": "Brazil", - "fa": "برزیل" - }, - "flag": "https://restcountries.eu/data/bra.svg", - "regionalBlocs": [ - { - "acronym": "USAN", - "name": "Union of South American Nations", - "otherAcronyms": ["UNASUR", "UNASUL", "UZAN"], - "otherNames": [ - "Unión de Naciones Suramericanas", - "União de Nações Sul-Americanas", - "Unie van Zuid-Amerikaanse Naties", - "South American Union" - ] - } - ], - "cioc": "BRA" - }, - { - "name": "British Indian Ocean Territory", - "topLevelDomain": [".io"], - "alpha2Code": "IO", - "alpha3Code": "IOT", - "callingCodes": ["246"], - "capital": "Diego Garcia", - "altSpellings": ["IO"], - "region": "Africa", - "subregion": "Eastern Africa", - "population": 3000, - "latlng": [-6.0, 71.5], - "demonym": "Indian", - "area": 60.0, - "gini": null, - "timezones": ["UTC+06:00"], - "borders": [], - "nativeName": "British Indian Ocean Territory", - "numericCode": "086", - "currencies": [ - { "code": "USD", "name": "United States dollar", "symbol": "$" } - ], - "languages": [ - { - "iso639_1": "en", - "iso639_2": "eng", - "name": "English", - "nativeName": "English" - } - ], - "translations": { - "de": "Britisches Territorium im Indischen Ozean", - "es": "Territorio Británico del Océano Índico", - "fr": "Territoire britannique de l'océan Indien", - "ja": "イギリス領インド洋地域", - "it": "Territorio britannico dell'oceano indiano", - "br": "Território Britânico do Oceano íÍdico", - "pt": "Território Britânico do Oceano Índico", - "nl": "Britse Gebieden in de Indische Oceaan", - "hr": "Britanski Indijskooceanski teritorij", - "fa": "قلمرو بریتانیا در اقیانوس هند" - }, - "flag": "https://restcountries.eu/data/iot.svg", - "regionalBlocs": [ - { - "acronym": "AU", - "name": "African Union", - "otherAcronyms": [], - "otherNames": [ - "الاتحاد الأفريقي", - "Union africaine", - "União Africana", - "Unión Africana", - "Umoja wa Afrika" - ] - } - ], - "cioc": "" - }, - { - "name": "United States Minor Outlying Islands", - "topLevelDomain": [".us"], - "alpha2Code": "UM", - "alpha3Code": "UMI", - "callingCodes": [""], - "capital": "", - "altSpellings": ["UM"], - "region": "Americas", - "subregion": "Northern America", - "population": 300, - "latlng": [], - "demonym": "American", - "area": null, - "gini": null, - "timezones": ["UTC-11:00", "UTC-10:00", "UTC+12:00"], - "borders": [], - "nativeName": "United States Minor Outlying Islands", - "numericCode": "581", - "currencies": [ - { "code": "USD", "name": "United States Dollar", "symbol": "$" } - ], - "languages": [ - { - "iso639_1": "en", - "iso639_2": "eng", - "name": "English", - "nativeName": "English" - } - ], - "translations": { - "de": "Kleinere Inselbesitzungen der Vereinigten Staaten", - "es": "Islas Ultramarinas Menores de Estados Unidos", - "fr": "Îles mineures éloignées des États-Unis", - "ja": "合衆国領有小離島", - "it": "Isole minori esterne degli Stati Uniti d'America", - "br": "Ilhas Menores Distantes dos Estados Unidos", - "pt": "Ilhas Menores Distantes dos Estados Unidos", - "nl": "Kleine afgelegen eilanden van de Verenigde Staten", - "hr": "Mali udaljeni otoci SAD-a", - "fa": "جزایر کوچک حاشیه‌ای ایالات متحده آمریکا" - }, - "flag": "https://restcountries.eu/data/umi.svg", - "regionalBlocs": [], - "cioc": "" - }, - { - "name": "Virgin Islands (British)", - "topLevelDomain": [".vg"], - "alpha2Code": "VG", - "alpha3Code": "VGB", - "callingCodes": ["1284"], - "capital": "Road Town", - "altSpellings": ["VG"], - "region": "Americas", - "subregion": "Caribbean", - "population": 28514, - "latlng": [18.431383, -64.62305], - "demonym": "Virgin Islander", - "area": 151.0, - "gini": null, - "timezones": ["UTC-04:00"], - "borders": [], - "nativeName": "British Virgin Islands", - "numericCode": "092", - "currencies": [ - { "code": null, "name": "[D]", "symbol": "$" }, - { "code": "USD", "name": "United States dollar", "symbol": "$" } - ], - "languages": [ - { - "iso639_1": "en", - "iso639_2": "eng", - "name": "English", - "nativeName": "English" - } - ], - "translations": { - "de": "Britische Jungferninseln", - "es": "Islas Vírgenes del Reino Unido", - "fr": "Îles Vierges britanniques", - "ja": "イギリス領ヴァージン諸島", - "it": "Isole Vergini Britanniche", - "br": "Ilhas Virgens Britânicas", - "pt": "Ilhas Virgens Britânicas", - "nl": "Britse Maagdeneilanden", - "hr": "Britanski Djevičanski Otoci", - "fa": "جزایر ویرجین بریتانیا" - }, - "flag": "https://restcountries.eu/data/vgb.svg", - "regionalBlocs": [], - "cioc": "IVB" - }, - { - "name": "Virgin Islands (U.S.)", - "topLevelDomain": [".vi"], - "alpha2Code": "VI", - "alpha3Code": "VIR", - "callingCodes": ["1 340"], - "capital": "Charlotte Amalie", - "altSpellings": [ - "VI", - "USVI", - "American Virgin Islands", - "U.S. Virgin Islands" - ], - "region": "Americas", - "subregion": "Caribbean", - "population": 114743, - "latlng": [18.34, -64.93], - "demonym": "Virgin Islander", - "area": 346.36, - "gini": null, - "timezones": ["UTC-04:00"], - "borders": [], - "nativeName": "Virgin Islands of the United States", - "numericCode": "850", - "currencies": [ - { "code": "USD", "name": "United States dollar", "symbol": "$" } - ], - "languages": [ - { - "iso639_1": "en", - "iso639_2": "eng", - "name": "English", - "nativeName": "English" - } - ], - "translations": { - "de": "Amerikanische Jungferninseln", - "es": "Islas Vírgenes de los Estados Unidos", - "fr": "Îles Vierges des États-Unis", - "ja": "アメリカ領ヴァージン諸島", - "it": "Isole Vergini americane", - "br": "Ilhas Virgens Americanas", - "pt": "Ilhas Virgens Americanas", - "nl": "Verenigde Staten Maagdeneilanden", - "hr": null, - "fa": "جزایر ویرجین آمریکا" - }, - "flag": "https://restcountries.eu/data/vir.svg", - "regionalBlocs": [], - "cioc": "ISV" - }, - { - "name": "Brunei Darussalam", - "topLevelDomain": [".bn"], - "alpha2Code": "BN", - "alpha3Code": "BRN", - "callingCodes": ["673"], - "capital": "Bandar Seri Begawan", - "altSpellings": ["BN", "Nation of Brunei", " the Abode of Peace"], - "region": "Asia", - "subregion": "South-Eastern Asia", - "population": 411900, - "latlng": [4.5, 114.66666666], - "demonym": "Bruneian", - "area": 5765.0, - "gini": null, - "timezones": ["UTC+08:00"], - "borders": ["MYS"], - "nativeName": "Negara Brunei Darussalam", - "numericCode": "096", - "currencies": [ - { "code": "BND", "name": "Brunei dollar", "symbol": "$" }, - { "code": "SGD", "name": "Singapore dollar", "symbol": "$" } - ], - "languages": [ - { - "iso639_1": "ms", - "iso639_2": "msa", - "name": "Malay", - "nativeName": "bahasa Melayu" - } - ], - "translations": { - "de": "Brunei", - "es": "Brunei", - "fr": "Brunei", - "ja": "ブルネイ・ダルサラーム", - "it": "Brunei", - "br": "Brunei", - "pt": "Brunei", - "nl": "Brunei", - "hr": "Brunej", - "fa": "برونئی" - }, - "flag": "https://restcountries.eu/data/brn.svg", - "regionalBlocs": [ - { - "acronym": "ASEAN", - "name": "Association of Southeast Asian Nations", - "otherAcronyms": [], - "otherNames": [] - } - ], - "cioc": "BRU" - }, - { - "name": "Bulgaria", - "topLevelDomain": [".bg"], - "alpha2Code": "BG", - "alpha3Code": "BGR", - "callingCodes": ["359"], - "capital": "Sofia", - "altSpellings": ["BG", "Republic of Bulgaria", "Република България"], - "region": "Europe", - "subregion": "Eastern Europe", - "population": 7153784, - "latlng": [43.0, 25.0], - "demonym": "Bulgarian", - "area": 110879.0, - "gini": 28.2, - "timezones": ["UTC+02:00"], - "borders": ["GRC", "MKD", "ROU", "SRB", "TUR"], - "nativeName": "България", - "numericCode": "100", - "currencies": [{ "code": "BGN", "name": "Bulgarian lev", "symbol": "лв" }], - "languages": [ - { - "iso639_1": "bg", - "iso639_2": "bul", - "name": "Bulgarian", - "nativeName": "български език" - } - ], - "translations": { - "de": "Bulgarien", - "es": "Bulgaria", - "fr": "Bulgarie", - "ja": "ブルガリア", - "it": "Bulgaria", - "br": "Bulgária", - "pt": "Bulgária", - "nl": "Bulgarije", - "hr": "Bugarska", - "fa": "بلغارستان" - }, - "flag": "https://restcountries.eu/data/bgr.svg", - "regionalBlocs": [ - { - "acronym": "EU", - "name": "European Union", - "otherAcronyms": [], - "otherNames": [] - } - ], - "cioc": "BUL" - }, - { - "name": "Burkina Faso", - "topLevelDomain": [".bf"], - "alpha2Code": "BF", - "alpha3Code": "BFA", - "callingCodes": ["226"], - "capital": "Ouagadougou", - "altSpellings": ["BF"], - "region": "Africa", - "subregion": "Western Africa", - "population": 19034397, - "latlng": [13.0, -2.0], - "demonym": "Burkinabe", - "area": 272967.0, - "gini": 39.8, - "timezones": ["UTC"], - "borders": ["BEN", "CIV", "GHA", "MLI", "NER", "TGO"], - "nativeName": "Burkina Faso", - "numericCode": "854", - "currencies": [ - { "code": "XOF", "name": "West African CFA franc", "symbol": "Fr" } - ], - "languages": [ - { - "iso639_1": "fr", - "iso639_2": "fra", - "name": "French", - "nativeName": "français" - }, - { - "iso639_1": "ff", - "iso639_2": "ful", - "name": "Fula", - "nativeName": "Fulfulde" - } - ], - "translations": { - "de": "Burkina Faso", - "es": "Burkina Faso", - "fr": "Burkina Faso", - "ja": "ブルキナファソ", - "it": "Burkina Faso", - "br": "Burkina Faso", - "pt": "Burquina Faso", - "nl": "Burkina Faso", - "hr": "Burkina Faso", - "fa": "بورکینافاسو" - }, - "flag": "https://restcountries.eu/data/bfa.svg", - "regionalBlocs": [ - { - "acronym": "AU", - "name": "African Union", - "otherAcronyms": [], - "otherNames": [ - "الاتحاد الأفريقي", - "Union africaine", - "União Africana", - "Unión Africana", - "Umoja wa Afrika" - ] - } - ], - "cioc": "BUR" - }, - { - "name": "Burundi", - "topLevelDomain": [".bi"], - "alpha2Code": "BI", - "alpha3Code": "BDI", - "callingCodes": ["257"], - "capital": "Bujumbura", - "altSpellings": [ - "BI", - "Republic of Burundi", - "Republika y'Uburundi", - "République du Burundi" - ], - "region": "Africa", - "subregion": "Eastern Africa", - "population": 10114505, - "latlng": [-3.5, 30.0], - "demonym": "Burundian", - "area": 27834.0, - "gini": 33.3, - "timezones": ["UTC+02:00"], - "borders": ["COD", "RWA", "TZA"], - "nativeName": "Burundi", - "numericCode": "108", - "currencies": [ - { "code": "BIF", "name": "Burundian franc", "symbol": "Fr" } - ], - "languages": [ - { - "iso639_1": "fr", - "iso639_2": "fra", - "name": "French", - "nativeName": "français" - }, - { - "iso639_1": "rn", - "iso639_2": "run", - "name": "Kirundi", - "nativeName": "Ikirundi" - } - ], - "translations": { - "de": "Burundi", - "es": "Burundi", - "fr": "Burundi", - "ja": "ブルンジ", - "it": "Burundi", - "br": "Burundi", - "pt": "Burúndi", - "nl": "Burundi", - "hr": "Burundi", - "fa": "بوروندی" - }, - "flag": "https://restcountries.eu/data/bdi.svg", - "regionalBlocs": [ - { - "acronym": "AU", - "name": "African Union", - "otherAcronyms": [], - "otherNames": [ - "الاتحاد الأفريقي", - "Union africaine", - "União Africana", - "Unión Africana", - "Umoja wa Afrika" - ] - } - ], - "cioc": "BDI" - }, - { - "name": "Cambodia", - "topLevelDomain": [".kh"], - "alpha2Code": "KH", - "alpha3Code": "KHM", - "callingCodes": ["855"], - "capital": "Phnom Penh", - "altSpellings": ["KH", "Kingdom of Cambodia"], - "region": "Asia", - "subregion": "South-Eastern Asia", - "population": 15626444, - "latlng": [13.0, 105.0], - "demonym": "Cambodian", - "area": 181035.0, - "gini": 37.9, - "timezones": ["UTC+07:00"], - "borders": ["LAO", "THA", "VNM"], - "nativeName": "Kâmpŭchéa", - "numericCode": "116", - "currencies": [ - { "code": "KHR", "name": "Cambodian riel", "symbol": "៛" }, - { "code": "USD", "name": "United States dollar", "symbol": "$" } - ], - "languages": [ - { - "iso639_1": "km", - "iso639_2": "khm", - "name": "Khmer", - "nativeName": "ខ្មែរ" - } - ], - "translations": { - "de": "Kambodscha", - "es": "Camboya", - "fr": "Cambodge", - "ja": "カンボジア", - "it": "Cambogia", - "br": "Camboja", - "pt": "Camboja", - "nl": "Cambodja", - "hr": "Kambodža", - "fa": "کامبوج" - }, - "flag": "https://restcountries.eu/data/khm.svg", - "regionalBlocs": [ - { - "acronym": "ASEAN", - "name": "Association of Southeast Asian Nations", - "otherAcronyms": [], - "otherNames": [] - } - ], - "cioc": "CAM" - }, - { - "name": "Cameroon", - "topLevelDomain": [".cm"], - "alpha2Code": "CM", - "alpha3Code": "CMR", - "callingCodes": ["237"], - "capital": "Yaoundé", - "altSpellings": ["CM", "Republic of Cameroon", "République du Cameroun"], - "region": "Africa", - "subregion": "Middle Africa", - "population": 22709892, - "latlng": [6.0, 12.0], - "demonym": "Cameroonian", - "area": 475442.0, - "gini": 38.9, - "timezones": ["UTC+01:00"], - "borders": ["CAF", "TCD", "COG", "GNQ", "GAB", "NGA"], - "nativeName": "Cameroon", - "numericCode": "120", - "currencies": [ - { "code": "XAF", "name": "Central African CFA franc", "symbol": "Fr" } - ], - "languages": [ - { - "iso639_1": "en", - "iso639_2": "eng", - "name": "English", - "nativeName": "English" - }, - { - "iso639_1": "fr", - "iso639_2": "fra", - "name": "French", - "nativeName": "français" - } - ], - "translations": { - "de": "Kamerun", - "es": "Camerún", - "fr": "Cameroun", - "ja": "カメルーン", - "it": "Camerun", - "br": "Camarões", - "pt": "Camarões", - "nl": "Kameroen", - "hr": "Kamerun", - "fa": "کامرون" - }, - "flag": "https://restcountries.eu/data/cmr.svg", - "regionalBlocs": [ - { - "acronym": "AU", - "name": "African Union", - "otherAcronyms": [], - "otherNames": [ - "الاتحاد الأفريقي", - "Union africaine", - "União Africana", - "Unión Africana", - "Umoja wa Afrika" - ] - } - ], - "cioc": "CMR" - }, - { - "name": "Canada", - "topLevelDomain": [".ca"], - "alpha2Code": "CA", - "alpha3Code": "CAN", - "callingCodes": ["1"], - "capital": "Ottawa", - "altSpellings": ["CA"], - "region": "Americas", - "subregion": "Northern America", - "population": 36155487, - "latlng": [60.0, -95.0], - "demonym": "Canadian", - "area": 9984670.0, - "gini": 32.6, - "timezones": [ - "UTC-08:00", - "UTC-07:00", - "UTC-06:00", - "UTC-05:00", - "UTC-04:00", - "UTC-03:30" - ], - "borders": ["USA"], - "nativeName": "Canada", - "numericCode": "124", - "currencies": [{ "code": "CAD", "name": "Canadian dollar", "symbol": "$" }], - "languages": [ - { - "iso639_1": "en", - "iso639_2": "eng", - "name": "English", - "nativeName": "English" - }, - { - "iso639_1": "fr", - "iso639_2": "fra", - "name": "French", - "nativeName": "français" - } - ], - "translations": { - "de": "Kanada", - "es": "Canadá", - "fr": "Canada", - "ja": "カナダ", - "it": "Canada", - "br": "Canadá", - "pt": "Canadá", - "nl": "Canada", - "hr": "Kanada", - "fa": "کانادا" - }, - "flag": "https://restcountries.eu/data/can.svg", - "regionalBlocs": [ - { - "acronym": "NAFTA", - "name": "North American Free Trade Agreement", - "otherAcronyms": [], - "otherNames": [ - "Tratado de Libre Comercio de América del Norte", - "Accord de Libre-échange Nord-Américain" - ] - } - ], - "cioc": "CAN" - }, - { - "name": "Cabo Verde", - "topLevelDomain": [".cv"], - "alpha2Code": "CV", - "alpha3Code": "CPV", - "callingCodes": ["238"], - "capital": "Praia", - "altSpellings": ["CV", "Republic of Cabo Verde", "República de Cabo Verde"], - "region": "Africa", - "subregion": "Western Africa", - "population": 531239, - "latlng": [16.0, -24.0], - "demonym": "Cape Verdian", - "area": 4033.0, - "gini": 50.5, - "timezones": ["UTC-01:00"], - "borders": [], - "nativeName": "Cabo Verde", - "numericCode": "132", - "currencies": [ - { "code": "CVE", "name": "Cape Verdean escudo", "symbol": "Esc" } - ], - "languages": [ - { - "iso639_1": "pt", - "iso639_2": "por", - "name": "Portuguese", - "nativeName": "Português" - } - ], - "translations": { - "de": "Kap Verde", - "es": "Cabo Verde", - "fr": "Cap Vert", - "ja": "カーボベルデ", - "it": "Capo Verde", - "br": "Cabo Verde", - "pt": "Cabo Verde", - "nl": "Kaapverdië", - "hr": "Zelenortska Republika", - "fa": "کیپ ورد" - }, - "flag": "https://restcountries.eu/data/cpv.svg", - "regionalBlocs": [ - { - "acronym": "AU", - "name": "African Union", - "otherAcronyms": [], - "otherNames": [ - "الاتحاد الأفريقي", - "Union africaine", - "União Africana", - "Unión Africana", - "Umoja wa Afrika" - ] - } - ], - "cioc": "CPV" - }, - { - "name": "Cayman Islands", - "topLevelDomain": [".ky"], - "alpha2Code": "KY", - "alpha3Code": "CYM", - "callingCodes": ["1345"], - "capital": "George Town", - "altSpellings": ["KY"], - "region": "Americas", - "subregion": "Caribbean", - "population": 58238, - "latlng": [19.5, -80.5], - "demonym": "Caymanian", - "area": 264.0, - "gini": null, - "timezones": ["UTC-05:00"], - "borders": [], - "nativeName": "Cayman Islands", - "numericCode": "136", - "currencies": [ - { "code": "KYD", "name": "Cayman Islands dollar", "symbol": "$" } - ], - "languages": [ - { - "iso639_1": "en", - "iso639_2": "eng", - "name": "English", - "nativeName": "English" - } - ], - "translations": { - "de": "Kaimaninseln", - "es": "Islas Caimán", - "fr": "Îles Caïmans", - "ja": "ケイマン諸島", - "it": "Isole Cayman", - "br": "Ilhas Cayman", - "pt": "Ilhas Caimão", - "nl": "Caymaneilanden", - "hr": "Kajmanski otoci", - "fa": "جزایر کیمن" - }, - "flag": "https://restcountries.eu/data/cym.svg", - "regionalBlocs": [], - "cioc": "CAY" - }, - { - "name": "Central African Republic", - "topLevelDomain": [".cf"], - "alpha2Code": "CF", - "alpha3Code": "CAF", - "callingCodes": ["236"], - "capital": "Bangui", - "altSpellings": [ - "CF", - "Central African Republic", - "République centrafricaine" - ], - "region": "Africa", - "subregion": "Middle Africa", - "population": 4998000, - "latlng": [7.0, 21.0], - "demonym": "Central African", - "area": 622984.0, - "gini": 56.3, - "timezones": ["UTC+01:00"], - "borders": ["CMR", "TCD", "COD", "COG", "SSD", "SDN"], - "nativeName": "Ködörösêse tî Bêafrîka", - "numericCode": "140", - "currencies": [ - { "code": "XAF", "name": "Central African CFA franc", "symbol": "Fr" } - ], - "languages": [ - { - "iso639_1": "fr", - "iso639_2": "fra", - "name": "French", - "nativeName": "français" - }, - { - "iso639_1": "sg", - "iso639_2": "sag", - "name": "Sango", - "nativeName": "yângâ tî sängö" - } - ], - "translations": { - "de": "Zentralafrikanische Republik", - "es": "República Centroafricana", - "fr": "République centrafricaine", - "ja": "中央アフリカ共和国", - "it": "Repubblica Centrafricana", - "br": "República Centro-Africana", - "pt": "República Centro-Africana", - "nl": "Centraal-Afrikaanse Republiek", - "hr": "Srednjoafrička Republika", - "fa": "جمهوری آفریقای مرکزی" - }, - "flag": "https://restcountries.eu/data/caf.svg", - "regionalBlocs": [ - { - "acronym": "AU", - "name": "African Union", - "otherAcronyms": [], - "otherNames": [ - "الاتحاد الأفريقي", - "Union africaine", - "União Africana", - "Unión Africana", - "Umoja wa Afrika" - ] - } - ], - "cioc": "CAF" - }, - { - "name": "Chad", - "topLevelDomain": [".td"], - "alpha2Code": "TD", - "alpha3Code": "TCD", - "callingCodes": ["235"], - "capital": "N'Djamena", - "altSpellings": ["TD", "Tchad", "Republic of Chad", "République du Tchad"], - "region": "Africa", - "subregion": "Middle Africa", - "population": 14497000, - "latlng": [15.0, 19.0], - "demonym": "Chadian", - "area": 1284000.0, - "gini": 39.8, - "timezones": ["UTC+01:00"], - "borders": ["CMR", "CAF", "LBY", "NER", "NGA", "SSD"], - "nativeName": "Tchad", - "numericCode": "148", - "currencies": [ - { "code": "XAF", "name": "Central African CFA franc", "symbol": "Fr" } - ], - "languages": [ - { - "iso639_1": "fr", - "iso639_2": "fra", - "name": "French", - "nativeName": "français" - }, - { - "iso639_1": "ar", - "iso639_2": "ara", - "name": "Arabic", - "nativeName": "العربية" - } - ], - "translations": { - "de": "Tschad", - "es": "Chad", - "fr": "Tchad", - "ja": "チャド", - "it": "Ciad", - "br": "Chade", - "pt": "Chade", - "nl": "Tsjaad", - "hr": "Čad", - "fa": "چاد" - }, - "flag": "https://restcountries.eu/data/tcd.svg", - "regionalBlocs": [ - { - "acronym": "AU", - "name": "African Union", - "otherAcronyms": [], - "otherNames": [ - "الاتحاد الأفريقي", - "Union africaine", - "União Africana", - "Unión Africana", - "Umoja wa Afrika" - ] - } - ], - "cioc": "CHA" - }, - { - "name": "Chile", - "topLevelDomain": [".cl"], - "alpha2Code": "CL", - "alpha3Code": "CHL", - "callingCodes": ["56"], - "capital": "Santiago", - "altSpellings": ["CL", "Republic of Chile", "República de Chile"], - "region": "Americas", - "subregion": "South America", - "population": 18191900, - "latlng": [-30.0, -71.0], - "demonym": "Chilean", - "area": 756102.0, - "gini": 52.1, - "timezones": ["UTC-06:00", "UTC-04:00"], - "borders": ["ARG", "BOL", "PER"], - "nativeName": "Chile", - "numericCode": "152", - "currencies": [{ "code": "CLP", "name": "Chilean peso", "symbol": "$" }], - "languages": [ - { - "iso639_1": "es", - "iso639_2": "spa", - "name": "Spanish", - "nativeName": "Español" - } - ], - "translations": { - "de": "Chile", - "es": "Chile", - "fr": "Chili", - "ja": "チリ", - "it": "Cile", - "br": "Chile", - "pt": "Chile", - "nl": "Chili", - "hr": "Čile", - "fa": "شیلی" - }, - "flag": "https://restcountries.eu/data/chl.svg", - "regionalBlocs": [ - { - "acronym": "PA", - "name": "Pacific Alliance", - "otherAcronyms": [], - "otherNames": ["Alianza del Pacífico"] - }, - { - "acronym": "USAN", - "name": "Union of South American Nations", - "otherAcronyms": ["UNASUR", "UNASUL", "UZAN"], - "otherNames": [ - "Unión de Naciones Suramericanas", - "União de Nações Sul-Americanas", - "Unie van Zuid-Amerikaanse Naties", - "South American Union" - ] - } - ], - "cioc": "CHI" - }, - { - "name": "China", - "topLevelDomain": [".cn"], - "alpha2Code": "CN", - "alpha3Code": "CHN", - "callingCodes": ["86"], - "capital": "Beijing", - "altSpellings": [ - "CN", - "Zhōngguó", - "Zhongguo", - "Zhonghua", - "People's Republic of China", - "中华人民共和国", - "Zhōnghuá Rénmín Gònghéguó" - ], - "region": "Asia", - "subregion": "Eastern Asia", - "population": 1377422166, - "latlng": [35.0, 105.0], - "demonym": "Chinese", - "area": 9640011.0, - "gini": 47.0, - "timezones": ["UTC+08:00"], - "borders": [ - "AFG", - "BTN", - "MMR", - "HKG", - "IND", - "KAZ", - "PRK", - "KGZ", - "LAO", - "MAC", - "MNG", - "PAK", - "RUS", - "TJK", - "VNM" - ], - "nativeName": "中国", - "numericCode": "156", - "currencies": [{ "code": "CNY", "name": "Chinese yuan", "symbol": "¥" }], - "languages": [ - { - "iso639_1": "zh", - "iso639_2": "zho", - "name": "Chinese", - "nativeName": "中文 (Zhōngwén)" - } - ], - "translations": { - "de": "China", - "es": "China", - "fr": "Chine", - "ja": "中国", - "it": "Cina", - "br": "China", - "pt": "China", - "nl": "China", - "hr": "Kina", - "fa": "چین" - }, - "flag": "https://restcountries.eu/data/chn.svg", - "regionalBlocs": [], - "cioc": "CHN" - }, - { - "name": "Christmas Island", - "topLevelDomain": [".cx"], - "alpha2Code": "CX", - "alpha3Code": "CXR", - "callingCodes": ["61"], - "capital": "Flying Fish Cove", - "altSpellings": ["CX", "Territory of Christmas Island"], - "region": "Oceania", - "subregion": "Australia and New Zealand", - "population": 2072, - "latlng": [-10.5, 105.66666666], - "demonym": "Christmas Island", - "area": 135.0, - "gini": null, - "timezones": ["UTC+07:00"], - "borders": [], - "nativeName": "Christmas Island", - "numericCode": "162", - "currencies": [ - { "code": "AUD", "name": "Australian dollar", "symbol": "$" } - ], - "languages": [ - { - "iso639_1": "en", - "iso639_2": "eng", - "name": "English", - "nativeName": "English" - } - ], - "translations": { - "de": "Weihnachtsinsel", - "es": "Isla de Navidad", - "fr": "Île Christmas", - "ja": "クリスマス島", - "it": "Isola di Natale", - "br": "Ilha Christmas", - "pt": "Ilha do Natal", - "nl": "Christmaseiland", - "hr": "Božićni otok", - "fa": "جزیره کریسمس" - }, - "flag": "https://restcountries.eu/data/cxr.svg", - "regionalBlocs": [], - "cioc": "" - }, - { - "name": "Cocos (Keeling) Islands", - "topLevelDomain": [".cc"], - "alpha2Code": "CC", - "alpha3Code": "CCK", - "callingCodes": ["61"], - "capital": "West Island", - "altSpellings": [ - "CC", - "Territory of the Cocos (Keeling) Islands", - "Keeling Islands" - ], - "region": "Oceania", - "subregion": "Australia and New Zealand", - "population": 550, - "latlng": [-12.5, 96.83333333], - "demonym": "Cocos Islander", - "area": 14.0, - "gini": null, - "timezones": ["UTC+06:30"], - "borders": [], - "nativeName": "Cocos (Keeling) Islands", - "numericCode": "166", - "currencies": [ - { "code": "AUD", "name": "Australian dollar", "symbol": "$" } - ], - "languages": [ - { - "iso639_1": "en", - "iso639_2": "eng", - "name": "English", - "nativeName": "English" - } - ], - "translations": { - "de": "Kokosinseln", - "es": "Islas Cocos o Islas Keeling", - "fr": "Îles Cocos", - "ja": "ココス(キーリング)諸島", - "it": "Isole Cocos e Keeling", - "br": "Ilhas Cocos", - "pt": "Ilhas dos Cocos", - "nl": "Cocoseilanden", - "hr": "Kokosovi Otoci", - "fa": "جزایر کوکوس" - }, - "flag": "https://restcountries.eu/data/cck.svg", - "regionalBlocs": [], - "cioc": "" - }, - { - "name": "Colombia", - "topLevelDomain": [".co"], - "alpha2Code": "CO", - "alpha3Code": "COL", - "callingCodes": ["57"], - "capital": "Bogotá", - "altSpellings": ["CO", "Republic of Colombia", "República de Colombia"], - "region": "Americas", - "subregion": "South America", - "population": 48759958, - "latlng": [4.0, -72.0], - "demonym": "Colombian", - "area": 1141748.0, - "gini": 55.9, - "timezones": ["UTC-05:00"], - "borders": ["BRA", "ECU", "PAN", "PER", "VEN"], - "nativeName": "Colombia", - "numericCode": "170", - "currencies": [{ "code": "COP", "name": "Colombian peso", "symbol": "$" }], - "languages": [ - { - "iso639_1": "es", - "iso639_2": "spa", - "name": "Spanish", - "nativeName": "Español" - } - ], - "translations": { - "de": "Kolumbien", - "es": "Colombia", - "fr": "Colombie", - "ja": "コロンビア", - "it": "Colombia", - "br": "Colômbia", - "pt": "Colômbia", - "nl": "Colombia", - "hr": "Kolumbija", - "fa": "کلمبیا" - }, - "flag": "https://restcountries.eu/data/col.svg", - "regionalBlocs": [ - { - "acronym": "PA", - "name": "Pacific Alliance", - "otherAcronyms": [], - "otherNames": ["Alianza del Pacífico"] - }, - { - "acronym": "USAN", - "name": "Union of South American Nations", - "otherAcronyms": ["UNASUR", "UNASUL", "UZAN"], - "otherNames": [ - "Unión de Naciones Suramericanas", - "União de Nações Sul-Americanas", - "Unie van Zuid-Amerikaanse Naties", - "South American Union" - ] - } - ], - "cioc": "COL" - }, - { - "name": "Comoros", - "topLevelDomain": [".km"], - "alpha2Code": "KM", - "alpha3Code": "COM", - "callingCodes": ["269"], - "capital": "Moroni", - "altSpellings": [ - "KM", - "Union of the Comoros", - "Union des Comores", - "Udzima wa Komori", - "al-Ittiḥād al-Qumurī" - ], - "region": "Africa", - "subregion": "Eastern Africa", - "population": 806153, - "latlng": [-12.16666666, 44.25], - "demonym": "Comoran", - "area": 1862.0, - "gini": 64.3, - "timezones": ["UTC+03:00"], - "borders": [], - "nativeName": "Komori", - "numericCode": "174", - "currencies": [{ "code": "KMF", "name": "Comorian franc", "symbol": "Fr" }], - "languages": [ - { - "iso639_1": "ar", - "iso639_2": "ara", - "name": "Arabic", - "nativeName": "العربية" - }, - { - "iso639_1": "fr", - "iso639_2": "fra", - "name": "French", - "nativeName": "français" - } - ], - "translations": { - "de": "Union der Komoren", - "es": "Comoras", - "fr": "Comores", - "ja": "コモロ", - "it": "Comore", - "br": "Comores", - "pt": "Comores", - "nl": "Comoren", - "hr": "Komori", - "fa": "کومور" - }, - "flag": "https://restcountries.eu/data/com.svg", - "regionalBlocs": [ - { - "acronym": "AU", - "name": "African Union", - "otherAcronyms": [], - "otherNames": [ - "الاتحاد الأفريقي", - "Union africaine", - "União Africana", - "Unión Africana", - "Umoja wa Afrika" - ] - }, - { - "acronym": "AL", - "name": "Arab League", - "otherAcronyms": [], - "otherNames": [ - "جامعة الدول العربية", - "Jāmiʻat ad-Duwal al-ʻArabīyah", - "League of Arab States" - ] - } - ], - "cioc": "COM" - }, - { - "name": "Congo", - "topLevelDomain": [".cg"], - "alpha2Code": "CG", - "alpha3Code": "COG", - "callingCodes": ["242"], - "capital": "Brazzaville", - "altSpellings": ["CG", "Congo-Brazzaville"], - "region": "Africa", - "subregion": "Middle Africa", - "population": 4741000, - "latlng": [-1.0, 15.0], - "demonym": "Congolese", - "area": 342000.0, - "gini": 47.3, - "timezones": ["UTC+01:00"], - "borders": ["AGO", "CMR", "CAF", "COD", "GAB"], - "nativeName": "République du Congo", - "numericCode": "178", - "currencies": [ - { "code": "XAF", "name": "Central African CFA franc", "symbol": "Fr" } - ], - "languages": [ - { - "iso639_1": "fr", - "iso639_2": "fra", - "name": "French", - "nativeName": "français" - }, - { - "iso639_1": "ln", - "iso639_2": "lin", - "name": "Lingala", - "nativeName": "Lingála" - } - ], - "translations": { - "de": "Kongo", - "es": "Congo", - "fr": "Congo", - "ja": "コンゴ共和国", - "it": "Congo", - "br": "Congo", - "pt": "Congo", - "nl": "Congo [Republiek]", - "hr": "Kongo", - "fa": "کنگو" - }, - "flag": "https://restcountries.eu/data/cog.svg", - "regionalBlocs": [ - { - "acronym": "AU", - "name": "African Union", - "otherAcronyms": [], - "otherNames": [ - "الاتحاد الأفريقي", - "Union africaine", - "União Africana", - "Unión Africana", - "Umoja wa Afrika" - ] - } - ], - "cioc": "CGO" - }, - { - "name": "Congo (Democratic Republic of the)", - "topLevelDomain": [".cd"], - "alpha2Code": "CD", - "alpha3Code": "COD", - "callingCodes": ["243"], - "capital": "Kinshasa", - "altSpellings": ["CD", "DR Congo", "Congo-Kinshasa", "DRC"], - "region": "Africa", - "subregion": "Middle Africa", - "population": 85026000, - "latlng": [0.0, 25.0], - "demonym": "Congolese", - "area": 2344858.0, - "gini": null, - "timezones": ["UTC+01:00", "UTC+02:00"], - "borders": ["AGO", "BDI", "CAF", "COG", "RWA", "SSD", "TZA", "UGA", "ZMB"], - "nativeName": "République démocratique du Congo", - "numericCode": "180", - "currencies": [ - { "code": "CDF", "name": "Congolese franc", "symbol": "Fr" } - ], - "languages": [ - { - "iso639_1": "fr", - "iso639_2": "fra", - "name": "French", - "nativeName": "français" - }, - { - "iso639_1": "ln", - "iso639_2": "lin", - "name": "Lingala", - "nativeName": "Lingála" - }, - { - "iso639_1": "kg", - "iso639_2": "kon", - "name": "Kongo", - "nativeName": "Kikongo" - }, - { - "iso639_1": "sw", - "iso639_2": "swa", - "name": "Swahili", - "nativeName": "Kiswahili" - }, - { - "iso639_1": "lu", - "iso639_2": "lub", - "name": "Luba-Katanga", - "nativeName": "Tshiluba" - } - ], - "translations": { - "de": "Kongo (Dem. Rep.)", - "es": "Congo (Rep. Dem.)", - "fr": "Congo (Rép. dém.)", - "ja": "コンゴ民主共和国", - "it": "Congo (Rep. Dem.)", - "br": "RD Congo", - "pt": "RD Congo", - "nl": "Congo [DRC]", - "hr": "Kongo, Demokratska Republika", - "fa": "جمهوری کنگو" - }, - "flag": "https://restcountries.eu/data/cod.svg", - "regionalBlocs": [ - { - "acronym": "AU", - "name": "African Union", - "otherAcronyms": [], - "otherNames": [ - "الاتحاد الأفريقي", - "Union africaine", - "União Africana", - "Unión Africana", - "Umoja wa Afrika" - ] - } - ], - "cioc": "COD" - }, - { - "name": "Cook Islands", - "topLevelDomain": [".ck"], - "alpha2Code": "CK", - "alpha3Code": "COK", - "callingCodes": ["682"], - "capital": "Avarua", - "altSpellings": ["CK", "Kūki 'Āirani"], - "region": "Oceania", - "subregion": "Polynesia", - "population": 18100, - "latlng": [-21.23333333, -159.76666666], - "demonym": "Cook Islander", - "area": 236.0, - "gini": null, - "timezones": ["UTC-10:00"], - "borders": [], - "nativeName": "Cook Islands", - "numericCode": "184", - "currencies": [ - { "code": "NZD", "name": "New Zealand dollar", "symbol": "$" }, - { "code": "CKD", "name": "Cook Islands dollar", "symbol": "$" } - ], - "languages": [ - { - "iso639_1": "en", - "iso639_2": "eng", - "name": "English", - "nativeName": "English" - } - ], - "translations": { - "de": "Cookinseln", - "es": "Islas Cook", - "fr": "Îles Cook", - "ja": "クック諸島", - "it": "Isole Cook", - "br": "Ilhas Cook", - "pt": "Ilhas Cook", - "nl": "Cookeilanden", - "hr": "Cookovo Otočje", - "fa": "جزایر کوک" - }, - "flag": "https://restcountries.eu/data/cok.svg", - "regionalBlocs": [], - "cioc": "COK" - }, - { - "name": "Costa Rica", - "topLevelDomain": [".cr"], - "alpha2Code": "CR", - "alpha3Code": "CRI", - "callingCodes": ["506"], - "capital": "San José", - "altSpellings": ["CR", "Republic of Costa Rica", "República de Costa Rica"], - "region": "Americas", - "subregion": "Central America", - "population": 4890379, - "latlng": [10.0, -84.0], - "demonym": "Costa Rican", - "area": 51100.0, - "gini": 50.7, - "timezones": ["UTC-06:00"], - "borders": ["NIC", "PAN"], - "nativeName": "Costa Rica", - "numericCode": "188", - "currencies": [ - { "code": "CRC", "name": "Costa Rican colón", "symbol": "₡" } - ], - "languages": [ - { - "iso639_1": "es", - "iso639_2": "spa", - "name": "Spanish", - "nativeName": "Español" - } - ], - "translations": { - "de": "Costa Rica", - "es": "Costa Rica", - "fr": "Costa Rica", - "ja": "コスタリカ", - "it": "Costa Rica", - "br": "Costa Rica", - "pt": "Costa Rica", - "nl": "Costa Rica", - "hr": "Kostarika", - "fa": "کاستاریکا" - }, - "flag": "https://restcountries.eu/data/cri.svg", - "regionalBlocs": [ - { - "acronym": "CAIS", - "name": "Central American Integration System", - "otherAcronyms": ["SICA"], - "otherNames": ["Sistema de la Integración Centroamericana,"] - } - ], - "cioc": "CRC" - }, - { - "name": "Croatia", - "topLevelDomain": [".hr"], - "alpha2Code": "HR", - "alpha3Code": "HRV", - "callingCodes": ["385"], - "capital": "Zagreb", - "altSpellings": [ - "HR", - "Hrvatska", - "Republic of Croatia", - "Republika Hrvatska" - ], - "region": "Europe", - "subregion": "Southern Europe", - "population": 4190669, - "latlng": [45.16666666, 15.5], - "demonym": "Croatian", - "area": 56594.0, - "gini": 33.7, - "timezones": ["UTC+01:00"], - "borders": ["BIH", "HUN", "MNE", "SRB", "SVN"], - "nativeName": "Hrvatska", - "numericCode": "191", - "currencies": [{ "code": "HRK", "name": "Croatian kuna", "symbol": "kn" }], - "languages": [ - { - "iso639_1": "hr", - "iso639_2": "hrv", - "name": "Croatian", - "nativeName": "hrvatski jezik" - } - ], - "translations": { - "de": "Kroatien", - "es": "Croacia", - "fr": "Croatie", - "ja": "クロアチア", - "it": "Croazia", - "br": "Croácia", - "pt": "Croácia", - "nl": "Kroatië", - "hr": "Hrvatska", - "fa": "کرواسی" - }, - "flag": "https://restcountries.eu/data/hrv.svg", - "regionalBlocs": [ - { - "acronym": "EU", - "name": "European Union", - "otherAcronyms": [], - "otherNames": [] - } - ], - "cioc": "CRO" - }, - { - "name": "Cuba", - "topLevelDomain": [".cu"], - "alpha2Code": "CU", - "alpha3Code": "CUB", - "callingCodes": ["53"], - "capital": "Havana", - "altSpellings": ["CU", "Republic of Cuba", "República de Cuba"], - "region": "Americas", - "subregion": "Caribbean", - "population": 11239004, - "latlng": [21.5, -80.0], - "demonym": "Cuban", - "area": 109884.0, - "gini": null, - "timezones": ["UTC-05:00"], - "borders": [], - "nativeName": "Cuba", - "numericCode": "192", - "currencies": [ - { "code": "CUC", "name": "Cuban convertible peso", "symbol": "$" }, - { "code": "CUP", "name": "Cuban peso", "symbol": "$" } - ], - "languages": [ - { - "iso639_1": "es", - "iso639_2": "spa", - "name": "Spanish", - "nativeName": "Español" - } - ], - "translations": { - "de": "Kuba", - "es": "Cuba", - "fr": "Cuba", - "ja": "キューバ", - "it": "Cuba", - "br": "Cuba", - "pt": "Cuba", - "nl": "Cuba", - "hr": "Kuba", - "fa": "کوبا" - }, - "flag": "https://restcountries.eu/data/cub.svg", - "regionalBlocs": [], - "cioc": "CUB" - }, - { - "name": "Curaçao", - "topLevelDomain": [".cw"], - "alpha2Code": "CW", - "alpha3Code": "CUW", - "callingCodes": ["599"], - "capital": "Willemstad", - "altSpellings": [ - "CW", - "Curacao", - "Kòrsou", - "Country of Curaçao", - "Land Curaçao", - "Pais Kòrsou" - ], - "region": "Americas", - "subregion": "Caribbean", - "population": 154843, - "latlng": [12.116667, -68.933333], - "demonym": "Dutch", - "area": 444.0, - "gini": null, - "timezones": ["UTC-04:00"], - "borders": [], - "nativeName": "Curaçao", - "numericCode": "531", - "currencies": [ - { "code": "ANG", "name": "Netherlands Antillean guilder", "symbol": "ƒ" } - ], - "languages": [ - { - "iso639_1": "nl", - "iso639_2": "nld", - "name": "Dutch", - "nativeName": "Nederlands" - }, - { - "iso639_1": "pa", - "iso639_2": "pan", - "name": "(Eastern) Punjabi", - "nativeName": "ਪੰਜਾਬੀ" - }, - { - "iso639_1": "en", - "iso639_2": "eng", - "name": "English", - "nativeName": "English" - } - ], - "translations": { - "de": "Curaçao", - "es": null, - "fr": "Curaçao", - "ja": null, - "it": "Curaçao", - "br": "Curaçao", - "pt": "Curaçao", - "nl": "Curaçao", - "hr": null, - "fa": "کوراسائو" - }, - "flag": "https://restcountries.eu/data/cuw.svg", - "regionalBlocs": [], - "cioc": "" - }, - { - "name": "Cyprus", - "topLevelDomain": [".cy"], - "alpha2Code": "CY", - "alpha3Code": "CYP", - "callingCodes": ["357"], - "capital": "Nicosia", - "altSpellings": [ - "CY", - "Kýpros", - "Kıbrıs", - "Republic of Cyprus", - "Κυπριακή Δημοκρατία", - "Kıbrıs Cumhuriyeti" - ], - "region": "Europe", - "subregion": "Southern Europe", - "population": 847000, - "latlng": [35.0, 33.0], - "demonym": "Cypriot", - "area": 9251.0, - "gini": null, - "timezones": ["UTC+02:00"], - "borders": ["GBR"], - "nativeName": "Κύπρος", - "numericCode": "196", - "currencies": [{ "code": "EUR", "name": "Euro", "symbol": "€" }], - "languages": [ - { - "iso639_1": "el", - "iso639_2": "ell", - "name": "Greek (modern)", - "nativeName": "ελληνικά" - }, - { - "iso639_1": "tr", - "iso639_2": "tur", - "name": "Turkish", - "nativeName": "Türkçe" - }, - { - "iso639_1": "hy", - "iso639_2": "hye", - "name": "Armenian", - "nativeName": "Հայերեն" - } - ], - "translations": { - "de": "Zypern", - "es": "Chipre", - "fr": "Chypre", - "ja": "キプロス", - "it": "Cipro", - "br": "Chipre", - "pt": "Chipre", - "nl": "Cyprus", - "hr": "Cipar", - "fa": "قبرس" - }, - "flag": "https://restcountries.eu/data/cyp.svg", - "regionalBlocs": [ - { - "acronym": "EU", - "name": "European Union", - "otherAcronyms": [], - "otherNames": [] - } - ], - "cioc": "CYP" - }, - { - "name": "Czech Republic", - "topLevelDomain": [".cz"], - "alpha2Code": "CZ", - "alpha3Code": "CZE", - "callingCodes": ["420"], - "capital": "Prague", - "altSpellings": ["CZ", "Česká republika", "Česko"], - "region": "Europe", - "subregion": "Eastern Europe", - "population": 10558524, - "latlng": [49.75, 15.5], - "demonym": "Czech", - "area": 78865.0, - "gini": 26.0, - "timezones": ["UTC+01:00"], - "borders": ["AUT", "DEU", "POL", "SVK"], - "nativeName": "Česká republika", - "numericCode": "203", - "currencies": [{ "code": "CZK", "name": "Czech koruna", "symbol": "Kč" }], - "languages": [ - { - "iso639_1": "cs", - "iso639_2": "ces", - "name": "Czech", - "nativeName": "čeština" - }, - { - "iso639_1": "sk", - "iso639_2": "slk", - "name": "Slovak", - "nativeName": "slovenčina" - } - ], - "translations": { - "de": "Tschechische Republik", - "es": "República Checa", - "fr": "République tchèque", - "ja": "チェコ", - "it": "Repubblica Ceca", - "br": "República Tcheca", - "pt": "República Checa", - "nl": "Tsjechië", - "hr": "Češka", - "fa": "جمهوری چک" - }, - "flag": "https://restcountries.eu/data/cze.svg", - "regionalBlocs": [ - { - "acronym": "EU", - "name": "European Union", - "otherAcronyms": [], - "otherNames": [] - } - ], - "cioc": "CZE" - }, - { - "name": "Denmark", - "topLevelDomain": [".dk"], - "alpha2Code": "DK", - "alpha3Code": "DNK", - "callingCodes": ["45"], - "capital": "Copenhagen", - "altSpellings": [ - "DK", - "Danmark", - "Kingdom of Denmark", - "Kongeriget Danmark" - ], - "region": "Europe", - "subregion": "Northern Europe", - "population": 5717014, - "latlng": [56.0, 10.0], - "demonym": "Danish", - "area": 43094.0, - "gini": 24.0, - "timezones": ["UTC-04:00", "UTC-03:00", "UTC-01:00", "UTC", "UTC+01:00"], - "borders": ["DEU"], - "nativeName": "Danmark", - "numericCode": "208", - "currencies": [{ "code": "DKK", "name": "Danish krone", "symbol": "kr" }], - "languages": [ - { - "iso639_1": "da", - "iso639_2": "dan", - "name": "Danish", - "nativeName": "dansk" - } - ], - "translations": { - "de": "Dänemark", - "es": "Dinamarca", - "fr": "Danemark", - "ja": "デンマーク", - "it": "Danimarca", - "br": "Dinamarca", - "pt": "Dinamarca", - "nl": "Denemarken", - "hr": "Danska", - "fa": "دانمارک" - }, - "flag": "https://restcountries.eu/data/dnk.svg", - "regionalBlocs": [ - { - "acronym": "EU", - "name": "European Union", - "otherAcronyms": [], - "otherNames": [] - } - ], - "cioc": "DEN" - }, - { - "name": "Djibouti", - "topLevelDomain": [".dj"], - "alpha2Code": "DJ", - "alpha3Code": "DJI", - "callingCodes": ["253"], - "capital": "Djibouti", - "altSpellings": [ - "DJ", - "Jabuuti", - "Gabuuti", - "Republic of Djibouti", - "République de Djibouti", - "Gabuutih Ummuuno", - "Jamhuuriyadda Jabuuti" - ], - "region": "Africa", - "subregion": "Eastern Africa", - "population": 900000, - "latlng": [11.5, 43.0], - "demonym": "Djibouti", - "area": 23200.0, - "gini": 40.0, - "timezones": ["UTC+03:00"], - "borders": ["ERI", "ETH", "SOM"], - "nativeName": "Djibouti", - "numericCode": "262", - "currencies": [ - { "code": "DJF", "name": "Djiboutian franc", "symbol": "Fr" } - ], - "languages": [ - { - "iso639_1": "fr", - "iso639_2": "fra", - "name": "French", - "nativeName": "français" - }, - { - "iso639_1": "ar", - "iso639_2": "ara", - "name": "Arabic", - "nativeName": "العربية" - } - ], - "translations": { - "de": "Dschibuti", - "es": "Yibuti", - "fr": "Djibouti", - "ja": "ジブチ", - "it": "Gibuti", - "br": "Djibuti", - "pt": "Djibuti", - "nl": "Djibouti", - "hr": "Džibuti", - "fa": "جیبوتی" - }, - "flag": "https://restcountries.eu/data/dji.svg", - "regionalBlocs": [ - { - "acronym": "AU", - "name": "African Union", - "otherAcronyms": [], - "otherNames": [ - "الاتحاد الأفريقي", - "Union africaine", - "União Africana", - "Unión Africana", - "Umoja wa Afrika" - ] - }, - { - "acronym": "AL", - "name": "Arab League", - "otherAcronyms": [], - "otherNames": [ - "جامعة الدول العربية", - "Jāmiʻat ad-Duwal al-ʻArabīyah", - "League of Arab States" - ] - } - ], - "cioc": "DJI" - }, - { - "name": "Dominica", - "topLevelDomain": [".dm"], - "alpha2Code": "DM", - "alpha3Code": "DMA", - "callingCodes": ["1767"], - "capital": "Roseau", - "altSpellings": [ - "DM", - "Dominique", - "Wai‘tu kubuli", - "Commonwealth of Dominica" - ], - "region": "Americas", - "subregion": "Caribbean", - "population": 71293, - "latlng": [15.41666666, -61.33333333], - "demonym": "Dominican", - "area": 751.0, - "gini": null, - "timezones": ["UTC-04:00"], - "borders": [], - "nativeName": "Dominica", - "numericCode": "212", - "currencies": [ - { "code": "XCD", "name": "East Caribbean dollar", "symbol": "$" } - ], - "languages": [ - { - "iso639_1": "en", - "iso639_2": "eng", - "name": "English", - "nativeName": "English" - } - ], - "translations": { - "de": "Dominica", - "es": "Dominica", - "fr": "Dominique", - "ja": "ドミニカ国", - "it": "Dominica", - "br": "Dominica", - "pt": "Dominica", - "nl": "Dominica", - "hr": "Dominika", - "fa": "دومینیکا" - }, - "flag": "https://restcountries.eu/data/dma.svg", - "regionalBlocs": [], - "cioc": "DMA" - }, - { - "name": "Dominican Republic", - "topLevelDomain": [".do"], - "alpha2Code": "DO", - "alpha3Code": "DOM", - "callingCodes": ["1809", "1829", "1849"], - "capital": "Santo Domingo", - "altSpellings": ["DO"], - "region": "Americas", - "subregion": "Caribbean", - "population": 10075045, - "latlng": [19.0, -70.66666666], - "demonym": "Dominican", - "area": 48671.0, - "gini": 47.2, - "timezones": ["UTC-04:00"], - "borders": ["HTI"], - "nativeName": "República Dominicana", - "numericCode": "214", - "currencies": [{ "code": "DOP", "name": "Dominican peso", "symbol": "$" }], - "languages": [ - { - "iso639_1": "es", - "iso639_2": "spa", - "name": "Spanish", - "nativeName": "Español" - } - ], - "translations": { - "de": "Dominikanische Republik", - "es": "República Dominicana", - "fr": "République dominicaine", - "ja": "ドミニカ共和国", - "it": "Repubblica Dominicana", - "br": "República Dominicana", - "pt": "República Dominicana", - "nl": "Dominicaanse Republiek", - "hr": "Dominikanska Republika", - "fa": "جمهوری دومینیکن" - }, - "flag": "https://restcountries.eu/data/dom.svg", - "regionalBlocs": [ - { - "acronym": "CARICOM", - "name": "Caribbean Community", - "otherAcronyms": [], - "otherNames": [ - "Comunidad del Caribe", - "Communauté Caribéenne", - "Caribische Gemeenschap" - ] - }, - { - "acronym": "CAIS", - "name": "Central American Integration System", - "otherAcronyms": ["SICA"], - "otherNames": ["Sistema de la Integración Centroamericana,"] - } - ], - "cioc": "DOM" - }, - { - "name": "Ecuador", - "topLevelDomain": [".ec"], - "alpha2Code": "EC", - "alpha3Code": "ECU", - "callingCodes": ["593"], - "capital": "Quito", - "altSpellings": ["EC", "Republic of Ecuador", "República del Ecuador"], - "region": "Americas", - "subregion": "South America", - "population": 16545799, - "latlng": [-2.0, -77.5], - "demonym": "Ecuadorean", - "area": 276841.0, - "gini": 49.3, - "timezones": ["UTC-06:00", "UTC-05:00"], - "borders": ["COL", "PER"], - "nativeName": "Ecuador", - "numericCode": "218", - "currencies": [ - { "code": "USD", "name": "United States dollar", "symbol": "$" } - ], - "languages": [ - { - "iso639_1": "es", - "iso639_2": "spa", - "name": "Spanish", - "nativeName": "Español" - } - ], - "translations": { - "de": "Ecuador", - "es": "Ecuador", - "fr": "Équateur", - "ja": "エクアドル", - "it": "Ecuador", - "br": "Equador", - "pt": "Equador", - "nl": "Ecuador", - "hr": "Ekvador", - "fa": "اکوادور" - }, - "flag": "https://restcountries.eu/data/ecu.svg", - "regionalBlocs": [ - { - "acronym": "USAN", - "name": "Union of South American Nations", - "otherAcronyms": ["UNASUR", "UNASUL", "UZAN"], - "otherNames": [ - "Unión de Naciones Suramericanas", - "União de Nações Sul-Americanas", - "Unie van Zuid-Amerikaanse Naties", - "South American Union" - ] - } - ], - "cioc": "ECU" - }, - { - "name": "Egypt", - "topLevelDomain": [".eg"], - "alpha2Code": "EG", - "alpha3Code": "EGY", - "callingCodes": ["20"], - "capital": "Cairo", - "altSpellings": ["EG", "Arab Republic of Egypt"], - "region": "Africa", - "subregion": "Northern Africa", - "population": 91290000, - "latlng": [27.0, 30.0], - "demonym": "Egyptian", - "area": 1002450.0, - "gini": 30.8, - "timezones": ["UTC+02:00"], - "borders": ["ISR", "LBY", "SDN"], - "nativeName": "مصر‎", - "numericCode": "818", - "currencies": [{ "code": "EGP", "name": "Egyptian pound", "symbol": "£" }], - "languages": [ - { - "iso639_1": "ar", - "iso639_2": "ara", - "name": "Arabic", - "nativeName": "العربية" - } - ], - "translations": { - "de": "Ägypten", - "es": "Egipto", - "fr": "Égypte", - "ja": "エジプト", - "it": "Egitto", - "br": "Egito", - "pt": "Egipto", - "nl": "Egypte", - "hr": "Egipat", - "fa": "مصر" - }, - "flag": "https://restcountries.eu/data/egy.svg", - "regionalBlocs": [ - { - "acronym": "AU", - "name": "African Union", - "otherAcronyms": [], - "otherNames": [ - "الاتحاد الأفريقي", - "Union africaine", - "União Africana", - "Unión Africana", - "Umoja wa Afrika" - ] - }, - { - "acronym": "AL", - "name": "Arab League", - "otherAcronyms": [], - "otherNames": [ - "جامعة الدول العربية", - "Jāmiʻat ad-Duwal al-ʻArabīyah", - "League of Arab States" - ] - } - ], - "cioc": "EGY" - }, - { - "name": "El Salvador", - "topLevelDomain": [".sv"], - "alpha2Code": "SV", - "alpha3Code": "SLV", - "callingCodes": ["503"], - "capital": "San Salvador", - "altSpellings": [ - "SV", - "Republic of El Salvador", - "República de El Salvador" - ], - "region": "Americas", - "subregion": "Central America", - "population": 6520675, - "latlng": [13.83333333, -88.91666666], - "demonym": "Salvadoran", - "area": 21041.0, - "gini": 48.3, - "timezones": ["UTC-06:00"], - "borders": ["GTM", "HND"], - "nativeName": "El Salvador", - "numericCode": "222", - "currencies": [ - { "code": "USD", "name": "United States dollar", "symbol": "$" } - ], - "languages": [ - { - "iso639_1": "es", - "iso639_2": "spa", - "name": "Spanish", - "nativeName": "Español" - } - ], - "translations": { - "de": "El Salvador", - "es": "El Salvador", - "fr": "Salvador", - "ja": "エルサルバドル", - "it": "El Salvador", - "br": "El Salvador", - "pt": "El Salvador", - "nl": "El Salvador", - "hr": "Salvador", - "fa": "السالوادور" - }, - "flag": "https://restcountries.eu/data/slv.svg", - "regionalBlocs": [ - { - "acronym": "CAIS", - "name": "Central American Integration System", - "otherAcronyms": ["SICA"], - "otherNames": ["Sistema de la Integración Centroamericana,"] - } - ], - "cioc": "ESA" - }, - { - "name": "Equatorial Guinea", - "topLevelDomain": [".gq"], - "alpha2Code": "GQ", - "alpha3Code": "GNQ", - "callingCodes": ["240"], - "capital": "Malabo", - "altSpellings": [ - "GQ", - "Republic of Equatorial Guinea", - "República de Guinea Ecuatorial", - "République de Guinée équatoriale", - "República da Guiné Equatorial" - ], - "region": "Africa", - "subregion": "Middle Africa", - "population": 1222442, - "latlng": [2.0, 10.0], - "demonym": "Equatorial Guinean", - "area": 28051.0, - "gini": null, - "timezones": ["UTC+01:00"], - "borders": ["CMR", "GAB"], - "nativeName": "Guinea Ecuatorial", - "numericCode": "226", - "currencies": [ - { "code": "XAF", "name": "Central African CFA franc", "symbol": "Fr" } - ], - "languages": [ - { - "iso639_1": "es", - "iso639_2": "spa", - "name": "Spanish", - "nativeName": "Español" - }, - { - "iso639_1": "fr", - "iso639_2": "fra", - "name": "French", - "nativeName": "français" - } - ], - "translations": { - "de": "Äquatorial-Guinea", - "es": "Guinea Ecuatorial", - "fr": "Guinée-Équatoriale", - "ja": "赤道ギニア", - "it": "Guinea Equatoriale", - "br": "Guiné Equatorial", - "pt": "Guiné Equatorial", - "nl": "Equatoriaal-Guinea", - "hr": "Ekvatorijalna Gvineja", - "fa": "گینه استوایی" - }, - "flag": "https://restcountries.eu/data/gnq.svg", - "regionalBlocs": [ - { - "acronym": "AU", - "name": "African Union", - "otherAcronyms": [], - "otherNames": [ - "الاتحاد الأفريقي", - "Union africaine", - "União Africana", - "Unión Africana", - "Umoja wa Afrika" - ] - } - ], - "cioc": "GEQ" - }, - { - "name": "Eritrea", - "topLevelDomain": [".er"], - "alpha2Code": "ER", - "alpha3Code": "ERI", - "callingCodes": ["291"], - "capital": "Asmara", - "altSpellings": [ - "ER", - "State of Eritrea", - "ሃገረ ኤርትራ", - "Dawlat Iritriyá", - "ʾErtrā", - "Iritriyā", - "" - ], - "region": "Africa", - "subregion": "Eastern Africa", - "population": 5352000, - "latlng": [15.0, 39.0], - "demonym": "Eritrean", - "area": 117600.0, - "gini": null, - "timezones": ["UTC+03:00"], - "borders": ["DJI", "ETH", "SDN"], - "nativeName": "ኤርትራ", - "numericCode": "232", - "currencies": [ - { "code": "ERN", "name": "Eritrean nakfa", "symbol": "Nfk" } - ], - "languages": [ - { - "iso639_1": "ti", - "iso639_2": "tir", - "name": "Tigrinya", - "nativeName": "ትግርኛ" - }, - { - "iso639_1": "ar", - "iso639_2": "ara", - "name": "Arabic", - "nativeName": "العربية" - }, - { - "iso639_1": "en", - "iso639_2": "eng", - "name": "English", - "nativeName": "English" - } - ], - "translations": { - "de": "Eritrea", - "es": "Eritrea", - "fr": "Érythrée", - "ja": "エリトリア", - "it": "Eritrea", - "br": "Eritreia", - "pt": "Eritreia", - "nl": "Eritrea", - "hr": "Eritreja", - "fa": "اریتره" - }, - "flag": "https://restcountries.eu/data/eri.svg", - "regionalBlocs": [ - { - "acronym": "AU", - "name": "African Union", - "otherAcronyms": [], - "otherNames": [ - "الاتحاد الأفريقي", - "Union africaine", - "União Africana", - "Unión Africana", - "Umoja wa Afrika" - ] - } - ], - "cioc": "ERI" - }, - { - "name": "Estonia", - "topLevelDomain": [".ee"], - "alpha2Code": "EE", - "alpha3Code": "EST", - "callingCodes": ["372"], - "capital": "Tallinn", - "altSpellings": ["EE", "Eesti", "Republic of Estonia", "Eesti Vabariik"], - "region": "Europe", - "subregion": "Northern Europe", - "population": 1315944, - "latlng": [59.0, 26.0], - "demonym": "Estonian", - "area": 45227.0, - "gini": 36.0, - "timezones": ["UTC+02:00"], - "borders": ["LVA", "RUS"], - "nativeName": "Eesti", - "numericCode": "233", - "currencies": [{ "code": "EUR", "name": "Euro", "symbol": "€" }], - "languages": [ - { - "iso639_1": "et", - "iso639_2": "est", - "name": "Estonian", - "nativeName": "eesti" - } - ], - "translations": { - "de": "Estland", - "es": "Estonia", - "fr": "Estonie", - "ja": "エストニア", - "it": "Estonia", - "br": "Estônia", - "pt": "Estónia", - "nl": "Estland", - "hr": "Estonija", - "fa": "استونی" - }, - "flag": "https://restcountries.eu/data/est.svg", - "regionalBlocs": [ - { - "acronym": "EU", - "name": "European Union", - "otherAcronyms": [], - "otherNames": [] - } - ], - "cioc": "EST" - }, - { - "name": "Ethiopia", - "topLevelDomain": [".et"], - "alpha2Code": "ET", - "alpha3Code": "ETH", - "callingCodes": ["251"], - "capital": "Addis Ababa", - "altSpellings": [ - "ET", - "ʾĪtyōṗṗyā", - "Federal Democratic Republic of Ethiopia", - "የኢትዮጵያ ፌዴራላዊ ዲሞክራሲያዊ ሪፐብሊክ" - ], - "region": "Africa", - "subregion": "Eastern Africa", - "population": 92206005, - "latlng": [8.0, 38.0], - "demonym": "Ethiopian", - "area": 1104300.0, - "gini": 29.8, - "timezones": ["UTC+03:00"], - "borders": ["DJI", "ERI", "KEN", "SOM", "SSD", "SDN"], - "nativeName": "ኢትዮጵያ", - "numericCode": "231", - "currencies": [{ "code": "ETB", "name": "Ethiopian birr", "symbol": "Br" }], - "languages": [ - { - "iso639_1": "am", - "iso639_2": "amh", - "name": "Amharic", - "nativeName": "አማርኛ" - } - ], - "translations": { - "de": "Äthiopien", - "es": "Etiopía", - "fr": "Éthiopie", - "ja": "エチオピア", - "it": "Etiopia", - "br": "Etiópia", - "pt": "Etiópia", - "nl": "Ethiopië", - "hr": "Etiopija", - "fa": "اتیوپی" - }, - "flag": "https://restcountries.eu/data/eth.svg", - "regionalBlocs": [ - { - "acronym": "AU", - "name": "African Union", - "otherAcronyms": [], - "otherNames": [ - "الاتحاد الأفريقي", - "Union africaine", - "União Africana", - "Unión Africana", - "Umoja wa Afrika" - ] - } - ], - "cioc": "ETH" - }, - { - "name": "Falkland Islands (Malvinas)", - "topLevelDomain": [".fk"], - "alpha2Code": "FK", - "alpha3Code": "FLK", - "callingCodes": ["500"], - "capital": "Stanley", - "altSpellings": ["FK", "Islas Malvinas"], - "region": "Americas", - "subregion": "South America", - "population": 2563, - "latlng": [-51.75, -59.0], - "demonym": "Falkland Islander", - "area": 12173.0, - "gini": null, - "timezones": ["UTC-04:00"], - "borders": [], - "nativeName": "Falkland Islands", - "numericCode": "238", - "currencies": [ - { "code": "FKP", "name": "Falkland Islands pound", "symbol": "£" } - ], - "languages": [ - { - "iso639_1": "en", - "iso639_2": "eng", - "name": "English", - "nativeName": "English" - } - ], - "translations": { - "de": "Falklandinseln", - "es": "Islas Malvinas", - "fr": "Îles Malouines", - "ja": "フォークランド(マルビナス)諸島", - "it": "Isole Falkland o Isole Malvine", - "br": "Ilhas Malvinas", - "pt": "Ilhas Falkland", - "nl": "Falklandeilanden [Islas Malvinas]", - "hr": "Falklandski Otoci", - "fa": "جزایر فالکلند" - }, - "flag": "https://restcountries.eu/data/flk.svg", - "regionalBlocs": [ - { - "acronym": "USAN", - "name": "Union of South American Nations", - "otherAcronyms": ["UNASUR", "UNASUL", "UZAN"], - "otherNames": [ - "Unión de Naciones Suramericanas", - "União de Nações Sul-Americanas", - "Unie van Zuid-Amerikaanse Naties", - "South American Union" - ] - } - ], - "cioc": "" - }, - { - "name": "Faroe Islands", - "topLevelDomain": [".fo"], - "alpha2Code": "FO", - "alpha3Code": "FRO", - "callingCodes": ["298"], - "capital": "Tórshavn", - "altSpellings": ["FO", "Føroyar", "Færøerne"], - "region": "Europe", - "subregion": "Northern Europe", - "population": 49376, - "latlng": [62.0, -7.0], - "demonym": "Faroese", - "area": 1393.0, - "gini": null, - "timezones": ["UTC+00:00"], - "borders": [], - "nativeName": "Føroyar", - "numericCode": "234", - "currencies": [ - { "code": "DKK", "name": "Danish krone", "symbol": "kr" }, - { "code": "(none)", "name": "Faroese króna", "symbol": "kr" } - ], - "languages": [ - { - "iso639_1": "fo", - "iso639_2": "fao", - "name": "Faroese", - "nativeName": "føroyskt" - } - ], - "translations": { - "de": "Färöer-Inseln", - "es": "Islas Faroe", - "fr": "Îles Féroé", - "ja": "フェロー諸島", - "it": "Isole Far Oer", - "br": "Ilhas Faroé", - "pt": "Ilhas Faroé", - "nl": "Faeröer", - "hr": "Farski Otoci", - "fa": "جزایر فارو" - }, - "flag": "https://restcountries.eu/data/fro.svg", - "regionalBlocs": [ - { - "acronym": "EU", - "name": "European Union", - "otherAcronyms": [], - "otherNames": [] - } - ], - "cioc": "" - }, - { - "name": "Fiji", - "topLevelDomain": [".fj"], - "alpha2Code": "FJ", - "alpha3Code": "FJI", - "callingCodes": ["679"], - "capital": "Suva", - "altSpellings": [ - "FJ", - "Viti", - "Republic of Fiji", - "Matanitu ko Viti", - "Fijī Gaṇarājya" - ], - "region": "Oceania", - "subregion": "Melanesia", - "population": 867000, - "latlng": [-18.0, 175.0], - "demonym": "Fijian", - "area": 18272.0, - "gini": 42.8, - "timezones": ["UTC+12:00"], - "borders": [], - "nativeName": "Fiji", - "numericCode": "242", - "currencies": [{ "code": "FJD", "name": "Fijian dollar", "symbol": "$" }], - "languages": [ - { - "iso639_1": "en", - "iso639_2": "eng", - "name": "English", - "nativeName": "English" - }, - { - "iso639_1": "fj", - "iso639_2": "fij", - "name": "Fijian", - "nativeName": "vosa Vakaviti" - }, - { - "iso639_1": "hi", - "iso639_2": "hin", - "name": "Hindi", - "nativeName": "हिन्दी" - }, - { - "iso639_1": "ur", - "iso639_2": "urd", - "name": "Urdu", - "nativeName": "اردو" - } - ], - "translations": { - "de": "Fidschi", - "es": "Fiyi", - "fr": "Fidji", - "ja": "フィジー", - "it": "Figi", - "br": "Fiji", - "pt": "Fiji", - "nl": "Fiji", - "hr": "Fiđi", - "fa": "فیجی" - }, - "flag": "https://restcountries.eu/data/fji.svg", - "regionalBlocs": [], - "cioc": "FIJ" - }, - { - "name": "Finland", - "topLevelDomain": [".fi"], - "alpha2Code": "FI", - "alpha3Code": "FIN", - "callingCodes": ["358"], - "capital": "Helsinki", - "altSpellings": [ - "FI", - "Suomi", - "Republic of Finland", - "Suomen tasavalta", - "Republiken Finland" - ], - "region": "Europe", - "subregion": "Northern Europe", - "population": 5491817, - "latlng": [64.0, 26.0], - "demonym": "Finnish", - "area": 338424.0, - "gini": 26.9, - "timezones": ["UTC+02:00"], - "borders": ["NOR", "SWE", "RUS"], - "nativeName": "Suomi", - "numericCode": "246", - "currencies": [{ "code": "EUR", "name": "Euro", "symbol": "€" }], - "languages": [ - { - "iso639_1": "fi", - "iso639_2": "fin", - "name": "Finnish", - "nativeName": "suomi" - }, - { - "iso639_1": "sv", - "iso639_2": "swe", - "name": "Swedish", - "nativeName": "svenska" - } - ], - "translations": { - "de": "Finnland", - "es": "Finlandia", - "fr": "Finlande", - "ja": "フィンランド", - "it": "Finlandia", - "br": "Finlândia", - "pt": "Finlândia", - "nl": "Finland", - "hr": "Finska", - "fa": "فنلاند" - }, - "flag": "https://restcountries.eu/data/fin.svg", - "regionalBlocs": [ - { - "acronym": "EU", - "name": "European Union", - "otherAcronyms": [], - "otherNames": [] - } - ], - "cioc": "FIN" - }, - { - "name": "France", - "topLevelDomain": [".fr"], - "alpha2Code": "FR", - "alpha3Code": "FRA", - "callingCodes": ["33"], - "capital": "Paris", - "altSpellings": ["FR", "French Republic", "République française"], - "region": "Europe", - "subregion": "Western Europe", - "population": 66710000, - "latlng": [46.0, 2.0], - "demonym": "French", - "area": 640679.0, - "gini": 32.7, - "timezones": [ - "UTC-10:00", - "UTC-09:30", - "UTC-09:00", - "UTC-08:00", - "UTC-04:00", - "UTC-03:00", - "UTC+01:00", - "UTC+03:00", - "UTC+04:00", - "UTC+05:00", - "UTC+11:00", - "UTC+12:00" - ], - "borders": ["AND", "BEL", "DEU", "ITA", "LUX", "MCO", "ESP", "CHE"], - "nativeName": "France", - "numericCode": "250", - "currencies": [{ "code": "EUR", "name": "Euro", "symbol": "€" }], - "languages": [ - { - "iso639_1": "fr", - "iso639_2": "fra", - "name": "French", - "nativeName": "français" - } - ], - "translations": { - "de": "Frankreich", - "es": "Francia", - "fr": "France", - "ja": "フランス", - "it": "Francia", - "br": "França", - "pt": "França", - "nl": "Frankrijk", - "hr": "Francuska", - "fa": "فرانسه" - }, - "flag": "https://restcountries.eu/data/fra.svg", - "regionalBlocs": [ - { - "acronym": "EU", - "name": "European Union", - "otherAcronyms": [], - "otherNames": [] - } - ], - "cioc": "FRA" - }, - { - "name": "French Guiana", - "topLevelDomain": [".gf"], - "alpha2Code": "GF", - "alpha3Code": "GUF", - "callingCodes": ["594"], - "capital": "Cayenne", - "altSpellings": ["GF", "Guiana", "Guyane"], - "region": "Americas", - "subregion": "South America", - "population": 254541, - "latlng": [4.0, -53.0], - "demonym": "", - "area": null, - "gini": null, - "timezones": ["UTC-03:00"], - "borders": ["BRA", "SUR"], - "nativeName": "Guyane française", - "numericCode": "254", - "currencies": [{ "code": "EUR", "name": "Euro", "symbol": "€" }], - "languages": [ - { - "iso639_1": "fr", - "iso639_2": "fra", - "name": "French", - "nativeName": "français" - } - ], - "translations": { - "de": "Französisch Guyana", - "es": "Guayana Francesa", - "fr": "Guayane", - "ja": "フランス領ギアナ", - "it": "Guyana francese", - "br": "Guiana Francesa", - "pt": "Guiana Francesa", - "nl": "Frans-Guyana", - "hr": "Francuska Gvajana", - "fa": "گویان فرانسه" - }, - "flag": "https://restcountries.eu/data/guf.svg", - "regionalBlocs": [ - { - "acronym": "USAN", - "name": "Union of South American Nations", - "otherAcronyms": ["UNASUR", "UNASUL", "UZAN"], - "otherNames": [ - "Unión de Naciones Suramericanas", - "União de Nações Sul-Americanas", - "Unie van Zuid-Amerikaanse Naties", - "South American Union" - ] - }, - { - "acronym": "EU", - "name": "European Union", - "otherAcronyms": [], - "otherNames": [] - } - ], - "cioc": "" - }, - { - "name": "French Polynesia", - "topLevelDomain": [".pf"], - "alpha2Code": "PF", - "alpha3Code": "PYF", - "callingCodes": ["689"], - "capital": "Papeetē", - "altSpellings": [ - "PF", - "Polynésie française", - "French Polynesia", - "Pōrīnetia Farāni" - ], - "region": "Oceania", - "subregion": "Polynesia", - "population": 271800, - "latlng": [-15.0, -140.0], - "demonym": "French Polynesian", - "area": 4167.0, - "gini": null, - "timezones": ["UTC-10:00", "UTC-09:30", "UTC-09:00"], - "borders": [], - "nativeName": "Polynésie française", - "numericCode": "258", - "currencies": [{ "code": "XPF", "name": "CFP franc", "symbol": "Fr" }], - "languages": [ - { - "iso639_1": "fr", - "iso639_2": "fra", - "name": "French", - "nativeName": "français" - } - ], - "translations": { - "de": "Französisch-Polynesien", - "es": "Polinesia Francesa", - "fr": "Polynésie française", - "ja": "フランス領ポリネシア", - "it": "Polinesia Francese", - "br": "Polinésia Francesa", - "pt": "Polinésia Francesa", - "nl": "Frans-Polynesië", - "hr": "Francuska Polinezija", - "fa": "پلی‌نزی فرانسه" - }, - "flag": "https://restcountries.eu/data/pyf.svg", - "regionalBlocs": [], - "cioc": "" - }, - { - "name": "French Southern Territories", - "topLevelDomain": [".tf"], - "alpha2Code": "TF", - "alpha3Code": "ATF", - "callingCodes": [""], - "capital": "Port-aux-Français", - "altSpellings": ["TF"], - "region": "Africa", - "subregion": "Southern Africa", - "population": 140, - "latlng": [-49.25, 69.167], - "demonym": "French", - "area": 7747.0, - "gini": null, - "timezones": ["UTC+05:00"], - "borders": [], - "nativeName": "Territoire des Terres australes et antarctiques françaises", - "numericCode": "260", - "currencies": [{ "code": "EUR", "name": "Euro", "symbol": "€" }], - "languages": [ - { - "iso639_1": "fr", - "iso639_2": "fra", - "name": "French", - "nativeName": "français" - } - ], - "translations": { - "de": "Französische Süd- und Antarktisgebiete", - "es": "Tierras Australes y Antárticas Francesas", - "fr": "Terres australes et antarctiques françaises", - "ja": "フランス領南方・南極地域", - "it": "Territori Francesi del Sud", - "br": "Terras Austrais e Antárticas Francesas", - "pt": "Terras Austrais e Antárticas Francesas", - "nl": "Franse Gebieden in de zuidelijke Indische Oceaan", - "hr": "Francuski južni i antarktički teritoriji", - "fa": "سرزمین‌های جنوبی و جنوبگانی فرانسه" - }, - "flag": "https://restcountries.eu/data/atf.svg", - "regionalBlocs": [ - { - "acronym": "AU", - "name": "African Union", - "otherAcronyms": [], - "otherNames": [ - "الاتحاد الأفريقي", - "Union africaine", - "União Africana", - "Unión Africana", - "Umoja wa Afrika" - ] - } - ], - "cioc": "" - }, - { - "name": "Gabon", - "topLevelDomain": [".ga"], - "alpha2Code": "GA", - "alpha3Code": "GAB", - "callingCodes": ["241"], - "capital": "Libreville", - "altSpellings": ["GA", "Gabonese Republic", "République Gabonaise"], - "region": "Africa", - "subregion": "Middle Africa", - "population": 1802278, - "latlng": [-1.0, 11.75], - "demonym": "Gabonese", - "area": 267668.0, - "gini": 41.5, - "timezones": ["UTC+01:00"], - "borders": ["CMR", "COG", "GNQ"], - "nativeName": "Gabon", - "numericCode": "266", - "currencies": [ - { "code": "XAF", "name": "Central African CFA franc", "symbol": "Fr" } - ], - "languages": [ - { - "iso639_1": "fr", - "iso639_2": "fra", - "name": "French", - "nativeName": "français" - } - ], - "translations": { - "de": "Gabun", - "es": "Gabón", - "fr": "Gabon", - "ja": "ガボン", - "it": "Gabon", - "br": "Gabão", - "pt": "Gabão", - "nl": "Gabon", - "hr": "Gabon", - "fa": "گابن" - }, - "flag": "https://restcountries.eu/data/gab.svg", - "regionalBlocs": [ - { - "acronym": "AU", - "name": "African Union", - "otherAcronyms": [], - "otherNames": [ - "الاتحاد الأفريقي", - "Union africaine", - "União Africana", - "Unión Africana", - "Umoja wa Afrika" - ] - } - ], - "cioc": "GAB" - }, - { - "name": "Gambia", - "topLevelDomain": [".gm"], - "alpha2Code": "GM", - "alpha3Code": "GMB", - "callingCodes": ["220"], - "capital": "Banjul", - "altSpellings": ["GM", "Republic of the Gambia"], - "region": "Africa", - "subregion": "Western Africa", - "population": 1882450, - "latlng": [13.46666666, -16.56666666], - "demonym": "Gambian", - "area": 11295.0, - "gini": null, - "timezones": ["UTC+00:00"], - "borders": ["SEN"], - "nativeName": "Gambia", - "numericCode": "270", - "currencies": [{ "code": "GMD", "name": "Gambian dalasi", "symbol": "D" }], - "languages": [ - { - "iso639_1": "en", - "iso639_2": "eng", - "name": "English", - "nativeName": "English" - } - ], - "translations": { - "de": "Gambia", - "es": "Gambia", - "fr": "Gambie", - "ja": "ガンビア", - "it": "Gambia", - "br": "Gâmbia", - "pt": "Gâmbia", - "nl": "Gambia", - "hr": "Gambija", - "fa": "گامبیا" - }, - "flag": "https://restcountries.eu/data/gmb.svg", - "regionalBlocs": [ - { - "acronym": "AU", - "name": "African Union", - "otherAcronyms": [], - "otherNames": [ - "الاتحاد الأفريقي", - "Union africaine", - "União Africana", - "Unión Africana", - "Umoja wa Afrika" - ] - } - ], - "cioc": "GAM" - }, - { - "name": "Georgia", - "topLevelDomain": [".ge"], - "alpha2Code": "GE", - "alpha3Code": "GEO", - "callingCodes": ["995"], - "capital": "Tbilisi", - "altSpellings": ["GE", "Sakartvelo"], - "region": "Asia", - "subregion": "Western Asia", - "population": 3720400, - "latlng": [42.0, 43.5], - "demonym": "Georgian", - "area": 69700.0, - "gini": 41.3, - "timezones": ["UTC-05:00"], - "borders": ["ARM", "AZE", "RUS", "TUR"], - "nativeName": "საქართველო", - "numericCode": "268", - "currencies": [{ "code": "GEL", "name": "Georgian Lari", "symbol": "ლ" }], - "languages": [ - { - "iso639_1": "ka", - "iso639_2": "kat", - "name": "Georgian", - "nativeName": "ქართული" - } - ], - "translations": { - "de": "Georgien", - "es": "Georgia", - "fr": "Géorgie", - "ja": "グルジア", - "it": "Georgia", - "br": "Geórgia", - "pt": "Geórgia", - "nl": "Georgië", - "hr": "Gruzija", - "fa": "گرجستان" - }, - "flag": "https://restcountries.eu/data/geo.svg", - "regionalBlocs": [], - "cioc": "GEO" - }, - { - "name": "Germany", - "topLevelDomain": [".de"], - "alpha2Code": "DE", - "alpha3Code": "DEU", - "callingCodes": ["49"], - "capital": "Berlin", - "altSpellings": [ - "DE", - "Federal Republic of Germany", - "Bundesrepublik Deutschland" - ], - "region": "Europe", - "subregion": "Western Europe", - "population": 81770900, - "latlng": [51.0, 9.0], - "demonym": "German", - "area": 357114.0, - "gini": 28.3, - "timezones": ["UTC+01:00"], - "borders": ["AUT", "BEL", "CZE", "DNK", "FRA", "LUX", "NLD", "POL", "CHE"], - "nativeName": "Deutschland", - "numericCode": "276", - "currencies": [{ "code": "EUR", "name": "Euro", "symbol": "€" }], - "languages": [ - { - "iso639_1": "de", - "iso639_2": "deu", - "name": "German", - "nativeName": "Deutsch" - } - ], - "translations": { - "de": "Deutschland", - "es": "Alemania", - "fr": "Allemagne", - "ja": "ドイツ", - "it": "Germania", - "br": "Alemanha", - "pt": "Alemanha", - "nl": "Duitsland", - "hr": "Njemačka", - "fa": "آلمان" - }, - "flag": "https://restcountries.eu/data/deu.svg", - "regionalBlocs": [ - { - "acronym": "EU", - "name": "European Union", - "otherAcronyms": [], - "otherNames": [] - } - ], - "cioc": "GER" - }, - { - "name": "Ghana", - "topLevelDomain": [".gh"], - "alpha2Code": "GH", - "alpha3Code": "GHA", - "callingCodes": ["233"], - "capital": "Accra", - "altSpellings": ["GH"], - "region": "Africa", - "subregion": "Western Africa", - "population": 27670174, - "latlng": [8.0, -2.0], - "demonym": "Ghanaian", - "area": 238533.0, - "gini": 42.8, - "timezones": ["UTC"], - "borders": ["BFA", "CIV", "TGO"], - "nativeName": "Ghana", - "numericCode": "288", - "currencies": [{ "code": "GHS", "name": "Ghanaian cedi", "symbol": "₵" }], - "languages": [ - { - "iso639_1": "en", - "iso639_2": "eng", - "name": "English", - "nativeName": "English" - } - ], - "translations": { - "de": "Ghana", - "es": "Ghana", - "fr": "Ghana", - "ja": "ガーナ", - "it": "Ghana", - "br": "Gana", - "pt": "Gana", - "nl": "Ghana", - "hr": "Gana", - "fa": "غنا" - }, - "flag": "https://restcountries.eu/data/gha.svg", - "regionalBlocs": [ - { - "acronym": "AU", - "name": "African Union", - "otherAcronyms": [], - "otherNames": [ - "الاتحاد الأفريقي", - "Union africaine", - "União Africana", - "Unión Africana", - "Umoja wa Afrika" - ] - } - ], - "cioc": "GHA" - }, - { - "name": "Gibraltar", - "topLevelDomain": [".gi"], - "alpha2Code": "GI", - "alpha3Code": "GIB", - "callingCodes": ["350"], - "capital": "Gibraltar", - "altSpellings": ["GI"], - "region": "Europe", - "subregion": "Southern Europe", - "population": 33140, - "latlng": [36.13333333, -5.35], - "demonym": "Gibraltar", - "area": 6.0, - "gini": null, - "timezones": ["UTC+01:00"], - "borders": ["ESP"], - "nativeName": "Gibraltar", - "numericCode": "292", - "currencies": [{ "code": "GIP", "name": "Gibraltar pound", "symbol": "£" }], - "languages": [ - { - "iso639_1": "en", - "iso639_2": "eng", - "name": "English", - "nativeName": "English" - } - ], - "translations": { - "de": "Gibraltar", - "es": "Gibraltar", - "fr": "Gibraltar", - "ja": "ジブラルタル", - "it": "Gibilterra", - "br": "Gibraltar", - "pt": "Gibraltar", - "nl": "Gibraltar", - "hr": "Gibraltar", - "fa": "جبل‌طارق" - }, - "flag": "https://restcountries.eu/data/gib.svg", - "regionalBlocs": [ - { - "acronym": "EU", - "name": "European Union", - "otherAcronyms": [], - "otherNames": [] - } - ], - "cioc": "" - }, - { - "name": "Greece", - "topLevelDomain": [".gr"], - "alpha2Code": "GR", - "alpha3Code": "GRC", - "callingCodes": ["30"], - "capital": "Athens", - "altSpellings": [ - "GR", - "Elláda", - "Hellenic Republic", - "Ελληνική Δημοκρατία" - ], - "region": "Europe", - "subregion": "Southern Europe", - "population": 10858018, - "latlng": [39.0, 22.0], - "demonym": "Greek", - "area": 131990.0, - "gini": 34.3, - "timezones": ["UTC+02:00"], - "borders": ["ALB", "BGR", "TUR", "MKD"], - "nativeName": "Ελλάδα", - "numericCode": "300", - "currencies": [{ "code": "EUR", "name": "Euro", "symbol": "€" }], - "languages": [ - { - "iso639_1": "el", - "iso639_2": "ell", - "name": "Greek (modern)", - "nativeName": "ελληνικά" - } - ], - "translations": { - "de": "Griechenland", - "es": "Grecia", - "fr": "Grèce", - "ja": "ギリシャ", - "it": "Grecia", - "br": "Grécia", - "pt": "Grécia", - "nl": "Griekenland", - "hr": "Grčka", - "fa": "یونان" - }, - "flag": "https://restcountries.eu/data/grc.svg", - "regionalBlocs": [ - { - "acronym": "EU", - "name": "European Union", - "otherAcronyms": [], - "otherNames": [] - } - ], - "cioc": "GRE" - }, - { - "name": "Greenland", - "topLevelDomain": [".gl"], - "alpha2Code": "GL", - "alpha3Code": "GRL", - "callingCodes": ["299"], - "capital": "Nuuk", - "altSpellings": ["GL", "Grønland"], - "region": "Americas", - "subregion": "Northern America", - "population": 55847, - "latlng": [72.0, -40.0], - "demonym": "Greenlandic", - "area": 2166086.0, - "gini": null, - "timezones": ["UTC-04:00", "UTC-03:00", "UTC-01:00", "UTC+00:00"], - "borders": [], - "nativeName": "Kalaallit Nunaat", - "numericCode": "304", - "currencies": [{ "code": "DKK", "name": "Danish krone", "symbol": "kr" }], - "languages": [ - { - "iso639_1": "kl", - "iso639_2": "kal", - "name": "Kalaallisut", - "nativeName": "kalaallisut" - } - ], - "translations": { - "de": "Grönland", - "es": "Groenlandia", - "fr": "Groenland", - "ja": "グリーンランド", - "it": "Groenlandia", - "br": "Groelândia", - "pt": "Gronelândia", - "nl": "Groenland", - "hr": "Grenland", - "fa": "گرینلند" - }, - "flag": "https://restcountries.eu/data/grl.svg", - "regionalBlocs": [], - "cioc": "" - }, - { - "name": "Grenada", - "topLevelDomain": [".gd"], - "alpha2Code": "GD", - "alpha3Code": "GRD", - "callingCodes": ["1473"], - "capital": "St. George's", - "altSpellings": ["GD"], - "region": "Americas", - "subregion": "Caribbean", - "population": 103328, - "latlng": [12.11666666, -61.66666666], - "demonym": "Grenadian", - "area": 344.0, - "gini": null, - "timezones": ["UTC-04:00"], - "borders": [], - "nativeName": "Grenada", - "numericCode": "308", - "currencies": [ - { "code": "XCD", "name": "East Caribbean dollar", "symbol": "$" } - ], - "languages": [ - { - "iso639_1": "en", - "iso639_2": "eng", - "name": "English", - "nativeName": "English" - } - ], - "translations": { - "de": "Grenada", - "es": "Grenada", - "fr": "Grenade", - "ja": "グレナダ", - "it": "Grenada", - "br": "Granada", - "pt": "Granada", - "nl": "Grenada", - "hr": "Grenada", - "fa": "گرنادا" - }, - "flag": "https://restcountries.eu/data/grd.svg", - "regionalBlocs": [ - { - "acronym": "CARICOM", - "name": "Caribbean Community", - "otherAcronyms": [], - "otherNames": [ - "Comunidad del Caribe", - "Communauté Caribéenne", - "Caribische Gemeenschap" - ] - } - ], - "cioc": "GRN" - }, - { - "name": "Guadeloupe", - "topLevelDomain": [".gp"], - "alpha2Code": "GP", - "alpha3Code": "GLP", - "callingCodes": ["590"], - "capital": "Basse-Terre", - "altSpellings": ["GP", "Gwadloup"], - "region": "Americas", - "subregion": "Caribbean", - "population": 400132, - "latlng": [16.25, -61.583333], - "demonym": "Guadeloupian", - "area": null, - "gini": null, - "timezones": ["UTC-04:00"], - "borders": [], - "nativeName": "Guadeloupe", - "numericCode": "312", - "currencies": [{ "code": "EUR", "name": "Euro", "symbol": "€" }], - "languages": [ - { - "iso639_1": "fr", - "iso639_2": "fra", - "name": "French", - "nativeName": "français" - } - ], - "translations": { - "de": "Guadeloupe", - "es": "Guadalupe", - "fr": "Guadeloupe", - "ja": "グアドループ", - "it": "Guadeloupa", - "br": "Guadalupe", - "pt": "Guadalupe", - "nl": "Guadeloupe", - "hr": "Gvadalupa", - "fa": "جزیره گوادلوپ" - }, - "flag": "https://restcountries.eu/data/glp.svg", - "regionalBlocs": [], - "cioc": "" - }, - { - "name": "Guam", - "topLevelDomain": [".gu"], - "alpha2Code": "GU", - "alpha3Code": "GUM", - "callingCodes": ["1671"], - "capital": "Hagåtña", - "altSpellings": ["GU", "Guåhån"], - "region": "Oceania", - "subregion": "Micronesia", - "population": 184200, - "latlng": [13.46666666, 144.78333333], - "demonym": "Guamanian", - "area": 549.0, - "gini": null, - "timezones": ["UTC+10:00"], - "borders": [], - "nativeName": "Guam", - "numericCode": "316", - "currencies": [ - { "code": "USD", "name": "United States dollar", "symbol": "$" } - ], - "languages": [ - { - "iso639_1": "en", - "iso639_2": "eng", - "name": "English", - "nativeName": "English" - }, - { - "iso639_1": "ch", - "iso639_2": "cha", - "name": "Chamorro", - "nativeName": "Chamoru" - }, - { - "iso639_1": "es", - "iso639_2": "spa", - "name": "Spanish", - "nativeName": "Español" - } - ], - "translations": { - "de": "Guam", - "es": "Guam", - "fr": "Guam", - "ja": "グアム", - "it": "Guam", - "br": "Guam", - "pt": "Guame", - "nl": "Guam", - "hr": "Guam", - "fa": "گوام" - }, - "flag": "https://restcountries.eu/data/gum.svg", - "regionalBlocs": [], - "cioc": "GUM" - }, - { - "name": "Guatemala", - "topLevelDomain": [".gt"], - "alpha2Code": "GT", - "alpha3Code": "GTM", - "callingCodes": ["502"], - "capital": "Guatemala City", - "altSpellings": ["GT"], - "region": "Americas", - "subregion": "Central America", - "population": 16176133, - "latlng": [15.5, -90.25], - "demonym": "Guatemalan", - "area": 108889.0, - "gini": 55.9, - "timezones": ["UTC-06:00"], - "borders": ["BLZ", "SLV", "HND", "MEX"], - "nativeName": "Guatemala", - "numericCode": "320", - "currencies": [ - { "code": "GTQ", "name": "Guatemalan quetzal", "symbol": "Q" } - ], - "languages": [ - { - "iso639_1": "es", - "iso639_2": "spa", - "name": "Spanish", - "nativeName": "Español" - } - ], - "translations": { - "de": "Guatemala", - "es": "Guatemala", - "fr": "Guatemala", - "ja": "グアテマラ", - "it": "Guatemala", - "br": "Guatemala", - "pt": "Guatemala", - "nl": "Guatemala", - "hr": "Gvatemala", - "fa": "گواتمالا" - }, - "flag": "https://restcountries.eu/data/gtm.svg", - "regionalBlocs": [ - { - "acronym": "CAIS", - "name": "Central American Integration System", - "otherAcronyms": ["SICA"], - "otherNames": ["Sistema de la Integración Centroamericana,"] - } - ], - "cioc": "GUA" - }, - { - "name": "Guernsey", - "topLevelDomain": [".gg"], - "alpha2Code": "GG", - "alpha3Code": "GGY", - "callingCodes": ["44"], - "capital": "St. Peter Port", - "altSpellings": ["GG", "Bailiwick of Guernsey", "Bailliage de Guernesey"], - "region": "Europe", - "subregion": "Northern Europe", - "population": 62999, - "latlng": [49.46666666, -2.58333333], - "demonym": "Channel Islander", - "area": 78.0, - "gini": null, - "timezones": ["UTC+00:00"], - "borders": [], - "nativeName": "Guernsey", - "numericCode": "831", - "currencies": [ - { "code": "GBP", "name": "British pound", "symbol": "£" }, - { "code": "(none)", "name": "Guernsey pound", "symbol": "£" } - ], - "languages": [ - { - "iso639_1": "en", - "iso639_2": "eng", - "name": "English", - "nativeName": "English" - }, - { - "iso639_1": "fr", - "iso639_2": "fra", - "name": "French", - "nativeName": "français" - } - ], - "translations": { - "de": "Guernsey", - "es": "Guernsey", - "fr": "Guernesey", - "ja": "ガーンジー", - "it": "Guernsey", - "br": "Guernsey", - "pt": "Guernsey", - "nl": "Guernsey", - "hr": "Guernsey", - "fa": "گرنزی" - }, - "flag": "https://restcountries.eu/data/ggy.svg", - "regionalBlocs": [], - "cioc": "" - }, - { - "name": "Guinea", - "topLevelDomain": [".gn"], - "alpha2Code": "GN", - "alpha3Code": "GIN", - "callingCodes": ["224"], - "capital": "Conakry", - "altSpellings": ["GN", "Republic of Guinea", "République de Guinée"], - "region": "Africa", - "subregion": "Western Africa", - "population": 12947000, - "latlng": [11.0, -10.0], - "demonym": "Guinean", - "area": 245857.0, - "gini": 39.4, - "timezones": ["UTC"], - "borders": ["CIV", "GNB", "LBR", "MLI", "SEN", "SLE"], - "nativeName": "Guinée", - "numericCode": "324", - "currencies": [{ "code": "GNF", "name": "Guinean franc", "symbol": "Fr" }], - "languages": [ - { - "iso639_1": "fr", - "iso639_2": "fra", - "name": "French", - "nativeName": "français" - }, - { - "iso639_1": "ff", - "iso639_2": "ful", - "name": "Fula", - "nativeName": "Fulfulde" - } - ], - "translations": { - "de": "Guinea", - "es": "Guinea", - "fr": "Guinée", - "ja": "ギニア", - "it": "Guinea", - "br": "Guiné", - "pt": "Guiné", - "nl": "Guinee", - "hr": "Gvineja", - "fa": "گینه" - }, - "flag": "https://restcountries.eu/data/gin.svg", - "regionalBlocs": [ - { - "acronym": "AU", - "name": "African Union", - "otherAcronyms": [], - "otherNames": [ - "الاتحاد الأفريقي", - "Union africaine", - "União Africana", - "Unión Africana", - "Umoja wa Afrika" - ] - } - ], - "cioc": "GUI" - }, - { - "name": "Guinea-Bissau", - "topLevelDomain": [".gw"], - "alpha2Code": "GW", - "alpha3Code": "GNB", - "callingCodes": ["245"], - "capital": "Bissau", - "altSpellings": [ - "GW", - "Republic of Guinea-Bissau", - "República da Guiné-Bissau" - ], - "region": "Africa", - "subregion": "Western Africa", - "population": 1547777, - "latlng": [12.0, -15.0], - "demonym": "Guinea-Bissauan", - "area": 36125.0, - "gini": 35.5, - "timezones": ["UTC"], - "borders": ["GIN", "SEN"], - "nativeName": "Guiné-Bissau", - "numericCode": "624", - "currencies": [ - { "code": "XOF", "name": "West African CFA franc", "symbol": "Fr" } - ], - "languages": [ - { - "iso639_1": "pt", - "iso639_2": "por", - "name": "Portuguese", - "nativeName": "Português" - } - ], - "translations": { - "de": "Guinea-Bissau", - "es": "Guinea-Bisáu", - "fr": "Guinée-Bissau", - "ja": "ギニアビサウ", - "it": "Guinea-Bissau", - "br": "Guiné-Bissau", - "pt": "Guiné-Bissau", - "nl": "Guinee-Bissau", - "hr": "Gvineja Bisau", - "fa": "گینه بیسائو" - }, - "flag": "https://restcountries.eu/data/gnb.svg", - "regionalBlocs": [ - { - "acronym": "AU", - "name": "African Union", - "otherAcronyms": [], - "otherNames": [ - "الاتحاد الأفريقي", - "Union africaine", - "União Africana", - "Unión Africana", - "Umoja wa Afrika" - ] - } - ], - "cioc": "GBS" - }, - { - "name": "Guyana", - "topLevelDomain": [".gy"], - "alpha2Code": "GY", - "alpha3Code": "GUY", - "callingCodes": ["592"], - "capital": "Georgetown", - "altSpellings": ["GY", "Co-operative Republic of Guyana"], - "region": "Americas", - "subregion": "South America", - "population": 746900, - "latlng": [5.0, -59.0], - "demonym": "Guyanese", - "area": 214969.0, - "gini": 44.5, - "timezones": ["UTC-04:00"], - "borders": ["BRA", "SUR", "VEN"], - "nativeName": "Guyana", - "numericCode": "328", - "currencies": [{ "code": "GYD", "name": "Guyanese dollar", "symbol": "$" }], - "languages": [ - { - "iso639_1": "en", - "iso639_2": "eng", - "name": "English", - "nativeName": "English" - } - ], - "translations": { - "de": "Guyana", - "es": "Guyana", - "fr": "Guyane", - "ja": "ガイアナ", - "it": "Guyana", - "br": "Guiana", - "pt": "Guiana", - "nl": "Guyana", - "hr": "Gvajana", - "fa": "گویان" - }, - "flag": "https://restcountries.eu/data/guy.svg", - "regionalBlocs": [ - { - "acronym": "CARICOM", - "name": "Caribbean Community", - "otherAcronyms": [], - "otherNames": [ - "Comunidad del Caribe", - "Communauté Caribéenne", - "Caribische Gemeenschap" - ] - }, - { - "acronym": "USAN", - "name": "Union of South American Nations", - "otherAcronyms": ["UNASUR", "UNASUL", "UZAN"], - "otherNames": [ - "Unión de Naciones Suramericanas", - "União de Nações Sul-Americanas", - "Unie van Zuid-Amerikaanse Naties", - "South American Union" - ] - } - ], - "cioc": "GUY" - }, - { - "name": "Haiti", - "topLevelDomain": [".ht"], - "alpha2Code": "HT", - "alpha3Code": "HTI", - "callingCodes": ["509"], - "capital": "Port-au-Prince", - "altSpellings": [ - "HT", - "Republic of Haiti", - "République d'Haïti", - "Repiblik Ayiti" - ], - "region": "Americas", - "subregion": "Caribbean", - "population": 11078033, - "latlng": [19.0, -72.41666666], - "demonym": "Haitian", - "area": 27750.0, - "gini": 59.2, - "timezones": ["UTC-05:00"], - "borders": ["DOM"], - "nativeName": "Haïti", - "numericCode": "332", - "currencies": [{ "code": "HTG", "name": "Haitian gourde", "symbol": "G" }], - "languages": [ - { - "iso639_1": "fr", - "iso639_2": "fra", - "name": "French", - "nativeName": "français" - }, - { - "iso639_1": "ht", - "iso639_2": "hat", - "name": "Haitian", - "nativeName": "Kreyòl ayisyen" - } - ], - "translations": { - "de": "Haiti", - "es": "Haiti", - "fr": "Haïti", - "ja": "ハイチ", - "it": "Haiti", - "br": "Haiti", - "pt": "Haiti", - "nl": "Haïti", - "hr": "Haiti", - "fa": "هائیتی" - }, - "flag": "https://restcountries.eu/data/hti.svg", - "regionalBlocs": [ - { - "acronym": "CARICOM", - "name": "Caribbean Community", - "otherAcronyms": [], - "otherNames": [ - "Comunidad del Caribe", - "Communauté Caribéenne", - "Caribische Gemeenschap" - ] - } - ], - "cioc": "HAI" - }, - { - "name": "Heard Island and McDonald Islands", - "topLevelDomain": [".hm", ".aq"], - "alpha2Code": "HM", - "alpha3Code": "HMD", - "callingCodes": [""], - "capital": "", - "altSpellings": ["HM"], - "region": "", - "subregion": "", - "population": 0, - "latlng": [-53.1, 72.51666666], - "demonym": "Heard and McDonald Islander", - "area": 412.0, - "gini": null, - "timezones": ["UTC+05:00"], - "borders": [], - "nativeName": "Heard Island and McDonald Islands", - "numericCode": "334", - "currencies": [ - { "code": "AUD", "name": "Australian dollar", "symbol": "$" } - ], - "languages": [ - { - "iso639_1": "en", - "iso639_2": "eng", - "name": "English", - "nativeName": "English" - } - ], - "translations": { - "de": "Heard und die McDonaldinseln", - "es": "Islas Heard y McDonald", - "fr": "Îles Heard-et-MacDonald", - "ja": "ハード島とマクドナルド諸島", - "it": "Isole Heard e McDonald", - "br": "Ilha Heard e Ilhas McDonald", - "pt": "Ilha Heard e Ilhas McDonald", - "nl": "Heard- en McDonaldeilanden", - "hr": "Otok Heard i otočje McDonald", - "fa": "جزیره هرد و جزایر مک‌دونالد" - }, - "flag": "https://restcountries.eu/data/hmd.svg", - "regionalBlocs": [], - "cioc": "" - }, - { - "name": "Holy See", - "topLevelDomain": [".va"], - "alpha2Code": "VA", - "alpha3Code": "VAT", - "callingCodes": ["379"], - "capital": "Rome", - "altSpellings": ["Sancta Sedes", "Vatican", "The Vatican"], - "region": "Europe", - "subregion": "Southern Europe", - "population": 451, - "latlng": [41.9, 12.45], - "demonym": "", - "area": 0.44, - "gini": null, - "timezones": ["UTC+01:00"], - "borders": ["ITA"], - "nativeName": "Sancta Sedes", - "numericCode": "336", - "currencies": [{ "code": "EUR", "name": "Euro", "symbol": "€" }], - "languages": [ - { - "iso639_1": "la", - "iso639_2": "lat", - "name": "Latin", - "nativeName": "latine" - }, - { - "iso639_1": "it", - "iso639_2": "ita", - "name": "Italian", - "nativeName": "Italiano" - }, - { - "iso639_1": "fr", - "iso639_2": "fra", - "name": "French", - "nativeName": "français" - }, - { - "iso639_1": "de", - "iso639_2": "deu", - "name": "German", - "nativeName": "Deutsch" - } - ], - "translations": { - "de": "Heiliger Stuhl", - "es": "Santa Sede", - "fr": "voir Saint", - "ja": "聖座", - "it": "Santa Sede", - "br": "Vaticano", - "pt": "Vaticano", - "nl": "Heilige Stoel", - "hr": "Sveta Stolica", - "fa": "سریر مقدس" - }, - "flag": "https://restcountries.eu/data/vat.svg", - "regionalBlocs": [], - "cioc": "" - }, - { - "name": "Honduras", - "topLevelDomain": [".hn"], - "alpha2Code": "HN", - "alpha3Code": "HND", - "callingCodes": ["504"], - "capital": "Tegucigalpa", - "altSpellings": ["HN", "Republic of Honduras", "República de Honduras"], - "region": "Americas", - "subregion": "Central America", - "population": 8576532, - "latlng": [15.0, -86.5], - "demonym": "Honduran", - "area": 112492.0, - "gini": 57.0, - "timezones": ["UTC-06:00"], - "borders": ["GTM", "SLV", "NIC"], - "nativeName": "Honduras", - "numericCode": "340", - "currencies": [ - { "code": "HNL", "name": "Honduran lempira", "symbol": "L" } - ], - "languages": [ - { - "iso639_1": "es", - "iso639_2": "spa", - "name": "Spanish", - "nativeName": "Español" - } - ], - "translations": { - "de": "Honduras", - "es": "Honduras", - "fr": "Honduras", - "ja": "ホンジュラス", - "it": "Honduras", - "br": "Honduras", - "pt": "Honduras", - "nl": "Honduras", - "hr": "Honduras", - "fa": "هندوراس" - }, - "flag": "https://restcountries.eu/data/hnd.svg", - "regionalBlocs": [ - { - "acronym": "CAIS", - "name": "Central American Integration System", - "otherAcronyms": ["SICA"], - "otherNames": ["Sistema de la Integración Centroamericana,"] - } - ], - "cioc": "HON" - }, - { - "name": "Hong Kong", - "topLevelDomain": [".hk"], - "alpha2Code": "HK", - "alpha3Code": "HKG", - "callingCodes": ["852"], - "capital": "City of Victoria", - "altSpellings": ["HK", "香港"], - "region": "Asia", - "subregion": "Eastern Asia", - "population": 7324300, - "latlng": [22.25, 114.16666666], - "demonym": "Chinese", - "area": 1104.0, - "gini": 53.3, - "timezones": ["UTC+08:00"], - "borders": ["CHN"], - "nativeName": "香港", - "numericCode": "344", - "currencies": [ - { "code": "HKD", "name": "Hong Kong dollar", "symbol": "$" } - ], - "languages": [ - { - "iso639_1": "en", - "iso639_2": "eng", - "name": "English", - "nativeName": "English" - }, - { - "iso639_1": "zh", - "iso639_2": "zho", - "name": "Chinese", - "nativeName": "中文 (Zhōngwén)" - } - ], - "translations": { - "de": "Hong Kong", - "es": "Hong Kong", - "fr": "Hong Kong", - "ja": "香港", - "it": "Hong Kong", - "br": "Hong Kong", - "pt": "Hong Kong", - "nl": "Hongkong", - "hr": "Hong Kong", - "fa": "هنگ‌کنگ" - }, - "flag": "https://restcountries.eu/data/hkg.svg", - "regionalBlocs": [], - "cioc": "HKG" - }, - { - "name": "Hungary", - "topLevelDomain": [".hu"], - "alpha2Code": "HU", - "alpha3Code": "HUN", - "callingCodes": ["36"], - "capital": "Budapest", - "altSpellings": ["HU"], - "region": "Europe", - "subregion": "Eastern Europe", - "population": 9823000, - "latlng": [47.0, 20.0], - "demonym": "Hungarian", - "area": 93028.0, - "gini": 31.2, - "timezones": ["UTC+01:00"], - "borders": ["AUT", "HRV", "ROU", "SRB", "SVK", "SVN", "UKR"], - "nativeName": "Magyarország", - "numericCode": "348", - "currencies": [ - { "code": "HUF", "name": "Hungarian forint", "symbol": "Ft" } - ], - "languages": [ - { - "iso639_1": "hu", - "iso639_2": "hun", - "name": "Hungarian", - "nativeName": "magyar" - } - ], - "translations": { - "de": "Ungarn", - "es": "Hungría", - "fr": "Hongrie", - "ja": "ハンガリー", - "it": "Ungheria", - "br": "Hungria", - "pt": "Hungria", - "nl": "Hongarije", - "hr": "Mađarska", - "fa": "مجارستان" - }, - "flag": "https://restcountries.eu/data/hun.svg", - "regionalBlocs": [ - { - "acronym": "EU", - "name": "European Union", - "otherAcronyms": [], - "otherNames": [] - } - ], - "cioc": "HUN" - }, - { - "name": "Iceland", - "topLevelDomain": [".is"], - "alpha2Code": "IS", - "alpha3Code": "ISL", - "callingCodes": ["354"], - "capital": "Reykjavík", - "altSpellings": ["IS", "Island", "Republic of Iceland", "Lýðveldið Ísland"], - "region": "Europe", - "subregion": "Northern Europe", - "population": 334300, - "latlng": [65.0, -18.0], - "demonym": "Icelander", - "area": 103000.0, - "gini": null, - "timezones": ["UTC"], - "borders": [], - "nativeName": "Ísland", - "numericCode": "352", - "currencies": [ - { "code": "ISK", "name": "Icelandic króna", "symbol": "kr" } - ], - "languages": [ - { - "iso639_1": "is", - "iso639_2": "isl", - "name": "Icelandic", - "nativeName": "Íslenska" - } - ], - "translations": { - "de": "Island", - "es": "Islandia", - "fr": "Islande", - "ja": "アイスランド", - "it": "Islanda", - "br": "Islândia", - "pt": "Islândia", - "nl": "IJsland", - "hr": "Island", - "fa": "ایسلند" - }, - "flag": "https://restcountries.eu/data/isl.svg", - "regionalBlocs": [ - { - "acronym": "EFTA", - "name": "European Free Trade Association", - "otherAcronyms": [], - "otherNames": [] - } - ], - "cioc": "ISL" - }, - { - "name": "India", - "topLevelDomain": [".in"], - "alpha2Code": "IN", - "alpha3Code": "IND", - "callingCodes": ["91"], - "capital": "New Delhi", - "altSpellings": ["IN", "Bhārat", "Republic of India", "Bharat Ganrajya"], - "region": "Asia", - "subregion": "Southern Asia", - "population": 1295210000, - "latlng": [20.0, 77.0], - "demonym": "Indian", - "area": 3287590.0, - "gini": 33.4, - "timezones": ["UTC+05:30"], - "borders": ["AFG", "BGD", "BTN", "MMR", "CHN", "NPL", "PAK", "LKA"], - "nativeName": "भारत", - "numericCode": "356", - "currencies": [{ "code": "INR", "name": "Indian rupee", "symbol": "₹" }], - "languages": [ - { - "iso639_1": "hi", - "iso639_2": "hin", - "name": "Hindi", - "nativeName": "हिन्दी" - }, - { - "iso639_1": "en", - "iso639_2": "eng", - "name": "English", - "nativeName": "English" - } - ], - "translations": { - "de": "Indien", - "es": "India", - "fr": "Inde", - "ja": "インド", - "it": "India", - "br": "Índia", - "pt": "Índia", - "nl": "India", - "hr": "Indija", - "fa": "هند" - }, - "flag": "https://restcountries.eu/data/ind.svg", - "regionalBlocs": [ - { - "acronym": "SAARC", - "name": "South Asian Association for Regional Cooperation", - "otherAcronyms": [], - "otherNames": [] - } - ], - "cioc": "IND" - }, - { - "name": "Indonesia", - "topLevelDomain": [".id"], - "alpha2Code": "ID", - "alpha3Code": "IDN", - "callingCodes": ["62"], - "capital": "Jakarta", - "altSpellings": ["ID", "Republic of Indonesia", "Republik Indonesia"], - "region": "Asia", - "subregion": "South-Eastern Asia", - "population": 258705000, - "latlng": [-5.0, 120.0], - "demonym": "Indonesian", - "area": 1904569.0, - "gini": 34.0, - "timezones": ["UTC+07:00", "UTC+08:00", "UTC+09:00"], - "borders": ["TLS", "MYS", "PNG"], - "nativeName": "Indonesia", - "numericCode": "360", - "currencies": [ - { "code": "IDR", "name": "Indonesian rupiah", "symbol": "Rp" } - ], - "languages": [ - { - "iso639_1": "id", - "iso639_2": "ind", - "name": "Indonesian", - "nativeName": "Bahasa Indonesia" - } - ], - "translations": { - "de": "Indonesien", - "es": "Indonesia", - "fr": "Indonésie", - "ja": "インドネシア", - "it": "Indonesia", - "br": "Indonésia", - "pt": "Indonésia", - "nl": "Indonesië", - "hr": "Indonezija", - "fa": "اندونزی" - }, - "flag": "https://restcountries.eu/data/idn.svg", - "regionalBlocs": [ - { - "acronym": "ASEAN", - "name": "Association of Southeast Asian Nations", - "otherAcronyms": [], - "otherNames": [] - } - ], - "cioc": "INA" - }, - { - "name": "Côte d'Ivoire", - "topLevelDomain": [".ci"], - "alpha2Code": "CI", - "alpha3Code": "CIV", - "callingCodes": ["225"], - "capital": "Yamoussoukro", - "altSpellings": [ - "CI", - "Ivory Coast", - "Republic of Côte d'Ivoire", - "République de Côte d'Ivoire" - ], - "region": "Africa", - "subregion": "Western Africa", - "population": 22671331, - "latlng": [8.0, -5.0], - "demonym": "Ivorian", - "area": 322463.0, - "gini": 41.5, - "timezones": ["UTC"], - "borders": ["BFA", "GHA", "GIN", "LBR", "MLI"], - "nativeName": "Côte d'Ivoire", - "numericCode": "384", - "currencies": [ - { "code": "XOF", "name": "West African CFA franc", "symbol": "Fr" } - ], - "languages": [ - { - "iso639_1": "fr", - "iso639_2": "fra", - "name": "French", - "nativeName": "français" - } - ], - "translations": { - "de": "Elfenbeinküste", - "es": "Costa de Marfil", - "fr": "Côte d'Ivoire", - "ja": "コートジボワール", - "it": "Costa D'Avorio", - "br": "Costa do Marfim", - "pt": "Costa do Marfim", - "nl": "Ivoorkust", - "hr": "Obala Bjelokosti", - "fa": "ساحل عاج" - }, - "flag": "https://restcountries.eu/data/civ.svg", - "regionalBlocs": [ - { - "acronym": "AU", - "name": "African Union", - "otherAcronyms": [], - "otherNames": [ - "الاتحاد الأفريقي", - "Union africaine", - "União Africana", - "Unión Africana", - "Umoja wa Afrika" - ] - } - ], - "cioc": "CIV" - }, - { - "name": "Iran (Islamic Republic of)", - "topLevelDomain": [".ir"], - "alpha2Code": "IR", - "alpha3Code": "IRN", - "callingCodes": ["98"], - "capital": "Tehran", - "altSpellings": [ - "IR", - "Islamic Republic of Iran", - "Jomhuri-ye Eslāmi-ye Irān" - ], - "region": "Asia", - "subregion": "Southern Asia", - "population": 79369900, - "latlng": [32.0, 53.0], - "demonym": "Iranian", - "area": 1648195.0, - "gini": 38.3, - "timezones": ["UTC+03:30"], - "borders": ["AFG", "ARM", "AZE", "IRQ", "PAK", "TUR", "TKM"], - "nativeName": "ایران", - "numericCode": "364", - "currencies": [{ "code": "IRR", "name": "Iranian rial", "symbol": "﷼" }], - "languages": [ - { - "iso639_1": "fa", - "iso639_2": "fas", - "name": "Persian (Farsi)", - "nativeName": "فارسی" - } - ], - "translations": { - "de": "Iran", - "es": "Iran", - "fr": "Iran", - "ja": "イラン・イスラム共和国", - "it": null, - "br": "Irã", - "pt": "Irão", - "nl": "Iran", - "hr": "Iran", - "fa": "ایران" - }, - "flag": "https://restcountries.eu/data/irn.svg", - "regionalBlocs": [], - "cioc": "IRI" - }, - { - "name": "Iraq", - "topLevelDomain": [".iq"], - "alpha2Code": "IQ", - "alpha3Code": "IRQ", - "callingCodes": ["964"], - "capital": "Baghdad", - "altSpellings": ["IQ", "Republic of Iraq", "Jumhūriyyat al-‘Irāq"], - "region": "Asia", - "subregion": "Western Asia", - "population": 37883543, - "latlng": [33.0, 44.0], - "demonym": "Iraqi", - "area": 438317.0, - "gini": 30.9, - "timezones": ["UTC+03:00"], - "borders": ["IRN", "JOR", "KWT", "SAU", "SYR", "TUR"], - "nativeName": "العراق", - "numericCode": "368", - "currencies": [{ "code": "IQD", "name": "Iraqi dinar", "symbol": "ع.د" }], - "languages": [ - { - "iso639_1": "ar", - "iso639_2": "ara", - "name": "Arabic", - "nativeName": "العربية" - }, - { - "iso639_1": "ku", - "iso639_2": "kur", - "name": "Kurdish", - "nativeName": "Kurdî" - } - ], - "translations": { - "de": "Irak", - "es": "Irak", - "fr": "Irak", - "ja": "イラク", - "it": "Iraq", - "br": "Iraque", - "pt": "Iraque", - "nl": "Irak", - "hr": "Irak", - "fa": "عراق" - }, - "flag": "https://restcountries.eu/data/irq.svg", - "regionalBlocs": [ - { - "acronym": "AL", - "name": "Arab League", - "otherAcronyms": [], - "otherNames": [ - "جامعة الدول العربية", - "Jāmiʻat ad-Duwal al-ʻArabīyah", - "League of Arab States" - ] - } - ], - "cioc": "IRQ" - }, - { - "name": "Ireland", - "topLevelDomain": [".ie"], - "alpha2Code": "IE", - "alpha3Code": "IRL", - "callingCodes": ["353"], - "capital": "Dublin", - "altSpellings": [ - "IE", - "Éire", - "Republic of Ireland", - "Poblacht na hÉireann" - ], - "region": "Europe", - "subregion": "Northern Europe", - "population": 6378000, - "latlng": [53.0, -8.0], - "demonym": "Irish", - "area": 70273.0, - "gini": 34.3, - "timezones": ["UTC"], - "borders": ["GBR"], - "nativeName": "Éire", - "numericCode": "372", - "currencies": [{ "code": "EUR", "name": "Euro", "symbol": "€" }], - "languages": [ - { - "iso639_1": "ga", - "iso639_2": "gle", - "name": "Irish", - "nativeName": "Gaeilge" - }, - { - "iso639_1": "en", - "iso639_2": "eng", - "name": "English", - "nativeName": "English" - } - ], - "translations": { - "de": "Irland", - "es": "Irlanda", - "fr": "Irlande", - "ja": "アイルランド", - "it": "Irlanda", - "br": "Irlanda", - "pt": "Irlanda", - "nl": "Ierland", - "hr": "Irska", - "fa": "ایرلند" - }, - "flag": "https://restcountries.eu/data/irl.svg", - "regionalBlocs": [ - { - "acronym": "EU", - "name": "European Union", - "otherAcronyms": [], - "otherNames": [] - } - ], - "cioc": "IRL" - }, - { - "name": "Isle of Man", - "topLevelDomain": [".im"], - "alpha2Code": "IM", - "alpha3Code": "IMN", - "callingCodes": ["44"], - "capital": "Douglas", - "altSpellings": ["IM", "Ellan Vannin", "Mann", "Mannin"], - "region": "Europe", - "subregion": "Northern Europe", - "population": 84497, - "latlng": [54.25, -4.5], - "demonym": "Manx", - "area": 572.0, - "gini": null, - "timezones": ["UTC+00:00"], - "borders": [], - "nativeName": "Isle of Man", - "numericCode": "833", - "currencies": [ - { "code": "GBP", "name": "British pound", "symbol": "£" }, - { "code": "IMP[G]", "name": "Manx pound", "symbol": "£" } - ], - "languages": [ - { - "iso639_1": "en", - "iso639_2": "eng", - "name": "English", - "nativeName": "English" - }, - { - "iso639_1": "gv", - "iso639_2": "glv", - "name": "Manx", - "nativeName": "Gaelg" - } - ], - "translations": { - "de": "Insel Man", - "es": "Isla de Man", - "fr": "Île de Man", - "ja": "マン島", - "it": "Isola di Man", - "br": "Ilha de Man", - "pt": "Ilha de Man", - "nl": "Isle of Man", - "hr": "Otok Man", - "fa": "جزیره من" - }, - "flag": "https://restcountries.eu/data/imn.svg", - "regionalBlocs": [ - { - "acronym": "EU", - "name": "European Union", - "otherAcronyms": [], - "otherNames": [] - } - ], - "cioc": "" - }, - { - "name": "Israel", - "topLevelDomain": [".il"], - "alpha2Code": "IL", - "alpha3Code": "ISR", - "callingCodes": ["972"], - "capital": "Jerusalem", - "altSpellings": ["IL", "State of Israel", "Medīnat Yisrā'el"], - "region": "Asia", - "subregion": "Western Asia", - "population": 8527400, - "latlng": [31.5, 34.75], - "demonym": "Israeli", - "area": 20770.0, - "gini": 39.2, - "timezones": ["UTC+02:00"], - "borders": ["EGY", "JOR", "LBN", "SYR"], - "nativeName": "יִשְׂרָאֵל", - "numericCode": "376", - "currencies": [ - { "code": "ILS", "name": "Israeli new shekel", "symbol": "₪" } - ], - "languages": [ - { - "iso639_1": "he", - "iso639_2": "heb", - "name": "Hebrew (modern)", - "nativeName": "עברית" - }, - { - "iso639_1": "ar", - "iso639_2": "ara", - "name": "Arabic", - "nativeName": "العربية" - } - ], - "translations": { - "de": "Israel", - "es": "Israel", - "fr": "Israël", - "ja": "イスラエル", - "it": "Israele", - "br": "Israel", - "pt": "Israel", - "nl": "Israël", - "hr": "Izrael", - "fa": "اسرائیل" - }, - "flag": "https://restcountries.eu/data/isr.svg", - "regionalBlocs": [], - "cioc": "ISR" - }, - { - "name": "Italy", - "topLevelDomain": [".it"], - "alpha2Code": "IT", - "alpha3Code": "ITA", - "callingCodes": ["39"], - "capital": "Rome", - "altSpellings": ["IT", "Italian Republic", "Repubblica italiana"], - "region": "Europe", - "subregion": "Southern Europe", - "population": 60665551, - "latlng": [42.83333333, 12.83333333], - "demonym": "Italian", - "area": 301336.0, - "gini": 36.0, - "timezones": ["UTC+01:00"], - "borders": ["AUT", "FRA", "SMR", "SVN", "CHE", "VAT"], - "nativeName": "Italia", - "numericCode": "380", - "currencies": [{ "code": "EUR", "name": "Euro", "symbol": "€" }], - "languages": [ - { - "iso639_1": "it", - "iso639_2": "ita", - "name": "Italian", - "nativeName": "Italiano" - } - ], - "translations": { - "de": "Italien", - "es": "Italia", - "fr": "Italie", - "ja": "イタリア", - "it": "Italia", - "br": "Itália", - "pt": "Itália", - "nl": "Italië", - "hr": "Italija", - "fa": "ایتالیا" - }, - "flag": "https://restcountries.eu/data/ita.svg", - "regionalBlocs": [ - { - "acronym": "EU", - "name": "European Union", - "otherAcronyms": [], - "otherNames": [] - } - ], - "cioc": "ITA" - }, - { - "name": "Jamaica", - "topLevelDomain": [".jm"], - "alpha2Code": "JM", - "alpha3Code": "JAM", - "callingCodes": ["1876"], - "capital": "Kingston", - "altSpellings": ["JM"], - "region": "Americas", - "subregion": "Caribbean", - "population": 2723246, - "latlng": [18.25, -77.5], - "demonym": "Jamaican", - "area": 10991.0, - "gini": 45.5, - "timezones": ["UTC-05:00"], - "borders": [], - "nativeName": "Jamaica", - "numericCode": "388", - "currencies": [{ "code": "JMD", "name": "Jamaican dollar", "symbol": "$" }], - "languages": [ - { - "iso639_1": "en", - "iso639_2": "eng", - "name": "English", - "nativeName": "English" - } - ], - "translations": { - "de": "Jamaika", - "es": "Jamaica", - "fr": "Jamaïque", - "ja": "ジャマイカ", - "it": "Giamaica", - "br": "Jamaica", - "pt": "Jamaica", - "nl": "Jamaica", - "hr": "Jamajka", - "fa": "جامائیکا" - }, - "flag": "https://restcountries.eu/data/jam.svg", - "regionalBlocs": [ - { - "acronym": "CARICOM", - "name": "Caribbean Community", - "otherAcronyms": [], - "otherNames": [ - "Comunidad del Caribe", - "Communauté Caribéenne", - "Caribische Gemeenschap" - ] - } - ], - "cioc": "JAM" - }, - { - "name": "Japan", - "topLevelDomain": [".jp"], - "alpha2Code": "JP", - "alpha3Code": "JPN", - "callingCodes": ["81"], - "capital": "Tokyo", - "altSpellings": ["JP", "Nippon", "Nihon"], - "region": "Asia", - "subregion": "Eastern Asia", - "population": 126960000, - "latlng": [36.0, 138.0], - "demonym": "Japanese", - "area": 377930.0, - "gini": 38.1, - "timezones": ["UTC+09:00"], - "borders": [], - "nativeName": "日本", - "numericCode": "392", - "currencies": [{ "code": "JPY", "name": "Japanese yen", "symbol": "¥" }], - "languages": [ - { - "iso639_1": "ja", - "iso639_2": "jpn", - "name": "Japanese", - "nativeName": "日本語 (にほんご)" - } - ], - "translations": { - "de": "Japan", - "es": "Japón", - "fr": "Japon", - "ja": "日本", - "it": "Giappone", - "br": "Japão", - "pt": "Japão", - "nl": "Japan", - "hr": "Japan", - "fa": "ژاپن" - }, - "flag": "https://restcountries.eu/data/jpn.svg", - "regionalBlocs": [], - "cioc": "JPN" - }, - { - "name": "Jersey", - "topLevelDomain": [".je"], - "alpha2Code": "JE", - "alpha3Code": "JEY", - "callingCodes": ["44"], - "capital": "Saint Helier", - "altSpellings": [ - "JE", - "Bailiwick of Jersey", - "Bailliage de Jersey", - "Bailliage dé Jèrri" - ], - "region": "Europe", - "subregion": "Northern Europe", - "population": 100800, - "latlng": [49.25, -2.16666666], - "demonym": "Channel Islander", - "area": 116.0, - "gini": null, - "timezones": ["UTC+01:00"], - "borders": [], - "nativeName": "Jersey", - "numericCode": "832", - "currencies": [ - { "code": "GBP", "name": "British pound", "symbol": "£" }, - { "code": "JEP[G]", "name": "Jersey pound", "symbol": "£" } - ], - "languages": [ - { - "iso639_1": "en", - "iso639_2": "eng", - "name": "English", - "nativeName": "English" - }, - { - "iso639_1": "fr", - "iso639_2": "fra", - "name": "French", - "nativeName": "français" - } - ], - "translations": { - "de": "Jersey", - "es": "Jersey", - "fr": "Jersey", - "ja": "ジャージー", - "it": "Isola di Jersey", - "br": "Jersey", - "pt": "Jersey", - "nl": "Jersey", - "hr": "Jersey", - "fa": "جرزی" - }, - "flag": "https://restcountries.eu/data/jey.svg", - "regionalBlocs": [], - "cioc": "" - }, - { - "name": "Jordan", - "topLevelDomain": [".jo"], - "alpha2Code": "JO", - "alpha3Code": "JOR", - "callingCodes": ["962"], - "capital": "Amman", - "altSpellings": [ - "JO", - "Hashemite Kingdom of Jordan", - "al-Mamlakah al-Urdunīyah al-Hāshimīyah" - ], - "region": "Asia", - "subregion": "Western Asia", - "population": 9531712, - "latlng": [31.0, 36.0], - "demonym": "Jordanian", - "area": 89342.0, - "gini": 35.4, - "timezones": ["UTC+03:00"], - "borders": ["IRQ", "ISR", "SAU", "SYR"], - "nativeName": "الأردن", - "numericCode": "400", - "currencies": [ - { "code": "JOD", "name": "Jordanian dinar", "symbol": "د.ا" } - ], - "languages": [ - { - "iso639_1": "ar", - "iso639_2": "ara", - "name": "Arabic", - "nativeName": "العربية" - } - ], - "translations": { - "de": "Jordanien", - "es": "Jordania", - "fr": "Jordanie", - "ja": "ヨルダン", - "it": "Giordania", - "br": "Jordânia", - "pt": "Jordânia", - "nl": "Jordanië", - "hr": "Jordan", - "fa": "اردن" - }, - "flag": "https://restcountries.eu/data/jor.svg", - "regionalBlocs": [ - { - "acronym": "AL", - "name": "Arab League", - "otherAcronyms": [], - "otherNames": [ - "جامعة الدول العربية", - "Jāmiʻat ad-Duwal al-ʻArabīyah", - "League of Arab States" - ] - } - ], - "cioc": "JOR" - }, - { - "name": "Kazakhstan", - "topLevelDomain": [".kz", ".қаз"], - "alpha2Code": "KZ", - "alpha3Code": "KAZ", - "callingCodes": ["76", "77"], - "capital": "Astana", - "altSpellings": [ - "KZ", - "Qazaqstan", - "Казахстан", - "Republic of Kazakhstan", - "Қазақстан Республикасы", - "Qazaqstan Respublïkası", - "Республика Казахстан", - "Respublika Kazakhstan" - ], - "region": "Asia", - "subregion": "Central Asia", - "population": 17753200, - "latlng": [48.0, 68.0], - "demonym": "Kazakhstani", - "area": 2724900.0, - "gini": 29.0, - "timezones": ["UTC+05:00", "UTC+06:00"], - "borders": ["CHN", "KGZ", "RUS", "TKM", "UZB"], - "nativeName": "Қазақстан", - "numericCode": "398", - "currencies": [ - { "code": "KZT", "name": "Kazakhstani tenge", "symbol": null } - ], - "languages": [ - { - "iso639_1": "kk", - "iso639_2": "kaz", - "name": "Kazakh", - "nativeName": "қазақ тілі" - }, - { - "iso639_1": "ru", - "iso639_2": "rus", - "name": "Russian", - "nativeName": "Русский" - } - ], - "translations": { - "de": "Kasachstan", - "es": "Kazajistán", - "fr": "Kazakhstan", - "ja": "カザフスタン", - "it": "Kazakistan", - "br": "Cazaquistão", - "pt": "Cazaquistão", - "nl": "Kazachstan", - "hr": "Kazahstan", - "fa": "قزاقستان" - }, - "flag": "https://restcountries.eu/data/kaz.svg", - "regionalBlocs": [ - { - "acronym": "EEU", - "name": "Eurasian Economic Union", - "otherAcronyms": ["EAEU"], - "otherNames": [] - } - ], - "cioc": "KAZ" - }, - { - "name": "Kenya", - "topLevelDomain": [".ke"], - "alpha2Code": "KE", - "alpha3Code": "KEN", - "callingCodes": ["254"], - "capital": "Nairobi", - "altSpellings": ["KE", "Republic of Kenya", "Jamhuri ya Kenya"], - "region": "Africa", - "subregion": "Eastern Africa", - "population": 47251000, - "latlng": [1.0, 38.0], - "demonym": "Kenyan", - "area": 580367.0, - "gini": 47.7, - "timezones": ["UTC+03:00"], - "borders": ["ETH", "SOM", "SSD", "TZA", "UGA"], - "nativeName": "Kenya", - "numericCode": "404", - "currencies": [ - { "code": "KES", "name": "Kenyan shilling", "symbol": "Sh" } - ], - "languages": [ - { - "iso639_1": "en", - "iso639_2": "eng", - "name": "English", - "nativeName": "English" - }, - { - "iso639_1": "sw", - "iso639_2": "swa", - "name": "Swahili", - "nativeName": "Kiswahili" - } - ], - "translations": { - "de": "Kenia", - "es": "Kenia", - "fr": "Kenya", - "ja": "ケニア", - "it": "Kenya", - "br": "Quênia", - "pt": "Quénia", - "nl": "Kenia", - "hr": "Kenija", - "fa": "کنیا" - }, - "flag": "https://restcountries.eu/data/ken.svg", - "regionalBlocs": [ - { - "acronym": "AU", - "name": "African Union", - "otherAcronyms": [], - "otherNames": [ - "الاتحاد الأفريقي", - "Union africaine", - "União Africana", - "Unión Africana", - "Umoja wa Afrika" - ] - } - ], - "cioc": "KEN" - }, - { - "name": "Kiribati", - "topLevelDomain": [".ki"], - "alpha2Code": "KI", - "alpha3Code": "KIR", - "callingCodes": ["686"], - "capital": "South Tarawa", - "altSpellings": ["KI", "Republic of Kiribati", "Ribaberiki Kiribati"], - "region": "Oceania", - "subregion": "Micronesia", - "population": 113400, - "latlng": [1.41666666, 173.0], - "demonym": "I-Kiribati", - "area": 811.0, - "gini": null, - "timezones": ["UTC+12:00", "UTC+13:00", "UTC+14:00"], - "borders": [], - "nativeName": "Kiribati", - "numericCode": "296", - "currencies": [ - { "code": "AUD", "name": "Australian dollar", "symbol": "$" }, - { "code": "(none)", "name": "Kiribati dollar", "symbol": "$" } - ], - "languages": [ - { - "iso639_1": "en", - "iso639_2": "eng", - "name": "English", - "nativeName": "English" - } - ], - "translations": { - "de": "Kiribati", - "es": "Kiribati", - "fr": "Kiribati", - "ja": "キリバス", - "it": "Kiribati", - "br": "Kiribati", - "pt": "Quiribáti", - "nl": "Kiribati", - "hr": "Kiribati", - "fa": "کیریباتی" - }, - "flag": "https://restcountries.eu/data/kir.svg", - "regionalBlocs": [], - "cioc": "KIR" - }, - { - "name": "Kuwait", - "topLevelDomain": [".kw"], - "alpha2Code": "KW", - "alpha3Code": "KWT", - "callingCodes": ["965"], - "capital": "Kuwait City", - "altSpellings": ["KW", "State of Kuwait", "Dawlat al-Kuwait"], - "region": "Asia", - "subregion": "Western Asia", - "population": 4183658, - "latlng": [29.5, 45.75], - "demonym": "Kuwaiti", - "area": 17818.0, - "gini": null, - "timezones": ["UTC+03:00"], - "borders": ["IRN", "SAU"], - "nativeName": "الكويت", - "numericCode": "414", - "currencies": [{ "code": "KWD", "name": "Kuwaiti dinar", "symbol": "د.ك" }], - "languages": [ - { - "iso639_1": "ar", - "iso639_2": "ara", - "name": "Arabic", - "nativeName": "العربية" - } - ], - "translations": { - "de": "Kuwait", - "es": "Kuwait", - "fr": "Koweït", - "ja": "クウェート", - "it": "Kuwait", - "br": "Kuwait", - "pt": "Kuwait", - "nl": "Koeweit", - "hr": "Kuvajt", - "fa": "کویت" - }, - "flag": "https://restcountries.eu/data/kwt.svg", - "regionalBlocs": [ - { - "acronym": "AL", - "name": "Arab League", - "otherAcronyms": [], - "otherNames": [ - "جامعة الدول العربية", - "Jāmiʻat ad-Duwal al-ʻArabīyah", - "League of Arab States" - ] - } - ], - "cioc": "KUW" - }, - { - "name": "Kyrgyzstan", - "topLevelDomain": [".kg"], - "alpha2Code": "KG", - "alpha3Code": "KGZ", - "callingCodes": ["996"], - "capital": "Bishkek", - "altSpellings": [ - "KG", - "Киргизия", - "Kyrgyz Republic", - "Кыргыз Республикасы", - "Kyrgyz Respublikasy" - ], - "region": "Asia", - "subregion": "Central Asia", - "population": 6047800, - "latlng": [41.0, 75.0], - "demonym": "Kirghiz", - "area": 199951.0, - "gini": 36.2, - "timezones": ["UTC+06:00"], - "borders": ["CHN", "KAZ", "TJK", "UZB"], - "nativeName": "Кыргызстан", - "numericCode": "417", - "currencies": [{ "code": "KGS", "name": "Kyrgyzstani som", "symbol": "с" }], - "languages": [ - { - "iso639_1": "ky", - "iso639_2": "kir", - "name": "Kyrgyz", - "nativeName": "Кыргызча" - }, - { - "iso639_1": "ru", - "iso639_2": "rus", - "name": "Russian", - "nativeName": "Русский" - } - ], - "translations": { - "de": "Kirgisistan", - "es": "Kirguizistán", - "fr": "Kirghizistan", - "ja": "キルギス", - "it": "Kirghizistan", - "br": "Quirguistão", - "pt": "Quirguizistão", - "nl": "Kirgizië", - "hr": "Kirgistan", - "fa": "قرقیزستان" - }, - "flag": "https://restcountries.eu/data/kgz.svg", - "regionalBlocs": [ - { - "acronym": "EEU", - "name": "Eurasian Economic Union", - "otherAcronyms": ["EAEU"], - "otherNames": [] - } - ], - "cioc": "KGZ" - }, - { - "name": "Lao People's Democratic Republic", - "topLevelDomain": [".la"], - "alpha2Code": "LA", - "alpha3Code": "LAO", - "callingCodes": ["856"], - "capital": "Vientiane", - "altSpellings": [ - "LA", - "Lao", - "Laos", - "Lao People's Democratic Republic", - "Sathalanalat Paxathipatai Paxaxon Lao" - ], - "region": "Asia", - "subregion": "South-Eastern Asia", - "population": 6492400, - "latlng": [18.0, 105.0], - "demonym": "Laotian", - "area": 236800.0, - "gini": 36.7, - "timezones": ["UTC+07:00"], - "borders": ["MMR", "KHM", "CHN", "THA", "VNM"], - "nativeName": "ສປປລາວ", - "numericCode": "418", - "currencies": [{ "code": "LAK", "name": "Lao kip", "symbol": "₭" }], - "languages": [ - { - "iso639_1": "lo", - "iso639_2": "lao", - "name": "Lao", - "nativeName": "ພາສາລາວ" - } - ], - "translations": { - "de": "Laos", - "es": "Laos", - "fr": "Laos", - "ja": "ラオス人民民主共和国", - "it": "Laos", - "br": "Laos", - "pt": "Laos", - "nl": "Laos", - "hr": "Laos", - "fa": "لائوس" - }, - "flag": "https://restcountries.eu/data/lao.svg", - "regionalBlocs": [ - { - "acronym": "ASEAN", - "name": "Association of Southeast Asian Nations", - "otherAcronyms": [], - "otherNames": [] - } - ], - "cioc": "LAO" - }, - { - "name": "Latvia", - "topLevelDomain": [".lv"], - "alpha2Code": "LV", - "alpha3Code": "LVA", - "callingCodes": ["371"], - "capital": "Riga", - "altSpellings": ["LV", "Republic of Latvia", "Latvijas Republika"], - "region": "Europe", - "subregion": "Northern Europe", - "population": 1961600, - "latlng": [57.0, 25.0], - "demonym": "Latvian", - "area": 64559.0, - "gini": 36.6, - "timezones": ["UTC+02:00"], - "borders": ["BLR", "EST", "LTU", "RUS"], - "nativeName": "Latvija", - "numericCode": "428", - "currencies": [{ "code": "EUR", "name": "Euro", "symbol": "€" }], - "languages": [ - { - "iso639_1": "lv", - "iso639_2": "lav", - "name": "Latvian", - "nativeName": "latviešu valoda" - } - ], - "translations": { - "de": "Lettland", - "es": "Letonia", - "fr": "Lettonie", - "ja": "ラトビア", - "it": "Lettonia", - "br": "Letônia", - "pt": "Letónia", - "nl": "Letland", - "hr": "Latvija", - "fa": "لتونی" - }, - "flag": "https://restcountries.eu/data/lva.svg", - "regionalBlocs": [ - { - "acronym": "EU", - "name": "European Union", - "otherAcronyms": [], - "otherNames": [] - } - ], - "cioc": "LAT" - }, - { - "name": "Lebanon", - "topLevelDomain": [".lb"], - "alpha2Code": "LB", - "alpha3Code": "LBN", - "callingCodes": ["961"], - "capital": "Beirut", - "altSpellings": ["LB", "Lebanese Republic", "Al-Jumhūrīyah Al-Libnānīyah"], - "region": "Asia", - "subregion": "Western Asia", - "population": 5988000, - "latlng": [33.83333333, 35.83333333], - "demonym": "Lebanese", - "area": 10452.0, - "gini": null, - "timezones": ["UTC+02:00"], - "borders": ["ISR", "SYR"], - "nativeName": "لبنان", - "numericCode": "422", - "currencies": [ - { "code": "LBP", "name": "Lebanese pound", "symbol": "ل.ل" } - ], - "languages": [ - { - "iso639_1": "ar", - "iso639_2": "ara", - "name": "Arabic", - "nativeName": "العربية" - }, - { - "iso639_1": "fr", - "iso639_2": "fra", - "name": "French", - "nativeName": "français" - } - ], - "translations": { - "de": "Libanon", - "es": "Líbano", - "fr": "Liban", - "ja": "レバノン", - "it": "Libano", - "br": "Líbano", - "pt": "Líbano", - "nl": "Libanon", - "hr": "Libanon", - "fa": "لبنان" - }, - "flag": "https://restcountries.eu/data/lbn.svg", - "regionalBlocs": [ - { - "acronym": "AL", - "name": "Arab League", - "otherAcronyms": [], - "otherNames": [ - "جامعة الدول العربية", - "Jāmiʻat ad-Duwal al-ʻArabīyah", - "League of Arab States" - ] - } - ], - "cioc": "LIB" - }, - { - "name": "Lesotho", - "topLevelDomain": [".ls"], - "alpha2Code": "LS", - "alpha3Code": "LSO", - "callingCodes": ["266"], - "capital": "Maseru", - "altSpellings": ["LS", "Kingdom of Lesotho", "Muso oa Lesotho"], - "region": "Africa", - "subregion": "Southern Africa", - "population": 1894194, - "latlng": [-29.5, 28.5], - "demonym": "Mosotho", - "area": 30355.0, - "gini": 52.5, - "timezones": ["UTC+02:00"], - "borders": ["ZAF"], - "nativeName": "Lesotho", - "numericCode": "426", - "currencies": [ - { "code": "LSL", "name": "Lesotho loti", "symbol": "L" }, - { "code": "ZAR", "name": "South African rand", "symbol": "R" } - ], - "languages": [ - { - "iso639_1": "en", - "iso639_2": "eng", - "name": "English", - "nativeName": "English" - }, - { - "iso639_1": "st", - "iso639_2": "sot", - "name": "Southern Sotho", - "nativeName": "Sesotho" - } - ], - "translations": { - "de": "Lesotho", - "es": "Lesotho", - "fr": "Lesotho", - "ja": "レソト", - "it": "Lesotho", - "br": "Lesoto", - "pt": "Lesoto", - "nl": "Lesotho", - "hr": "Lesoto", - "fa": "لسوتو" - }, - "flag": "https://restcountries.eu/data/lso.svg", - "regionalBlocs": [ - { - "acronym": "AU", - "name": "African Union", - "otherAcronyms": [], - "otherNames": [ - "الاتحاد الأفريقي", - "Union africaine", - "União Africana", - "Unión Africana", - "Umoja wa Afrika" - ] - } - ], - "cioc": "LES" - }, - { - "name": "Liberia", - "topLevelDomain": [".lr"], - "alpha2Code": "LR", - "alpha3Code": "LBR", - "callingCodes": ["231"], - "capital": "Monrovia", - "altSpellings": ["LR", "Republic of Liberia"], - "region": "Africa", - "subregion": "Western Africa", - "population": 4615000, - "latlng": [6.5, -9.5], - "demonym": "Liberian", - "area": 111369.0, - "gini": 38.2, - "timezones": ["UTC"], - "borders": ["GIN", "CIV", "SLE"], - "nativeName": "Liberia", - "numericCode": "430", - "currencies": [{ "code": "LRD", "name": "Liberian dollar", "symbol": "$" }], - "languages": [ - { - "iso639_1": "en", - "iso639_2": "eng", - "name": "English", - "nativeName": "English" - } - ], - "translations": { - "de": "Liberia", - "es": "Liberia", - "fr": "Liberia", - "ja": "リベリア", - "it": "Liberia", - "br": "Libéria", - "pt": "Libéria", - "nl": "Liberia", - "hr": "Liberija", - "fa": "لیبریا" - }, - "flag": "https://restcountries.eu/data/lbr.svg", - "regionalBlocs": [ - { - "acronym": "AU", - "name": "African Union", - "otherAcronyms": [], - "otherNames": [ - "الاتحاد الأفريقي", - "Union africaine", - "União Africana", - "Unión Africana", - "Umoja wa Afrika" - ] - } - ], - "cioc": "LBR" - }, - { - "name": "Libya", - "topLevelDomain": [".ly"], - "alpha2Code": "LY", - "alpha3Code": "LBY", - "callingCodes": ["218"], - "capital": "Tripoli", - "altSpellings": ["LY", "State of Libya", "Dawlat Libya"], - "region": "Africa", - "subregion": "Northern Africa", - "population": 6385000, - "latlng": [25.0, 17.0], - "demonym": "Libyan", - "area": 1759540.0, - "gini": null, - "timezones": ["UTC+01:00"], - "borders": ["DZA", "TCD", "EGY", "NER", "SDN", "TUN"], - "nativeName": "‏ليبيا", - "numericCode": "434", - "currencies": [{ "code": "LYD", "name": "Libyan dinar", "symbol": "ل.د" }], - "languages": [ - { - "iso639_1": "ar", - "iso639_2": "ara", - "name": "Arabic", - "nativeName": "العربية" - } - ], - "translations": { - "de": "Libyen", - "es": "Libia", - "fr": "Libye", - "ja": "リビア", - "it": "Libia", - "br": "Líbia", - "pt": "Líbia", - "nl": "Libië", - "hr": "Libija", - "fa": "لیبی" - }, - "flag": "https://restcountries.eu/data/lby.svg", - "regionalBlocs": [ - { - "acronym": "AU", - "name": "African Union", - "otherAcronyms": [], - "otherNames": [ - "الاتحاد الأفريقي", - "Union africaine", - "União Africana", - "Unión Africana", - "Umoja wa Afrika" - ] - }, - { - "acronym": "AL", - "name": "Arab League", - "otherAcronyms": [], - "otherNames": [ - "جامعة الدول العربية", - "Jāmiʻat ad-Duwal al-ʻArabīyah", - "League of Arab States" - ] - } - ], - "cioc": "LBA" - }, - { - "name": "Liechtenstein", - "topLevelDomain": [".li"], - "alpha2Code": "LI", - "alpha3Code": "LIE", - "callingCodes": ["423"], - "capital": "Vaduz", - "altSpellings": [ - "LI", - "Principality of Liechtenstein", - "Fürstentum Liechtenstein" - ], - "region": "Europe", - "subregion": "Western Europe", - "population": 37623, - "latlng": [47.26666666, 9.53333333], - "demonym": "Liechtensteiner", - "area": 160.0, - "gini": null, - "timezones": ["UTC+01:00"], - "borders": ["AUT", "CHE"], - "nativeName": "Liechtenstein", - "numericCode": "438", - "currencies": [{ "code": "CHF", "name": "Swiss franc", "symbol": "Fr" }], - "languages": [ - { - "iso639_1": "de", - "iso639_2": "deu", - "name": "German", - "nativeName": "Deutsch" - } - ], - "translations": { - "de": "Liechtenstein", - "es": "Liechtenstein", - "fr": "Liechtenstein", - "ja": "リヒテンシュタイン", - "it": "Liechtenstein", - "br": "Liechtenstein", - "pt": "Listenstaine", - "nl": "Liechtenstein", - "hr": "Lihtenštajn", - "fa": "لیختن‌اشتاین" - }, - "flag": "https://restcountries.eu/data/lie.svg", - "regionalBlocs": [ - { - "acronym": "EFTA", - "name": "European Free Trade Association", - "otherAcronyms": [], - "otherNames": [] - } - ], - "cioc": "LIE" - }, - { - "name": "Lithuania", - "topLevelDomain": [".lt"], - "alpha2Code": "LT", - "alpha3Code": "LTU", - "callingCodes": ["370"], - "capital": "Vilnius", - "altSpellings": ["LT", "Republic of Lithuania", "Lietuvos Respublika"], - "region": "Europe", - "subregion": "Northern Europe", - "population": 2872294, - "latlng": [56.0, 24.0], - "demonym": "Lithuanian", - "area": 65300.0, - "gini": 37.6, - "timezones": ["UTC+02:00"], - "borders": ["BLR", "LVA", "POL", "RUS"], - "nativeName": "Lietuva", - "numericCode": "440", - "currencies": [{ "code": "EUR", "name": "Euro", "symbol": "€" }], - "languages": [ - { - "iso639_1": "lt", - "iso639_2": "lit", - "name": "Lithuanian", - "nativeName": "lietuvių kalba" - } - ], - "translations": { - "de": "Litauen", - "es": "Lituania", - "fr": "Lituanie", - "ja": "リトアニア", - "it": "Lituania", - "br": "Lituânia", - "pt": "Lituânia", - "nl": "Litouwen", - "hr": "Litva", - "fa": "لیتوانی" - }, - "flag": "https://restcountries.eu/data/ltu.svg", - "regionalBlocs": [ - { - "acronym": "EU", - "name": "European Union", - "otherAcronyms": [], - "otherNames": [] - } - ], - "cioc": "LTU" - }, - { - "name": "Luxembourg", - "topLevelDomain": [".lu"], - "alpha2Code": "LU", - "alpha3Code": "LUX", - "callingCodes": ["352"], - "capital": "Luxembourg", - "altSpellings": [ - "LU", - "Grand Duchy of Luxembourg", - "Grand-Duché de Luxembourg", - "Großherzogtum Luxemburg", - "Groussherzogtum Lëtzebuerg" - ], - "region": "Europe", - "subregion": "Western Europe", - "population": 576200, - "latlng": [49.75, 6.16666666], - "demonym": "Luxembourger", - "area": 2586.0, - "gini": 30.8, - "timezones": ["UTC+01:00"], - "borders": ["BEL", "FRA", "DEU"], - "nativeName": "Luxembourg", - "numericCode": "442", - "currencies": [{ "code": "EUR", "name": "Euro", "symbol": "€" }], - "languages": [ - { - "iso639_1": "fr", - "iso639_2": "fra", - "name": "French", - "nativeName": "français" - }, - { - "iso639_1": "de", - "iso639_2": "deu", - "name": "German", - "nativeName": "Deutsch" - }, - { - "iso639_1": "lb", - "iso639_2": "ltz", - "name": "Luxembourgish", - "nativeName": "Lëtzebuergesch" - } - ], - "translations": { - "de": "Luxemburg", - "es": "Luxemburgo", - "fr": "Luxembourg", - "ja": "ルクセンブルク", - "it": "Lussemburgo", - "br": "Luxemburgo", - "pt": "Luxemburgo", - "nl": "Luxemburg", - "hr": "Luksemburg", - "fa": "لوکزامبورگ" - }, - "flag": "https://restcountries.eu/data/lux.svg", - "regionalBlocs": [ - { - "acronym": "EU", - "name": "European Union", - "otherAcronyms": [], - "otherNames": [] - } - ], - "cioc": "LUX" - }, - { - "name": "Macao", - "topLevelDomain": [".mo"], - "alpha2Code": "MO", - "alpha3Code": "MAC", - "callingCodes": ["853"], - "capital": "", - "altSpellings": [ - "MO", - "澳门", - "Macao Special Administrative Region of the People's Republic of China", - "中華人民共和國澳門特別行政區", - "Região Administrativa Especial de Macau da República Popular da China" - ], - "region": "Asia", - "subregion": "Eastern Asia", - "population": 649100, - "latlng": [22.16666666, 113.55], - "demonym": "Chinese", - "area": 30.0, - "gini": null, - "timezones": ["UTC+08:00"], - "borders": ["CHN"], - "nativeName": "澳門", - "numericCode": "446", - "currencies": [{ "code": "MOP", "name": "Macanese pataca", "symbol": "P" }], - "languages": [ - { - "iso639_1": "zh", - "iso639_2": "zho", - "name": "Chinese", - "nativeName": "中文 (Zhōngwén)" - }, - { - "iso639_1": "pt", - "iso639_2": "por", - "name": "Portuguese", - "nativeName": "Português" - } - ], - "translations": { - "de": "Macao", - "es": "Macao", - "fr": "Macao", - "ja": "マカオ", - "it": "Macao", - "br": "Macau", - "pt": "Macau", - "nl": "Macao", - "hr": "Makao", - "fa": "مکائو" - }, - "flag": "https://restcountries.eu/data/mac.svg", - "regionalBlocs": [], - "cioc": "" - }, - { - "name": "Macedonia (the former Yugoslav Republic of)", - "topLevelDomain": [".mk"], - "alpha2Code": "MK", - "alpha3Code": "MKD", - "callingCodes": ["389"], - "capital": "Skopje", - "altSpellings": ["MK", "Republic of Macedonia", "Република Македонија"], - "region": "Europe", - "subregion": "Southern Europe", - "population": 2058539, - "latlng": [41.83333333, 22.0], - "demonym": "Macedonian", - "area": 25713.0, - "gini": 43.2, - "timezones": ["UTC+01:00"], - "borders": ["ALB", "BGR", "GRC", "KOS", "SRB"], - "nativeName": "Македонија", - "numericCode": "807", - "currencies": [ - { "code": "MKD", "name": "Macedonian denar", "symbol": "ден" } - ], - "languages": [ - { - "iso639_1": "mk", - "iso639_2": "mkd", - "name": "Macedonian", - "nativeName": "македонски јазик" - } - ], - "translations": { - "de": "Mazedonien", - "es": "Macedonia", - "fr": "Macédoine", - "ja": "マケドニア旧ユーゴスラビア共和国", - "it": "Macedonia", - "br": "Macedônia", - "pt": "Macedónia", - "nl": "Macedonië", - "hr": "Makedonija", - "fa": "" - }, - "flag": "https://restcountries.eu/data/mkd.svg", - "regionalBlocs": [ - { - "acronym": "CEFTA", - "name": "Central European Free Trade Agreement", - "otherAcronyms": [], - "otherNames": [] - } - ], - "cioc": "MKD" - }, - { - "name": "Madagascar", - "topLevelDomain": [".mg"], - "alpha2Code": "MG", - "alpha3Code": "MDG", - "callingCodes": ["261"], - "capital": "Antananarivo", - "altSpellings": [ - "MG", - "Republic of Madagascar", - "Repoblikan'i Madagasikara", - "République de Madagascar" - ], - "region": "Africa", - "subregion": "Eastern Africa", - "population": 22434363, - "latlng": [-20.0, 47.0], - "demonym": "Malagasy", - "area": 587041.0, - "gini": 44.1, - "timezones": ["UTC+03:00"], - "borders": [], - "nativeName": "Madagasikara", - "numericCode": "450", - "currencies": [ - { "code": "MGA", "name": "Malagasy ariary", "symbol": "Ar" } - ], - "languages": [ - { - "iso639_1": "fr", - "iso639_2": "fra", - "name": "French", - "nativeName": "français" - }, - { - "iso639_1": "mg", - "iso639_2": "mlg", - "name": "Malagasy", - "nativeName": "fiteny malagasy" - } - ], - "translations": { - "de": "Madagaskar", - "es": "Madagascar", - "fr": "Madagascar", - "ja": "マダガスカル", - "it": "Madagascar", - "br": "Madagascar", - "pt": "Madagáscar", - "nl": "Madagaskar", - "hr": "Madagaskar", - "fa": "ماداگاسکار" - }, - "flag": "https://restcountries.eu/data/mdg.svg", - "regionalBlocs": [ - { - "acronym": "AU", - "name": "African Union", - "otherAcronyms": [], - "otherNames": [ - "الاتحاد الأفريقي", - "Union africaine", - "União Africana", - "Unión Africana", - "Umoja wa Afrika" - ] - } - ], - "cioc": "MAD" - }, - { - "name": "Malawi", - "topLevelDomain": [".mw"], - "alpha2Code": "MW", - "alpha3Code": "MWI", - "callingCodes": ["265"], - "capital": "Lilongwe", - "altSpellings": ["MW", "Republic of Malawi"], - "region": "Africa", - "subregion": "Eastern Africa", - "population": 16832910, - "latlng": [-13.5, 34.0], - "demonym": "Malawian", - "area": 118484.0, - "gini": 39.0, - "timezones": ["UTC+02:00"], - "borders": ["MOZ", "TZA", "ZMB"], - "nativeName": "Malawi", - "numericCode": "454", - "currencies": [ - { "code": "MWK", "name": "Malawian kwacha", "symbol": "MK" } - ], - "languages": [ - { - "iso639_1": "en", - "iso639_2": "eng", - "name": "English", - "nativeName": "English" - }, - { - "iso639_1": "ny", - "iso639_2": "nya", - "name": "Chichewa", - "nativeName": "chiCheŵa" - } - ], - "translations": { - "de": "Malawi", - "es": "Malawi", - "fr": "Malawi", - "ja": "マラウイ", - "it": "Malawi", - "br": "Malawi", - "pt": "Malávi", - "nl": "Malawi", - "hr": "Malavi", - "fa": "مالاوی" - }, - "flag": "https://restcountries.eu/data/mwi.svg", - "regionalBlocs": [ - { - "acronym": "AU", - "name": "African Union", - "otherAcronyms": [], - "otherNames": [ - "الاتحاد الأفريقي", - "Union africaine", - "União Africana", - "Unión Africana", - "Umoja wa Afrika" - ] - } - ], - "cioc": "MAW" - }, - { - "name": "Malaysia", - "topLevelDomain": [".my"], - "alpha2Code": "MY", - "alpha3Code": "MYS", - "callingCodes": ["60"], - "capital": "Kuala Lumpur", - "altSpellings": ["MY"], - "region": "Asia", - "subregion": "South-Eastern Asia", - "population": 31405416, - "latlng": [2.5, 112.5], - "demonym": "Malaysian", - "area": 330803.0, - "gini": 46.2, - "timezones": ["UTC+08:00"], - "borders": ["BRN", "IDN", "THA"], - "nativeName": "Malaysia", - "numericCode": "458", - "currencies": [ - { "code": "MYR", "name": "Malaysian ringgit", "symbol": "RM" } - ], - "languages": [ - { - "iso639_1": null, - "iso639_2": "zsm", - "name": "Malaysian", - "nativeName": "بهاس مليسيا" - } - ], - "translations": { - "de": "Malaysia", - "es": "Malasia", - "fr": "Malaisie", - "ja": "マレーシア", - "it": "Malesia", - "br": "Malásia", - "pt": "Malásia", - "nl": "Maleisië", - "hr": "Malezija", - "fa": "مالزی" - }, - "flag": "https://restcountries.eu/data/mys.svg", - "regionalBlocs": [ - { - "acronym": "ASEAN", - "name": "Association of Southeast Asian Nations", - "otherAcronyms": [], - "otherNames": [] - } - ], - "cioc": "MAS" - }, - { - "name": "Maldives", - "topLevelDomain": [".mv"], - "alpha2Code": "MV", - "alpha3Code": "MDV", - "callingCodes": ["960"], - "capital": "Malé", - "altSpellings": [ - "MV", - "Maldive Islands", - "Republic of the Maldives", - "Dhivehi Raajjeyge Jumhooriyya" - ], - "region": "Asia", - "subregion": "Southern Asia", - "population": 344023, - "latlng": [3.25, 73.0], - "demonym": "Maldivan", - "area": 300.0, - "gini": 37.4, - "timezones": ["UTC+05:00"], - "borders": [], - "nativeName": "Maldives", - "numericCode": "462", - "currencies": [ - { "code": "MVR", "name": "Maldivian rufiyaa", "symbol": ".ރ" } - ], - "languages": [ - { - "iso639_1": "dv", - "iso639_2": "div", - "name": "Divehi", - "nativeName": "ދިވެހި" - } - ], - "translations": { - "de": "Malediven", - "es": "Maldivas", - "fr": "Maldives", - "ja": "モルディブ", - "it": "Maldive", - "br": "Maldivas", - "pt": "Maldivas", - "nl": "Maldiven", - "hr": "Maldivi", - "fa": "مالدیو" - }, - "flag": "https://restcountries.eu/data/mdv.svg", - "regionalBlocs": [ - { - "acronym": "SAARC", - "name": "South Asian Association for Regional Cooperation", - "otherAcronyms": [], - "otherNames": [] - } - ], - "cioc": "MDV" - }, - { - "name": "Mali", - "topLevelDomain": [".ml"], - "alpha2Code": "ML", - "alpha3Code": "MLI", - "callingCodes": ["223"], - "capital": "Bamako", - "altSpellings": ["ML", "Republic of Mali", "République du Mali"], - "region": "Africa", - "subregion": "Western Africa", - "population": 18135000, - "latlng": [17.0, -4.0], - "demonym": "Malian", - "area": 1240192.0, - "gini": 33.0, - "timezones": ["UTC"], - "borders": ["DZA", "BFA", "GIN", "CIV", "MRT", "NER", "SEN"], - "nativeName": "Mali", - "numericCode": "466", - "currencies": [ - { "code": "XOF", "name": "West African CFA franc", "symbol": "Fr" } - ], - "languages": [ - { - "iso639_1": "fr", - "iso639_2": "fra", - "name": "French", - "nativeName": "français" - } - ], - "translations": { - "de": "Mali", - "es": "Mali", - "fr": "Mali", - "ja": "マリ", - "it": "Mali", - "br": "Mali", - "pt": "Mali", - "nl": "Mali", - "hr": "Mali", - "fa": "مالی" - }, - "flag": "https://restcountries.eu/data/mli.svg", - "regionalBlocs": [ - { - "acronym": "AU", - "name": "African Union", - "otherAcronyms": [], - "otherNames": [ - "الاتحاد الأفريقي", - "Union africaine", - "União Africana", - "Unión Africana", - "Umoja wa Afrika" - ] - } - ], - "cioc": "MLI" - }, - { - "name": "Malta", - "topLevelDomain": [".mt"], - "alpha2Code": "MT", - "alpha3Code": "MLT", - "callingCodes": ["356"], - "capital": "Valletta", - "altSpellings": ["MT", "Republic of Malta", "Repubblika ta' Malta"], - "region": "Europe", - "subregion": "Southern Europe", - "population": 425384, - "latlng": [35.83333333, 14.58333333], - "demonym": "Maltese", - "area": 316.0, - "gini": null, - "timezones": ["UTC+01:00"], - "borders": [], - "nativeName": "Malta", - "numericCode": "470", - "currencies": [{ "code": "EUR", "name": "Euro", "symbol": "€" }], - "languages": [ - { - "iso639_1": "mt", - "iso639_2": "mlt", - "name": "Maltese", - "nativeName": "Malti" - }, - { - "iso639_1": "en", - "iso639_2": "eng", - "name": "English", - "nativeName": "English" - } - ], - "translations": { - "de": "Malta", - "es": "Malta", - "fr": "Malte", - "ja": "マルタ", - "it": "Malta", - "br": "Malta", - "pt": "Malta", - "nl": "Malta", - "hr": "Malta", - "fa": "مالت" - }, - "flag": "https://restcountries.eu/data/mlt.svg", - "regionalBlocs": [ - { - "acronym": "EU", - "name": "European Union", - "otherAcronyms": [], - "otherNames": [] - } - ], - "cioc": "MLT" - }, - { - "name": "Marshall Islands", - "topLevelDomain": [".mh"], - "alpha2Code": "MH", - "alpha3Code": "MHL", - "callingCodes": ["692"], - "capital": "Majuro", - "altSpellings": [ - "MH", - "Republic of the Marshall Islands", - "Aolepān Aorōkin M̧ajeļ" - ], - "region": "Oceania", - "subregion": "Micronesia", - "population": 54880, - "latlng": [9.0, 168.0], - "demonym": "Marshallese", - "area": 181.0, - "gini": null, - "timezones": ["UTC+12:00"], - "borders": [], - "nativeName": "M̧ajeļ", - "numericCode": "584", - "currencies": [ - { "code": "USD", "name": "United States dollar", "symbol": "$" } - ], - "languages": [ - { - "iso639_1": "en", - "iso639_2": "eng", - "name": "English", - "nativeName": "English" - }, - { - "iso639_1": "mh", - "iso639_2": "mah", - "name": "Marshallese", - "nativeName": "Kajin M̧ajeļ" - } - ], - "translations": { - "de": "Marshallinseln", - "es": "Islas Marshall", - "fr": "Îles Marshall", - "ja": "マーシャル諸島", - "it": "Isole Marshall", - "br": "Ilhas Marshall", - "pt": "Ilhas Marshall", - "nl": "Marshalleilanden", - "hr": "Maršalovi Otoci", - "fa": "جزایر مارشال" - }, - "flag": "https://restcountries.eu/data/mhl.svg", - "regionalBlocs": [], - "cioc": "MHL" - }, - { - "name": "Martinique", - "topLevelDomain": [".mq"], - "alpha2Code": "MQ", - "alpha3Code": "MTQ", - "callingCodes": ["596"], - "capital": "Fort-de-France", - "altSpellings": ["MQ"], - "region": "Americas", - "subregion": "Caribbean", - "population": 378243, - "latlng": [14.666667, -61.0], - "demonym": "French", - "area": null, - "gini": null, - "timezones": ["UTC-04:00"], - "borders": [], - "nativeName": "Martinique", - "numericCode": "474", - "currencies": [{ "code": "EUR", "name": "Euro", "symbol": "€" }], - "languages": [ - { - "iso639_1": "fr", - "iso639_2": "fra", - "name": "French", - "nativeName": "français" - } - ], - "translations": { - "de": "Martinique", - "es": "Martinica", - "fr": "Martinique", - "ja": "マルティニーク", - "it": "Martinica", - "br": "Martinica", - "pt": "Martinica", - "nl": "Martinique", - "hr": "Martinique", - "fa": "مونتسرات" - }, - "flag": "https://restcountries.eu/data/mtq.svg", - "regionalBlocs": [], - "cioc": "" - }, - { - "name": "Mauritania", - "topLevelDomain": [".mr"], - "alpha2Code": "MR", - "alpha3Code": "MRT", - "callingCodes": ["222"], - "capital": "Nouakchott", - "altSpellings": [ - "MR", - "Islamic Republic of Mauritania", - "al-Jumhūriyyah al-ʾIslāmiyyah al-Mūrītāniyyah" - ], - "region": "Africa", - "subregion": "Western Africa", - "population": 3718678, - "latlng": [20.0, -12.0], - "demonym": "Mauritanian", - "area": 1030700.0, - "gini": 40.5, - "timezones": ["UTC"], - "borders": ["DZA", "MLI", "SEN", "ESH"], - "nativeName": "موريتانيا", - "numericCode": "478", - "currencies": [ - { "code": "MRO", "name": "Mauritanian ouguiya", "symbol": "UM" } - ], - "languages": [ - { - "iso639_1": "ar", - "iso639_2": "ara", - "name": "Arabic", - "nativeName": "العربية" - } - ], - "translations": { - "de": "Mauretanien", - "es": "Mauritania", - "fr": "Mauritanie", - "ja": "モーリタニア", - "it": "Mauritania", - "br": "Mauritânia", - "pt": "Mauritânia", - "nl": "Mauritanië", - "hr": "Mauritanija", - "fa": "موریتانی" - }, - "flag": "https://restcountries.eu/data/mrt.svg", - "regionalBlocs": [ - { - "acronym": "AU", - "name": "African Union", - "otherAcronyms": [], - "otherNames": [ - "الاتحاد الأفريقي", - "Union africaine", - "União Africana", - "Unión Africana", - "Umoja wa Afrika" - ] - }, - { - "acronym": "AL", - "name": "Arab League", - "otherAcronyms": [], - "otherNames": [ - "جامعة الدول العربية", - "Jāmiʻat ad-Duwal al-ʻArabīyah", - "League of Arab States" - ] - } - ], - "cioc": "MTN" - }, - { - "name": "Mauritius", - "topLevelDomain": [".mu"], - "alpha2Code": "MU", - "alpha3Code": "MUS", - "callingCodes": ["230"], - "capital": "Port Louis", - "altSpellings": ["MU", "Republic of Mauritius", "République de Maurice"], - "region": "Africa", - "subregion": "Eastern Africa", - "population": 1262879, - "latlng": [-20.28333333, 57.55], - "demonym": "Mauritian", - "area": 2040.0, - "gini": null, - "timezones": ["UTC+04:00"], - "borders": [], - "nativeName": "Maurice", - "numericCode": "480", - "currencies": [{ "code": "MUR", "name": "Mauritian rupee", "symbol": "₨" }], - "languages": [ - { - "iso639_1": "en", - "iso639_2": "eng", - "name": "English", - "nativeName": "English" - } - ], - "translations": { - "de": "Mauritius", - "es": "Mauricio", - "fr": "Île Maurice", - "ja": "モーリシャス", - "it": "Mauritius", - "br": "Maurício", - "pt": "Maurícia", - "nl": "Mauritius", - "hr": "Mauricijus", - "fa": "موریس" - }, - "flag": "https://restcountries.eu/data/mus.svg", - "regionalBlocs": [ - { - "acronym": "AU", - "name": "African Union", - "otherAcronyms": [], - "otherNames": [ - "الاتحاد الأفريقي", - "Union africaine", - "União Africana", - "Unión Africana", - "Umoja wa Afrika" - ] - } - ], - "cioc": "MRI" - }, - { - "name": "Mayotte", - "topLevelDomain": [".yt"], - "alpha2Code": "YT", - "alpha3Code": "MYT", - "callingCodes": ["262"], - "capital": "Mamoudzou", - "altSpellings": ["YT", "Department of Mayotte", "Département de Mayotte"], - "region": "Africa", - "subregion": "Eastern Africa", - "population": 226915, - "latlng": [-12.83333333, 45.16666666], - "demonym": "French", - "area": null, - "gini": null, - "timezones": ["UTC+03:00"], - "borders": [], - "nativeName": "Mayotte", - "numericCode": "175", - "currencies": [{ "code": "EUR", "name": "Euro", "symbol": "€" }], - "languages": [ - { - "iso639_1": "fr", - "iso639_2": "fra", - "name": "French", - "nativeName": "français" - } - ], - "translations": { - "de": "Mayotte", - "es": "Mayotte", - "fr": "Mayotte", - "ja": "マヨット", - "it": "Mayotte", - "br": "Mayotte", - "pt": "Mayotte", - "nl": "Mayotte", - "hr": "Mayotte", - "fa": "مایوت" - }, - "flag": "https://restcountries.eu/data/myt.svg", - "regionalBlocs": [ - { - "acronym": "AU", - "name": "African Union", - "otherAcronyms": [], - "otherNames": [ - "الاتحاد الأفريقي", - "Union africaine", - "União Africana", - "Unión Africana", - "Umoja wa Afrika" - ] - } - ], - "cioc": "" - }, - { - "name": "Mexico", - "topLevelDomain": [".mx"], - "alpha2Code": "MX", - "alpha3Code": "MEX", - "callingCodes": ["52"], - "capital": "Mexico City", - "altSpellings": [ - "MX", - "Mexicanos", - "United Mexican States", - "Estados Unidos Mexicanos" - ], - "region": "Americas", - "subregion": "Central America", - "population": 122273473, - "latlng": [23.0, -102.0], - "demonym": "Mexican", - "area": 1964375.0, - "gini": 47.0, - "timezones": ["UTC-08:00", "UTC-07:00", "UTC-06:00"], - "borders": ["BLZ", "GTM", "USA"], - "nativeName": "México", - "numericCode": "484", - "currencies": [{ "code": "MXN", "name": "Mexican peso", "symbol": "$" }], - "languages": [ - { - "iso639_1": "es", - "iso639_2": "spa", - "name": "Spanish", - "nativeName": "Español" - } - ], - "translations": { - "de": "Mexiko", - "es": "México", - "fr": "Mexique", - "ja": "メキシコ", - "it": "Messico", - "br": "México", - "pt": "México", - "nl": "Mexico", - "hr": "Meksiko", - "fa": "مکزیک" - }, - "flag": "https://restcountries.eu/data/mex.svg", - "regionalBlocs": [ - { - "acronym": "PA", - "name": "Pacific Alliance", - "otherAcronyms": [], - "otherNames": ["Alianza del Pacífico"] - }, - { - "acronym": "NAFTA", - "name": "North American Free Trade Agreement", - "otherAcronyms": [], - "otherNames": [ - "Tratado de Libre Comercio de América del Norte", - "Accord de Libre-échange Nord-Américain" - ] - } - ], - "cioc": "MEX" - }, - { - "name": "Micronesia (Federated States of)", - "topLevelDomain": [".fm"], - "alpha2Code": "FM", - "alpha3Code": "FSM", - "callingCodes": ["691"], - "capital": "Palikir", - "altSpellings": ["FM", "Federated States of Micronesia"], - "region": "Oceania", - "subregion": "Micronesia", - "population": 102800, - "latlng": [6.91666666, 158.25], - "demonym": "Micronesian", - "area": 702.0, - "gini": null, - "timezones": ["UTC+10:00", "UTC+11"], - "borders": [], - "nativeName": "Micronesia", - "numericCode": "583", - "currencies": [ - { "code": null, "name": "[D]", "symbol": "$" }, - { "code": "USD", "name": "United States dollar", "symbol": "$" } - ], - "languages": [ - { - "iso639_1": "en", - "iso639_2": "eng", - "name": "English", - "nativeName": "English" - } - ], - "translations": { - "de": "Mikronesien", - "es": "Micronesia", - "fr": "Micronésie", - "ja": "ミクロネシア連邦", - "it": "Micronesia", - "br": "Micronésia", - "pt": "Micronésia", - "nl": "Micronesië", - "hr": "Mikronezija", - "fa": "ایالات فدرال میکرونزی" - }, - "flag": "https://restcountries.eu/data/fsm.svg", - "regionalBlocs": [], - "cioc": "FSM" - }, - { - "name": "Moldova (Republic of)", - "topLevelDomain": [".md"], - "alpha2Code": "MD", - "alpha3Code": "MDA", - "callingCodes": ["373"], - "capital": "Chișinău", - "altSpellings": ["MD", "Republic of Moldova", "Republica Moldova"], - "region": "Europe", - "subregion": "Eastern Europe", - "population": 3553100, - "latlng": [47.0, 29.0], - "demonym": "Moldovan", - "area": 33846.0, - "gini": 33.0, - "timezones": ["UTC+02:00"], - "borders": ["ROU", "UKR"], - "nativeName": "Moldova", - "numericCode": "498", - "currencies": [{ "code": "MDL", "name": "Moldovan leu", "symbol": "L" }], - "languages": [ - { - "iso639_1": "ro", - "iso639_2": "ron", - "name": "Romanian", - "nativeName": "Română" - } - ], - "translations": { - "de": "Moldawie", - "es": "Moldavia", - "fr": "Moldavie", - "ja": "モルドバ共和国", - "it": "Moldavia", - "br": "Moldávia", - "pt": "Moldávia", - "nl": "Moldavië", - "hr": "Moldova", - "fa": "مولداوی" - }, - "flag": "https://restcountries.eu/data/mda.svg", - "regionalBlocs": [ - { - "acronym": "CEFTA", - "name": "Central European Free Trade Agreement", - "otherAcronyms": [], - "otherNames": [] - } - ], - "cioc": "MDA" - }, - { - "name": "Monaco", - "topLevelDomain": [".mc"], - "alpha2Code": "MC", - "alpha3Code": "MCO", - "callingCodes": ["377"], - "capital": "Monaco", - "altSpellings": ["MC", "Principality of Monaco", "Principauté de Monaco"], - "region": "Europe", - "subregion": "Western Europe", - "population": 38400, - "latlng": [43.73333333, 7.4], - "demonym": "Monegasque", - "area": 2.02, - "gini": null, - "timezones": ["UTC+01:00"], - "borders": ["FRA"], - "nativeName": "Monaco", - "numericCode": "492", - "currencies": [{ "code": "EUR", "name": "Euro", "symbol": "€" }], - "languages": [ - { - "iso639_1": "fr", - "iso639_2": "fra", - "name": "French", - "nativeName": "français" - } - ], - "translations": { - "de": "Monaco", - "es": "Mónaco", - "fr": "Monaco", - "ja": "モナコ", - "it": "Principato di Monaco", - "br": "Mônaco", - "pt": "Mónaco", - "nl": "Monaco", - "hr": "Monako", - "fa": "موناکو" - }, - "flag": "https://restcountries.eu/data/mco.svg", - "regionalBlocs": [], - "cioc": "MON" - }, - { - "name": "Mongolia", - "topLevelDomain": [".mn"], - "alpha2Code": "MN", - "alpha3Code": "MNG", - "callingCodes": ["976"], - "capital": "Ulan Bator", - "altSpellings": ["MN"], - "region": "Asia", - "subregion": "Eastern Asia", - "population": 3093100, - "latlng": [46.0, 105.0], - "demonym": "Mongolian", - "area": 1564110.0, - "gini": 36.5, - "timezones": ["UTC+07:00", "UTC+08:00"], - "borders": ["CHN", "RUS"], - "nativeName": "Монгол улс", - "numericCode": "496", - "currencies": [ - { "code": "MNT", "name": "Mongolian tögrög", "symbol": "₮" } - ], - "languages": [ - { - "iso639_1": "mn", - "iso639_2": "mon", - "name": "Mongolian", - "nativeName": "Монгол хэл" - } - ], - "translations": { - "de": "Mongolei", - "es": "Mongolia", - "fr": "Mongolie", - "ja": "モンゴル", - "it": "Mongolia", - "br": "Mongólia", - "pt": "Mongólia", - "nl": "Mongolië", - "hr": "Mongolija", - "fa": "مغولستان" - }, - "flag": "https://restcountries.eu/data/mng.svg", - "regionalBlocs": [], - "cioc": "MGL" - }, - { - "name": "Montenegro", - "topLevelDomain": [".me"], - "alpha2Code": "ME", - "alpha3Code": "MNE", - "callingCodes": ["382"], - "capital": "Podgorica", - "altSpellings": ["ME", "Crna Gora"], - "region": "Europe", - "subregion": "Southern Europe", - "population": 621810, - "latlng": [42.5, 19.3], - "demonym": "Montenegrin", - "area": 13812.0, - "gini": 30.0, - "timezones": ["UTC+01:00"], - "borders": ["ALB", "BIH", "HRV", "KOS", "SRB"], - "nativeName": "Црна Гора", - "numericCode": "499", - "currencies": [{ "code": "EUR", "name": "Euro", "symbol": "€" }], - "languages": [ - { - "iso639_1": "sr", - "iso639_2": "srp", - "name": "Serbian", - "nativeName": "српски језик" - }, - { - "iso639_1": "bs", - "iso639_2": "bos", - "name": "Bosnian", - "nativeName": "bosanski jezik" - }, - { - "iso639_1": "sq", - "iso639_2": "sqi", - "name": "Albanian", - "nativeName": "Shqip" - }, - { - "iso639_1": "hr", - "iso639_2": "hrv", - "name": "Croatian", - "nativeName": "hrvatski jezik" - } - ], - "translations": { - "de": "Montenegro", - "es": "Montenegro", - "fr": "Monténégro", - "ja": "モンテネグロ", - "it": "Montenegro", - "br": "Montenegro", - "pt": "Montenegro", - "nl": "Montenegro", - "hr": "Crna Gora", - "fa": "مونته‌نگرو" - }, - "flag": "https://restcountries.eu/data/mne.svg", - "regionalBlocs": [ - { - "acronym": "CEFTA", - "name": "Central European Free Trade Agreement", - "otherAcronyms": [], - "otherNames": [] - } - ], - "cioc": "MNE" - }, - { - "name": "Montserrat", - "topLevelDomain": [".ms"], - "alpha2Code": "MS", - "alpha3Code": "MSR", - "callingCodes": ["1664"], - "capital": "Plymouth", - "altSpellings": ["MS"], - "region": "Americas", - "subregion": "Caribbean", - "population": 4922, - "latlng": [16.75, -62.2], - "demonym": "Montserratian", - "area": 102.0, - "gini": null, - "timezones": ["UTC-04:00"], - "borders": [], - "nativeName": "Montserrat", - "numericCode": "500", - "currencies": [ - { "code": "XCD", "name": "East Caribbean dollar", "symbol": "$" } - ], - "languages": [ - { - "iso639_1": "en", - "iso639_2": "eng", - "name": "English", - "nativeName": "English" - } - ], - "translations": { - "de": "Montserrat", - "es": "Montserrat", - "fr": "Montserrat", - "ja": "モントセラト", - "it": "Montserrat", - "br": "Montserrat", - "pt": "Monserrate", - "nl": "Montserrat", - "hr": "Montserrat", - "fa": "مایوت" - }, - "flag": "https://restcountries.eu/data/msr.svg", - "regionalBlocs": [ - { - "acronym": "CARICOM", - "name": "Caribbean Community", - "otherAcronyms": [], - "otherNames": [ - "Comunidad del Caribe", - "Communauté Caribéenne", - "Caribische Gemeenschap" - ] - } - ], - "cioc": "" - }, - { - "name": "Morocco", - "topLevelDomain": [".ma"], - "alpha2Code": "MA", - "alpha3Code": "MAR", - "callingCodes": ["212"], - "capital": "Rabat", - "altSpellings": ["MA", "Kingdom of Morocco", "Al-Mamlakah al-Maġribiyah"], - "region": "Africa", - "subregion": "Northern Africa", - "population": 33337529, - "latlng": [32.0, -5.0], - "demonym": "Moroccan", - "area": 446550.0, - "gini": 40.9, - "timezones": ["UTC"], - "borders": ["DZA", "ESH", "ESP"], - "nativeName": "المغرب", - "numericCode": "504", - "currencies": [ - { "code": "MAD", "name": "Moroccan dirham", "symbol": "د.م." } - ], - "languages": [ - { - "iso639_1": "ar", - "iso639_2": "ara", - "name": "Arabic", - "nativeName": "العربية" - } - ], - "translations": { - "de": "Marokko", - "es": "Marruecos", - "fr": "Maroc", - "ja": "モロッコ", - "it": "Marocco", - "br": "Marrocos", - "pt": "Marrocos", - "nl": "Marokko", - "hr": "Maroko", - "fa": "مراکش" - }, - "flag": "https://restcountries.eu/data/mar.svg", - "regionalBlocs": [ - { - "acronym": "AU", - "name": "African Union", - "otherAcronyms": [], - "otherNames": [ - "الاتحاد الأفريقي", - "Union africaine", - "União Africana", - "Unión Africana", - "Umoja wa Afrika" - ] - }, - { - "acronym": "AL", - "name": "Arab League", - "otherAcronyms": [], - "otherNames": [ - "جامعة الدول العربية", - "Jāmiʻat ad-Duwal al-ʻArabīyah", - "League of Arab States" - ] - } - ], - "cioc": "MAR" - }, - { - "name": "Mozambique", - "topLevelDomain": [".mz"], - "alpha2Code": "MZ", - "alpha3Code": "MOZ", - "callingCodes": ["258"], - "capital": "Maputo", - "altSpellings": ["MZ", "Republic of Mozambique", "República de Moçambique"], - "region": "Africa", - "subregion": "Eastern Africa", - "population": 26423700, - "latlng": [-18.25, 35.0], - "demonym": "Mozambican", - "area": 801590.0, - "gini": 45.7, - "timezones": ["UTC+02:00"], - "borders": ["MWI", "ZAF", "SWZ", "TZA", "ZMB", "ZWE"], - "nativeName": "Moçambique", - "numericCode": "508", - "currencies": [ - { "code": "MZN", "name": "Mozambican metical", "symbol": "MT" } - ], - "languages": [ - { - "iso639_1": "pt", - "iso639_2": "por", - "name": "Portuguese", - "nativeName": "Português" - } - ], - "translations": { - "de": "Mosambik", - "es": "Mozambique", - "fr": "Mozambique", - "ja": "モザンビーク", - "it": "Mozambico", - "br": "Moçambique", - "pt": "Moçambique", - "nl": "Mozambique", - "hr": "Mozambik", - "fa": "موزامبیک" - }, - "flag": "https://restcountries.eu/data/moz.svg", - "regionalBlocs": [ - { - "acronym": "AU", - "name": "African Union", - "otherAcronyms": [], - "otherNames": [ - "الاتحاد الأفريقي", - "Union africaine", - "União Africana", - "Unión Africana", - "Umoja wa Afrika" - ] - } - ], - "cioc": "MOZ" - }, - { - "name": "Myanmar", - "topLevelDomain": [".mm"], - "alpha2Code": "MM", - "alpha3Code": "MMR", - "callingCodes": ["95"], - "capital": "Naypyidaw", - "altSpellings": [ - "MM", - "Burma", - "Republic of the Union of Myanmar", - "Pyidaunzu Thanmăda Myăma Nainngandaw" - ], - "region": "Asia", - "subregion": "South-Eastern Asia", - "population": 51419420, - "latlng": [22.0, 98.0], - "demonym": "Burmese", - "area": 676578.0, - "gini": null, - "timezones": ["UTC+06:30"], - "borders": ["BGD", "CHN", "IND", "LAO", "THA"], - "nativeName": "Myanma", - "numericCode": "104", - "currencies": [{ "code": "MMK", "name": "Burmese kyat", "symbol": "Ks" }], - "languages": [ - { - "iso639_1": "my", - "iso639_2": "mya", - "name": "Burmese", - "nativeName": "ဗမာစာ" - } - ], - "translations": { - "de": "Myanmar", - "es": "Myanmar", - "fr": "Myanmar", - "ja": "ミャンマー", - "it": "Birmania", - "br": "Myanmar", - "pt": "Myanmar", - "nl": "Myanmar", - "hr": "Mijanmar", - "fa": "میانمار" - }, - "flag": "https://restcountries.eu/data/mmr.svg", - "regionalBlocs": [ - { - "acronym": "ASEAN", - "name": "Association of Southeast Asian Nations", - "otherAcronyms": [], - "otherNames": [] - } - ], - "cioc": "MYA" - }, - { - "name": "Namibia", - "topLevelDomain": [".na"], - "alpha2Code": "NA", - "alpha3Code": "NAM", - "callingCodes": ["264"], - "capital": "Windhoek", - "altSpellings": ["NA", "Namibië", "Republic of Namibia"], - "region": "Africa", - "subregion": "Southern Africa", - "population": 2324388, - "latlng": [-22.0, 17.0], - "demonym": "Namibian", - "area": 825615.0, - "gini": 63.9, - "timezones": ["UTC+01:00"], - "borders": ["AGO", "BWA", "ZAF", "ZMB"], - "nativeName": "Namibia", - "numericCode": "516", - "currencies": [ - { "code": "NAD", "name": "Namibian dollar", "symbol": "$" }, - { "code": "ZAR", "name": "South African rand", "symbol": "R" } - ], - "languages": [ - { - "iso639_1": "en", - "iso639_2": "eng", - "name": "English", - "nativeName": "English" - }, - { - "iso639_1": "af", - "iso639_2": "afr", - "name": "Afrikaans", - "nativeName": "Afrikaans" - } - ], - "translations": { - "de": "Namibia", - "es": "Namibia", - "fr": "Namibie", - "ja": "ナミビア", - "it": "Namibia", - "br": "Namíbia", - "pt": "Namíbia", - "nl": "Namibië", - "hr": "Namibija", - "fa": "نامیبیا" - }, - "flag": "https://restcountries.eu/data/nam.svg", - "regionalBlocs": [ - { - "acronym": "AU", - "name": "African Union", - "otherAcronyms": [], - "otherNames": [ - "الاتحاد الأفريقي", - "Union africaine", - "União Africana", - "Unión Africana", - "Umoja wa Afrika" - ] - } - ], - "cioc": "NAM" - }, - { - "name": "Nauru", - "topLevelDomain": [".nr"], - "alpha2Code": "NR", - "alpha3Code": "NRU", - "callingCodes": ["674"], - "capital": "Yaren", - "altSpellings": [ - "NR", - "Naoero", - "Pleasant Island", - "Republic of Nauru", - "Ripublik Naoero" - ], - "region": "Oceania", - "subregion": "Micronesia", - "population": 10084, - "latlng": [-0.53333333, 166.91666666], - "demonym": "Nauruan", - "area": 21.0, - "gini": null, - "timezones": ["UTC+12:00"], - "borders": [], - "nativeName": "Nauru", - "numericCode": "520", - "currencies": [ - { "code": "AUD", "name": "Australian dollar", "symbol": "$" }, - { "code": "(none)", "name": null, "symbol": "$" } - ], - "languages": [ - { - "iso639_1": "en", - "iso639_2": "eng", - "name": "English", - "nativeName": "English" - }, - { - "iso639_1": "na", - "iso639_2": "nau", - "name": "Nauruan", - "nativeName": "Dorerin Naoero" - } - ], - "translations": { - "de": "Nauru", - "es": "Nauru", - "fr": "Nauru", - "ja": "ナウル", - "it": "Nauru", - "br": "Nauru", - "pt": "Nauru", - "nl": "Nauru", - "hr": "Nauru", - "fa": "نائورو" - }, - "flag": "https://restcountries.eu/data/nru.svg", - "regionalBlocs": [], - "cioc": "NRU" - }, - { - "name": "Nepal", - "topLevelDomain": [".np"], - "alpha2Code": "NP", - "alpha3Code": "NPL", - "callingCodes": ["977"], - "capital": "Kathmandu", - "altSpellings": [ - "NP", - "Federal Democratic Republic of Nepal", - "Loktāntrik Ganatantra Nepāl" - ], - "region": "Asia", - "subregion": "Southern Asia", - "population": 28431500, - "latlng": [28.0, 84.0], - "demonym": "Nepalese", - "area": 147181.0, - "gini": 32.8, - "timezones": ["UTC+05:45"], - "borders": ["CHN", "IND"], - "nativeName": "नेपाल", - "numericCode": "524", - "currencies": [{ "code": "NPR", "name": "Nepalese rupee", "symbol": "₨" }], - "languages": [ - { - "iso639_1": "ne", - "iso639_2": "nep", - "name": "Nepali", - "nativeName": "नेपाली" - } - ], - "translations": { - "de": "Népal", - "es": "Nepal", - "fr": "Népal", - "ja": "ネパール", - "it": "Nepal", - "br": "Nepal", - "pt": "Nepal", - "nl": "Nepal", - "hr": "Nepal", - "fa": "نپال" - }, - "flag": "https://restcountries.eu/data/npl.svg", - "regionalBlocs": [ - { - "acronym": "SAARC", - "name": "South Asian Association for Regional Cooperation", - "otherAcronyms": [], - "otherNames": [] - } - ], - "cioc": "NEP" - }, - { - "name": "Netherlands", - "topLevelDomain": [".nl"], - "alpha2Code": "NL", - "alpha3Code": "NLD", - "callingCodes": ["31"], - "capital": "Amsterdam", - "altSpellings": ["NL", "Holland", "Nederland"], - "region": "Europe", - "subregion": "Western Europe", - "population": 17019800, - "latlng": [52.5, 5.75], - "demonym": "Dutch", - "area": 41850.0, - "gini": 30.9, - "timezones": ["UTC-04:00", "UTC+01:00"], - "borders": ["BEL", "DEU"], - "nativeName": "Nederland", - "numericCode": "528", - "currencies": [{ "code": "EUR", "name": "Euro", "symbol": "€" }], - "languages": [ - { - "iso639_1": "nl", - "iso639_2": "nld", - "name": "Dutch", - "nativeName": "Nederlands" - } - ], - "translations": { - "de": "Niederlande", - "es": "Países Bajos", - "fr": "Pays-Bas", - "ja": "オランダ", - "it": "Paesi Bassi", - "br": "Holanda", - "pt": "Países Baixos", - "nl": "Nederland", - "hr": "Nizozemska", - "fa": "پادشاهی هلند" - }, - "flag": "https://restcountries.eu/data/nld.svg", - "regionalBlocs": [ - { - "acronym": "EU", - "name": "European Union", - "otherAcronyms": [], - "otherNames": [] - } - ], - "cioc": "NED" - }, - { - "name": "New Caledonia", - "topLevelDomain": [".nc"], - "alpha2Code": "NC", - "alpha3Code": "NCL", - "callingCodes": ["687"], - "capital": "Nouméa", - "altSpellings": ["NC"], - "region": "Oceania", - "subregion": "Melanesia", - "population": 268767, - "latlng": [-21.5, 165.5], - "demonym": "New Caledonian", - "area": 18575.0, - "gini": null, - "timezones": ["UTC+11:00"], - "borders": [], - "nativeName": "Nouvelle-Calédonie", - "numericCode": "540", - "currencies": [{ "code": "XPF", "name": "CFP franc", "symbol": "Fr" }], - "languages": [ - { - "iso639_1": "fr", - "iso639_2": "fra", - "name": "French", - "nativeName": "français" - } - ], - "translations": { - "de": "Neukaledonien", - "es": "Nueva Caledonia", - "fr": "Nouvelle-Calédonie", - "ja": "ニューカレドニア", - "it": "Nuova Caledonia", - "br": "Nova Caledônia", - "pt": "Nova Caledónia", - "nl": "Nieuw-Caledonië", - "hr": "Nova Kaledonija", - "fa": "کالدونیای جدید" - }, - "flag": "https://restcountries.eu/data/ncl.svg", - "regionalBlocs": [], - "cioc": "" - }, - { - "name": "New Zealand", - "topLevelDomain": [".nz"], - "alpha2Code": "NZ", - "alpha3Code": "NZL", - "callingCodes": ["64"], - "capital": "Wellington", - "altSpellings": ["NZ", "Aotearoa"], - "region": "Oceania", - "subregion": "Australia and New Zealand", - "population": 4697854, - "latlng": [-41.0, 174.0], - "demonym": "New Zealander", - "area": 270467.0, - "gini": 36.2, - "timezones": [ - "UTC-11:00", - "UTC-10:00", - "UTC+12:00", - "UTC+12:45", - "UTC+13:00" - ], - "borders": [], - "nativeName": "New Zealand", - "numericCode": "554", - "currencies": [ - { "code": "NZD", "name": "New Zealand dollar", "symbol": "$" } - ], - "languages": [ - { - "iso639_1": "en", - "iso639_2": "eng", - "name": "English", - "nativeName": "English" - }, - { - "iso639_1": "mi", - "iso639_2": "mri", - "name": "Māori", - "nativeName": "te reo Māori" - } - ], - "translations": { - "de": "Neuseeland", - "es": "Nueva Zelanda", - "fr": "Nouvelle-Zélande", - "ja": "ニュージーランド", - "it": "Nuova Zelanda", - "br": "Nova Zelândia", - "pt": "Nova Zelândia", - "nl": "Nieuw-Zeeland", - "hr": "Novi Zeland", - "fa": "نیوزیلند" - }, - "flag": "https://restcountries.eu/data/nzl.svg", - "regionalBlocs": [], - "cioc": "NZL" - }, - { - "name": "Nicaragua", - "topLevelDomain": [".ni"], - "alpha2Code": "NI", - "alpha3Code": "NIC", - "callingCodes": ["505"], - "capital": "Managua", - "altSpellings": ["NI", "Republic of Nicaragua", "República de Nicaragua"], - "region": "Americas", - "subregion": "Central America", - "population": 6262703, - "latlng": [13.0, -85.0], - "demonym": "Nicaraguan", - "area": 130373.0, - "gini": 40.5, - "timezones": ["UTC-06:00"], - "borders": ["CRI", "HND"], - "nativeName": "Nicaragua", - "numericCode": "558", - "currencies": [ - { "code": "NIO", "name": "Nicaraguan córdoba", "symbol": "C$" } - ], - "languages": [ - { - "iso639_1": "es", - "iso639_2": "spa", - "name": "Spanish", - "nativeName": "Español" - } - ], - "translations": { - "de": "Nicaragua", - "es": "Nicaragua", - "fr": "Nicaragua", - "ja": "ニカラグア", - "it": "Nicaragua", - "br": "Nicarágua", - "pt": "Nicarágua", - "nl": "Nicaragua", - "hr": "Nikaragva", - "fa": "نیکاراگوئه" - }, - "flag": "https://restcountries.eu/data/nic.svg", - "regionalBlocs": [ - { - "acronym": "CAIS", - "name": "Central American Integration System", - "otherAcronyms": ["SICA"], - "otherNames": ["Sistema de la Integración Centroamericana,"] - } - ], - "cioc": "NCA" - }, - { - "name": "Niger", - "topLevelDomain": [".ne"], - "alpha2Code": "NE", - "alpha3Code": "NER", - "callingCodes": ["227"], - "capital": "Niamey", - "altSpellings": ["NE", "Nijar", "Republic of Niger", "République du Niger"], - "region": "Africa", - "subregion": "Western Africa", - "population": 20715000, - "latlng": [16.0, 8.0], - "demonym": "Nigerien", - "area": 1267000.0, - "gini": 34.6, - "timezones": ["UTC+01:00"], - "borders": ["DZA", "BEN", "BFA", "TCD", "LBY", "MLI", "NGA"], - "nativeName": "Niger", - "numericCode": "562", - "currencies": [ - { "code": "XOF", "name": "West African CFA franc", "symbol": "Fr" } - ], - "languages": [ - { - "iso639_1": "fr", - "iso639_2": "fra", - "name": "French", - "nativeName": "français" - } - ], - "translations": { - "de": "Niger", - "es": "Níger", - "fr": "Niger", - "ja": "ニジェール", - "it": "Niger", - "br": "Níger", - "pt": "Níger", - "nl": "Niger", - "hr": "Niger", - "fa": "نیجر" - }, - "flag": "https://restcountries.eu/data/ner.svg", - "regionalBlocs": [ - { - "acronym": "AU", - "name": "African Union", - "otherAcronyms": [], - "otherNames": [ - "الاتحاد الأفريقي", - "Union africaine", - "União Africana", - "Unión Africana", - "Umoja wa Afrika" - ] - } - ], - "cioc": "NIG" - }, - { - "name": "Nigeria", - "topLevelDomain": [".ng"], - "alpha2Code": "NG", - "alpha3Code": "NGA", - "callingCodes": ["234"], - "capital": "Abuja", - "altSpellings": [ - "NG", - "Nijeriya", - "Naíjíríà", - "Federal Republic of Nigeria" - ], - "region": "Africa", - "subregion": "Western Africa", - "population": 186988000, - "latlng": [10.0, 8.0], - "demonym": "Nigerian", - "area": 923768.0, - "gini": 48.8, - "timezones": ["UTC+01:00"], - "borders": ["BEN", "CMR", "TCD", "NER"], - "nativeName": "Nigeria", - "numericCode": "566", - "currencies": [{ "code": "NGN", "name": "Nigerian naira", "symbol": "₦" }], - "languages": [ - { - "iso639_1": "en", - "iso639_2": "eng", - "name": "English", - "nativeName": "English" - } - ], - "translations": { - "de": "Nigeria", - "es": "Nigeria", - "fr": "Nigéria", - "ja": "ナイジェリア", - "it": "Nigeria", - "br": "Nigéria", - "pt": "Nigéria", - "nl": "Nigeria", - "hr": "Nigerija", - "fa": "نیجریه" - }, - "flag": "https://restcountries.eu/data/nga.svg", - "regionalBlocs": [ - { - "acronym": "AU", - "name": "African Union", - "otherAcronyms": [], - "otherNames": [ - "الاتحاد الأفريقي", - "Union africaine", - "União Africana", - "Unión Africana", - "Umoja wa Afrika" - ] - } - ], - "cioc": "NGR" - }, - { - "name": "Niue", - "topLevelDomain": [".nu"], - "alpha2Code": "NU", - "alpha3Code": "NIU", - "callingCodes": ["683"], - "capital": "Alofi", - "altSpellings": ["NU"], - "region": "Oceania", - "subregion": "Polynesia", - "population": 1470, - "latlng": [-19.03333333, -169.86666666], - "demonym": "Niuean", - "area": 260.0, - "gini": null, - "timezones": ["UTC-11:00"], - "borders": [], - "nativeName": "Niuē", - "numericCode": "570", - "currencies": [ - { "code": "NZD", "name": "New Zealand dollar", "symbol": "$" }, - { "code": "(none)", "name": "Niue dollar", "symbol": "$" } - ], - "languages": [ - { - "iso639_1": "en", - "iso639_2": "eng", - "name": "English", - "nativeName": "English" - } - ], - "translations": { - "de": "Niue", - "es": "Niue", - "fr": "Niue", - "ja": "ニウエ", - "it": "Niue", - "br": "Niue", - "pt": "Niue", - "nl": "Niue", - "hr": "Niue", - "fa": "نیووی" - }, - "flag": "https://restcountries.eu/data/niu.svg", - "regionalBlocs": [], - "cioc": "" - }, - { - "name": "Norfolk Island", - "topLevelDomain": [".nf"], - "alpha2Code": "NF", - "alpha3Code": "NFK", - "callingCodes": ["672"], - "capital": "Kingston", - "altSpellings": [ - "NF", - "Territory of Norfolk Island", - "Teratri of Norf'k Ailen" - ], - "region": "Oceania", - "subregion": "Australia and New Zealand", - "population": 2302, - "latlng": [-29.03333333, 167.95], - "demonym": "Norfolk Islander", - "area": 36.0, - "gini": null, - "timezones": ["UTC+11:30"], - "borders": [], - "nativeName": "Norfolk Island", - "numericCode": "574", - "currencies": [ - { "code": "AUD", "name": "Australian dollar", "symbol": "$" } - ], - "languages": [ - { - "iso639_1": "en", - "iso639_2": "eng", - "name": "English", - "nativeName": "English" - } - ], - "translations": { - "de": "Norfolkinsel", - "es": "Isla de Norfolk", - "fr": "Île de Norfolk", - "ja": "ノーフォーク島", - "it": "Isola Norfolk", - "br": "Ilha Norfolk", - "pt": "Ilha Norfolk", - "nl": "Norfolkeiland", - "hr": "Otok Norfolk", - "fa": "جزیره نورفک" - }, - "flag": "https://restcountries.eu/data/nfk.svg", - "regionalBlocs": [], - "cioc": "" - }, - { - "name": "Korea (Democratic People's Republic of)", - "topLevelDomain": [".kp"], - "alpha2Code": "KP", - "alpha3Code": "PRK", - "callingCodes": ["850"], - "capital": "Pyongyang", - "altSpellings": [ - "KP", - "Democratic People's Republic of Korea", - "조선민주주의인민공화국", - "Chosŏn Minjujuŭi Inmin Konghwaguk" - ], - "region": "Asia", - "subregion": "Eastern Asia", - "population": 25281000, - "latlng": [40.0, 127.0], - "demonym": "North Korean", - "area": 120538.0, - "gini": null, - "timezones": ["UTC+09:00"], - "borders": ["CHN", "KOR", "RUS"], - "nativeName": "북한", - "numericCode": "408", - "currencies": [ - { "code": "KPW", "name": "North Korean won", "symbol": "₩" } - ], - "languages": [ - { - "iso639_1": "ko", - "iso639_2": "kor", - "name": "Korean", - "nativeName": "한국어" - } - ], - "translations": { - "de": "Nordkorea", - "es": "Corea del Norte", - "fr": "Corée du Nord", - "ja": "朝鮮民主主義人民共和国", - "it": "Corea del Nord", - "br": "Coreia do Norte", - "pt": "Coreia do Norte", - "nl": "Noord-Korea", - "hr": "Sjeverna Koreja", - "fa": "کره جنوبی" - }, - "flag": "https://restcountries.eu/data/prk.svg", - "regionalBlocs": [], - "cioc": "PRK" - }, - { - "name": "Northern Mariana Islands", - "topLevelDomain": [".mp"], - "alpha2Code": "MP", - "alpha3Code": "MNP", - "callingCodes": ["1670"], - "capital": "Saipan", - "altSpellings": [ - "MP", - "Commonwealth of the Northern Mariana Islands", - "Sankattan Siha Na Islas Mariånas" - ], - "region": "Oceania", - "subregion": "Micronesia", - "population": 56940, - "latlng": [15.2, 145.75], - "demonym": "American", - "area": 464.0, - "gini": null, - "timezones": ["UTC+10:00"], - "borders": [], - "nativeName": "Northern Mariana Islands", - "numericCode": "580", - "currencies": [ - { "code": "USD", "name": "United States dollar", "symbol": "$" } - ], - "languages": [ - { - "iso639_1": "en", - "iso639_2": "eng", - "name": "English", - "nativeName": "English" - }, - { - "iso639_1": "ch", - "iso639_2": "cha", - "name": "Chamorro", - "nativeName": "Chamoru" - } - ], - "translations": { - "de": "Nördliche Marianen", - "es": "Islas Marianas del Norte", - "fr": "Îles Mariannes du Nord", - "ja": "北マリアナ諸島", - "it": "Isole Marianne Settentrionali", - "br": "Ilhas Marianas", - "pt": "Ilhas Marianas", - "nl": "Noordelijke Marianeneilanden", - "hr": "Sjevernomarijanski otoci", - "fa": "جزایر ماریانای شمالی" - }, - "flag": "https://restcountries.eu/data/mnp.svg", - "regionalBlocs": [], - "cioc": "" - }, - { - "name": "Norway", - "topLevelDomain": [".no"], - "alpha2Code": "NO", - "alpha3Code": "NOR", - "callingCodes": ["47"], - "capital": "Oslo", - "altSpellings": [ - "NO", - "Norge", - "Noreg", - "Kingdom of Norway", - "Kongeriket Norge", - "Kongeriket Noreg" - ], - "region": "Europe", - "subregion": "Northern Europe", - "population": 5223256, - "latlng": [62.0, 10.0], - "demonym": "Norwegian", - "area": 323802.0, - "gini": 25.8, - "timezones": ["UTC+01:00"], - "borders": ["FIN", "SWE", "RUS"], - "nativeName": "Norge", - "numericCode": "578", - "currencies": [ - { "code": "NOK", "name": "Norwegian krone", "symbol": "kr" } - ], - "languages": [ - { - "iso639_1": "no", - "iso639_2": "nor", - "name": "Norwegian", - "nativeName": "Norsk" - }, - { - "iso639_1": "nb", - "iso639_2": "nob", - "name": "Norwegian Bokmål", - "nativeName": "Norsk bokmål" - }, - { - "iso639_1": "nn", - "iso639_2": "nno", - "name": "Norwegian Nynorsk", - "nativeName": "Norsk nynorsk" - } - ], - "translations": { - "de": "Norwegen", - "es": "Noruega", - "fr": "Norvège", - "ja": "ノルウェー", - "it": "Norvegia", - "br": "Noruega", - "pt": "Noruega", - "nl": "Noorwegen", - "hr": "Norveška", - "fa": "نروژ" - }, - "flag": "https://restcountries.eu/data/nor.svg", - "regionalBlocs": [ - { - "acronym": "EFTA", - "name": "European Free Trade Association", - "otherAcronyms": [], - "otherNames": [] - } - ], - "cioc": "NOR" - }, - { - "name": "Oman", - "topLevelDomain": [".om"], - "alpha2Code": "OM", - "alpha3Code": "OMN", - "callingCodes": ["968"], - "capital": "Muscat", - "altSpellings": ["OM", "Sultanate of Oman", "Salṭanat ʻUmān"], - "region": "Asia", - "subregion": "Western Asia", - "population": 4420133, - "latlng": [21.0, 57.0], - "demonym": "Omani", - "area": 309500.0, - "gini": null, - "timezones": ["UTC+04:00"], - "borders": ["SAU", "ARE", "YEM"], - "nativeName": "عمان", - "numericCode": "512", - "currencies": [{ "code": "OMR", "name": "Omani rial", "symbol": "ر.ع." }], - "languages": [ - { - "iso639_1": "ar", - "iso639_2": "ara", - "name": "Arabic", - "nativeName": "العربية" - } - ], - "translations": { - "de": "Oman", - "es": "Omán", - "fr": "Oman", - "ja": "オマーン", - "it": "oman", - "br": "Omã", - "pt": "Omã", - "nl": "Oman", - "hr": "Oman", - "fa": "عمان" - }, - "flag": "https://restcountries.eu/data/omn.svg", - "regionalBlocs": [ - { - "acronym": "AL", - "name": "Arab League", - "otherAcronyms": [], - "otherNames": [ - "جامعة الدول العربية", - "Jāmiʻat ad-Duwal al-ʻArabīyah", - "League of Arab States" - ] - } - ], - "cioc": "OMA" - }, - { - "name": "Pakistan", - "topLevelDomain": [".pk"], - "alpha2Code": "PK", - "alpha3Code": "PAK", - "callingCodes": ["92"], - "capital": "Islamabad", - "altSpellings": [ - "PK", - "Pākistān", - "Islamic Republic of Pakistan", - "Islāmī Jumhūriya'eh Pākistān" - ], - "region": "Asia", - "subregion": "Southern Asia", - "population": 194125062, - "latlng": [30.0, 70.0], - "demonym": "Pakistani", - "area": 881912.0, - "gini": 30.0, - "timezones": ["UTC+05:00"], - "borders": ["AFG", "CHN", "IND", "IRN"], - "nativeName": "Pakistan", - "numericCode": "586", - "currencies": [{ "code": "PKR", "name": "Pakistani rupee", "symbol": "₨" }], - "languages": [ - { - "iso639_1": "en", - "iso639_2": "eng", - "name": "English", - "nativeName": "English" - }, - { - "iso639_1": "ur", - "iso639_2": "urd", - "name": "Urdu", - "nativeName": "اردو" - } - ], - "translations": { - "de": "Pakistan", - "es": "Pakistán", - "fr": "Pakistan", - "ja": "パキスタン", - "it": "Pakistan", - "br": "Paquistão", - "pt": "Paquistão", - "nl": "Pakistan", - "hr": "Pakistan", - "fa": "پاکستان" - }, - "flag": "https://restcountries.eu/data/pak.svg", - "regionalBlocs": [ - { - "acronym": "SAARC", - "name": "South Asian Association for Regional Cooperation", - "otherAcronyms": [], - "otherNames": [] - } - ], - "cioc": "PAK" - }, - { - "name": "Palau", - "topLevelDomain": [".pw"], - "alpha2Code": "PW", - "alpha3Code": "PLW", - "callingCodes": ["680"], - "capital": "Ngerulmud", - "altSpellings": ["PW", "Republic of Palau", "Beluu er a Belau"], - "region": "Oceania", - "subregion": "Micronesia", - "population": 17950, - "latlng": [7.5, 134.5], - "demonym": "Palauan", - "area": 459.0, - "gini": null, - "timezones": ["UTC+09:00"], - "borders": [], - "nativeName": "Palau", - "numericCode": "585", - "currencies": [ - { "code": "(none)", "name": "[E]", "symbol": "$" }, - { "code": "USD", "name": "United States dollar", "symbol": "$" } - ], - "languages": [ - { - "iso639_1": "en", - "iso639_2": "eng", - "name": "English", - "nativeName": "English" - } - ], - "translations": { - "de": "Palau", - "es": "Palau", - "fr": "Palaos", - "ja": "パラオ", - "it": "Palau", - "br": "Palau", - "pt": "Palau", - "nl": "Palau", - "hr": "Palau", - "fa": "پالائو" - }, - "flag": "https://restcountries.eu/data/plw.svg", - "regionalBlocs": [], - "cioc": "PLW" - }, - { - "name": "Palestine, State of", - "topLevelDomain": [".ps"], - "alpha2Code": "PS", - "alpha3Code": "PSE", - "callingCodes": ["970"], - "capital": "Ramallah", - "altSpellings": ["PS", "State of Palestine", "Dawlat Filasṭin"], - "region": "Asia", - "subregion": "Western Asia", - "population": 4682467, - "latlng": [31.9, 35.2], - "demonym": "Palestinian", - "area": null, - "gini": 35.5, - "timezones": ["UTC+02:00"], - "borders": ["ISR", "EGY", "JOR"], - "nativeName": "فلسطين", - "numericCode": "275", - "currencies": [ - { "code": "ILS", "name": "Israeli new sheqel", "symbol": "₪" } - ], - "languages": [ - { - "iso639_1": "ar", - "iso639_2": "ara", - "name": "Arabic", - "nativeName": "العربية" - } - ], - "translations": { - "de": "Palästina", - "es": "Palestina", - "fr": "Palestine", - "ja": "パレスチナ", - "it": "Palestina", - "br": "Palestina", - "pt": "Palestina", - "nl": "Palestijnse gebieden", - "hr": "Palestina", - "fa": "فلسطین" - }, - "flag": "https://restcountries.eu/data/pse.svg", - "regionalBlocs": [ - { - "acronym": "AL", - "name": "Arab League", - "otherAcronyms": [], - "otherNames": [ - "جامعة الدول العربية", - "Jāmiʻat ad-Duwal al-ʻArabīyah", - "League of Arab States" - ] - } - ], - "cioc": "PLE" - }, - { - "name": "Panama", - "topLevelDomain": [".pa"], - "alpha2Code": "PA", - "alpha3Code": "PAN", - "callingCodes": ["507"], - "capital": "Panama City", - "altSpellings": ["PA", "Republic of Panama", "República de Panamá"], - "region": "Americas", - "subregion": "Central America", - "population": 3814672, - "latlng": [9.0, -80.0], - "demonym": "Panamanian", - "area": 75417.0, - "gini": 51.9, - "timezones": ["UTC-05:00"], - "borders": ["COL", "CRI"], - "nativeName": "Panamá", - "numericCode": "591", - "currencies": [ - { "code": "PAB", "name": "Panamanian balboa", "symbol": "B/." }, - { "code": "USD", "name": "United States dollar", "symbol": "$" } - ], - "languages": [ - { - "iso639_1": "es", - "iso639_2": "spa", - "name": "Spanish", - "nativeName": "Español" - } - ], - "translations": { - "de": "Panama", - "es": "Panamá", - "fr": "Panama", - "ja": "パナマ", - "it": "Panama", - "br": "Panamá", - "pt": "Panamá", - "nl": "Panama", - "hr": "Panama", - "fa": "پاناما" - }, - "flag": "https://restcountries.eu/data/pan.svg", - "regionalBlocs": [ - { - "acronym": "CAIS", - "name": "Central American Integration System", - "otherAcronyms": ["SICA"], - "otherNames": ["Sistema de la Integración Centroamericana,"] - } - ], - "cioc": "PAN" - }, - { - "name": "Papua New Guinea", - "topLevelDomain": [".pg"], - "alpha2Code": "PG", - "alpha3Code": "PNG", - "callingCodes": ["675"], - "capital": "Port Moresby", - "altSpellings": [ - "PG", - "Independent State of Papua New Guinea", - "Independen Stet bilong Papua Niugini" - ], - "region": "Oceania", - "subregion": "Melanesia", - "population": 8083700, - "latlng": [-6.0, 147.0], - "demonym": "Papua New Guinean", - "area": 462840.0, - "gini": 50.9, - "timezones": ["UTC+10:00"], - "borders": ["IDN"], - "nativeName": "Papua Niugini", - "numericCode": "598", - "currencies": [ - { "code": "PGK", "name": "Papua New Guinean kina", "symbol": "K" } - ], - "languages": [ - { - "iso639_1": "en", - "iso639_2": "eng", - "name": "English", - "nativeName": "English" - } - ], - "translations": { - "de": "Papua-Neuguinea", - "es": "Papúa Nueva Guinea", - "fr": "Papouasie-Nouvelle-Guinée", - "ja": "パプアニューギニア", - "it": "Papua Nuova Guinea", - "br": "Papua Nova Guiné", - "pt": "Papua Nova Guiné", - "nl": "Papoea-Nieuw-Guinea", - "hr": "Papua Nova Gvineja", - "fa": "پاپوآ گینه نو" - }, - "flag": "https://restcountries.eu/data/png.svg", - "regionalBlocs": [], - "cioc": "PNG" - }, - { - "name": "Paraguay", - "topLevelDomain": [".py"], - "alpha2Code": "PY", - "alpha3Code": "PRY", - "callingCodes": ["595"], - "capital": "Asunción", - "altSpellings": [ - "PY", - "Republic of Paraguay", - "República del Paraguay", - "Tetã Paraguái" - ], - "region": "Americas", - "subregion": "South America", - "population": 6854536, - "latlng": [-23.0, -58.0], - "demonym": "Paraguayan", - "area": 406752.0, - "gini": 52.4, - "timezones": ["UTC-04:00"], - "borders": ["ARG", "BOL", "BRA"], - "nativeName": "Paraguay", - "numericCode": "600", - "currencies": [ - { "code": "PYG", "name": "Paraguayan guaraní", "symbol": "₲" } - ], - "languages": [ - { - "iso639_1": "es", - "iso639_2": "spa", - "name": "Spanish", - "nativeName": "Español" - }, - { - "iso639_1": "gn", - "iso639_2": "grn", - "name": "Guaraní", - "nativeName": "Avañe'ẽ" - } - ], - "translations": { - "de": "Paraguay", - "es": "Paraguay", - "fr": "Paraguay", - "ja": "パラグアイ", - "it": "Paraguay", - "br": "Paraguai", - "pt": "Paraguai", - "nl": "Paraguay", - "hr": "Paragvaj", - "fa": "پاراگوئه" - }, - "flag": "https://restcountries.eu/data/pry.svg", - "regionalBlocs": [ - { - "acronym": "USAN", - "name": "Union of South American Nations", - "otherAcronyms": ["UNASUR", "UNASUL", "UZAN"], - "otherNames": [ - "Unión de Naciones Suramericanas", - "União de Nações Sul-Americanas", - "Unie van Zuid-Amerikaanse Naties", - "South American Union" - ] - } - ], - "cioc": "PAR" - }, - { - "name": "Peru", - "topLevelDomain": [".pe"], - "alpha2Code": "PE", - "alpha3Code": "PER", - "callingCodes": ["51"], - "capital": "Lima", - "altSpellings": ["PE", "Republic of Peru", " República del Perú"], - "region": "Americas", - "subregion": "South America", - "population": 31488700, - "latlng": [-10.0, -76.0], - "demonym": "Peruvian", - "area": 1285216.0, - "gini": 48.1, - "timezones": ["UTC-05:00"], - "borders": ["BOL", "BRA", "CHL", "COL", "ECU"], - "nativeName": "Perú", - "numericCode": "604", - "currencies": [{ "code": "PEN", "name": "Peruvian sol", "symbol": "S/." }], - "languages": [ - { - "iso639_1": "es", - "iso639_2": "spa", - "name": "Spanish", - "nativeName": "Español" - } - ], - "translations": { - "de": "Peru", - "es": "Perú", - "fr": "Pérou", - "ja": "ペルー", - "it": "Perù", - "br": "Peru", - "pt": "Peru", - "nl": "Peru", - "hr": "Peru", - "fa": "پرو" - }, - "flag": "https://restcountries.eu/data/per.svg", - "regionalBlocs": [ - { - "acronym": "PA", - "name": "Pacific Alliance", - "otherAcronyms": [], - "otherNames": ["Alianza del Pacífico"] - }, - { - "acronym": "USAN", - "name": "Union of South American Nations", - "otherAcronyms": ["UNASUR", "UNASUL", "UZAN"], - "otherNames": [ - "Unión de Naciones Suramericanas", - "União de Nações Sul-Americanas", - "Unie van Zuid-Amerikaanse Naties", - "South American Union" - ] - } - ], - "cioc": "PER" - }, - { - "name": "Philippines", - "topLevelDomain": [".ph"], - "alpha2Code": "PH", - "alpha3Code": "PHL", - "callingCodes": ["63"], - "capital": "Manila", - "altSpellings": [ - "PH", - "Republic of the Philippines", - "Repúblika ng Pilipinas" - ], - "region": "Asia", - "subregion": "South-Eastern Asia", - "population": 103279800, - "latlng": [13.0, 122.0], - "demonym": "Filipino", - "area": 342353.0, - "gini": 43.0, - "timezones": ["UTC+08:00"], - "borders": [], - "nativeName": "Pilipinas", - "numericCode": "608", - "currencies": [{ "code": "PHP", "name": "Philippine peso", "symbol": "₱" }], - "languages": [ - { - "iso639_1": "en", - "iso639_2": "eng", - "name": "English", - "nativeName": "English" - } - ], - "translations": { - "de": "Philippinen", - "es": "Filipinas", - "fr": "Philippines", - "ja": "フィリピン", - "it": "Filippine", - "br": "Filipinas", - "pt": "Filipinas", - "nl": "Filipijnen", - "hr": "Filipini", - "fa": "جزایر الندفیلیپین" - }, - "flag": "https://restcountries.eu/data/phl.svg", - "regionalBlocs": [ - { - "acronym": "ASEAN", - "name": "Association of Southeast Asian Nations", - "otherAcronyms": [], - "otherNames": [] - } - ], - "cioc": "PHI" - }, - { - "name": "Pitcairn", - "topLevelDomain": [".pn"], - "alpha2Code": "PN", - "alpha3Code": "PCN", - "callingCodes": ["64"], - "capital": "Adamstown", - "altSpellings": ["PN", "Pitcairn Henderson Ducie and Oeno Islands"], - "region": "Oceania", - "subregion": "Polynesia", - "population": 56, - "latlng": [-25.06666666, -130.1], - "demonym": "Pitcairn Islander", - "area": 47.0, - "gini": null, - "timezones": ["UTC-08:00"], - "borders": [], - "nativeName": "Pitcairn Islands", - "numericCode": "612", - "currencies": [ - { "code": "NZD", "name": "New Zealand dollar", "symbol": "$" }, - { "code": null, "name": "Pitcairn Islands dollar", "symbol": "$" } - ], - "languages": [ - { - "iso639_1": "en", - "iso639_2": "eng", - "name": "English", - "nativeName": "English" - } - ], - "translations": { - "de": "Pitcairn", - "es": "Islas Pitcairn", - "fr": "Îles Pitcairn", - "ja": "ピトケアン", - "it": "Isole Pitcairn", - "br": "Ilhas Pitcairn", - "pt": "Ilhas Picárnia", - "nl": "Pitcairneilanden", - "hr": "Pitcairnovo otočje", - "fa": "پیتکرن" - }, - "flag": "https://restcountries.eu/data/pcn.svg", - "regionalBlocs": [], - "cioc": "" - }, - { - "name": "Poland", - "topLevelDomain": [".pl"], - "alpha2Code": "PL", - "alpha3Code": "POL", - "callingCodes": ["48"], - "capital": "Warsaw", - "altSpellings": ["PL", "Republic of Poland", "Rzeczpospolita Polska"], - "region": "Europe", - "subregion": "Eastern Europe", - "population": 38437239, - "latlng": [52.0, 20.0], - "demonym": "Polish", - "area": 312679.0, - "gini": 34.1, - "timezones": ["UTC+01:00"], - "borders": ["BLR", "CZE", "DEU", "LTU", "RUS", "SVK", "UKR"], - "nativeName": "Polska", - "numericCode": "616", - "currencies": [{ "code": "PLN", "name": "Polish złoty", "symbol": "zł" }], - "languages": [ - { - "iso639_1": "pl", - "iso639_2": "pol", - "name": "Polish", - "nativeName": "język polski" - } - ], - "translations": { - "de": "Polen", - "es": "Polonia", - "fr": "Pologne", - "ja": "ポーランド", - "it": "Polonia", - "br": "Polônia", - "pt": "Polónia", - "nl": "Polen", - "hr": "Poljska", - "fa": "لهستان" - }, - "flag": "https://restcountries.eu/data/pol.svg", - "regionalBlocs": [ - { - "acronym": "EU", - "name": "European Union", - "otherAcronyms": [], - "otherNames": [] - } - ], - "cioc": "POL" - }, - { - "name": "Portugal", - "topLevelDomain": [".pt"], - "alpha2Code": "PT", - "alpha3Code": "PRT", - "callingCodes": ["351"], - "capital": "Lisbon", - "altSpellings": [ - "PT", - "Portuguesa", - "Portuguese Republic", - "República Portuguesa" - ], - "region": "Europe", - "subregion": "Southern Europe", - "population": 10374822, - "latlng": [39.5, -8.0], - "demonym": "Portuguese", - "area": 92090.0, - "gini": 38.5, - "timezones": ["UTC-01:00", "UTC"], - "borders": ["ESP"], - "nativeName": "Portugal", - "numericCode": "620", - "currencies": [{ "code": "EUR", "name": "Euro", "symbol": "€" }], - "languages": [ - { - "iso639_1": "pt", - "iso639_2": "por", - "name": "Portuguese", - "nativeName": "Português" - } - ], - "translations": { - "de": "Portugal", - "es": "Portugal", - "fr": "Portugal", - "ja": "ポルトガル", - "it": "Portogallo", - "br": "Portugal", - "pt": "Portugal", - "nl": "Portugal", - "hr": "Portugal", - "fa": "پرتغال" - }, - "flag": "https://restcountries.eu/data/prt.svg", - "regionalBlocs": [ - { - "acronym": "EU", - "name": "European Union", - "otherAcronyms": [], - "otherNames": [] - } - ], - "cioc": "POR" - }, - { - "name": "Puerto Rico", - "topLevelDomain": [".pr"], - "alpha2Code": "PR", - "alpha3Code": "PRI", - "callingCodes": ["1787", "1939"], - "capital": "San Juan", - "altSpellings": [ - "PR", - "Commonwealth of Puerto Rico", - "Estado Libre Asociado de Puerto Rico" - ], - "region": "Americas", - "subregion": "Caribbean", - "population": 3474182, - "latlng": [18.25, -66.5], - "demonym": "Puerto Rican", - "area": 8870.0, - "gini": null, - "timezones": ["UTC-04:00"], - "borders": [], - "nativeName": "Puerto Rico", - "numericCode": "630", - "currencies": [ - { "code": "USD", "name": "United States dollar", "symbol": "$" } - ], - "languages": [ - { - "iso639_1": "es", - "iso639_2": "spa", - "name": "Spanish", - "nativeName": "Español" - }, - { - "iso639_1": "en", - "iso639_2": "eng", - "name": "English", - "nativeName": "English" - } - ], - "translations": { - "de": "Puerto Rico", - "es": "Puerto Rico", - "fr": "Porto Rico", - "ja": "プエルトリコ", - "it": "Porto Rico", - "br": "Porto Rico", - "pt": "Porto Rico", - "nl": "Puerto Rico", - "hr": "Portoriko", - "fa": "پورتو ریکو" - }, - "flag": "https://restcountries.eu/data/pri.svg", - "regionalBlocs": [], - "cioc": "PUR" - }, - { - "name": "Qatar", - "topLevelDomain": [".qa"], - "alpha2Code": "QA", - "alpha3Code": "QAT", - "callingCodes": ["974"], - "capital": "Doha", - "altSpellings": ["QA", "State of Qatar", "Dawlat Qaṭar"], - "region": "Asia", - "subregion": "Western Asia", - "population": 2587564, - "latlng": [25.5, 51.25], - "demonym": "Qatari", - "area": 11586.0, - "gini": 41.1, - "timezones": ["UTC+03:00"], - "borders": ["SAU"], - "nativeName": "قطر", - "numericCode": "634", - "currencies": [{ "code": "QAR", "name": "Qatari riyal", "symbol": "ر.ق" }], - "languages": [ - { - "iso639_1": "ar", - "iso639_2": "ara", - "name": "Arabic", - "nativeName": "العربية" - } - ], - "translations": { - "de": "Katar", - "es": "Catar", - "fr": "Qatar", - "ja": "カタール", - "it": "Qatar", - "br": "Catar", - "pt": "Catar", - "nl": "Qatar", - "hr": "Katar", - "fa": "قطر" - }, - "flag": "https://restcountries.eu/data/qat.svg", - "regionalBlocs": [ - { - "acronym": "AL", - "name": "Arab League", - "otherAcronyms": [], - "otherNames": [ - "جامعة الدول العربية", - "Jāmiʻat ad-Duwal al-ʻArabīyah", - "League of Arab States" - ] - } - ], - "cioc": "QAT" - }, - { - "name": "Republic of Kosovo", - "topLevelDomain": [""], - "alpha2Code": "XK", - "alpha3Code": "KOS", - "callingCodes": ["383"], - "capital": "Pristina", - "altSpellings": ["XK", "Република Косово"], - "region": "Europe", - "subregion": "Eastern Europe", - "population": 1733842, - "latlng": [42.666667, 21.166667], - "demonym": "Kosovar", - "area": 10908.0, - "gini": null, - "timezones": ["UTC+01:00"], - "borders": ["ALB", "MKD", "MNE", "SRB"], - "nativeName": "Republika e Kosovës", - "numericCode": null, - "currencies": [{ "code": "EUR", "name": "Euro", "symbol": "€" }], - "languages": [ - { - "iso639_1": "sq", - "iso639_2": "sqi", - "name": "Albanian", - "nativeName": "Shqip" - }, - { - "iso639_1": "sr", - "iso639_2": "srp", - "name": "Serbian", - "nativeName": "српски језик" - } - ], - "translations": { - "de": null, - "es": "Kosovo", - "fr": null, - "ja": null, - "it": null, - "br": "Kosovo", - "pt": "Kosovo", - "nl": null, - "hr": "Kosovo", - "fa": "کوزوو" - }, - "flag": "https://restcountries.eu/data/kos.svg", - "regionalBlocs": [ - { - "acronym": "CEFTA", - "name": "Central European Free Trade Agreement", - "otherAcronyms": [], - "otherNames": [] - } - ], - "cioc": null - }, - { - "name": "Réunion", - "topLevelDomain": [".re"], - "alpha2Code": "RE", - "alpha3Code": "REU", - "callingCodes": ["262"], - "capital": "Saint-Denis", - "altSpellings": ["RE", "Reunion"], - "region": "Africa", - "subregion": "Eastern Africa", - "population": 840974, - "latlng": [-21.15, 55.5], - "demonym": "French", - "area": null, - "gini": null, - "timezones": ["UTC+04:00"], - "borders": [], - "nativeName": "La Réunion", - "numericCode": "638", - "currencies": [{ "code": "EUR", "name": "Euro", "symbol": "€" }], - "languages": [ - { - "iso639_1": "fr", - "iso639_2": "fra", - "name": "French", - "nativeName": "français" - } - ], - "translations": { - "de": "Réunion", - "es": "Reunión", - "fr": "Réunion", - "ja": "レユニオン", - "it": "Riunione", - "br": "Reunião", - "pt": "Reunião", - "nl": "Réunion", - "hr": "Réunion", - "fa": "رئونیون" - }, - "flag": "https://restcountries.eu/data/reu.svg", - "regionalBlocs": [ - { - "acronym": "AU", - "name": "African Union", - "otherAcronyms": [], - "otherNames": [ - "الاتحاد الأفريقي", - "Union africaine", - "União Africana", - "Unión Africana", - "Umoja wa Afrika" - ] - } - ], - "cioc": "" - }, - { - "name": "Romania", - "topLevelDomain": [".ro"], - "alpha2Code": "RO", - "alpha3Code": "ROU", - "callingCodes": ["40"], - "capital": "Bucharest", - "altSpellings": ["RO", "Rumania", "Roumania", "România"], - "region": "Europe", - "subregion": "Eastern Europe", - "population": 19861408, - "latlng": [46.0, 25.0], - "demonym": "Romanian", - "area": 238391.0, - "gini": 30.0, - "timezones": ["UTC+02:00"], - "borders": ["BGR", "HUN", "MDA", "SRB", "UKR"], - "nativeName": "România", - "numericCode": "642", - "currencies": [{ "code": "RON", "name": "Romanian leu", "symbol": "lei" }], - "languages": [ - { - "iso639_1": "ro", - "iso639_2": "ron", - "name": "Romanian", - "nativeName": "Română" - } - ], - "translations": { - "de": "Rumänien", - "es": "Rumania", - "fr": "Roumanie", - "ja": "ルーマニア", - "it": "Romania", - "br": "Romênia", - "pt": "Roménia", - "nl": "Roemenië", - "hr": "Rumunjska", - "fa": "رومانی" - }, - "flag": "https://restcountries.eu/data/rou.svg", - "regionalBlocs": [ - { - "acronym": "EU", - "name": "European Union", - "otherAcronyms": [], - "otherNames": [] - } - ], - "cioc": "ROU" - }, - { - "name": "Russian Federation", - "topLevelDomain": [".ru"], - "alpha2Code": "RU", - "alpha3Code": "RUS", - "callingCodes": ["7"], - "capital": "Moscow", - "altSpellings": [ - "RU", - "Rossiya", - "Russian Federation", - "Российская Федерация", - "Rossiyskaya Federatsiya" - ], - "region": "Europe", - "subregion": "Eastern Europe", - "population": 146599183, - "latlng": [60.0, 100.0], - "demonym": "Russian", - "area": 1.7124442e7, - "gini": 40.1, - "timezones": [ - "UTC+03:00", - "UTC+04:00", - "UTC+06:00", - "UTC+07:00", - "UTC+08:00", - "UTC+09:00", - "UTC+10:00", - "UTC+11:00", - "UTC+12:00" - ], - "borders": [ - "AZE", - "BLR", - "CHN", - "EST", - "FIN", - "GEO", - "KAZ", - "PRK", - "LVA", - "LTU", - "MNG", - "NOR", - "POL", - "UKR" - ], - "nativeName": "Россия", - "numericCode": "643", - "currencies": [{ "code": "RUB", "name": "Russian ruble", "symbol": "₽" }], - "languages": [ - { - "iso639_1": "ru", - "iso639_2": "rus", - "name": "Russian", - "nativeName": "Русский" - } - ], - "translations": { - "de": "Russland", - "es": "Rusia", - "fr": "Russie", - "ja": "ロシア連邦", - "it": "Russia", - "br": "Rússia", - "pt": "Rússia", - "nl": "Rusland", - "hr": "Rusija", - "fa": "روسیه" - }, - "flag": "https://restcountries.eu/data/rus.svg", - "regionalBlocs": [ - { - "acronym": "EEU", - "name": "Eurasian Economic Union", - "otherAcronyms": ["EAEU"], - "otherNames": [] - } - ], - "cioc": "RUS" - }, - { - "name": "Rwanda", - "topLevelDomain": [".rw"], - "alpha2Code": "RW", - "alpha3Code": "RWA", - "callingCodes": ["250"], - "capital": "Kigali", - "altSpellings": [ - "RW", - "Republic of Rwanda", - "Repubulika y'u Rwanda", - "République du Rwanda" - ], - "region": "Africa", - "subregion": "Eastern Africa", - "population": 11553188, - "latlng": [-2.0, 30.0], - "demonym": "Rwandan", - "area": 26338.0, - "gini": 50.8, - "timezones": ["UTC+02:00"], - "borders": ["BDI", "COD", "TZA", "UGA"], - "nativeName": "Rwanda", - "numericCode": "646", - "currencies": [{ "code": "RWF", "name": "Rwandan franc", "symbol": "Fr" }], - "languages": [ - { - "iso639_1": "rw", - "iso639_2": "kin", - "name": "Kinyarwanda", - "nativeName": "Ikinyarwanda" - }, - { - "iso639_1": "en", - "iso639_2": "eng", - "name": "English", - "nativeName": "English" - }, - { - "iso639_1": "fr", - "iso639_2": "fra", - "name": "French", - "nativeName": "français" - } - ], - "translations": { - "de": "Ruanda", - "es": "Ruanda", - "fr": "Rwanda", - "ja": "ルワンダ", - "it": "Ruanda", - "br": "Ruanda", - "pt": "Ruanda", - "nl": "Rwanda", - "hr": "Ruanda", - "fa": "رواندا" - }, - "flag": "https://restcountries.eu/data/rwa.svg", - "regionalBlocs": [ - { - "acronym": "AU", - "name": "African Union", - "otherAcronyms": [], - "otherNames": [ - "الاتحاد الأفريقي", - "Union africaine", - "União Africana", - "Unión Africana", - "Umoja wa Afrika" - ] - } - ], - "cioc": "RWA" - }, - { - "name": "Saint Barthélemy", - "topLevelDomain": [".bl"], - "alpha2Code": "BL", - "alpha3Code": "BLM", - "callingCodes": ["590"], - "capital": "Gustavia", - "altSpellings": [ - "BL", - "St. Barthelemy", - "Collectivity of Saint Barthélemy", - "Collectivité de Saint-Barthélemy" - ], - "region": "Americas", - "subregion": "Caribbean", - "population": 9417, - "latlng": [18.5, -63.41666666], - "demonym": "Saint Barthélemy Islander", - "area": 21.0, - "gini": null, - "timezones": ["UTC-04:00"], - "borders": [], - "nativeName": "Saint-Barthélemy", - "numericCode": "652", - "currencies": [{ "code": "EUR", "name": "Euro", "symbol": "€" }], - "languages": [ - { - "iso639_1": "fr", - "iso639_2": "fra", - "name": "French", - "nativeName": "français" - } - ], - "translations": { - "de": "Saint-Barthélemy", - "es": "San Bartolomé", - "fr": "Saint-Barthélemy", - "ja": "サン・バルテルミー", - "it": "Antille Francesi", - "br": "São Bartolomeu", - "pt": "São Bartolomeu", - "nl": "Saint Barthélemy", - "hr": "Saint Barthélemy", - "fa": "سن-بارتلمی" - }, - "flag": "https://restcountries.eu/data/blm.svg", - "regionalBlocs": [], - "cioc": "" - }, - { - "name": "Saint Helena, Ascension and Tristan da Cunha", - "topLevelDomain": [".sh"], - "alpha2Code": "SH", - "alpha3Code": "SHN", - "callingCodes": ["290"], - "capital": "Jamestown", - "altSpellings": ["SH"], - "region": "Africa", - "subregion": "Western Africa", - "population": 4255, - "latlng": [-15.95, -5.7], - "demonym": "Saint Helenian", - "area": null, - "gini": null, - "timezones": ["UTC+00:00"], - "borders": [], - "nativeName": "Saint Helena", - "numericCode": "654", - "currencies": [ - { "code": "SHP", "name": "Saint Helena pound", "symbol": "£" } - ], - "languages": [ - { - "iso639_1": "en", - "iso639_2": "eng", - "name": "English", - "nativeName": "English" - } - ], - "translations": { - "de": "Sankt Helena", - "es": "Santa Helena", - "fr": "Sainte-Hélène", - "ja": "セントヘレナ・アセンションおよびトリスタンダクーニャ", - "it": "Sant'Elena", - "br": "Santa Helena", - "pt": "Santa Helena", - "nl": "Sint-Helena", - "hr": "Sveta Helena", - "fa": "سنت هلنا، اسنشن و تریستان دا کونا" - }, - "flag": "https://restcountries.eu/data/shn.svg", - "regionalBlocs": [ - { - "acronym": "AU", - "name": "African Union", - "otherAcronyms": [], - "otherNames": [ - "الاتحاد الأفريقي", - "Union africaine", - "União Africana", - "Unión Africana", - "Umoja wa Afrika" - ] - } - ], - "cioc": null - }, - { - "name": "Saint Kitts and Nevis", - "topLevelDomain": [".kn"], - "alpha2Code": "KN", - "alpha3Code": "KNA", - "callingCodes": ["1869"], - "capital": "Basseterre", - "altSpellings": ["KN", "Federation of Saint Christopher and Nevis"], - "region": "Americas", - "subregion": "Caribbean", - "population": 46204, - "latlng": [17.33333333, -62.75], - "demonym": "Kittian and Nevisian", - "area": 261.0, - "gini": null, - "timezones": ["UTC-04:00"], - "borders": [], - "nativeName": "Saint Kitts and Nevis", - "numericCode": "659", - "currencies": [ - { "code": "XCD", "name": "East Caribbean dollar", "symbol": "$" } - ], - "languages": [ - { - "iso639_1": "en", - "iso639_2": "eng", - "name": "English", - "nativeName": "English" - } - ], - "translations": { - "de": "St. Kitts und Nevis", - "es": "San Cristóbal y Nieves", - "fr": "Saint-Christophe-et-Niévès", - "ja": "セントクリストファー・ネイビス", - "it": "Saint Kitts e Nevis", - "br": "São Cristóvão e Neves", - "pt": "São Cristóvão e Neves", - "nl": "Saint Kitts en Nevis", - "hr": "Sveti Kristof i Nevis", - "fa": "سنت کیتس و نویس" - }, - "flag": "https://restcountries.eu/data/kna.svg", - "regionalBlocs": [ - { - "acronym": "CARICOM", - "name": "Caribbean Community", - "otherAcronyms": [], - "otherNames": [ - "Comunidad del Caribe", - "Communauté Caribéenne", - "Caribische Gemeenschap" - ] - } - ], - "cioc": "SKN" - }, - { - "name": "Saint Lucia", - "topLevelDomain": [".lc"], - "alpha2Code": "LC", - "alpha3Code": "LCA", - "callingCodes": ["1758"], - "capital": "Castries", - "altSpellings": ["LC"], - "region": "Americas", - "subregion": "Caribbean", - "population": 186000, - "latlng": [13.88333333, -60.96666666], - "demonym": "Saint Lucian", - "area": 616.0, - "gini": 42.6, - "timezones": ["UTC-04:00"], - "borders": [], - "nativeName": "Saint Lucia", - "numericCode": "662", - "currencies": [ - { "code": "XCD", "name": "East Caribbean dollar", "symbol": "$" } - ], - "languages": [ - { - "iso639_1": "en", - "iso639_2": "eng", - "name": "English", - "nativeName": "English" - } - ], - "translations": { - "de": "Saint Lucia", - "es": "Santa Lucía", - "fr": "Saint-Lucie", - "ja": "セントルシア", - "it": "Santa Lucia", - "br": "Santa Lúcia", - "pt": "Santa Lúcia", - "nl": "Saint Lucia", - "hr": "Sveta Lucija", - "fa": "سنت لوسیا" - }, - "flag": "https://restcountries.eu/data/lca.svg", - "regionalBlocs": [ - { - "acronym": "CARICOM", - "name": "Caribbean Community", - "otherAcronyms": [], - "otherNames": [ - "Comunidad del Caribe", - "Communauté Caribéenne", - "Caribische Gemeenschap" - ] - } - ], - "cioc": "LCA" - }, - { - "name": "Saint Martin (French part)", - "topLevelDomain": [".mf", ".fr", ".gp"], - "alpha2Code": "MF", - "alpha3Code": "MAF", - "callingCodes": ["590"], - "capital": "Marigot", - "altSpellings": [ - "MF", - "Collectivity of Saint Martin", - "Collectivité de Saint-Martin" - ], - "region": "Americas", - "subregion": "Caribbean", - "population": 36979, - "latlng": [18.08333333, -63.95], - "demonym": "Saint Martin Islander", - "area": 53.0, - "gini": null, - "timezones": ["UTC-04:00"], - "borders": ["SXM", "NLD"], - "nativeName": "Saint-Martin", - "numericCode": "663", - "currencies": [{ "code": "EUR", "name": "Euro", "symbol": "€" }], - "languages": [ - { - "iso639_1": "en", - "iso639_2": "eng", - "name": "English", - "nativeName": "English" - }, - { - "iso639_1": "fr", - "iso639_2": "fra", - "name": "French", - "nativeName": "français" - }, - { - "iso639_1": "nl", - "iso639_2": "nld", - "name": "Dutch", - "nativeName": "Nederlands" - } - ], - "translations": { - "de": "Saint Martin", - "es": "Saint Martin", - "fr": "Saint-Martin", - "ja": "サン・マルタン(フランス領)", - "it": "Saint Martin", - "br": "Saint Martin", - "pt": "Ilha São Martinho", - "nl": "Saint-Martin", - "hr": "Sveti Martin", - "fa": "سینت مارتن" - }, - "flag": "https://restcountries.eu/data/maf.svg", - "regionalBlocs": [], - "cioc": "" - }, - { - "name": "Saint Pierre and Miquelon", - "topLevelDomain": [".pm"], - "alpha2Code": "PM", - "alpha3Code": "SPM", - "callingCodes": ["508"], - "capital": "Saint-Pierre", - "altSpellings": [ - "PM", - "Collectivité territoriale de Saint-Pierre-et-Miquelon" - ], - "region": "Americas", - "subregion": "Northern America", - "population": 6069, - "latlng": [46.83333333, -56.33333333], - "demonym": "French", - "area": 242.0, - "gini": null, - "timezones": ["UTC-03:00"], - "borders": [], - "nativeName": "Saint-Pierre-et-Miquelon", - "numericCode": "666", - "currencies": [{ "code": "EUR", "name": "Euro", "symbol": "€" }], - "languages": [ - { - "iso639_1": "fr", - "iso639_2": "fra", - "name": "French", - "nativeName": "français" - } - ], - "translations": { - "de": "Saint-Pierre und Miquelon", - "es": "San Pedro y Miquelón", - "fr": "Saint-Pierre-et-Miquelon", - "ja": "サンピエール島・ミクロン島", - "it": "Saint-Pierre e Miquelon", - "br": "Saint-Pierre e Miquelon", - "pt": "São Pedro e Miquelon", - "nl": "Saint Pierre en Miquelon", - "hr": "Sveti Petar i Mikelon", - "fa": "سن پیر و میکلن" - }, - "flag": "https://restcountries.eu/data/spm.svg", - "regionalBlocs": [], - "cioc": "" - }, - { - "name": "Saint Vincent and the Grenadines", - "topLevelDomain": [".vc"], - "alpha2Code": "VC", - "alpha3Code": "VCT", - "callingCodes": ["1784"], - "capital": "Kingstown", - "altSpellings": ["VC"], - "region": "Americas", - "subregion": "Caribbean", - "population": 109991, - "latlng": [13.25, -61.2], - "demonym": "Saint Vincentian", - "area": 389.0, - "gini": null, - "timezones": ["UTC-04:00"], - "borders": [], - "nativeName": "Saint Vincent and the Grenadines", - "numericCode": "670", - "currencies": [ - { "code": "XCD", "name": "East Caribbean dollar", "symbol": "$" } - ], - "languages": [ - { - "iso639_1": "en", - "iso639_2": "eng", - "name": "English", - "nativeName": "English" - } - ], - "translations": { - "de": "Saint Vincent und die Grenadinen", - "es": "San Vicente y Granadinas", - "fr": "Saint-Vincent-et-les-Grenadines", - "ja": "セントビンセントおよびグレナディーン諸島", - "it": "Saint Vincent e Grenadine", - "br": "São Vicente e Granadinas", - "pt": "São Vicente e Granadinas", - "nl": "Saint Vincent en de Grenadines", - "hr": "Sveti Vincent i Grenadini", - "fa": "سنت وینسنت و گرنادین‌ها" - }, - "flag": "https://restcountries.eu/data/vct.svg", - "regionalBlocs": [ - { - "acronym": "CARICOM", - "name": "Caribbean Community", - "otherAcronyms": [], - "otherNames": [ - "Comunidad del Caribe", - "Communauté Caribéenne", - "Caribische Gemeenschap" - ] - } - ], - "cioc": "VIN" - }, - { - "name": "Samoa", - "topLevelDomain": [".ws"], - "alpha2Code": "WS", - "alpha3Code": "WSM", - "callingCodes": ["685"], - "capital": "Apia", - "altSpellings": [ - "WS", - "Independent State of Samoa", - "Malo Saʻoloto Tutoʻatasi o Sāmoa" - ], - "region": "Oceania", - "subregion": "Polynesia", - "population": 194899, - "latlng": [-13.58333333, -172.33333333], - "demonym": "Samoan", - "area": 2842.0, - "gini": null, - "timezones": ["UTC+13:00"], - "borders": [], - "nativeName": "Samoa", - "numericCode": "882", - "currencies": [{ "code": "WST", "name": "Samoan tālā", "symbol": "T" }], - "languages": [ - { - "iso639_1": "sm", - "iso639_2": "smo", - "name": "Samoan", - "nativeName": "gagana fa'a Samoa" - }, - { - "iso639_1": "en", - "iso639_2": "eng", - "name": "English", - "nativeName": "English" - } - ], - "translations": { - "de": "Samoa", - "es": "Samoa", - "fr": "Samoa", - "ja": "サモア", - "it": "Samoa", - "br": "Samoa", - "pt": "Samoa", - "nl": "Samoa", - "hr": "Samoa", - "fa": "ساموآ" - }, - "flag": "https://restcountries.eu/data/wsm.svg", - "regionalBlocs": [], - "cioc": "SAM" - }, - { - "name": "San Marino", - "topLevelDomain": [".sm"], - "alpha2Code": "SM", - "alpha3Code": "SMR", - "callingCodes": ["378"], - "capital": "City of San Marino", - "altSpellings": [ - "SM", - "Republic of San Marino", - "Repubblica di San Marino" - ], - "region": "Europe", - "subregion": "Southern Europe", - "population": 33005, - "latlng": [43.76666666, 12.41666666], - "demonym": "Sammarinese", - "area": 61.0, - "gini": null, - "timezones": ["UTC+01:00"], - "borders": ["ITA"], - "nativeName": "San Marino", - "numericCode": "674", - "currencies": [{ "code": "EUR", "name": "Euro", "symbol": "€" }], - "languages": [ - { - "iso639_1": "it", - "iso639_2": "ita", - "name": "Italian", - "nativeName": "Italiano" - } - ], - "translations": { - "de": "San Marino", - "es": "San Marino", - "fr": "Saint-Marin", - "ja": "サンマリノ", - "it": "San Marino", - "br": "San Marino", - "pt": "São Marinho", - "nl": "San Marino", - "hr": "San Marino", - "fa": "سان مارینو" - }, - "flag": "https://restcountries.eu/data/smr.svg", - "regionalBlocs": [], - "cioc": "SMR" - }, - { - "name": "Sao Tome and Principe", - "topLevelDomain": [".st"], - "alpha2Code": "ST", - "alpha3Code": "STP", - "callingCodes": ["239"], - "capital": "São Tomé", - "altSpellings": [ - "ST", - "Democratic Republic of São Tomé and Príncipe", - "República Democrática de São Tomé e Príncipe" - ], - "region": "Africa", - "subregion": "Middle Africa", - "population": 187356, - "latlng": [1.0, 7.0], - "demonym": "Sao Tomean", - "area": 964.0, - "gini": 50.8, - "timezones": ["UTC"], - "borders": [], - "nativeName": "São Tomé e Príncipe", - "numericCode": "678", - "currencies": [ - { "code": "STD", "name": "São Tomé and Príncipe dobra", "symbol": "Db" } - ], - "languages": [ - { - "iso639_1": "pt", - "iso639_2": "por", - "name": "Portuguese", - "nativeName": "Português" - } - ], - "translations": { - "de": "São Tomé und Príncipe", - "es": "Santo Tomé y Príncipe", - "fr": "Sao Tomé-et-Principe", - "ja": "サントメ・プリンシペ", - "it": "São Tomé e Príncipe", - "br": "São Tomé e Príncipe", - "pt": "São Tomé e Príncipe", - "nl": "Sao Tomé en Principe", - "hr": "Sveti Toma i Princip", - "fa": "کواترو دو فرویرو" - }, - "flag": "https://restcountries.eu/data/stp.svg", - "regionalBlocs": [ - { - "acronym": "AU", - "name": "African Union", - "otherAcronyms": [], - "otherNames": [ - "الاتحاد الأفريقي", - "Union africaine", - "União Africana", - "Unión Africana", - "Umoja wa Afrika" - ] - } - ], - "cioc": "STP" - }, - { - "name": "Saudi Arabia", - "topLevelDomain": [".sa"], - "alpha2Code": "SA", - "alpha3Code": "SAU", - "callingCodes": ["966"], - "capital": "Riyadh", - "altSpellings": [ - "SA", - "Kingdom of Saudi Arabia", - "Al-Mamlakah al-‘Arabiyyah as-Su‘ūdiyyah" - ], - "region": "Asia", - "subregion": "Western Asia", - "population": 32248200, - "latlng": [25.0, 45.0], - "demonym": "Saudi Arabian", - "area": 2149690.0, - "gini": null, - "timezones": ["UTC+03:00"], - "borders": ["IRQ", "JOR", "KWT", "OMN", "QAT", "ARE", "YEM"], - "nativeName": "العربية السعودية", - "numericCode": "682", - "currencies": [{ "code": "SAR", "name": "Saudi riyal", "symbol": "ر.س" }], - "languages": [ - { - "iso639_1": "ar", - "iso639_2": "ara", - "name": "Arabic", - "nativeName": "العربية" - } - ], - "translations": { - "de": "Saudi-Arabien", - "es": "Arabia Saudí", - "fr": "Arabie Saoudite", - "ja": "サウジアラビア", - "it": "Arabia Saudita", - "br": "Arábia Saudita", - "pt": "Arábia Saudita", - "nl": "Saoedi-Arabië", - "hr": "Saudijska Arabija", - "fa": "عربستان سعودی" - }, - "flag": "https://restcountries.eu/data/sau.svg", - "regionalBlocs": [ - { - "acronym": "AL", - "name": "Arab League", - "otherAcronyms": [], - "otherNames": [ - "جامعة الدول العربية", - "Jāmiʻat ad-Duwal al-ʻArabīyah", - "League of Arab States" - ] - } - ], - "cioc": "KSA" - }, - { - "name": "Senegal", - "topLevelDomain": [".sn"], - "alpha2Code": "SN", - "alpha3Code": "SEN", - "callingCodes": ["221"], - "capital": "Dakar", - "altSpellings": ["SN", "Republic of Senegal", "République du Sénégal"], - "region": "Africa", - "subregion": "Western Africa", - "population": 14799859, - "latlng": [14.0, -14.0], - "demonym": "Senegalese", - "area": 196722.0, - "gini": 39.2, - "timezones": ["UTC"], - "borders": ["GMB", "GIN", "GNB", "MLI", "MRT"], - "nativeName": "Sénégal", - "numericCode": "686", - "currencies": [ - { "code": "XOF", "name": "West African CFA franc", "symbol": "Fr" } - ], - "languages": [ - { - "iso639_1": "fr", - "iso639_2": "fra", - "name": "French", - "nativeName": "français" - } - ], - "translations": { - "de": "Senegal", - "es": "Senegal", - "fr": "Sénégal", - "ja": "セネガル", - "it": "Senegal", - "br": "Senegal", - "pt": "Senegal", - "nl": "Senegal", - "hr": "Senegal", - "fa": "سنگال" - }, - "flag": "https://restcountries.eu/data/sen.svg", - "regionalBlocs": [ - { - "acronym": "AU", - "name": "African Union", - "otherAcronyms": [], - "otherNames": [ - "الاتحاد الأفريقي", - "Union africaine", - "União Africana", - "Unión Africana", - "Umoja wa Afrika" - ] - } - ], - "cioc": "SEN" - }, - { - "name": "Serbia", - "topLevelDomain": [".rs"], - "alpha2Code": "RS", - "alpha3Code": "SRB", - "callingCodes": ["381"], - "capital": "Belgrade", - "altSpellings": [ - "RS", - "Srbija", - "Republic of Serbia", - "Република Србија", - "Republika Srbija" - ], - "region": "Europe", - "subregion": "Southern Europe", - "population": 7076372, - "latlng": [44.0, 21.0], - "demonym": "Serbian", - "area": 88361.0, - "gini": 27.8, - "timezones": ["UTC+01:00"], - "borders": ["BIH", "BGR", "HRV", "HUN", "KOS", "MKD", "MNE", "ROU"], - "nativeName": "Србија", - "numericCode": "688", - "currencies": [ - { "code": "RSD", "name": "Serbian dinar", "symbol": "дин." } - ], - "languages": [ - { - "iso639_1": "sr", - "iso639_2": "srp", - "name": "Serbian", - "nativeName": "српски језик" - } - ], - "translations": { - "de": "Serbien", - "es": "Serbia", - "fr": "Serbie", - "ja": "セルビア", - "it": "Serbia", - "br": "Sérvia", - "pt": "Sérvia", - "nl": "Servië", - "hr": "Srbija", - "fa": "صربستان" - }, - "flag": "https://restcountries.eu/data/srb.svg", - "regionalBlocs": [ - { - "acronym": "CEFTA", - "name": "Central European Free Trade Agreement", - "otherAcronyms": [], - "otherNames": [] - } - ], - "cioc": "SRB" - }, - { - "name": "Seychelles", - "topLevelDomain": [".sc"], - "alpha2Code": "SC", - "alpha3Code": "SYC", - "callingCodes": ["248"], - "capital": "Victoria", - "altSpellings": [ - "SC", - "Republic of Seychelles", - "Repiblik Sesel", - "République des Seychelles" - ], - "region": "Africa", - "subregion": "Eastern Africa", - "population": 91400, - "latlng": [-4.58333333, 55.66666666], - "demonym": "Seychellois", - "area": 452.0, - "gini": 65.8, - "timezones": ["UTC+04:00"], - "borders": [], - "nativeName": "Seychelles", - "numericCode": "690", - "currencies": [ - { "code": "SCR", "name": "Seychellois rupee", "symbol": "₨" } - ], - "languages": [ - { - "iso639_1": "fr", - "iso639_2": "fra", - "name": "French", - "nativeName": "français" - }, - { - "iso639_1": "en", - "iso639_2": "eng", - "name": "English", - "nativeName": "English" - } - ], - "translations": { - "de": "Seychellen", - "es": "Seychelles", - "fr": "Seychelles", - "ja": "セーシェル", - "it": "Seychelles", - "br": "Seicheles", - "pt": "Seicheles", - "nl": "Seychellen", - "hr": "Sejšeli", - "fa": "سیشل" - }, - "flag": "https://restcountries.eu/data/syc.svg", - "regionalBlocs": [ - { - "acronym": "AU", - "name": "African Union", - "otherAcronyms": [], - "otherNames": [ - "الاتحاد الأفريقي", - "Union africaine", - "União Africana", - "Unión Africana", - "Umoja wa Afrika" - ] - } - ], - "cioc": "SEY" - }, - { - "name": "Sierra Leone", - "topLevelDomain": [".sl"], - "alpha2Code": "SL", - "alpha3Code": "SLE", - "callingCodes": ["232"], - "capital": "Freetown", - "altSpellings": ["SL", "Republic of Sierra Leone"], - "region": "Africa", - "subregion": "Western Africa", - "population": 7075641, - "latlng": [8.5, -11.5], - "demonym": "Sierra Leonean", - "area": 71740.0, - "gini": 42.5, - "timezones": ["UTC"], - "borders": ["GIN", "LBR"], - "nativeName": "Sierra Leone", - "numericCode": "694", - "currencies": [ - { "code": "SLL", "name": "Sierra Leonean leone", "symbol": "Le" } - ], - "languages": [ - { - "iso639_1": "en", - "iso639_2": "eng", - "name": "English", - "nativeName": "English" - } - ], - "translations": { - "de": "Sierra Leone", - "es": "Sierra Leone", - "fr": "Sierra Leone", - "ja": "シエラレオネ", - "it": "Sierra Leone", - "br": "Serra Leoa", - "pt": "Serra Leoa", - "nl": "Sierra Leone", - "hr": "Sijera Leone", - "fa": "سیرالئون" - }, - "flag": "https://restcountries.eu/data/sle.svg", - "regionalBlocs": [ - { - "acronym": "AU", - "name": "African Union", - "otherAcronyms": [], - "otherNames": [ - "الاتحاد الأفريقي", - "Union africaine", - "União Africana", - "Unión Africana", - "Umoja wa Afrika" - ] - } - ], - "cioc": "SLE" - }, - { - "name": "Singapore", - "topLevelDomain": [".sg"], - "alpha2Code": "SG", - "alpha3Code": "SGP", - "callingCodes": ["65"], - "capital": "Singapore", - "altSpellings": ["SG", "Singapura", "Republik Singapura", "新加坡共和国"], - "region": "Asia", - "subregion": "South-Eastern Asia", - "population": 5535000, - "latlng": [1.36666666, 103.8], - "demonym": "Singaporean", - "area": 710.0, - "gini": 48.1, - "timezones": ["UTC+08:00"], - "borders": [], - "nativeName": "Singapore", - "numericCode": "702", - "currencies": [ - { "code": "BND", "name": "Brunei dollar", "symbol": "$" }, - { "code": "SGD", "name": "Singapore dollar", "symbol": "$" } - ], - "languages": [ - { - "iso639_1": "en", - "iso639_2": "eng", - "name": "English", - "nativeName": "English" - }, - { - "iso639_1": "ms", - "iso639_2": "msa", - "name": "Malay", - "nativeName": "bahasa Melayu" - }, - { - "iso639_1": "ta", - "iso639_2": "tam", - "name": "Tamil", - "nativeName": "தமிழ்" - }, - { - "iso639_1": "zh", - "iso639_2": "zho", - "name": "Chinese", - "nativeName": "中文 (Zhōngwén)" - } - ], - "translations": { - "de": "Singapur", - "es": "Singapur", - "fr": "Singapour", - "ja": "シンガポール", - "it": "Singapore", - "br": "Singapura", - "pt": "Singapura", - "nl": "Singapore", - "hr": "Singapur", - "fa": "سنگاپور" - }, - "flag": "https://restcountries.eu/data/sgp.svg", - "regionalBlocs": [ - { - "acronym": "ASEAN", - "name": "Association of Southeast Asian Nations", - "otherAcronyms": [], - "otherNames": [] - } - ], - "cioc": "SIN" - }, - { - "name": "Sint Maarten (Dutch part)", - "topLevelDomain": [".sx"], - "alpha2Code": "SX", - "alpha3Code": "SXM", - "callingCodes": ["1721"], - "capital": "Philipsburg", - "altSpellings": ["SX"], - "region": "Americas", - "subregion": "Caribbean", - "population": 38247, - "latlng": [18.033333, -63.05], - "demonym": "Dutch", - "area": 34.0, - "gini": null, - "timezones": ["UTC-04:00"], - "borders": ["MAF"], - "nativeName": "Sint Maarten", - "numericCode": "534", - "currencies": [ - { "code": "ANG", "name": "Netherlands Antillean guilder", "symbol": "ƒ" } - ], - "languages": [ - { - "iso639_1": "nl", - "iso639_2": "nld", - "name": "Dutch", - "nativeName": "Nederlands" - }, - { - "iso639_1": "en", - "iso639_2": "eng", - "name": "English", - "nativeName": "English" - } - ], - "translations": { - "de": "Sint Maarten (niederl. Teil)", - "es": null, - "fr": "Saint Martin (partie néerlandaise)", - "ja": null, - "it": "Saint Martin (parte olandese)", - "br": "Sint Maarten", - "pt": "São Martinho", - "nl": "Sint Maarten", - "hr": null, - "fa": "سینت مارتن" - }, - "flag": "https://restcountries.eu/data/sxm.svg", - "regionalBlocs": [], - "cioc": "" - }, - { - "name": "Slovakia", - "topLevelDomain": [".sk"], - "alpha2Code": "SK", - "alpha3Code": "SVK", - "callingCodes": ["421"], - "capital": "Bratislava", - "altSpellings": ["SK", "Slovak Republic", "Slovenská republika"], - "region": "Europe", - "subregion": "Eastern Europe", - "population": 5426252, - "latlng": [48.66666666, 19.5], - "demonym": "Slovak", - "area": 49037.0, - "gini": 26.0, - "timezones": ["UTC+01:00"], - "borders": ["AUT", "CZE", "HUN", "POL", "UKR"], - "nativeName": "Slovensko", - "numericCode": "703", - "currencies": [{ "code": "EUR", "name": "Euro", "symbol": "€" }], - "languages": [ - { - "iso639_1": "sk", - "iso639_2": "slk", - "name": "Slovak", - "nativeName": "slovenčina" - } - ], - "translations": { - "de": "Slowakei", - "es": "República Eslovaca", - "fr": "Slovaquie", - "ja": "スロバキア", - "it": "Slovacchia", - "br": "Eslováquia", - "pt": "Eslováquia", - "nl": "Slowakije", - "hr": "Slovačka", - "fa": "اسلواکی" - }, - "flag": "https://restcountries.eu/data/svk.svg", - "regionalBlocs": [ - { - "acronym": "EU", - "name": "European Union", - "otherAcronyms": [], - "otherNames": [] - } - ], - "cioc": "SVK" - }, - { - "name": "Slovenia", - "topLevelDomain": [".si"], - "alpha2Code": "SI", - "alpha3Code": "SVN", - "callingCodes": ["386"], - "capital": "Ljubljana", - "altSpellings": ["SI", "Republic of Slovenia", "Republika Slovenija"], - "region": "Europe", - "subregion": "Southern Europe", - "population": 2064188, - "latlng": [46.11666666, 14.81666666], - "demonym": "Slovene", - "area": 20273.0, - "gini": 31.2, - "timezones": ["UTC+01:00"], - "borders": ["AUT", "HRV", "ITA", "HUN"], - "nativeName": "Slovenija", - "numericCode": "705", - "currencies": [{ "code": "EUR", "name": "Euro", "symbol": "€" }], - "languages": [ - { - "iso639_1": "sl", - "iso639_2": "slv", - "name": "Slovene", - "nativeName": "slovenski jezik" - } - ], - "translations": { - "de": "Slowenien", - "es": "Eslovenia", - "fr": "Slovénie", - "ja": "スロベニア", - "it": "Slovenia", - "br": "Eslovênia", - "pt": "Eslovénia", - "nl": "Slovenië", - "hr": "Slovenija", - "fa": "اسلوونی" - }, - "flag": "https://restcountries.eu/data/svn.svg", - "regionalBlocs": [ - { - "acronym": "EU", - "name": "European Union", - "otherAcronyms": [], - "otherNames": [] - } - ], - "cioc": "SLO" - }, - { - "name": "Solomon Islands", - "topLevelDomain": [".sb"], - "alpha2Code": "SB", - "alpha3Code": "SLB", - "callingCodes": ["677"], - "capital": "Honiara", - "altSpellings": ["SB"], - "region": "Oceania", - "subregion": "Melanesia", - "population": 642000, - "latlng": [-8.0, 159.0], - "demonym": "Solomon Islander", - "area": 28896.0, - "gini": null, - "timezones": ["UTC+11:00"], - "borders": [], - "nativeName": "Solomon Islands", - "numericCode": "090", - "currencies": [ - { "code": "SBD", "name": "Solomon Islands dollar", "symbol": "$" } - ], - "languages": [ - { - "iso639_1": "en", - "iso639_2": "eng", - "name": "English", - "nativeName": "English" - } - ], - "translations": { - "de": "Salomonen", - "es": "Islas Salomón", - "fr": "Îles Salomon", - "ja": "ソロモン諸島", - "it": "Isole Salomone", - "br": "Ilhas Salomão", - "pt": "Ilhas Salomão", - "nl": "Salomonseilanden", - "hr": "Solomonski Otoci", - "fa": "جزایر سلیمان" - }, - "flag": "https://restcountries.eu/data/slb.svg", - "regionalBlocs": [], - "cioc": "SOL" - }, - { - "name": "Somalia", - "topLevelDomain": [".so"], - "alpha2Code": "SO", - "alpha3Code": "SOM", - "callingCodes": ["252"], - "capital": "Mogadishu", - "altSpellings": [ - "SO", - "aṣ-Ṣūmāl", - "Federal Republic of Somalia", - "Jamhuuriyadda Federaalka Soomaaliya", - "Jumhūriyyat aṣ-Ṣūmāl al-Fiderāliyya" - ], - "region": "Africa", - "subregion": "Eastern Africa", - "population": 11079000, - "latlng": [10.0, 49.0], - "demonym": "Somali", - "area": 637657.0, - "gini": null, - "timezones": ["UTC+03:00"], - "borders": ["DJI", "ETH", "KEN"], - "nativeName": "Soomaaliya", - "numericCode": "706", - "currencies": [ - { "code": "SOS", "name": "Somali shilling", "symbol": "Sh" } - ], - "languages": [ - { - "iso639_1": "so", - "iso639_2": "som", - "name": "Somali", - "nativeName": "Soomaaliga" - }, - { - "iso639_1": "ar", - "iso639_2": "ara", - "name": "Arabic", - "nativeName": "العربية" - } - ], - "translations": { - "de": "Somalia", - "es": "Somalia", - "fr": "Somalie", - "ja": "ソマリア", - "it": "Somalia", - "br": "Somália", - "pt": "Somália", - "nl": "Somalië", - "hr": "Somalija", - "fa": "سومالی" - }, - "flag": "https://restcountries.eu/data/som.svg", - "regionalBlocs": [ - { - "acronym": "AU", - "name": "African Union", - "otherAcronyms": [], - "otherNames": [ - "الاتحاد الأفريقي", - "Union africaine", - "União Africana", - "Unión Africana", - "Umoja wa Afrika" - ] - }, - { - "acronym": "AL", - "name": "Arab League", - "otherAcronyms": [], - "otherNames": [ - "جامعة الدول العربية", - "Jāmiʻat ad-Duwal al-ʻArabīyah", - "League of Arab States" - ] - } - ], - "cioc": "SOM" - }, - { - "name": "South Africa", - "topLevelDomain": [".za"], - "alpha2Code": "ZA", - "alpha3Code": "ZAF", - "callingCodes": ["27"], - "capital": "Pretoria", - "altSpellings": ["ZA", "RSA", "Suid-Afrika", "Republic of South Africa"], - "region": "Africa", - "subregion": "Southern Africa", - "population": 55653654, - "latlng": [-29.0, 24.0], - "demonym": "South African", - "area": 1221037.0, - "gini": 63.1, - "timezones": ["UTC+02:00"], - "borders": ["BWA", "LSO", "MOZ", "NAM", "SWZ", "ZWE"], - "nativeName": "South Africa", - "numericCode": "710", - "currencies": [ - { "code": "ZAR", "name": "South African rand", "symbol": "R" } - ], - "languages": [ - { - "iso639_1": "af", - "iso639_2": "afr", - "name": "Afrikaans", - "nativeName": "Afrikaans" - }, - { - "iso639_1": "en", - "iso639_2": "eng", - "name": "English", - "nativeName": "English" - }, - { - "iso639_1": "nr", - "iso639_2": "nbl", - "name": "Southern Ndebele", - "nativeName": "isiNdebele" - }, - { - "iso639_1": "st", - "iso639_2": "sot", - "name": "Southern Sotho", - "nativeName": "Sesotho" - }, - { - "iso639_1": "ss", - "iso639_2": "ssw", - "name": "Swati", - "nativeName": "SiSwati" - }, - { - "iso639_1": "tn", - "iso639_2": "tsn", - "name": "Tswana", - "nativeName": "Setswana" - }, - { - "iso639_1": "ts", - "iso639_2": "tso", - "name": "Tsonga", - "nativeName": "Xitsonga" - }, - { - "iso639_1": "ve", - "iso639_2": "ven", - "name": "Venda", - "nativeName": "Tshivenḓa" - }, - { - "iso639_1": "xh", - "iso639_2": "xho", - "name": "Xhosa", - "nativeName": "isiXhosa" - }, - { - "iso639_1": "zu", - "iso639_2": "zul", - "name": "Zulu", - "nativeName": "isiZulu" - } - ], - "translations": { - "de": "Republik Südafrika", - "es": "República de Sudáfrica", - "fr": "Afrique du Sud", - "ja": "南アフリカ", - "it": "Sud Africa", - "br": "República Sul-Africana", - "pt": "República Sul-Africana", - "nl": "Zuid-Afrika", - "hr": "Južnoafrička Republika", - "fa": "آفریقای جنوبی" - }, - "flag": "https://restcountries.eu/data/zaf.svg", - "regionalBlocs": [ - { - "acronym": "AU", - "name": "African Union", - "otherAcronyms": [], - "otherNames": [ - "الاتحاد الأفريقي", - "Union africaine", - "União Africana", - "Unión Africana", - "Umoja wa Afrika" - ] - } - ], - "cioc": "RSA" - }, - { - "name": "South Georgia and the South Sandwich Islands", - "topLevelDomain": [".gs"], - "alpha2Code": "GS", - "alpha3Code": "SGS", - "callingCodes": ["500"], - "capital": "King Edward Point", - "altSpellings": ["GS", "South Georgia and the South Sandwich Islands"], - "region": "Americas", - "subregion": "South America", - "population": 30, - "latlng": [-54.5, -37.0], - "demonym": "South Georgia and the South Sandwich Islander", - "area": null, - "gini": null, - "timezones": ["UTC-02:00"], - "borders": [], - "nativeName": "South Georgia", - "numericCode": "239", - "currencies": [ - { "code": "GBP", "name": "British pound", "symbol": "£" }, - { "code": "(none)", "name": null, "symbol": "£" } - ], - "languages": [ - { - "iso639_1": "en", - "iso639_2": "eng", - "name": "English", - "nativeName": "English" - } - ], - "translations": { - "de": "Südgeorgien und die Südlichen Sandwichinseln", - "es": "Islas Georgias del Sur y Sandwich del Sur", - "fr": "Géorgie du Sud-et-les Îles Sandwich du Sud", - "ja": "サウスジョージア・サウスサンドウィッチ諸島", - "it": "Georgia del Sud e Isole Sandwich Meridionali", - "br": "Ilhas Geórgias do Sul e Sandwich do Sul", - "pt": "Ilhas Geórgia do Sul e Sanduíche do Sul", - "nl": "Zuid-Georgia en Zuidelijke Sandwicheilanden", - "hr": "Južna Georgija i otočje Južni Sandwich", - "fa": "جزایر جورجیای جنوبی و ساندویچ جنوبی" - }, - "flag": "https://restcountries.eu/data/sgs.svg", - "regionalBlocs": [ - { - "acronym": "USAN", - "name": "Union of South American Nations", - "otherAcronyms": ["UNASUR", "UNASUL", "UZAN"], - "otherNames": [ - "Unión de Naciones Suramericanas", - "União de Nações Sul-Americanas", - "Unie van Zuid-Amerikaanse Naties", - "South American Union" - ] - } - ], - "cioc": "" - }, - { - "name": "Korea (Republic of)", - "topLevelDomain": [".kr"], - "alpha2Code": "KR", - "alpha3Code": "KOR", - "callingCodes": ["82"], - "capital": "Seoul", - "altSpellings": ["KR", "Republic of Korea"], - "region": "Asia", - "subregion": "Eastern Asia", - "population": 50801405, - "latlng": [37.0, 127.5], - "demonym": "South Korean", - "area": 100210.0, - "gini": 31.3, - "timezones": ["UTC+09:00"], - "borders": ["PRK"], - "nativeName": "대한민국", - "numericCode": "410", - "currencies": [ - { "code": "KRW", "name": "South Korean won", "symbol": "₩" } - ], - "languages": [ - { - "iso639_1": "ko", - "iso639_2": "kor", - "name": "Korean", - "nativeName": "한국어" - } - ], - "translations": { - "de": "Südkorea", - "es": "Corea del Sur", - "fr": "Corée du Sud", - "ja": "大韓民国", - "it": "Corea del Sud", - "br": "Coreia do Sul", - "pt": "Coreia do Sul", - "nl": "Zuid-Korea", - "hr": "Južna Koreja", - "fa": "کره شمالی" - }, - "flag": "https://restcountries.eu/data/kor.svg", - "regionalBlocs": [], - "cioc": "KOR" - }, - { - "name": "South Sudan", - "topLevelDomain": [".ss"], - "alpha2Code": "SS", - "alpha3Code": "SSD", - "callingCodes": ["211"], - "capital": "Juba", - "altSpellings": ["SS"], - "region": "Africa", - "subregion": "Middle Africa", - "population": 12131000, - "latlng": [7.0, 30.0], - "demonym": "South Sudanese", - "area": 619745.0, - "gini": 45.5, - "timezones": ["UTC+03:00"], - "borders": ["CAF", "COD", "ETH", "KEN", "SDN", "UGA"], - "nativeName": "South Sudan", - "numericCode": "728", - "currencies": [ - { "code": "SSP", "name": "South Sudanese pound", "symbol": "£" } - ], - "languages": [ - { - "iso639_1": "en", - "iso639_2": "eng", - "name": "English", - "nativeName": "English" - } - ], - "translations": { - "de": "Südsudan", - "es": "Sudán del Sur", - "fr": "Soudan du Sud", - "ja": "南スーダン", - "it": "Sudan del sud", - "br": "Sudão do Sul", - "pt": "Sudão do Sul", - "nl": "Zuid-Soedan", - "hr": "Južni Sudan", - "fa": "سودان جنوبی" - }, - "flag": "https://restcountries.eu/data/ssd.svg", - "regionalBlocs": [ - { - "acronym": "AU", - "name": "African Union", - "otherAcronyms": [], - "otherNames": [ - "الاتحاد الأفريقي", - "Union africaine", - "União Africana", - "Unión Africana", - "Umoja wa Afrika" - ] - } - ], - "cioc": "" - }, - { - "name": "Spain", - "topLevelDomain": [".es"], - "alpha2Code": "ES", - "alpha3Code": "ESP", - "callingCodes": ["34"], - "capital": "Madrid", - "altSpellings": ["ES", "Kingdom of Spain", "Reino de España"], - "region": "Europe", - "subregion": "Southern Europe", - "population": 46438422, - "latlng": [40.0, -4.0], - "demonym": "Spanish", - "area": 505992.0, - "gini": 34.7, - "timezones": ["UTC", "UTC+01:00"], - "borders": ["AND", "FRA", "GIB", "PRT", "MAR"], - "nativeName": "España", - "numericCode": "724", - "currencies": [{ "code": "EUR", "name": "Euro", "symbol": "€" }], - "languages": [ - { - "iso639_1": "es", - "iso639_2": "spa", - "name": "Spanish", - "nativeName": "Español" - } - ], - "translations": { - "de": "Spanien", - "es": "España", - "fr": "Espagne", - "ja": "スペイン", - "it": "Spagna", - "br": "Espanha", - "pt": "Espanha", - "nl": "Spanje", - "hr": "Španjolska", - "fa": "اسپانیا" - }, - "flag": "https://restcountries.eu/data/esp.svg", - "regionalBlocs": [ - { - "acronym": "EU", - "name": "European Union", - "otherAcronyms": [], - "otherNames": [] - } - ], - "cioc": "ESP" - }, - { - "name": "Sri Lanka", - "topLevelDomain": [".lk"], - "alpha2Code": "LK", - "alpha3Code": "LKA", - "callingCodes": ["94"], - "capital": "Colombo", - "altSpellings": [ - "LK", - "ilaṅkai", - "Democratic Socialist Republic of Sri Lanka" - ], - "region": "Asia", - "subregion": "Southern Asia", - "population": 20966000, - "latlng": [7.0, 81.0], - "demonym": "Sri Lankan", - "area": 65610.0, - "gini": 40.3, - "timezones": ["UTC+05:30"], - "borders": ["IND"], - "nativeName": "śrī laṃkāva", - "numericCode": "144", - "currencies": [ - { "code": "LKR", "name": "Sri Lankan rupee", "symbol": "Rs" } - ], - "languages": [ - { - "iso639_1": "si", - "iso639_2": "sin", - "name": "Sinhalese", - "nativeName": "සිංහල" - }, - { - "iso639_1": "ta", - "iso639_2": "tam", - "name": "Tamil", - "nativeName": "தமிழ்" - } - ], - "translations": { - "de": "Sri Lanka", - "es": "Sri Lanka", - "fr": "Sri Lanka", - "ja": "スリランカ", - "it": "Sri Lanka", - "br": "Sri Lanka", - "pt": "Sri Lanka", - "nl": "Sri Lanka", - "hr": "Šri Lanka", - "fa": "سری‌لانکا" - }, - "flag": "https://restcountries.eu/data/lka.svg", - "regionalBlocs": [ - { - "acronym": "SAARC", - "name": "South Asian Association for Regional Cooperation", - "otherAcronyms": [], - "otherNames": [] - } - ], - "cioc": "SRI" - }, - { - "name": "Sudan", - "topLevelDomain": [".sd"], - "alpha2Code": "SD", - "alpha3Code": "SDN", - "callingCodes": ["249"], - "capital": "Khartoum", - "altSpellings": ["SD", "Republic of the Sudan", "Jumhūrīyat as-Sūdān"], - "region": "Africa", - "subregion": "Northern Africa", - "population": 39598700, - "latlng": [15.0, 30.0], - "demonym": "Sudanese", - "area": 1886068.0, - "gini": 35.3, - "timezones": ["UTC+03:00"], - "borders": ["CAF", "TCD", "EGY", "ERI", "ETH", "LBY", "SSD"], - "nativeName": "السودان", - "numericCode": "729", - "currencies": [ - { "code": "SDG", "name": "Sudanese pound", "symbol": "ج.س." } - ], - "languages": [ - { - "iso639_1": "ar", - "iso639_2": "ara", - "name": "Arabic", - "nativeName": "العربية" - }, - { - "iso639_1": "en", - "iso639_2": "eng", - "name": "English", - "nativeName": "English" - } - ], - "translations": { - "de": "Sudan", - "es": "Sudán", - "fr": "Soudan", - "ja": "スーダン", - "it": "Sudan", - "br": "Sudão", - "pt": "Sudão", - "nl": "Soedan", - "hr": "Sudan", - "fa": "سودان" - }, - "flag": "https://restcountries.eu/data/sdn.svg", - "regionalBlocs": [ - { - "acronym": "AU", - "name": "African Union", - "otherAcronyms": [], - "otherNames": [ - "الاتحاد الأفريقي", - "Union africaine", - "União Africana", - "Unión Africana", - "Umoja wa Afrika" - ] - }, - { - "acronym": "AL", - "name": "Arab League", - "otherAcronyms": [], - "otherNames": [ - "جامعة الدول العربية", - "Jāmiʻat ad-Duwal al-ʻArabīyah", - "League of Arab States" - ] - } - ], - "cioc": "SUD" - }, - { - "name": "Suriname", - "topLevelDomain": [".sr"], - "alpha2Code": "SR", - "alpha3Code": "SUR", - "callingCodes": ["597"], - "capital": "Paramaribo", - "altSpellings": [ - "SR", - "Sarnam", - "Sranangron", - "Republic of Suriname", - "Republiek Suriname" - ], - "region": "Americas", - "subregion": "South America", - "population": 541638, - "latlng": [4.0, -56.0], - "demonym": "Surinamer", - "area": 163820.0, - "gini": 52.9, - "timezones": ["UTC-03:00"], - "borders": ["BRA", "GUF", "FRA", "GUY"], - "nativeName": "Suriname", - "numericCode": "740", - "currencies": [ - { "code": "SRD", "name": "Surinamese dollar", "symbol": "$" } - ], - "languages": [ - { - "iso639_1": "nl", - "iso639_2": "nld", - "name": "Dutch", - "nativeName": "Nederlands" - } - ], - "translations": { - "de": "Suriname", - "es": "Surinam", - "fr": "Surinam", - "ja": "スリナム", - "it": "Suriname", - "br": "Suriname", - "pt": "Suriname", - "nl": "Suriname", - "hr": "Surinam", - "fa": "سورینام" - }, - "flag": "https://restcountries.eu/data/sur.svg", - "regionalBlocs": [ - { - "acronym": "CARICOM", - "name": "Caribbean Community", - "otherAcronyms": [], - "otherNames": [ - "Comunidad del Caribe", - "Communauté Caribéenne", - "Caribische Gemeenschap" - ] - }, - { - "acronym": "USAN", - "name": "Union of South American Nations", - "otherAcronyms": ["UNASUR", "UNASUL", "UZAN"], - "otherNames": [ - "Unión de Naciones Suramericanas", - "União de Nações Sul-Americanas", - "Unie van Zuid-Amerikaanse Naties", - "South American Union" - ] - } - ], - "cioc": "SUR" - }, - { - "name": "Svalbard and Jan Mayen", - "topLevelDomain": [".sj"], - "alpha2Code": "SJ", - "alpha3Code": "SJM", - "callingCodes": ["4779"], - "capital": "Longyearbyen", - "altSpellings": ["SJ", "Svalbard and Jan Mayen Islands"], - "region": "Europe", - "subregion": "Northern Europe", - "population": 2562, - "latlng": [78.0, 20.0], - "demonym": "Norwegian", - "area": null, - "gini": null, - "timezones": ["UTC+01:00"], - "borders": [], - "nativeName": "Svalbard og Jan Mayen", - "numericCode": "744", - "currencies": [ - { "code": "NOK", "name": "Norwegian krone", "symbol": "kr" } - ], - "languages": [ - { - "iso639_1": "no", - "iso639_2": "nor", - "name": "Norwegian", - "nativeName": "Norsk" - } - ], - "translations": { - "de": "Svalbard und Jan Mayen", - "es": "Islas Svalbard y Jan Mayen", - "fr": "Svalbard et Jan Mayen", - "ja": "スヴァールバル諸島およびヤンマイエン島", - "it": "Svalbard e Jan Mayen", - "br": "Svalbard", - "pt": "Svalbard", - "nl": "Svalbard en Jan Mayen", - "hr": "Svalbard i Jan Mayen", - "fa": "سوالبارد و یان ماین" - }, - "flag": "https://restcountries.eu/data/sjm.svg", - "regionalBlocs": [], - "cioc": "" - }, - { - "name": "Swaziland", - "topLevelDomain": [".sz"], - "alpha2Code": "SZ", - "alpha3Code": "SWZ", - "callingCodes": ["268"], - "capital": "Lobamba", - "altSpellings": [ - "SZ", - "weSwatini", - "Swatini", - "Ngwane", - "Kingdom of Swaziland", - "Umbuso waseSwatini" - ], - "region": "Africa", - "subregion": "Southern Africa", - "population": 1132657, - "latlng": [-26.5, 31.5], - "demonym": "Swazi", - "area": 17364.0, - "gini": 51.5, - "timezones": ["UTC+02:00"], - "borders": ["MOZ", "ZAF"], - "nativeName": "Swaziland", - "numericCode": "748", - "currencies": [{ "code": "SZL", "name": "Swazi lilangeni", "symbol": "L" }], - "languages": [ - { - "iso639_1": "en", - "iso639_2": "eng", - "name": "English", - "nativeName": "English" - }, - { - "iso639_1": "ss", - "iso639_2": "ssw", - "name": "Swati", - "nativeName": "SiSwati" - } - ], - "translations": { - "de": "Swasiland", - "es": "Suazilandia", - "fr": "Swaziland", - "ja": "スワジランド", - "it": "Swaziland", - "br": "Suazilândia", - "pt": "Suazilândia", - "nl": "Swaziland", - "hr": "Svazi", - "fa": "سوازیلند" - }, - "flag": "https://restcountries.eu/data/swz.svg", - "regionalBlocs": [ - { - "acronym": "AU", - "name": "African Union", - "otherAcronyms": [], - "otherNames": [ - "الاتحاد الأفريقي", - "Union africaine", - "União Africana", - "Unión Africana", - "Umoja wa Afrika" - ] - } - ], - "cioc": "SWZ" - }, - { - "name": "Sweden", - "topLevelDomain": [".se"], - "alpha2Code": "SE", - "alpha3Code": "SWE", - "callingCodes": ["46"], - "capital": "Stockholm", - "altSpellings": ["SE", "Kingdom of Sweden", "Konungariket Sverige"], - "region": "Europe", - "subregion": "Northern Europe", - "population": 9894888, - "latlng": [62.0, 15.0], - "demonym": "Swedish", - "area": 450295.0, - "gini": 25.0, - "timezones": ["UTC+01:00"], - "borders": ["FIN", "NOR"], - "nativeName": "Sverige", - "numericCode": "752", - "currencies": [{ "code": "SEK", "name": "Swedish krona", "symbol": "kr" }], - "languages": [ - { - "iso639_1": "sv", - "iso639_2": "swe", - "name": "Swedish", - "nativeName": "svenska" - } - ], - "translations": { - "de": "Schweden", - "es": "Suecia", - "fr": "Suède", - "ja": "スウェーデン", - "it": "Svezia", - "br": "Suécia", - "pt": "Suécia", - "nl": "Zweden", - "hr": "Švedska", - "fa": "سوئد" - }, - "flag": "https://restcountries.eu/data/swe.svg", - "regionalBlocs": [ - { - "acronym": "EU", - "name": "European Union", - "otherAcronyms": [], - "otherNames": [] - } - ], - "cioc": "SWE" - }, - { - "name": "Switzerland", - "topLevelDomain": [".ch"], - "alpha2Code": "CH", - "alpha3Code": "CHE", - "callingCodes": ["41"], - "capital": "Bern", - "altSpellings": [ - "CH", - "Swiss Confederation", - "Schweiz", - "Suisse", - "Svizzera", - "Svizra" - ], - "region": "Europe", - "subregion": "Western Europe", - "population": 8341600, - "latlng": [47.0, 8.0], - "demonym": "Swiss", - "area": 41284.0, - "gini": 33.7, - "timezones": ["UTC+01:00"], - "borders": ["AUT", "FRA", "ITA", "LIE", "DEU"], - "nativeName": "Schweiz", - "numericCode": "756", - "currencies": [{ "code": "CHF", "name": "Swiss franc", "symbol": "Fr" }], - "languages": [ - { - "iso639_1": "de", - "iso639_2": "deu", - "name": "German", - "nativeName": "Deutsch" - }, - { - "iso639_1": "fr", - "iso639_2": "fra", - "name": "French", - "nativeName": "français" - }, - { - "iso639_1": "it", - "iso639_2": "ita", - "name": "Italian", - "nativeName": "Italiano" - } - ], - "translations": { - "de": "Schweiz", - "es": "Suiza", - "fr": "Suisse", - "ja": "スイス", - "it": "Svizzera", - "br": "Suíça", - "pt": "Suíça", - "nl": "Zwitserland", - "hr": "Švicarska", - "fa": "سوئیس" - }, - "flag": "https://restcountries.eu/data/che.svg", - "regionalBlocs": [ - { - "acronym": "EFTA", - "name": "European Free Trade Association", - "otherAcronyms": [], - "otherNames": [] - } - ], - "cioc": "SUI" - }, - { - "name": "Syrian Arab Republic", - "topLevelDomain": [".sy"], - "alpha2Code": "SY", - "alpha3Code": "SYR", - "callingCodes": ["963"], - "capital": "Damascus", - "altSpellings": [ - "SY", - "Syrian Arab Republic", - "Al-Jumhūrīyah Al-ʻArabīyah As-Sūrīyah" - ], - "region": "Asia", - "subregion": "Western Asia", - "population": 18564000, - "latlng": [35.0, 38.0], - "demonym": "Syrian", - "area": 185180.0, - "gini": 35.8, - "timezones": ["UTC+02:00"], - "borders": ["IRQ", "ISR", "JOR", "LBN", "TUR"], - "nativeName": "سوريا", - "numericCode": "760", - "currencies": [{ "code": "SYP", "name": "Syrian pound", "symbol": "£" }], - "languages": [ - { - "iso639_1": "ar", - "iso639_2": "ara", - "name": "Arabic", - "nativeName": "العربية" - } - ], - "translations": { - "de": "Syrien", - "es": "Siria", - "fr": "Syrie", - "ja": "シリア・アラブ共和国", - "it": "Siria", - "br": "Síria", - "pt": "Síria", - "nl": "Syrië", - "hr": "Sirija", - "fa": "سوریه" - }, - "flag": "https://restcountries.eu/data/syr.svg", - "regionalBlocs": [ - { - "acronym": "AL", - "name": "Arab League", - "otherAcronyms": [], - "otherNames": [ - "جامعة الدول العربية", - "Jāmiʻat ad-Duwal al-ʻArabīyah", - "League of Arab States" - ] - } - ], - "cioc": "SYR" - }, - { - "name": "Taiwan", - "topLevelDomain": [".tw"], - "alpha2Code": "TW", - "alpha3Code": "TWN", - "callingCodes": ["886"], - "capital": "Taipei", - "altSpellings": [ - "TW", - "Táiwān", - "Republic of China", - "中華民國", - "Zhōnghuá Mínguó" - ], - "region": "Asia", - "subregion": "Eastern Asia", - "population": 23503349, - "latlng": [23.5, 121.0], - "demonym": "Taiwanese", - "area": 36193.0, - "gini": null, - "timezones": ["UTC+08:00"], - "borders": [], - "nativeName": "臺灣", - "numericCode": "158", - "currencies": [ - { "code": "TWD", "name": "New Taiwan dollar", "symbol": "$" } - ], - "languages": [ - { - "iso639_1": "zh", - "iso639_2": "zho", - "name": "Chinese", - "nativeName": "中文 (Zhōngwén)" - } - ], - "translations": { - "de": "Taiwan", - "es": "Taiwán", - "fr": "Taïwan", - "ja": "台湾(中華民国)", - "it": "Taiwan", - "br": "Taiwan", - "pt": "Taiwan", - "nl": "Taiwan", - "hr": "Tajvan", - "fa": "تایوان" - }, - "flag": "https://restcountries.eu/data/twn.svg", - "regionalBlocs": [], - "cioc": "TPE" - }, - { - "name": "Tajikistan", - "topLevelDomain": [".tj"], - "alpha2Code": "TJ", - "alpha3Code": "TJK", - "callingCodes": ["992"], - "capital": "Dushanbe", - "altSpellings": [ - "TJ", - "Toçikiston", - "Republic of Tajikistan", - "Ҷумҳурии Тоҷикистон", - "Çumhuriyi Toçikiston" - ], - "region": "Asia", - "subregion": "Central Asia", - "population": 8593600, - "latlng": [39.0, 71.0], - "demonym": "Tadzhik", - "area": 143100.0, - "gini": 30.8, - "timezones": ["UTC+05:00"], - "borders": ["AFG", "CHN", "KGZ", "UZB"], - "nativeName": "Тоҷикистон", - "numericCode": "762", - "currencies": [ - { "code": "TJS", "name": "Tajikistani somoni", "symbol": "ЅМ" } - ], - "languages": [ - { - "iso639_1": "tg", - "iso639_2": "tgk", - "name": "Tajik", - "nativeName": "тоҷикӣ" - }, - { - "iso639_1": "ru", - "iso639_2": "rus", - "name": "Russian", - "nativeName": "Русский" - } - ], - "translations": { - "de": "Tadschikistan", - "es": "Tayikistán", - "fr": "Tadjikistan", - "ja": "タジキスタン", - "it": "Tagikistan", - "br": "Tajiquistão", - "pt": "Tajiquistão", - "nl": "Tadzjikistan", - "hr": "Tađikistan", - "fa": "تاجیکستان" - }, - "flag": "https://restcountries.eu/data/tjk.svg", - "regionalBlocs": [], - "cioc": "TJK" - }, - { - "name": "Tanzania, United Republic of", - "topLevelDomain": [".tz"], - "alpha2Code": "TZ", - "alpha3Code": "TZA", - "callingCodes": ["255"], - "capital": "Dodoma", - "altSpellings": [ - "TZ", - "United Republic of Tanzania", - "Jamhuri ya Muungano wa Tanzania" - ], - "region": "Africa", - "subregion": "Eastern Africa", - "population": 55155000, - "latlng": [-6.0, 35.0], - "demonym": "Tanzanian", - "area": 945087.0, - "gini": 37.6, - "timezones": ["UTC+03:00"], - "borders": ["BDI", "COD", "KEN", "MWI", "MOZ", "RWA", "UGA", "ZMB"], - "nativeName": "Tanzania", - "numericCode": "834", - "currencies": [ - { "code": "TZS", "name": "Tanzanian shilling", "symbol": "Sh" } - ], - "languages": [ - { - "iso639_1": "sw", - "iso639_2": "swa", - "name": "Swahili", - "nativeName": "Kiswahili" - }, - { - "iso639_1": "en", - "iso639_2": "eng", - "name": "English", - "nativeName": "English" - } - ], - "translations": { - "de": "Tansania", - "es": "Tanzania", - "fr": "Tanzanie", - "ja": "タンザニア", - "it": "Tanzania", - "br": "Tanzânia", - "pt": "Tanzânia", - "nl": "Tanzania", - "hr": "Tanzanija", - "fa": "تانزانیا" - }, - "flag": "https://restcountries.eu/data/tza.svg", - "regionalBlocs": [ - { - "acronym": "AU", - "name": "African Union", - "otherAcronyms": [], - "otherNames": [ - "الاتحاد الأفريقي", - "Union africaine", - "União Africana", - "Unión Africana", - "Umoja wa Afrika" - ] - } - ], - "cioc": "TAN" - }, - { - "name": "Thailand", - "topLevelDomain": [".th"], - "alpha2Code": "TH", - "alpha3Code": "THA", - "callingCodes": ["66"], - "capital": "Bangkok", - "altSpellings": [ - "TH", - "Prathet", - "Thai", - "Kingdom of Thailand", - "ราชอาณาจักรไทย", - "Ratcha Anachak Thai" - ], - "region": "Asia", - "subregion": "South-Eastern Asia", - "population": 65327652, - "latlng": [15.0, 100.0], - "demonym": "Thai", - "area": 513120.0, - "gini": 40.0, - "timezones": ["UTC+07:00"], - "borders": ["MMR", "KHM", "LAO", "MYS"], - "nativeName": "ประเทศไทย", - "numericCode": "764", - "currencies": [{ "code": "THB", "name": "Thai baht", "symbol": "฿" }], - "languages": [ - { - "iso639_1": "th", - "iso639_2": "tha", - "name": "Thai", - "nativeName": "ไทย" - } - ], - "translations": { - "de": "Thailand", - "es": "Tailandia", - "fr": "Thaïlande", - "ja": "タイ", - "it": "Tailandia", - "br": "Tailândia", - "pt": "Tailândia", - "nl": "Thailand", - "hr": "Tajland", - "fa": "تایلند" - }, - "flag": "https://restcountries.eu/data/tha.svg", - "regionalBlocs": [ - { - "acronym": "ASEAN", - "name": "Association of Southeast Asian Nations", - "otherAcronyms": [], - "otherNames": [] - } - ], - "cioc": "THA" - }, - { - "name": "Timor-Leste", - "topLevelDomain": [".tl"], - "alpha2Code": "TL", - "alpha3Code": "TLS", - "callingCodes": ["670"], - "capital": "Dili", - "altSpellings": [ - "TL", - "East Timor", - "Democratic Republic of Timor-Leste", - "República Democrática de Timor-Leste", - "Repúblika Demokrátika Timór-Leste" - ], - "region": "Asia", - "subregion": "South-Eastern Asia", - "population": 1167242, - "latlng": [-8.83333333, 125.91666666], - "demonym": "East Timorese", - "area": 14874.0, - "gini": 31.9, - "timezones": ["UTC+09:00"], - "borders": ["IDN"], - "nativeName": "Timor-Leste", - "numericCode": "626", - "currencies": [ - { "code": "USD", "name": "United States dollar", "symbol": "$" }, - { "code": null, "name": null, "symbol": null } - ], - "languages": [ - { - "iso639_1": "pt", - "iso639_2": "por", - "name": "Portuguese", - "nativeName": "Português" - } - ], - "translations": { - "de": "Timor-Leste", - "es": "Timor Oriental", - "fr": "Timor oriental", - "ja": "東ティモール", - "it": "Timor Est", - "br": "Timor Leste", - "pt": "Timor Leste", - "nl": "Oost-Timor", - "hr": "Istočni Timor", - "fa": "تیمور شرقی" - }, - "flag": "https://restcountries.eu/data/tls.svg", - "regionalBlocs": [], - "cioc": "TLS" - }, - { - "name": "Togo", - "topLevelDomain": [".tg"], - "alpha2Code": "TG", - "alpha3Code": "TGO", - "callingCodes": ["228"], - "capital": "Lomé", - "altSpellings": [ - "TG", - "Togolese", - "Togolese Republic", - "République Togolaise" - ], - "region": "Africa", - "subregion": "Western Africa", - "population": 7143000, - "latlng": [8.0, 1.16666666], - "demonym": "Togolese", - "area": 56785.0, - "gini": 34.4, - "timezones": ["UTC"], - "borders": ["BEN", "BFA", "GHA"], - "nativeName": "Togo", - "numericCode": "768", - "currencies": [ - { "code": "XOF", "name": "West African CFA franc", "symbol": "Fr" } - ], - "languages": [ - { - "iso639_1": "fr", - "iso639_2": "fra", - "name": "French", - "nativeName": "français" - } - ], - "translations": { - "de": "Togo", - "es": "Togo", - "fr": "Togo", - "ja": "トーゴ", - "it": "Togo", - "br": "Togo", - "pt": "Togo", - "nl": "Togo", - "hr": "Togo", - "fa": "توگو" - }, - "flag": "https://restcountries.eu/data/tgo.svg", - "regionalBlocs": [ - { - "acronym": "AU", - "name": "African Union", - "otherAcronyms": [], - "otherNames": [ - "الاتحاد الأفريقي", - "Union africaine", - "União Africana", - "Unión Africana", - "Umoja wa Afrika" - ] - } - ], - "cioc": "TOG" - }, - { - "name": "Tokelau", - "topLevelDomain": [".tk"], - "alpha2Code": "TK", - "alpha3Code": "TKL", - "callingCodes": ["690"], - "capital": "Fakaofo", - "altSpellings": ["TK"], - "region": "Oceania", - "subregion": "Polynesia", - "population": 1411, - "latlng": [-9.0, -172.0], - "demonym": "Tokelauan", - "area": 12.0, - "gini": null, - "timezones": ["UTC+13:00"], - "borders": [], - "nativeName": "Tokelau", - "numericCode": "772", - "currencies": [ - { "code": "NZD", "name": "New Zealand dollar", "symbol": "$" } - ], - "languages": [ - { - "iso639_1": "en", - "iso639_2": "eng", - "name": "English", - "nativeName": "English" - } - ], - "translations": { - "de": "Tokelau", - "es": "Islas Tokelau", - "fr": "Tokelau", - "ja": "トケラウ", - "it": "Isole Tokelau", - "br": "Tokelau", - "pt": "Toquelau", - "nl": "Tokelau", - "hr": "Tokelau", - "fa": "توکلائو" - }, - "flag": "https://restcountries.eu/data/tkl.svg", - "regionalBlocs": [], - "cioc": "" - }, - { - "name": "Tonga", - "topLevelDomain": [".to"], - "alpha2Code": "TO", - "alpha3Code": "TON", - "callingCodes": ["676"], - "capital": "Nuku'alofa", - "altSpellings": ["TO"], - "region": "Oceania", - "subregion": "Polynesia", - "population": 103252, - "latlng": [-20.0, -175.0], - "demonym": "Tongan", - "area": 747.0, - "gini": null, - "timezones": ["UTC+13:00"], - "borders": [], - "nativeName": "Tonga", - "numericCode": "776", - "currencies": [{ "code": "TOP", "name": "Tongan paʻanga", "symbol": "T$" }], - "languages": [ - { - "iso639_1": "en", - "iso639_2": "eng", - "name": "English", - "nativeName": "English" - }, - { - "iso639_1": "to", - "iso639_2": "ton", - "name": "Tonga (Tonga Islands)", - "nativeName": "faka Tonga" - } - ], - "translations": { - "de": "Tonga", - "es": "Tonga", - "fr": "Tonga", - "ja": "トンガ", - "it": "Tonga", - "br": "Tonga", - "pt": "Tonga", - "nl": "Tonga", - "hr": "Tonga", - "fa": "تونگا" - }, - "flag": "https://restcountries.eu/data/ton.svg", - "regionalBlocs": [], - "cioc": "TGA" - }, - { - "name": "Trinidad and Tobago", - "topLevelDomain": [".tt"], - "alpha2Code": "TT", - "alpha3Code": "TTO", - "callingCodes": ["1868"], - "capital": "Port of Spain", - "altSpellings": ["TT", "Republic of Trinidad and Tobago"], - "region": "Americas", - "subregion": "Caribbean", - "population": 1349667, - "latlng": [11.0, -61.0], - "demonym": "Trinidadian", - "area": 5130.0, - "gini": 40.3, - "timezones": ["UTC-04:00"], - "borders": [], - "nativeName": "Trinidad and Tobago", - "numericCode": "780", - "currencies": [ - { "code": "TTD", "name": "Trinidad and Tobago dollar", "symbol": "$" } - ], - "languages": [ - { - "iso639_1": "en", - "iso639_2": "eng", - "name": "English", - "nativeName": "English" - } - ], - "translations": { - "de": "Trinidad und Tobago", - "es": "Trinidad y Tobago", - "fr": "Trinité et Tobago", - "ja": "トリニダード・トバゴ", - "it": "Trinidad e Tobago", - "br": "Trinidad e Tobago", - "pt": "Trindade e Tobago", - "nl": "Trinidad en Tobago", - "hr": "Trinidad i Tobago", - "fa": "ترینیداد و توباگو" - }, - "flag": "https://restcountries.eu/data/tto.svg", - "regionalBlocs": [ - { - "acronym": "CARICOM", - "name": "Caribbean Community", - "otherAcronyms": [], - "otherNames": [ - "Comunidad del Caribe", - "Communauté Caribéenne", - "Caribische Gemeenschap" - ] - } - ], - "cioc": "TTO" - }, - { - "name": "Tunisia", - "topLevelDomain": [".tn"], - "alpha2Code": "TN", - "alpha3Code": "TUN", - "callingCodes": ["216"], - "capital": "Tunis", - "altSpellings": [ - "TN", - "Republic of Tunisia", - "al-Jumhūriyyah at-Tūnisiyyah" - ], - "region": "Africa", - "subregion": "Northern Africa", - "population": 11154400, - "latlng": [34.0, 9.0], - "demonym": "Tunisian", - "area": 163610.0, - "gini": 41.4, - "timezones": ["UTC+01:00"], - "borders": ["DZA", "LBY"], - "nativeName": "تونس", - "numericCode": "788", - "currencies": [ - { "code": "TND", "name": "Tunisian dinar", "symbol": "د.ت" } - ], - "languages": [ - { - "iso639_1": "ar", - "iso639_2": "ara", - "name": "Arabic", - "nativeName": "العربية" - } - ], - "translations": { - "de": "Tunesien", - "es": "Túnez", - "fr": "Tunisie", - "ja": "チュニジア", - "it": "Tunisia", - "br": "Tunísia", - "pt": "Tunísia", - "nl": "Tunesië", - "hr": "Tunis", - "fa": "تونس" - }, - "flag": "https://restcountries.eu/data/tun.svg", - "regionalBlocs": [ - { - "acronym": "AU", - "name": "African Union", - "otherAcronyms": [], - "otherNames": [ - "الاتحاد الأفريقي", - "Union africaine", - "União Africana", - "Unión Africana", - "Umoja wa Afrika" - ] - }, - { - "acronym": "AL", - "name": "Arab League", - "otherAcronyms": [], - "otherNames": [ - "جامعة الدول العربية", - "Jāmiʻat ad-Duwal al-ʻArabīyah", - "League of Arab States" - ] - } - ], - "cioc": "TUN" - }, - { - "name": "Turkey", - "topLevelDomain": [".tr"], - "alpha2Code": "TR", - "alpha3Code": "TUR", - "callingCodes": ["90"], - "capital": "Ankara", - "altSpellings": [ - "TR", - "Turkiye", - "Republic of Turkey", - "Türkiye Cumhuriyeti" - ], - "region": "Asia", - "subregion": "Western Asia", - "population": 78741053, - "latlng": [39.0, 35.0], - "demonym": "Turkish", - "area": 783562.0, - "gini": 39.0, - "timezones": ["UTC+03:00"], - "borders": ["ARM", "AZE", "BGR", "GEO", "GRC", "IRN", "IRQ", "SYR"], - "nativeName": "Türkiye", - "numericCode": "792", - "currencies": [{ "code": "TRY", "name": "Turkish lira", "symbol": null }], - "languages": [ - { - "iso639_1": "tr", - "iso639_2": "tur", - "name": "Turkish", - "nativeName": "Türkçe" - } - ], - "translations": { - "de": "Türkei", - "es": "Turquía", - "fr": "Turquie", - "ja": "トルコ", - "it": "Turchia", - "br": "Turquia", - "pt": "Turquia", - "nl": "Turkije", - "hr": "Turska", - "fa": "ترکیه" - }, - "flag": "https://restcountries.eu/data/tur.svg", - "regionalBlocs": [], - "cioc": "TUR" - }, - { - "name": "Turkmenistan", - "topLevelDomain": [".tm"], - "alpha2Code": "TM", - "alpha3Code": "TKM", - "callingCodes": ["993"], - "capital": "Ashgabat", - "altSpellings": ["TM"], - "region": "Asia", - "subregion": "Central Asia", - "population": 4751120, - "latlng": [40.0, 60.0], - "demonym": "Turkmen", - "area": 488100.0, - "gini": 40.8, - "timezones": ["UTC+05:00"], - "borders": ["AFG", "IRN", "KAZ", "UZB"], - "nativeName": "Türkmenistan", - "numericCode": "795", - "currencies": [ - { "code": "TMT", "name": "Turkmenistan manat", "symbol": "m" } - ], - "languages": [ - { - "iso639_1": "tk", - "iso639_2": "tuk", - "name": "Turkmen", - "nativeName": "Türkmen" - }, - { - "iso639_1": "ru", - "iso639_2": "rus", - "name": "Russian", - "nativeName": "Русский" - } - ], - "translations": { - "de": "Turkmenistan", - "es": "Turkmenistán", - "fr": "Turkménistan", - "ja": "トルクメニスタン", - "it": "Turkmenistan", - "br": "Turcomenistão", - "pt": "Turquemenistão", - "nl": "Turkmenistan", - "hr": "Turkmenistan", - "fa": "ترکمنستان" - }, - "flag": "https://restcountries.eu/data/tkm.svg", - "regionalBlocs": [], - "cioc": "TKM" - }, - { - "name": "Turks and Caicos Islands", - "topLevelDomain": [".tc"], - "alpha2Code": "TC", - "alpha3Code": "TCA", - "callingCodes": ["1649"], - "capital": "Cockburn Town", - "altSpellings": ["TC"], - "region": "Americas", - "subregion": "Caribbean", - "population": 31458, - "latlng": [21.75, -71.58333333], - "demonym": "Turks and Caicos Islander", - "area": 948.0, - "gini": null, - "timezones": ["UTC-04:00"], - "borders": [], - "nativeName": "Turks and Caicos Islands", - "numericCode": "796", - "currencies": [ - { "code": "USD", "name": "United States dollar", "symbol": "$" } - ], - "languages": [ - { - "iso639_1": "en", - "iso639_2": "eng", - "name": "English", - "nativeName": "English" - } - ], - "translations": { - "de": "Turks- und Caicosinseln", - "es": "Islas Turks y Caicos", - "fr": "Îles Turques-et-Caïques", - "ja": "タークス・カイコス諸島", - "it": "Isole Turks e Caicos", - "br": "Ilhas Turcas e Caicos", - "pt": "Ilhas Turcas e Caicos", - "nl": "Turks- en Caicoseilanden", - "hr": "Otoci Turks i Caicos", - "fa": "جزایر تورکس و کایکوس" - }, - "flag": "https://restcountries.eu/data/tca.svg", - "regionalBlocs": [], - "cioc": "" - }, - { - "name": "Tuvalu", - "topLevelDomain": [".tv"], - "alpha2Code": "TV", - "alpha3Code": "TUV", - "callingCodes": ["688"], - "capital": "Funafuti", - "altSpellings": ["TV"], - "region": "Oceania", - "subregion": "Polynesia", - "population": 10640, - "latlng": [-8.0, 178.0], - "demonym": "Tuvaluan", - "area": 26.0, - "gini": null, - "timezones": ["UTC+12:00"], - "borders": [], - "nativeName": "Tuvalu", - "numericCode": "798", - "currencies": [ - { "code": "AUD", "name": "Australian dollar", "symbol": "$" }, - { "code": "TVD[G]", "name": "Tuvaluan dollar", "symbol": "$" } - ], - "languages": [ - { - "iso639_1": "en", - "iso639_2": "eng", - "name": "English", - "nativeName": "English" - } - ], - "translations": { - "de": "Tuvalu", - "es": "Tuvalu", - "fr": "Tuvalu", - "ja": "ツバル", - "it": "Tuvalu", - "br": "Tuvalu", - "pt": "Tuvalu", - "nl": "Tuvalu", - "hr": "Tuvalu", - "fa": "تووالو" - }, - "flag": "https://restcountries.eu/data/tuv.svg", - "regionalBlocs": [], - "cioc": "TUV" - }, - { - "name": "Uganda", - "topLevelDomain": [".ug"], - "alpha2Code": "UG", - "alpha3Code": "UGA", - "callingCodes": ["256"], - "capital": "Kampala", - "altSpellings": ["UG", "Republic of Uganda", "Jamhuri ya Uganda"], - "region": "Africa", - "subregion": "Eastern Africa", - "population": 33860700, - "latlng": [1.0, 32.0], - "demonym": "Ugandan", - "area": 241550.0, - "gini": 44.3, - "timezones": ["UTC+03:00"], - "borders": ["COD", "KEN", "RWA", "SSD", "TZA"], - "nativeName": "Uganda", - "numericCode": "800", - "currencies": [ - { "code": "UGX", "name": "Ugandan shilling", "symbol": "Sh" } - ], - "languages": [ - { - "iso639_1": "en", - "iso639_2": "eng", - "name": "English", - "nativeName": "English" - }, - { - "iso639_1": "sw", - "iso639_2": "swa", - "name": "Swahili", - "nativeName": "Kiswahili" - } - ], - "translations": { - "de": "Uganda", - "es": "Uganda", - "fr": "Uganda", - "ja": "ウガンダ", - "it": "Uganda", - "br": "Uganda", - "pt": "Uganda", - "nl": "Oeganda", - "hr": "Uganda", - "fa": "اوگاندا" - }, - "flag": "https://restcountries.eu/data/uga.svg", - "regionalBlocs": [ - { - "acronym": "AU", - "name": "African Union", - "otherAcronyms": [], - "otherNames": [ - "الاتحاد الأفريقي", - "Union africaine", - "União Africana", - "Unión Africana", - "Umoja wa Afrika" - ] - } - ], - "cioc": "UGA" - }, - { - "name": "Ukraine", - "topLevelDomain": [".ua"], - "alpha2Code": "UA", - "alpha3Code": "UKR", - "callingCodes": ["380"], - "capital": "Kiev", - "altSpellings": ["UA", "Ukrayina"], - "region": "Europe", - "subregion": "Eastern Europe", - "population": 42692393, - "latlng": [49.0, 32.0], - "demonym": "Ukrainian", - "area": 603700.0, - "gini": 26.4, - "timezones": ["UTC+02:00"], - "borders": ["BLR", "HUN", "MDA", "POL", "ROU", "RUS", "SVK"], - "nativeName": "Україна", - "numericCode": "804", - "currencies": [ - { "code": "UAH", "name": "Ukrainian hryvnia", "symbol": "₴" } - ], - "languages": [ - { - "iso639_1": "uk", - "iso639_2": "ukr", - "name": "Ukrainian", - "nativeName": "Українська" - } - ], - "translations": { - "de": "Ukraine", - "es": "Ucrania", - "fr": "Ukraine", - "ja": "ウクライナ", - "it": "Ucraina", - "br": "Ucrânia", - "pt": "Ucrânia", - "nl": "Oekraïne", - "hr": "Ukrajina", - "fa": "وکراین" - }, - "flag": "https://restcountries.eu/data/ukr.svg", - "regionalBlocs": [], - "cioc": "UKR" - }, - { - "name": "United Arab Emirates", - "topLevelDomain": [".ae"], - "alpha2Code": "AE", - "alpha3Code": "ARE", - "callingCodes": ["971"], - "capital": "Abu Dhabi", - "altSpellings": ["AE", "UAE"], - "region": "Asia", - "subregion": "Western Asia", - "population": 9856000, - "latlng": [24.0, 54.0], - "demonym": "Emirati", - "area": 83600.0, - "gini": null, - "timezones": ["UTC+04"], - "borders": ["OMN", "SAU"], - "nativeName": "دولة الإمارات العربية المتحدة", - "numericCode": "784", - "currencies": [ - { "code": "AED", "name": "United Arab Emirates dirham", "symbol": "د.إ" } - ], - "languages": [ - { - "iso639_1": "ar", - "iso639_2": "ara", - "name": "Arabic", - "nativeName": "العربية" - } - ], - "translations": { - "de": "Vereinigte Arabische Emirate", - "es": "Emiratos Árabes Unidos", - "fr": "Émirats arabes unis", - "ja": "アラブ首長国連邦", - "it": "Emirati Arabi Uniti", - "br": "Emirados árabes Unidos", - "pt": "Emirados árabes Unidos", - "nl": "Verenigde Arabische Emiraten", - "hr": "Ujedinjeni Arapski Emirati", - "fa": "امارات متحده عربی" - }, - "flag": "https://restcountries.eu/data/are.svg", - "regionalBlocs": [ - { - "acronym": "AL", - "name": "Arab League", - "otherAcronyms": [], - "otherNames": [ - "جامعة الدول العربية", - "Jāmiʻat ad-Duwal al-ʻArabīyah", - "League of Arab States" - ] - } - ], - "cioc": "UAE" - }, - { - "name": "United Kingdom of Great Britain and Northern Ireland", - "topLevelDomain": [".uk"], - "alpha2Code": "GB", - "alpha3Code": "GBR", - "callingCodes": ["44"], - "capital": "London", - "altSpellings": ["GB", "UK", "Great Britain"], - "region": "Europe", - "subregion": "Northern Europe", - "population": 65110000, - "latlng": [54.0, -2.0], - "demonym": "British", - "area": 242900.0, - "gini": 34.0, - "timezones": [ - "UTC-08:00", - "UTC-05:00", - "UTC-04:00", - "UTC-03:00", - "UTC-02:00", - "UTC", - "UTC+01:00", - "UTC+02:00", - "UTC+06:00" - ], - "borders": ["IRL"], - "nativeName": "United Kingdom", - "numericCode": "826", - "currencies": [{ "code": "GBP", "name": "British pound", "symbol": "£" }], - "languages": [ - { - "iso639_1": "en", - "iso639_2": "eng", - "name": "English", - "nativeName": "English" - } - ], - "translations": { - "de": "Vereinigtes Königreich", - "es": "Reino Unido", - "fr": "Royaume-Uni", - "ja": "イギリス", - "it": "Regno Unito", - "br": "Reino Unido", - "pt": "Reino Unido", - "nl": "Verenigd Koninkrijk", - "hr": "Ujedinjeno Kraljevstvo", - "fa": "بریتانیای کبیر و ایرلند شمالی" - }, - "flag": "https://restcountries.eu/data/gbr.svg", - "regionalBlocs": [ - { - "acronym": "EU", - "name": "European Union", - "otherAcronyms": [], - "otherNames": [] - } - ], - "cioc": "GBR" - }, - { - "name": "United States of America", - "topLevelDomain": [".us"], - "alpha2Code": "US", - "alpha3Code": "USA", - "callingCodes": ["1"], - "capital": "Washington, D.C.", - "altSpellings": ["US", "USA", "United States of America"], - "region": "Americas", - "subregion": "Northern America", - "population": 323947000, - "latlng": [38.0, -97.0], - "demonym": "American", - "area": 9629091.0, - "gini": 48.0, - "timezones": [ - "UTC-12:00", - "UTC-11:00", - "UTC-10:00", - "UTC-09:00", - "UTC-08:00", - "UTC-07:00", - "UTC-06:00", - "UTC-05:00", - "UTC-04:00", - "UTC+10:00", - "UTC+12:00" - ], - "borders": ["CAN", "MEX"], - "nativeName": "United States", - "numericCode": "840", - "currencies": [ - { "code": "USD", "name": "United States dollar", "symbol": "$" } - ], - "languages": [ - { - "iso639_1": "en", - "iso639_2": "eng", - "name": "English", - "nativeName": "English" - } - ], - "translations": { - "de": "Vereinigte Staaten von Amerika", - "es": "Estados Unidos", - "fr": "États-Unis", - "ja": "アメリカ合衆国", - "it": "Stati Uniti D'America", - "br": "Estados Unidos", - "pt": "Estados Unidos", - "nl": "Verenigde Staten", - "hr": "Sjedinjene Američke Države", - "fa": "ایالات متحده آمریکا" - }, - "flag": "https://restcountries.eu/data/usa.svg", - "regionalBlocs": [ - { - "acronym": "NAFTA", - "name": "North American Free Trade Agreement", - "otherAcronyms": [], - "otherNames": [ - "Tratado de Libre Comercio de América del Norte", - "Accord de Libre-échange Nord-Américain" - ] - } - ], - "cioc": "USA" - }, - { - "name": "Uruguay", - "topLevelDomain": [".uy"], - "alpha2Code": "UY", - "alpha3Code": "URY", - "callingCodes": ["598"], - "capital": "Montevideo", - "altSpellings": [ - "UY", - "Oriental Republic of Uruguay", - "República Oriental del Uruguay" - ], - "region": "Americas", - "subregion": "South America", - "population": 3480222, - "latlng": [-33.0, -56.0], - "demonym": "Uruguayan", - "area": 181034.0, - "gini": 39.7, - "timezones": ["UTC-03:00"], - "borders": ["ARG", "BRA"], - "nativeName": "Uruguay", - "numericCode": "858", - "currencies": [{ "code": "UYU", "name": "Uruguayan peso", "symbol": "$" }], - "languages": [ - { - "iso639_1": "es", - "iso639_2": "spa", - "name": "Spanish", - "nativeName": "Español" - } - ], - "translations": { - "de": "Uruguay", - "es": "Uruguay", - "fr": "Uruguay", - "ja": "ウルグアイ", - "it": "Uruguay", - "br": "Uruguai", - "pt": "Uruguai", - "nl": "Uruguay", - "hr": "Urugvaj", - "fa": "اروگوئه" - }, - "flag": "https://restcountries.eu/data/ury.svg", - "regionalBlocs": [ - { - "acronym": "USAN", - "name": "Union of South American Nations", - "otherAcronyms": ["UNASUR", "UNASUL", "UZAN"], - "otherNames": [ - "Unión de Naciones Suramericanas", - "União de Nações Sul-Americanas", - "Unie van Zuid-Amerikaanse Naties", - "South American Union" - ] - } - ], - "cioc": "URU" - }, - { - "name": "Uzbekistan", - "topLevelDomain": [".uz"], - "alpha2Code": "UZ", - "alpha3Code": "UZB", - "callingCodes": ["998"], - "capital": "Tashkent", - "altSpellings": [ - "UZ", - "Republic of Uzbekistan", - "O‘zbekiston Respublikasi", - "Ўзбекистон Республикаси" - ], - "region": "Asia", - "subregion": "Central Asia", - "population": 31576400, - "latlng": [41.0, 64.0], - "demonym": "Uzbekistani", - "area": 447400.0, - "gini": 36.7, - "timezones": ["UTC+05:00"], - "borders": ["AFG", "KAZ", "KGZ", "TJK", "TKM"], - "nativeName": "O‘zbekiston", - "numericCode": "860", - "currencies": [ - { "code": "UZS", "name": "Uzbekistani so'm", "symbol": null } - ], - "languages": [ - { - "iso639_1": "uz", - "iso639_2": "uzb", - "name": "Uzbek", - "nativeName": "Oʻzbek" - }, - { - "iso639_1": "ru", - "iso639_2": "rus", - "name": "Russian", - "nativeName": "Русский" - } - ], - "translations": { - "de": "Usbekistan", - "es": "Uzbekistán", - "fr": "Ouzbékistan", - "ja": "ウズベキスタン", - "it": "Uzbekistan", - "br": "Uzbequistão", - "pt": "Usbequistão", - "nl": "Oezbekistan", - "hr": "Uzbekistan", - "fa": "ازبکستان" - }, - "flag": "https://restcountries.eu/data/uzb.svg", - "regionalBlocs": [], - "cioc": "UZB" - }, - { - "name": "Vanuatu", - "topLevelDomain": [".vu"], - "alpha2Code": "VU", - "alpha3Code": "VUT", - "callingCodes": ["678"], - "capital": "Port Vila", - "altSpellings": [ - "VU", - "Republic of Vanuatu", - "Ripablik blong Vanuatu", - "République de Vanuatu" - ], - "region": "Oceania", - "subregion": "Melanesia", - "population": 277500, - "latlng": [-16.0, 167.0], - "demonym": "Ni-Vanuatu", - "area": 12189.0, - "gini": null, - "timezones": ["UTC+11:00"], - "borders": [], - "nativeName": "Vanuatu", - "numericCode": "548", - "currencies": [{ "code": "VUV", "name": "Vanuatu vatu", "symbol": "Vt" }], - "languages": [ - { - "iso639_1": "bi", - "iso639_2": "bis", - "name": "Bislama", - "nativeName": "Bislama" - }, - { - "iso639_1": "en", - "iso639_2": "eng", - "name": "English", - "nativeName": "English" - }, - { - "iso639_1": "fr", - "iso639_2": "fra", - "name": "French", - "nativeName": "français" - } - ], - "translations": { - "de": "Vanuatu", - "es": "Vanuatu", - "fr": "Vanuatu", - "ja": "バヌアツ", - "it": "Vanuatu", - "br": "Vanuatu", - "pt": "Vanuatu", - "nl": "Vanuatu", - "hr": "Vanuatu", - "fa": "وانواتو" - }, - "flag": "https://restcountries.eu/data/vut.svg", - "regionalBlocs": [], - "cioc": "VAN" - }, - { - "name": "Venezuela (Bolivarian Republic of)", - "topLevelDomain": [".ve"], - "alpha2Code": "VE", - "alpha3Code": "VEN", - "callingCodes": ["58"], - "capital": "Caracas", - "altSpellings": [ - "VE", - "Bolivarian Republic of Venezuela", - "República Bolivariana de Venezuela" - ], - "region": "Americas", - "subregion": "South America", - "population": 31028700, - "latlng": [8.0, -66.0], - "demonym": "Venezuelan", - "area": 916445.0, - "gini": 44.8, - "timezones": ["UTC-04:00"], - "borders": ["BRA", "COL", "GUY"], - "nativeName": "Venezuela", - "numericCode": "862", - "currencies": [ - { "code": "VEF", "name": "Venezuelan bolívar", "symbol": "Bs F" } - ], - "languages": [ - { - "iso639_1": "es", - "iso639_2": "spa", - "name": "Spanish", - "nativeName": "Español" - } - ], - "translations": { - "de": "Venezuela", - "es": "Venezuela", - "fr": "Venezuela", - "ja": "ベネズエラ・ボリバル共和国", - "it": "Venezuela", - "br": "Venezuela", - "pt": "Venezuela", - "nl": "Venezuela", - "hr": "Venezuela", - "fa": "ونزوئلا" - }, - "flag": "https://restcountries.eu/data/ven.svg", - "regionalBlocs": [ - { - "acronym": "USAN", - "name": "Union of South American Nations", - "otherAcronyms": ["UNASUR", "UNASUL", "UZAN"], - "otherNames": [ - "Unión de Naciones Suramericanas", - "União de Nações Sul-Americanas", - "Unie van Zuid-Amerikaanse Naties", - "South American Union" - ] - } - ], - "cioc": "VEN" - }, - { - "name": "Viet Nam", - "topLevelDomain": [".vn"], - "alpha2Code": "VN", - "alpha3Code": "VNM", - "callingCodes": ["84"], - "capital": "Hanoi", - "altSpellings": [ - "VN", - "Socialist Republic of Vietnam", - "Cộng hòa Xã hội chủ nghĩa Việt Nam" - ], - "region": "Asia", - "subregion": "South-Eastern Asia", - "population": 92700000, - "latlng": [16.16666666, 107.83333333], - "demonym": "Vietnamese", - "area": 331212.0, - "gini": 35.6, - "timezones": ["UTC+07:00"], - "borders": ["KHM", "CHN", "LAO"], - "nativeName": "Việt Nam", - "numericCode": "704", - "currencies": [{ "code": "VND", "name": "Vietnamese đồng", "symbol": "₫" }], - "languages": [ - { - "iso639_1": "vi", - "iso639_2": "vie", - "name": "Vietnamese", - "nativeName": "Tiếng Việt" - } - ], - "translations": { - "de": "Vietnam", - "es": "Vietnam", - "fr": "Viêt Nam", - "ja": "ベトナム", - "it": "Vietnam", - "br": "Vietnã", - "pt": "Vietname", - "nl": "Vietnam", - "hr": "Vijetnam", - "fa": "ویتنام" - }, - "flag": "https://restcountries.eu/data/vnm.svg", - "regionalBlocs": [ - { - "acronym": "ASEAN", - "name": "Association of Southeast Asian Nations", - "otherAcronyms": [], - "otherNames": [] - } - ], - "cioc": "VIE" - }, - { - "name": "Wallis and Futuna", - "topLevelDomain": [".wf"], - "alpha2Code": "WF", - "alpha3Code": "WLF", - "callingCodes": ["681"], - "capital": "Mata-Utu", - "altSpellings": [ - "WF", - "Territory of the Wallis and Futuna Islands", - "Territoire des îles Wallis et Futuna" - ], - "region": "Oceania", - "subregion": "Polynesia", - "population": 11750, - "latlng": [-13.3, -176.2], - "demonym": "Wallis and Futuna Islander", - "area": 142.0, - "gini": null, - "timezones": ["UTC+12:00"], - "borders": [], - "nativeName": "Wallis et Futuna", - "numericCode": "876", - "currencies": [{ "code": "XPF", "name": "CFP franc", "symbol": "Fr" }], - "languages": [ - { - "iso639_1": "fr", - "iso639_2": "fra", - "name": "French", - "nativeName": "français" - } - ], - "translations": { - "de": "Wallis und Futuna", - "es": "Wallis y Futuna", - "fr": "Wallis-et-Futuna", - "ja": "ウォリス・フツナ", - "it": "Wallis e Futuna", - "br": "Wallis e Futuna", - "pt": "Wallis e Futuna", - "nl": "Wallis en Futuna", - "hr": "Wallis i Fortuna", - "fa": "والیس و فوتونا" - }, - "flag": "https://restcountries.eu/data/wlf.svg", - "regionalBlocs": [], - "cioc": "" - }, - { - "name": "Western Sahara", - "topLevelDomain": [".eh"], - "alpha2Code": "EH", - "alpha3Code": "ESH", - "callingCodes": ["212"], - "capital": "El Aaiún", - "altSpellings": ["EH", "Taneẓroft Tutrimt"], - "region": "Africa", - "subregion": "Northern Africa", - "population": 510713, - "latlng": [24.5, -13.0], - "demonym": "Sahrawi", - "area": 266000.0, - "gini": null, - "timezones": ["UTC+00:00"], - "borders": ["DZA", "MRT", "MAR"], - "nativeName": "الصحراء الغربية", - "numericCode": "732", - "currencies": [ - { "code": "MAD", "name": "Moroccan dirham", "symbol": "د.م." }, - { "code": "DZD", "name": "Algerian dinar", "symbol": "د.ج" } - ], - "languages": [ - { - "iso639_1": "es", - "iso639_2": "spa", - "name": "Spanish", - "nativeName": "Español" - } - ], - "translations": { - "de": "Westsahara", - "es": "Sahara Occidental", - "fr": "Sahara Occidental", - "ja": "西サハラ", - "it": "Sahara Occidentale", - "br": "Saara Ocidental", - "pt": "Saara Ocidental", - "nl": "Westelijke Sahara", - "hr": "Zapadna Sahara", - "fa": "جمهوری دموکراتیک عربی صحرا" - }, - "flag": "https://restcountries.eu/data/esh.svg", - "regionalBlocs": [ - { - "acronym": "AU", - "name": "African Union", - "otherAcronyms": [], - "otherNames": [ - "الاتحاد الأفريقي", - "Union africaine", - "União Africana", - "Unión Africana", - "Umoja wa Afrika" - ] - } - ], - "cioc": "" - }, - { - "name": "Yemen", - "topLevelDomain": [".ye"], - "alpha2Code": "YE", - "alpha3Code": "YEM", - "callingCodes": ["967"], - "capital": "Sana'a", - "altSpellings": ["YE", "Yemeni Republic", "al-Jumhūriyyah al-Yamaniyyah"], - "region": "Asia", - "subregion": "Western Asia", - "population": 27478000, - "latlng": [15.0, 48.0], - "demonym": "Yemeni", - "area": 527968.0, - "gini": 37.7, - "timezones": ["UTC+03:00"], - "borders": ["OMN", "SAU"], - "nativeName": "اليَمَن", - "numericCode": "887", - "currencies": [{ "code": "YER", "name": "Yemeni rial", "symbol": "﷼" }], - "languages": [ - { - "iso639_1": "ar", - "iso639_2": "ara", - "name": "Arabic", - "nativeName": "العربية" - } - ], - "translations": { - "de": "Jemen", - "es": "Yemen", - "fr": "Yémen", - "ja": "イエメン", - "it": "Yemen", - "br": "Iêmen", - "pt": "Iémen", - "nl": "Jemen", - "hr": "Jemen", - "fa": "یمن" - }, - "flag": "https://restcountries.eu/data/yem.svg", - "regionalBlocs": [ - { - "acronym": "AL", - "name": "Arab League", - "otherAcronyms": [], - "otherNames": [ - "جامعة الدول العربية", - "Jāmiʻat ad-Duwal al-ʻArabīyah", - "League of Arab States" - ] - } - ], - "cioc": "YEM" - }, - { - "name": "Zambia", - "topLevelDomain": [".zm"], - "alpha2Code": "ZM", - "alpha3Code": "ZMB", - "callingCodes": ["260"], - "capital": "Lusaka", - "altSpellings": ["ZM", "Republic of Zambia"], - "region": "Africa", - "subregion": "Eastern Africa", - "population": 15933883, - "latlng": [-15.0, 30.0], - "demonym": "Zambian", - "area": 752612.0, - "gini": 54.6, - "timezones": ["UTC+02:00"], - "borders": ["AGO", "BWA", "COD", "MWI", "MOZ", "NAM", "TZA", "ZWE"], - "nativeName": "Zambia", - "numericCode": "894", - "currencies": [{ "code": "ZMW", "name": "Zambian kwacha", "symbol": "ZK" }], - "languages": [ - { - "iso639_1": "en", - "iso639_2": "eng", - "name": "English", - "nativeName": "English" - } - ], - "translations": { - "de": "Sambia", - "es": "Zambia", - "fr": "Zambie", - "ja": "ザンビア", - "it": "Zambia", - "br": "Zâmbia", - "pt": "Zâmbia", - "nl": "Zambia", - "hr": "Zambija", - "fa": "زامبیا" - }, - "flag": "https://restcountries.eu/data/zmb.svg", - "regionalBlocs": [ - { - "acronym": "AU", - "name": "African Union", - "otherAcronyms": [], - "otherNames": [ - "الاتحاد الأفريقي", - "Union africaine", - "União Africana", - "Unión Africana", - "Umoja wa Afrika" - ] - } - ], - "cioc": "ZAM" - }, - { - "name": "Zimbabwe", - "topLevelDomain": [".zw"], - "alpha2Code": "ZW", - "alpha3Code": "ZWE", - "callingCodes": ["263"], - "capital": "Harare", - "altSpellings": ["ZW", "Republic of Zimbabwe"], - "region": "Africa", - "subregion": "Eastern Africa", - "population": 14240168, - "latlng": [-20.0, 30.0], - "demonym": "Zimbabwean", - "area": 390757.0, - "gini": null, - "timezones": ["UTC+02:00"], - "borders": ["BWA", "MOZ", "ZAF", "ZMB"], - "nativeName": "Zimbabwe", - "numericCode": "716", - "currencies": [ - { "code": "BWP", "name": "Botswana pula", "symbol": "P" }, - { "code": "GBP", "name": "British pound", "symbol": "£" }, - { "code": "CNY", "name": "Chinese yuan", "symbol": "¥" }, - { "code": "EUR", "name": "Euro", "symbol": "€" }, - { "code": "INR", "name": "Indian rupee", "symbol": "₹" }, - { "code": "JPY", "name": "Japanese yen", "symbol": "¥" }, - { "code": "ZAR", "name": "South African rand", "symbol": "Rs" }, - { "code": "USD", "name": "United States dollar", "symbol": "$" }, - { "code": "(none)", "name": null, "symbol": null } - ], - "languages": [ - { - "iso639_1": "en", - "iso639_2": "eng", - "name": "English", - "nativeName": "English" - }, - { - "iso639_1": "sn", - "iso639_2": "sna", - "name": "Shona", - "nativeName": "chiShona" - }, - { - "iso639_1": "nd", - "iso639_2": "nde", - "name": "Northern Ndebele", - "nativeName": "isiNdebele" - } - ], - "translations": { - "de": "Simbabwe", - "es": "Zimbabue", - "fr": "Zimbabwe", - "ja": "ジンバブエ", - "it": "Zimbabwe", - "br": "Zimbabwe", - "pt": "Zimbabué", - "nl": "Zimbabwe", - "hr": "Zimbabve", - "fa": "زیمباوه" - }, - "flag": "https://restcountries.eu/data/zwe.svg", - "regionalBlocs": [ - { - "acronym": "AU", - "name": "African Union", - "otherAcronyms": [], - "otherNames": [ - "الاتحاد الأفريقي", - "Union africaine", - "União Africana", - "Unión Africana", - "Umoja wa Afrika" - ] - } - ], - "cioc": "ZIM" - } -] diff --git a/challenge-country-capitals/README.md b/challenge-country-capitals/README.md deleted file mode 100644 index 4d017bc79..000000000 --- a/challenge-country-capitals/README.md +++ /dev/null @@ -1,23 +0,0 @@ -# Challenge: make a country-capital guessing game - -## Example layout - -![screenshot](capital-game-screenshot.png) - -Load the json, `capitals.json` - -Make a react app which: - -- randomly chooses a country from the list of capitals, -- presents 5 possible capitals to choose from (one being correct), -- tells you if you guess correctly or not. - -# Additional challenges - -- Add scoring or counting of your winning streak. - -- Add a timer? - -# Data source: - -Combined and cleaned from http://country.io/data/ diff --git a/challenge-country-capitals/capital-game-screenshot.png b/challenge-country-capitals/capital-game-screenshot.png deleted file mode 100644 index 72314a74f..000000000 Binary files a/challenge-country-capitals/capital-game-screenshot.png and /dev/null differ diff --git a/challenge-country-capitals/capitals.json b/challenge-country-capitals/capitals.json deleted file mode 100644 index 932e3ac9c..000000000 --- a/challenge-country-capitals/capitals.json +++ /dev/null @@ -1,249 +0,0 @@ -[ - { "name": "Afghanistan", "capital": "Kabul" }, - { "name": "Aland Islands", "capital": "Mariehamn" }, - { "name": "Albania", "capital": "Tirana" }, - { "name": "Algeria", "capital": "Algiers" }, - { "name": "American Samoa", "capital": "Pago Pago" }, - { "name": "Andorra", "capital": "Andorra la Vella" }, - { "name": "Angola", "capital": "Luanda" }, - { "name": "Anguilla", "capital": "The Valley" }, - { "name": "Antigua and Barbuda", "capital": "St. John's" }, - { "name": "Argentina", "capital": "Buenos Aires" }, - { "name": "Armenia", "capital": "Yerevan" }, - { "name": "Aruba", "capital": "Oranjestad" }, - { "name": "Australia", "capital": "Canberra" }, - { "name": "Austria", "capital": "Vienna" }, - { "name": "Azerbaijan", "capital": "Baku" }, - { "name": "Bahamas", "capital": "Nassau" }, - { "name": "Bahrain", "capital": "Manama" }, - { "name": "Bangladesh", "capital": "Dhaka" }, - { "name": "Barbados", "capital": "Bridgetown" }, - { "name": "Belarus", "capital": "Minsk" }, - { "name": "Belgium", "capital": "Brussels" }, - { "name": "Belize", "capital": "Belmopan" }, - { "name": "Benin", "capital": "Porto-Novo" }, - { "name": "Bermuda", "capital": "Hamilton" }, - { "name": "Bhutan", "capital": "Thimphu" }, - { "name": "Bolivia", "capital": "Sucre" }, - { "name": "Bosnia and Herzegovina", "capital": "Sarajevo" }, - { "name": "Botswana", "capital": "Gaborone" }, - { "name": "Brazil", "capital": "Brasilia" }, - { "name": "British Indian Ocean Territory", "capital": "Diego Garcia" }, - { "name": "British Virgin Islands", "capital": "Road Town" }, - { "name": "Brunei", "capital": "Bandar Seri Begawan" }, - { "name": "Bulgaria", "capital": "Sofia" }, - { "name": "Burkina Faso", "capital": "Ouagadougou" }, - { "name": "Burundi", "capital": "Bujumbura" }, - { "name": "Cambodia", "capital": "Phnom Penh" }, - { "name": "Cameroon", "capital": "Yaounde" }, - { "name": "Canada", "capital": "Ottawa" }, - { "name": "Cape Verde", "capital": "Praia" }, - { "name": "Cayman Islands", "capital": "George Town" }, - { "name": "Central African Republic", "capital": "Bangui" }, - { "name": "Chad", "capital": "N'Djamena" }, - { "name": "Chile", "capital": "Santiago" }, - { "name": "China", "capital": "Beijing" }, - { "name": "Christmas Island", "capital": "Flying Fish Cove" }, - { "name": "Cocos Islands", "capital": "West Island" }, - { "name": "Colombia", "capital": "Bogota" }, - { "name": "Comoros", "capital": "Moroni" }, - { "name": "Cook Islands", "capital": "Avarua" }, - { "name": "Costa Rica", "capital": "San Jose" }, - { "name": "Croatia", "capital": "Zagreb" }, - { "name": "Cuba", "capital": "Havana" }, - { "name": "Curacao", "capital": " Willemstad" }, - { "name": "Cyprus", "capital": "Nicosia" }, - { "name": "Czech Republic", "capital": "Prague" }, - { "name": "Democratic Republic of the Congo", "capital": "Kinshasa" }, - { "name": "Denmark", "capital": "Copenhagen" }, - { "name": "Djibouti", "capital": "Djibouti" }, - { "name": "Dominica", "capital": "Roseau" }, - { "name": "Dominican Republic", "capital": "Santo Domingo" }, - { "name": "East Timor", "capital": "Dili" }, - { "name": "Ecuador", "capital": "Quito" }, - { "name": "Egypt", "capital": "Cairo" }, - { "name": "El Salvador", "capital": "San Salvador" }, - { "name": "Equatorial Guinea", "capital": "Malabo" }, - { "name": "Eritrea", "capital": "Asmara" }, - { "name": "Estonia", "capital": "Tallinn" }, - { "name": "Ethiopia", "capital": "Addis Ababa" }, - { "name": "Falkland Islands", "capital": "Stanley" }, - { "name": "Faroe Islands", "capital": "Torshavn" }, - { "name": "Fiji", "capital": "Suva" }, - { "name": "Finland", "capital": "Helsinki" }, - { "name": "France", "capital": "Paris" }, - { "name": "French Guiana", "capital": "Cayenne" }, - { "name": "French Polynesia", "capital": "Papeete" }, - { "name": "French Southern Territories", "capital": "Port-aux-Francais" }, - { "name": "Gabon", "capital": "Libreville" }, - { "name": "Gambia", "capital": "Banjul" }, - { "name": "Georgia", "capital": "Tbilisi" }, - { "name": "Germany", "capital": "Berlin" }, - { "name": "Ghana", "capital": "Accra" }, - { "name": "Gibraltar", "capital": "Gibraltar" }, - { "name": "Greece", "capital": "Athens" }, - { "name": "Greenland", "capital": "Nuuk" }, - { "name": "Grenada", "capital": "St. George's" }, - { "name": "Guadeloupe", "capital": "Basse-Terre" }, - { "name": "Guam", "capital": "Hagatna" }, - { "name": "Guatemala", "capital": "Guatemala City" }, - { "name": "Guernsey", "capital": "St Peter Port" }, - { "name": "Guinea-Bissau", "capital": "Bissau" }, - { "name": "Guinea", "capital": "Conakry" }, - { "name": "Guyana", "capital": "Georgetown" }, - { "name": "Haiti", "capital": "Port-au-Prince" }, - { "name": "Honduras", "capital": "Tegucigalpa" }, - { "name": "Hong Kong", "capital": "Hong Kong" }, - { "name": "Hungary", "capital": "Budapest" }, - { "name": "Iceland", "capital": "Reykjavik" }, - { "name": "India", "capital": "New Delhi" }, - { "name": "Indonesia", "capital": "Jakarta" }, - { "name": "Iran", "capital": "Tehran" }, - { "name": "Iraq", "capital": "Baghdad" }, - { "name": "Ireland", "capital": "Dublin" }, - { "name": "Isle of Man", "capital": "Douglas, Isle of Man" }, - { "name": "Israel", "capital": "Jerusalem" }, - { "name": "Italy", "capital": "Rome" }, - { "name": "Ivory Coast", "capital": "Yamoussoukro" }, - { "name": "Jamaica", "capital": "Kingston" }, - { "name": "Japan", "capital": "Tokyo" }, - { "name": "Jersey", "capital": "Saint Helier" }, - { "name": "Jordan", "capital": "Amman" }, - { "name": "Kazakhstan", "capital": "Astana" }, - { "name": "Kenya", "capital": "Nairobi" }, - { "name": "Kiribati", "capital": "Tarawa" }, - { "name": "Kosovo", "capital": "Pristina" }, - { "name": "Kuwait", "capital": "Kuwait City" }, - { "name": "Kyrgyzstan", "capital": "Bishkek" }, - { "name": "Laos", "capital": "Vientiane" }, - { "name": "Latvia", "capital": "Riga" }, - { "name": "Lebanon", "capital": "Beirut" }, - { "name": "Lesotho", "capital": "Maseru" }, - { "name": "Liberia", "capital": "Monrovia" }, - { "name": "Libya", "capital": "Tripolis" }, - { "name": "Liechtenstein", "capital": "Vaduz" }, - { "name": "Lithuania", "capital": "Vilnius" }, - { "name": "Luxembourg", "capital": "Luxembourg" }, - { "name": "Macao", "capital": "Macao" }, - { "name": "Macedonia", "capital": "Skopje" }, - { "name": "Madagascar", "capital": "Antananarivo" }, - { "name": "Malawi", "capital": "Lilongwe" }, - { "name": "Malaysia", "capital": "Kuala Lumpur" }, - { "name": "Maldives", "capital": "Male" }, - { "name": "Mali", "capital": "Bamako" }, - { "name": "Malta", "capital": "Valletta" }, - { "name": "Marshall Islands", "capital": "Majuro" }, - { "name": "Martinique", "capital": "Fort-de-France" }, - { "name": "Mauritania", "capital": "Nouakchott" }, - { "name": "Mauritius", "capital": "Port Louis" }, - { "name": "Mayotte", "capital": "Mamoudzou" }, - { "name": "Mexico", "capital": "Mexico City" }, - { "name": "Micronesia", "capital": "Palikir" }, - { "name": "Moldova", "capital": "Chisinau" }, - { "name": "Monaco", "capital": "Monaco" }, - { "name": "Mongolia", "capital": "Ulan Bator" }, - { "name": "Montenegro", "capital": "Podgorica" }, - { "name": "Montserrat", "capital": "Plymouth" }, - { "name": "Morocco", "capital": "Rabat" }, - { "name": "Mozambique", "capital": "Maputo" }, - { "name": "Myanmar", "capital": "Nay Pyi Taw" }, - { "name": "Namibia", "capital": "Windhoek" }, - { "name": "Nauru", "capital": "Yaren" }, - { "name": "Nepal", "capital": "Kathmandu" }, - { "name": "Netherlands", "capital": "Amsterdam" }, - { "name": "New Caledonia", "capital": "Noumea" }, - { "name": "New Zealand", "capital": "Wellington" }, - { "name": "Nicaragua", "capital": "Managua" }, - { "name": "Niger", "capital": "Niamey" }, - { "name": "Nigeria", "capital": "Abuja" }, - { "name": "Niue", "capital": "Alofi" }, - { "name": "Norfolk Island", "capital": "Kingston" }, - { "name": "North Korea", "capital": "Pyongyang" }, - { "name": "Northern Mariana Islands", "capital": "Saipan" }, - { "name": "Norway", "capital": "Oslo" }, - { "name": "Oman", "capital": "Muscat" }, - { "name": "Pakistan", "capital": "Islamabad" }, - { "name": "Palau", "capital": "Melekeok" }, - { "name": "Palestinian Territory", "capital": "East Jerusalem" }, - { "name": "Panama", "capital": "Panama City" }, - { "name": "Papua New Guinea", "capital": "Port Moresby" }, - { "name": "Paraguay", "capital": "Asuncion" }, - { "name": "Peru", "capital": "Lima" }, - { "name": "Philippines", "capital": "Manila" }, - { "name": "Pitcairn", "capital": "Adamstown" }, - { "name": "Poland", "capital": "Warsaw" }, - { "name": "Portugal", "capital": "Lisbon" }, - { "name": "Puerto Rico", "capital": "San Juan" }, - { "name": "Qatar", "capital": "Doha" }, - { "name": "Republic of the Congo", "capital": "Brazzaville" }, - { "name": "Reunion", "capital": "Saint-Denis" }, - { "name": "Romania", "capital": "Bucharest" }, - { "name": "Russia", "capital": "Moscow" }, - { "name": "Rwanda", "capital": "Kigali" }, - { "name": "Saint Barthelemy", "capital": "Gustavia" }, - { "name": "Saint Helena", "capital": "Jamestown" }, - { "name": "Saint Kitts and Nevis", "capital": "Basseterre" }, - { "name": "Saint Lucia", "capital": "Castries" }, - { "name": "Saint Martin", "capital": "Marigot" }, - { "name": "Saint Pierre and Miquelon", "capital": "Saint-Pierre" }, - { "name": "Saint Vincent and the Grenadines", "capital": "Kingstown" }, - { "name": "Samoa", "capital": "Apia" }, - { "name": "San Marino", "capital": "San Marino" }, - { "name": "Sao Tome and Principe", "capital": "Sao Tome" }, - { "name": "Saudi Arabia", "capital": "Riyadh" }, - { "name": "Senegal", "capital": "Dakar" }, - { "name": "Serbia", "capital": "Belgrade" }, - { "name": "Seychelles", "capital": "Victoria" }, - { "name": "Sierra Leone", "capital": "Freetown" }, - { "name": "Singapore", "capital": "Singapur" }, - { "name": "Sint Maarten", "capital": "Philipsburg" }, - { "name": "Slovakia", "capital": "Bratislava" }, - { "name": "Slovenia", "capital": "Ljubljana" }, - { "name": "Solomon Islands", "capital": "Honiara" }, - { "name": "Somalia", "capital": "Mogadishu" }, - { "name": "South Africa", "capital": "Pretoria" }, - { - "name": "South Georgia and the South Sandwich Islands", - "capital": "Grytviken" - }, - { "name": "South Korea", "capital": "Seoul" }, - { "name": "South Sudan", "capital": "Juba" }, - { "name": "Spain", "capital": "Madrid" }, - { "name": "Sri Lanka", "capital": "Colombo" }, - { "name": "Sudan", "capital": "Khartoum" }, - { "name": "Suriname", "capital": "Paramaribo" }, - { "name": "Svalbard and Jan Mayen", "capital": "Longyearbyen" }, - { "name": "Swaziland", "capital": "Mbabane" }, - { "name": "Sweden", "capital": "Stockholm" }, - { "name": "Switzerland", "capital": "Berne" }, - { "name": "Syria", "capital": "Damascus" }, - { "name": "Taiwan", "capital": "Taipei" }, - { "name": "Tajikistan", "capital": "Dushanbe" }, - { "name": "Tanzania", "capital": "Dodoma" }, - { "name": "Thailand", "capital": "Bangkok" }, - { "name": "Togo", "capital": "Lome" }, - { "name": "Tonga", "capital": "Nuku'alofa" }, - { "name": "Trinidad and Tobago", "capital": "Port of Spain" }, - { "name": "Tunisia", "capital": "Tunis" }, - { "name": "Turkey", "capital": "Ankara" }, - { "name": "Turkmenistan", "capital": "Ashgabat" }, - { "name": "Turks and Caicos Islands", "capital": "Cockburn Town" }, - { "name": "Tuvalu", "capital": "Funafuti" }, - { "name": "U.S. Virgin Islands", "capital": "Charlotte Amalie" }, - { "name": "Uganda", "capital": "Kampala" }, - { "name": "Ukraine", "capital": "Kiev" }, - { "name": "United Arab Emirates", "capital": "Abu Dhabi" }, - { "name": "United Kingdom", "capital": "London" }, - { "name": "United States", "capital": "Washington" }, - { "name": "Uruguay", "capital": "Montevideo" }, - { "name": "Uzbekistan", "capital": "Tashkent" }, - { "name": "Vanuatu", "capital": "Port Vila" }, - { "name": "Vatican", "capital": "Vatican City" }, - { "name": "Venezuela", "capital": "Caracas" }, - { "name": "Vietnam", "capital": "Hanoi" }, - { "name": "Wallis and Futuna", "capital": "Mata Utu" }, - { "name": "Western Sahara", "capital": "El-Aaiun" }, - { "name": "Yemen", "capital": "Sanaa" }, - { "name": "Zambia", "capital": "Lusaka" }, - { "name": "Zimbabwe", "capital": "Harare" } -] diff --git a/challenge-dice-roller/README.md b/challenge-dice-roller/README.md deleted file mode 100644 index 24002a100..000000000 --- a/challenge-dice-roller/README.md +++ /dev/null @@ -1,162 +0,0 @@ -# Challenge: "Dice Roller (React)" - -![Example Screenshot from the finished challenge](./example-screenshots/finished.png) - -## Challenge Overview - -Make a React app which generates random dice roll results for you, based on the number and type of dice. - -For example, a request for "3d20" would "roll" three dice each with twenty faces, and return their total. - -This challenge is for fans of games such as Dungeons and Dragons, where these dice combinations are used frequently. It's probably not very interesting if you've never played those games, however, here's [a short video introducing the various kinds of dice](https://www.youtube.com/watch?v=qQq_WsPFiDs&t=1m59s) in case you are curious. - -## Difficulty Level - -Suitable for those who have finished week 2 of the React module. - -## Pre-requisites - what do I need to know to finish this challenge? - -To complete levels 1 to 4, you will need knowledge of: - -- React component creation -- Parameterising components with `props` -- Tracking state (e.g. with useState) -- Event handlers: for buttons and input text fields - -## Getting Started - -**Don't** clone this repo. - -Make your own React app using `create-react-app`. See [(this guide)](https://docs.codeyourfuture.io/students/guides/creating-a-react-app) if you have forgotten how. - -## GitHub & Hosting: - -Add your project in github and host it on Netlify. - -The github repo name should be exactly: -`dice-react` - -The netlify site suffix should be `-dice` - -so... - -`cyf-YOURGITHUBUSERNAME-dice` - -# Level 1 Challenge - -- Write a react app which simulates the results of dice rolls of two six-sided dice. - -- It should have a single component called `DieRoller` or similar. (A "die" is the english singular term for dice). - -- It should have a "roll" button to generate a new result. - -- The generated total of the two dice should be displayed each time. - -- Your project should be on GitHub and Netlify with correct names (see Hosting, above). - -Tip: - -Try to keep everything to do with the dice roll neatly inside of a component (Why? Eventually you will need to make and configure many instances of this component). - -### Example Screenshot - -![Level 1 Example Screenshot](./example-screenshots/level-1.png) - -# Level 2 challenge - -- Add a numeric input field to allow the user to control _how many_ dice are being rolled. - -- Update your calculation to account for the correct number of dice. - -### Example Screenshot - -![Level 2 Example Screenshot](./example-screenshots/level-2.png) - -# Level 3 challenge - -- Instead of always rolling a _six_-sided dice, have your component receive a prop, `numberOfFaces`, from its parent. - -- Update your calculation to use the value of this prop. Example: if `numberOfFaces` is 20, and your user has chosen to roll 5 dice, you will generate the roll for 5 dice which each have 20 sides. (In this case the number will be between 5 and 100.) - -- In the parent component, instantiate seven of your `DieRoller` components, each with a different number of faces, following this list: - - - 4, 6, 8, 10, 100, 12, 20 - -- Make it look however you want. There is no dictated layout or styling for this challenge. - -### Example Screenshot - -![Level 3 Example Screenshot](./example-screenshots/level-3.png) - -This is just an example. - -You are encouraged to lay your app out creatively - it is a tool used in a game, after all! - -# Level 4 challenge - -- Add a single "log" textarea which will keep a history of your dice rolls. - -- Each time a DieRoller makes a roll it should add a line to the _top_ of the log. - -- This "log" textarea will be rendered by your parent component, **not** by any DieRoller. - -### Example Screenshot - -![Level 4 Example Screenshot](./example-screenshots/level-4.png) - -# Level 5 challenge - -- Add a "modifier" to each DieRoller. This is a numeric input the user can change, which gets added to the total dice roll. - -- Modifier can be positive or negative. - -- The total result of any roll should never be less than 1. If the total of a roll once added to its modifier would be less than 1, the result should be 1. - -### Example Screenshot - -![Level 5 Example Screenshot](./example-screenshots/level-5.png) - -# Level 6 challenge - -- If a DieRoller result has been adjusted to 1 from lower than 1, make the result look different so the user can see it has been adjusted. - -- To do this, use a CSS class, and also suitable explanation in a title/tooltip hover. - -### Example Screenshot - -![Level 6 Example Screenshot](./example-screenshots/level-6.png) - -# Level 7 challenge - -- Add error handling so that no change is made to the number of sides, or the modifier, if the user enters whitespace in that field. - -- If a field is blank, non-numeric, or otherwise unsuitable, it should revert to a previous value. - -- Ensure the user can enter all sensible values, _including_ setting the modifier _back_ to zero. - -# You are finished! - -Congratulations! - -Now... are your sure your code is as readable as possible? - -# Beyond - ideas for more work - -- Easy: display an image in each DieRoller, showing the type of dice in use. [Example](https://www.wizards.com/dnd/dice/dice.htm) - -- Intermediate: use a chart library to make a chart of the distribution of results of 1000 simulated rolls. - -- Advanced: Add a reset button in the parent. - -- Very advanced: Add some CSS (or 3d) animation of the dice. [3d example](http://a.teall.info/dice/). - -- Very advanced: Allow free-text expressions to be written, such as `1d20 + 2d4 + 2`. - -## Further resources - -- [Dice notation](https://en.wikipedia.org/wiki/Dice_notation) - only for the curious. It won't help you in this challenge. -- [Dice 101 - an intro video about dice in the DnD game](https://www.youtube.com/watch?v=qQq_WsPFiDs&t=1m59s) - -# Credits - -Background image in some screenshots is by [Alperen Yazgı on Unsplash](https://unsplash.com/photos/QuP5RL_E5oE). diff --git a/challenge-dice-roller/example-screenshots/finished.png b/challenge-dice-roller/example-screenshots/finished.png deleted file mode 100644 index 8abba8f8a..000000000 Binary files a/challenge-dice-roller/example-screenshots/finished.png and /dev/null differ diff --git a/challenge-dice-roller/example-screenshots/level-1.png b/challenge-dice-roller/example-screenshots/level-1.png deleted file mode 100644 index 7f788d884..000000000 Binary files a/challenge-dice-roller/example-screenshots/level-1.png and /dev/null differ diff --git a/challenge-dice-roller/example-screenshots/level-2.png b/challenge-dice-roller/example-screenshots/level-2.png deleted file mode 100644 index 30b44589c..000000000 Binary files a/challenge-dice-roller/example-screenshots/level-2.png and /dev/null differ diff --git a/challenge-dice-roller/example-screenshots/level-3.png b/challenge-dice-roller/example-screenshots/level-3.png deleted file mode 100644 index 9a36ed48c..000000000 Binary files a/challenge-dice-roller/example-screenshots/level-3.png and /dev/null differ diff --git a/challenge-dice-roller/example-screenshots/level-4.png b/challenge-dice-roller/example-screenshots/level-4.png deleted file mode 100644 index 62dc3bb22..000000000 Binary files a/challenge-dice-roller/example-screenshots/level-4.png and /dev/null differ diff --git a/challenge-dice-roller/example-screenshots/level-5.png b/challenge-dice-roller/example-screenshots/level-5.png deleted file mode 100644 index 841dac496..000000000 Binary files a/challenge-dice-roller/example-screenshots/level-5.png and /dev/null differ diff --git a/challenge-dice-roller/example-screenshots/level-6.png b/challenge-dice-roller/example-screenshots/level-6.png deleted file mode 100644 index c47e61fbd..000000000 Binary files a/challenge-dice-roller/example-screenshots/level-6.png and /dev/null differ diff --git a/challenge-high-score-tables/README.md b/challenge-high-score-tables/README.md deleted file mode 100644 index ffa341a70..000000000 --- a/challenge-high-score-tables/README.md +++ /dev/null @@ -1,85 +0,0 @@ -# Challenge: "High Score Tables (React)" - -## Challenge Overview - -Make a React app which lists some high score tables. The scores data is provided for you. - -## Difficulty Level - -This is a beginner challenge. Level 1 can be completed by students who have completed week 1 of the CYF React module. - -## Pre-reqs - -- react `props` -- `array.map` method as used in React JSX - -To finish level 4 - -- event handling (handle a button click) -- Keeping state with the state hook (`useState`) - -### Example Screenshot - -Level 1 challenge screenshot example. - -![Example Screenshot](./example-screenshots/react-high-score-tables-example-layout.png) - -# Level 1 Challenge - -* Write a React app which displays high score tables for the given data. - -* Each country must have its own High Score table displayed. - -* Your app must be hosted on Netlify (see "Hosting" below). - -* You must make AT LEAST: - - `HighScoreTable` - a table with a country name and a list of player-scores for that country. - - `PlayerScore` - component responsible for displaying a single score by one player (e.g. as one line of the table) (e.g. `Neill 2000`) - -### Getting Started - -**Don't** clone this repo. - -Make your own React app using `create-react-app`. See [(this guide)](https://docs.codeyourfuture.io/students/guides/creating-a-react-app) if you have forgotten how. - -Copy across the score file (or the score file's contents) from this repo to your app, and then import from that file. - -Write a plain HTML prototype first for two or three countries (e.g. on codepen). THEN, once you know the HTML you're attempting to create, work on the React version! This is not mandatory but it is recommended. - -### The data: - -The data is available in the file [./scores.js](./scores.js). Here is [a raw version of it](https://raw.githubusercontent.com/codeyourfuture/cyf-react-challenges/master/challenge-high-score-tables/scores.js), suitable for saving. - -You can copy this array of data into your App.js or you can import it. - -## Hosting: - -Add your project in github and host it on Netlify. - -The github repo name should be: -`high-scores-react` - -The netlify site suffix should be `-scores` - -so... - -`cyf-YOURGITHUBUSERNAME-scores` - -# Level 2 - -- Present the High Score Tables sorted alphabetically by country name - -# Level 3 - -- Within each individual table, show the highest scores first - i.e. sort the scores numerically, descending. - -# Level 4 - advanced (needs content from React week 2) -- Add a _single_ button at the top of the page which toggles the sort order of every high-score-table between ascending and descending by scores. This will require some study about event handlers and the use of a "State hook". - -# Level 5 - advanced - -- Add a "world-wide" table, shown first, which shows the sorted high scores from EVERYONE, regardless of country. - -# Bonus -- Add your own country and scores! -- Add some old-skool videogame icons or animations diff --git a/challenge-high-score-tables/example-screenshots/foo.txt b/challenge-high-score-tables/example-screenshots/foo.txt deleted file mode 100644 index 8b1378917..000000000 --- a/challenge-high-score-tables/example-screenshots/foo.txt +++ /dev/null @@ -1 +0,0 @@ - diff --git a/challenge-high-score-tables/example-screenshots/react-high-score-tables-example-layout.png b/challenge-high-score-tables/example-screenshots/react-high-score-tables-example-layout.png deleted file mode 100644 index e4b6c0db2..000000000 Binary files a/challenge-high-score-tables/example-screenshots/react-high-score-tables-example-layout.png and /dev/null differ diff --git a/challenge-high-score-tables/scores.js b/challenge-high-score-tables/scores.js deleted file mode 100644 index b9d274e65..000000000 --- a/challenge-high-score-tables/scores.js +++ /dev/null @@ -1,34 +0,0 @@ -let allCountryScores = [ - { - name: "Ethiopia", - scores: [ {n: "Sub", s: 9990}, {n: "lucy", s: "4134234"}, {n: "DWH", s: 9999}, {n: "Hanif", s: 999999999} ] - }, - { - name: "Scotland", - scores: [ {n: "groundkeeper willie", s: 4000}, {n: "Neill", s: 999999}, {n: "braveheart", s: -200}] - },{ - name: "England", - scores: [ {n: "Jonny", s: 202020}, {n: "Chris", s: 202021}] - },{ - name: "Brazil", - scores: [ {n: "Mozart", s: 999}] - }, - { - name: "Colombia", - scores: [ {n: "Maria", s: 6000}, {n: "Melanie", s: "99999999"}, {n: "Ali", s: 5000}] - }, - { - name: "Turkey", - scores: [ {n: "selim", s: 900 }, {n: "mahmut", s: 1000 }, {n: "morat", s: 999 } ] - }, - { - name: "Iran", - scores: [ {n: "arosha", s: 5550 }, {n: "zahra", s: 3000 }, {n: "nader", s: 2000 }, {n: "Bani", s: 1999 } ] - }, - { - name: "Bangladesh", - scores: [ {n: "rahman", s: 700200}, {n: "rayhan", s: 18238123}, {n: "ali", s: 5400000} ] - }, - ]; - - export default allCountryScores; diff --git a/challenge-image-carousel/README.md b/challenge-image-carousel/README.md deleted file mode 100644 index 1a010a726..000000000 --- a/challenge-image-carousel/README.md +++ /dev/null @@ -1,130 +0,0 @@ -# Challenge: "Image Carousel" (React) - -## Challenge Overview - -Make a React app which allows the user to navigate a set of images (first manually, then with an auto-playing slideshow). - -### Try a live demo: - -[Try this live demo!](https://cyf-image-carousel.netlify.com/) - -### Example Screenshot - -Level 1 challenge screenshot example. - -![Example Screenshot](./example-screenshots/example-level1.png) - -## Difficulty Level - -* Level 1 is an intermediate challenge. -* Level 2's auto-play functionality is advanced if you have learned React hooks. - -# Level 1 Challenge - -Make forward and back buttons to move _manually_ in that direction through a list of at least 4 images. - -(e.g. When the user presses forward once, the display should move ONCE to the next image.) - -You can use any images. - -You can store the images within your app or you can use links to images hosted elsewhere ("hotlinking"). - -[Unsplash](https://unsplash.com/) is a good source of images for this challenge. - -# Level 2 Challenge - -Make auto-forward and auto-back buttons to _automatically_ move in that direction through the list of images. - -Here's a screenshot example from a completed level 2 challenge. - -Warning: This quite hard to do using React Hooks. See [here](https://overreacted.io/making-setinterval-declarative-with-react-hooks/) for an explantion! - -![Example Screenshot](./example-screenshots/example-level2.png) - -# Try to finish the rest by yourself - -If you want a harder challenge, don't read the rest of this document but instead try to build the app by yourself. - -If you want hints, then you will find some below. - -# Suggested approach - -Here's one approach you might take to building this app. - -## Task: Create a new React app - -Create a new empty React app for this challenge. - -The tool can take a while to run, so continue with the next task while it's running... - -## Task: Design your layout _on paper_ - -Design your layout on paper. Keep it very simple - this is a React challenge, not a CSS challenge. - -Use a layout that will be ok on a phone (but _don't_ spend time on responsive design). - -Keep this drawing around for reference later. - -## Task: Convert your layout to HTML - -Convert the drawing to HTML (on codepen or elsewhere) and check the buttons appear correctly. - -_DON'T_ add any CSS or extra markup to make it look good just now. That will only make it more difficult for you to think about your app during development. - -## Task: Convert your HTML to JSX within your React app - -Now make components which will generate the planned HTML from the previous task. - -## Task: Make the buttons work - -Make your buttons work to navigate forwards and backwards, manually. - -## Task: Host your app - -Host your app and prove it works by viewing it on your phone! - -We recommend you use Netlify. [Instructions are here](https://gist.github.com/nbogie/bf58a391fab6884f77a6adec66047181). - -(You can instead use Heroku to host, or github pages, or codesandbox.io, or glitch.com...) - -## Task: more buttons - automated slideshow - -Add the following buttons: - -- auto-forward -- stop -- auto-backwards - -These should allow automatic navigation through the images, say every 5 seconds. - -## Task: host again. - -Host again. - -## Create a repo on github for your code -* Create a new repo on github -* Add this github repo as a remote for your existing local image-carousel repo. - -*STOP!* You CANNOT simply copy-paste and run this command! You'll have to change the user and repo in the following to match your own. - -```git remote add origin https://github.com/user/repo.git``` - -```git push -u origin master``` - -## End of basic challenge! - -Congratulations, you've finished the basics! - -- Send the URL of your hosted app to your team on Slack. -- Make sure you can access it and play with it on a smartphone! -- Celebrate! - -## Optional: Add UI for delay time - -Add UI so that the user can specify how long to wait between images. - -## Advanced Challenge: make it look good - -- Now is a good time to make it look good with CSS, colour, typography, images, and creativity. Maybe you could ask someone to collaborate with you on those aspects. - -## Further resources diff --git a/challenge-image-carousel/example-screenshots/example-level1.png b/challenge-image-carousel/example-screenshots/example-level1.png deleted file mode 100644 index 88077799e..000000000 Binary files a/challenge-image-carousel/example-screenshots/example-level1.png and /dev/null differ diff --git a/challenge-image-carousel/example-screenshots/example-level2.png b/challenge-image-carousel/example-screenshots/example-level2.png deleted file mode 100644 index 568d0daa6..000000000 Binary files a/challenge-image-carousel/example-screenshots/example-level2.png and /dev/null differ diff --git a/challenge-job-listing/README.md b/challenge-job-listing/README.md deleted file mode 100644 index fce64d69e..000000000 --- a/challenge-job-listing/README.md +++ /dev/null @@ -1,40 +0,0 @@ -# Job Listing with Filtering - -Complete the Frontend Mentor challenge "Job Listings with Filtering", with the rule changes below: - -https://www.frontendmentor.io/challenges/job-listings-with-filtering-ivstIPCt - -You will have to refer to the "brief" on that web page AND download the "starter" zip file and explore its contents. - -## Rule changes and additions - -- Use React! -- Ignore "Option 1" from the challenge document. -- Load the jobs data file as mentioned in "Option 2". -- DO NOT implement any filtering functionality at this point. -- Build only the desktop version - do not worry about responsive design at this point -- Name your GitHub repo exactly: `job-listings-react` -- Host on Netlify as usual -- Your Netlify site name must be in this format: cyf-USERNAME-jobs(.netlify.app) -- You may work in teams of maximum 2 people if you wish. -- This is also a CSS practice exercise, not only React. Your result should be laid out correctly. - -## More Notes - -- You do NOT need to buy anything to do this challenge. (The frontendmentor website also offers a "sketch file" for sale - you can ignore this.) -- You will need to log in to frontendmentor.io with github and download the "starter" file. -- There is no starting project repo provided by CYF for this challenge - you will make your own. - -## Optional Extra - -### Give feedback on the challenge - -The author of the challenge (and the "countries" one) is interested in your feedback. - -If you want to, take notes on anything in the challenge statement that you find unclear, and anything that you particularly enjoy in the challenge. - -This feedback will help them improve this and other challenges for other students. - -## Submission: - -Please add links here to your deployed site and your repo, and submit, when you have finished this task. diff --git a/challenge-music-keyboard/README.md b/challenge-music-keyboard/README.md deleted file mode 100644 index 547a34bd9..000000000 --- a/challenge-music-keyboard/README.md +++ /dev/null @@ -1,144 +0,0 @@ -# Challenge: "Musical Keyboard" with React and Tone.js - -## Challenge Overview - -You must make a React app which presents a very simple musical keyboard made of buttons. When a button is pressed, the correct musical note sounds. - -### Try a live demo: - -[Try this live demo!](https://cyf-tones-react.netlify.com/) - -### Example Screenshot - -![Example Screenshot](./example-screenshots/example2.png) - -## What you need to know before starting: - -This challenge is suitable if you have successfully completed the homework of CYF React Week 1. - -You _will_ need to know... - -- how to create a React app -- how to create a component in React -- how to pass props -- how to populate components from an array -- how to handle events (button clicks) - -In addition, you'll learn... - -- How to install a library (in this case, tone.js) -- How to make synthesised sound with the tone.js library. This is one of many ways to make sound in a web app. - -# Task: Install the "tone.js" library - -- If you haven't created your app yet, use `create-react-app` to create the skeleton of the app. -- Check the app works, by running `npm start` from your app's root directory. -- **Use the following command to install the tones library: - `npm install tone`** -- Check the app STILL works, with `npm start` - -### Optional - Advanced: - -- Look in `package.json`, and compare it with `package.json` for another React app you have. What do you notice? - -# Look at the first tone.js example - -- Look at the first example from the [tone.js documentation](https://tonejs.github.io/). -- Load and experiment with [this JSFiddle of that example](https://jsfiddle.net/enz0/f0b2u7ct/) -- Try to understand the two lines of js code in the example. - -# Try to finish the rest by yourself - -If you want a harder challenge, don't read the rest of this document but instead try to build the app by yourself. - -If you want hints, then you will find some below. - -# More help: A suggested approach - -Here's one approach you might take to building this app. - -## Task: Create a new React app - -Create a new empty React app for this challenge. - -The tool can take a while to run, so continue with the next task while it's running... - -## Task: Design your layout _on paper_ - -Design your layout on paper. Keep it very simple - this is a React challenge, not a CSS challenge. - -If you know the layout of a piano keyboard, I suggest you ignore the black notes for now, to keep things simpler. - -Use a layout that will be ok on a phone (but _don't_ spend time on responsive design). - -Keep this drawing around for reference later. You can take a photo of it and keep it in your repo, for example. - -## Task: Convert your layout to HTML (e.g. on CodePen) - -Convert the drawing to HTML (on codepen or elsewhere) and check the buttons appear correctly. -_DON'T_ add any CSS or extra markup to make it look good just now. That will only make it more difficult for you to think about your app during development. - -At this stage, buttons will not work - that's OK. - -At this stage you will have lots of repeated HTML - the same for each button. - -## Task: Convert your HTML to JSX within your React app - -Now make a React component to represent your musical keyboard. - -It should generate the HTML for your buttons. - -You can do this all first within your `App.js`, or you can build some other components: -* perhaps a component for a Keyboard -* perhaps a component for a single Key, which you then use many times. - -## Task: Get the buttons working very simply - -- Write code which calls `console.log` when the "musical keyboard" buttons are clicked. - -## Task: Get the audio working - -- Add code which uses tone.js to make sounds when buttons are pressed. Keep it _very_ simple. - -If you need a hint, [use the first example in the docs, here.](https://tonejs.github.io/) - -## Task: Host your app - -Host your app and prove it works by viewing it on your phone! - -We recommend you use Netlify: - -Site name: `cyf-GITHUBUSERNAME-tones` -Repo name: `tones-react` - -## End of basic challenge! - -Congratulations, you've finished the basics! - -- Send the URL of your hosted app to your team on Slack. -- Make sure you can access it and play with it on a smartphone! -- Celebrate! - -## Advanced Challenge: make it change scale. - -If you know a little about music scales (or don't mind reading), you might want to make your keyboard play only notes from a certain scale. - -Here's the names of the notes in a C pentatonic scale, for example: `C4 D4 E4 G4 A4 C5 D5 E5 G5 A5 C6` - -- Change your app to use minor scale, a blues or bebop scale, or another scale. - -## Advanced Challenge: support multiple scales - -- Add to the interface so that the user can choose what scale they want. - -## Advanced Challenge: add controls to change the sound - -- Add to the interface so that the user can modify the sound synthesis parameters. - -## Advanced Challenge: make it look good - -- Now is a good time to make it look good with CSS, colour, typography, images, and creativity. Or maybe you could ask someone to collaborate with you and do those aspects. - -## Further resources - -- https://musiclab.chromeexperiments.com/Oscillators/ diff --git a/challenge-music-keyboard/example-screenshots/example1.png b/challenge-music-keyboard/example-screenshots/example1.png deleted file mode 100644 index 422b98d0e..000000000 Binary files a/challenge-music-keyboard/example-screenshots/example1.png and /dev/null differ diff --git a/challenge-music-keyboard/example-screenshots/example2.png b/challenge-music-keyboard/example-screenshots/example2.png deleted file mode 100644 index 8cb98c11a..000000000 Binary files a/challenge-music-keyboard/example-screenshots/example2.png and /dev/null differ diff --git a/challenge-quiz/README.md b/challenge-quiz/README.md deleted file mode 100644 index 2bfe4010f..000000000 --- a/challenge-quiz/README.md +++ /dev/null @@ -1,113 +0,0 @@ -# Challenge: Trivia Quiz - -![example](https://i.ibb.co/Byyss7c/Screenshot-2020-07-02-at-20-00-51.png) - -## Introduction - -Welcome to the React Quiz challenge! This is what we need to build: - -### [>>> Click here for Game Demo <<<](https://csb-qmydz-9dm8xvx98.vercel.app/) - -You will require a strong understanding of React+Hooks to complete this challenge. - -## The rules - -Every player has 3 lives: The logic and rules are simple. When the player loads the app: - -1. We fetch a question and display it. -2. The player guesses the answer. -3. If the player is right, they get a point 🥇. If wrong, they lose a life 🖤. -4. We fetch a new question and repeat. - -When the player makes a wrong guess and has no remaining lives, it's game over and the player will be shown their final score. (My best score is 9). - -## Challenge - -1. Easy part: Recreate the game demo above. - -If you are looking to work out how to approach the problem, do this without checking the "Steps" section below. If you're more trying to practice React implementation than design, feel free to read the Steps section for guidance. - -2. Hard part: The goal here is not to add features, the goal is to write the code for the game above in the **cleanest way possible**. That means: - -- [ ] No errors or warnings in the console -- [ ] Variable/function/component names must make sense and be properly spelled -- [ ] No unused or commented-out code -- [ ] A code structure that you understand and can clearly explain. - -Once the demo is working you are only **half finished**, you must go back and refactor the code to remove anything unnecessary and fix anything confusing. - -Completing the challenge is not enough, this should be the cleanest code you have ever written. - -## Things that will help - -### The API - -```js -const api = `https://opentdb.com/api.php?amount=1&difficulty=easy&encode=url3986`; -``` - -Fetch data from here 👆👆👆. This is the Open Trivia Database, they have thousands of questions. The documentation for this api is [here](https://opentdb.com/api_config.php). Fetching from the url above will return one single question (inside an array). - -### Encoding - -When you fetch from the api, you will notice that all strings returned all look like this: - -``` -## A%20slug%E2%80%99s%20blood%20is%20green. -``` - -What's going on here? This is a _[url encoded string](https://en.wikipedia.org/wiki/Percent-encoding)_. We don't want to display our strings like that to our players. Javascript has a way to convert a string like this to a normal string, using the function below. You might find this useful. - -```js -const decoded = decodeURIComponent("A%20slug%E2%80%99s%20blood%20is%20green"); -console.log(decoded); -// A slug's blood is green -``` - -### Shuffle - -You may need to shuffle an array at some point (the game must show the possible answers in a random order). There are many ways to do a random shuffle, here is one: - -```js -const unshuffled = [1, 2, 3]; -const shuffled = unshuffled.sort(() => Math.random() - 0.5); -console.log(shuffled); -// [2, 1, 3] -``` - -### React Guidelines - -You do not necessarily need to use useEffect to complete this challenge but it may be cleaner to do so. - -You do not need to use multiple components to complete this challenge but it may be cleaner to do so. - -### Styling & CSS - -This challenge is all about clean code so there are no extra points for styling. (If you decide to include syling anyway, your CSS must be every bit as beautiful and clean as your javascript code!). - -## Advanced challenge - -When this was sent to the top-secret Code Your Future QA team for testing they noticed a serious bug. I will include their report below. - -``` -From: Quality Assurance Team -Subject: Quiz demo bug CRITICAL!! - -We have noticed that if a player clicks a correct answer -two times VERY QUICKLY they can get an extra point. - -We have noticed some players using this to cheat, this -bug must be fixed urgently!! CHEATING IS NOT ACCEPTABLE! -``` - -If you can fix the bug they will very pleased. Good luck. - -## Steps - -Ignore this section if you'd like to work out the steps yourself, these are just a suggestion to help out if you need. - -1. Get a single question working, without fetch. We've provided one example question in the question.json file, which you can import. It has the same structure as the API returns. Your app should tell the user "You got the answer right" or "You got the answer wrong". -2. Implement the "lives" logic. If they get the question wrong, they lose a life. Show them how many lives they have left. Instead of telling the user right/wrong, tell them "You got the answer right" or "You got the answer wrong, you have (number) lives remaining: try again", or "You ran out of lives". -3. Switch your implementation to fetch questions using the API, rather than from the JSON file. -4. Implement the "score" logic. Count how many questions they got right, and show them, both as they play, and when they die. -5. Make sure your code is perfect! diff --git a/challenge-quiz/question.json b/challenge-quiz/question.json deleted file mode 100644 index 099f7b400..000000000 --- a/challenge-quiz/question.json +++ /dev/null @@ -1 +0,0 @@ -{"response_code":0,"results":[{"category":"Art","type":"multiple","difficulty":"easy","question":"Who%20painted%20%22Swans%20Reflecting%20Elephants%22%2C%20%22Sleep%22%2C%20and%20%22The%20Persistence%20of%20Memory%22%3F","correct_answer":"Salvador%20Dali","incorrect_answers":["Jackson%20Pollock","Vincent%20van%20Gogh","Edgar%20Degas"]}]} \ No newline at end of file diff --git a/challenge-sengen/README.md b/challenge-sengen/README.md deleted file mode 100644 index c4720586c..000000000 --- a/challenge-sengen/README.md +++ /dev/null @@ -1,106 +0,0 @@ -# Challenge: "Sentence Generator" (React) - -## Challenge Overview - -Make a React app which presents a different randomly generated sentence each time it is loaded. - -### Try a live demo: - -[Try this live demo!](https://cyf-sengen-simple.netlify.com/) - -Make sure you understand what's happening at a conceptual level. Each word-slot in the sentence template is picking a word randomly from an appropriate list. E.g. from a list of nouns. - -### Example Screenshot - -![Example Screenshot](./example-screenshots/example1.png) - -I have added a "regenerate" button, but alternatively, the user can simply reload the page for that. - -## What you need to know before starting: - -This challenge is suitable if you have successfully completed the homework of CYF React Week 1. - -You _will_ need to know... - -- how to create a React app -- how to create a component in React -- how to pass props - -It will be helpful to know: - -- how to populate components from an array - -You DO NOT need to know about: - -- state -- fetching JSON from an API -- promises - -# Task: ... - -# Try to finish the rest by yourself - -If you want a harder challenge, don't read the rest of this document but instead try to build the app by yourself. - -If you want hints, then you will find some below. - -# Suggested approach - -Here's one approach you might take to building this app. - -## Task: Create a new React app - -Create a new empty React app for this challenge. - -The tool can take a while to run, so continue with the next task while it's running... - -## Task: Design your layout _on paper_ - -Design your layout on paper. Keep it very simple - this is a React challenge, not a CSS challenge. - -Use a layout that will be ok on a phone (but _don't_ spend time on responsive design). - -Keep this drawing around for reference later. - -## Task: Convert your layout to JSX (HTML) - -Convert the drawing to HTML (on codepen or elsewhere) and check the buttons appear correctly. -_DON'T_ add any CSS or extra markup to make it look good just now. That will only make it more difficult for you to think about your app during development. - -## Task: Convert your HTML to JSX within your React app - -Now make a component to represent your sentence. It should generate the HTML. You can do this all first within your `App.js`, or you can build a React Component. - -## Task: Have words picked at random from lists - -Try to write the javascript yourself to pick one word from a list of words, at random. - -If you have a lot of trouble, [here is a function you can use](https://gist.github.com/nbogie/05332f6c8834f6b57a08d8ea1edd911b) - -## Task: Host your app - -Host your app and prove it works by viewing it on your phone! - -We recommend you use Netlify. [Instructions are here](https://gist.github.com/nbogie/bf58a391fab6884f77a6adec66047181). - -(You can instead use Heroku to host, or github pages, or codesandbox.io, or glitch.com...) - -## End of basic challenge! - -Congratulations, you've finished the basics! - -- Send the URL of your hosted app to your team on Slack. -- Make sure you can access it and play with it on a smartphone! -- Celebrate! - -## Advanced Challenge: make it look good - -- Now is a good time to make it look good with CSS, colour, typography, images, and creativity. Maybe you could ask someone to collaborate with you on those aspects. - -## Advanced Challenges - -* Allow any word to be clicked, to change *only* that word. -* Allow "like" and saving of favourite sentences -* Add different template sentences - -## Further resources diff --git a/challenge-sengen/example-screenshots/example1.png b/challenge-sengen/example-screenshots/example1.png deleted file mode 100644 index d4e8c91e8..000000000 Binary files a/challenge-sengen/example-screenshots/example1.png and /dev/null differ diff --git a/challenge-tfl-lines/README.md b/challenge-tfl-lines/README.md deleted file mode 100644 index 59ec58318..000000000 --- a/challenge-tfl-lines/README.md +++ /dev/null @@ -1,141 +0,0 @@ -# Challenge: "Transport for London (TfL) Line Information" - -![TfL Line Information app](example-screenshots/level-300-screenshot.png) - -## Challenge overview - -Make a React app that shows Transport for London (TfL) data from their API about tubes, buses, trains, etc. - -## Difficulty level - -This is a more advanced challenge. Level 100 can be completed by any student has done Week 2 of the CYF React module. Level 200 can be completed by anyone who has done Week 3 of the CYF React module. - -## Pre-requisites - what do I need to know to finish this challenge? - -Level 100: - -- `useState` Hook -- `useEffect` Hook to fetch data on load (with empty dependencies array) -- The `array.map` method and its use in React JSX - -Later levels: - -- `useEffect` dependencies array (the second argument) - -## Getting started - -**Don't** clone this repo. - -Make your own React app using `create-react-app`. See [this guide](https://docs.codeyourfuture.io/students/guides/creating-a-react-app) if you have forgotten how. - -Write a plain HTML prototype (e.g. on CodePen). THEN, once you know the HTML you're attempting to create, work on the React version! This is not mandatory but it is recommended. - -### Fetching data - -Data for this project will need to be fetched from the TfL API. [Here is a link to their documentation](https://api.tfl.gov.uk/swagger/ui/index.html). - -There will be more detail in the challenge levels below. - -## GitHub & Hosting: - -Add your project to GitHub and host it on Netlify. - -The GitHub repo name should be exactly: `tfl-lines-react`. - -The Netlify site suffix should be `-tfl-lines`, so something like... - -``` -cyf-YOUR_GITHUB_USERNAME-tfl-lines -``` - -## Level 100 challenge - -Write a React app that shows a selector for the different modes of transport available from TfL (for example bus, tube, rail). - -- The app should fetch data from `https://api.tfl.gov.uk/Line/Meta/Modes` **when the page loads**. The documentation for this API is available [here](https://api.tfl.gov.uk/swagger/ui/index.html?url=/swagger/docs/v1#!/Line/Line_MetaModes) - -- Using this data, the app should show a `` is selected, it should show that `modeName` on screen - -- Your project should be on GitHub and Netlify with correct names (see GitHub & Hosting section above) - -### Example screenshots - -Mode selector: - -![Level 100 mode selector](example-screenshots/level-100-screenshot-1.png) - -Selected mode: - -![Level 100 selected mode shown](example-screenshots/level-100-screenshot-2.png) - -[CLICK HERE TO SEE A VIDEO](example-screenshots/level-100-video.gif) - -## Level 200 challenge - -Show another selector for the different lines available for the selected mode of transport. So for example, if tube is selected, the second selector shows all of the tube lines. - -- The app should fetch data from `https://api.tfl.gov.uk/Line/Mode/${SELECTED_MODE_OF_TRANSPORT}` **when a mode of transport is selected**. The documentation for this API is available [here](https://api.tfl.gov.uk/swagger/ui/index.html?url=/swagger/docs/v1#!/Line/Line_GetByMode) - -- Using this data, the app should show second `` is selected, it should show that `id` on screen - -### Example screenshots - -Line selector: - -![Level 200 line selector](example-screenshots/level-200-screenshot-1.png) - -Selected line: - -![Level 200 selected line shown](example-screenshots/level-200-screenshot-2.png) - -[CLICK HERE TO SEE A VIDEO](example-screenshots/level-200-video.gif) - -## Level 300 challenge - -Show the start and end locations for the selected line. So for example, if the Victoria line is selected, display Walthamstow Central Underground Station and Brixton Underground Station. - -- The app should fetch data from `https://api.tfl.gov.uk/Line/${SELECTED_LINE}/Route` **when a line is selected**. The documentation for this API is available [here](https://api.tfl.gov.uk/swagger/ui/index.html?url=/swagger/docs/v1#!/Line/Line_LineRoutesByIds). - -- Using this data, the app show the `originationName` (start of the line) and `destinationName` (end of the line) from the **first** item in the `routeSections` array. - -### Example screenshots - -![Level 300](example-screenshots/level-300-screenshot.png) - -[CLICK HERE TO SEE A VIDEO](example-screenshots/level-300-video.gif) - -## Level 999 challenge - -This challenge is **OPTIONAL**! - -Here are some additional ideas for improving your app: - -- If a mode of transport is **changed** reset the line selector and the line start/end so that they do not show out-of-date information (see video below) - -- Improve the styling. Try to make it match the screenshots as closely as possible. Or, even better, try to improve the design with your own ideas - -- Install the [aXe Browser Extension](https://www.deque.com/axe/axe-for-web/) in your browser. - - This extension allows you to test for [*accessibility* problems](https://developer.mozilla.org/en-US/docs/Learn/Accessibility/What_is_accessibility) in your application. It adds a new tab inside your Dev Tools called axe. Navigate to this tab, then click Analyze - - Try to solve any accessibility problems it tells you about. It may be useful to enable the Highlight mode so that you can see more easily which element are causing the problem. The Learn more link is also a useful resource - -### Example screenshots - -Resetting the line selector and line start/end: - -[CLICK HERE TO SEE A VIDEO](example-screenshots/level-999-video.gif) - -Running the aXe extension: - -![aXe extension analyze button](example-screenshots/level-999-screenshot-1.png) - -aXe extension results: - -![aXe extention results](example-screenshots/level-999-screenshot-2.png) - -## Credits - -Inspired by Ahmad Ali's original TfL exercise. diff --git a/challenge-tfl-lines/example-screenshots/level-100-screenshot-1.png b/challenge-tfl-lines/example-screenshots/level-100-screenshot-1.png deleted file mode 100644 index 38ee57ea7..000000000 Binary files a/challenge-tfl-lines/example-screenshots/level-100-screenshot-1.png and /dev/null differ diff --git a/challenge-tfl-lines/example-screenshots/level-100-screenshot-2.png b/challenge-tfl-lines/example-screenshots/level-100-screenshot-2.png deleted file mode 100644 index eb0db8498..000000000 Binary files a/challenge-tfl-lines/example-screenshots/level-100-screenshot-2.png and /dev/null differ diff --git a/challenge-tfl-lines/example-screenshots/level-100-video.gif b/challenge-tfl-lines/example-screenshots/level-100-video.gif deleted file mode 100644 index 4ac81f442..000000000 Binary files a/challenge-tfl-lines/example-screenshots/level-100-video.gif and /dev/null differ diff --git a/challenge-tfl-lines/example-screenshots/level-200-screenshot-1.png b/challenge-tfl-lines/example-screenshots/level-200-screenshot-1.png deleted file mode 100644 index 88ee48957..000000000 Binary files a/challenge-tfl-lines/example-screenshots/level-200-screenshot-1.png and /dev/null differ diff --git a/challenge-tfl-lines/example-screenshots/level-200-screenshot-2.png b/challenge-tfl-lines/example-screenshots/level-200-screenshot-2.png deleted file mode 100644 index d0c381d38..000000000 Binary files a/challenge-tfl-lines/example-screenshots/level-200-screenshot-2.png and /dev/null differ diff --git a/challenge-tfl-lines/example-screenshots/level-200-video.gif b/challenge-tfl-lines/example-screenshots/level-200-video.gif deleted file mode 100644 index 701677b3a..000000000 Binary files a/challenge-tfl-lines/example-screenshots/level-200-video.gif and /dev/null differ diff --git a/challenge-tfl-lines/example-screenshots/level-300-screenshot.png b/challenge-tfl-lines/example-screenshots/level-300-screenshot.png deleted file mode 100644 index ddc165e22..000000000 Binary files a/challenge-tfl-lines/example-screenshots/level-300-screenshot.png and /dev/null differ diff --git a/challenge-tfl-lines/example-screenshots/level-300-video.gif b/challenge-tfl-lines/example-screenshots/level-300-video.gif deleted file mode 100644 index a5858cc40..000000000 Binary files a/challenge-tfl-lines/example-screenshots/level-300-video.gif and /dev/null differ diff --git a/challenge-tfl-lines/example-screenshots/level-999-screenshot-1.png b/challenge-tfl-lines/example-screenshots/level-999-screenshot-1.png deleted file mode 100644 index bd15b3d75..000000000 Binary files a/challenge-tfl-lines/example-screenshots/level-999-screenshot-1.png and /dev/null differ diff --git a/challenge-tfl-lines/example-screenshots/level-999-screenshot-2.png b/challenge-tfl-lines/example-screenshots/level-999-screenshot-2.png deleted file mode 100644 index dbb3ae973..000000000 Binary files a/challenge-tfl-lines/example-screenshots/level-999-screenshot-2.png and /dev/null differ diff --git a/challenge-tfl-lines/example-screenshots/level-999-video.gif b/challenge-tfl-lines/example-screenshots/level-999-video.gif deleted file mode 100644 index 0341db36f..000000000 Binary files a/challenge-tfl-lines/example-screenshots/level-999-video.gif and /dev/null differ diff --git a/challenge-tv-show-info/README.md b/challenge-tv-show-info/README.md deleted file mode 100644 index 8ad523bcf..000000000 --- a/challenge-tv-show-info/README.md +++ /dev/null @@ -1,176 +0,0 @@ -# Challenge: TV Show Episode List - -Note: This is a challenge, **not** a tutorial. It is a chance to put into practice what you've studied. - -## Challenge Overview - -You must make a React app which shows all of the episode summaries of a tv show such as "Game Of Thrones", in one long list. - -(If you are interested in doing this challenge in vanilla JS see end of this document.) - -### Example Screenshot - -![Example Screenshot](./example-level-1.png) - -## What you need to know before starting: - -This challenge is suitable if you have successfully completed the homework of CYF React Week 1. - -You _will_ need to know... - -- how to create a react app -- how to load a static json file -- how to create a component in react -- how to pass props -- how to populate components from an array - -You DON'T need to know about: - -- state -- fetching JSON from an API - -## Task: Download and save a JSON file - -Your app should read the information _locally_ from a static JSON file. Download one of the following JSON files and save it. - -- [Breaking Bad](http://api.tvmaze.com/shows/169/episodes) -- [Game of Thrones](http://api.tvmaze.com/shows/82/episodes) -- [Lost](http://api.tvmaze.com/shows/123/episodes) -- [Sherlock](http://api.tvmaze.com/shows/335/episodes) -- [Star Trek TNG](http://api.tvmaze.com/shows/491/episodes) -- [The Daily Show](http://api.tvmaze.com/shows/3928/episodes) -- [The Simpsons](http://api.tvmaze.com/shows/83/episodes) -- [The Sopranos](http://api.tvmaze.com/shows/527/episodes) -- [The Walking Dead](http://api.tvmaze.com/shows/73/episodes) -- [The Wire](http://www.tvmaze.com/shows/179/the-wire) -- [The X-Files](http://api.tvmaze.com/shows/430/episodes) -- [True Blood](http://api.tvmaze.com/shows/22/episodes) - -Save it in your app in a new directory `src/data/`. E.g. `src/data/sherlock.json` - -# Try to figure the rest out by yourself - -If you want a harder challenge, don't read the rest of this document but try to build the app by yourself. - -# Suggested approach - -Here's one approach you might take to building this app. - -## Task: Investigate the JSON - -Look at the JSON. -Ask yourself the following questions and more - these will help you when you come to use the JSON in your app: - -- Does it contain an array or an object, at the top level? - - - If you think it contains an object at top level, what are the properties of the object? - - If you think it contains an array at top level, how many elements are there in that array? - -- What properties will you need from each episode? - - What are their names? - - Are they nested within other properties? - -## Task: Create a new React app - -Create a new empty React app for this challenge. - -The tool can take a while to run, so continue with the next task while it's running... - -## Task: Design your layout _on paper_ - -Design your layout on paper. Keep it very simple - this is a React challenge, not a CSS challenge. - -Use a layout that will be ok on a phone (but don't do responsive design). - -Keep this drawing around for reference later. - -## Task: Convert your layout to HTML (really, JSX) - -Make a prototype which just shows detail from one or two example episodes. _Don't_ worry about the JSON yet. - -If you're still new to React, you can do this all all within your `App.js`, with no other components. - -## Split your HTML across separate React components - -If you haven't already, now is a good time to "decompose" your HTML into separate sections. - -Go back to your paper layout and circle and name each section that will be a separate component. - -## Task: Read in the JSON - -Make your app load the JSON that you previously saved in a local file. Extract the first episode and use it to populate an `Episode` component. - -## Task: Make the whole list of episodes - -Loop over the JSON to make a whole list of `Episode` components. - -Note: If your app crashes at this point, _DO NOT_ edit the JSON - instead, look at the error messages and fix your code to prevent those errors from happening. - -## Task: Host your app - -Host your app and prove it works by viewing it on your phone! - -We recommend you use Netlify. [Instructions are here](https://gist.github.com/nbogie/bf58a391fab6884f77a6adec66047181). - -You can instead use Heroku to host, or github pages, or codesandbox.io, or glitch.com - -## End of basic challenge! - -Congratulations, you've finished the basics! - -- Send the URL of your hosted app to your team on Slack. -- Make sure you can access the site on a smartphone. -- Celebrate! - - -## Optional Challenge: store your code on github - -Put your code in a github repo. This way: -* employers can see it, -* mentors can code-review it -* you'll have a backup! - -Instructions on how to do this are [here](./github-instructions.md) - -## Advanced Challenge: make an episode selector - -### Example screenshot with episode selector - -![Example Screenshot](./example-level-2.png) - -Modify your app to show only one episode, which your user can choose using a `select` input. - -Make the selector that lists the episode numbers (E1S1) and titles, and allows you to choose one. - -When you choose one from the selector, have the single shown episode update accordingly. - -## Advanced Challenge: download the JSON live from the API - -This requires you have learned about fetch (e.g. in React week 3). - -Change your React app so that instead of using static data in a local file, it gets the data from the API just before it shows the page. - -_Be careful_ when developing this. By default, every time you make a small change to your app it will be restarted and the JSON will be downloaded _again_. These frequent http requests may lead to the API banning your IP address from further requests, or throttling for some time. - -## Advanced Challenge: Add the ability to choose show - -### Example screenshot with show selector - -![Example Screenshot](./example-level-3.png) - -Add the ability for the user to pick which _show_ is being presented. e.g. Allow them to change from "Game of Thrones" to "Star Trek", or to discover new shows! - -Note: This will require use of fetch and a basic use of promises. - -Make sure you have a backup of your code for your _working_ version, before you attempt this advanced version, so you always have something to show. - -## Extra CSS Challenge: Student-suggested - -This is a React challenge, but if you really want more practice, how about implementing this season-selector layout, suggested by Mussie (thanks Mussie!) There's interesting JS and React work to be done there, too! - - -![Season Selector Layout](./season-selector-mockup.png) - -## Vanilla JS version of this challenge - -There is now [a more detailed version of this challenge in the CYF syllabus](https://github.com/CodeYourFuture/syllabus/tree/master/js-core-3/tv-show-dom-project). That version is for vanilla JavaScript, not React. You might find it useful even if you are working in React. diff --git a/challenge-tv-show-info/example-level-1.png b/challenge-tv-show-info/example-level-1.png deleted file mode 100644 index 4050a10eb..000000000 Binary files a/challenge-tv-show-info/example-level-1.png and /dev/null differ diff --git a/challenge-tv-show-info/example-level-2.png b/challenge-tv-show-info/example-level-2.png deleted file mode 100644 index 19f0b03ed..000000000 Binary files a/challenge-tv-show-info/example-level-2.png and /dev/null differ diff --git a/challenge-tv-show-info/example-level-3.png b/challenge-tv-show-info/example-level-3.png deleted file mode 100644 index 4447d6bb9..000000000 Binary files a/challenge-tv-show-info/example-level-3.png and /dev/null differ diff --git a/challenge-tv-show-info/github-instructions.md b/challenge-tv-show-info/github-instructions.md deleted file mode 100644 index a6f2a5e45..000000000 --- a/challenge-tv-show-info/github-instructions.md +++ /dev/null @@ -1,42 +0,0 @@ -# Instructions: Hosting your tv-info react app on github - -Here are instructions for hosting your tv-info React app on github. - -Why would you want to do this? -* Potential employers can see an example of your code -* You have a more permanent backup of your code -* You get practice using github -* You can ask for code reviews - -When you started with `create-react-app`, that command also made a git repository locally for your project. -We will: -* ensure your work is committed to that local repo, -* create an empty repo on github to act as a "remote" for the local one, -* push the changes from the local repo to the github "remote" - -## Step-by-step - -* Open a terminal -* `cd` into the correct directory for your react tv-info project -* Add and commit all changes to git, locally, using git add and git commit -* Open github.com in a browser (ensure you are logged in) -* In the top-right click the plus (+) sign -* Choose "new repository" -* Add a suitable name for the repository. e.g. `tv-info-react` or `game-of-thrones-react` -* Don't change anything else -* Click `create repository` at the bottom of the form -* Find the section entitled "...or push an existing repository from the command line" -* Copy the FULL `git remote add origin` command from that section -* Paste it into terminal, and ensure it runs with no errors -* Run the second command: `git push -u origin master` -* Reload your github page and explore to ensure your most recent code is there. - -### Optional 1: link to your deployed project from your new github repo. - -It is a good idea to link from your github repo to your deployed react app. -* Click on "No description, website, or topics provided." -* When the form expands, edit the "website" field to have a link to your deployed project on netlify (e.g. https://elaminwk.netlify.com/) - -### Optional 2: link to your source on github from the footer of your react app - -* In your React app, add or edit the app's Footer component to include a link back to your new github repo so that people can look at your source code. diff --git a/challenge-tv-show-info/season-layout-by-mussie.jpg b/challenge-tv-show-info/season-layout-by-mussie.jpg deleted file mode 100644 index 612cc95bc..000000000 Binary files a/challenge-tv-show-info/season-layout-by-mussie.jpg and /dev/null differ diff --git a/challenge-tv-show-info/season-selector-mockup.png b/challenge-tv-show-info/season-selector-mockup.png deleted file mode 100644 index 4c3711427..000000000 Binary files a/challenge-tv-show-info/season-selector-mockup.png and /dev/null differ diff --git a/challenge-tv-show-info/teaching_notes.md b/challenge-tv-show-info/teaching_notes.md deleted file mode 100644 index b0d0541a8..000000000 --- a/challenge-tv-show-info/teaching_notes.md +++ /dev/null @@ -1,70 +0,0 @@ -# incremental steps for pre-react version of this challenge - -**pre-coding - looking at the data** -* looking at one episode of the JSON, -* identifying and extracting key elements of the data: episode name, img url, summary. "What properties will you need from each episode?" What are their names? Are they nested within other properties? - -**pure JS coding** -* extracting key elements of the data from ONE episode JSON (episode name, summary, img url, etc) - * presenting in plain text on the (node) console -* coding necessary manipulations of those key elements, presenting to console - * e.g. truncating summary to 100 chars - * e.g. making a fixed-width episode tag like `S01E03` from `{..., seasonNumber: 1, episode: 3 }` - * e.g. optional: clean-up of p tags in summary. - * (if teaching testing: writing tests for these examples) -* (optional) code some manipulations of the JSON: [Here are some in this repl: TVEpisodesStart](https://repl.it/@NeillBogie/TVEpisodesStart) - * getNamesOfFirstEpisodes(epis) - * getNumberedEpisode(epis, sNum, eNum) - * getSeasonLengths(epis) //(advanced) - *... - -**pre-coding - looking again at the data** -* Does it contain an array or an object, at the top level? - * If you think it contains an object at top level, what are the properties of the object? - * If you think it contains an array at top level, how many elements are there in that array? - -**back to pure JS coding** -* looping over the array of episodes, printing to console -* filtering the episode list by a string's occurence in episode summaries - * (based of necessity on a hard-coded value) -* finding and reporting ONE episode based on a find for season and episode numbers - -**on paper** -* **page layout design** (use a whiteboard app (or marvel, etc?) if remote) - -**html + vanilla JS coding** - -* **static** JSON file - **ONE episode** -* **static** JSON file - **LOOP through all episodes** -* **fetch of the JSON from API** - -** using input fields - no change to API use** -* add a search input and array.filter the episodes (based on string occurrence in summary) -* episode selector drop-down ("s01e08: The Pointy End") (with scroll/jump to place in list) -* defensive coding: - * defend against null `episode.image` (e.g. The Simpsons) - * defend against null `episode.summary` (e.g. The Voice) - -**responsive design** - -**more advanced** -* single-episode version: fetching ONE resource, based on the selector -* season selector, using multiple resources from the API - -# things to avoid - -* Don't have tens of resources being loaded that overwhelm exploration (e.g. in network tab) -* Don't have the project source consist of tens or hundreds of files. index.html, style.css, script.js, and maybe an image. -* Don't have students first trying to visualise what their programmatically created html page will LOOK like while they're staring at a page of code full of `document.createElement()` and `elem.appendChild()`. Have them build a prototype page first (e.g. in codepen) so they know exactly the page structure they're trying to create, down to the individual tag and class. -* don't try to describe the challenge in text where a screenshot would do -* don't give a working live version for students to play with without obfuscating the sources - some will copy-paste. Instead, use screenshots (and a video of any interaction). -* Don't give the project an expiry date as a portfolio item. Use a long-lived API with data which will likely continue (e.g. based on visualisation of PRs that will be deleted). -* Consider making permanently available the student's prototype version with static data as portfolio item when they want to do crucial demos without worrying about the API being available, etc. -* Don't use APIs that are going to rate-limit the students through the likely repeated calling during development. - - -# incremental steps for the react version - -TODO, but most of the above still applies. - - diff --git a/challenges-mars/README.md b/challenges-mars/README.md deleted file mode 100644 index f8875a0e5..000000000 --- a/challenges-mars/README.md +++ /dev/null @@ -1,71 +0,0 @@ -# Challenge: Who's on Mars? - -## Overview - -NASA has sent three rovers to Mars: Spirit, Opportunity, and Curiosity. These rovers move around Mars taking pictures (among other things). - -Unfortunately, rovers eventually stop sending back pictures. Some of the rovers stopped sending back pictures already.😥 - -## Difficulty Level - -This is a advanced challenge. Level one can be completed by any student who has done week 3 of the CYF React module. - -## API - -[This page gives details about NASA’s APIs](https://api.nasa.gov/). You should be ok to use DEMO_KEY as your API key for experimenting, but you may need to register for your own API key. Make sure not to check your API key into git. - -You should use the `Mars Rover Photos` API to get data. - -Make sure you read the website carefully before starting. - -You can use this API to get a list of the Rovers: - -e.g. https://api.nasa.gov/mars-photos/api/v1/rovers/?api_key=DEMO_KEY - -You can then use this api to get information about the rover - -e.g. https://api.nasa.gov/mars-photos/api/v1/rovers/curiosity?api_key=DEMO_KEY - -You can then use this API to get photos from that rover: - -e.g. https://api.nasa.gov/mars-photos/api/v1/rovers/curiosity/photos?sol=1000&api_key=DEMO_KEY - -_Note: Earth dates and Mars dates (“sols”) are slightly different. For the UI of this website, we always want to use Earth dates._ - -## Getting Started - -**Don't** clone this repo. - -Make your own React app using `create-react-app`. See [(this guide)](https://docs.codeyourfuture.io/students/guides/creating-a-react-app) if you have forgotten how. - -Write a plain HTML prototype (e.g. on codepen). THEN, once you know the HTML you're attempting to create, work on the React version! This is not mandatory but it is recommended. - -## Levels - -### Level 100 - -Your goal is to make a website which is a bit like a timeline or calendar. - -Create an overview page. - -Show when each of the rovers arrived on Mars, and make it clear when they overlapped. - -Use some nice visualisation to show this overlap. - -### Level 200 - -Improve your Overview page by also showing when each rover stopped sending back pictures. - -For any date I want, I should easily be able to tell “How many rovers were sending back pictures this day?” - -### Level 300 - -Per-date page - if the user clicks on a date on your overview page, you should show one picture of Mars taken by each rover which took a picture on that day. You should decide which camera tends to take the best “overview” photo. - -### Level 400 - -Per-date per-rover page - if the user clicks on the rover name from the per-date page, you should show all pictures (but not more than 25) taken by that rover on that day. - -### Level 500 - -Improve your per-date per-rover page to show up to 100 pictures. diff --git a/high-scores-react/.gitignore b/high-scores-react/.gitignore new file mode 100644 index 000000000..4d29575de --- /dev/null +++ b/high-scores-react/.gitignore @@ -0,0 +1,23 @@ +# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. + +# dependencies +/node_modules +/.pnp +.pnp.js + +# testing +/coverage + +# production +/build + +# misc +.DS_Store +.env.local +.env.development.local +.env.test.local +.env.production.local + +npm-debug.log* +yarn-debug.log* +yarn-error.log* diff --git a/high-scores-react/README.md b/high-scores-react/README.md new file mode 100644 index 000000000..58beeaccd --- /dev/null +++ b/high-scores-react/README.md @@ -0,0 +1,70 @@ +# Getting Started with Create React App + +This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app). + +## Available Scripts + +In the project directory, you can run: + +### `npm start` + +Runs the app in the development mode.\ +Open [http://localhost:3000](http://localhost:3000) to view it in your browser. + +The page will reload when you make changes.\ +You may also see any lint errors in the console. + +### `npm test` + +Launches the test runner in the interactive watch mode.\ +See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information. + +### `npm run build` + +Builds the app for production to the `build` folder.\ +It correctly bundles React in production mode and optimizes the build for the best performance. + +The build is minified and the filenames include the hashes.\ +Your app is ready to be deployed! + +See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information. + +### `npm run eject` + +**Note: this is a one-way operation. Once you `eject`, you can't go back!** + +If you aren't satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project. + +Instead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you're on your own. + +You don't have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn't feel obligated to use this feature. However we understand that this tool wouldn't be useful if you couldn't customize it when you are ready for it. + +## Learn More + +You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started). + +To learn React, check out the [React documentation](https://reactjs.org/). + +### Code Splitting + +This section has moved here: [https://facebook.github.io/create-react-app/docs/code-splitting](https://facebook.github.io/create-react-app/docs/code-splitting) + +### Analyzing the Bundle Size + +This section has moved here: [https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size](https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size) + +### Making a Progressive Web App + +This section has moved here: [https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app](https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app) + +### Advanced Configuration + +This section has moved here: [https://facebook.github.io/create-react-app/docs/advanced-configuration](https://facebook.github.io/create-react-app/docs/advanced-configuration) + +### Deployment + +This section has moved here: [https://facebook.github.io/create-react-app/docs/deployment](https://facebook.github.io/create-react-app/docs/deployment) + +### `npm run build` fails to minify + +This section has moved here: [https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify](https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify) diff --git a/high-scores-react/package-lock.json b/high-scores-react/package-lock.json new file mode 100644 index 000000000..303c724e2 --- /dev/null +++ b/high-scores-react/package-lock.json @@ -0,0 +1,17466 @@ +{ + "name": "high-scores-react", + "version": "0.1.0", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "high-scores-react", + "version": "0.1.0", + "dependencies": { + "@testing-library/jest-dom": "^5.16.5", + "@testing-library/react": "^13.4.0", + "@testing-library/user-event": "^13.5.0", + "react": "^18.2.0", + "react-dom": "^18.2.0", + "react-scripts": "5.0.1", + "web-vitals": "^2.1.4" + } + }, + "node_modules/@adobe/css-tools": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/@adobe/css-tools/-/css-tools-4.2.0.tgz", + "integrity": "sha512-E09FiIft46CmH5Qnjb0wsW54/YQd69LsxeKUOWawmws1XWvyFGURnAChH0mlr7YPFR1ofwvUQfcL0J3lMxXqPA==" + }, + "node_modules/@alloc/quick-lru": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/@alloc/quick-lru/-/quick-lru-5.2.0.tgz", + "integrity": "sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@ampproject/remapping": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.1.tgz", + "integrity": "sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==", + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.0", + "@jridgewell/trace-mapping": "^0.3.9" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/code-frame": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.22.5.tgz", + "integrity": "sha512-Xmwn266vad+6DAqEB2A6V/CcZVp62BbwVmcOJc2RPuwih1kw02TjQvWVWlcKGbBPd+8/0V5DEkOcizRGYsspYQ==", + "dependencies": { + "@babel/highlight": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/compat-data": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.22.5.tgz", + "integrity": "sha512-4Jc/YuIaYqKnDDz892kPIledykKg12Aw1PYX5i/TY28anJtacvM1Rrr8wbieB9GfEJwlzqT0hUEao0CxEebiDA==", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/core": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.22.5.tgz", + "integrity": "sha512-SBuTAjg91A3eKOvD+bPEz3LlhHZRNu1nFOVts9lzDJTXshHTjII0BAtDS3Y2DAkdZdDKWVZGVwkDfc4Clxn1dg==", + "dependencies": { + "@ampproject/remapping": "^2.2.0", + "@babel/code-frame": "^7.22.5", + "@babel/generator": "^7.22.5", + "@babel/helper-compilation-targets": "^7.22.5", + "@babel/helper-module-transforms": "^7.22.5", + "@babel/helpers": "^7.22.5", + "@babel/parser": "^7.22.5", + "@babel/template": "^7.22.5", + "@babel/traverse": "^7.22.5", + "@babel/types": "^7.22.5", + "convert-source-map": "^1.7.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.2.2", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/babel" + } + }, + "node_modules/@babel/core/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/eslint-parser": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/eslint-parser/-/eslint-parser-7.22.5.tgz", + "integrity": "sha512-C69RWYNYtrgIRE5CmTd77ZiLDXqgBipahJc/jHP3sLcAGj6AJzxNIuKNpVnICqbyK7X3pFUfEvL++rvtbQpZkQ==", + "dependencies": { + "@nicolo-ribaudo/eslint-scope-5-internals": "5.1.1-v1", + "eslint-visitor-keys": "^2.1.0", + "semver": "^6.3.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || >=14.0.0" + }, + "peerDependencies": { + "@babel/core": ">=7.11.0", + "eslint": "^7.5.0 || ^8.0.0" + } + }, + "node_modules/@babel/eslint-parser/node_modules/eslint-visitor-keys": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz", + "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==", + "engines": { + "node": ">=10" + } + }, + "node_modules/@babel/eslint-parser/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/generator": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.22.5.tgz", + "integrity": "sha512-+lcUbnTRhd0jOewtFSedLyiPsD5tswKkbgcezOqqWFUVNEwoUTlpPOBmvhG7OXWLR4jMdv0czPGH5XbflnD1EA==", + "dependencies": { + "@babel/types": "^7.22.5", + "@jridgewell/gen-mapping": "^0.3.2", + "@jridgewell/trace-mapping": "^0.3.17", + "jsesc": "^2.5.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-annotate-as-pure": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz", + "integrity": "sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==", + "dependencies": { + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-builder-binary-assignment-operator-visitor": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.22.5.tgz", + "integrity": "sha512-m1EP3lVOPptR+2DwD125gziZNcmoNSHGmJROKoy87loWUQyJaVXDgpmruWqDARZSmtYQ+Dl25okU8+qhVzuykw==", + "dependencies": { + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-compilation-targets": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.5.tgz", + "integrity": "sha512-Ji+ywpHeuqxB8WDxraCiqR0xfhYjiDE/e6k7FuIaANnoOFxAHskHChz4vA1mJC9Lbm01s1PVAGhQY4FUKSkGZw==", + "dependencies": { + "@babel/compat-data": "^7.22.5", + "@babel/helper-validator-option": "^7.22.5", + "browserslist": "^4.21.3", + "lru-cache": "^5.1.1", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-compilation-targets/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/helper-create-class-features-plugin": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.22.5.tgz", + "integrity": "sha512-xkb58MyOYIslxu3gKmVXmjTtUPvBU4odYzbiIQbWwLKIHCsx6UGZGX6F1IznMFVnDdirseUZopzN+ZRt8Xb33Q==", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.22.5", + "@babel/helper-environment-visitor": "^7.22.5", + "@babel/helper-function-name": "^7.22.5", + "@babel/helper-member-expression-to-functions": "^7.22.5", + "@babel/helper-optimise-call-expression": "^7.22.5", + "@babel/helper-replace-supers": "^7.22.5", + "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", + "@babel/helper-split-export-declaration": "^7.22.5", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-create-class-features-plugin/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/helper-create-regexp-features-plugin": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.22.5.tgz", + "integrity": "sha512-1VpEFOIbMRaXyDeUwUfmTIxExLwQ+zkW+Bh5zXpApA3oQedBx9v/updixWxnx/bZpKw7u8VxWjb/qWpIcmPq8A==", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.22.5", + "regexpu-core": "^5.3.1", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-create-regexp-features-plugin/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/helper-define-polyfill-provider": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.4.0.tgz", + "integrity": "sha512-RnanLx5ETe6aybRi1cO/edaRH+bNYWaryCEmjDDYyNr4wnSzyOp8T0dWipmqVHKEY3AbVKUom50AKSlj1zmKbg==", + "dependencies": { + "@babel/helper-compilation-targets": "^7.17.7", + "@babel/helper-plugin-utils": "^7.16.7", + "debug": "^4.1.1", + "lodash.debounce": "^4.0.8", + "resolve": "^1.14.2", + "semver": "^6.1.2" + }, + "peerDependencies": { + "@babel/core": "^7.4.0-0" + } + }, + "node_modules/@babel/helper-define-polyfill-provider/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/helper-environment-visitor": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.5.tgz", + "integrity": "sha512-XGmhECfVA/5sAt+H+xpSg0mfrHq6FzNr9Oxh7PSEBBRUb/mL7Kz3NICXb194rCqAEdxkhPT1a88teizAFyvk8Q==", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-function-name": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.22.5.tgz", + "integrity": "sha512-wtHSq6jMRE3uF2otvfuD3DIvVhOsSNshQl0Qrd7qC9oQJzHvOL4qQXlQn2916+CXGywIjpGuIkoyZRRxHPiNQQ==", + "dependencies": { + "@babel/template": "^7.22.5", + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-hoist-variables": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz", + "integrity": "sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==", + "dependencies": { + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-member-expression-to-functions": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.22.5.tgz", + "integrity": "sha512-aBiH1NKMG0H2cGZqspNvsaBe6wNGjbJjuLy29aU+eDZjSbbN53BaxlpB02xm9v34pLTZ1nIQPFYn2qMZoa5BQQ==", + "dependencies": { + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-imports": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.22.5.tgz", + "integrity": "sha512-8Dl6+HD/cKifutF5qGd/8ZJi84QeAKh+CEe1sBzz8UayBBGg1dAIJrdHOcOM5b2MpzWL2yuotJTtGjETq0qjXg==", + "dependencies": { + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-transforms": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.22.5.tgz", + "integrity": "sha512-+hGKDt/Ze8GFExiVHno/2dvG5IdstpzCq0y4Qc9OJ25D4q3pKfiIP/4Vp3/JvhDkLKsDK2api3q3fpIgiIF5bw==", + "dependencies": { + "@babel/helper-environment-visitor": "^7.22.5", + "@babel/helper-module-imports": "^7.22.5", + "@babel/helper-simple-access": "^7.22.5", + "@babel/helper-split-export-declaration": "^7.22.5", + "@babel/helper-validator-identifier": "^7.22.5", + "@babel/template": "^7.22.5", + "@babel/traverse": "^7.22.5", + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-optimise-call-expression": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.22.5.tgz", + "integrity": "sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==", + "dependencies": { + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-plugin-utils": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz", + "integrity": "sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-remap-async-to-generator": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.22.5.tgz", + "integrity": "sha512-cU0Sq1Rf4Z55fgz7haOakIyM7+x/uCFwXpLPaeRzfoUtAEAuUZjZvFPjL/rk5rW693dIgn2hng1W7xbT7lWT4g==", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.22.5", + "@babel/helper-environment-visitor": "^7.22.5", + "@babel/helper-wrap-function": "^7.22.5", + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-replace-supers": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.22.5.tgz", + "integrity": "sha512-aLdNM5I3kdI/V9xGNyKSF3X/gTyMUBohTZ+/3QdQKAA9vxIiy12E+8E2HoOP1/DjeqU+g6as35QHJNMDDYpuCg==", + "dependencies": { + "@babel/helper-environment-visitor": "^7.22.5", + "@babel/helper-member-expression-to-functions": "^7.22.5", + "@babel/helper-optimise-call-expression": "^7.22.5", + "@babel/template": "^7.22.5", + "@babel/traverse": "^7.22.5", + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-simple-access": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz", + "integrity": "sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==", + "dependencies": { + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-skip-transparent-expression-wrappers": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.22.5.tgz", + "integrity": "sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==", + "dependencies": { + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-split-export-declaration": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.5.tgz", + "integrity": "sha512-thqK5QFghPKWLhAV321lxF95yCg2K3Ob5yw+M3VHWfdia0IkPXUtoLH8x/6Fh486QUvzhb8YOWHChTVen2/PoQ==", + "dependencies": { + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-string-parser": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.22.5.tgz", + "integrity": "sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-identifier": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.5.tgz", + "integrity": "sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ==", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-option": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.22.5.tgz", + "integrity": "sha512-R3oB6xlIVKUnxNUxbmgq7pKjxpru24zlimpE8WK47fACIlM0II/Hm1RS8IaOI7NgCr6LNS+jl5l75m20npAziw==", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-wrap-function": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.22.5.tgz", + "integrity": "sha512-bYqLIBSEshYcYQyfks8ewYA8S30yaGSeRslcvKMvoUk6HHPySbxHq9YRi6ghhzEU+yhQv9bP/jXnygkStOcqZw==", + "dependencies": { + "@babel/helper-function-name": "^7.22.5", + "@babel/template": "^7.22.5", + "@babel/traverse": "^7.22.5", + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helpers": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.22.5.tgz", + "integrity": "sha512-pSXRmfE1vzcUIDFQcSGA5Mr+GxBV9oiRKDuDxXvWQQBCh8HoIjs/2DlDB7H8smac1IVrB9/xdXj2N3Wol9Cr+Q==", + "dependencies": { + "@babel/template": "^7.22.5", + "@babel/traverse": "^7.22.5", + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/highlight": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.22.5.tgz", + "integrity": "sha512-BSKlD1hgnedS5XRnGOljZawtag7H1yPfQp0tdNJCHoH6AZ+Pcm9VvkrK59/Yy593Ypg0zMxH2BxD1VPYUQ7UIw==", + "dependencies": { + "@babel/helper-validator-identifier": "^7.22.5", + "chalk": "^2.0.0", + "js-tokens": "^4.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/parser": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.22.5.tgz", + "integrity": "sha512-DFZMC9LJUG9PLOclRC32G63UXwzqS2koQC8dkx+PLdmt1xSePYpbT/NbsrJy8Q/muXz7o/h/d4A7Fuyixm559Q==", + "bin": { + "parser": "bin/babel-parser.js" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.22.5.tgz", + "integrity": "sha512-NP1M5Rf+u2Gw9qfSO4ihjcTGW5zXTi36ITLd4/EoAcEhIZ0yjMqmftDNl3QC19CX7olhrjpyU454g/2W7X0jvQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.22.5.tgz", + "integrity": "sha512-31Bb65aZaUwqCbWMnZPduIZxCBngHFlzyN6Dq6KAJjtx+lx6ohKHubc61OomYi7XwVD4Ol0XCVz4h+pYFR048g==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", + "@babel/plugin-transform-optional-chaining": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.13.0" + } + }, + "node_modules/@babel/plugin-proposal-class-properties": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.18.6.tgz", + "integrity": "sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==", + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-decorators": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.22.5.tgz", + "integrity": "sha512-h8hlezQ4dl6ixodgXkH8lUfcD7x+WAuIqPUjwGoItynrXOAv4a4Tci1zA/qjzQjjcl0v3QpLdc2LM6ZACQuY7A==", + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-replace-supers": "^7.22.5", + "@babel/helper-split-export-declaration": "^7.22.5", + "@babel/plugin-syntax-decorators": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-nullish-coalescing-operator": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.18.6.tgz", + "integrity": "sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-numeric-separator": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.18.6.tgz", + "integrity": "sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/plugin-syntax-numeric-separator": "^7.10.4" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-optional-chaining": { + "version": "7.21.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.21.0.tgz", + "integrity": "sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/helper-skip-transparent-expression-wrappers": "^7.20.0", + "@babel/plugin-syntax-optional-chaining": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-private-methods": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.18.6.tgz", + "integrity": "sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==", + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-private-property-in-object": { + "version": "7.21.0-placeholder-for-preset-env.2", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz", + "integrity": "sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==", + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-unicode-property-regex": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.18.6.tgz", + "integrity": "sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-async-generators": { + "version": "7.8.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", + "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-bigint": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz", + "integrity": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-class-properties": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", + "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.12.13" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-class-static-block": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz", + "integrity": "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-decorators": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.22.5.tgz", + "integrity": "sha512-avpUOBS7IU6al8MmF1XpAyj9QYeLPuSDJI5D4pVMSMdL7xQokKqJPYQC67RCT0aCTashUXPiGwMJ0DEXXCEmMA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-dynamic-import": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz", + "integrity": "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-export-namespace-from": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz", + "integrity": "sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.3" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-flow": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.22.5.tgz", + "integrity": "sha512-9RdCl0i+q0QExayk2nOS7853w08yLucnnPML6EN9S8fgMPVtdLDCdx/cOQ/i44Lb9UeQX9A35yaqBBOMMZxPxQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-import-assertions": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.22.5.tgz", + "integrity": "sha512-rdV97N7KqsRzeNGoWUOK6yUsWarLjE5Su/Snk9IYPU9CwkWHs4t+rTGOvffTR8XGkJMTAdLfO0xVnXm8wugIJg==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-import-attributes": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.22.5.tgz", + "integrity": "sha512-KwvoWDeNKPETmozyFE0P2rOLqh39EoQHNjqizrI5B8Vt0ZNS7M56s7dAiAqbYfiAYOuIzIh96z3iR2ktgu3tEg==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-import-meta": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz", + "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-json-strings": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", + "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-jsx": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.22.5.tgz", + "integrity": "sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-logical-assignment-operators": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", + "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-nullish-coalescing-operator": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", + "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-numeric-separator": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", + "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-object-rest-spread": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", + "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-optional-catch-binding": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", + "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-optional-chaining": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", + "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-private-property-in-object": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz", + "integrity": "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-top-level-await": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz", + "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-typescript": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.22.5.tgz", + "integrity": "sha512-1mS2o03i7t1c6VzH6fdQ3OA8tcEIxwG18zIPRp+UY1Ihv6W+XZzBCVxExF9upussPXJ0xE9XRHwMoNs1ep/nRQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-unicode-sets-regex": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-unicode-sets-regex/-/plugin-syntax-unicode-sets-regex-7.18.6.tgz", + "integrity": "sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-transform-arrow-functions": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.22.5.tgz", + "integrity": "sha512-26lTNXoVRdAnsaDXPpvCNUq+OVWEVC6bx7Vvz9rC53F2bagUWW4u4ii2+h8Fejfh7RYqPxn+libeFBBck9muEw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-async-generator-functions": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.22.5.tgz", + "integrity": "sha512-gGOEvFzm3fWoyD5uZq7vVTD57pPJ3PczPUD/xCFGjzBpUosnklmXyKnGQbbbGs1NPNPskFex0j93yKbHt0cHyg==", + "dependencies": { + "@babel/helper-environment-visitor": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-remap-async-to-generator": "^7.22.5", + "@babel/plugin-syntax-async-generators": "^7.8.4" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-async-to-generator": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.22.5.tgz", + "integrity": "sha512-b1A8D8ZzE/VhNDoV1MSJTnpKkCG5bJo+19R4o4oy03zM7ws8yEMK755j61Dc3EyvdysbqH5BOOTquJ7ZX9C6vQ==", + "dependencies": { + "@babel/helper-module-imports": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-remap-async-to-generator": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-block-scoped-functions": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.22.5.tgz", + "integrity": "sha512-tdXZ2UdknEKQWKJP1KMNmuF5Lx3MymtMN/pvA+p/VEkhK8jVcQ1fzSy8KM9qRYhAf2/lV33hoMPKI/xaI9sADA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-block-scoping": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.22.5.tgz", + "integrity": "sha512-EcACl1i5fSQ6bt+YGuU/XGCeZKStLmyVGytWkpyhCLeQVA0eu6Wtiw92V+I1T/hnezUv7j74dA/Ro69gWcU+hg==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-class-properties": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.22.5.tgz", + "integrity": "sha512-nDkQ0NfkOhPTq8YCLiWNxp1+f9fCobEjCb0n8WdbNUBc4IB5V7P1QnX9IjpSoquKrXF5SKojHleVNs2vGeHCHQ==", + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-class-static-block": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.22.5.tgz", + "integrity": "sha512-SPToJ5eYZLxlnp1UzdARpOGeC2GbHvr9d/UV0EukuVx8atktg194oe+C5BqQ8jRTkgLRVOPYeXRSBg1IlMoVRA==", + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-class-static-block": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.12.0" + } + }, + "node_modules/@babel/plugin-transform-classes": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.22.5.tgz", + "integrity": "sha512-2edQhLfibpWpsVBx2n/GKOz6JdGQvLruZQfGr9l1qes2KQaWswjBzhQF7UDUZMNaMMQeYnQzxwOMPsbYF7wqPQ==", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.22.5", + "@babel/helper-compilation-targets": "^7.22.5", + "@babel/helper-environment-visitor": "^7.22.5", + "@babel/helper-function-name": "^7.22.5", + "@babel/helper-optimise-call-expression": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-replace-supers": "^7.22.5", + "@babel/helper-split-export-declaration": "^7.22.5", + "globals": "^11.1.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-computed-properties": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.22.5.tgz", + "integrity": "sha512-4GHWBgRf0krxPX+AaPtgBAlTgTeZmqDynokHOX7aqqAB4tHs3U2Y02zH6ETFdLZGcg9UQSD1WCmkVrE9ErHeOg==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/template": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-destructuring": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.22.5.tgz", + "integrity": "sha512-GfqcFuGW8vnEqTUBM7UtPd5A4q797LTvvwKxXTgRsFjoqaJiEg9deBG6kWeQYkVEL569NpnmpC0Pkr/8BLKGnQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-dotall-regex": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.22.5.tgz", + "integrity": "sha512-5/Yk9QxCQCl+sOIB1WelKnVRxTJDSAIxtJLL2/pqL14ZVlbH0fUQUZa/T5/UnQtBNgghR7mfB8ERBKyKPCi7Vw==", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-duplicate-keys": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.22.5.tgz", + "integrity": "sha512-dEnYD+9BBgld5VBXHnF/DbYGp3fqGMsyxKbtD1mDyIA7AkTSpKXFhCVuj/oQVOoALfBs77DudA0BE4d5mcpmqw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-dynamic-import": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.22.5.tgz", + "integrity": "sha512-0MC3ppTB1AMxd8fXjSrbPa7LT9hrImt+/fcj+Pg5YMD7UQyWp/02+JWpdnCymmsXwIx5Z+sYn1bwCn4ZJNvhqQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-dynamic-import": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-exponentiation-operator": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.22.5.tgz", + "integrity": "sha512-vIpJFNM/FjZ4rh1myqIya9jXwrwwgFRHPjT3DkUA9ZLHuzox8jiXkOLvwm1H+PQIP3CqfC++WPKeuDi0Sjdj1g==", + "dependencies": { + "@babel/helper-builder-binary-assignment-operator-visitor": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-export-namespace-from": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.22.5.tgz", + "integrity": "sha512-X4hhm7FRnPgd4nDA4b/5V280xCx6oL7Oob5+9qVS5C13Zq4bh1qq7LU0GgRU6b5dBWBvhGaXYVB4AcN6+ol6vg==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-export-namespace-from": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-flow-strip-types": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.22.5.tgz", + "integrity": "sha512-tujNbZdxdG0/54g/oua8ISToaXTFBf8EnSb5PgQSciIXWOWKX3S4+JR7ZE9ol8FZwf9kxitzkGQ+QWeov/mCiA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-flow": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-for-of": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.22.5.tgz", + "integrity": "sha512-3kxQjX1dU9uudwSshyLeEipvrLjBCVthCgeTp6CzE/9JYrlAIaeekVxRpCWsDDfYTfRZRoCeZatCQvwo+wvK8A==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-function-name": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.22.5.tgz", + "integrity": "sha512-UIzQNMS0p0HHiQm3oelztj+ECwFnj+ZRV4KnguvlsD2of1whUeM6o7wGNj6oLwcDoAXQ8gEqfgC24D+VdIcevg==", + "dependencies": { + "@babel/helper-compilation-targets": "^7.22.5", + "@babel/helper-function-name": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-json-strings": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.22.5.tgz", + "integrity": "sha512-DuCRB7fu8MyTLbEQd1ew3R85nx/88yMoqo2uPSjevMj3yoN7CDM8jkgrY0wmVxfJZyJ/B9fE1iq7EQppWQmR5A==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-json-strings": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-literals": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.22.5.tgz", + "integrity": "sha512-fTLj4D79M+mepcw3dgFBTIDYpbcB9Sm0bpm4ppXPaO+U+PKFFyV9MGRvS0gvGw62sd10kT5lRMKXAADb9pWy8g==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-logical-assignment-operators": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.22.5.tgz", + "integrity": "sha512-MQQOUW1KL8X0cDWfbwYP+TbVbZm16QmQXJQ+vndPtH/BoO0lOKpVoEDMI7+PskYxH+IiE0tS8xZye0qr1lGzSA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-member-expression-literals": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.22.5.tgz", + "integrity": "sha512-RZEdkNtzzYCFl9SE9ATaUMTj2hqMb4StarOJLrZRbqqU4HSBE7UlBw9WBWQiDzrJZJdUWiMTVDI6Gv/8DPvfew==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-amd": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.22.5.tgz", + "integrity": "sha512-R+PTfLTcYEmb1+kK7FNkhQ1gP4KgjpSO6HfH9+f8/yfp2Nt3ggBjiVpRwmwTlfqZLafYKJACy36yDXlEmI9HjQ==", + "dependencies": { + "@babel/helper-module-transforms": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-commonjs": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.22.5.tgz", + "integrity": "sha512-B4pzOXj+ONRmuaQTg05b3y/4DuFz3WcCNAXPLb2Q0GT0TrGKGxNKV4jwsXts+StaM0LQczZbOpj8o1DLPDJIiA==", + "dependencies": { + "@babel/helper-module-transforms": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-simple-access": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-systemjs": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.22.5.tgz", + "integrity": "sha512-emtEpoaTMsOs6Tzz+nbmcePl6AKVtS1yC4YNAeMun9U8YCsgadPNxnOPQ8GhHFB2qdx+LZu9LgoC0Lthuu05DQ==", + "dependencies": { + "@babel/helper-hoist-variables": "^7.22.5", + "@babel/helper-module-transforms": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-validator-identifier": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-umd": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.22.5.tgz", + "integrity": "sha512-+S6kzefN/E1vkSsKx8kmQuqeQsvCKCd1fraCM7zXm4SFoggI099Tr4G8U81+5gtMdUeMQ4ipdQffbKLX0/7dBQ==", + "dependencies": { + "@babel/helper-module-transforms": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-named-capturing-groups-regex": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.22.5.tgz", + "integrity": "sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-transform-new-target": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.22.5.tgz", + "integrity": "sha512-AsF7K0Fx/cNKVyk3a+DW0JLo+Ua598/NxMRvxDnkpCIGFh43+h/v2xyhRUYf6oD8gE4QtL83C7zZVghMjHd+iw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-nullish-coalescing-operator": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.22.5.tgz", + "integrity": "sha512-6CF8g6z1dNYZ/VXok5uYkkBBICHZPiGEl7oDnAx2Mt1hlHVHOSIKWJaXHjQJA5VB43KZnXZDIexMchY4y2PGdA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-numeric-separator": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.22.5.tgz", + "integrity": "sha512-NbslED1/6M+sXiwwtcAB/nieypGw02Ejf4KtDeMkCEpP6gWFMX1wI9WKYua+4oBneCCEmulOkRpwywypVZzs/g==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-numeric-separator": "^7.10.4" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-object-rest-spread": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.22.5.tgz", + "integrity": "sha512-Kk3lyDmEslH9DnvCDA1s1kkd3YWQITiBOHngOtDL9Pt6BZjzqb6hiOlb8VfjiiQJ2unmegBqZu0rx5RxJb5vmQ==", + "dependencies": { + "@babel/compat-data": "^7.22.5", + "@babel/helper-compilation-targets": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-transform-parameters": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-object-super": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.22.5.tgz", + "integrity": "sha512-klXqyaT9trSjIUrcsYIfETAzmOEZL3cBYqOYLJxBHfMFFggmXOv+NYSX/Jbs9mzMVESw/WycLFPRx8ba/b2Ipw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-replace-supers": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-optional-catch-binding": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.22.5.tgz", + "integrity": "sha512-pH8orJahy+hzZje5b8e2QIlBWQvGpelS76C63Z+jhZKsmzfNaPQ+LaW6dcJ9bxTpo1mtXbgHwy765Ro3jftmUg==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-optional-chaining": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.22.5.tgz", + "integrity": "sha512-AconbMKOMkyG+xCng2JogMCDcqW8wedQAqpVIL4cOSescZ7+iW8utC6YDZLMCSUIReEA733gzRSaOSXMAt/4WQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", + "@babel/plugin-syntax-optional-chaining": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-parameters": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.22.5.tgz", + "integrity": "sha512-AVkFUBurORBREOmHRKo06FjHYgjrabpdqRSwq6+C7R5iTCZOsM4QbcB27St0a4U6fffyAOqh3s/qEfybAhfivg==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-private-methods": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.22.5.tgz", + "integrity": "sha512-PPjh4gyrQnGe97JTalgRGMuU4icsZFnWkzicB/fUtzlKUqvsWBKEpPPfr5a2JiyirZkHxnAqkQMO5Z5B2kK3fA==", + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-private-property-in-object": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.22.5.tgz", + "integrity": "sha512-/9xnaTTJcVoBtSSmrVyhtSvO3kbqS2ODoh2juEU72c3aYonNF0OMGiaz2gjukyKM2wBBYJP38S4JiE0Wfb5VMQ==", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.22.5", + "@babel/helper-create-class-features-plugin": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-private-property-in-object": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-property-literals": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.22.5.tgz", + "integrity": "sha512-TiOArgddK3mK/x1Qwf5hay2pxI6wCZnvQqrFSqbtg1GLl2JcNMitVH/YnqjP+M31pLUeTfzY1HAXFDnUBV30rQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-constant-elements": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-constant-elements/-/plugin-transform-react-constant-elements-7.22.5.tgz", + "integrity": "sha512-BF5SXoO+nX3h5OhlN78XbbDrBOffv+AxPP2ENaJOVqjWCgBDeOY3WcaUcddutGSfoap+5NEQ/q/4I3WZIvgkXA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-display-name": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.22.5.tgz", + "integrity": "sha512-PVk3WPYudRF5z4GKMEYUrLjPl38fJSKNaEOkFuoprioowGuWN6w2RKznuFNSlJx7pzzXXStPUnNSOEO0jL5EVw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-jsx": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.22.5.tgz", + "integrity": "sha512-rog5gZaVbUip5iWDMTYbVM15XQq+RkUKhET/IHR6oizR+JEoN6CAfTTuHcK4vwUyzca30qqHqEpzBOnaRMWYMA==", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.22.5", + "@babel/helper-module-imports": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-jsx": "^7.22.5", + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-jsx-development": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.22.5.tgz", + "integrity": "sha512-bDhuzwWMuInwCYeDeMzyi7TaBgRQei6DqxhbyniL7/VG4RSS7HtSL2QbY4eESy1KJqlWt8g3xeEBGPuo+XqC8A==", + "dependencies": { + "@babel/plugin-transform-react-jsx": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-pure-annotations": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.22.5.tgz", + "integrity": "sha512-gP4k85wx09q+brArVinTXhWiyzLl9UpmGva0+mWyKxk6JZequ05x3eUcIUE+FyttPKJFRRVtAvQaJ6YF9h1ZpA==", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-regenerator": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.22.5.tgz", + "integrity": "sha512-rR7KePOE7gfEtNTh9Qw+iO3Q/e4DEsoQ+hdvM6QUDH7JRJ5qxq5AA52ZzBWbI5i9lfNuvySgOGP8ZN7LAmaiPw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "regenerator-transform": "^0.15.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-reserved-words": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.22.5.tgz", + "integrity": "sha512-DTtGKFRQUDm8svigJzZHzb/2xatPc6TzNvAIJ5GqOKDsGFYgAskjRulbR/vGsPKq3OPqtexnz327qYpP57RFyA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-runtime": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.22.5.tgz", + "integrity": "sha512-bg4Wxd1FWeFx3daHFTWk1pkSWK/AyQuiyAoeZAOkAOUBjnZPH6KT7eMxouV47tQ6hl6ax2zyAWBdWZXbrvXlaw==", + "dependencies": { + "@babel/helper-module-imports": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5", + "babel-plugin-polyfill-corejs2": "^0.4.3", + "babel-plugin-polyfill-corejs3": "^0.8.1", + "babel-plugin-polyfill-regenerator": "^0.5.0", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-runtime/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/plugin-transform-shorthand-properties": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.22.5.tgz", + "integrity": "sha512-vM4fq9IXHscXVKzDv5itkO1X52SmdFBFcMIBZ2FRn2nqVYqw6dBexUgMvAjHW+KXpPPViD/Yo3GrDEBaRC0QYA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-spread": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.22.5.tgz", + "integrity": "sha512-5ZzDQIGyvN4w8+dMmpohL6MBo+l2G7tfC/O2Dg7/hjpgeWvUx8FzfeOKxGog9IimPa4YekaQ9PlDqTLOljkcxg==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-sticky-regex": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.22.5.tgz", + "integrity": "sha512-zf7LuNpHG0iEeiyCNwX4j3gDg1jgt1k3ZdXBKbZSoA3BbGQGvMiSvfbZRR3Dr3aeJe3ooWFZxOOG3IRStYp2Bw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-template-literals": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.22.5.tgz", + "integrity": "sha512-5ciOehRNf+EyUeewo8NkbQiUs4d6ZxiHo6BcBcnFlgiJfu16q0bQUw9Jvo0b0gBKFG1SMhDSjeKXSYuJLeFSMA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-typeof-symbol": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.22.5.tgz", + "integrity": "sha512-bYkI5lMzL4kPii4HHEEChkD0rkc+nvnlR6+o/qdqR6zrm0Sv/nodmyLhlq2DO0YKLUNd2VePmPRjJXSBh9OIdA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-typescript": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.22.5.tgz", + "integrity": "sha512-SMubA9S7Cb5sGSFFUlqxyClTA9zWJ8qGQrppNUm05LtFuN1ELRFNndkix4zUJrC9F+YivWwa1dHMSyo0e0N9dA==", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.22.5", + "@babel/helper-create-class-features-plugin": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-typescript": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-unicode-escapes": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.22.5.tgz", + "integrity": "sha512-biEmVg1IYB/raUO5wT1tgfacCef15Fbzhkx493D3urBI++6hpJ+RFG4SrWMn0NEZLfvilqKf3QDrRVZHo08FYg==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-unicode-property-regex": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.22.5.tgz", + "integrity": "sha512-HCCIb+CbJIAE6sXn5CjFQXMwkCClcOfPCzTlilJ8cUatfzwHlWQkbtV0zD338u9dZskwvuOYTuuaMaA8J5EI5A==", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-unicode-regex": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.22.5.tgz", + "integrity": "sha512-028laaOKptN5vHJf9/Arr/HiJekMd41hOEZYvNsrsXqJ7YPYuX2bQxh31fkZzGmq3YqHRJzYFFAVYvKfMPKqyg==", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-unicode-sets-regex": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.22.5.tgz", + "integrity": "sha512-lhMfi4FC15j13eKrh3DnYHjpGj6UKQHtNKTbtc1igvAhRy4+kLhV07OpLcsN0VgDEw/MjAvJO4BdMJsHwMhzCg==", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/preset-env": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.22.5.tgz", + "integrity": "sha512-fj06hw89dpiZzGZtxn+QybifF07nNiZjZ7sazs2aVDcysAZVGjW7+7iFYxg6GLNM47R/thYfLdrXc+2f11Vi9A==", + "dependencies": { + "@babel/compat-data": "^7.22.5", + "@babel/helper-compilation-targets": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-validator-option": "^7.22.5", + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.22.5", + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.22.5", + "@babel/plugin-proposal-private-property-in-object": "7.21.0-placeholder-for-preset-env.2", + "@babel/plugin-syntax-async-generators": "^7.8.4", + "@babel/plugin-syntax-class-properties": "^7.12.13", + "@babel/plugin-syntax-class-static-block": "^7.14.5", + "@babel/plugin-syntax-dynamic-import": "^7.8.3", + "@babel/plugin-syntax-export-namespace-from": "^7.8.3", + "@babel/plugin-syntax-import-assertions": "^7.22.5", + "@babel/plugin-syntax-import-attributes": "^7.22.5", + "@babel/plugin-syntax-import-meta": "^7.10.4", + "@babel/plugin-syntax-json-strings": "^7.8.3", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", + "@babel/plugin-syntax-numeric-separator": "^7.10.4", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", + "@babel/plugin-syntax-optional-chaining": "^7.8.3", + "@babel/plugin-syntax-private-property-in-object": "^7.14.5", + "@babel/plugin-syntax-top-level-await": "^7.14.5", + "@babel/plugin-syntax-unicode-sets-regex": "^7.18.6", + "@babel/plugin-transform-arrow-functions": "^7.22.5", + "@babel/plugin-transform-async-generator-functions": "^7.22.5", + "@babel/plugin-transform-async-to-generator": "^7.22.5", + "@babel/plugin-transform-block-scoped-functions": "^7.22.5", + "@babel/plugin-transform-block-scoping": "^7.22.5", + "@babel/plugin-transform-class-properties": "^7.22.5", + "@babel/plugin-transform-class-static-block": "^7.22.5", + "@babel/plugin-transform-classes": "^7.22.5", + "@babel/plugin-transform-computed-properties": "^7.22.5", + "@babel/plugin-transform-destructuring": "^7.22.5", + "@babel/plugin-transform-dotall-regex": "^7.22.5", + "@babel/plugin-transform-duplicate-keys": "^7.22.5", + "@babel/plugin-transform-dynamic-import": "^7.22.5", + "@babel/plugin-transform-exponentiation-operator": "^7.22.5", + "@babel/plugin-transform-export-namespace-from": "^7.22.5", + "@babel/plugin-transform-for-of": "^7.22.5", + "@babel/plugin-transform-function-name": "^7.22.5", + "@babel/plugin-transform-json-strings": "^7.22.5", + "@babel/plugin-transform-literals": "^7.22.5", + "@babel/plugin-transform-logical-assignment-operators": "^7.22.5", + "@babel/plugin-transform-member-expression-literals": "^7.22.5", + "@babel/plugin-transform-modules-amd": "^7.22.5", + "@babel/plugin-transform-modules-commonjs": "^7.22.5", + "@babel/plugin-transform-modules-systemjs": "^7.22.5", + "@babel/plugin-transform-modules-umd": "^7.22.5", + "@babel/plugin-transform-named-capturing-groups-regex": "^7.22.5", + "@babel/plugin-transform-new-target": "^7.22.5", + "@babel/plugin-transform-nullish-coalescing-operator": "^7.22.5", + "@babel/plugin-transform-numeric-separator": "^7.22.5", + "@babel/plugin-transform-object-rest-spread": "^7.22.5", + "@babel/plugin-transform-object-super": "^7.22.5", + "@babel/plugin-transform-optional-catch-binding": "^7.22.5", + "@babel/plugin-transform-optional-chaining": "^7.22.5", + "@babel/plugin-transform-parameters": "^7.22.5", + "@babel/plugin-transform-private-methods": "^7.22.5", + "@babel/plugin-transform-private-property-in-object": "^7.22.5", + "@babel/plugin-transform-property-literals": "^7.22.5", + "@babel/plugin-transform-regenerator": "^7.22.5", + "@babel/plugin-transform-reserved-words": "^7.22.5", + "@babel/plugin-transform-shorthand-properties": "^7.22.5", + "@babel/plugin-transform-spread": "^7.22.5", + "@babel/plugin-transform-sticky-regex": "^7.22.5", + "@babel/plugin-transform-template-literals": "^7.22.5", + "@babel/plugin-transform-typeof-symbol": "^7.22.5", + "@babel/plugin-transform-unicode-escapes": "^7.22.5", + "@babel/plugin-transform-unicode-property-regex": "^7.22.5", + "@babel/plugin-transform-unicode-regex": "^7.22.5", + "@babel/plugin-transform-unicode-sets-regex": "^7.22.5", + "@babel/preset-modules": "^0.1.5", + "@babel/types": "^7.22.5", + "babel-plugin-polyfill-corejs2": "^0.4.3", + "babel-plugin-polyfill-corejs3": "^0.8.1", + "babel-plugin-polyfill-regenerator": "^0.5.0", + "core-js-compat": "^3.30.2", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/preset-env/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/preset-modules": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.5.tgz", + "integrity": "sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.0.0", + "@babel/plugin-proposal-unicode-property-regex": "^7.4.4", + "@babel/plugin-transform-dotall-regex": "^7.4.4", + "@babel/types": "^7.4.4", + "esutils": "^2.0.2" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/preset-react": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.22.5.tgz", + "integrity": "sha512-M+Is3WikOpEJHgR385HbuCITPTaPRaNkibTEa9oiofmJvIsrceb4yp9RL9Kb+TE8LznmeyZqpP+Lopwcx59xPQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-validator-option": "^7.22.5", + "@babel/plugin-transform-react-display-name": "^7.22.5", + "@babel/plugin-transform-react-jsx": "^7.22.5", + "@babel/plugin-transform-react-jsx-development": "^7.22.5", + "@babel/plugin-transform-react-pure-annotations": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/preset-typescript": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.22.5.tgz", + "integrity": "sha512-YbPaal9LxztSGhmndR46FmAbkJ/1fAsw293tSU+I5E5h+cnJ3d4GTwyUgGYmOXJYdGA+uNePle4qbaRzj2NISQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-validator-option": "^7.22.5", + "@babel/plugin-syntax-jsx": "^7.22.5", + "@babel/plugin-transform-modules-commonjs": "^7.22.5", + "@babel/plugin-transform-typescript": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/regjsgen": { + "version": "0.8.0", + "resolved": "https://registry.npmjs.org/@babel/regjsgen/-/regjsgen-0.8.0.tgz", + "integrity": "sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==" + }, + "node_modules/@babel/runtime": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.22.5.tgz", + "integrity": "sha512-ecjvYlnAaZ/KVneE/OdKYBYfgXV3Ptu6zQWmgEF7vwKhQnvVS6bjMD2XYgj+SNvQ1GfK/pjgokfPkC/2CO8CuA==", + "dependencies": { + "regenerator-runtime": "^0.13.11" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/template": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.22.5.tgz", + "integrity": "sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw==", + "dependencies": { + "@babel/code-frame": "^7.22.5", + "@babel/parser": "^7.22.5", + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/traverse": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.22.5.tgz", + "integrity": "sha512-7DuIjPgERaNo6r+PZwItpjCZEa5vyw4eJGufeLxrPdBXBoLcCJCIasvK6pK/9DVNrLZTLFhUGqaC6X/PA007TQ==", + "dependencies": { + "@babel/code-frame": "^7.22.5", + "@babel/generator": "^7.22.5", + "@babel/helper-environment-visitor": "^7.22.5", + "@babel/helper-function-name": "^7.22.5", + "@babel/helper-hoist-variables": "^7.22.5", + "@babel/helper-split-export-declaration": "^7.22.5", + "@babel/parser": "^7.22.5", + "@babel/types": "^7.22.5", + "debug": "^4.1.0", + "globals": "^11.1.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/types": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.22.5.tgz", + "integrity": "sha512-zo3MIHGOkPOfoRXitsgHLjEXmlDaD/5KU1Uzuc9GNiZPhSqVxVRtxuPaSBZDsYZ9qV88AjtMtWW7ww98loJ9KA==", + "dependencies": { + "@babel/helper-string-parser": "^7.22.5", + "@babel/helper-validator-identifier": "^7.22.5", + "to-fast-properties": "^2.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@bcoe/v8-coverage": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz", + "integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==" + }, + "node_modules/@csstools/normalize.css": { + "version": "12.0.0", + "resolved": "https://registry.npmjs.org/@csstools/normalize.css/-/normalize.css-12.0.0.tgz", + "integrity": "sha512-M0qqxAcwCsIVfpFQSlGN5XjXWu8l5JDZN+fPt1LeW5SZexQTgnaEvgXAY+CeygRw0EeppWHi12JxESWiWrB0Sg==" + }, + "node_modules/@csstools/postcss-cascade-layers": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@csstools/postcss-cascade-layers/-/postcss-cascade-layers-1.1.1.tgz", + "integrity": "sha512-+KdYrpKC5TgomQr2DlZF4lDEpHcoxnj5IGddYYfBWJAKfj1JtuHUIqMa+E1pJJ+z3kvDViWMqyqPlG4Ja7amQA==", + "dependencies": { + "@csstools/selector-specificity": "^2.0.2", + "postcss-selector-parser": "^6.0.10" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/@csstools/postcss-color-function": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@csstools/postcss-color-function/-/postcss-color-function-1.1.1.tgz", + "integrity": "sha512-Bc0f62WmHdtRDjf5f3e2STwRAl89N2CLb+9iAwzrv4L2hncrbDwnQD9PCq0gtAt7pOI2leIV08HIBUd4jxD8cw==", + "dependencies": { + "@csstools/postcss-progressive-custom-properties": "^1.1.0", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/@csstools/postcss-font-format-keywords": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@csstools/postcss-font-format-keywords/-/postcss-font-format-keywords-1.0.1.tgz", + "integrity": "sha512-ZgrlzuUAjXIOc2JueK0X5sZDjCtgimVp/O5CEqTcs5ShWBa6smhWYbS0x5cVc/+rycTDbjjzoP0KTDnUneZGOg==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/@csstools/postcss-hwb-function": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@csstools/postcss-hwb-function/-/postcss-hwb-function-1.0.2.tgz", + "integrity": "sha512-YHdEru4o3Rsbjmu6vHy4UKOXZD+Rn2zmkAmLRfPet6+Jz4Ojw8cbWxe1n42VaXQhD3CQUXXTooIy8OkVbUcL+w==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/@csstools/postcss-ic-unit": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@csstools/postcss-ic-unit/-/postcss-ic-unit-1.0.1.tgz", + "integrity": "sha512-Ot1rcwRAaRHNKC9tAqoqNZhjdYBzKk1POgWfhN4uCOE47ebGcLRqXjKkApVDpjifL6u2/55ekkpnFcp+s/OZUw==", + "dependencies": { + "@csstools/postcss-progressive-custom-properties": "^1.1.0", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/@csstools/postcss-is-pseudo-class": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/@csstools/postcss-is-pseudo-class/-/postcss-is-pseudo-class-2.0.7.tgz", + "integrity": "sha512-7JPeVVZHd+jxYdULl87lvjgvWldYu+Bc62s9vD/ED6/QTGjy0jy0US/f6BG53sVMTBJ1lzKZFpYmofBN9eaRiA==", + "dependencies": { + "@csstools/selector-specificity": "^2.0.0", + "postcss-selector-parser": "^6.0.10" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/@csstools/postcss-nested-calc": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@csstools/postcss-nested-calc/-/postcss-nested-calc-1.0.0.tgz", + "integrity": "sha512-JCsQsw1wjYwv1bJmgjKSoZNvf7R6+wuHDAbi5f/7MbFhl2d/+v+TvBTU4BJH3G1X1H87dHl0mh6TfYogbT/dJQ==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/@csstools/postcss-normalize-display-values": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@csstools/postcss-normalize-display-values/-/postcss-normalize-display-values-1.0.1.tgz", + "integrity": "sha512-jcOanIbv55OFKQ3sYeFD/T0Ti7AMXc9nM1hZWu8m/2722gOTxFg7xYu4RDLJLeZmPUVQlGzo4jhzvTUq3x4ZUw==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/@csstools/postcss-oklab-function": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@csstools/postcss-oklab-function/-/postcss-oklab-function-1.1.1.tgz", + "integrity": "sha512-nJpJgsdA3dA9y5pgyb/UfEzE7W5Ka7u0CX0/HIMVBNWzWemdcTH3XwANECU6anWv/ao4vVNLTMxhiPNZsTK6iA==", + "dependencies": { + "@csstools/postcss-progressive-custom-properties": "^1.1.0", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/@csstools/postcss-progressive-custom-properties": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/@csstools/postcss-progressive-custom-properties/-/postcss-progressive-custom-properties-1.3.0.tgz", + "integrity": "sha512-ASA9W1aIy5ygskZYuWams4BzafD12ULvSypmaLJT2jvQ8G0M3I8PRQhC0h7mG0Z3LI05+agZjqSR9+K9yaQQjA==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.3" + } + }, + "node_modules/@csstools/postcss-stepped-value-functions": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@csstools/postcss-stepped-value-functions/-/postcss-stepped-value-functions-1.0.1.tgz", + "integrity": "sha512-dz0LNoo3ijpTOQqEJLY8nyaapl6umbmDcgj4AD0lgVQ572b2eqA1iGZYTTWhrcrHztWDDRAX2DGYyw2VBjvCvQ==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/@csstools/postcss-text-decoration-shorthand": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@csstools/postcss-text-decoration-shorthand/-/postcss-text-decoration-shorthand-1.0.0.tgz", + "integrity": "sha512-c1XwKJ2eMIWrzQenN0XbcfzckOLLJiczqy+YvfGmzoVXd7pT9FfObiSEfzs84bpE/VqfpEuAZ9tCRbZkZxxbdw==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/@csstools/postcss-trigonometric-functions": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@csstools/postcss-trigonometric-functions/-/postcss-trigonometric-functions-1.0.2.tgz", + "integrity": "sha512-woKaLO///4bb+zZC2s80l+7cm07M7268MsyG3M0ActXXEFi6SuhvriQYcb58iiKGbjwwIU7n45iRLEHypB47Og==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/@csstools/postcss-unset-value": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@csstools/postcss-unset-value/-/postcss-unset-value-1.0.2.tgz", + "integrity": "sha512-c8J4roPBILnelAsdLr4XOAR/GsTm0GJi4XpcfvoWk3U6KiTCqiFYc63KhRMQQX35jYMp4Ao8Ij9+IZRgMfJp1g==", + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/@csstools/selector-specificity": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@csstools/selector-specificity/-/selector-specificity-2.2.0.tgz", + "integrity": "sha512-+OJ9konv95ClSTOJCmMZqpd5+YGsB2S+x6w3E1oaM8UuR5j8nTNHYSz8c9BEPGDOCMQYIEEGlVPj/VY64iTbGw==", + "engines": { + "node": "^14 || ^16 || >=18" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss-selector-parser": "^6.0.10" + } + }, + "node_modules/@eslint-community/eslint-utils": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz", + "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==", + "dependencies": { + "eslint-visitor-keys": "^3.3.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" + } + }, + "node_modules/@eslint-community/regexpp": { + "version": "4.5.1", + "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.5.1.tgz", + "integrity": "sha512-Z5ba73P98O1KUYCCJTUeVpja9RcGoMdncZ6T49FCUl2lN38JtCJ+3WgIDBv0AuY4WChU5PmtJmOCTlN6FZTFKQ==", + "engines": { + "node": "^12.0.0 || ^14.0.0 || >=16.0.0" + } + }, + "node_modules/@eslint/eslintrc": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.0.3.tgz", + "integrity": "sha512-+5gy6OQfk+xx3q0d6jGZZC3f3KzAkXc/IanVxd1is/VIIziRqqt3ongQz0FiTUXqTk0c7aDB3OaFuKnuSoJicQ==", + "dependencies": { + "ajv": "^6.12.4", + "debug": "^4.3.2", + "espree": "^9.5.2", + "globals": "^13.19.0", + "ignore": "^5.2.0", + "import-fresh": "^3.2.1", + "js-yaml": "^4.1.0", + "minimatch": "^3.1.2", + "strip-json-comments": "^3.1.1" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/@eslint/eslintrc/node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==" + }, + "node_modules/@eslint/eslintrc/node_modules/globals": { + "version": "13.20.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.20.0.tgz", + "integrity": "sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==", + "dependencies": { + "type-fest": "^0.20.2" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@eslint/eslintrc/node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/@eslint/eslintrc/node_modules/type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@eslint/js": { + "version": "8.42.0", + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.42.0.tgz", + "integrity": "sha512-6SWlXpWU5AvId8Ac7zjzmIOqMOba/JWY8XZ4A7q7Gn1Vlfg/SFFIlrtHXt9nPn4op9ZPAkl91Jao+QQv3r/ukw==", + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + } + }, + "node_modules/@humanwhocodes/config-array": { + "version": "0.11.10", + "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.10.tgz", + "integrity": "sha512-KVVjQmNUepDVGXNuoRRdmmEjruj0KfiGSbS8LVc12LMsWDQzRXJ0qdhN8L8uUigKpfEHRhlaQFY0ib1tnUbNeQ==", + "dependencies": { + "@humanwhocodes/object-schema": "^1.2.1", + "debug": "^4.1.1", + "minimatch": "^3.0.5" + }, + "engines": { + "node": ">=10.10.0" + } + }, + "node_modules/@humanwhocodes/module-importer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", + "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", + "engines": { + "node": ">=12.22" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/nzakas" + } + }, + "node_modules/@humanwhocodes/object-schema": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz", + "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==" + }, + "node_modules/@istanbuljs/load-nyc-config": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz", + "integrity": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==", + "dependencies": { + "camelcase": "^5.3.1", + "find-up": "^4.1.0", + "get-package-type": "^0.1.0", + "js-yaml": "^3.13.1", + "resolve-from": "^5.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@istanbuljs/load-nyc-config/node_modules/camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "engines": { + "node": ">=6" + } + }, + "node_modules/@istanbuljs/load-nyc-config/node_modules/find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@istanbuljs/load-nyc-config/node_modules/locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dependencies": { + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@istanbuljs/load-nyc-config/node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@istanbuljs/load-nyc-config/node_modules/p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dependencies": { + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@istanbuljs/schema": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz", + "integrity": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==", + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/console": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/console/-/console-27.5.1.tgz", + "integrity": "sha512-kZ/tNpS3NXn0mlXXXPNuDZnb4c0oZ20r4K5eemM2k30ZC3G0T02nXUvyhf5YdbXWHPEJLc9qGLxEZ216MdL+Zg==", + "dependencies": { + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "jest-message-util": "^27.5.1", + "jest-util": "^27.5.1", + "slash": "^3.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/console/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@jest/console/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@jest/console/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/@jest/console/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/@jest/console/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/console/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/core": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/core/-/core-27.5.1.tgz", + "integrity": "sha512-AK6/UTrvQD0Cd24NSqmIA6rKsu0tKIxfiCducZvqxYdmMisOYAsdItspT+fQDQYARPf8XgjAFZi0ogW2agH5nQ==", + "dependencies": { + "@jest/console": "^27.5.1", + "@jest/reporters": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "emittery": "^0.8.1", + "exit": "^0.1.2", + "graceful-fs": "^4.2.9", + "jest-changed-files": "^27.5.1", + "jest-config": "^27.5.1", + "jest-haste-map": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-regex-util": "^27.5.1", + "jest-resolve": "^27.5.1", + "jest-resolve-dependencies": "^27.5.1", + "jest-runner": "^27.5.1", + "jest-runtime": "^27.5.1", + "jest-snapshot": "^27.5.1", + "jest-util": "^27.5.1", + "jest-validate": "^27.5.1", + "jest-watcher": "^27.5.1", + "micromatch": "^4.0.4", + "rimraf": "^3.0.0", + "slash": "^3.0.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "node_modules/@jest/core/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@jest/core/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@jest/core/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/@jest/core/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/@jest/core/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/core/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/environment": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-27.5.1.tgz", + "integrity": "sha512-/WQjhPJe3/ghaol/4Bq480JKXV/Rfw8nQdN7f41fM8VDHLcxKXou6QyXAh3EFr9/bVG3x74z1NWDkP87EiY8gA==", + "dependencies": { + "@jest/fake-timers": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "jest-mock": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/expect-utils": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/@jest/expect-utils/-/expect-utils-29.5.0.tgz", + "integrity": "sha512-fmKzsidoXQT2KwnrwE0SQq3uj8Z763vzR8LnLBwC2qYWEFpjX8daRsk6rHUM1QvNlEW/UJXNXm59ztmJJWs2Mg==", + "dependencies": { + "jest-get-type": "^29.4.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/expect-utils/node_modules/jest-get-type": { + "version": "29.4.3", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.4.3.tgz", + "integrity": "sha512-J5Xez4nRRMjk8emnTpWrlkyb9pfRQQanDrvWHhsR1+VUfbwxi30eVcZFlcdGInRibU4G5LwHXpI7IRHU0CY+gg==", + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/fake-timers": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-27.5.1.tgz", + "integrity": "sha512-/aPowoolwa07k7/oM3aASneNeBGCmGQsc3ugN4u6s4C/+s5M64MFo/+djTdiwcbQlRfFElGuDXWzaWj6QgKObQ==", + "dependencies": { + "@jest/types": "^27.5.1", + "@sinonjs/fake-timers": "^8.0.1", + "@types/node": "*", + "jest-message-util": "^27.5.1", + "jest-mock": "^27.5.1", + "jest-util": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/globals": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-27.5.1.tgz", + "integrity": "sha512-ZEJNB41OBQQgGzgyInAv0UUfDDj3upmHydjieSxFvTRuZElrx7tXg/uVQ5hYVEwiXs3+aMsAeEc9X7xiSKCm4Q==", + "dependencies": { + "@jest/environment": "^27.5.1", + "@jest/types": "^27.5.1", + "expect": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/reporters": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-27.5.1.tgz", + "integrity": "sha512-cPXh9hWIlVJMQkVk84aIvXuBB4uQQmFqZiacloFuGiP3ah1sbCxCosidXFDfqG8+6fO1oR2dTJTlsOy4VFmUfw==", + "dependencies": { + "@bcoe/v8-coverage": "^0.2.3", + "@jest/console": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "collect-v8-coverage": "^1.0.0", + "exit": "^0.1.2", + "glob": "^7.1.2", + "graceful-fs": "^4.2.9", + "istanbul-lib-coverage": "^3.0.0", + "istanbul-lib-instrument": "^5.1.0", + "istanbul-lib-report": "^3.0.0", + "istanbul-lib-source-maps": "^4.0.0", + "istanbul-reports": "^3.1.3", + "jest-haste-map": "^27.5.1", + "jest-resolve": "^27.5.1", + "jest-util": "^27.5.1", + "jest-worker": "^27.5.1", + "slash": "^3.0.0", + "source-map": "^0.6.0", + "string-length": "^4.0.1", + "terminal-link": "^2.0.0", + "v8-to-istanbul": "^8.1.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "node_modules/@jest/reporters/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@jest/reporters/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@jest/reporters/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/@jest/reporters/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/@jest/reporters/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/reporters/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@jest/reporters/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/schemas": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-28.1.3.tgz", + "integrity": "sha512-/l/VWsdt/aBXgjshLWOFyFt3IVdYypu5y2Wn2rOO1un6nkqIn8SLXzgIMYXFyYsRWDyF5EthmKJMIdJvk08grg==", + "dependencies": { + "@sinclair/typebox": "^0.24.1" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/@jest/source-map": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-27.5.1.tgz", + "integrity": "sha512-y9NIHUYF3PJRlHk98NdC/N1gl88BL08aQQgu4k4ZopQkCw9t9cV8mtl3TV8b/YCB8XaVTFrmUTAJvjsntDireg==", + "dependencies": { + "callsites": "^3.0.0", + "graceful-fs": "^4.2.9", + "source-map": "^0.6.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/source-map/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@jest/test-result": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-27.5.1.tgz", + "integrity": "sha512-EW35l2RYFUcUQxFJz5Cv5MTOxlJIQs4I7gxzi2zVU7PJhOwfYq1MdC5nhSmYjX1gmMmLPvB3sIaC+BkcHRBfag==", + "dependencies": { + "@jest/console": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/istanbul-lib-coverage": "^2.0.0", + "collect-v8-coverage": "^1.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/test-sequencer": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-27.5.1.tgz", + "integrity": "sha512-LCheJF7WB2+9JuCS7VB/EmGIdQuhtqjRNI9A43idHv3E4KltCTsPsLxvdaubFHSYwY/fNjMWjl6vNRhDiN7vpQ==", + "dependencies": { + "@jest/test-result": "^27.5.1", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^27.5.1", + "jest-runtime": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/transform": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-27.5.1.tgz", + "integrity": "sha512-ipON6WtYgl/1329g5AIJVbUuEh0wZVbdpGwC99Jw4LwuoBNS95MVphU6zOeD9pDkon+LLbFL7lOQRapbB8SCHw==", + "dependencies": { + "@babel/core": "^7.1.0", + "@jest/types": "^27.5.1", + "babel-plugin-istanbul": "^6.1.1", + "chalk": "^4.0.0", + "convert-source-map": "^1.4.0", + "fast-json-stable-stringify": "^2.0.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^27.5.1", + "jest-regex-util": "^27.5.1", + "jest-util": "^27.5.1", + "micromatch": "^4.0.4", + "pirates": "^4.0.4", + "slash": "^3.0.0", + "source-map": "^0.6.1", + "write-file-atomic": "^3.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/transform/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@jest/transform/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@jest/transform/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/@jest/transform/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/@jest/transform/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/transform/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@jest/transform/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/types": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", + "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/types/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@jest/types/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@jest/types/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/@jest/types/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/@jest/types/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/types/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jridgewell/gen-mapping": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz", + "integrity": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==", + "dependencies": { + "@jridgewell/set-array": "^1.0.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.9" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz", + "integrity": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/set-array": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", + "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/source-map": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.3.tgz", + "integrity": "sha512-b+fsZXeLYi9fEULmfBrhxn4IrPlINf8fiNarzTof004v3lFdntdwa9PF7vFJqm3mg7s+ScJMxXaE3Acp1irZcg==", + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.0", + "@jridgewell/trace-mapping": "^0.3.9" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.4.15", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz", + "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==" + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.18", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.18.tgz", + "integrity": "sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==", + "dependencies": { + "@jridgewell/resolve-uri": "3.1.0", + "@jridgewell/sourcemap-codec": "1.4.14" + } + }, + "node_modules/@jridgewell/trace-mapping/node_modules/@jridgewell/sourcemap-codec": { + "version": "1.4.14", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz", + "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==" + }, + "node_modules/@leichtgewicht/ip-codec": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/@leichtgewicht/ip-codec/-/ip-codec-2.0.4.tgz", + "integrity": "sha512-Hcv+nVC0kZnQ3tD9GVu5xSMR4VVYOteQIr/hwFPVEvPdlXqgGEuRjiheChHgdM+JyqdgNcmzZOX/tnl0JOiI7A==" + }, + "node_modules/@nicolo-ribaudo/eslint-scope-5-internals": { + "version": "5.1.1-v1", + "resolved": "https://registry.npmjs.org/@nicolo-ribaudo/eslint-scope-5-internals/-/eslint-scope-5-internals-5.1.1-v1.tgz", + "integrity": "sha512-54/JRvkLIzzDWshCWfuhadfrfZVPiElY8Fcgmg1HroEly/EDSszzhBAsarCux+D/kOslTRquNzuyGSmUSTTHGg==", + "dependencies": { + "eslint-scope": "5.1.1" + } + }, + "node_modules/@nicolo-ribaudo/eslint-scope-5-internals/node_modules/eslint-scope": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", + "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/@nicolo-ribaudo/eslint-scope-5-internals/node_modules/estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "dependencies": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "dependencies": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@pmmmwh/react-refresh-webpack-plugin": { + "version": "0.5.10", + "resolved": "https://registry.npmjs.org/@pmmmwh/react-refresh-webpack-plugin/-/react-refresh-webpack-plugin-0.5.10.tgz", + "integrity": "sha512-j0Ya0hCFZPd4x40qLzbhGsh9TMtdb+CJQiso+WxLOPNasohq9cc5SNUcwsZaRH6++Xh91Xkm/xHCkuIiIu0LUA==", + "dependencies": { + "ansi-html-community": "^0.0.8", + "common-path-prefix": "^3.0.0", + "core-js-pure": "^3.23.3", + "error-stack-parser": "^2.0.6", + "find-up": "^5.0.0", + "html-entities": "^2.1.0", + "loader-utils": "^2.0.4", + "schema-utils": "^3.0.0", + "source-map": "^0.7.3" + }, + "engines": { + "node": ">= 10.13" + }, + "peerDependencies": { + "@types/webpack": "4.x || 5.x", + "react-refresh": ">=0.10.0 <1.0.0", + "sockjs-client": "^1.4.0", + "type-fest": ">=0.17.0 <4.0.0", + "webpack": ">=4.43.0 <6.0.0", + "webpack-dev-server": "3.x || 4.x", + "webpack-hot-middleware": "2.x", + "webpack-plugin-serve": "0.x || 1.x" + }, + "peerDependenciesMeta": { + "@types/webpack": { + "optional": true + }, + "sockjs-client": { + "optional": true + }, + "type-fest": { + "optional": true + }, + "webpack-dev-server": { + "optional": true + }, + "webpack-hot-middleware": { + "optional": true + }, + "webpack-plugin-serve": { + "optional": true + } + } + }, + "node_modules/@rollup/plugin-babel": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/@rollup/plugin-babel/-/plugin-babel-5.3.1.tgz", + "integrity": "sha512-WFfdLWU/xVWKeRQnKmIAQULUI7Il0gZnBIH/ZFO069wYIfPu+8zrfp/KMW0atmELoRDq8FbiP3VCss9MhCut7Q==", + "dependencies": { + "@babel/helper-module-imports": "^7.10.4", + "@rollup/pluginutils": "^3.1.0" + }, + "engines": { + "node": ">= 10.0.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0", + "@types/babel__core": "^7.1.9", + "rollup": "^1.20.0||^2.0.0" + }, + "peerDependenciesMeta": { + "@types/babel__core": { + "optional": true + } + } + }, + "node_modules/@rollup/plugin-node-resolve": { + "version": "11.2.1", + "resolved": "https://registry.npmjs.org/@rollup/plugin-node-resolve/-/plugin-node-resolve-11.2.1.tgz", + "integrity": "sha512-yc2n43jcqVyGE2sqV5/YCmocy9ArjVAP/BeXyTtADTBBX6V0e5UMqwO8CdQ0kzjb6zu5P1qMzsScCMRvE9OlVg==", + "dependencies": { + "@rollup/pluginutils": "^3.1.0", + "@types/resolve": "1.17.1", + "builtin-modules": "^3.1.0", + "deepmerge": "^4.2.2", + "is-module": "^1.0.0", + "resolve": "^1.19.0" + }, + "engines": { + "node": ">= 10.0.0" + }, + "peerDependencies": { + "rollup": "^1.20.0||^2.0.0" + } + }, + "node_modules/@rollup/plugin-replace": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/@rollup/plugin-replace/-/plugin-replace-2.4.2.tgz", + "integrity": "sha512-IGcu+cydlUMZ5En85jxHH4qj2hta/11BHq95iHEyb2sbgiN0eCdzvUcHw5gt9pBL5lTi4JDYJ1acCoMGpTvEZg==", + "dependencies": { + "@rollup/pluginutils": "^3.1.0", + "magic-string": "^0.25.7" + }, + "peerDependencies": { + "rollup": "^1.20.0 || ^2.0.0" + } + }, + "node_modules/@rollup/pluginutils": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-3.1.0.tgz", + "integrity": "sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==", + "dependencies": { + "@types/estree": "0.0.39", + "estree-walker": "^1.0.1", + "picomatch": "^2.2.2" + }, + "engines": { + "node": ">= 8.0.0" + }, + "peerDependencies": { + "rollup": "^1.20.0||^2.0.0" + } + }, + "node_modules/@rollup/pluginutils/node_modules/@types/estree": { + "version": "0.0.39", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.39.tgz", + "integrity": "sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==" + }, + "node_modules/@rushstack/eslint-patch": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/@rushstack/eslint-patch/-/eslint-patch-1.3.1.tgz", + "integrity": "sha512-RkmuBcqiNioeeBKbgzMlOdreUkJfYaSjwgx9XDgGGpjvWgyaxWvDmZVSN9CS6LjEASadhgPv2BcFp+SeouWXXA==" + }, + "node_modules/@sinclair/typebox": { + "version": "0.24.51", + "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.24.51.tgz", + "integrity": "sha512-1P1OROm/rdubP5aFDSZQILU0vrLCJ4fvHt6EoqHEM+2D/G5MK3bIaymUKLit8Js9gbns5UyJnkP/TZROLw4tUA==" + }, + "node_modules/@sinonjs/commons": { + "version": "1.8.6", + "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.6.tgz", + "integrity": "sha512-Ky+XkAkqPZSm3NLBeUng77EBQl3cmeJhITaGHdYH8kjVB+aun3S4XBRti2zt17mtt0mIUDiNxYeoJm6drVvBJQ==", + "dependencies": { + "type-detect": "4.0.8" + } + }, + "node_modules/@sinonjs/fake-timers": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-8.1.0.tgz", + "integrity": "sha512-OAPJUAtgeINhh/TAlUID4QTs53Njm7xzddaVlEs/SXwgtiD1tW22zAB/W1wdqfrpmikgaWQ9Fw6Ws+hsiRm5Vg==", + "dependencies": { + "@sinonjs/commons": "^1.7.0" + } + }, + "node_modules/@surma/rollup-plugin-off-main-thread": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/@surma/rollup-plugin-off-main-thread/-/rollup-plugin-off-main-thread-2.2.3.tgz", + "integrity": "sha512-lR8q/9W7hZpMWweNiAKU7NQerBnzQQLvi8qnTDU/fxItPhtZVMbPV3lbCwjhIlNBe9Bbr5V+KHshvWmVSG9cxQ==", + "dependencies": { + "ejs": "^3.1.6", + "json5": "^2.2.0", + "magic-string": "^0.25.0", + "string.prototype.matchall": "^4.0.6" + } + }, + "node_modules/@svgr/babel-plugin-add-jsx-attribute": { + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-add-jsx-attribute/-/babel-plugin-add-jsx-attribute-5.4.0.tgz", + "integrity": "sha512-ZFf2gs/8/6B8PnSofI0inYXr2SDNTDScPXhN7k5EqD4aZ3gi6u+rbmZHVB8IM3wDyx8ntKACZbtXSm7oZGRqVg==", + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/babel-plugin-remove-jsx-attribute": { + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-attribute/-/babel-plugin-remove-jsx-attribute-5.4.0.tgz", + "integrity": "sha512-yaS4o2PgUtwLFGTKbsiAy6D0o3ugcUhWK0Z45umJ66EPWunAz9fuFw2gJuje6wqQvQWOTJvIahUwndOXb7QCPg==", + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/babel-plugin-remove-jsx-empty-expression": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-empty-expression/-/babel-plugin-remove-jsx-empty-expression-5.0.1.tgz", + "integrity": "sha512-LA72+88A11ND/yFIMzyuLRSMJ+tRKeYKeQ+mR3DcAZ5I4h5CPWN9AHyUzJbWSYp/u2u0xhmgOe0+E41+GjEueA==", + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/babel-plugin-replace-jsx-attribute-value": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-replace-jsx-attribute-value/-/babel-plugin-replace-jsx-attribute-value-5.0.1.tgz", + "integrity": "sha512-PoiE6ZD2Eiy5mK+fjHqwGOS+IXX0wq/YDtNyIgOrc6ejFnxN4b13pRpiIPbtPwHEc+NT2KCjteAcq33/F1Y9KQ==", + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/babel-plugin-svg-dynamic-title": { + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-svg-dynamic-title/-/babel-plugin-svg-dynamic-title-5.4.0.tgz", + "integrity": "sha512-zSOZH8PdZOpuG1ZVx/cLVePB2ibo3WPpqo7gFIjLV9a0QsuQAzJiwwqmuEdTaW2pegyBE17Uu15mOgOcgabQZg==", + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/babel-plugin-svg-em-dimensions": { + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-svg-em-dimensions/-/babel-plugin-svg-em-dimensions-5.4.0.tgz", + "integrity": "sha512-cPzDbDA5oT/sPXDCUYoVXEmm3VIoAWAPT6mSPTJNbQaBNUuEKVKyGH93oDY4e42PYHRW67N5alJx/eEol20abw==", + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/babel-plugin-transform-react-native-svg": { + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-transform-react-native-svg/-/babel-plugin-transform-react-native-svg-5.4.0.tgz", + "integrity": "sha512-3eYP/SaopZ41GHwXma7Rmxcv9uRslRDTY1estspeB1w1ueZWd/tPlMfEOoccYpEMZU3jD4OU7YitnXcF5hLW2Q==", + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/babel-plugin-transform-svg-component": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-transform-svg-component/-/babel-plugin-transform-svg-component-5.5.0.tgz", + "integrity": "sha512-q4jSH1UUvbrsOtlo/tKcgSeiCHRSBdXoIoqX1pgcKK/aU3JD27wmMKwGtpB8qRYUYoyXvfGxUVKchLuR5pB3rQ==", + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/babel-preset": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-preset/-/babel-preset-5.5.0.tgz", + "integrity": "sha512-4FiXBjvQ+z2j7yASeGPEi8VD/5rrGQk4Xrq3EdJmoZgz/tpqChpo5hgXDvmEauwtvOc52q8ghhZK4Oy7qph4ig==", + "dependencies": { + "@svgr/babel-plugin-add-jsx-attribute": "^5.4.0", + "@svgr/babel-plugin-remove-jsx-attribute": "^5.4.0", + "@svgr/babel-plugin-remove-jsx-empty-expression": "^5.0.1", + "@svgr/babel-plugin-replace-jsx-attribute-value": "^5.0.1", + "@svgr/babel-plugin-svg-dynamic-title": "^5.4.0", + "@svgr/babel-plugin-svg-em-dimensions": "^5.4.0", + "@svgr/babel-plugin-transform-react-native-svg": "^5.4.0", + "@svgr/babel-plugin-transform-svg-component": "^5.5.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/core": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/core/-/core-5.5.0.tgz", + "integrity": "sha512-q52VOcsJPvV3jO1wkPtzTuKlvX7Y3xIcWRpCMtBF3MrteZJtBfQw/+u0B1BHy5ColpQc1/YVTrPEtSYIMNZlrQ==", + "dependencies": { + "@svgr/plugin-jsx": "^5.5.0", + "camelcase": "^6.2.0", + "cosmiconfig": "^7.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/hast-util-to-babel-ast": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/hast-util-to-babel-ast/-/hast-util-to-babel-ast-5.5.0.tgz", + "integrity": "sha512-cAaR/CAiZRB8GP32N+1jocovUtvlj0+e65TB50/6Lcime+EA49m/8l+P2ko+XPJ4dw3xaPS3jOL4F2X4KWxoeQ==", + "dependencies": { + "@babel/types": "^7.12.6" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/plugin-jsx": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/plugin-jsx/-/plugin-jsx-5.5.0.tgz", + "integrity": "sha512-V/wVh33j12hGh05IDg8GpIUXbjAPnTdPTKuP4VNLggnwaHMPNQNae2pRnyTAILWCQdz5GyMqtO488g7CKM8CBA==", + "dependencies": { + "@babel/core": "^7.12.3", + "@svgr/babel-preset": "^5.5.0", + "@svgr/hast-util-to-babel-ast": "^5.5.0", + "svg-parser": "^2.0.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/plugin-svgo": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/plugin-svgo/-/plugin-svgo-5.5.0.tgz", + "integrity": "sha512-r5swKk46GuQl4RrVejVwpeeJaydoxkdwkM1mBKOgJLBUJPGaLci6ylg/IjhrRsREKDkr4kbMWdgOtbXEh0fyLQ==", + "dependencies": { + "cosmiconfig": "^7.0.0", + "deepmerge": "^4.2.2", + "svgo": "^1.2.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/webpack": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/webpack/-/webpack-5.5.0.tgz", + "integrity": "sha512-DOBOK255wfQxguUta2INKkzPj6AIS6iafZYiYmHn6W3pHlycSRRlvWKCfLDG10fXfLWqE3DJHgRUOyJYmARa7g==", + "dependencies": { + "@babel/core": "^7.12.3", + "@babel/plugin-transform-react-constant-elements": "^7.12.1", + "@babel/preset-env": "^7.12.1", + "@babel/preset-react": "^7.12.5", + "@svgr/core": "^5.5.0", + "@svgr/plugin-jsx": "^5.5.0", + "@svgr/plugin-svgo": "^5.5.0", + "loader-utils": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@testing-library/dom": { + "version": "9.3.0", + "resolved": "https://registry.npmjs.org/@testing-library/dom/-/dom-9.3.0.tgz", + "integrity": "sha512-Dffe68pGwI6WlLRYR2I0piIkyole9cSBH5jGQKCGMRpHW5RHCqAUaqc2Kv0tUyd4dU4DLPKhJIjyKOnjv4tuUw==", + "peer": true, + "dependencies": { + "@babel/code-frame": "^7.10.4", + "@babel/runtime": "^7.12.5", + "@types/aria-query": "^5.0.1", + "aria-query": "^5.0.0", + "chalk": "^4.1.0", + "dom-accessibility-api": "^0.5.9", + "lz-string": "^1.5.0", + "pretty-format": "^27.0.2" + }, + "engines": { + "node": ">=14" + } + }, + "node_modules/@testing-library/dom/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "peer": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@testing-library/dom/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "peer": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@testing-library/dom/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "peer": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/@testing-library/dom/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "peer": true + }, + "node_modules/@testing-library/dom/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "peer": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/@testing-library/dom/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "peer": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@testing-library/jest-dom": { + "version": "5.16.5", + "resolved": "https://registry.npmjs.org/@testing-library/jest-dom/-/jest-dom-5.16.5.tgz", + "integrity": "sha512-N5ixQ2qKpi5OLYfwQmUb/5mSV9LneAcaUfp32pn4yCnpb8r/Yz0pXFPck21dIicKmi+ta5WRAknkZCfA8refMA==", + "dependencies": { + "@adobe/css-tools": "^4.0.1", + "@babel/runtime": "^7.9.2", + "@types/testing-library__jest-dom": "^5.9.1", + "aria-query": "^5.0.0", + "chalk": "^3.0.0", + "css.escape": "^1.5.1", + "dom-accessibility-api": "^0.5.6", + "lodash": "^4.17.15", + "redent": "^3.0.0" + }, + "engines": { + "node": ">=8", + "npm": ">=6", + "yarn": ">=1" + } + }, + "node_modules/@testing-library/jest-dom/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@testing-library/jest-dom/node_modules/chalk": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", + "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@testing-library/jest-dom/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/@testing-library/jest-dom/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/@testing-library/jest-dom/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/@testing-library/jest-dom/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@testing-library/react": { + "version": "13.4.0", + "resolved": "https://registry.npmjs.org/@testing-library/react/-/react-13.4.0.tgz", + "integrity": "sha512-sXOGON+WNTh3MLE9rve97ftaZukN3oNf2KjDy7YTx6hcTO2uuLHuCGynMDhFwGw/jYf4OJ2Qk0i4i79qMNNkyw==", + "dependencies": { + "@babel/runtime": "^7.12.5", + "@testing-library/dom": "^8.5.0", + "@types/react-dom": "^18.0.0" + }, + "engines": { + "node": ">=12" + }, + "peerDependencies": { + "react": "^18.0.0", + "react-dom": "^18.0.0" + } + }, + "node_modules/@testing-library/react/node_modules/@testing-library/dom": { + "version": "8.20.0", + "resolved": "https://registry.npmjs.org/@testing-library/dom/-/dom-8.20.0.tgz", + "integrity": "sha512-d9ULIT+a4EXLX3UU8FBjauG9NnsZHkHztXoIcTsOKoOw030fyjheN9svkTULjJxtYag9DZz5Jz5qkWZDPxTFwA==", + "dependencies": { + "@babel/code-frame": "^7.10.4", + "@babel/runtime": "^7.12.5", + "@types/aria-query": "^5.0.1", + "aria-query": "^5.0.0", + "chalk": "^4.1.0", + "dom-accessibility-api": "^0.5.9", + "lz-string": "^1.4.4", + "pretty-format": "^27.0.2" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@testing-library/react/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@testing-library/react/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@testing-library/react/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/@testing-library/react/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/@testing-library/react/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/@testing-library/react/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@testing-library/user-event": { + "version": "13.5.0", + "resolved": "https://registry.npmjs.org/@testing-library/user-event/-/user-event-13.5.0.tgz", + "integrity": "sha512-5Kwtbo3Y/NowpkbRuSepbyMFkZmHgD+vPzYB/RJ4oxt5Gj/avFFBYjhw27cqSVPVw/3a67NK1PbiIr9k4Gwmdg==", + "dependencies": { + "@babel/runtime": "^7.12.5" + }, + "engines": { + "node": ">=10", + "npm": ">=6" + }, + "peerDependencies": { + "@testing-library/dom": ">=7.21.4" + } + }, + "node_modules/@tootallnate/once": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-1.1.2.tgz", + "integrity": "sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==", + "engines": { + "node": ">= 6" + } + }, + "node_modules/@trysound/sax": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/@trysound/sax/-/sax-0.2.0.tgz", + "integrity": "sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==", + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/@types/aria-query": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/@types/aria-query/-/aria-query-5.0.1.tgz", + "integrity": "sha512-XTIieEY+gvJ39ChLcB4If5zHtPxt3Syj5rgZR+e1ctpmK8NjPf0zFqsz4JpLJT0xla9GFDKjy8Cpu331nrmE1Q==" + }, + "node_modules/@types/babel__core": { + "version": "7.20.1", + "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.1.tgz", + "integrity": "sha512-aACu/U/omhdk15O4Nfb+fHgH/z3QsfQzpnvRZhYhThms83ZnAOZz7zZAWO7mn2yyNQaA4xTO8GLK3uqFU4bYYw==", + "dependencies": { + "@babel/parser": "^7.20.7", + "@babel/types": "^7.20.7", + "@types/babel__generator": "*", + "@types/babel__template": "*", + "@types/babel__traverse": "*" + } + }, + "node_modules/@types/babel__generator": { + "version": "7.6.4", + "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.4.tgz", + "integrity": "sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==", + "dependencies": { + "@babel/types": "^7.0.0" + } + }, + "node_modules/@types/babel__template": { + "version": "7.4.1", + "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.1.tgz", + "integrity": "sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==", + "dependencies": { + "@babel/parser": "^7.1.0", + "@babel/types": "^7.0.0" + } + }, + "node_modules/@types/babel__traverse": { + "version": "7.20.1", + "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.20.1.tgz", + "integrity": "sha512-MitHFXnhtgwsGZWtT68URpOvLN4EREih1u3QtQiN4VdAxWKRVvGCSvw/Qth0M0Qq3pJpnGOu5JaM/ydK7OGbqg==", + "dependencies": { + "@babel/types": "^7.20.7" + } + }, + "node_modules/@types/body-parser": { + "version": "1.19.2", + "resolved": "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.2.tgz", + "integrity": "sha512-ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g==", + "dependencies": { + "@types/connect": "*", + "@types/node": "*" + } + }, + "node_modules/@types/bonjour": { + "version": "3.5.10", + "resolved": "https://registry.npmjs.org/@types/bonjour/-/bonjour-3.5.10.tgz", + "integrity": "sha512-p7ienRMiS41Nu2/igbJxxLDWrSZ0WxM8UQgCeO9KhoVF7cOVFkrKsiDr1EsJIla8vV3oEEjGcz11jc5yimhzZw==", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/connect": { + "version": "3.4.35", + "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.35.tgz", + "integrity": "sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ==", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/connect-history-api-fallback": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/@types/connect-history-api-fallback/-/connect-history-api-fallback-1.5.0.tgz", + "integrity": "sha512-4x5FkPpLipqwthjPsF7ZRbOv3uoLUFkTA9G9v583qi4pACvq0uTELrB8OLUzPWUI4IJIyvM85vzkV1nyiI2Lig==", + "dependencies": { + "@types/express-serve-static-core": "*", + "@types/node": "*" + } + }, + "node_modules/@types/eslint": { + "version": "8.40.1", + "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-8.40.1.tgz", + "integrity": "sha512-vRb792M4mF1FBT+eoLecmkpLXwxsBHvWWRGJjzbYANBM6DtiJc6yETyv4rqDA6QNjF1pkj1U7LMA6dGb3VYlHw==", + "dependencies": { + "@types/estree": "*", + "@types/json-schema": "*" + } + }, + "node_modules/@types/eslint-scope": { + "version": "3.7.4", + "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.4.tgz", + "integrity": "sha512-9K4zoImiZc3HlIp6AVUDE4CWYx22a+lhSZMYNpbjW04+YF0KWj4pJXnEMjdnFTiQibFFmElcsasJXDbdI/EPhA==", + "dependencies": { + "@types/eslint": "*", + "@types/estree": "*" + } + }, + "node_modules/@types/estree": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.1.tgz", + "integrity": "sha512-LG4opVs2ANWZ1TJoKc937iMmNstM/d0ae1vNbnBvBhqCSezgVUOzcLCqbI5elV8Vy6WKwKjaqR+zO9VKirBBCA==" + }, + "node_modules/@types/express": { + "version": "4.17.17", + "resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.17.tgz", + "integrity": "sha512-Q4FmmuLGBG58btUnfS1c1r/NQdlp3DMfGDGig8WhfpA2YRUtEkxAjkZb0yvplJGYdF1fsQ81iMDcH24sSCNC/Q==", + "dependencies": { + "@types/body-parser": "*", + "@types/express-serve-static-core": "^4.17.33", + "@types/qs": "*", + "@types/serve-static": "*" + } + }, + "node_modules/@types/express-serve-static-core": { + "version": "4.17.35", + "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.35.tgz", + "integrity": "sha512-wALWQwrgiB2AWTT91CB62b6Yt0sNHpznUXeZEcnPU3DRdlDIz74x8Qg1UUYKSVFi+va5vKOLYRBI1bRKiLLKIg==", + "dependencies": { + "@types/node": "*", + "@types/qs": "*", + "@types/range-parser": "*", + "@types/send": "*" + } + }, + "node_modules/@types/graceful-fs": { + "version": "4.1.6", + "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.6.tgz", + "integrity": "sha512-Sig0SNORX9fdW+bQuTEovKj3uHcUL6LQKbCrrqb1X7J6/ReAbhCXRAhc+SMejhLELFj2QcyuxmUooZ4bt5ReSw==", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/html-minifier-terser": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/@types/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz", + "integrity": "sha512-oh/6byDPnL1zeNXFrDXFLyZjkr1MsBG667IM792caf1L2UPOOMf65NFzjUH/ltyfwjAGfs1rsX1eftK0jC/KIg==" + }, + "node_modules/@types/http-proxy": { + "version": "1.17.11", + "resolved": "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.11.tgz", + "integrity": "sha512-HC8G7c1WmaF2ekqpnFq626xd3Zz0uvaqFmBJNRZCGEZCXkvSdJoNFn/8Ygbd9fKNQj8UzLdCETaI0UWPAjK7IA==", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/istanbul-lib-coverage": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.4.tgz", + "integrity": "sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g==" + }, + "node_modules/@types/istanbul-lib-report": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", + "integrity": "sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==", + "dependencies": { + "@types/istanbul-lib-coverage": "*" + } + }, + "node_modules/@types/istanbul-reports": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz", + "integrity": "sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==", + "dependencies": { + "@types/istanbul-lib-report": "*" + } + }, + "node_modules/@types/jest": { + "version": "29.5.2", + "resolved": "https://registry.npmjs.org/@types/jest/-/jest-29.5.2.tgz", + "integrity": "sha512-mSoZVJF5YzGVCk+FsDxzDuH7s+SCkzrgKZzf0Z0T2WudhBUPoF6ktoTPC4R0ZoCPCV5xUvuU6ias5NvxcBcMMg==", + "dependencies": { + "expect": "^29.0.0", + "pretty-format": "^29.0.0" + } + }, + "node_modules/@types/jest/node_modules/@jest/schemas": { + "version": "29.4.3", + "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-29.4.3.tgz", + "integrity": "sha512-VLYKXQmtmuEz6IxJsrZwzG9NvtkQsWNnWMsKxqWNu3+CnfzJQhp0WDDKWLVV9hLKr0l3SLLFRqcYHjhtyuDVxg==", + "dependencies": { + "@sinclair/typebox": "^0.25.16" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@types/jest/node_modules/@jest/types": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.5.0.tgz", + "integrity": "sha512-qbu7kN6czmVRc3xWFQcAN03RAUamgppVUdXrvl1Wr3jlNF93o9mJbGcDWrwGB6ht44u7efB1qCFgVQmca24Uog==", + "dependencies": { + "@jest/schemas": "^29.4.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^17.0.8", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@types/jest/node_modules/@sinclair/typebox": { + "version": "0.25.24", + "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.25.24.tgz", + "integrity": "sha512-XJfwUVUKDHF5ugKwIcxEgc9k8b7HbznCp6eUfWgu710hMPNIO4aw4/zB5RogDQz8nd6gyCDpU9O/m6qYEWY6yQ==" + }, + "node_modules/@types/jest/node_modules/@types/yargs": { + "version": "17.0.24", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.24.tgz", + "integrity": "sha512-6i0aC7jV6QzQB8ne1joVZ0eSFIstHsCrobmOtghM11yGlH0j43FKL2UhWdELkyps0zuf7qVTUVCCR+tgSlyLLw==", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/@types/jest/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@types/jest/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@types/jest/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/@types/jest/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/@types/jest/node_modules/diff-sequences": { + "version": "29.4.3", + "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-29.4.3.tgz", + "integrity": "sha512-ofrBgwpPhCD85kMKtE9RYFFq6OC1A89oW2vvgWZNCwxrUpRUILopY7lsYyMDSjc8g6U6aiO0Qubg6r4Wgt5ZnA==", + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@types/jest/node_modules/expect": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/expect/-/expect-29.5.0.tgz", + "integrity": "sha512-yM7xqUrCO2JdpFo4XpM82t+PJBFybdqoQuJLDGeDX2ij8NZzqRHyu3Hp188/JX7SWqud+7t4MUdvcgGBICMHZg==", + "dependencies": { + "@jest/expect-utils": "^29.5.0", + "jest-get-type": "^29.4.3", + "jest-matcher-utils": "^29.5.0", + "jest-message-util": "^29.5.0", + "jest-util": "^29.5.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@types/jest/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/@types/jest/node_modules/jest-diff": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-29.5.0.tgz", + "integrity": "sha512-LtxijLLZBduXnHSniy0WMdaHjmQnt3g5sa16W4p0HqukYTTsyTW3GD1q41TyGl5YFXj/5B2U6dlh5FM1LIMgxw==", + "dependencies": { + "chalk": "^4.0.0", + "diff-sequences": "^29.4.3", + "jest-get-type": "^29.4.3", + "pretty-format": "^29.5.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@types/jest/node_modules/jest-get-type": { + "version": "29.4.3", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.4.3.tgz", + "integrity": "sha512-J5Xez4nRRMjk8emnTpWrlkyb9pfRQQanDrvWHhsR1+VUfbwxi30eVcZFlcdGInRibU4G5LwHXpI7IRHU0CY+gg==", + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@types/jest/node_modules/jest-matcher-utils": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-29.5.0.tgz", + "integrity": "sha512-lecRtgm/rjIK0CQ7LPQwzCs2VwW6WAahA55YBuI+xqmhm7LAaxokSB8C97yJeYyT+HvQkH741StzpU41wohhWw==", + "dependencies": { + "chalk": "^4.0.0", + "jest-diff": "^29.5.0", + "jest-get-type": "^29.4.3", + "pretty-format": "^29.5.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@types/jest/node_modules/jest-message-util": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-29.5.0.tgz", + "integrity": "sha512-Kijeg9Dag6CKtIDA7O21zNTACqD5MD/8HfIV8pdD94vFyFuer52SigdC3IQMhab3vACxXMiFk+yMHNdbqtyTGA==", + "dependencies": { + "@babel/code-frame": "^7.12.13", + "@jest/types": "^29.5.0", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^29.5.0", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@types/jest/node_modules/jest-util": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.5.0.tgz", + "integrity": "sha512-RYMgG/MTadOr5t8KdhejfvUU82MxsCu5MF6KuDUHl+NuwzUt+Sm6jJWxTJVrDR1j5M/gJVCPKQEpWXY+yIQ6lQ==", + "dependencies": { + "@jest/types": "^29.5.0", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@types/jest/node_modules/pretty-format": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.5.0.tgz", + "integrity": "sha512-V2mGkI31qdttvTFX7Mt4efOqHXqJWMu4/r66Xh3Z3BwZaPfPJgp6/gbwoujRpPUtfEF6AUUWx3Jim3GCw5g/Qw==", + "dependencies": { + "@jest/schemas": "^29.4.3", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@types/jest/node_modules/pretty-format/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@types/jest/node_modules/react-is": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==" + }, + "node_modules/@types/jest/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@types/json-schema": { + "version": "7.0.12", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.12.tgz", + "integrity": "sha512-Hr5Jfhc9eYOQNPYO5WLDq/n4jqijdHNlDXjuAQkkt+mWdQR+XJToOHrsD4cPaMXpn6KO7y2+wM8AZEs8VpBLVA==" + }, + "node_modules/@types/json5": { + "version": "0.0.29", + "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", + "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==" + }, + "node_modules/@types/mime": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/@types/mime/-/mime-1.3.2.tgz", + "integrity": "sha512-YATxVxgRqNH6nHEIsvg6k2Boc1JHI9ZbH5iWFFv/MTkchz3b1ieGDa5T0a9RznNdI0KhVbdbWSN+KWWrQZRxTw==" + }, + "node_modules/@types/node": { + "version": "20.2.6", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.2.6.tgz", + "integrity": "sha512-GQBWUtGoefMEOx/vu+emHEHU5aw6JdDoEtZhoBrHFPZbA/YNRFfN996XbBASEWdvmLSLyv9FKYppYGyZjCaq/g==" + }, + "node_modules/@types/parse-json": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.0.tgz", + "integrity": "sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==" + }, + "node_modules/@types/prettier": { + "version": "2.7.3", + "resolved": "https://registry.npmjs.org/@types/prettier/-/prettier-2.7.3.tgz", + "integrity": "sha512-+68kP9yzs4LMp7VNh8gdzMSPZFL44MLGqiHWvttYJe+6qnuVr4Ek9wSBQoveqY/r+LwjCcU29kNVkidwim+kYA==" + }, + "node_modules/@types/prop-types": { + "version": "15.7.5", + "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.5.tgz", + "integrity": "sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==" + }, + "node_modules/@types/q": { + "version": "1.5.5", + "resolved": "https://registry.npmjs.org/@types/q/-/q-1.5.5.tgz", + "integrity": "sha512-L28j2FcJfSZOnL1WBjDYp2vUHCeIFlyYI/53EwD/rKUBQ7MtUUfbQWiyKJGpcnv4/WgrhWsFKrcPstcAt/J0tQ==" + }, + "node_modules/@types/qs": { + "version": "6.9.7", + "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.7.tgz", + "integrity": "sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw==" + }, + "node_modules/@types/range-parser": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.4.tgz", + "integrity": "sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw==" + }, + "node_modules/@types/react": { + "version": "18.2.11", + "resolved": "https://registry.npmjs.org/@types/react/-/react-18.2.11.tgz", + "integrity": "sha512-+hsJr9hmwyDecSMQAmX7drgbDpyE+EgSF6t7+5QEBAn1tQK7kl1vWZ4iRf6SjQ8lk7dyEULxUmZOIpN0W5baZA==", + "dependencies": { + "@types/prop-types": "*", + "@types/scheduler": "*", + "csstype": "^3.0.2" + } + }, + "node_modules/@types/react-dom": { + "version": "18.2.4", + "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.2.4.tgz", + "integrity": "sha512-G2mHoTMTL4yoydITgOGwWdWMVd8sNgyEP85xVmMKAPUBwQWm9wBPQUmvbeF4V3WBY1P7mmL4BkjQ0SqUpf1snw==", + "dependencies": { + "@types/react": "*" + } + }, + "node_modules/@types/resolve": { + "version": "1.17.1", + "resolved": "https://registry.npmjs.org/@types/resolve/-/resolve-1.17.1.tgz", + "integrity": "sha512-yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw==", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/retry": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/@types/retry/-/retry-0.12.0.tgz", + "integrity": "sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==" + }, + "node_modules/@types/scheduler": { + "version": "0.16.3", + "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.3.tgz", + "integrity": "sha512-5cJ8CB4yAx7BH1oMvdU0Jh9lrEXyPkar6F9G/ERswkCuvP4KQZfZkSjcMbAICCpQTN4OuZn8tz0HiKv9TGZgrQ==" + }, + "node_modules/@types/semver": { + "version": "7.5.0", + "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.5.0.tgz", + "integrity": "sha512-G8hZ6XJiHnuhQKR7ZmysCeJWE08o8T0AXtk5darsCaTVsYZhhgUrq53jizaR2FvsoeCwJhlmwTjkXBY5Pn/ZHw==" + }, + "node_modules/@types/send": { + "version": "0.17.1", + "resolved": "https://registry.npmjs.org/@types/send/-/send-0.17.1.tgz", + "integrity": "sha512-Cwo8LE/0rnvX7kIIa3QHCkcuF21c05Ayb0ZfxPiv0W8VRiZiNW/WuRupHKpqqGVGf7SUA44QSOUKaEd9lIrd/Q==", + "dependencies": { + "@types/mime": "^1", + "@types/node": "*" + } + }, + "node_modules/@types/serve-index": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/@types/serve-index/-/serve-index-1.9.1.tgz", + "integrity": "sha512-d/Hs3nWDxNL2xAczmOVZNj92YZCS6RGxfBPjKzuu/XirCgXdpKEb88dYNbrYGint6IVWLNP+yonwVAuRC0T2Dg==", + "dependencies": { + "@types/express": "*" + } + }, + "node_modules/@types/serve-static": { + "version": "1.15.1", + "resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.15.1.tgz", + "integrity": "sha512-NUo5XNiAdULrJENtJXZZ3fHtfMolzZwczzBbnAeBbqBwG+LaG6YaJtuwzwGSQZ2wsCrxjEhNNjAkKigy3n8teQ==", + "dependencies": { + "@types/mime": "*", + "@types/node": "*" + } + }, + "node_modules/@types/sockjs": { + "version": "0.3.33", + "resolved": "https://registry.npmjs.org/@types/sockjs/-/sockjs-0.3.33.tgz", + "integrity": "sha512-f0KEEe05NvUnat+boPTZ0dgaLZ4SfSouXUgv5noUiefG2ajgKjmETo9ZJyuqsl7dfl2aHlLJUiki6B4ZYldiiw==", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/stack-utils": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.1.tgz", + "integrity": "sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==" + }, + "node_modules/@types/testing-library__jest-dom": { + "version": "5.14.6", + "resolved": "https://registry.npmjs.org/@types/testing-library__jest-dom/-/testing-library__jest-dom-5.14.6.tgz", + "integrity": "sha512-FkHXCb+ikSoUP4Y4rOslzTdX5sqYwMxfefKh1GmZ8ce1GOkEHntSp6b5cGadmNfp5e4BMEWOMx+WSKd5/MqlDA==", + "dependencies": { + "@types/jest": "*" + } + }, + "node_modules/@types/trusted-types": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@types/trusted-types/-/trusted-types-2.0.3.tgz", + "integrity": "sha512-NfQ4gyz38SL8sDNrSixxU2Os1a5xcdFxipAFxYEuLUlvU2uDwS4NUpsImcf1//SlWItCVMMLiylsxbmNMToV/g==" + }, + "node_modules/@types/ws": { + "version": "8.5.5", + "resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.5.5.tgz", + "integrity": "sha512-lwhs8hktwxSjf9UaZ9tG5M03PGogvFaH8gUgLNbN9HKIg0dvv6q+gkSuJ8HN4/VbyxkuLzCjlN7GquQ0gUJfIg==", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/yargs": { + "version": "16.0.5", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.5.tgz", + "integrity": "sha512-AxO/ADJOBFJScHbWhq2xAhlWP24rY4aCEG/NFaMvbT3X2MgRsLjhjQwsn0Zi5zn0LG9jUhCCZMeX9Dkuw6k+vQ==", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/@types/yargs-parser": { + "version": "21.0.0", + "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.0.tgz", + "integrity": "sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==" + }, + "node_modules/@typescript-eslint/eslint-plugin": { + "version": "5.59.9", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.59.9.tgz", + "integrity": "sha512-4uQIBq1ffXd2YvF7MAvehWKW3zVv/w+mSfRAu+8cKbfj3nwzyqJLNcZJpQ/WZ1HLbJDiowwmQ6NO+63nCA+fqA==", + "dependencies": { + "@eslint-community/regexpp": "^4.4.0", + "@typescript-eslint/scope-manager": "5.59.9", + "@typescript-eslint/type-utils": "5.59.9", + "@typescript-eslint/utils": "5.59.9", + "debug": "^4.3.4", + "grapheme-splitter": "^1.0.4", + "ignore": "^5.2.0", + "natural-compare-lite": "^1.4.0", + "semver": "^7.3.7", + "tsutils": "^3.21.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "@typescript-eslint/parser": "^5.0.0", + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/experimental-utils": { + "version": "5.59.9", + "resolved": "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-5.59.9.tgz", + "integrity": "sha512-eZTK/Ci0QAqNc/q2MqMwI2+QI5ZI9HM12FcfGwbEvKif5ev/CIIYLmrlckvgPrC8XSbl39HtErR5NJiQkRkvWg==", + "dependencies": { + "@typescript-eslint/utils": "5.59.9" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/@typescript-eslint/parser": { + "version": "5.59.9", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.59.9.tgz", + "integrity": "sha512-FsPkRvBtcLQ/eVK1ivDiNYBjn3TGJdXy2fhXX+rc7czWl4ARwnpArwbihSOHI2Peg9WbtGHrbThfBUkZZGTtvQ==", + "dependencies": { + "@typescript-eslint/scope-manager": "5.59.9", + "@typescript-eslint/types": "5.59.9", + "@typescript-eslint/typescript-estree": "5.59.9", + "debug": "^4.3.4" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/scope-manager": { + "version": "5.59.9", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.59.9.tgz", + "integrity": "sha512-8RA+E+w78z1+2dzvK/tGZ2cpGigBZ58VMEHDZtpE1v+LLjzrYGc8mMaTONSxKyEkz3IuXFM0IqYiGHlCsmlZxQ==", + "dependencies": { + "@typescript-eslint/types": "5.59.9", + "@typescript-eslint/visitor-keys": "5.59.9" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/type-utils": { + "version": "5.59.9", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.59.9.tgz", + "integrity": "sha512-ksEsT0/mEHg9e3qZu98AlSrONAQtrSTljL3ow9CGej8eRo7pe+yaC/mvTjptp23Xo/xIf2mLZKC6KPv4Sji26Q==", + "dependencies": { + "@typescript-eslint/typescript-estree": "5.59.9", + "@typescript-eslint/utils": "5.59.9", + "debug": "^4.3.4", + "tsutils": "^3.21.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "*" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/types": { + "version": "5.59.9", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.59.9.tgz", + "integrity": "sha512-uW8H5NRgTVneSVTfiCVffBb8AbwWSKg7qcA4Ot3JI3MPCJGsB4Db4BhvAODIIYE5mNj7Q+VJkK7JxmRhk2Lyjw==", + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/typescript-estree": { + "version": "5.59.9", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.59.9.tgz", + "integrity": "sha512-pmM0/VQ7kUhd1QyIxgS+aRvMgw+ZljB3eDb+jYyp6d2bC0mQWLzUDF+DLwCTkQ3tlNyVsvZRXjFyV0LkU/aXjA==", + "dependencies": { + "@typescript-eslint/types": "5.59.9", + "@typescript-eslint/visitor-keys": "5.59.9", + "debug": "^4.3.4", + "globby": "^11.1.0", + "is-glob": "^4.0.3", + "semver": "^7.3.7", + "tsutils": "^3.21.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/utils": { + "version": "5.59.9", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.59.9.tgz", + "integrity": "sha512-1PuMYsju/38I5Ggblaeb98TOoUvjhRvLpLa1DoTOFaLWqaXl/1iQ1eGurTXgBY58NUdtfTXKP5xBq7q9NDaLKg==", + "dependencies": { + "@eslint-community/eslint-utils": "^4.2.0", + "@types/json-schema": "^7.0.9", + "@types/semver": "^7.3.12", + "@typescript-eslint/scope-manager": "5.59.9", + "@typescript-eslint/types": "5.59.9", + "@typescript-eslint/typescript-estree": "5.59.9", + "eslint-scope": "^5.1.1", + "semver": "^7.3.7" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/@typescript-eslint/utils/node_modules/eslint-scope": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", + "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/@typescript-eslint/utils/node_modules/estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/@typescript-eslint/visitor-keys": { + "version": "5.59.9", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.59.9.tgz", + "integrity": "sha512-bT7s0td97KMaLwpEBckbzj/YohnvXtqbe2XgqNvTl6RJVakY5mvENOTPvw5u66nljfZxthESpDozs86U+oLY8Q==", + "dependencies": { + "@typescript-eslint/types": "5.59.9", + "eslint-visitor-keys": "^3.3.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@webassemblyjs/ast": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.6.tgz", + "integrity": "sha512-IN1xI7PwOvLPgjcf180gC1bqn3q/QaOCwYUahIOhbYUu8KA/3tw2RT/T0Gidi1l7Hhj5D/INhJxiICObqpMu4Q==", + "dependencies": { + "@webassemblyjs/helper-numbers": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6" + } + }, + "node_modules/@webassemblyjs/floating-point-hex-parser": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.6.tgz", + "integrity": "sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==" + }, + "node_modules/@webassemblyjs/helper-api-error": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.6.tgz", + "integrity": "sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==" + }, + "node_modules/@webassemblyjs/helper-buffer": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.6.tgz", + "integrity": "sha512-z3nFzdcp1mb8nEOFFk8DrYLpHvhKC3grJD2ardfKOzmbmJvEf/tPIqCY+sNcwZIY8ZD7IkB2l7/pqhUhqm7hLA==" + }, + "node_modules/@webassemblyjs/helper-numbers": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.6.tgz", + "integrity": "sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==", + "dependencies": { + "@webassemblyjs/floating-point-hex-parser": "1.11.6", + "@webassemblyjs/helper-api-error": "1.11.6", + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@webassemblyjs/helper-wasm-bytecode": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.6.tgz", + "integrity": "sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==" + }, + "node_modules/@webassemblyjs/helper-wasm-section": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.6.tgz", + "integrity": "sha512-LPpZbSOwTpEC2cgn4hTydySy1Ke+XEu+ETXuoyvuyezHO3Kjdu90KK95Sh9xTbmjrCsUwvWwCOQQNta37VrS9g==", + "dependencies": { + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-buffer": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/wasm-gen": "1.11.6" + } + }, + "node_modules/@webassemblyjs/ieee754": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.6.tgz", + "integrity": "sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==", + "dependencies": { + "@xtuc/ieee754": "^1.2.0" + } + }, + "node_modules/@webassemblyjs/leb128": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.6.tgz", + "integrity": "sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==", + "dependencies": { + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@webassemblyjs/utf8": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.6.tgz", + "integrity": "sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==" + }, + "node_modules/@webassemblyjs/wasm-edit": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.6.tgz", + "integrity": "sha512-Ybn2I6fnfIGuCR+Faaz7YcvtBKxvoLV3Lebn1tM4o/IAJzmi9AWYIPWpyBfU8cC+JxAO57bk4+zdsTjJR+VTOw==", + "dependencies": { + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-buffer": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/helper-wasm-section": "1.11.6", + "@webassemblyjs/wasm-gen": "1.11.6", + "@webassemblyjs/wasm-opt": "1.11.6", + "@webassemblyjs/wasm-parser": "1.11.6", + "@webassemblyjs/wast-printer": "1.11.6" + } + }, + "node_modules/@webassemblyjs/wasm-gen": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.6.tgz", + "integrity": "sha512-3XOqkZP/y6B4F0PBAXvI1/bky7GryoogUtfwExeP/v7Nzwo1QLcq5oQmpKlftZLbT+ERUOAZVQjuNVak6UXjPA==", + "dependencies": { + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/ieee754": "1.11.6", + "@webassemblyjs/leb128": "1.11.6", + "@webassemblyjs/utf8": "1.11.6" + } + }, + "node_modules/@webassemblyjs/wasm-opt": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.6.tgz", + "integrity": "sha512-cOrKuLRE7PCe6AsOVl7WasYf3wbSo4CeOk6PkrjS7g57MFfVUF9u6ysQBBODX0LdgSvQqRiGz3CXvIDKcPNy4g==", + "dependencies": { + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-buffer": "1.11.6", + "@webassemblyjs/wasm-gen": "1.11.6", + "@webassemblyjs/wasm-parser": "1.11.6" + } + }, + "node_modules/@webassemblyjs/wasm-parser": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.6.tgz", + "integrity": "sha512-6ZwPeGzMJM3Dqp3hCsLgESxBGtT/OeCvCZ4TA1JUPYgmhAx38tTPR9JaKy0S5H3evQpO/h2uWs2j6Yc/fjkpTQ==", + "dependencies": { + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-api-error": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/ieee754": "1.11.6", + "@webassemblyjs/leb128": "1.11.6", + "@webassemblyjs/utf8": "1.11.6" + } + }, + "node_modules/@webassemblyjs/wast-printer": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.6.tgz", + "integrity": "sha512-JM7AhRcE+yW2GWYaKeHL5vt4xqee5N2WcezptmgyhNS+ScggqcT1OtXykhAb13Sn5Yas0j2uv9tHgrjwvzAP4A==", + "dependencies": { + "@webassemblyjs/ast": "1.11.6", + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@xtuc/ieee754": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", + "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==" + }, + "node_modules/@xtuc/long": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", + "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==" + }, + "node_modules/abab": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/abab/-/abab-2.0.6.tgz", + "integrity": "sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==" + }, + "node_modules/accepts": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", + "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", + "dependencies": { + "mime-types": "~2.1.34", + "negotiator": "0.6.3" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/acorn": { + "version": "8.8.2", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.2.tgz", + "integrity": "sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw==", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-globals": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-6.0.0.tgz", + "integrity": "sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg==", + "dependencies": { + "acorn": "^7.1.1", + "acorn-walk": "^7.1.1" + } + }, + "node_modules/acorn-globals/node_modules/acorn": { + "version": "7.4.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", + "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-import-assertions": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/acorn-import-assertions/-/acorn-import-assertions-1.9.0.tgz", + "integrity": "sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==", + "peerDependencies": { + "acorn": "^8" + } + }, + "node_modules/acorn-jsx": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "peerDependencies": { + "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/acorn-walk": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.2.0.tgz", + "integrity": "sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==", + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/address": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/address/-/address-1.2.2.tgz", + "integrity": "sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA==", + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/adjust-sourcemap-loader": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/adjust-sourcemap-loader/-/adjust-sourcemap-loader-4.0.0.tgz", + "integrity": "sha512-OXwN5b9pCUXNQHJpwwD2qP40byEmSgzj8B4ydSN0uMNYWiFmJ6x6KwUllMmfk8Rwu/HJDFR7U8ubsWBoN0Xp0A==", + "dependencies": { + "loader-utils": "^2.0.0", + "regex-parser": "^2.2.11" + }, + "engines": { + "node": ">=8.9" + } + }, + "node_modules/agent-base": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", + "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", + "dependencies": { + "debug": "4" + }, + "engines": { + "node": ">= 6.0.0" + } + }, + "node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/ajv-formats": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz", + "integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==", + "dependencies": { + "ajv": "^8.0.0" + }, + "peerDependencies": { + "ajv": "^8.0.0" + }, + "peerDependenciesMeta": { + "ajv": { + "optional": true + } + } + }, + "node_modules/ajv-formats/node_modules/ajv": { + "version": "8.12.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", + "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/ajv-formats/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" + }, + "node_modules/ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", + "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", + "peerDependencies": { + "ajv": "^6.9.1" + } + }, + "node_modules/ansi-escapes": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", + "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", + "dependencies": { + "type-fest": "^0.21.3" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ansi-html-community": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/ansi-html-community/-/ansi-html-community-0.0.8.tgz", + "integrity": "sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==", + "engines": [ + "node >= 0.8.0" + ], + "bin": { + "ansi-html": "bin/ansi-html" + } + }, + "node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/any-promise": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz", + "integrity": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==" + }, + "node_modules/anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/arg": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz", + "integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==" + }, + "node_modules/argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "dependencies": { + "sprintf-js": "~1.0.2" + } + }, + "node_modules/aria-query": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.1.3.tgz", + "integrity": "sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==", + "dependencies": { + "deep-equal": "^2.0.5" + } + }, + "node_modules/array-buffer-byte-length": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.0.tgz", + "integrity": "sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==", + "dependencies": { + "call-bind": "^1.0.2", + "is-array-buffer": "^3.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array-flatten": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-2.1.2.tgz", + "integrity": "sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==" + }, + "node_modules/array-includes": { + "version": "3.1.6", + "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.6.tgz", + "integrity": "sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4", + "get-intrinsic": "^1.1.3", + "is-string": "^1.0.7" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array-union": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", + "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", + "engines": { + "node": ">=8" + } + }, + "node_modules/array.prototype.flat": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.1.tgz", + "integrity": "sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4", + "es-shim-unscopables": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.flatmap": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.1.tgz", + "integrity": "sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4", + "es-shim-unscopables": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.reduce": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/array.prototype.reduce/-/array.prototype.reduce-1.0.5.tgz", + "integrity": "sha512-kDdugMl7id9COE8R7MHF5jWk7Dqt/fs4Pv+JXoICnYwqpjjjbUurz6w5fT5IG6brLdJhv6/VoHB0H7oyIBXd+Q==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4", + "es-array-method-boxes-properly": "^1.0.0", + "is-string": "^1.0.7" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.tosorted": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.1.tgz", + "integrity": "sha512-pZYPXPRl2PqWcsUs6LOMn+1f1532nEoPTYowBtqLwAW+W8vSVhkIGnmOX1t/UQjD6YGI0vcD2B1U7ZFGQH9jnQ==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4", + "es-shim-unscopables": "^1.0.0", + "get-intrinsic": "^1.1.3" + } + }, + "node_modules/asap": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz", + "integrity": "sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==" + }, + "node_modules/ast-types-flow": { + "version": "0.0.7", + "resolved": "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.7.tgz", + "integrity": "sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag==" + }, + "node_modules/async": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/async/-/async-3.2.4.tgz", + "integrity": "sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ==" + }, + "node_modules/asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==" + }, + "node_modules/at-least-node": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz", + "integrity": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==", + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/autoprefixer": { + "version": "10.4.14", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.14.tgz", + "integrity": "sha512-FQzyfOsTlwVzjHxKEqRIAdJx9niO6VCBCoEwax/VLSoQF29ggECcPuBqUMZ+u8jCZOPSy8b8/8KnuFbp0SaFZQ==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/autoprefixer" + } + ], + "dependencies": { + "browserslist": "^4.21.5", + "caniuse-lite": "^1.0.30001464", + "fraction.js": "^4.2.0", + "normalize-range": "^0.1.2", + "picocolors": "^1.0.0", + "postcss-value-parser": "^4.2.0" + }, + "bin": { + "autoprefixer": "bin/autoprefixer" + }, + "engines": { + "node": "^10 || ^12 || >=14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/available-typed-arrays": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz", + "integrity": "sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/axe-core": { + "version": "4.7.2", + "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.7.2.tgz", + "integrity": "sha512-zIURGIS1E1Q4pcrMjp+nnEh+16G56eG/MUllJH8yEvw7asDo7Ac9uhC9KIH5jzpITueEZolfYglnCGIuSBz39g==", + "engines": { + "node": ">=4" + } + }, + "node_modules/axobject-query": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-3.1.1.tgz", + "integrity": "sha512-goKlv8DZrK9hUh975fnHzhNIO4jUnFCfv/dszV5VwUGDFjI6vQ2VwoyjYjYNEbBE8AH87TduWP5uyDR1D+Iteg==", + "dependencies": { + "deep-equal": "^2.0.5" + } + }, + "node_modules/babel-jest": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-27.5.1.tgz", + "integrity": "sha512-cdQ5dXjGRd0IBRATiQ4mZGlGlRE8kJpjPOixdNRdT+m3UcNqmYWN6rK6nvtXYfY3D76cb8s/O1Ss8ea24PIwcg==", + "dependencies": { + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/babel__core": "^7.1.14", + "babel-plugin-istanbul": "^6.1.1", + "babel-preset-jest": "^27.5.1", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "slash": "^3.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "peerDependencies": { + "@babel/core": "^7.8.0" + } + }, + "node_modules/babel-jest/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/babel-jest/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/babel-jest/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/babel-jest/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/babel-jest/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/babel-jest/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/babel-loader": { + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-8.3.0.tgz", + "integrity": "sha512-H8SvsMF+m9t15HNLMipppzkC+Y2Yq+v3SonZyU70RBL/h1gxPkH08Ot8pEE9Z4Kd+czyWJClmFS8qzIP9OZ04Q==", + "dependencies": { + "find-cache-dir": "^3.3.1", + "loader-utils": "^2.0.0", + "make-dir": "^3.1.0", + "schema-utils": "^2.6.5" + }, + "engines": { + "node": ">= 8.9" + }, + "peerDependencies": { + "@babel/core": "^7.0.0", + "webpack": ">=2" + } + }, + "node_modules/babel-loader/node_modules/schema-utils": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz", + "integrity": "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==", + "dependencies": { + "@types/json-schema": "^7.0.5", + "ajv": "^6.12.4", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 8.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/babel-plugin-istanbul": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz", + "integrity": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.0.0", + "@istanbuljs/load-nyc-config": "^1.0.0", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-instrument": "^5.0.4", + "test-exclude": "^6.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/babel-plugin-jest-hoist": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-27.5.1.tgz", + "integrity": "sha512-50wCwD5EMNW4aRpOwtqzyZHIewTYNxLA4nhB+09d8BIssfNfzBRhkBIHiaPv1Si226TQSvp8gxAJm2iY2qs2hQ==", + "dependencies": { + "@babel/template": "^7.3.3", + "@babel/types": "^7.3.3", + "@types/babel__core": "^7.0.0", + "@types/babel__traverse": "^7.0.6" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/babel-plugin-macros": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/babel-plugin-macros/-/babel-plugin-macros-3.1.0.tgz", + "integrity": "sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==", + "dependencies": { + "@babel/runtime": "^7.12.5", + "cosmiconfig": "^7.0.0", + "resolve": "^1.19.0" + }, + "engines": { + "node": ">=10", + "npm": ">=6" + } + }, + "node_modules/babel-plugin-named-asset-import": { + "version": "0.3.8", + "resolved": "https://registry.npmjs.org/babel-plugin-named-asset-import/-/babel-plugin-named-asset-import-0.3.8.tgz", + "integrity": "sha512-WXiAc++qo7XcJ1ZnTYGtLxmBCVbddAml3CEXgWaBzNzLNoxtQ8AiGEFDMOhot9XjTCQbvP5E77Fj9Gk924f00Q==", + "peerDependencies": { + "@babel/core": "^7.1.0" + } + }, + "node_modules/babel-plugin-polyfill-corejs2": { + "version": "0.4.3", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.3.tgz", + "integrity": "sha512-bM3gHc337Dta490gg+/AseNB9L4YLHxq1nGKZZSHbhXv4aTYU2MD2cjza1Ru4S6975YLTaL1K8uJf6ukJhhmtw==", + "dependencies": { + "@babel/compat-data": "^7.17.7", + "@babel/helper-define-polyfill-provider": "^0.4.0", + "semver": "^6.1.1" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/babel-plugin-polyfill-corejs2/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/babel-plugin-polyfill-corejs3": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.8.1.tgz", + "integrity": "sha512-ikFrZITKg1xH6pLND8zT14UPgjKHiGLqex7rGEZCH2EvhsneJaJPemmpQaIZV5AL03II+lXylw3UmddDK8RU5Q==", + "dependencies": { + "@babel/helper-define-polyfill-provider": "^0.4.0", + "core-js-compat": "^3.30.1" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/babel-plugin-polyfill-regenerator": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.5.0.tgz", + "integrity": "sha512-hDJtKjMLVa7Z+LwnTCxoDLQj6wdc+B8dun7ayF2fYieI6OzfuvcLMB32ihJZ4UhCBwNYGl5bg/x/P9cMdnkc2g==", + "dependencies": { + "@babel/helper-define-polyfill-provider": "^0.4.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/babel-plugin-transform-react-remove-prop-types": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-react-remove-prop-types/-/babel-plugin-transform-react-remove-prop-types-0.4.24.tgz", + "integrity": "sha512-eqj0hVcJUR57/Ug2zE1Yswsw4LhuqqHhD+8v120T1cl3kjg76QwtyBrdIk4WVwK+lAhBJVYCd/v+4nc4y+8JsA==" + }, + "node_modules/babel-preset-current-node-syntax": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz", + "integrity": "sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==", + "dependencies": { + "@babel/plugin-syntax-async-generators": "^7.8.4", + "@babel/plugin-syntax-bigint": "^7.8.3", + "@babel/plugin-syntax-class-properties": "^7.8.3", + "@babel/plugin-syntax-import-meta": "^7.8.3", + "@babel/plugin-syntax-json-strings": "^7.8.3", + "@babel/plugin-syntax-logical-assignment-operators": "^7.8.3", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", + "@babel/plugin-syntax-numeric-separator": "^7.8.3", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", + "@babel/plugin-syntax-optional-chaining": "^7.8.3", + "@babel/plugin-syntax-top-level-await": "^7.8.3" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/babel-preset-jest": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-27.5.1.tgz", + "integrity": "sha512-Nptf2FzlPCWYuJg41HBqXVT8ym6bXOevuCTbhxlUpjwtysGaIWFvDEjp4y+G7fl13FgOdjs7P/DmErqH7da0Ag==", + "dependencies": { + "babel-plugin-jest-hoist": "^27.5.1", + "babel-preset-current-node-syntax": "^1.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/babel-preset-react-app": { + "version": "10.0.1", + "resolved": "https://registry.npmjs.org/babel-preset-react-app/-/babel-preset-react-app-10.0.1.tgz", + "integrity": "sha512-b0D9IZ1WhhCWkrTXyFuIIgqGzSkRIH5D5AmB0bXbzYAB1OBAwHcUeyWW2LorutLWF5btNo/N7r/cIdmvvKJlYg==", + "dependencies": { + "@babel/core": "^7.16.0", + "@babel/plugin-proposal-class-properties": "^7.16.0", + "@babel/plugin-proposal-decorators": "^7.16.4", + "@babel/plugin-proposal-nullish-coalescing-operator": "^7.16.0", + "@babel/plugin-proposal-numeric-separator": "^7.16.0", + "@babel/plugin-proposal-optional-chaining": "^7.16.0", + "@babel/plugin-proposal-private-methods": "^7.16.0", + "@babel/plugin-transform-flow-strip-types": "^7.16.0", + "@babel/plugin-transform-react-display-name": "^7.16.0", + "@babel/plugin-transform-runtime": "^7.16.4", + "@babel/preset-env": "^7.16.4", + "@babel/preset-react": "^7.16.0", + "@babel/preset-typescript": "^7.16.0", + "@babel/runtime": "^7.16.3", + "babel-plugin-macros": "^3.1.0", + "babel-plugin-transform-react-remove-prop-types": "^0.4.24" + } + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" + }, + "node_modules/batch": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/batch/-/batch-0.6.1.tgz", + "integrity": "sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==" + }, + "node_modules/bfj": { + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/bfj/-/bfj-7.0.2.tgz", + "integrity": "sha512-+e/UqUzwmzJamNF50tBV6tZPTORow7gQ96iFow+8b562OdMpEK0BcJEq2OSPEDmAbSMBQ7PKZ87ubFkgxpYWgw==", + "dependencies": { + "bluebird": "^3.5.5", + "check-types": "^11.1.1", + "hoopy": "^0.1.4", + "tryer": "^1.0.1" + }, + "engines": { + "node": ">= 8.0.0" + } + }, + "node_modules/big.js": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", + "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", + "engines": { + "node": "*" + } + }, + "node_modules/binary-extensions": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", + "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", + "engines": { + "node": ">=8" + } + }, + "node_modules/bluebird": { + "version": "3.7.2", + "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz", + "integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==" + }, + "node_modules/body-parser": { + "version": "1.20.1", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.1.tgz", + "integrity": "sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw==", + "dependencies": { + "bytes": "3.1.2", + "content-type": "~1.0.4", + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "on-finished": "2.4.1", + "qs": "6.11.0", + "raw-body": "2.5.1", + "type-is": "~1.6.18", + "unpipe": "1.0.0" + }, + "engines": { + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" + } + }, + "node_modules/body-parser/node_modules/bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/body-parser/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/body-parser/node_modules/iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/body-parser/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + }, + "node_modules/bonjour-service": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/bonjour-service/-/bonjour-service-1.1.1.tgz", + "integrity": "sha512-Z/5lQRMOG9k7W+FkeGTNjh7htqn/2LMnfOvBZ8pynNZCM9MwkQkI3zeI4oz09uWdcgmgHugVvBqxGg4VQJ5PCg==", + "dependencies": { + "array-flatten": "^2.1.2", + "dns-equal": "^1.0.0", + "fast-deep-equal": "^3.1.3", + "multicast-dns": "^7.2.5" + } + }, + "node_modules/boolbase": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", + "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==" + }, + "node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dependencies": { + "fill-range": "^7.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/browser-process-hrtime": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz", + "integrity": "sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==" + }, + "node_modules/browserslist": { + "version": "4.21.7", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.7.tgz", + "integrity": "sha512-BauCXrQ7I2ftSqd2mvKHGo85XR0u7Ru3C/Hxsy/0TkfCtjrmAbPdzLGasmoiBxplpDXlPvdjX9u7srIMfgasNA==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "caniuse-lite": "^1.0.30001489", + "electron-to-chromium": "^1.4.411", + "node-releases": "^2.0.12", + "update-browserslist-db": "^1.0.11" + }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + } + }, + "node_modules/bser": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz", + "integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==", + "dependencies": { + "node-int64": "^0.4.0" + } + }, + "node_modules/buffer-from": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", + "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==" + }, + "node_modules/builtin-modules": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-3.3.0.tgz", + "integrity": "sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==", + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/bytes": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", + "integrity": "sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/call-bind": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", + "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", + "dependencies": { + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "engines": { + "node": ">=6" + } + }, + "node_modules/camel-case": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-4.1.2.tgz", + "integrity": "sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==", + "dependencies": { + "pascal-case": "^3.1.2", + "tslib": "^2.0.3" + } + }, + "node_modules/camelcase": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/camelcase-css": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz", + "integrity": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==", + "engines": { + "node": ">= 6" + } + }, + "node_modules/caniuse-api": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/caniuse-api/-/caniuse-api-3.0.0.tgz", + "integrity": "sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==", + "dependencies": { + "browserslist": "^4.0.0", + "caniuse-lite": "^1.0.0", + "lodash.memoize": "^4.1.2", + "lodash.uniq": "^4.5.0" + } + }, + "node_modules/caniuse-lite": { + "version": "1.0.30001498", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001498.tgz", + "integrity": "sha512-LFInN2zAwx3ANrGCDZ5AKKJroHqNKyjXitdV5zRIVIaQlXKj3GmxUKagoKsjqUfckpAObPCEWnk5EeMlyMWcgw==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ] + }, + "node_modules/case-sensitive-paths-webpack-plugin": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/case-sensitive-paths-webpack-plugin/-/case-sensitive-paths-webpack-plugin-2.4.0.tgz", + "integrity": "sha512-roIFONhcxog0JSSWbvVAh3OocukmSgpqOH6YpMkCvav/ySIV3JKg4Dc8vYtQjYi/UxpNE36r/9v+VqTQqgkYmw==", + "engines": { + "node": ">=4" + } + }, + "node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/char-regex": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz", + "integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==", + "engines": { + "node": ">=10" + } + }, + "node_modules/check-types": { + "version": "11.2.2", + "resolved": "https://registry.npmjs.org/check-types/-/check-types-11.2.2.tgz", + "integrity": "sha512-HBiYvXvn9Z70Z88XKjz3AEKd4HJhBXsa3j7xFnITAzoS8+q6eIGi8qDB8FKPBAjtuxjI/zFpwuiCb8oDtKOYrA==" + }, + "node_modules/chokidar": { + "version": "3.5.3", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", + "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", + "funding": [ + { + "type": "individual", + "url": "https://paulmillr.com/funding/" + } + ], + "dependencies": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + }, + "engines": { + "node": ">= 8.10.0" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, + "node_modules/chokidar/node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/chrome-trace-event": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz", + "integrity": "sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==", + "engines": { + "node": ">=6.0" + } + }, + "node_modules/ci-info": { + "version": "3.8.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.8.0.tgz", + "integrity": "sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/sibiraj-s" + } + ], + "engines": { + "node": ">=8" + } + }, + "node_modules/cjs-module-lexer": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.2.2.tgz", + "integrity": "sha512-cOU9usZw8/dXIXKtwa8pM0OTJQuJkxMN6w30csNRUerHfeQ5R6U3kkU/FtJeIf3M202OHfY2U8ccInBG7/xogA==" + }, + "node_modules/clean-css": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-5.3.2.tgz", + "integrity": "sha512-JVJbM+f3d3Q704rF4bqQ5UUyTtuJ0JRKNbTKVEeujCCBoMdkEi+V+e8oktO9qGQNSvHrFTM6JZRXrUvGR1czww==", + "dependencies": { + "source-map": "~0.6.0" + }, + "engines": { + "node": ">= 10.0" + } + }, + "node_modules/clean-css/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/cliui": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", + "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^7.0.0" + } + }, + "node_modules/co": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", + "integrity": "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==", + "engines": { + "iojs": ">= 1.0.0", + "node": ">= 0.12.0" + } + }, + "node_modules/coa": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/coa/-/coa-2.0.2.tgz", + "integrity": "sha512-q5/jG+YQnSy4nRTV4F7lPepBJZ8qBNJJDBuJdoejDyLXgmL7IEo+Le2JDZudFTFt7mrCqIRaSjws4ygRCTCAXA==", + "dependencies": { + "@types/q": "^1.5.1", + "chalk": "^2.4.1", + "q": "^1.1.2" + }, + "engines": { + "node": ">= 4.0" + } + }, + "node_modules/collect-v8-coverage": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.1.tgz", + "integrity": "sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg==" + }, + "node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==" + }, + "node_modules/colord": { + "version": "2.9.3", + "resolved": "https://registry.npmjs.org/colord/-/colord-2.9.3.tgz", + "integrity": "sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==" + }, + "node_modules/colorette": { + "version": "2.0.20", + "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.20.tgz", + "integrity": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==" + }, + "node_modules/combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "dependencies": { + "delayed-stream": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/commander": { + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-8.3.0.tgz", + "integrity": "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==", + "engines": { + "node": ">= 12" + } + }, + "node_modules/common-path-prefix": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/common-path-prefix/-/common-path-prefix-3.0.0.tgz", + "integrity": "sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w==" + }, + "node_modules/common-tags": { + "version": "1.8.2", + "resolved": "https://registry.npmjs.org/common-tags/-/common-tags-1.8.2.tgz", + "integrity": "sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA==", + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/commondir": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", + "integrity": "sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==" + }, + "node_modules/compressible": { + "version": "2.0.18", + "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz", + "integrity": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==", + "dependencies": { + "mime-db": ">= 1.43.0 < 2" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/compression": { + "version": "1.7.4", + "resolved": "https://registry.npmjs.org/compression/-/compression-1.7.4.tgz", + "integrity": "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==", + "dependencies": { + "accepts": "~1.3.5", + "bytes": "3.0.0", + "compressible": "~2.0.16", + "debug": "2.6.9", + "on-headers": "~1.0.2", + "safe-buffer": "5.1.2", + "vary": "~1.1.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/compression/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/compression/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + }, + "node_modules/compression/node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" + }, + "node_modules/confusing-browser-globals": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/confusing-browser-globals/-/confusing-browser-globals-1.0.11.tgz", + "integrity": "sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA==" + }, + "node_modules/connect-history-api-fallback": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/connect-history-api-fallback/-/connect-history-api-fallback-2.0.0.tgz", + "integrity": "sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA==", + "engines": { + "node": ">=0.8" + } + }, + "node_modules/content-disposition": { + "version": "0.5.4", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", + "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", + "dependencies": { + "safe-buffer": "5.2.1" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/content-type": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", + "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/convert-source-map": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", + "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==" + }, + "node_modules/cookie": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz", + "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/cookie-signature": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", + "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==" + }, + "node_modules/core-js": { + "version": "3.30.2", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.30.2.tgz", + "integrity": "sha512-uBJiDmwqsbJCWHAwjrx3cvjbMXP7xD72Dmsn5LOJpiRmE3WbBbN5rCqQ2Qh6Ek6/eOrjlWngEynBWo4VxerQhg==", + "hasInstallScript": true, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/core-js" + } + }, + "node_modules/core-js-compat": { + "version": "3.30.2", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.30.2.tgz", + "integrity": "sha512-nriW1nuJjUgvkEjIot1Spwakz52V9YkYHZAQG6A1eCgC8AA1p0zngrQEP9R0+V6hji5XilWKG1Bd0YRppmGimA==", + "dependencies": { + "browserslist": "^4.21.5" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/core-js" + } + }, + "node_modules/core-js-pure": { + "version": "3.30.2", + "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.30.2.tgz", + "integrity": "sha512-p/npFUJXXBkCCTIlEGBdghofn00jWG6ZOtdoIXSJmAu2QBvN0IqpZXWweOytcwE6cfx8ZvVUy1vw8zxhe4Y2vg==", + "hasInstallScript": true, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/core-js" + } + }, + "node_modules/core-util-is": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", + "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==" + }, + "node_modules/cosmiconfig": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz", + "integrity": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==", + "dependencies": { + "@types/parse-json": "^4.0.0", + "import-fresh": "^3.2.1", + "parse-json": "^5.0.0", + "path-type": "^4.0.0", + "yaml": "^1.10.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/crypto-random-string": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-2.0.0.tgz", + "integrity": "sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==", + "engines": { + "node": ">=8" + } + }, + "node_modules/css-blank-pseudo": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/css-blank-pseudo/-/css-blank-pseudo-3.0.3.tgz", + "integrity": "sha512-VS90XWtsHGqoM0t4KpH053c4ehxZ2E6HtGI7x68YFV0pTo/QmkV/YFA+NnlvK8guxZVNWGQhVNJGC39Q8XF4OQ==", + "dependencies": { + "postcss-selector-parser": "^6.0.9" + }, + "bin": { + "css-blank-pseudo": "dist/cli.cjs" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/css-declaration-sorter": { + "version": "6.4.0", + "resolved": "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-6.4.0.tgz", + "integrity": "sha512-jDfsatwWMWN0MODAFuHszfjphEXfNw9JUAhmY4pLu3TyTU+ohUpsbVtbU+1MZn4a47D9kqh03i4eyOm+74+zew==", + "engines": { + "node": "^10 || ^12 || >=14" + }, + "peerDependencies": { + "postcss": "^8.0.9" + } + }, + "node_modules/css-has-pseudo": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/css-has-pseudo/-/css-has-pseudo-3.0.4.tgz", + "integrity": "sha512-Vse0xpR1K9MNlp2j5w1pgWIJtm1a8qS0JwS9goFYcImjlHEmywP9VUF05aGBXzGpDJF86QXk4L0ypBmwPhGArw==", + "dependencies": { + "postcss-selector-parser": "^6.0.9" + }, + "bin": { + "css-has-pseudo": "dist/cli.cjs" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/css-loader": { + "version": "6.8.1", + "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-6.8.1.tgz", + "integrity": "sha512-xDAXtEVGlD0gJ07iclwWVkLoZOpEvAWaSyf6W18S2pOC//K8+qUDIx8IIT3D+HjnmkJPQeesOPv5aiUaJsCM2g==", + "dependencies": { + "icss-utils": "^5.1.0", + "postcss": "^8.4.21", + "postcss-modules-extract-imports": "^3.0.0", + "postcss-modules-local-by-default": "^4.0.3", + "postcss-modules-scope": "^3.0.0", + "postcss-modules-values": "^4.0.0", + "postcss-value-parser": "^4.2.0", + "semver": "^7.3.8" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.0.0" + } + }, + "node_modules/css-minimizer-webpack-plugin": { + "version": "3.4.1", + "resolved": "https://registry.npmjs.org/css-minimizer-webpack-plugin/-/css-minimizer-webpack-plugin-3.4.1.tgz", + "integrity": "sha512-1u6D71zeIfgngN2XNRJefc/hY7Ybsxd74Jm4qngIXyUEk7fss3VUzuHxLAq/R8NAba4QU9OUSaMZlbpRc7bM4Q==", + "dependencies": { + "cssnano": "^5.0.6", + "jest-worker": "^27.0.2", + "postcss": "^8.3.5", + "schema-utils": "^4.0.0", + "serialize-javascript": "^6.0.0", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.0.0" + }, + "peerDependenciesMeta": { + "@parcel/css": { + "optional": true + }, + "clean-css": { + "optional": true + }, + "csso": { + "optional": true + }, + "esbuild": { + "optional": true + } + } + }, + "node_modules/css-minimizer-webpack-plugin/node_modules/ajv": { + "version": "8.12.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", + "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/css-minimizer-webpack-plugin/node_modules/ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "dependencies": { + "fast-deep-equal": "^3.1.3" + }, + "peerDependencies": { + "ajv": "^8.8.2" + } + }, + "node_modules/css-minimizer-webpack-plugin/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" + }, + "node_modules/css-minimizer-webpack-plugin/node_modules/schema-utils": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.1.0.tgz", + "integrity": "sha512-Jw+GZVbP5IggB2WAn6UHI02LBwGmsIeYN/lNbSMZyDziQ7jmtAUrqKqDja+W89YHVs+KL/3IkIMltAklqB1vAw==", + "dependencies": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.9.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.1.0" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/css-minimizer-webpack-plugin/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/css-prefers-color-scheme": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/css-prefers-color-scheme/-/css-prefers-color-scheme-6.0.3.tgz", + "integrity": "sha512-4BqMbZksRkJQx2zAjrokiGMd07RqOa2IxIrrN10lyBe9xhn9DEvjUK79J6jkeiv9D9hQFXKb6g1jwU62jziJZA==", + "bin": { + "css-prefers-color-scheme": "dist/cli.cjs" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/css-select": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-4.3.0.tgz", + "integrity": "sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==", + "dependencies": { + "boolbase": "^1.0.0", + "css-what": "^6.0.1", + "domhandler": "^4.3.1", + "domutils": "^2.8.0", + "nth-check": "^2.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } + }, + "node_modules/css-select-base-adapter": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/css-select-base-adapter/-/css-select-base-adapter-0.1.1.tgz", + "integrity": "sha512-jQVeeRG70QI08vSTwf1jHxp74JoZsr2XSgETae8/xC8ovSnL2WF87GTLO86Sbwdt2lK4Umg4HnnwMO4YF3Ce7w==" + }, + "node_modules/css-tree": { + "version": "1.0.0-alpha.37", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.0.0-alpha.37.tgz", + "integrity": "sha512-DMxWJg0rnz7UgxKT0Q1HU/L9BeJI0M6ksor0OgqOnF+aRCDWg/N2641HmVyU9KVIu0OVVWOb2IpC9A+BJRnejg==", + "dependencies": { + "mdn-data": "2.0.4", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/css-tree/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/css-what": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/css-what/-/css-what-6.1.0.tgz", + "integrity": "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==", + "engines": { + "node": ">= 6" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } + }, + "node_modules/css.escape": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/css.escape/-/css.escape-1.5.1.tgz", + "integrity": "sha512-YUifsXXuknHlUsmlgyY0PKzgPOr7/FjCePfHNt0jxm83wHZi44VDMQ7/fGNkjY3/jV1MC+1CmZbaHzugyeRtpg==" + }, + "node_modules/cssdb": { + "version": "7.6.0", + "resolved": "https://registry.npmjs.org/cssdb/-/cssdb-7.6.0.tgz", + "integrity": "sha512-Nna7rph8V0jC6+JBY4Vk4ndErUmfJfV6NJCaZdurL0omggabiy+QB2HCQtu5c/ACLZ0I7REv7A4QyPIoYzZx0w==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + } + ] + }, + "node_modules/cssesc": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", + "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", + "bin": { + "cssesc": "bin/cssesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/cssnano": { + "version": "5.1.15", + "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-5.1.15.tgz", + "integrity": "sha512-j+BKgDcLDQA+eDifLx0EO4XSA56b7uut3BQFH+wbSaSTuGLuiyTa/wbRYthUXX8LC9mLg+WWKe8h+qJuwTAbHw==", + "dependencies": { + "cssnano-preset-default": "^5.2.14", + "lilconfig": "^2.0.3", + "yaml": "^1.10.2" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/cssnano" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/cssnano-preset-default": { + "version": "5.2.14", + "resolved": "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-5.2.14.tgz", + "integrity": "sha512-t0SFesj/ZV2OTylqQVOrFgEh5uanxbO6ZAdeCrNsUQ6fVuXwYTxJPNAGvGTxHbD68ldIJNec7PyYZDBrfDQ+6A==", + "dependencies": { + "css-declaration-sorter": "^6.3.1", + "cssnano-utils": "^3.1.0", + "postcss-calc": "^8.2.3", + "postcss-colormin": "^5.3.1", + "postcss-convert-values": "^5.1.3", + "postcss-discard-comments": "^5.1.2", + "postcss-discard-duplicates": "^5.1.0", + "postcss-discard-empty": "^5.1.1", + "postcss-discard-overridden": "^5.1.0", + "postcss-merge-longhand": "^5.1.7", + "postcss-merge-rules": "^5.1.4", + "postcss-minify-font-values": "^5.1.0", + "postcss-minify-gradients": "^5.1.1", + "postcss-minify-params": "^5.1.4", + "postcss-minify-selectors": "^5.2.1", + "postcss-normalize-charset": "^5.1.0", + "postcss-normalize-display-values": "^5.1.0", + "postcss-normalize-positions": "^5.1.1", + "postcss-normalize-repeat-style": "^5.1.1", + "postcss-normalize-string": "^5.1.0", + "postcss-normalize-timing-functions": "^5.1.0", + "postcss-normalize-unicode": "^5.1.1", + "postcss-normalize-url": "^5.1.0", + "postcss-normalize-whitespace": "^5.1.1", + "postcss-ordered-values": "^5.1.3", + "postcss-reduce-initial": "^5.1.2", + "postcss-reduce-transforms": "^5.1.0", + "postcss-svgo": "^5.1.0", + "postcss-unique-selectors": "^5.1.1" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/cssnano-utils": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/cssnano-utils/-/cssnano-utils-3.1.0.tgz", + "integrity": "sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA==", + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/csso": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/csso/-/csso-4.2.0.tgz", + "integrity": "sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==", + "dependencies": { + "css-tree": "^1.1.2" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/csso/node_modules/css-tree": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.1.3.tgz", + "integrity": "sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==", + "dependencies": { + "mdn-data": "2.0.14", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/csso/node_modules/mdn-data": { + "version": "2.0.14", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz", + "integrity": "sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==" + }, + "node_modules/csso/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/cssom": { + "version": "0.4.4", + "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.4.4.tgz", + "integrity": "sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw==" + }, + "node_modules/cssstyle": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-2.3.0.tgz", + "integrity": "sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==", + "dependencies": { + "cssom": "~0.3.6" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/cssstyle/node_modules/cssom": { + "version": "0.3.8", + "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.3.8.tgz", + "integrity": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==" + }, + "node_modules/csstype": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.2.tgz", + "integrity": "sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==" + }, + "node_modules/damerau-levenshtein": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz", + "integrity": "sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==" + }, + "node_modules/data-urls": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/data-urls/-/data-urls-2.0.0.tgz", + "integrity": "sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ==", + "dependencies": { + "abab": "^2.0.3", + "whatwg-mimetype": "^2.3.0", + "whatwg-url": "^8.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/decimal.js": { + "version": "10.4.3", + "resolved": "https://registry.npmjs.org/decimal.js/-/decimal.js-10.4.3.tgz", + "integrity": "sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==" + }, + "node_modules/dedent": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/dedent/-/dedent-0.7.0.tgz", + "integrity": "sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==" + }, + "node_modules/deep-equal": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-2.2.1.tgz", + "integrity": "sha512-lKdkdV6EOGoVn65XaOsPdH4rMxTZOnmFyuIkMjM1i5HHCbfjC97dawgTAy0deYNfuqUqW+Q5VrVaQYtUpSd6yQ==", + "dependencies": { + "array-buffer-byte-length": "^1.0.0", + "call-bind": "^1.0.2", + "es-get-iterator": "^1.1.3", + "get-intrinsic": "^1.2.0", + "is-arguments": "^1.1.1", + "is-array-buffer": "^3.0.2", + "is-date-object": "^1.0.5", + "is-regex": "^1.1.4", + "is-shared-array-buffer": "^1.0.2", + "isarray": "^2.0.5", + "object-is": "^1.1.5", + "object-keys": "^1.1.1", + "object.assign": "^4.1.4", + "regexp.prototype.flags": "^1.5.0", + "side-channel": "^1.0.4", + "which-boxed-primitive": "^1.0.2", + "which-collection": "^1.0.1", + "which-typed-array": "^1.1.9" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/deep-is": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==" + }, + "node_modules/deepmerge": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", + "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/default-gateway": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/default-gateway/-/default-gateway-6.0.3.tgz", + "integrity": "sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg==", + "dependencies": { + "execa": "^5.0.0" + }, + "engines": { + "node": ">= 10" + } + }, + "node_modules/define-lazy-prop": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz", + "integrity": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==", + "engines": { + "node": ">=8" + } + }, + "node_modules/define-properties": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.0.tgz", + "integrity": "sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA==", + "dependencies": { + "has-property-descriptors": "^1.0.0", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/depd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", + "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/destroy": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", + "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", + "engines": { + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" + } + }, + "node_modules/detect-newline": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz", + "integrity": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==", + "engines": { + "node": ">=8" + } + }, + "node_modules/detect-node": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/detect-node/-/detect-node-2.1.0.tgz", + "integrity": "sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==" + }, + "node_modules/detect-port-alt": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/detect-port-alt/-/detect-port-alt-1.1.6.tgz", + "integrity": "sha512-5tQykt+LqfJFBEYaDITx7S7cR7mJ/zQmLXZ2qt5w04ainYZw6tBf9dBunMjVeVOdYVRUzUOE4HkY5J7+uttb5Q==", + "dependencies": { + "address": "^1.0.1", + "debug": "^2.6.0" + }, + "bin": { + "detect": "bin/detect-port", + "detect-port": "bin/detect-port" + }, + "engines": { + "node": ">= 4.2.1" + } + }, + "node_modules/detect-port-alt/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/detect-port-alt/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + }, + "node_modules/didyoumean": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/didyoumean/-/didyoumean-1.2.2.tgz", + "integrity": "sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==" + }, + "node_modules/diff-sequences": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-27.5.1.tgz", + "integrity": "sha512-k1gCAXAsNgLwEL+Y8Wvl+M6oEFj5bgazfZULpS5CneoPPXRaCCW7dm+q21Ky2VEE5X+VeRDBVg1Pcvvsr4TtNQ==", + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/dir-glob": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", + "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", + "dependencies": { + "path-type": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/dlv": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/dlv/-/dlv-1.1.3.tgz", + "integrity": "sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==" + }, + "node_modules/dns-equal": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/dns-equal/-/dns-equal-1.0.0.tgz", + "integrity": "sha512-z+paD6YUQsk+AbGCEM4PrOXSss5gd66QfcVBFTKR/HpFL9jCqikS94HYwKww6fQyO7IxrIIyUu+g0Ka9tUS2Cg==" + }, + "node_modules/dns-packet": { + "version": "5.6.0", + "resolved": "https://registry.npmjs.org/dns-packet/-/dns-packet-5.6.0.tgz", + "integrity": "sha512-rza3UH1LwdHh9qyPXp8lkwpjSNk/AMD3dPytUoRoqnypDUhY0xvbdmVhWOfxO68frEfV9BU8V12Ez7ZsHGZpCQ==", + "dependencies": { + "@leichtgewicht/ip-codec": "^2.0.1" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/doctrine": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", + "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", + "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/dom-accessibility-api": { + "version": "0.5.16", + "resolved": "https://registry.npmjs.org/dom-accessibility-api/-/dom-accessibility-api-0.5.16.tgz", + "integrity": "sha512-X7BJ2yElsnOJ30pZF4uIIDfBEVgF4XEBxL9Bxhy6dnrm5hkzqmsWHGTiHqRiITNhMyFLyAiWndIJP7Z1NTteDg==" + }, + "node_modules/dom-converter": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/dom-converter/-/dom-converter-0.2.0.tgz", + "integrity": "sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==", + "dependencies": { + "utila": "~0.4" + } + }, + "node_modules/dom-serializer": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz", + "integrity": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==", + "dependencies": { + "domelementtype": "^2.0.1", + "domhandler": "^4.2.0", + "entities": "^2.0.0" + }, + "funding": { + "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" + } + }, + "node_modules/domelementtype": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", + "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/fb55" + } + ] + }, + "node_modules/domexception": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/domexception/-/domexception-2.0.1.tgz", + "integrity": "sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg==", + "dependencies": { + "webidl-conversions": "^5.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/domexception/node_modules/webidl-conversions": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-5.0.0.tgz", + "integrity": "sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA==", + "engines": { + "node": ">=8" + } + }, + "node_modules/domhandler": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz", + "integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==", + "dependencies": { + "domelementtype": "^2.2.0" + }, + "engines": { + "node": ">= 4" + }, + "funding": { + "url": "https://github.com/fb55/domhandler?sponsor=1" + } + }, + "node_modules/domutils": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz", + "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==", + "dependencies": { + "dom-serializer": "^1.0.1", + "domelementtype": "^2.2.0", + "domhandler": "^4.2.0" + }, + "funding": { + "url": "https://github.com/fb55/domutils?sponsor=1" + } + }, + "node_modules/dot-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz", + "integrity": "sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==", + "dependencies": { + "no-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/dotenv": { + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-10.0.0.tgz", + "integrity": "sha512-rlBi9d8jpv9Sf1klPjNfFAuWDjKLwTIJJ/VxtoTwIR6hnZxcEOQCZg2oIL3MWBYw5GpUDKOEnND7LXTbIpQ03Q==", + "engines": { + "node": ">=10" + } + }, + "node_modules/dotenv-expand": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/dotenv-expand/-/dotenv-expand-5.1.0.tgz", + "integrity": "sha512-YXQl1DSa4/PQyRfgrv6aoNjhasp/p4qs9FjJ4q4cQk+8m4r6k4ZSiEyytKG8f8W9gi8WsQtIObNmKd+tMzNTmA==" + }, + "node_modules/duplexer": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz", + "integrity": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==" + }, + "node_modules/ee-first": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", + "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" + }, + "node_modules/ejs": { + "version": "3.1.9", + "resolved": "https://registry.npmjs.org/ejs/-/ejs-3.1.9.tgz", + "integrity": "sha512-rC+QVNMJWv+MtPgkt0y+0rVEIdbtxVADApW9JXrUVlzHetgcyczP/E7DJmWJ4fJCZF2cPcBk0laWO9ZHMG3DmQ==", + "dependencies": { + "jake": "^10.8.5" + }, + "bin": { + "ejs": "bin/cli.js" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/electron-to-chromium": { + "version": "1.4.427", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.427.tgz", + "integrity": "sha512-HK3r9l+Jm8dYAm1ctXEWIC+hV60zfcjS9UA5BDlYvnI5S7PU/yytjpvSrTNrSSRRkuu3tDyZhdkwIczh+0DWaw==" + }, + "node_modules/emittery": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.8.1.tgz", + "integrity": "sha512-uDfvUjVrfGJJhymx/kz6prltenw1u7WrCg1oa94zYY8xxVpLLUu045LAT0dhDZdXG58/EpPL/5kA180fQ/qudg==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/emittery?sponsor=1" + } + }, + "node_modules/emoji-regex": { + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", + "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==" + }, + "node_modules/emojis-list": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", + "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==", + "engines": { + "node": ">= 4" + } + }, + "node_modules/encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", + "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/enhanced-resolve": { + "version": "5.14.1", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.14.1.tgz", + "integrity": "sha512-Vklwq2vDKtl0y/vtwjSesgJ5MYS7Etuk5txS8VdKL4AOS1aUlD96zqIfsOSLQsdv3xgMRbtkWM8eG9XDfKUPow==", + "dependencies": { + "graceful-fs": "^4.2.4", + "tapable": "^2.2.0" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/entities": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", + "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "node_modules/error-ex": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", + "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", + "dependencies": { + "is-arrayish": "^0.2.1" + } + }, + "node_modules/error-stack-parser": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/error-stack-parser/-/error-stack-parser-2.1.4.tgz", + "integrity": "sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==", + "dependencies": { + "stackframe": "^1.3.4" + } + }, + "node_modules/es-abstract": { + "version": "1.21.2", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.21.2.tgz", + "integrity": "sha512-y/B5POM2iBnIxCiernH1G7rC9qQoM77lLIMQLuob0zhp8C56Po81+2Nj0WFKnd0pNReDTnkYryc+zhOzpEIROg==", + "dependencies": { + "array-buffer-byte-length": "^1.0.0", + "available-typed-arrays": "^1.0.5", + "call-bind": "^1.0.2", + "es-set-tostringtag": "^2.0.1", + "es-to-primitive": "^1.2.1", + "function.prototype.name": "^1.1.5", + "get-intrinsic": "^1.2.0", + "get-symbol-description": "^1.0.0", + "globalthis": "^1.0.3", + "gopd": "^1.0.1", + "has": "^1.0.3", + "has-property-descriptors": "^1.0.0", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3", + "internal-slot": "^1.0.5", + "is-array-buffer": "^3.0.2", + "is-callable": "^1.2.7", + "is-negative-zero": "^2.0.2", + "is-regex": "^1.1.4", + "is-shared-array-buffer": "^1.0.2", + "is-string": "^1.0.7", + "is-typed-array": "^1.1.10", + "is-weakref": "^1.0.2", + "object-inspect": "^1.12.3", + "object-keys": "^1.1.1", + "object.assign": "^4.1.4", + "regexp.prototype.flags": "^1.4.3", + "safe-regex-test": "^1.0.0", + "string.prototype.trim": "^1.2.7", + "string.prototype.trimend": "^1.0.6", + "string.prototype.trimstart": "^1.0.6", + "typed-array-length": "^1.0.4", + "unbox-primitive": "^1.0.2", + "which-typed-array": "^1.1.9" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/es-array-method-boxes-properly": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/es-array-method-boxes-properly/-/es-array-method-boxes-properly-1.0.0.tgz", + "integrity": "sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA==" + }, + "node_modules/es-get-iterator": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/es-get-iterator/-/es-get-iterator-1.1.3.tgz", + "integrity": "sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==", + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.3", + "has-symbols": "^1.0.3", + "is-arguments": "^1.1.1", + "is-map": "^2.0.2", + "is-set": "^2.0.2", + "is-string": "^1.0.7", + "isarray": "^2.0.5", + "stop-iteration-iterator": "^1.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/es-module-lexer": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.2.1.tgz", + "integrity": "sha512-9978wrXM50Y4rTMmW5kXIC09ZdXQZqkE4mxhwkd8VbzsGkXGPgV4zWuqQJgCEzYngdo2dYDa0l8xhX4fkSwJSg==" + }, + "node_modules/es-set-tostringtag": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.1.tgz", + "integrity": "sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==", + "dependencies": { + "get-intrinsic": "^1.1.3", + "has": "^1.0.3", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-shim-unscopables": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.0.tgz", + "integrity": "sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==", + "dependencies": { + "has": "^1.0.3" + } + }, + "node_modules/es-to-primitive": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", + "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", + "dependencies": { + "is-callable": "^1.1.4", + "is-date-object": "^1.0.1", + "is-symbol": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/escalade": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", + "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", + "engines": { + "node": ">=6" + } + }, + "node_modules/escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", + "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==" + }, + "node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/escodegen": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-2.0.0.tgz", + "integrity": "sha512-mmHKys/C8BFUGI+MAWNcSYoORYLMdPzjrknd2Vc+bUsjN5bXcr8EhrNB+UTqfL1y3I9c4fw2ihgtMPQLBRiQxw==", + "dependencies": { + "esprima": "^4.0.1", + "estraverse": "^5.2.0", + "esutils": "^2.0.2", + "optionator": "^0.8.1" + }, + "bin": { + "escodegen": "bin/escodegen.js", + "esgenerate": "bin/esgenerate.js" + }, + "engines": { + "node": ">=6.0" + }, + "optionalDependencies": { + "source-map": "~0.6.1" + } + }, + "node_modules/escodegen/node_modules/levn": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz", + "integrity": "sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA==", + "dependencies": { + "prelude-ls": "~1.1.2", + "type-check": "~0.3.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/escodegen/node_modules/optionator": { + "version": "0.8.3", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.3.tgz", + "integrity": "sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==", + "dependencies": { + "deep-is": "~0.1.3", + "fast-levenshtein": "~2.0.6", + "levn": "~0.3.0", + "prelude-ls": "~1.1.2", + "type-check": "~0.3.2", + "word-wrap": "~1.2.3" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/escodegen/node_modules/prelude-ls": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz", + "integrity": "sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w==", + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/escodegen/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/escodegen/node_modules/type-check": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz", + "integrity": "sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg==", + "dependencies": { + "prelude-ls": "~1.1.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/eslint": { + "version": "8.42.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.42.0.tgz", + "integrity": "sha512-ulg9Ms6E1WPf67PHaEY4/6E2tEn5/f7FXGzr3t9cBMugOmf1INYvuUwwh1aXQN4MfJ6a5K2iNwP3w4AColvI9A==", + "dependencies": { + "@eslint-community/eslint-utils": "^4.2.0", + "@eslint-community/regexpp": "^4.4.0", + "@eslint/eslintrc": "^2.0.3", + "@eslint/js": "8.42.0", + "@humanwhocodes/config-array": "^0.11.10", + "@humanwhocodes/module-importer": "^1.0.1", + "@nodelib/fs.walk": "^1.2.8", + "ajv": "^6.10.0", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.2", + "debug": "^4.3.2", + "doctrine": "^3.0.0", + "escape-string-regexp": "^4.0.0", + "eslint-scope": "^7.2.0", + "eslint-visitor-keys": "^3.4.1", + "espree": "^9.5.2", + "esquery": "^1.4.2", + "esutils": "^2.0.2", + "fast-deep-equal": "^3.1.3", + "file-entry-cache": "^6.0.1", + "find-up": "^5.0.0", + "glob-parent": "^6.0.2", + "globals": "^13.19.0", + "graphemer": "^1.4.0", + "ignore": "^5.2.0", + "import-fresh": "^3.0.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "is-path-inside": "^3.0.3", + "js-yaml": "^4.1.0", + "json-stable-stringify-without-jsonify": "^1.0.1", + "levn": "^0.4.1", + "lodash.merge": "^4.6.2", + "minimatch": "^3.1.2", + "natural-compare": "^1.4.0", + "optionator": "^0.9.1", + "strip-ansi": "^6.0.1", + "strip-json-comments": "^3.1.0", + "text-table": "^0.2.0" + }, + "bin": { + "eslint": "bin/eslint.js" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint-config-react-app": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/eslint-config-react-app/-/eslint-config-react-app-7.0.1.tgz", + "integrity": "sha512-K6rNzvkIeHaTd8m/QEh1Zko0KI7BACWkkneSs6s9cKZC/J27X3eZR6Upt1jkmZ/4FK+XUOPPxMEN7+lbUXfSlA==", + "dependencies": { + "@babel/core": "^7.16.0", + "@babel/eslint-parser": "^7.16.3", + "@rushstack/eslint-patch": "^1.1.0", + "@typescript-eslint/eslint-plugin": "^5.5.0", + "@typescript-eslint/parser": "^5.5.0", + "babel-preset-react-app": "^10.0.1", + "confusing-browser-globals": "^1.0.11", + "eslint-plugin-flowtype": "^8.0.3", + "eslint-plugin-import": "^2.25.3", + "eslint-plugin-jest": "^25.3.0", + "eslint-plugin-jsx-a11y": "^6.5.1", + "eslint-plugin-react": "^7.27.1", + "eslint-plugin-react-hooks": "^4.3.0", + "eslint-plugin-testing-library": "^5.0.1" + }, + "engines": { + "node": ">=14.0.0" + }, + "peerDependencies": { + "eslint": "^8.0.0" + } + }, + "node_modules/eslint-import-resolver-node": { + "version": "0.3.7", + "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.7.tgz", + "integrity": "sha512-gozW2blMLJCeFpBwugLTGyvVjNoeo1knonXAcatC6bjPBZitotxdWf7Gimr25N4c0AAOo4eOUfaG82IJPDpqCA==", + "dependencies": { + "debug": "^3.2.7", + "is-core-module": "^2.11.0", + "resolve": "^1.22.1" + } + }, + "node_modules/eslint-import-resolver-node/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/eslint-module-utils": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.8.0.tgz", + "integrity": "sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==", + "dependencies": { + "debug": "^3.2.7" + }, + "engines": { + "node": ">=4" + }, + "peerDependenciesMeta": { + "eslint": { + "optional": true + } + } + }, + "node_modules/eslint-module-utils/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/eslint-plugin-flowtype": { + "version": "8.0.3", + "resolved": "https://registry.npmjs.org/eslint-plugin-flowtype/-/eslint-plugin-flowtype-8.0.3.tgz", + "integrity": "sha512-dX8l6qUL6O+fYPtpNRideCFSpmWOUVx5QcaGLVqe/vlDiBSe4vYljDWDETwnyFzpl7By/WVIu6rcrniCgH9BqQ==", + "dependencies": { + "lodash": "^4.17.21", + "string-natural-compare": "^3.0.1" + }, + "engines": { + "node": ">=12.0.0" + }, + "peerDependencies": { + "@babel/plugin-syntax-flow": "^7.14.5", + "@babel/plugin-transform-react-jsx": "^7.14.9", + "eslint": "^8.1.0" + } + }, + "node_modules/eslint-plugin-import": { + "version": "2.27.5", + "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.27.5.tgz", + "integrity": "sha512-LmEt3GVofgiGuiE+ORpnvP+kAm3h6MLZJ4Q5HCyHADofsb4VzXFsRiWj3c0OFiV+3DWFh0qg3v9gcPlfc3zRow==", + "dependencies": { + "array-includes": "^3.1.6", + "array.prototype.flat": "^1.3.1", + "array.prototype.flatmap": "^1.3.1", + "debug": "^3.2.7", + "doctrine": "^2.1.0", + "eslint-import-resolver-node": "^0.3.7", + "eslint-module-utils": "^2.7.4", + "has": "^1.0.3", + "is-core-module": "^2.11.0", + "is-glob": "^4.0.3", + "minimatch": "^3.1.2", + "object.values": "^1.1.6", + "resolve": "^1.22.1", + "semver": "^6.3.0", + "tsconfig-paths": "^3.14.1" + }, + "engines": { + "node": ">=4" + }, + "peerDependencies": { + "eslint": "^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8" + } + }, + "node_modules/eslint-plugin-import/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/eslint-plugin-import/node_modules/doctrine": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", + "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", + "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/eslint-plugin-import/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/eslint-plugin-jest": { + "version": "25.7.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-jest/-/eslint-plugin-jest-25.7.0.tgz", + "integrity": "sha512-PWLUEXeeF7C9QGKqvdSbzLOiLTx+bno7/HC9eefePfEb257QFHg7ye3dh80AZVkaa/RQsBB1Q/ORQvg2X7F0NQ==", + "dependencies": { + "@typescript-eslint/experimental-utils": "^5.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + }, + "peerDependencies": { + "@typescript-eslint/eslint-plugin": "^4.0.0 || ^5.0.0", + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + }, + "peerDependenciesMeta": { + "@typescript-eslint/eslint-plugin": { + "optional": true + }, + "jest": { + "optional": true + } + } + }, + "node_modules/eslint-plugin-jsx-a11y": { + "version": "6.7.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.7.1.tgz", + "integrity": "sha512-63Bog4iIethyo8smBklORknVjB0T2dwB8Mr/hIC+fBS0uyHdYYpzM/Ed+YC8VxTjlXHEWFOdmgwcDn1U2L9VCA==", + "dependencies": { + "@babel/runtime": "^7.20.7", + "aria-query": "^5.1.3", + "array-includes": "^3.1.6", + "array.prototype.flatmap": "^1.3.1", + "ast-types-flow": "^0.0.7", + "axe-core": "^4.6.2", + "axobject-query": "^3.1.1", + "damerau-levenshtein": "^1.0.8", + "emoji-regex": "^9.2.2", + "has": "^1.0.3", + "jsx-ast-utils": "^3.3.3", + "language-tags": "=1.0.5", + "minimatch": "^3.1.2", + "object.entries": "^1.1.6", + "object.fromentries": "^2.0.6", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=4.0" + }, + "peerDependencies": { + "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8" + } + }, + "node_modules/eslint-plugin-jsx-a11y/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/eslint-plugin-react": { + "version": "7.32.2", + "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.32.2.tgz", + "integrity": "sha512-t2fBMa+XzonrrNkyVirzKlvn5RXzzPwRHtMvLAtVZrt8oxgnTQaYbU6SXTOO1mwQgp1y5+toMSKInnzGr0Knqg==", + "dependencies": { + "array-includes": "^3.1.6", + "array.prototype.flatmap": "^1.3.1", + "array.prototype.tosorted": "^1.1.1", + "doctrine": "^2.1.0", + "estraverse": "^5.3.0", + "jsx-ast-utils": "^2.4.1 || ^3.0.0", + "minimatch": "^3.1.2", + "object.entries": "^1.1.6", + "object.fromentries": "^2.0.6", + "object.hasown": "^1.1.2", + "object.values": "^1.1.6", + "prop-types": "^15.8.1", + "resolve": "^2.0.0-next.4", + "semver": "^6.3.0", + "string.prototype.matchall": "^4.0.8" + }, + "engines": { + "node": ">=4" + }, + "peerDependencies": { + "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8" + } + }, + "node_modules/eslint-plugin-react-hooks": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.0.tgz", + "integrity": "sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==", + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0" + } + }, + "node_modules/eslint-plugin-react/node_modules/doctrine": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", + "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", + "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/eslint-plugin-react/node_modules/resolve": { + "version": "2.0.0-next.4", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.4.tgz", + "integrity": "sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==", + "dependencies": { + "is-core-module": "^2.9.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/eslint-plugin-react/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/eslint-plugin-testing-library": { + "version": "5.11.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-testing-library/-/eslint-plugin-testing-library-5.11.0.tgz", + "integrity": "sha512-ELY7Gefo+61OfXKlQeXNIDVVLPcvKTeiQOoMZG9TeuWa7Ln4dUNRv8JdRWBQI9Mbb427XGlVB1aa1QPZxBJM8Q==", + "dependencies": { + "@typescript-eslint/utils": "^5.58.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0", + "npm": ">=6" + }, + "peerDependencies": { + "eslint": "^7.5.0 || ^8.0.0" + } + }, + "node_modules/eslint-scope": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.0.tgz", + "integrity": "sha512-DYj5deGlHBfMt15J7rdtyKNq/Nqlv5KfU4iodrQ019XESsRnwXH9KAE0y3cwtUHDo2ob7CypAnCqefh6vioWRw==", + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^5.2.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint-visitor-keys": { + "version": "3.4.1", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.1.tgz", + "integrity": "sha512-pZnmmLwYzf+kWaM/Qgrvpen51upAktaaiI01nsJD/Yr3lMOdNtq0cxkrrg16w64VtisN6okbs7Q8AfGqj4c9fA==", + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint-webpack-plugin": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/eslint-webpack-plugin/-/eslint-webpack-plugin-3.2.0.tgz", + "integrity": "sha512-avrKcGncpPbPSUHX6B3stNGzkKFto3eL+DKM4+VyMrVnhPc3vRczVlCq3uhuFOdRvDHTVXuzwk1ZKUrqDQHQ9w==", + "dependencies": { + "@types/eslint": "^7.29.0 || ^8.4.1", + "jest-worker": "^28.0.2", + "micromatch": "^4.0.5", + "normalize-path": "^3.0.0", + "schema-utils": "^4.0.0" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "eslint": "^7.0.0 || ^8.0.0", + "webpack": "^5.0.0" + } + }, + "node_modules/eslint-webpack-plugin/node_modules/ajv": { + "version": "8.12.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", + "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/eslint-webpack-plugin/node_modules/ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "dependencies": { + "fast-deep-equal": "^3.1.3" + }, + "peerDependencies": { + "ajv": "^8.8.2" + } + }, + "node_modules/eslint-webpack-plugin/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/eslint-webpack-plugin/node_modules/jest-worker": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-28.1.3.tgz", + "integrity": "sha512-CqRA220YV/6jCo8VWvAt1KKx6eek1VIHMPeLEbpcfSfkEeWyBNppynM/o6q+Wmw+sOhos2ml34wZbSX3G13//g==", + "dependencies": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/eslint-webpack-plugin/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" + }, + "node_modules/eslint-webpack-plugin/node_modules/schema-utils": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.1.0.tgz", + "integrity": "sha512-Jw+GZVbP5IggB2WAn6UHI02LBwGmsIeYN/lNbSMZyDziQ7jmtAUrqKqDja+W89YHVs+KL/3IkIMltAklqB1vAw==", + "dependencies": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.9.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.1.0" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/eslint-webpack-plugin/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } + }, + "node_modules/eslint/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/eslint/node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==" + }, + "node_modules/eslint/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/eslint/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/eslint/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/eslint/node_modules/escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint/node_modules/globals": { + "version": "13.20.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.20.0.tgz", + "integrity": "sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==", + "dependencies": { + "type-fest": "^0.20.2" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/eslint/node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/eslint/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/eslint/node_modules/type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/espree": { + "version": "9.5.2", + "resolved": "https://registry.npmjs.org/espree/-/espree-9.5.2.tgz", + "integrity": "sha512-7OASN1Wma5fum5SrNhFMAMJxOUAbhyfQ8dQ//PJaJbNw0URTPWqIghHWt1MmAANKhHZIYOHruW4Kw4ruUWOdGw==", + "dependencies": { + "acorn": "^8.8.0", + "acorn-jsx": "^5.3.2", + "eslint-visitor-keys": "^3.4.1" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/esprima": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", + "bin": { + "esparse": "bin/esparse.js", + "esvalidate": "bin/esvalidate.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/esquery": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz", + "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==", + "dependencies": { + "estraverse": "^5.1.0" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "dependencies": { + "estraverse": "^5.2.0" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/estree-walker": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-1.0.1.tgz", + "integrity": "sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg==" + }, + "node_modules/esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/etag": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", + "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/eventemitter3": { + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz", + "integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==" + }, + "node_modules/events": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", + "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", + "engines": { + "node": ">=0.8.x" + } + }, + "node_modules/execa": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", + "dependencies": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" + } + }, + "node_modules/exit": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz", + "integrity": "sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==", + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/expect": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/expect/-/expect-27.5.1.tgz", + "integrity": "sha512-E1q5hSUG2AmYQwQJ041nvgpkODHQvB+RKlB4IYdru6uJsyFTRyZAP463M+1lINorwbqAmUggi6+WwkD8lCS/Dw==", + "dependencies": { + "@jest/types": "^27.5.1", + "jest-get-type": "^27.5.1", + "jest-matcher-utils": "^27.5.1", + "jest-message-util": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/express": { + "version": "4.18.2", + "resolved": "https://registry.npmjs.org/express/-/express-4.18.2.tgz", + "integrity": "sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ==", + "dependencies": { + "accepts": "~1.3.8", + "array-flatten": "1.1.1", + "body-parser": "1.20.1", + "content-disposition": "0.5.4", + "content-type": "~1.0.4", + "cookie": "0.5.0", + "cookie-signature": "1.0.6", + "debug": "2.6.9", + "depd": "2.0.0", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "finalhandler": "1.2.0", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "merge-descriptors": "1.0.1", + "methods": "~1.1.2", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "path-to-regexp": "0.1.7", + "proxy-addr": "~2.0.7", + "qs": "6.11.0", + "range-parser": "~1.2.1", + "safe-buffer": "5.2.1", + "send": "0.18.0", + "serve-static": "1.15.0", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "type-is": "~1.6.18", + "utils-merge": "1.0.1", + "vary": "~1.1.2" + }, + "engines": { + "node": ">= 0.10.0" + } + }, + "node_modules/express/node_modules/array-flatten": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", + "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==" + }, + "node_modules/express/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/express/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + }, + "node_modules/fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" + }, + "node_modules/fast-glob": { + "version": "3.2.12", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.12.tgz", + "integrity": "sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==", + "dependencies": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" + }, + "engines": { + "node": ">=8.6.0" + } + }, + "node_modules/fast-glob/node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" + }, + "node_modules/fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==" + }, + "node_modules/fastq": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz", + "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==", + "dependencies": { + "reusify": "^1.0.4" + } + }, + "node_modules/faye-websocket": { + "version": "0.11.4", + "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.4.tgz", + "integrity": "sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==", + "dependencies": { + "websocket-driver": ">=0.5.1" + }, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/fb-watchman": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.2.tgz", + "integrity": "sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==", + "dependencies": { + "bser": "2.1.1" + } + }, + "node_modules/file-entry-cache": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", + "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", + "dependencies": { + "flat-cache": "^3.0.4" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } + }, + "node_modules/file-loader": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/file-loader/-/file-loader-6.2.0.tgz", + "integrity": "sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw==", + "dependencies": { + "loader-utils": "^2.0.0", + "schema-utils": "^3.0.0" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.0.0 || ^5.0.0" + } + }, + "node_modules/filelist": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/filelist/-/filelist-1.0.4.tgz", + "integrity": "sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==", + "dependencies": { + "minimatch": "^5.0.1" + } + }, + "node_modules/filelist/node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/filelist/node_modules/minimatch": { + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", + "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/filesize": { + "version": "8.0.7", + "resolved": "https://registry.npmjs.org/filesize/-/filesize-8.0.7.tgz", + "integrity": "sha512-pjmC+bkIF8XI7fWaH8KxHcZL3DPybs1roSKP4rKDvy20tAWwIObE4+JIseG2byfGKhud5ZnM4YSGKBz7Sh0ndQ==", + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/finalhandler": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz", + "integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==", + "dependencies": { + "debug": "2.6.9", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "statuses": "2.0.1", + "unpipe": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/finalhandler/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/finalhandler/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + }, + "node_modules/find-cache-dir": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz", + "integrity": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==", + "dependencies": { + "commondir": "^1.0.1", + "make-dir": "^3.0.2", + "pkg-dir": "^4.1.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/avajs/find-cache-dir?sponsor=1" + } + }, + "node_modules/find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "dependencies": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/flat-cache": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz", + "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==", + "dependencies": { + "flatted": "^3.1.0", + "rimraf": "^3.0.2" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } + }, + "node_modules/flatted": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.7.tgz", + "integrity": "sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==" + }, + "node_modules/follow-redirects": { + "version": "1.15.2", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.2.tgz", + "integrity": "sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==", + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/RubenVerborgh" + } + ], + "engines": { + "node": ">=4.0" + }, + "peerDependenciesMeta": { + "debug": { + "optional": true + } + } + }, + "node_modules/for-each": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", + "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", + "dependencies": { + "is-callable": "^1.1.3" + } + }, + "node_modules/fork-ts-checker-webpack-plugin": { + "version": "6.5.3", + "resolved": "https://registry.npmjs.org/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-6.5.3.tgz", + "integrity": "sha512-SbH/l9ikmMWycd5puHJKTkZJKddF4iRLyW3DeZ08HTI7NGyLS38MXd/KGgeWumQO7YNQbW2u/NtPT2YowbPaGQ==", + "dependencies": { + "@babel/code-frame": "^7.8.3", + "@types/json-schema": "^7.0.5", + "chalk": "^4.1.0", + "chokidar": "^3.4.2", + "cosmiconfig": "^6.0.0", + "deepmerge": "^4.2.2", + "fs-extra": "^9.0.0", + "glob": "^7.1.6", + "memfs": "^3.1.2", + "minimatch": "^3.0.4", + "schema-utils": "2.7.0", + "semver": "^7.3.2", + "tapable": "^1.0.0" + }, + "engines": { + "node": ">=10", + "yarn": ">=1.0.0" + }, + "peerDependencies": { + "eslint": ">= 6", + "typescript": ">= 2.7", + "vue-template-compiler": "*", + "webpack": ">= 4" + }, + "peerDependenciesMeta": { + "eslint": { + "optional": true + }, + "vue-template-compiler": { + "optional": true + } + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/cosmiconfig": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-6.0.0.tgz", + "integrity": "sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==", + "dependencies": { + "@types/parse-json": "^4.0.0", + "import-fresh": "^3.1.0", + "parse-json": "^5.0.0", + "path-type": "^4.0.0", + "yaml": "^1.7.2" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/fs-extra": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", + "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", + "dependencies": { + "at-least-node": "^1.0.0", + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/schema-utils": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.0.tgz", + "integrity": "sha512-0ilKFI6QQF5nxDZLFn2dMjvc4hjg/Wkg7rHd3jK6/A4a1Hl9VFdQWvgB1UMGoU94pad1P/8N7fMcEnLnSiju8A==", + "dependencies": { + "@types/json-schema": "^7.0.4", + "ajv": "^6.12.2", + "ajv-keywords": "^3.4.1" + }, + "engines": { + "node": ">= 8.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/tapable": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-1.1.3.tgz", + "integrity": "sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==", + "engines": { + "node": ">=6" + } + }, + "node_modules/form-data": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-3.0.1.tgz", + "integrity": "sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==", + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/forwarded": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", + "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/fraction.js": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.2.0.tgz", + "integrity": "sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==", + "engines": { + "node": "*" + }, + "funding": { + "type": "patreon", + "url": "https://www.patreon.com/infusion" + } + }, + "node_modules/fresh": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", + "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/fs-extra": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", + "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/fs-monkey": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/fs-monkey/-/fs-monkey-1.0.4.tgz", + "integrity": "sha512-INM/fWAxMICjttnD0DX1rBvinKskj5G1w+oy/pnm9u/tSlnBrzFonJMcalKJ30P8RRsPzKcCG7Q8l0jx5Fh9YQ==" + }, + "node_modules/fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==" + }, + "node_modules/fsevents": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", + "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" + }, + "node_modules/function.prototype.name": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.5.tgz", + "integrity": "sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.0", + "functions-have-names": "^1.2.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/functions-have-names": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", + "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/gensync": { + "version": "1.0.0-beta.2", + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "engines": { + "node": "6.* || 8.* || >= 10.*" + } + }, + "node_modules/get-intrinsic": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.1.tgz", + "integrity": "sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw==", + "dependencies": { + "function-bind": "^1.1.1", + "has": "^1.0.3", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-own-enumerable-property-symbols": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/get-own-enumerable-property-symbols/-/get-own-enumerable-property-symbols-3.0.2.tgz", + "integrity": "sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g==" + }, + "node_modules/get-package-type": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz", + "integrity": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==", + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/get-symbol-description": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz", + "integrity": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==", + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "dependencies": { + "is-glob": "^4.0.3" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/glob-to-regexp": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", + "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==" + }, + "node_modules/global-modules": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-2.0.0.tgz", + "integrity": "sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==", + "dependencies": { + "global-prefix": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/global-prefix": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-3.0.0.tgz", + "integrity": "sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==", + "dependencies": { + "ini": "^1.3.5", + "kind-of": "^6.0.2", + "which": "^1.3.1" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/global-prefix/node_modules/which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "which": "bin/which" + } + }, + "node_modules/globals": { + "version": "11.12.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", + "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", + "engines": { + "node": ">=4" + } + }, + "node_modules/globalthis": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.3.tgz", + "integrity": "sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==", + "dependencies": { + "define-properties": "^1.1.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/globby": { + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", + "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", + "dependencies": { + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.9", + "ignore": "^5.2.0", + "merge2": "^1.4.1", + "slash": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/gopd": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", + "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", + "dependencies": { + "get-intrinsic": "^1.1.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==" + }, + "node_modules/grapheme-splitter": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz", + "integrity": "sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==" + }, + "node_modules/graphemer": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", + "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==" + }, + "node_modules/gzip-size": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/gzip-size/-/gzip-size-6.0.0.tgz", + "integrity": "sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q==", + "dependencies": { + "duplexer": "^0.1.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/handle-thing": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/handle-thing/-/handle-thing-2.0.1.tgz", + "integrity": "sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==" + }, + "node_modules/harmony-reflect": { + "version": "1.6.2", + "resolved": "https://registry.npmjs.org/harmony-reflect/-/harmony-reflect-1.6.2.tgz", + "integrity": "sha512-HIp/n38R9kQjDEziXyDTuW3vvoxxyxjxFzXLrBr18uB47GnSt+G9D29fqrpM5ZkspMcPICud3XsBJQ4Y2URg8g==" + }, + "node_modules/has": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "dependencies": { + "function-bind": "^1.1.1" + }, + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/has-bigints": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", + "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "engines": { + "node": ">=4" + } + }, + "node_modules/has-property-descriptors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz", + "integrity": "sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==", + "dependencies": { + "get-intrinsic": "^1.1.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz", + "integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-symbols": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-tostringtag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", + "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", + "dependencies": { + "has-symbols": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/he": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", + "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==", + "bin": { + "he": "bin/he" + } + }, + "node_modules/hoopy": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/hoopy/-/hoopy-0.1.4.tgz", + "integrity": "sha512-HRcs+2mr52W0K+x8RzcLzuPPmVIKMSv97RGHy0Ea9y/mpcaK+xTrjICA04KAHi4GRzxliNqNJEFYWHghy3rSfQ==", + "engines": { + "node": ">= 6.0.0" + } + }, + "node_modules/hpack.js": { + "version": "2.1.6", + "resolved": "https://registry.npmjs.org/hpack.js/-/hpack.js-2.1.6.tgz", + "integrity": "sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==", + "dependencies": { + "inherits": "^2.0.1", + "obuf": "^1.0.0", + "readable-stream": "^2.0.1", + "wbuf": "^1.1.0" + } + }, + "node_modules/hpack.js/node_modules/isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==" + }, + "node_modules/hpack.js/node_modules/readable-stream": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", + "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "node_modules/hpack.js/node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" + }, + "node_modules/hpack.js/node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/html-encoding-sniffer": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-2.0.1.tgz", + "integrity": "sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ==", + "dependencies": { + "whatwg-encoding": "^1.0.5" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/html-entities": { + "version": "2.3.5", + "resolved": "https://registry.npmjs.org/html-entities/-/html-entities-2.3.5.tgz", + "integrity": "sha512-72TJlcMkYsEJASa/3HnX7VT59htM7iSHbH59NSZbtc+22Ap0Txnlx91sfeB+/A7wNZg7UxtZdhAW4y+/jimrdg==" + }, + "node_modules/html-escaper": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", + "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==" + }, + "node_modules/html-minifier-terser": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz", + "integrity": "sha512-YXxSlJBZTP7RS3tWnQw74ooKa6L9b9i9QYXY21eUEvhZ3u9XLfv6OnFsQq6RxkhHygsaUMvYsZRV5rU/OVNZxw==", + "dependencies": { + "camel-case": "^4.1.2", + "clean-css": "^5.2.2", + "commander": "^8.3.0", + "he": "^1.2.0", + "param-case": "^3.0.4", + "relateurl": "^0.2.7", + "terser": "^5.10.0" + }, + "bin": { + "html-minifier-terser": "cli.js" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/html-webpack-plugin": { + "version": "5.5.2", + "resolved": "https://registry.npmjs.org/html-webpack-plugin/-/html-webpack-plugin-5.5.2.tgz", + "integrity": "sha512-2KsxTJQmtqsT1JGaZJmoMW25wpC0HM9gpW3jH/UMH62To0UKlzRUbJ/FtQNhZ0gd4gWMoetEYkyG8FMNqEO66Q==", + "dependencies": { + "@types/html-minifier-terser": "^6.0.0", + "html-minifier-terser": "^6.0.2", + "lodash": "^4.17.21", + "pretty-error": "^4.0.0", + "tapable": "^2.0.0" + }, + "engines": { + "node": ">=10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/html-webpack-plugin" + }, + "peerDependencies": { + "webpack": "^5.20.0" + } + }, + "node_modules/htmlparser2": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-6.1.0.tgz", + "integrity": "sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==", + "funding": [ + "https://github.com/fb55/htmlparser2?sponsor=1", + { + "type": "github", + "url": "https://github.com/sponsors/fb55" + } + ], + "dependencies": { + "domelementtype": "^2.0.1", + "domhandler": "^4.0.0", + "domutils": "^2.5.2", + "entities": "^2.0.0" + } + }, + "node_modules/http-deceiver": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/http-deceiver/-/http-deceiver-1.2.7.tgz", + "integrity": "sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw==" + }, + "node_modules/http-errors": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", + "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", + "dependencies": { + "depd": "2.0.0", + "inherits": "2.0.4", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "toidentifier": "1.0.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/http-parser-js": { + "version": "0.5.8", + "resolved": "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.5.8.tgz", + "integrity": "sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q==" + }, + "node_modules/http-proxy": { + "version": "1.18.1", + "resolved": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.18.1.tgz", + "integrity": "sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==", + "dependencies": { + "eventemitter3": "^4.0.0", + "follow-redirects": "^1.0.0", + "requires-port": "^1.0.0" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/http-proxy-agent": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz", + "integrity": "sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==", + "dependencies": { + "@tootallnate/once": "1", + "agent-base": "6", + "debug": "4" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/http-proxy-middleware": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-2.0.6.tgz", + "integrity": "sha512-ya/UeJ6HVBYxrgYotAZo1KvPWlgB48kUJLDePFeneHsVujFaW5WNj2NgWCAE//B1Dl02BIfYlpNgBy8Kf8Rjmw==", + "dependencies": { + "@types/http-proxy": "^1.17.8", + "http-proxy": "^1.18.1", + "is-glob": "^4.0.1", + "is-plain-obj": "^3.0.0", + "micromatch": "^4.0.2" + }, + "engines": { + "node": ">=12.0.0" + }, + "peerDependencies": { + "@types/express": "^4.17.13" + }, + "peerDependenciesMeta": { + "@types/express": { + "optional": true + } + } + }, + "node_modules/https-proxy-agent": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", + "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==", + "dependencies": { + "agent-base": "6", + "debug": "4" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/human-signals": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", + "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", + "engines": { + "node": ">=10.17.0" + } + }, + "node_modules/iconv-lite": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", + "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/icss-utils": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-5.1.0.tgz", + "integrity": "sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==", + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/idb": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/idb/-/idb-7.1.1.tgz", + "integrity": "sha512-gchesWBzyvGHRO9W8tzUWFDycow5gwjvFKfyV9FF32Y7F50yZMp7mP+T2mJIWFx49zicqyC4uefHM17o6xKIVQ==" + }, + "node_modules/identity-obj-proxy": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/identity-obj-proxy/-/identity-obj-proxy-3.0.0.tgz", + "integrity": "sha512-00n6YnVHKrinT9t0d9+5yZC6UBNJANpYEQvL2LlX6Ab9lnmxzIRcEmTPuyGScvl1+jKuCICX1Z0Ab1pPKKdikA==", + "dependencies": { + "harmony-reflect": "^1.4.6" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/ignore": { + "version": "5.2.4", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz", + "integrity": "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==", + "engines": { + "node": ">= 4" + } + }, + "node_modules/immer": { + "version": "9.0.21", + "resolved": "https://registry.npmjs.org/immer/-/immer-9.0.21.tgz", + "integrity": "sha512-bc4NBHqOqSfRW7POMkHd51LvClaeMXpm8dx0e8oE2GORbq5aRK7Bxl4FyzVLdGtLmvLKL7BTDBG5ACQm4HWjTA==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/immer" + } + }, + "node_modules/import-fresh": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", + "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", + "dependencies": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/import-fresh/node_modules/resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "engines": { + "node": ">=4" + } + }, + "node_modules/import-local": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.1.0.tgz", + "integrity": "sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==", + "dependencies": { + "pkg-dir": "^4.2.0", + "resolve-cwd": "^3.0.0" + }, + "bin": { + "import-local-fixture": "fixtures/cli.js" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", + "engines": { + "node": ">=0.8.19" + } + }, + "node_modules/indent-string": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", + "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", + "engines": { + "node": ">=8" + } + }, + "node_modules/inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "dependencies": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" + }, + "node_modules/ini": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", + "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==" + }, + "node_modules/internal-slot": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.5.tgz", + "integrity": "sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==", + "dependencies": { + "get-intrinsic": "^1.2.0", + "has": "^1.0.3", + "side-channel": "^1.0.4" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/ipaddr.js": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-2.1.0.tgz", + "integrity": "sha512-LlbxQ7xKzfBusov6UMi4MFpEg0m+mAm9xyNGEduwXMEDuf4WfzB/RZwMVYEd7IKGvh4IUkEXYxtAVu9T3OelJQ==", + "engines": { + "node": ">= 10" + } + }, + "node_modules/is-arguments": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz", + "integrity": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==", + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-array-buffer": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.2.tgz", + "integrity": "sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==", + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.2.0", + "is-typed-array": "^1.1.10" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==" + }, + "node_modules/is-bigint": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", + "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", + "dependencies": { + "has-bigints": "^1.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "dependencies": { + "binary-extensions": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-boolean-object": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", + "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-callable": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", + "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-core-module": { + "version": "2.12.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.12.1.tgz", + "integrity": "sha512-Q4ZuBAe2FUsKtyQJoQHlvP8OvBERxO3jEmy1I7hcRXcJBGGHFh/aJBswbXuS9sgrDH2QUO8ilkwNPHvHMd8clg==", + "dependencies": { + "has": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-date-object": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", + "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-docker": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", + "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", + "bin": { + "is-docker": "cli.js" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "engines": { + "node": ">=8" + } + }, + "node_modules/is-generator-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz", + "integrity": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==", + "engines": { + "node": ">=6" + } + }, + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-map": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.2.tgz", + "integrity": "sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-module": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-module/-/is-module-1.0.0.tgz", + "integrity": "sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==" + }, + "node_modules/is-negative-zero": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz", + "integrity": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/is-number-object": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", + "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-obj": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-1.0.1.tgz", + "integrity": "sha512-l4RyHgRqGN4Y3+9JHVrNqO+tN0rV5My76uW5/nuO4K1b6vw5G8d/cmFjP9tRfEsdhZNt0IFdZuK/c2Vr4Nb+Qg==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-path-inside": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", + "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/is-plain-obj": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-3.0.0.tgz", + "integrity": "sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-potential-custom-element-name": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz", + "integrity": "sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==" + }, + "node_modules/is-regex": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", + "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-regexp": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-regexp/-/is-regexp-1.0.0.tgz", + "integrity": "sha512-7zjFAPO4/gwyQAAgRRmqeEeyIICSdmCqa3tsVHMdBzaXXRiqopZL4Cyghg/XulGWrtABTpbnYYzzIRffLkP4oA==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-root": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-root/-/is-root-2.1.0.tgz", + "integrity": "sha512-AGOriNp96vNBd3HtU+RzFEc75FfR5ymiYv8E553I71SCeXBiMsVDUtdio1OEFvrPyLIQ9tVR5RxXIFe5PUFjMg==", + "engines": { + "node": ">=6" + } + }, + "node_modules/is-set": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.2.tgz", + "integrity": "sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-shared-array-buffer": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz", + "integrity": "sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==", + "dependencies": { + "call-bind": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-string": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", + "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-symbol": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", + "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", + "dependencies": { + "has-symbols": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-typed-array": { + "version": "1.1.10", + "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.10.tgz", + "integrity": "sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A==", + "dependencies": { + "available-typed-arrays": "^1.0.5", + "call-bind": "^1.0.2", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-typedarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", + "integrity": "sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==" + }, + "node_modules/is-weakmap": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.1.tgz", + "integrity": "sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-weakref": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", + "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", + "dependencies": { + "call-bind": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-weakset": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.2.tgz", + "integrity": "sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==", + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-wsl": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", + "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", + "dependencies": { + "is-docker": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/isarray": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", + "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==" + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==" + }, + "node_modules/istanbul-lib-coverage": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz", + "integrity": "sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==", + "engines": { + "node": ">=8" + } + }, + "node_modules/istanbul-lib-instrument": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz", + "integrity": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==", + "dependencies": { + "@babel/core": "^7.12.3", + "@babel/parser": "^7.14.7", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-coverage": "^3.2.0", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/istanbul-lib-instrument/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/istanbul-lib-report": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", + "integrity": "sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==", + "dependencies": { + "istanbul-lib-coverage": "^3.0.0", + "make-dir": "^3.0.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/istanbul-lib-report/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/istanbul-lib-report/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/istanbul-lib-source-maps": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz", + "integrity": "sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==", + "dependencies": { + "debug": "^4.1.1", + "istanbul-lib-coverage": "^3.0.0", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/istanbul-lib-source-maps/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/istanbul-reports": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.5.tgz", + "integrity": "sha512-nUsEMa9pBt/NOHqbcbeJEgqIlY/K7rVWUX6Lql2orY5e9roQOthbR3vtY4zzf2orPELg80fnxxk9zUyPlgwD1w==", + "dependencies": { + "html-escaper": "^2.0.0", + "istanbul-lib-report": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jake": { + "version": "10.8.7", + "resolved": "https://registry.npmjs.org/jake/-/jake-10.8.7.tgz", + "integrity": "sha512-ZDi3aP+fG/LchyBzUM804VjddnwfSfsdeYkwt8NcbKRvo4rFkjhs456iLFn3k2ZUWvNe4i48WACDbza8fhq2+w==", + "dependencies": { + "async": "^3.2.3", + "chalk": "^4.0.2", + "filelist": "^1.0.4", + "minimatch": "^3.1.2" + }, + "bin": { + "jake": "bin/cli.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/jake/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jake/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jake/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jake/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/jake/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/jake/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest/-/jest-27.5.1.tgz", + "integrity": "sha512-Yn0mADZB89zTtjkPJEXwrac3LHudkQMR+Paqa8uxJHCBr9agxztUifWCyiYrjhMPBoUVBjyny0I7XH6ozDr7QQ==", + "dependencies": { + "@jest/core": "^27.5.1", + "import-local": "^3.0.2", + "jest-cli": "^27.5.1" + }, + "bin": { + "jest": "bin/jest.js" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "node_modules/jest-changed-files": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-27.5.1.tgz", + "integrity": "sha512-buBLMiByfWGCoMsLLzGUUSpAmIAGnbR2KJoMN10ziLhOLvP4e0SlypHnAel8iqQXTrcbmfEY9sSqae5sgUsTvw==", + "dependencies": { + "@jest/types": "^27.5.1", + "execa": "^5.0.0", + "throat": "^6.0.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-circus": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-27.5.1.tgz", + "integrity": "sha512-D95R7x5UtlMA5iBYsOHFFbMD/GVA4R/Kdq15f7xYWUfWHBto9NYRsOvnSauTgdF+ogCpJ4tyKOXhUifxS65gdw==", + "dependencies": { + "@jest/environment": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "co": "^4.6.0", + "dedent": "^0.7.0", + "expect": "^27.5.1", + "is-generator-fn": "^2.0.0", + "jest-each": "^27.5.1", + "jest-matcher-utils": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-runtime": "^27.5.1", + "jest-snapshot": "^27.5.1", + "jest-util": "^27.5.1", + "pretty-format": "^27.5.1", + "slash": "^3.0.0", + "stack-utils": "^2.0.3", + "throat": "^6.0.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-circus/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-circus/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-circus/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-circus/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/jest-circus/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-circus/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-cli": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-27.5.1.tgz", + "integrity": "sha512-Hc6HOOwYq4/74/c62dEE3r5elx8wjYqxY0r0G/nFrLDPMFRu6RA/u8qINOIkvhxG7mMQ5EJsOGfRpI8L6eFUVw==", + "dependencies": { + "@jest/core": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/types": "^27.5.1", + "chalk": "^4.0.0", + "exit": "^0.1.2", + "graceful-fs": "^4.2.9", + "import-local": "^3.0.2", + "jest-config": "^27.5.1", + "jest-util": "^27.5.1", + "jest-validate": "^27.5.1", + "prompts": "^2.0.1", + "yargs": "^16.2.0" + }, + "bin": { + "jest": "bin/jest.js" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "node_modules/jest-cli/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-cli/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-cli/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-cli/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/jest-cli/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-cli/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-config": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-27.5.1.tgz", + "integrity": "sha512-5sAsjm6tGdsVbW9ahcChPAFCk4IlkQUknH5AvKjuLTSlcO/wCZKyFdn7Rg0EkC+OGgWODEy2hDpWB1PgzH0JNA==", + "dependencies": { + "@babel/core": "^7.8.0", + "@jest/test-sequencer": "^27.5.1", + "@jest/types": "^27.5.1", + "babel-jest": "^27.5.1", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "deepmerge": "^4.2.2", + "glob": "^7.1.1", + "graceful-fs": "^4.2.9", + "jest-circus": "^27.5.1", + "jest-environment-jsdom": "^27.5.1", + "jest-environment-node": "^27.5.1", + "jest-get-type": "^27.5.1", + "jest-jasmine2": "^27.5.1", + "jest-regex-util": "^27.5.1", + "jest-resolve": "^27.5.1", + "jest-runner": "^27.5.1", + "jest-util": "^27.5.1", + "jest-validate": "^27.5.1", + "micromatch": "^4.0.4", + "parse-json": "^5.2.0", + "pretty-format": "^27.5.1", + "slash": "^3.0.0", + "strip-json-comments": "^3.1.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "peerDependencies": { + "ts-node": ">=9.0.0" + }, + "peerDependenciesMeta": { + "ts-node": { + "optional": true + } + } + }, + "node_modules/jest-config/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-config/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-config/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-config/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/jest-config/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-config/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-diff": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-27.5.1.tgz", + "integrity": "sha512-m0NvkX55LDt9T4mctTEgnZk3fmEg3NRYutvMPWM/0iPnkFj2wIeF45O1718cMSOFO1vINkqmxqD8vE37uTEbqw==", + "dependencies": { + "chalk": "^4.0.0", + "diff-sequences": "^27.5.1", + "jest-get-type": "^27.5.1", + "pretty-format": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-diff/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-diff/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-diff/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-diff/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/jest-diff/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-diff/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-docblock": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-27.5.1.tgz", + "integrity": "sha512-rl7hlABeTsRYxKiUfpHrQrG4e2obOiTQWfMEH3PxPjOtdsfLQO4ReWSZaQ7DETm4xu07rl4q/h4zcKXyU0/OzQ==", + "dependencies": { + "detect-newline": "^3.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-each": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-27.5.1.tgz", + "integrity": "sha512-1Ff6p+FbhT/bXQnEouYy00bkNSY7OUpfIcmdl8vZ31A1UUaurOLPA8a8BbJOF2RDUElwJhmeaV7LnagI+5UwNQ==", + "dependencies": { + "@jest/types": "^27.5.1", + "chalk": "^4.0.0", + "jest-get-type": "^27.5.1", + "jest-util": "^27.5.1", + "pretty-format": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-each/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-each/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-each/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-each/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/jest-each/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-each/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-environment-jsdom": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-27.5.1.tgz", + "integrity": "sha512-TFBvkTC1Hnnnrka/fUb56atfDtJ9VMZ94JkjTbggl1PEpwrYtUBKMezB3inLmWqQsXYLcMwNoDQwoBTAvFfsfw==", + "dependencies": { + "@jest/environment": "^27.5.1", + "@jest/fake-timers": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "jest-mock": "^27.5.1", + "jest-util": "^27.5.1", + "jsdom": "^16.6.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-environment-node": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-27.5.1.tgz", + "integrity": "sha512-Jt4ZUnxdOsTGwSRAfKEnE6BcwsSPNOijjwifq5sDFSA2kesnXTvNqKHYgM0hDq3549Uf/KzdXNYn4wMZJPlFLw==", + "dependencies": { + "@jest/environment": "^27.5.1", + "@jest/fake-timers": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "jest-mock": "^27.5.1", + "jest-util": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-get-type": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-27.5.1.tgz", + "integrity": "sha512-2KY95ksYSaK7DMBWQn6dQz3kqAf3BB64y2udeG+hv4KfSOb9qwcYQstTJc1KCbsix+wLZWZYN8t7nwX3GOBLRw==", + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-haste-map": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-27.5.1.tgz", + "integrity": "sha512-7GgkZ4Fw4NFbMSDSpZwXeBiIbx+t/46nJ2QitkOjvwPYyZmqttu2TDSimMHP1EkPOi4xUZAN1doE5Vd25H4Jng==", + "dependencies": { + "@jest/types": "^27.5.1", + "@types/graceful-fs": "^4.1.2", + "@types/node": "*", + "anymatch": "^3.0.3", + "fb-watchman": "^2.0.0", + "graceful-fs": "^4.2.9", + "jest-regex-util": "^27.5.1", + "jest-serializer": "^27.5.1", + "jest-util": "^27.5.1", + "jest-worker": "^27.5.1", + "micromatch": "^4.0.4", + "walker": "^1.0.7" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "optionalDependencies": { + "fsevents": "^2.3.2" + } + }, + "node_modules/jest-jasmine2": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-jasmine2/-/jest-jasmine2-27.5.1.tgz", + "integrity": "sha512-jtq7VVyG8SqAorDpApwiJJImd0V2wv1xzdheGHRGyuT7gZm6gG47QEskOlzsN1PG/6WNaCo5pmwMHDf3AkG2pQ==", + "dependencies": { + "@jest/environment": "^27.5.1", + "@jest/source-map": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "co": "^4.6.0", + "expect": "^27.5.1", + "is-generator-fn": "^2.0.0", + "jest-each": "^27.5.1", + "jest-matcher-utils": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-runtime": "^27.5.1", + "jest-snapshot": "^27.5.1", + "jest-util": "^27.5.1", + "pretty-format": "^27.5.1", + "throat": "^6.0.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-jasmine2/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-jasmine2/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-jasmine2/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-jasmine2/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/jest-jasmine2/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-jasmine2/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-leak-detector": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-27.5.1.tgz", + "integrity": "sha512-POXfWAMvfU6WMUXftV4HolnJfnPOGEu10fscNCA76KBpRRhcMN2c8d3iT2pxQS3HLbA+5X4sOUPzYO2NUyIlHQ==", + "dependencies": { + "jest-get-type": "^27.5.1", + "pretty-format": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-matcher-utils": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-27.5.1.tgz", + "integrity": "sha512-z2uTx/T6LBaCoNWNFWwChLBKYxTMcGBRjAt+2SbP929/Fflb9aa5LGma654Rz8z9HLxsrUaYzxE9T/EFIL/PAw==", + "dependencies": { + "chalk": "^4.0.0", + "jest-diff": "^27.5.1", + "jest-get-type": "^27.5.1", + "pretty-format": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-matcher-utils/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-matcher-utils/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-matcher-utils/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-matcher-utils/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/jest-matcher-utils/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-matcher-utils/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-message-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-27.5.1.tgz", + "integrity": "sha512-rMyFe1+jnyAAf+NHwTclDz0eAaLkVDdKVHHBFWsBWHnnh5YeJMNWWsv7AbFYXfK3oTqvL7VTWkhNLu1jX24D+g==", + "dependencies": { + "@babel/code-frame": "^7.12.13", + "@jest/types": "^27.5.1", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^27.5.1", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-message-util/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-message-util/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-message-util/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-message-util/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/jest-message-util/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-message-util/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-mock": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-27.5.1.tgz", + "integrity": "sha512-K4jKbY1d4ENhbrG2zuPWaQBvDly+iZ2yAW+T1fATN78hc0sInwn7wZB8XtlNnvHug5RMwV897Xm4LqmPM4e2Og==", + "dependencies": { + "@jest/types": "^27.5.1", + "@types/node": "*" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-pnp-resolver": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz", + "integrity": "sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==", + "engines": { + "node": ">=6" + }, + "peerDependencies": { + "jest-resolve": "*" + }, + "peerDependenciesMeta": { + "jest-resolve": { + "optional": true + } + } + }, + "node_modules/jest-regex-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-27.5.1.tgz", + "integrity": "sha512-4bfKq2zie+x16okqDXjXn9ql2B0dScQu+vcwe4TvFVhkVyuWLqpZrZtXxLLWoXYgn0E87I6r6GRYHF7wFZBUvg==", + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-resolve": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-27.5.1.tgz", + "integrity": "sha512-FFDy8/9E6CV83IMbDpcjOhumAQPDyETnU2KZ1O98DwTnz8AOBsW/Xv3GySr1mOZdItLR+zDZ7I/UdTFbgSOVCw==", + "dependencies": { + "@jest/types": "^27.5.1", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^27.5.1", + "jest-pnp-resolver": "^1.2.2", + "jest-util": "^27.5.1", + "jest-validate": "^27.5.1", + "resolve": "^1.20.0", + "resolve.exports": "^1.1.0", + "slash": "^3.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-resolve-dependencies": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-27.5.1.tgz", + "integrity": "sha512-QQOOdY4PE39iawDn5rzbIePNigfe5B9Z91GDD1ae/xNDlu9kaat8QQ5EKnNmVWPV54hUdxCVwwj6YMgR2O7IOg==", + "dependencies": { + "@jest/types": "^27.5.1", + "jest-regex-util": "^27.5.1", + "jest-snapshot": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-resolve/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-resolve/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-resolve/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-resolve/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/jest-resolve/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-resolve/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-runner": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-27.5.1.tgz", + "integrity": "sha512-g4NPsM4mFCOwFKXO4p/H/kWGdJp9V8kURY2lX8Me2drgXqG7rrZAx5kv+5H7wtt/cdFIjhqYx1HrlqWHaOvDaQ==", + "dependencies": { + "@jest/console": "^27.5.1", + "@jest/environment": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "emittery": "^0.8.1", + "graceful-fs": "^4.2.9", + "jest-docblock": "^27.5.1", + "jest-environment-jsdom": "^27.5.1", + "jest-environment-node": "^27.5.1", + "jest-haste-map": "^27.5.1", + "jest-leak-detector": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-resolve": "^27.5.1", + "jest-runtime": "^27.5.1", + "jest-util": "^27.5.1", + "jest-worker": "^27.5.1", + "source-map-support": "^0.5.6", + "throat": "^6.0.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-runner/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-runner/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-runner/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-runner/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/jest-runner/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-runner/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-runtime": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-27.5.1.tgz", + "integrity": "sha512-o7gxw3Gf+H2IGt8fv0RiyE1+r83FJBRruoA+FXrlHw6xEyBsU8ugA6IPfTdVyA0w8HClpbK+DGJxH59UrNMx8A==", + "dependencies": { + "@jest/environment": "^27.5.1", + "@jest/fake-timers": "^27.5.1", + "@jest/globals": "^27.5.1", + "@jest/source-map": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", + "chalk": "^4.0.0", + "cjs-module-lexer": "^1.0.0", + "collect-v8-coverage": "^1.0.0", + "execa": "^5.0.0", + "glob": "^7.1.3", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-mock": "^27.5.1", + "jest-regex-util": "^27.5.1", + "jest-resolve": "^27.5.1", + "jest-snapshot": "^27.5.1", + "jest-util": "^27.5.1", + "slash": "^3.0.0", + "strip-bom": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-runtime/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-runtime/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-runtime/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-runtime/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/jest-runtime/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-runtime/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-serializer": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-27.5.1.tgz", + "integrity": "sha512-jZCyo6iIxO1aqUxpuBlwTDMkzOAJS4a3eYz3YzgxxVQFwLeSA7Jfq5cbqCY+JLvTDrWirgusI/0KwxKMgrdf7w==", + "dependencies": { + "@types/node": "*", + "graceful-fs": "^4.2.9" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-snapshot": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-27.5.1.tgz", + "integrity": "sha512-yYykXI5a0I31xX67mgeLw1DZ0bJB+gpq5IpSuCAoyDi0+BhgU/RIrL+RTzDmkNTchvDFWKP8lp+w/42Z3us5sA==", + "dependencies": { + "@babel/core": "^7.7.2", + "@babel/generator": "^7.7.2", + "@babel/plugin-syntax-typescript": "^7.7.2", + "@babel/traverse": "^7.7.2", + "@babel/types": "^7.0.0", + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/babel__traverse": "^7.0.4", + "@types/prettier": "^2.1.5", + "babel-preset-current-node-syntax": "^1.0.0", + "chalk": "^4.0.0", + "expect": "^27.5.1", + "graceful-fs": "^4.2.9", + "jest-diff": "^27.5.1", + "jest-get-type": "^27.5.1", + "jest-haste-map": "^27.5.1", + "jest-matcher-utils": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-util": "^27.5.1", + "natural-compare": "^1.4.0", + "pretty-format": "^27.5.1", + "semver": "^7.3.2" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-snapshot/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-snapshot/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-snapshot/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-snapshot/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/jest-snapshot/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-snapshot/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz", + "integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==", + "dependencies": { + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-util/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-util/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-util/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-util/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/jest-util/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-util/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-validate": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-27.5.1.tgz", + "integrity": "sha512-thkNli0LYTmOI1tDB3FI1S1RTp/Bqyd9pTarJwL87OIBFuqEb5Apv5EaApEudYg4g86e3CT6kM0RowkhtEnCBQ==", + "dependencies": { + "@jest/types": "^27.5.1", + "camelcase": "^6.2.0", + "chalk": "^4.0.0", + "jest-get-type": "^27.5.1", + "leven": "^3.1.0", + "pretty-format": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-validate/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-validate/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-validate/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-validate/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/jest-validate/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-validate/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-watch-typeahead": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/jest-watch-typeahead/-/jest-watch-typeahead-1.1.0.tgz", + "integrity": "sha512-Va5nLSJTN7YFtC2jd+7wsoe1pNe5K4ShLux/E5iHEwlB9AxaxmggY7to9KUqKojhaJw3aXqt5WAb4jGPOolpEw==", + "dependencies": { + "ansi-escapes": "^4.3.1", + "chalk": "^4.0.0", + "jest-regex-util": "^28.0.0", + "jest-watcher": "^28.0.0", + "slash": "^4.0.0", + "string-length": "^5.0.1", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "peerDependencies": { + "jest": "^27.0.0 || ^28.0.0" + } + }, + "node_modules/jest-watch-typeahead/node_modules/@jest/console": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/console/-/console-28.1.3.tgz", + "integrity": "sha512-QPAkP5EwKdK/bxIr6C1I4Vs0rm2nHiANzj/Z5X2JQkrZo6IqvC4ldZ9K95tF0HdidhA8Bo6egxSzUFPYKcEXLw==", + "dependencies": { + "@jest/types": "^28.1.3", + "@types/node": "*", + "chalk": "^4.0.0", + "jest-message-util": "^28.1.3", + "jest-util": "^28.1.3", + "slash": "^3.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/jest-watch-typeahead/node_modules/@jest/console/node_modules/slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-watch-typeahead/node_modules/@jest/test-result": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-28.1.3.tgz", + "integrity": "sha512-kZAkxnSE+FqE8YjW8gNuoVkkC9I7S1qmenl8sGcDOLropASP+BkcGKwhXoyqQuGOGeYY0y/ixjrd/iERpEXHNg==", + "dependencies": { + "@jest/console": "^28.1.3", + "@jest/types": "^28.1.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "collect-v8-coverage": "^1.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/jest-watch-typeahead/node_modules/@jest/types": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-28.1.3.tgz", + "integrity": "sha512-RyjiyMUZrKz/c+zlMFO1pm70DcIlST8AeWTkoUdZevew44wcNZQHsEVOiCVtgVnlFFD82FPaXycys58cf2muVQ==", + "dependencies": { + "@jest/schemas": "^28.1.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^17.0.8", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/jest-watch-typeahead/node_modules/@types/yargs": { + "version": "17.0.24", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.24.tgz", + "integrity": "sha512-6i0aC7jV6QzQB8ne1joVZ0eSFIstHsCrobmOtghM11yGlH0j43FKL2UhWdELkyps0zuf7qVTUVCCR+tgSlyLLw==", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/jest-watch-typeahead/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-watch-typeahead/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-watch-typeahead/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-watch-typeahead/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/jest-watch-typeahead/node_modules/emittery": { + "version": "0.10.2", + "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.10.2.tgz", + "integrity": "sha512-aITqOwnLanpHLNXZJENbOgjUBeHocD+xsSJmNrjovKBW5HbSpW3d1pEls7GFQPUWXiwG9+0P4GtHfEqC/4M0Iw==", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sindresorhus/emittery?sponsor=1" + } + }, + "node_modules/jest-watch-typeahead/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-watch-typeahead/node_modules/jest-message-util": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-28.1.3.tgz", + "integrity": "sha512-PFdn9Iewbt575zKPf1286Ht9EPoJmYT7P0kY+RibeYZ2XtOr53pDLEFoTWXbd1h4JiGiWpTBC84fc8xMXQMb7g==", + "dependencies": { + "@babel/code-frame": "^7.12.13", + "@jest/types": "^28.1.3", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^28.1.3", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/jest-watch-typeahead/node_modules/jest-message-util/node_modules/slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-watch-typeahead/node_modules/jest-regex-util": { + "version": "28.0.2", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-28.0.2.tgz", + "integrity": "sha512-4s0IgyNIy0y9FK+cjoVYoxamT7Zeo7MhzqRGx7YDYmaQn1wucY9rotiGkBzzcMXTtjrCAP/f7f+E0F7+fxPNdw==", + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/jest-watch-typeahead/node_modules/jest-util": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-28.1.3.tgz", + "integrity": "sha512-XdqfpHwpcSRko/C35uLYFM2emRAltIIKZiJ9eAmhjsj0CqZMa0p1ib0R5fWIqGhn1a103DebTbpqIaP1qCQ6tQ==", + "dependencies": { + "@jest/types": "^28.1.3", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/jest-watch-typeahead/node_modules/jest-watcher": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-28.1.3.tgz", + "integrity": "sha512-t4qcqj9hze+jviFPUN3YAtAEeFnr/azITXQEMARf5cMwKY2SMBRnCQTXLixTl20OR6mLh9KLMrgVJgJISym+1g==", + "dependencies": { + "@jest/test-result": "^28.1.3", + "@jest/types": "^28.1.3", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "emittery": "^0.10.2", + "jest-util": "^28.1.3", + "string-length": "^4.0.1" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/jest-watch-typeahead/node_modules/jest-watcher/node_modules/string-length": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz", + "integrity": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==", + "dependencies": { + "char-regex": "^1.0.2", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/jest-watch-typeahead/node_modules/jest-watcher/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-watch-typeahead/node_modules/pretty-format": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-28.1.3.tgz", + "integrity": "sha512-8gFb/To0OmxHR9+ZTb14Df2vNxdGCX8g1xWGUTqUw5TiZvcQf5sHKObd5UcPyLLyowNwDAMTF3XWOG1B6mxl1Q==", + "dependencies": { + "@jest/schemas": "^28.1.3", + "ansi-regex": "^5.0.1", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/jest-watch-typeahead/node_modules/pretty-format/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-watch-typeahead/node_modules/react-is": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==" + }, + "node_modules/jest-watch-typeahead/node_modules/slash": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-4.0.0.tgz", + "integrity": "sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/jest-watch-typeahead/node_modules/string-length": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/string-length/-/string-length-5.0.1.tgz", + "integrity": "sha512-9Ep08KAMUn0OadnVaBuRdE2l615CQ508kr0XMadjClfYpdCyvrbFp6Taebo8yyxokQ4viUd/xPPUA4FGgUa0ow==", + "dependencies": { + "char-regex": "^2.0.0", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12.20" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/jest-watch-typeahead/node_modules/string-length/node_modules/char-regex": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-2.0.1.tgz", + "integrity": "sha512-oSvEeo6ZUD7NepqAat3RqoucZ5SeqLJgOvVIwkafu6IP3V0pO38s/ypdVUmDDK6qIIHNlYHJAKX9E7R7HoKElw==", + "engines": { + "node": ">=12.20" + } + }, + "node_modules/jest-watch-typeahead/node_modules/strip-ansi": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", + "dependencies": { + "ansi-regex": "^6.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, + "node_modules/jest-watch-typeahead/node_modules/strip-ansi/node_modules/ansi-regex": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", + "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, + "node_modules/jest-watch-typeahead/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-watcher": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-27.5.1.tgz", + "integrity": "sha512-z676SuD6Z8o8qbmEGhoEUFOM1+jfEiL3DXHK/xgEiG2EyNYfFG60jluWcupY6dATjfEsKQuibReS1djInQnoVw==", + "dependencies": { + "@jest/test-result": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "jest-util": "^27.5.1", + "string-length": "^4.0.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-watcher/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-watcher/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-watcher/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-watcher/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/jest-watcher/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-watcher/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-worker": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", + "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==", + "dependencies": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "engines": { + "node": ">= 10.13.0" + } + }, + "node_modules/jest-worker/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-worker/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } + }, + "node_modules/jiti": { + "version": "1.18.2", + "resolved": "https://registry.npmjs.org/jiti/-/jiti-1.18.2.tgz", + "integrity": "sha512-QAdOptna2NYiSSpv0O/BwoHBSmz4YhpzJHyi+fnMRTXFjp7B8i/YG5Z8IfusxB1ufjcD2Sre1F3R+nX3fvy7gg==", + "bin": { + "jiti": "bin/jiti.js" + } + }, + "node_modules/js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" + }, + "node_modules/js-yaml": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", + "dependencies": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/jsdom": { + "version": "16.7.0", + "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-16.7.0.tgz", + "integrity": "sha512-u9Smc2G1USStM+s/x1ru5Sxrl6mPYCbByG1U/hUmqaVsm4tbNyS7CicOSRyuGQYZhTu0h84qkZZQ/I+dzizSVw==", + "dependencies": { + "abab": "^2.0.5", + "acorn": "^8.2.4", + "acorn-globals": "^6.0.0", + "cssom": "^0.4.4", + "cssstyle": "^2.3.0", + "data-urls": "^2.0.0", + "decimal.js": "^10.2.1", + "domexception": "^2.0.1", + "escodegen": "^2.0.0", + "form-data": "^3.0.0", + "html-encoding-sniffer": "^2.0.1", + "http-proxy-agent": "^4.0.1", + "https-proxy-agent": "^5.0.0", + "is-potential-custom-element-name": "^1.0.1", + "nwsapi": "^2.2.0", + "parse5": "6.0.1", + "saxes": "^5.0.1", + "symbol-tree": "^3.2.4", + "tough-cookie": "^4.0.0", + "w3c-hr-time": "^1.0.2", + "w3c-xmlserializer": "^2.0.0", + "webidl-conversions": "^6.1.0", + "whatwg-encoding": "^1.0.5", + "whatwg-mimetype": "^2.3.0", + "whatwg-url": "^8.5.0", + "ws": "^7.4.6", + "xml-name-validator": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "canvas": "^2.5.0" + }, + "peerDependenciesMeta": { + "canvas": { + "optional": true + } + } + }, + "node_modules/jsesc": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", + "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", + "bin": { + "jsesc": "bin/jsesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/json-parse-even-better-errors": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", + "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==" + }, + "node_modules/json-schema": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.4.0.tgz", + "integrity": "sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==" + }, + "node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" + }, + "node_modules/json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==" + }, + "node_modules/json5": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", + "bin": { + "json5": "lib/cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/jsonfile": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "dependencies": { + "universalify": "^2.0.0" + }, + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/jsonpointer": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/jsonpointer/-/jsonpointer-5.0.1.tgz", + "integrity": "sha512-p/nXbhSEcu3pZRdkW1OfJhpsVtW1gd4Wa1fnQc9YLiTfAjn0312eMKimbdIQzuZl9aa9xUGaRlP9T/CJE/ditQ==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/jsx-ast-utils": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.3.tgz", + "integrity": "sha512-fYQHZTZ8jSfmWZ0iyzfwiU4WDX4HpHbMCZ3gPlWYiCl3BoeOTsqKBqnTVfH2rYT7eP5c3sVbeSPHnnJOaTrWiw==", + "dependencies": { + "array-includes": "^3.1.5", + "object.assign": "^4.1.3" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/kleur": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", + "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", + "engines": { + "node": ">=6" + } + }, + "node_modules/klona": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/klona/-/klona-2.0.6.tgz", + "integrity": "sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==", + "engines": { + "node": ">= 8" + } + }, + "node_modules/language-subtag-registry": { + "version": "0.3.22", + "resolved": "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.22.tgz", + "integrity": "sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==" + }, + "node_modules/language-tags": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/language-tags/-/language-tags-1.0.5.tgz", + "integrity": "sha512-qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ==", + "dependencies": { + "language-subtag-registry": "~0.3.2" + } + }, + "node_modules/launch-editor": { + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/launch-editor/-/launch-editor-2.6.0.tgz", + "integrity": "sha512-JpDCcQnyAAzZZaZ7vEiSqL690w7dAEyLao+KC96zBplnYbJS7TYNjvM3M7y3dGz+v7aIsJk3hllWuc0kWAjyRQ==", + "dependencies": { + "picocolors": "^1.0.0", + "shell-quote": "^1.7.3" + } + }, + "node_modules/leven": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz", + "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==", + "engines": { + "node": ">=6" + } + }, + "node_modules/levn": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", + "dependencies": { + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/lilconfig": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.1.0.tgz", + "integrity": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==", + "engines": { + "node": ">=10" + } + }, + "node_modules/lines-and-columns": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==" + }, + "node_modules/loader-runner": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.3.0.tgz", + "integrity": "sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==", + "engines": { + "node": ">=6.11.5" + } + }, + "node_modules/loader-utils": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz", + "integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==", + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + }, + "engines": { + "node": ">=8.9.0" + } + }, + "node_modules/locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "dependencies": { + "p-locate": "^5.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" + }, + "node_modules/lodash.debounce": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", + "integrity": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==" + }, + "node_modules/lodash.memoize": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", + "integrity": "sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==" + }, + "node_modules/lodash.merge": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==" + }, + "node_modules/lodash.sortby": { + "version": "4.7.0", + "resolved": "https://registry.npmjs.org/lodash.sortby/-/lodash.sortby-4.7.0.tgz", + "integrity": "sha512-HDWXG8isMntAyRF5vZ7xKuEvOhT4AhlRt/3czTSjvGUxjYCBVRQY48ViDHyfYz9VIoBkW4TMGQNapx+l3RUwdA==" + }, + "node_modules/lodash.uniq": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz", + "integrity": "sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==" + }, + "node_modules/loose-envify": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", + "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", + "dependencies": { + "js-tokens": "^3.0.0 || ^4.0.0" + }, + "bin": { + "loose-envify": "cli.js" + } + }, + "node_modules/lower-case": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz", + "integrity": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==", + "dependencies": { + "tslib": "^2.0.3" + } + }, + "node_modules/lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "dependencies": { + "yallist": "^3.0.2" + } + }, + "node_modules/lz-string": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/lz-string/-/lz-string-1.5.0.tgz", + "integrity": "sha512-h5bgJWpxJNswbU7qCrV0tIKQCaS3blPDrqKWx+QxzuzL1zGUzij9XCWLrSLsJPu5t+eWA/ycetzYAO5IOMcWAQ==", + "bin": { + "lz-string": "bin/bin.js" + } + }, + "node_modules/magic-string": { + "version": "0.25.9", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.25.9.tgz", + "integrity": "sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==", + "dependencies": { + "sourcemap-codec": "^1.4.8" + } + }, + "node_modules/make-dir": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", + "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", + "dependencies": { + "semver": "^6.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/make-dir/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/makeerror": { + "version": "1.0.12", + "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz", + "integrity": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==", + "dependencies": { + "tmpl": "1.0.5" + } + }, + "node_modules/mdn-data": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.4.tgz", + "integrity": "sha512-iV3XNKw06j5Q7mi6h+9vbx23Tv7JkjEVgKHW4pimwyDGWm0OIQntJJ+u1C6mg6mK1EaTv42XQ7w76yuzH7M2cA==" + }, + "node_modules/media-typer": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", + "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/memfs": { + "version": "3.5.3", + "resolved": "https://registry.npmjs.org/memfs/-/memfs-3.5.3.tgz", + "integrity": "sha512-UERzLsxzllchadvbPs5aolHh65ISpKpM+ccLbOJ8/vvpBKmAWf+la7dXFy7Mr0ySHbdHrFv5kGFCUHHe6GFEmw==", + "dependencies": { + "fs-monkey": "^1.0.4" + }, + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/merge-descriptors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", + "integrity": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==" + }, + "node_modules/merge-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==" + }, + "node_modules/merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "engines": { + "node": ">= 8" + } + }, + "node_modules/methods": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", + "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "dependencies": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/mime": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", + "bin": { + "mime": "cli.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "dependencies": { + "mime-db": "1.52.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "engines": { + "node": ">=6" + } + }, + "node_modules/min-indent": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/min-indent/-/min-indent-1.0.1.tgz", + "integrity": "sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==", + "engines": { + "node": ">=4" + } + }, + "node_modules/mini-css-extract-plugin": { + "version": "2.7.6", + "resolved": "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-2.7.6.tgz", + "integrity": "sha512-Qk7HcgaPkGG6eD77mLvZS1nmxlao3j+9PkrT9Uc7HAE1id3F41+DdBRYRYkbyfNRGzm8/YWtzhw7nVPmwhqTQw==", + "dependencies": { + "schema-utils": "^4.0.0" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.0.0" + } + }, + "node_modules/mini-css-extract-plugin/node_modules/ajv": { + "version": "8.12.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", + "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/mini-css-extract-plugin/node_modules/ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "dependencies": { + "fast-deep-equal": "^3.1.3" + }, + "peerDependencies": { + "ajv": "^8.8.2" + } + }, + "node_modules/mini-css-extract-plugin/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" + }, + "node_modules/mini-css-extract-plugin/node_modules/schema-utils": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.1.0.tgz", + "integrity": "sha512-Jw+GZVbP5IggB2WAn6UHI02LBwGmsIeYN/lNbSMZyDziQ7jmtAUrqKqDja+W89YHVs+KL/3IkIMltAklqB1vAw==", + "dependencies": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.9.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.1.0" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/minimalistic-assert": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz", + "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==" + }, + "node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/minimist": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/mkdirp": { + "version": "0.5.6", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", + "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==", + "dependencies": { + "minimist": "^1.2.6" + }, + "bin": { + "mkdirp": "bin/cmd.js" + } + }, + "node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + }, + "node_modules/multicast-dns": { + "version": "7.2.5", + "resolved": "https://registry.npmjs.org/multicast-dns/-/multicast-dns-7.2.5.tgz", + "integrity": "sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg==", + "dependencies": { + "dns-packet": "^5.2.2", + "thunky": "^1.0.2" + }, + "bin": { + "multicast-dns": "cli.js" + } + }, + "node_modules/mz": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz", + "integrity": "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==", + "dependencies": { + "any-promise": "^1.0.0", + "object-assign": "^4.0.1", + "thenify-all": "^1.0.0" + } + }, + "node_modules/nanoid": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.6.tgz", + "integrity": "sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } + }, + "node_modules/natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==" + }, + "node_modules/natural-compare-lite": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare-lite/-/natural-compare-lite-1.4.0.tgz", + "integrity": "sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==" + }, + "node_modules/negotiator": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", + "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/neo-async": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", + "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==" + }, + "node_modules/no-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz", + "integrity": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==", + "dependencies": { + "lower-case": "^2.0.2", + "tslib": "^2.0.3" + } + }, + "node_modules/node-forge": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-1.3.1.tgz", + "integrity": "sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==", + "engines": { + "node": ">= 6.13.0" + } + }, + "node_modules/node-int64": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz", + "integrity": "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==" + }, + "node_modules/node-releases": { + "version": "2.0.12", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.12.tgz", + "integrity": "sha512-QzsYKWhXTWx8h1kIvqfnC++o0pEmpRQA/aenALsL2F4pqNVr7YzcdMlDij5WBnwftRbJCNJL/O7zdKaxKPHqgQ==" + }, + "node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/normalize-range": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", + "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/normalize-url": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-6.1.0.tgz", + "integrity": "sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/npm-run-path": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", + "dependencies": { + "path-key": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/nth-check": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz", + "integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==", + "dependencies": { + "boolbase": "^1.0.0" + }, + "funding": { + "url": "https://github.com/fb55/nth-check?sponsor=1" + } + }, + "node_modules/nwsapi": { + "version": "2.2.5", + "resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.5.tgz", + "integrity": "sha512-6xpotnECFy/og7tKSBVmUNft7J3jyXAka4XvG6AUhFWRz+Q/Ljus7znJAA3bxColfQLdS+XsjoodtJfCgeTEFQ==" + }, + "node_modules/object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-hash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/object-hash/-/object-hash-3.0.0.tgz", + "integrity": "sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==", + "engines": { + "node": ">= 6" + } + }, + "node_modules/object-inspect": { + "version": "1.12.3", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.3.tgz", + "integrity": "sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object-is": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.5.tgz", + "integrity": "sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/object.assign": { + "version": "4.1.4", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz", + "integrity": "sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "has-symbols": "^1.0.3", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object.entries": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.6.tgz", + "integrity": "sha512-leTPzo4Zvg3pmbQ3rDK69Rl8GQvIqMWubrkxONG9/ojtFE2rD9fjMKfSI5BxW3osRH1m6VdzmqK8oAY9aT4x5w==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/object.fromentries": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.6.tgz", + "integrity": "sha512-VciD13dswC4j1Xt5394WR4MzmAQmlgN72phd/riNp9vtD7tp4QQWJ0R4wvclXcafgcYK8veHRed2W6XeGBvcfg==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object.getownpropertydescriptors": { + "version": "2.1.6", + "resolved": "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.6.tgz", + "integrity": "sha512-lq+61g26E/BgHv0ZTFgRvi7NMEPuAxLkFU7rukXjc/AlwH4Am5xXVnIXy3un1bg/JPbXHrixRkK1itUzzPiIjQ==", + "dependencies": { + "array.prototype.reduce": "^1.0.5", + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.21.2", + "safe-array-concat": "^1.0.0" + }, + "engines": { + "node": ">= 0.8" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object.hasown": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/object.hasown/-/object.hasown-1.1.2.tgz", + "integrity": "sha512-B5UIT3J1W+WuWIU55h0mjlwaqxiE5vYENJXIXZ4VFe05pNYrkKuK0U/6aFcb0pKywYJh7IhfoqUfKVmrJJHZHw==", + "dependencies": { + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object.values": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.6.tgz", + "integrity": "sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/obuf": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/obuf/-/obuf-1.1.2.tgz", + "integrity": "sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==" + }, + "node_modules/on-finished": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", + "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", + "dependencies": { + "ee-first": "1.1.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/on-headers": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz", + "integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "dependencies": { + "wrappy": "1" + } + }, + "node_modules/onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "dependencies": { + "mimic-fn": "^2.1.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/open": { + "version": "8.4.2", + "resolved": "https://registry.npmjs.org/open/-/open-8.4.2.tgz", + "integrity": "sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==", + "dependencies": { + "define-lazy-prop": "^2.0.0", + "is-docker": "^2.1.1", + "is-wsl": "^2.2.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/optionator": { + "version": "0.9.1", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz", + "integrity": "sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==", + "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.3" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "dependencies": { + "p-limit": "^3.0.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-retry": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/p-retry/-/p-retry-4.6.2.tgz", + "integrity": "sha512-312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ==", + "dependencies": { + "@types/retry": "0.12.0", + "retry": "^0.13.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/p-try": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", + "engines": { + "node": ">=6" + } + }, + "node_modules/param-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/param-case/-/param-case-3.0.4.tgz", + "integrity": "sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==", + "dependencies": { + "dot-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/parent-module": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "dependencies": { + "callsites": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/parse-json": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", + "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", + "dependencies": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/parse5": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz", + "integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==" + }, + "node_modules/parseurl": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", + "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/pascal-case": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/pascal-case/-/pascal-case-3.1.2.tgz", + "integrity": "sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==", + "dependencies": { + "no-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "engines": { + "node": ">=8" + } + }, + "node_modules/path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "engines": { + "node": ">=8" + } + }, + "node_modules/path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" + }, + "node_modules/path-to-regexp": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", + "integrity": "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==" + }, + "node_modules/path-type": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", + "engines": { + "node": ">=8" + } + }, + "node_modules/performance-now": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", + "integrity": "sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==" + }, + "node_modules/picocolors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", + "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" + }, + "node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/pirates": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.5.tgz", + "integrity": "sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ==", + "engines": { + "node": ">= 6" + } + }, + "node_modules/pkg-dir": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", + "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", + "dependencies": { + "find-up": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/pkg-dir/node_modules/find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/pkg-dir/node_modules/locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dependencies": { + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/pkg-dir/node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/pkg-dir/node_modules/p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dependencies": { + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/pkg-up": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/pkg-up/-/pkg-up-3.1.0.tgz", + "integrity": "sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA==", + "dependencies": { + "find-up": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/pkg-up/node_modules/find-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "dependencies": { + "locate-path": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/pkg-up/node_modules/locate-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "dependencies": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/pkg-up/node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/pkg-up/node_modules/p-locate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "dependencies": { + "p-limit": "^2.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/pkg-up/node_modules/path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==", + "engines": { + "node": ">=4" + } + }, + "node_modules/postcss": { + "version": "8.4.24", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.24.tgz", + "integrity": "sha512-M0RzbcI0sO/XJNucsGjvWU9ERWxb/ytp1w6dKtxTKgixdtQDq4rmx/g8W1hnaheq9jgwL/oyEdH5Bc4WwJKMqg==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "nanoid": "^3.3.6", + "picocolors": "^1.0.0", + "source-map-js": "^1.0.2" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "node_modules/postcss-attribute-case-insensitive": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/postcss-attribute-case-insensitive/-/postcss-attribute-case-insensitive-5.0.2.tgz", + "integrity": "sha512-XIidXV8fDr0kKt28vqki84fRK8VW8eTuIa4PChv2MqKuT6C9UjmSKzen6KaWhWEoYvwxFCa7n/tC1SZ3tyq4SQ==", + "dependencies": { + "postcss-selector-parser": "^6.0.10" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/postcss-browser-comments": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-browser-comments/-/postcss-browser-comments-4.0.0.tgz", + "integrity": "sha512-X9X9/WN3KIvY9+hNERUqX9gncsgBA25XaeR+jshHz2j8+sYyHktHw1JdKuMjeLpGktXidqDhA7b/qm1mrBDmgg==", + "engines": { + "node": ">=8" + }, + "peerDependencies": { + "browserslist": ">=4", + "postcss": ">=8" + } + }, + "node_modules/postcss-calc": { + "version": "8.2.4", + "resolved": "https://registry.npmjs.org/postcss-calc/-/postcss-calc-8.2.4.tgz", + "integrity": "sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q==", + "dependencies": { + "postcss-selector-parser": "^6.0.9", + "postcss-value-parser": "^4.2.0" + }, + "peerDependencies": { + "postcss": "^8.2.2" + } + }, + "node_modules/postcss-clamp": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/postcss-clamp/-/postcss-clamp-4.1.0.tgz", + "integrity": "sha512-ry4b1Llo/9zz+PKC+030KUnPITTJAHeOwjfAyyB60eT0AorGLdzp52s31OsPRHRf8NchkgFoG2y6fCfn1IV1Ow==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": ">=7.6.0" + }, + "peerDependencies": { + "postcss": "^8.4.6" + } + }, + "node_modules/postcss-color-functional-notation": { + "version": "4.2.4", + "resolved": "https://registry.npmjs.org/postcss-color-functional-notation/-/postcss-color-functional-notation-4.2.4.tgz", + "integrity": "sha512-2yrTAUZUab9s6CpxkxC4rVgFEVaR6/2Pipvi6qcgvnYiVqZcbDHEoBDhrXzyb7Efh2CCfHQNtcqWcIruDTIUeg==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/postcss-color-hex-alpha": { + "version": "8.0.4", + "resolved": "https://registry.npmjs.org/postcss-color-hex-alpha/-/postcss-color-hex-alpha-8.0.4.tgz", + "integrity": "sha512-nLo2DCRC9eE4w2JmuKgVA3fGL3d01kGq752pVALF68qpGLmx2Qrk91QTKkdUqqp45T1K1XV8IhQpcu1hoAQflQ==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/postcss-color-rebeccapurple": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/postcss-color-rebeccapurple/-/postcss-color-rebeccapurple-7.1.1.tgz", + "integrity": "sha512-pGxkuVEInwLHgkNxUc4sdg4g3py7zUeCQ9sMfwyHAT+Ezk8a4OaaVZ8lIY5+oNqA/BXXgLyXv0+5wHP68R79hg==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/postcss-colormin": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-5.3.1.tgz", + "integrity": "sha512-UsWQG0AqTFQmpBegeLLc1+c3jIqBNB0zlDGRWR+dQ3pRKJL1oeMzyqmH3o2PIfn9MBdNrVPWhDbT769LxCTLJQ==", + "dependencies": { + "browserslist": "^4.21.4", + "caniuse-api": "^3.0.0", + "colord": "^2.9.1", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-convert-values": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-5.1.3.tgz", + "integrity": "sha512-82pC1xkJZtcJEfiLw6UXnXVXScgtBrjlO5CBmuDQc+dlb88ZYheFsjTn40+zBVi3DkfF7iezO0nJUPLcJK3pvA==", + "dependencies": { + "browserslist": "^4.21.4", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-custom-media": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/postcss-custom-media/-/postcss-custom-media-8.0.2.tgz", + "integrity": "sha512-7yi25vDAoHAkbhAzX9dHx2yc6ntS4jQvejrNcC+csQJAXjj15e7VcWfMgLqBNAbOvqi5uIa9huOVwdHbf+sKqg==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.3" + } + }, + "node_modules/postcss-custom-properties": { + "version": "12.1.11", + "resolved": "https://registry.npmjs.org/postcss-custom-properties/-/postcss-custom-properties-12.1.11.tgz", + "integrity": "sha512-0IDJYhgU8xDv1KY6+VgUwuQkVtmYzRwu+dMjnmdMafXYv86SWqfxkc7qdDvWS38vsjaEtv8e0vGOUQrAiMBLpQ==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/postcss-custom-selectors": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/postcss-custom-selectors/-/postcss-custom-selectors-6.0.3.tgz", + "integrity": "sha512-fgVkmyiWDwmD3JbpCmB45SvvlCD6z9CG6Ie6Iere22W5aHea6oWa7EM2bpnv2Fj3I94L3VbtvX9KqwSi5aFzSg==", + "dependencies": { + "postcss-selector-parser": "^6.0.4" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.3" + } + }, + "node_modules/postcss-dir-pseudo-class": { + "version": "6.0.5", + "resolved": "https://registry.npmjs.org/postcss-dir-pseudo-class/-/postcss-dir-pseudo-class-6.0.5.tgz", + "integrity": "sha512-eqn4m70P031PF7ZQIvSgy9RSJ5uI2171O/OO/zcRNYpJbvaeKFUlar1aJ7rmgiQtbm0FSPsRewjpdS0Oew7MPA==", + "dependencies": { + "postcss-selector-parser": "^6.0.10" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/postcss-discard-comments": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-5.1.2.tgz", + "integrity": "sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ==", + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-discard-duplicates": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-5.1.0.tgz", + "integrity": "sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==", + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-discard-empty": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-5.1.1.tgz", + "integrity": "sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A==", + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-discard-overridden": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-5.1.0.tgz", + "integrity": "sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw==", + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-double-position-gradients": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/postcss-double-position-gradients/-/postcss-double-position-gradients-3.1.2.tgz", + "integrity": "sha512-GX+FuE/uBR6eskOK+4vkXgT6pDkexLokPaz/AbJna9s5Kzp/yl488pKPjhy0obB475ovfT1Wv8ho7U/cHNaRgQ==", + "dependencies": { + "@csstools/postcss-progressive-custom-properties": "^1.1.0", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/postcss-env-function": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/postcss-env-function/-/postcss-env-function-4.0.6.tgz", + "integrity": "sha512-kpA6FsLra+NqcFnL81TnsU+Z7orGtDTxcOhl6pwXeEq1yFPpRMkCDpHhrz8CFQDr/Wfm0jLiNQ1OsGGPjlqPwA==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/postcss-flexbugs-fixes": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/postcss-flexbugs-fixes/-/postcss-flexbugs-fixes-5.0.2.tgz", + "integrity": "sha512-18f9voByak7bTktR2QgDveglpn9DTbBWPUzSOe9g0N4WR/2eSt6Vrcbf0hmspvMI6YWGywz6B9f7jzpFNJJgnQ==", + "peerDependencies": { + "postcss": "^8.1.4" + } + }, + "node_modules/postcss-focus-visible": { + "version": "6.0.4", + "resolved": "https://registry.npmjs.org/postcss-focus-visible/-/postcss-focus-visible-6.0.4.tgz", + "integrity": "sha512-QcKuUU/dgNsstIK6HELFRT5Y3lbrMLEOwG+A4s5cA+fx3A3y/JTq3X9LaOj3OC3ALH0XqyrgQIgey/MIZ8Wczw==", + "dependencies": { + "postcss-selector-parser": "^6.0.9" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/postcss-focus-within": { + "version": "5.0.4", + "resolved": "https://registry.npmjs.org/postcss-focus-within/-/postcss-focus-within-5.0.4.tgz", + "integrity": "sha512-vvjDN++C0mu8jz4af5d52CB184ogg/sSxAFS+oUJQq2SuCe7T5U2iIsVJtsCp2d6R4j0jr5+q3rPkBVZkXD9fQ==", + "dependencies": { + "postcss-selector-parser": "^6.0.9" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/postcss-font-variant": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/postcss-font-variant/-/postcss-font-variant-5.0.0.tgz", + "integrity": "sha512-1fmkBaCALD72CK2a9i468mA/+tr9/1cBxRRMXOUaZqO43oWPR5imcyPjXwuv7PXbCid4ndlP5zWhidQVVa3hmA==", + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/postcss-gap-properties": { + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/postcss-gap-properties/-/postcss-gap-properties-3.0.5.tgz", + "integrity": "sha512-IuE6gKSdoUNcvkGIqdtjtcMtZIFyXZhmFd5RUlg97iVEvp1BZKV5ngsAjCjrVy+14uhGBQl9tzmi1Qwq4kqVOg==", + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/postcss-image-set-function": { + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/postcss-image-set-function/-/postcss-image-set-function-4.0.7.tgz", + "integrity": "sha512-9T2r9rsvYzm5ndsBE8WgtrMlIT7VbtTfE7b3BQnudUqnBcBo7L758oc+o+pdj/dUV0l5wjwSdjeOH2DZtfv8qw==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/postcss-import": { + "version": "15.1.0", + "resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-15.1.0.tgz", + "integrity": "sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==", + "dependencies": { + "postcss-value-parser": "^4.0.0", + "read-cache": "^1.0.0", + "resolve": "^1.1.7" + }, + "engines": { + "node": ">=14.0.0" + }, + "peerDependencies": { + "postcss": "^8.0.0" + } + }, + "node_modules/postcss-initial": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-initial/-/postcss-initial-4.0.1.tgz", + "integrity": "sha512-0ueD7rPqX8Pn1xJIjay0AZeIuDoF+V+VvMt/uOnn+4ezUKhZM/NokDeP6DwMNyIoYByuN/94IQnt5FEkaN59xQ==", + "peerDependencies": { + "postcss": "^8.0.0" + } + }, + "node_modules/postcss-js": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-js/-/postcss-js-4.0.1.tgz", + "integrity": "sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==", + "dependencies": { + "camelcase-css": "^2.0.1" + }, + "engines": { + "node": "^12 || ^14 || >= 16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + "peerDependencies": { + "postcss": "^8.4.21" + } + }, + "node_modules/postcss-lab-function": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/postcss-lab-function/-/postcss-lab-function-4.2.1.tgz", + "integrity": "sha512-xuXll4isR03CrQsmxyz92LJB2xX9n+pZJ5jE9JgcnmsCammLyKdlzrBin+25dy6wIjfhJpKBAN80gsTlCgRk2w==", + "dependencies": { + "@csstools/postcss-progressive-custom-properties": "^1.1.0", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/postcss-load-config": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-4.0.1.tgz", + "integrity": "sha512-vEJIc8RdiBRu3oRAI0ymerOn+7rPuMvRXslTvZUKZonDHFIczxztIyJ1urxM1x9JXEikvpWWTUUqal5j/8QgvA==", + "dependencies": { + "lilconfig": "^2.0.5", + "yaml": "^2.1.1" + }, + "engines": { + "node": ">= 14" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + "peerDependencies": { + "postcss": ">=8.0.9", + "ts-node": ">=9.0.0" + }, + "peerDependenciesMeta": { + "postcss": { + "optional": true + }, + "ts-node": { + "optional": true + } + } + }, + "node_modules/postcss-load-config/node_modules/yaml": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.3.1.tgz", + "integrity": "sha512-2eHWfjaoXgTBC2jNM1LRef62VQa0umtvRiDSk6HSzW7RvS5YtkabJrwYLLEKWBc8a5U2PTSCs+dJjUTJdlHsWQ==", + "engines": { + "node": ">= 14" + } + }, + "node_modules/postcss-loader": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/postcss-loader/-/postcss-loader-6.2.1.tgz", + "integrity": "sha512-WbbYpmAaKcux/P66bZ40bpWsBucjx/TTgVVzRZ9yUO8yQfVBlameJ0ZGVaPfH64hNSBh63a+ICP5nqOpBA0w+Q==", + "dependencies": { + "cosmiconfig": "^7.0.0", + "klona": "^2.0.5", + "semver": "^7.3.5" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "postcss": "^7.0.0 || ^8.0.1", + "webpack": "^5.0.0" + } + }, + "node_modules/postcss-logical": { + "version": "5.0.4", + "resolved": "https://registry.npmjs.org/postcss-logical/-/postcss-logical-5.0.4.tgz", + "integrity": "sha512-RHXxplCeLh9VjinvMrZONq7im4wjWGlRJAqmAVLXyZaXwfDWP73/oq4NdIp+OZwhQUMj0zjqDfM5Fj7qby+B4g==", + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/postcss-media-minmax": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/postcss-media-minmax/-/postcss-media-minmax-5.0.0.tgz", + "integrity": "sha512-yDUvFf9QdFZTuCUg0g0uNSHVlJ5X1lSzDZjPSFaiCWvjgsvu8vEVxtahPrLMinIDEEGnx6cBe6iqdx5YWz08wQ==", + "engines": { + "node": ">=10.0.0" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/postcss-merge-longhand": { + "version": "5.1.7", + "resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-5.1.7.tgz", + "integrity": "sha512-YCI9gZB+PLNskrK0BB3/2OzPnGhPkBEwmwhfYk1ilBHYVAZB7/tkTHFBAnCrvBBOmeYyMYw3DMjT55SyxMBzjQ==", + "dependencies": { + "postcss-value-parser": "^4.2.0", + "stylehacks": "^5.1.1" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-merge-rules": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-5.1.4.tgz", + "integrity": "sha512-0R2IuYpgU93y9lhVbO/OylTtKMVcHb67zjWIfCiKR9rWL3GUk1677LAqD/BcHizukdZEjT8Ru3oHRoAYoJy44g==", + "dependencies": { + "browserslist": "^4.21.4", + "caniuse-api": "^3.0.0", + "cssnano-utils": "^3.1.0", + "postcss-selector-parser": "^6.0.5" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-minify-font-values": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-5.1.0.tgz", + "integrity": "sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-minify-gradients": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-5.1.1.tgz", + "integrity": "sha512-VGvXMTpCEo4qHTNSa9A0a3D+dxGFZCYwR6Jokk+/3oB6flu2/PnPXAh2x7x52EkY5xlIHLm+Le8tJxe/7TNhzw==", + "dependencies": { + "colord": "^2.9.1", + "cssnano-utils": "^3.1.0", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-minify-params": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-5.1.4.tgz", + "integrity": "sha512-+mePA3MgdmVmv6g+30rn57USjOGSAyuxUmkfiWpzalZ8aiBkdPYjXWtHuwJGm1v5Ojy0Z0LaSYhHaLJQB0P8Jw==", + "dependencies": { + "browserslist": "^4.21.4", + "cssnano-utils": "^3.1.0", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-minify-selectors": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-5.2.1.tgz", + "integrity": "sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg==", + "dependencies": { + "postcss-selector-parser": "^6.0.5" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-modules-extract-imports": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.0.0.tgz", + "integrity": "sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==", + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/postcss-modules-local-by-default": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.3.tgz", + "integrity": "sha512-2/u2zraspoACtrbFRnTijMiQtb4GW4BvatjaG/bCjYQo8kLTdevCUlwuBHx2sCnSyrI3x3qj4ZK1j5LQBgzmwA==", + "dependencies": { + "icss-utils": "^5.0.0", + "postcss-selector-parser": "^6.0.2", + "postcss-value-parser": "^4.1.0" + }, + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/postcss-modules-scope": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-3.0.0.tgz", + "integrity": "sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==", + "dependencies": { + "postcss-selector-parser": "^6.0.4" + }, + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/postcss-modules-values": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz", + "integrity": "sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==", + "dependencies": { + "icss-utils": "^5.0.0" + }, + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/postcss-nested": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-nested/-/postcss-nested-6.0.1.tgz", + "integrity": "sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==", + "dependencies": { + "postcss-selector-parser": "^6.0.11" + }, + "engines": { + "node": ">=12.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + "peerDependencies": { + "postcss": "^8.2.14" + } + }, + "node_modules/postcss-nesting": { + "version": "10.2.0", + "resolved": "https://registry.npmjs.org/postcss-nesting/-/postcss-nesting-10.2.0.tgz", + "integrity": "sha512-EwMkYchxiDiKUhlJGzWsD9b2zvq/r2SSubcRrgP+jujMXFzqvANLt16lJANC+5uZ6hjI7lpRmI6O8JIl+8l1KA==", + "dependencies": { + "@csstools/selector-specificity": "^2.0.0", + "postcss-selector-parser": "^6.0.10" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/postcss-normalize": { + "version": "10.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize/-/postcss-normalize-10.0.1.tgz", + "integrity": "sha512-+5w18/rDev5mqERcG3W5GZNMJa1eoYYNGo8gB7tEwaos0ajk3ZXAI4mHGcNT47NE+ZnZD1pEpUOFLvltIwmeJA==", + "dependencies": { + "@csstools/normalize.css": "*", + "postcss-browser-comments": "^4", + "sanitize.css": "*" + }, + "engines": { + "node": ">= 12" + }, + "peerDependencies": { + "browserslist": ">= 4", + "postcss": ">= 8" + } + }, + "node_modules/postcss-normalize-charset": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-5.1.0.tgz", + "integrity": "sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg==", + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-normalize-display-values": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-display-values/-/postcss-normalize-display-values-5.1.0.tgz", + "integrity": "sha512-WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-normalize-positions": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-5.1.1.tgz", + "integrity": "sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-normalize-repeat-style": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-5.1.1.tgz", + "integrity": "sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-normalize-string": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-5.1.0.tgz", + "integrity": "sha512-oYiIJOf4T9T1N4i+abeIc7Vgm/xPCGih4bZz5Nm0/ARVJ7K6xrDlLwvwqOydvyL3RHNf8qZk6vo3aatiw/go3w==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-normalize-timing-functions": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-5.1.0.tgz", + "integrity": "sha512-DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-normalize-unicode": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-5.1.1.tgz", + "integrity": "sha512-qnCL5jzkNUmKVhZoENp1mJiGNPcsJCs1aaRmURmeJGES23Z/ajaln+EPTD+rBeNkSryI+2WTdW+lwcVdOikrpA==", + "dependencies": { + "browserslist": "^4.21.4", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-normalize-url": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-5.1.0.tgz", + "integrity": "sha512-5upGeDO+PVthOxSmds43ZeMeZfKH+/DKgGRD7TElkkyS46JXAUhMzIKiCa7BabPeIy3AQcTkXwVVN7DbqsiCew==", + "dependencies": { + "normalize-url": "^6.0.1", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-normalize-whitespace": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-5.1.1.tgz", + "integrity": "sha512-83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-opacity-percentage": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/postcss-opacity-percentage/-/postcss-opacity-percentage-1.1.3.tgz", + "integrity": "sha512-An6Ba4pHBiDtyVpSLymUUERMo2cU7s+Obz6BTrS+gxkbnSBNKSuD0AVUc+CpBMrpVPKKfoVz0WQCX+Tnst0i4A==", + "funding": [ + { + "type": "kofi", + "url": "https://ko-fi.com/mrcgrtz" + }, + { + "type": "liberapay", + "url": "https://liberapay.com/mrcgrtz" + } + ], + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/postcss-ordered-values": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-5.1.3.tgz", + "integrity": "sha512-9UO79VUhPwEkzbb3RNpqqghc6lcYej1aveQteWY+4POIwlqkYE21HKWaLDF6lWNuqCobEAyTovVhtI32Rbv2RQ==", + "dependencies": { + "cssnano-utils": "^3.1.0", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-overflow-shorthand": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/postcss-overflow-shorthand/-/postcss-overflow-shorthand-3.0.4.tgz", + "integrity": "sha512-otYl/ylHK8Y9bcBnPLo3foYFLL6a6Ak+3EQBPOTR7luMYCOsiVTUk1iLvNf6tVPNGXcoL9Hoz37kpfriRIFb4A==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/postcss-page-break": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/postcss-page-break/-/postcss-page-break-3.0.4.tgz", + "integrity": "sha512-1JGu8oCjVXLa9q9rFTo4MbeeA5FMe00/9C7lN4va606Rdb+HkxXtXsmEDrIraQ11fGz/WvKWa8gMuCKkrXpTsQ==", + "peerDependencies": { + "postcss": "^8" + } + }, + "node_modules/postcss-place": { + "version": "7.0.5", + "resolved": "https://registry.npmjs.org/postcss-place/-/postcss-place-7.0.5.tgz", + "integrity": "sha512-wR8igaZROA6Z4pv0d+bvVrvGY4GVHihBCBQieXFY3kuSuMyOmEnnfFzHl/tQuqHZkfkIVBEbDvYcFfHmpSet9g==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/postcss-preset-env": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/postcss-preset-env/-/postcss-preset-env-7.8.3.tgz", + "integrity": "sha512-T1LgRm5uEVFSEF83vHZJV2z19lHg4yJuZ6gXZZkqVsqv63nlr6zabMH3l4Pc01FQCyfWVrh2GaUeCVy9Po+Aag==", + "dependencies": { + "@csstools/postcss-cascade-layers": "^1.1.1", + "@csstools/postcss-color-function": "^1.1.1", + "@csstools/postcss-font-format-keywords": "^1.0.1", + "@csstools/postcss-hwb-function": "^1.0.2", + "@csstools/postcss-ic-unit": "^1.0.1", + "@csstools/postcss-is-pseudo-class": "^2.0.7", + "@csstools/postcss-nested-calc": "^1.0.0", + "@csstools/postcss-normalize-display-values": "^1.0.1", + "@csstools/postcss-oklab-function": "^1.1.1", + "@csstools/postcss-progressive-custom-properties": "^1.3.0", + "@csstools/postcss-stepped-value-functions": "^1.0.1", + "@csstools/postcss-text-decoration-shorthand": "^1.0.0", + "@csstools/postcss-trigonometric-functions": "^1.0.2", + "@csstools/postcss-unset-value": "^1.0.2", + "autoprefixer": "^10.4.13", + "browserslist": "^4.21.4", + "css-blank-pseudo": "^3.0.3", + "css-has-pseudo": "^3.0.4", + "css-prefers-color-scheme": "^6.0.3", + "cssdb": "^7.1.0", + "postcss-attribute-case-insensitive": "^5.0.2", + "postcss-clamp": "^4.1.0", + "postcss-color-functional-notation": "^4.2.4", + "postcss-color-hex-alpha": "^8.0.4", + "postcss-color-rebeccapurple": "^7.1.1", + "postcss-custom-media": "^8.0.2", + "postcss-custom-properties": "^12.1.10", + "postcss-custom-selectors": "^6.0.3", + "postcss-dir-pseudo-class": "^6.0.5", + "postcss-double-position-gradients": "^3.1.2", + "postcss-env-function": "^4.0.6", + "postcss-focus-visible": "^6.0.4", + "postcss-focus-within": "^5.0.4", + "postcss-font-variant": "^5.0.0", + "postcss-gap-properties": "^3.0.5", + "postcss-image-set-function": "^4.0.7", + "postcss-initial": "^4.0.1", + "postcss-lab-function": "^4.2.1", + "postcss-logical": "^5.0.4", + "postcss-media-minmax": "^5.0.0", + "postcss-nesting": "^10.2.0", + "postcss-opacity-percentage": "^1.1.2", + "postcss-overflow-shorthand": "^3.0.4", + "postcss-page-break": "^3.0.4", + "postcss-place": "^7.0.5", + "postcss-pseudo-class-any-link": "^7.1.6", + "postcss-replace-overflow-wrap": "^4.0.0", + "postcss-selector-not": "^6.0.1", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/postcss-pseudo-class-any-link": { + "version": "7.1.6", + "resolved": "https://registry.npmjs.org/postcss-pseudo-class-any-link/-/postcss-pseudo-class-any-link-7.1.6.tgz", + "integrity": "sha512-9sCtZkO6f/5ML9WcTLcIyV1yz9D1rf0tWc+ulKcvV30s0iZKS/ONyETvoWsr6vnrmW+X+KmuK3gV/w5EWnT37w==", + "dependencies": { + "postcss-selector-parser": "^6.0.10" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/postcss-reduce-initial": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-5.1.2.tgz", + "integrity": "sha512-dE/y2XRaqAi6OvjzD22pjTUQ8eOfc6m/natGHgKFBK9DxFmIm69YmaRVQrGgFlEfc1HePIurY0TmDeROK05rIg==", + "dependencies": { + "browserslist": "^4.21.4", + "caniuse-api": "^3.0.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-reduce-transforms": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-5.1.0.tgz", + "integrity": "sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-replace-overflow-wrap": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-replace-overflow-wrap/-/postcss-replace-overflow-wrap-4.0.0.tgz", + "integrity": "sha512-KmF7SBPphT4gPPcKZc7aDkweHiKEEO8cla/GjcBK+ckKxiZslIu3C4GCRW3DNfL0o7yW7kMQu9xlZ1kXRXLXtw==", + "peerDependencies": { + "postcss": "^8.0.3" + } + }, + "node_modules/postcss-selector-not": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-selector-not/-/postcss-selector-not-6.0.1.tgz", + "integrity": "sha512-1i9affjAe9xu/y9uqWH+tD4r6/hDaXJruk8xn2x1vzxC2U3J3LKO3zJW4CyxlNhA56pADJ/djpEwpH1RClI2rQ==", + "dependencies": { + "postcss-selector-parser": "^6.0.10" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/postcss-selector-parser": { + "version": "6.0.13", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.13.tgz", + "integrity": "sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ==", + "dependencies": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/postcss-svgo": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-5.1.0.tgz", + "integrity": "sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA==", + "dependencies": { + "postcss-value-parser": "^4.2.0", + "svgo": "^2.7.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-svgo/node_modules/commander": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", + "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==", + "engines": { + "node": ">= 10" + } + }, + "node_modules/postcss-svgo/node_modules/css-tree": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.1.3.tgz", + "integrity": "sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==", + "dependencies": { + "mdn-data": "2.0.14", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/postcss-svgo/node_modules/mdn-data": { + "version": "2.0.14", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz", + "integrity": "sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==" + }, + "node_modules/postcss-svgo/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/postcss-svgo/node_modules/svgo": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/svgo/-/svgo-2.8.0.tgz", + "integrity": "sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg==", + "dependencies": { + "@trysound/sax": "0.2.0", + "commander": "^7.2.0", + "css-select": "^4.1.3", + "css-tree": "^1.1.3", + "csso": "^4.2.0", + "picocolors": "^1.0.0", + "stable": "^0.1.8" + }, + "bin": { + "svgo": "bin/svgo" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/postcss-unique-selectors": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-5.1.1.tgz", + "integrity": "sha512-5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA==", + "dependencies": { + "postcss-selector-parser": "^6.0.5" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-value-parser": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", + "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==" + }, + "node_modules/prelude-ls": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/pretty-bytes": { + "version": "5.6.0", + "resolved": "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-5.6.0.tgz", + "integrity": "sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==", + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/pretty-error": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/pretty-error/-/pretty-error-4.0.0.tgz", + "integrity": "sha512-AoJ5YMAcXKYxKhuJGdcvse+Voc6v1RgnsR3nWcYU7q4t6z0Q6T86sv5Zq8VIRbOWWFpvdGE83LtdSMNd+6Y0xw==", + "dependencies": { + "lodash": "^4.17.20", + "renderkid": "^3.0.0" + } + }, + "node_modules/pretty-format": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-27.5.1.tgz", + "integrity": "sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==", + "dependencies": { + "ansi-regex": "^5.0.1", + "ansi-styles": "^5.0.0", + "react-is": "^17.0.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/pretty-format/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/process-nextick-args": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==" + }, + "node_modules/promise": { + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/promise/-/promise-8.3.0.tgz", + "integrity": "sha512-rZPNPKTOYVNEEKFaq1HqTgOwZD+4/YHS5ukLzQCypkj+OkYx7iv0mA91lJlpPPZ8vMau3IIGj5Qlwrx+8iiSmg==", + "dependencies": { + "asap": "~2.0.6" + } + }, + "node_modules/prompts": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz", + "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==", + "dependencies": { + "kleur": "^3.0.3", + "sisteransi": "^1.0.5" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/prop-types": { + "version": "15.8.1", + "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", + "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", + "dependencies": { + "loose-envify": "^1.4.0", + "object-assign": "^4.1.1", + "react-is": "^16.13.1" + } + }, + "node_modules/prop-types/node_modules/react-is": { + "version": "16.13.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" + }, + "node_modules/proxy-addr": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", + "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", + "dependencies": { + "forwarded": "0.2.0", + "ipaddr.js": "1.9.1" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/proxy-addr/node_modules/ipaddr.js": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", + "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/psl": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/psl/-/psl-1.9.0.tgz", + "integrity": "sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==" + }, + "node_modules/punycode": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz", + "integrity": "sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==", + "engines": { + "node": ">=6" + } + }, + "node_modules/q": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/q/-/q-1.5.1.tgz", + "integrity": "sha512-kV/CThkXo6xyFEZUugw/+pIOywXcDbFYgSct5cT3gqlbkBE1SJdwy6UQoZvodiWF/ckQLZyDE/Bu1M6gVu5lVw==", + "engines": { + "node": ">=0.6.0", + "teleport": ">=0.2.0" + } + }, + "node_modules/qs": { + "version": "6.11.0", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz", + "integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==", + "dependencies": { + "side-channel": "^1.0.4" + }, + "engines": { + "node": ">=0.6" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/querystringify": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/querystringify/-/querystringify-2.2.0.tgz", + "integrity": "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==" + }, + "node_modules/queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/raf": { + "version": "3.4.1", + "resolved": "https://registry.npmjs.org/raf/-/raf-3.4.1.tgz", + "integrity": "sha512-Sq4CW4QhwOHE8ucn6J34MqtZCeWFP2aQSmrlroYgqAV1PjStIhJXxYuTgUIfkEk7zTLjmIjLmU5q+fbD1NnOJA==", + "dependencies": { + "performance-now": "^2.1.0" + } + }, + "node_modules/randombytes": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", + "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", + "dependencies": { + "safe-buffer": "^5.1.0" + } + }, + "node_modules/range-parser": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", + "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/raw-body": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.1.tgz", + "integrity": "sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==", + "dependencies": { + "bytes": "3.1.2", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "unpipe": "1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/raw-body/node_modules/bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/raw-body/node_modules/iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react/-/react-18.2.0.tgz", + "integrity": "sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==", + "dependencies": { + "loose-envify": "^1.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-app-polyfill": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/react-app-polyfill/-/react-app-polyfill-3.0.0.tgz", + "integrity": "sha512-sZ41cxiU5llIB003yxxQBYrARBqe0repqPTTYBTmMqTz9szeBbE37BehCE891NZsmdZqqP+xWKdT3eo3vOzN8w==", + "dependencies": { + "core-js": "^3.19.2", + "object-assign": "^4.1.1", + "promise": "^8.1.0", + "raf": "^3.4.1", + "regenerator-runtime": "^0.13.9", + "whatwg-fetch": "^3.6.2" + }, + "engines": { + "node": ">=14" + } + }, + "node_modules/react-dev-utils": { + "version": "12.0.1", + "resolved": "https://registry.npmjs.org/react-dev-utils/-/react-dev-utils-12.0.1.tgz", + "integrity": "sha512-84Ivxmr17KjUupyqzFode6xKhjwuEJDROWKJy/BthkL7Wn6NJ8h4WE6k/exAv6ImS+0oZLRRW5j/aINMHyeGeQ==", + "dependencies": { + "@babel/code-frame": "^7.16.0", + "address": "^1.1.2", + "browserslist": "^4.18.1", + "chalk": "^4.1.2", + "cross-spawn": "^7.0.3", + "detect-port-alt": "^1.1.6", + "escape-string-regexp": "^4.0.0", + "filesize": "^8.0.6", + "find-up": "^5.0.0", + "fork-ts-checker-webpack-plugin": "^6.5.0", + "global-modules": "^2.0.0", + "globby": "^11.0.4", + "gzip-size": "^6.0.0", + "immer": "^9.0.7", + "is-root": "^2.1.0", + "loader-utils": "^3.2.0", + "open": "^8.4.0", + "pkg-up": "^3.1.0", + "prompts": "^2.4.2", + "react-error-overlay": "^6.0.11", + "recursive-readdir": "^2.2.2", + "shell-quote": "^1.7.3", + "strip-ansi": "^6.0.1", + "text-table": "^0.2.0" + }, + "engines": { + "node": ">=14" + } + }, + "node_modules/react-dev-utils/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/react-dev-utils/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/react-dev-utils/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/react-dev-utils/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/react-dev-utils/node_modules/escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/react-dev-utils/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/react-dev-utils/node_modules/loader-utils": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-3.2.1.tgz", + "integrity": "sha512-ZvFw1KWS3GVyYBYb7qkmRM/WwL2TQQBxgCK62rlvm4WpVQ23Nb4tYjApUlfjrEGvOs7KHEsmyUn75OHZrJMWPw==", + "engines": { + "node": ">= 12.13.0" + } + }, + "node_modules/react-dev-utils/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/react-dom": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.2.0.tgz", + "integrity": "sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==", + "dependencies": { + "loose-envify": "^1.1.0", + "scheduler": "^0.23.0" + }, + "peerDependencies": { + "react": "^18.2.0" + } + }, + "node_modules/react-error-overlay": { + "version": "6.0.11", + "resolved": "https://registry.npmjs.org/react-error-overlay/-/react-error-overlay-6.0.11.tgz", + "integrity": "sha512-/6UZ2qgEyH2aqzYZgQPxEnz33NJ2gNsnHA2o5+o4wW9bLM/JYQitNP9xPhsXwC08hMMovfGe/8retsdDsczPRg==" + }, + "node_modules/react-is": { + "version": "17.0.2", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz", + "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==" + }, + "node_modules/react-refresh": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.11.0.tgz", + "integrity": "sha512-F27qZr8uUqwhWZboondsPx8tnC3Ct3SxZA3V5WyEvujRyyNv0VYPhoBg1gZ8/MV5tubQp76Trw8lTv9hzRBa+A==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-scripts": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/react-scripts/-/react-scripts-5.0.1.tgz", + "integrity": "sha512-8VAmEm/ZAwQzJ+GOMLbBsTdDKOpuZh7RPs0UymvBR2vRk4iZWCskjbFnxqjrzoIvlNNRZ3QJFx6/qDSi6zSnaQ==", + "dependencies": { + "@babel/core": "^7.16.0", + "@pmmmwh/react-refresh-webpack-plugin": "^0.5.3", + "@svgr/webpack": "^5.5.0", + "babel-jest": "^27.4.2", + "babel-loader": "^8.2.3", + "babel-plugin-named-asset-import": "^0.3.8", + "babel-preset-react-app": "^10.0.1", + "bfj": "^7.0.2", + "browserslist": "^4.18.1", + "camelcase": "^6.2.1", + "case-sensitive-paths-webpack-plugin": "^2.4.0", + "css-loader": "^6.5.1", + "css-minimizer-webpack-plugin": "^3.2.0", + "dotenv": "^10.0.0", + "dotenv-expand": "^5.1.0", + "eslint": "^8.3.0", + "eslint-config-react-app": "^7.0.1", + "eslint-webpack-plugin": "^3.1.1", + "file-loader": "^6.2.0", + "fs-extra": "^10.0.0", + "html-webpack-plugin": "^5.5.0", + "identity-obj-proxy": "^3.0.0", + "jest": "^27.4.3", + "jest-resolve": "^27.4.2", + "jest-watch-typeahead": "^1.0.0", + "mini-css-extract-plugin": "^2.4.5", + "postcss": "^8.4.4", + "postcss-flexbugs-fixes": "^5.0.2", + "postcss-loader": "^6.2.1", + "postcss-normalize": "^10.0.1", + "postcss-preset-env": "^7.0.1", + "prompts": "^2.4.2", + "react-app-polyfill": "^3.0.0", + "react-dev-utils": "^12.0.1", + "react-refresh": "^0.11.0", + "resolve": "^1.20.0", + "resolve-url-loader": "^4.0.0", + "sass-loader": "^12.3.0", + "semver": "^7.3.5", + "source-map-loader": "^3.0.0", + "style-loader": "^3.3.1", + "tailwindcss": "^3.0.2", + "terser-webpack-plugin": "^5.2.5", + "webpack": "^5.64.4", + "webpack-dev-server": "^4.6.0", + "webpack-manifest-plugin": "^4.0.2", + "workbox-webpack-plugin": "^6.4.1" + }, + "bin": { + "react-scripts": "bin/react-scripts.js" + }, + "engines": { + "node": ">=14.0.0" + }, + "optionalDependencies": { + "fsevents": "^2.3.2" + }, + "peerDependencies": { + "react": ">= 16", + "typescript": "^3.2.1 || ^4" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/read-cache": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz", + "integrity": "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==", + "dependencies": { + "pify": "^2.3.0" + } + }, + "node_modules/readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "dependencies": { + "picomatch": "^2.2.1" + }, + "engines": { + "node": ">=8.10.0" + } + }, + "node_modules/recursive-readdir": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/recursive-readdir/-/recursive-readdir-2.2.3.tgz", + "integrity": "sha512-8HrF5ZsXk5FAH9dgsx3BlUer73nIhuj+9OrQwEbLTPOBzGkL1lsFCR01am+v+0m2Cmbs1nP12hLDl5FA7EszKA==", + "dependencies": { + "minimatch": "^3.0.5" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/redent": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/redent/-/redent-3.0.0.tgz", + "integrity": "sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==", + "dependencies": { + "indent-string": "^4.0.0", + "strip-indent": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/regenerate": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz", + "integrity": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==" + }, + "node_modules/regenerate-unicode-properties": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.0.tgz", + "integrity": "sha512-d1VudCLoIGitcU/hEg2QqvyGZQmdC0Lf8BqdOMXGFSvJP4bNV1+XqbPQeHHLD51Jh4QJJ225dlIFvY4Ly6MXmQ==", + "dependencies": { + "regenerate": "^1.4.2" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/regenerator-runtime": { + "version": "0.13.11", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz", + "integrity": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==" + }, + "node_modules/regenerator-transform": { + "version": "0.15.1", + "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.1.tgz", + "integrity": "sha512-knzmNAcuyxV+gQCufkYcvOqX/qIIfHLv0u5x79kRxuGojfYVky1f15TzZEu2Avte8QGepvUNTnLskf8E6X6Vyg==", + "dependencies": { + "@babel/runtime": "^7.8.4" + } + }, + "node_modules/regex-parser": { + "version": "2.2.11", + "resolved": "https://registry.npmjs.org/regex-parser/-/regex-parser-2.2.11.tgz", + "integrity": "sha512-jbD/FT0+9MBU2XAZluI7w2OBs1RBi6p9M83nkoZayQXXU9e8Robt69FcZc7wU4eJD/YFTjn1JdCk3rbMJajz8Q==" + }, + "node_modules/regexp.prototype.flags": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.0.tgz", + "integrity": "sha512-0SutC3pNudRKgquxGoRGIz946MZVHqbNfPjBdxeOhBrdgDKlRoXmYLQN9xRbrR09ZXWeGAdPuif7egofn6v5LA==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "functions-have-names": "^1.2.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/regexpu-core": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-5.3.2.tgz", + "integrity": "sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==", + "dependencies": { + "@babel/regjsgen": "^0.8.0", + "regenerate": "^1.4.2", + "regenerate-unicode-properties": "^10.1.0", + "regjsparser": "^0.9.1", + "unicode-match-property-ecmascript": "^2.0.0", + "unicode-match-property-value-ecmascript": "^2.1.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/regjsparser": { + "version": "0.9.1", + "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.9.1.tgz", + "integrity": "sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==", + "dependencies": { + "jsesc": "~0.5.0" + }, + "bin": { + "regjsparser": "bin/parser" + } + }, + "node_modules/regjsparser/node_modules/jsesc": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz", + "integrity": "sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==", + "bin": { + "jsesc": "bin/jsesc" + } + }, + "node_modules/relateurl": { + "version": "0.2.7", + "resolved": "https://registry.npmjs.org/relateurl/-/relateurl-0.2.7.tgz", + "integrity": "sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog==", + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/renderkid": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/renderkid/-/renderkid-3.0.0.tgz", + "integrity": "sha512-q/7VIQA8lmM1hF+jn+sFSPWGlMkSAeNYcPLmDQx2zzuiDfaLrOmumR8iaUKlenFgh0XRPIUeSPlH3A+AW3Z5pg==", + "dependencies": { + "css-select": "^4.1.3", + "dom-converter": "^0.2.0", + "htmlparser2": "^6.1.0", + "lodash": "^4.17.21", + "strip-ansi": "^6.0.1" + } + }, + "node_modules/require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/require-from-string": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", + "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/requires-port": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", + "integrity": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==" + }, + "node_modules/resolve": { + "version": "1.22.2", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.2.tgz", + "integrity": "sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g==", + "dependencies": { + "is-core-module": "^2.11.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/resolve-cwd": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz", + "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==", + "dependencies": { + "resolve-from": "^5.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/resolve-from": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", + "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", + "engines": { + "node": ">=8" + } + }, + "node_modules/resolve-url-loader": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-url-loader/-/resolve-url-loader-4.0.0.tgz", + "integrity": "sha512-05VEMczVREcbtT7Bz+C+96eUO5HDNvdthIiMB34t7FcF8ehcu4wC0sSgPUubs3XW2Q3CNLJk/BJrCU9wVRymiA==", + "dependencies": { + "adjust-sourcemap-loader": "^4.0.0", + "convert-source-map": "^1.7.0", + "loader-utils": "^2.0.0", + "postcss": "^7.0.35", + "source-map": "0.6.1" + }, + "engines": { + "node": ">=8.9" + }, + "peerDependencies": { + "rework": "1.0.1", + "rework-visit": "1.0.0" + }, + "peerDependenciesMeta": { + "rework": { + "optional": true + }, + "rework-visit": { + "optional": true + } + } + }, + "node_modules/resolve-url-loader/node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==" + }, + "node_modules/resolve-url-loader/node_modules/postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/resolve-url-loader/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/resolve.exports": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/resolve.exports/-/resolve.exports-1.1.1.tgz", + "integrity": "sha512-/NtpHNDN7jWhAaQ9BvBUYZ6YTXsRBgfqWFWP7BZBaoMJO/I3G5OFzvTuWNlZC3aPjins1F+TNrLKsGbH4rfsRQ==", + "engines": { + "node": ">=10" + } + }, + "node_modules/retry": { + "version": "0.13.1", + "resolved": "https://registry.npmjs.org/retry/-/retry-0.13.1.tgz", + "integrity": "sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==", + "engines": { + "node": ">= 4" + } + }, + "node_modules/reusify": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "engines": { + "iojs": ">=1.0.0", + "node": ">=0.10.0" + } + }, + "node_modules/rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/rollup": { + "version": "2.79.1", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-2.79.1.tgz", + "integrity": "sha512-uKxbd0IhMZOhjAiD5oAFp7BqvkA4Dv47qpOCtaNvng4HBwdbWtdOh8f5nZNuk2rp51PMGk3bzfWu5oayNEuYnw==", + "bin": { + "rollup": "dist/bin/rollup" + }, + "engines": { + "node": ">=10.0.0" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, + "node_modules/rollup-plugin-terser": { + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/rollup-plugin-terser/-/rollup-plugin-terser-7.0.2.tgz", + "integrity": "sha512-w3iIaU4OxcF52UUXiZNsNeuXIMDvFrr+ZXK6bFZ0Q60qyVfq4uLptoS4bbq3paG3x216eQllFZX7zt6TIImguQ==", + "deprecated": "This package has been deprecated and is no longer maintained. Please use @rollup/plugin-terser", + "dependencies": { + "@babel/code-frame": "^7.10.4", + "jest-worker": "^26.2.1", + "serialize-javascript": "^4.0.0", + "terser": "^5.0.0" + }, + "peerDependencies": { + "rollup": "^2.0.0" + } + }, + "node_modules/rollup-plugin-terser/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/rollup-plugin-terser/node_modules/jest-worker": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-26.6.2.tgz", + "integrity": "sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==", + "dependencies": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^7.0.0" + }, + "engines": { + "node": ">= 10.13.0" + } + }, + "node_modules/rollup-plugin-terser/node_modules/serialize-javascript": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-4.0.0.tgz", + "integrity": "sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw==", + "dependencies": { + "randombytes": "^2.1.0" + } + }, + "node_modules/rollup-plugin-terser/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "dependencies": { + "queue-microtask": "^1.2.2" + } + }, + "node_modules/safe-array-concat": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.0.0.tgz", + "integrity": "sha512-9dVEFruWIsnie89yym+xWTAYASdpw3CJV7Li/6zBewGf9z2i1j31rP6jnY0pHEO4QZh6N0K11bFjWmdR8UGdPQ==", + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.2.0", + "has-symbols": "^1.0.3", + "isarray": "^2.0.5" + }, + "engines": { + "node": ">=0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/safe-regex-test": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.0.tgz", + "integrity": "sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==", + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.3", + "is-regex": "^1.1.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" + }, + "node_modules/sanitize.css": { + "version": "13.0.0", + "resolved": "https://registry.npmjs.org/sanitize.css/-/sanitize.css-13.0.0.tgz", + "integrity": "sha512-ZRwKbh/eQ6w9vmTjkuG0Ioi3HBwPFce0O+v//ve+aOq1oeCy7jMV2qzzAlpsNuqpqCBjjriM1lbtZbF/Q8jVyA==" + }, + "node_modules/sass-loader": { + "version": "12.6.0", + "resolved": "https://registry.npmjs.org/sass-loader/-/sass-loader-12.6.0.tgz", + "integrity": "sha512-oLTaH0YCtX4cfnJZxKSLAyglED0naiYfNG1iXfU5w1LNZ+ukoA5DtyDIN5zmKVZwYNJP4KRc5Y3hkWga+7tYfA==", + "dependencies": { + "klona": "^2.0.4", + "neo-async": "^2.6.2" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "fibers": ">= 3.1.0", + "node-sass": "^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0", + "sass": "^1.3.0", + "sass-embedded": "*", + "webpack": "^5.0.0" + }, + "peerDependenciesMeta": { + "fibers": { + "optional": true + }, + "node-sass": { + "optional": true + }, + "sass": { + "optional": true + }, + "sass-embedded": { + "optional": true + } + } + }, + "node_modules/sax": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz", + "integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==" + }, + "node_modules/saxes": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/saxes/-/saxes-5.0.1.tgz", + "integrity": "sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw==", + "dependencies": { + "xmlchars": "^2.2.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/scheduler": { + "version": "0.23.0", + "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.0.tgz", + "integrity": "sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==", + "dependencies": { + "loose-envify": "^1.1.0" + } + }, + "node_modules/schema-utils": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.2.0.tgz", + "integrity": "sha512-0zTyLGyDJYd/MBxG1AhJkKa6fpEBds4OQO2ut0w7OYG+ZGhGea09lijvzsqegYSik88zc7cUtIlnnO+/BvD6gQ==", + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/select-hose": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/select-hose/-/select-hose-2.0.0.tgz", + "integrity": "sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg==" + }, + "node_modules/selfsigned": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/selfsigned/-/selfsigned-2.1.1.tgz", + "integrity": "sha512-GSL3aowiF7wa/WtSFwnUrludWFoNhftq8bUkH9pkzjpN2XSPOAYEgg6e0sS9s0rZwgJzJiQRPU18A6clnoW5wQ==", + "dependencies": { + "node-forge": "^1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/semver": { + "version": "7.5.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.1.tgz", + "integrity": "sha512-Wvss5ivl8TMRZXXESstBA4uR5iXgEN/VC5/sOcuXdVLzcdkz4HWetIoRfG5gb5X+ij/G9rw9YoGn3QoQ8OCSpw==", + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/semver/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/semver/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" + }, + "node_modules/send": { + "version": "0.18.0", + "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", + "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", + "dependencies": { + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "mime": "1.6.0", + "ms": "2.1.3", + "on-finished": "2.4.1", + "range-parser": "~1.2.1", + "statuses": "2.0.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/send/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/send/node_modules/debug/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + }, + "node_modules/send/node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" + }, + "node_modules/serialize-javascript": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.1.tgz", + "integrity": "sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w==", + "dependencies": { + "randombytes": "^2.1.0" + } + }, + "node_modules/serve-index": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/serve-index/-/serve-index-1.9.1.tgz", + "integrity": "sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw==", + "dependencies": { + "accepts": "~1.3.4", + "batch": "0.6.1", + "debug": "2.6.9", + "escape-html": "~1.0.3", + "http-errors": "~1.6.2", + "mime-types": "~2.1.17", + "parseurl": "~1.3.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/serve-index/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/serve-index/node_modules/depd": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", + "integrity": "sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/serve-index/node_modules/http-errors": { + "version": "1.6.3", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz", + "integrity": "sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A==", + "dependencies": { + "depd": "~1.1.2", + "inherits": "2.0.3", + "setprototypeof": "1.1.0", + "statuses": ">= 1.4.0 < 2" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/serve-index/node_modules/inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==" + }, + "node_modules/serve-index/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + }, + "node_modules/serve-index/node_modules/setprototypeof": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz", + "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==" + }, + "node_modules/serve-index/node_modules/statuses": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", + "integrity": "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/serve-static": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", + "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", + "dependencies": { + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "parseurl": "~1.3.3", + "send": "0.18.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/setprototypeof": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", + "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==" + }, + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "engines": { + "node": ">=8" + } + }, + "node_modules/shell-quote": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.8.1.tgz", + "integrity": "sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/side-channel": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", + "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", + "dependencies": { + "call-bind": "^1.0.0", + "get-intrinsic": "^1.0.2", + "object-inspect": "^1.9.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/signal-exit": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==" + }, + "node_modules/sisteransi": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", + "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==" + }, + "node_modules/slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "engines": { + "node": ">=8" + } + }, + "node_modules/sockjs": { + "version": "0.3.24", + "resolved": "https://registry.npmjs.org/sockjs/-/sockjs-0.3.24.tgz", + "integrity": "sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==", + "dependencies": { + "faye-websocket": "^0.11.3", + "uuid": "^8.3.2", + "websocket-driver": "^0.7.4" + } + }, + "node_modules/source-list-map": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/source-list-map/-/source-list-map-2.0.1.tgz", + "integrity": "sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==" + }, + "node_modules/source-map": { + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz", + "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==", + "engines": { + "node": ">= 8" + } + }, + "node_modules/source-map-js": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", + "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-map-loader": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/source-map-loader/-/source-map-loader-3.0.2.tgz", + "integrity": "sha512-BokxPoLjyl3iOrgkWaakaxqnelAJSS+0V+De0kKIq6lyWrXuiPgYTGp6z3iHmqljKAaLXwZa+ctD8GccRJeVvg==", + "dependencies": { + "abab": "^2.0.5", + "iconv-lite": "^0.6.3", + "source-map-js": "^1.0.1" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.0.0" + } + }, + "node_modules/source-map-support": { + "version": "0.5.21", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", + "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", + "dependencies": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + } + }, + "node_modules/source-map-support/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sourcemap-codec": { + "version": "1.4.8", + "resolved": "https://registry.npmjs.org/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz", + "integrity": "sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==", + "deprecated": "Please use @jridgewell/sourcemap-codec instead" + }, + "node_modules/spdy": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/spdy/-/spdy-4.0.2.tgz", + "integrity": "sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==", + "dependencies": { + "debug": "^4.1.0", + "handle-thing": "^2.0.0", + "http-deceiver": "^1.2.7", + "select-hose": "^2.0.0", + "spdy-transport": "^3.0.0" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/spdy-transport": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/spdy-transport/-/spdy-transport-3.0.0.tgz", + "integrity": "sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==", + "dependencies": { + "debug": "^4.1.0", + "detect-node": "^2.0.4", + "hpack.js": "^2.1.6", + "obuf": "^1.1.2", + "readable-stream": "^3.0.6", + "wbuf": "^1.7.3" + } + }, + "node_modules/sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==" + }, + "node_modules/stable": { + "version": "0.1.8", + "resolved": "https://registry.npmjs.org/stable/-/stable-0.1.8.tgz", + "integrity": "sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==", + "deprecated": "Modern JS already guarantees Array#sort() is a stable sort, so this library is deprecated. See the compatibility table on MDN: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/sort#browser_compatibility" + }, + "node_modules/stack-utils": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.6.tgz", + "integrity": "sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==", + "dependencies": { + "escape-string-regexp": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/stack-utils/node_modules/escape-string-regexp": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", + "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", + "engines": { + "node": ">=8" + } + }, + "node_modules/stackframe": { + "version": "1.3.4", + "resolved": "https://registry.npmjs.org/stackframe/-/stackframe-1.3.4.tgz", + "integrity": "sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw==" + }, + "node_modules/statuses": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", + "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/stop-iteration-iterator": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/stop-iteration-iterator/-/stop-iteration-iterator-1.0.0.tgz", + "integrity": "sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ==", + "dependencies": { + "internal-slot": "^1.0.4" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/string_decoder": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", + "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", + "dependencies": { + "safe-buffer": "~5.2.0" + } + }, + "node_modules/string-length": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz", + "integrity": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==", + "dependencies": { + "char-regex": "^1.0.2", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/string-natural-compare": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/string-natural-compare/-/string-natural-compare-3.0.1.tgz", + "integrity": "sha512-n3sPwynL1nwKi3WJ6AIsClwBMa0zTi54fn2oLU6ndfTSIO05xaznjSf15PcBZU6FNWbmN5Q6cxT4V5hGvB4taw==" + }, + "node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/string-width/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" + }, + "node_modules/string.prototype.matchall": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.8.tgz", + "integrity": "sha512-6zOCOcJ+RJAQshcTvXPHoxoQGONa3e/Lqx90wUA+wEzX78sg5Bo+1tQo4N0pohS0erG9qtCqJDjNCQBjeWVxyg==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4", + "get-intrinsic": "^1.1.3", + "has-symbols": "^1.0.3", + "internal-slot": "^1.0.3", + "regexp.prototype.flags": "^1.4.3", + "side-channel": "^1.0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.trim": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.7.tgz", + "integrity": "sha512-p6TmeT1T3411M8Cgg9wBTMRtY2q9+PNy9EV1i2lIXUN/btt763oIfxwN3RR8VU6wHX8j/1CFy0L+YuThm6bgOg==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.trimend": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.6.tgz", + "integrity": "sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.trimstart": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.6.tgz", + "integrity": "sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/stringify-object": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/stringify-object/-/stringify-object-3.3.0.tgz", + "integrity": "sha512-rHqiFh1elqCQ9WPLIC8I0Q/g/wj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw==", + "dependencies": { + "get-own-enumerable-property-symbols": "^3.0.0", + "is-obj": "^1.0.1", + "is-regexp": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-bom": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz", + "integrity": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==", + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-comments": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/strip-comments/-/strip-comments-2.0.1.tgz", + "integrity": "sha512-ZprKx+bBLXv067WTCALv8SSz5l2+XhpYCsVtSqlMnkAXMWDq+/ekVbl1ghqP9rUHTzv6sm/DwCOiYutU/yp1fw==", + "engines": { + "node": ">=10" + } + }, + "node_modules/strip-final-newline": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", + "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", + "engines": { + "node": ">=6" + } + }, + "node_modules/strip-indent": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-3.0.0.tgz", + "integrity": "sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==", + "dependencies": { + "min-indent": "^1.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/style-loader": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/style-loader/-/style-loader-3.3.3.tgz", + "integrity": "sha512-53BiGLXAcll9maCYtZi2RCQZKa8NQQai5C4horqKyRmHj9H7QmcUyucrH+4KW/gBQbXM2AsB0axoEcFZPlfPcw==", + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.0.0" + } + }, + "node_modules/stylehacks": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/stylehacks/-/stylehacks-5.1.1.tgz", + "integrity": "sha512-sBpcd5Hx7G6seo7b1LkpttvTz7ikD0LlH5RmdcBNb6fFR0Fl7LQwHDFr300q4cwUqi+IYrFGmsIHieMBfnN/Bw==", + "dependencies": { + "browserslist": "^4.21.4", + "postcss-selector-parser": "^6.0.4" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/sucrase": { + "version": "3.32.0", + "resolved": "https://registry.npmjs.org/sucrase/-/sucrase-3.32.0.tgz", + "integrity": "sha512-ydQOU34rpSyj2TGyz4D2p8rbktIOZ8QY9s+DGLvFU1i5pWJE8vkpruCjGCMHsdXwnD7JDcS+noSwM/a7zyNFDQ==", + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.2", + "commander": "^4.0.0", + "glob": "7.1.6", + "lines-and-columns": "^1.1.6", + "mz": "^2.7.0", + "pirates": "^4.0.1", + "ts-interface-checker": "^0.1.9" + }, + "bin": { + "sucrase": "bin/sucrase", + "sucrase-node": "bin/sucrase-node" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/sucrase/node_modules/commander": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz", + "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==", + "engines": { + "node": ">= 6" + } + }, + "node_modules/sucrase/node_modules/glob": { + "version": "7.1.6", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz", + "integrity": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==", + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/supports-hyperlinks": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-2.3.0.tgz", + "integrity": "sha512-RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA==", + "dependencies": { + "has-flag": "^4.0.0", + "supports-color": "^7.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/supports-hyperlinks/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/supports-hyperlinks/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/svg-parser": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/svg-parser/-/svg-parser-2.0.4.tgz", + "integrity": "sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ==" + }, + "node_modules/svgo": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/svgo/-/svgo-1.3.2.tgz", + "integrity": "sha512-yhy/sQYxR5BkC98CY7o31VGsg014AKLEPxdfhora76l36hD9Rdy5NZA/Ocn6yayNPgSamYdtX2rFJdcv07AYVw==", + "deprecated": "This SVGO version is no longer supported. Upgrade to v2.x.x.", + "dependencies": { + "chalk": "^2.4.1", + "coa": "^2.0.2", + "css-select": "^2.0.0", + "css-select-base-adapter": "^0.1.1", + "css-tree": "1.0.0-alpha.37", + "csso": "^4.0.2", + "js-yaml": "^3.13.1", + "mkdirp": "~0.5.1", + "object.values": "^1.1.0", + "sax": "~1.2.4", + "stable": "^0.1.8", + "unquote": "~1.1.1", + "util.promisify": "~1.0.0" + }, + "bin": { + "svgo": "bin/svgo" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/svgo/node_modules/css-select": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-2.1.0.tgz", + "integrity": "sha512-Dqk7LQKpwLoH3VovzZnkzegqNSuAziQyNZUcrdDM401iY+R5NkGBXGmtO05/yaXQziALuPogeG0b7UAgjnTJTQ==", + "dependencies": { + "boolbase": "^1.0.0", + "css-what": "^3.2.1", + "domutils": "^1.7.0", + "nth-check": "^1.0.2" + } + }, + "node_modules/svgo/node_modules/css-what": { + "version": "3.4.2", + "resolved": "https://registry.npmjs.org/css-what/-/css-what-3.4.2.tgz", + "integrity": "sha512-ACUm3L0/jiZTqfzRM3Hi9Q8eZqd6IK37mMWPLz9PJxkLWllYeRf+EHUSHYEtFop2Eqytaq1FizFVh7XfBnXCDQ==", + "engines": { + "node": ">= 6" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } + }, + "node_modules/svgo/node_modules/dom-serializer": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.2.2.tgz", + "integrity": "sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==", + "dependencies": { + "domelementtype": "^2.0.1", + "entities": "^2.0.0" + } + }, + "node_modules/svgo/node_modules/domutils": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-1.7.0.tgz", + "integrity": "sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==", + "dependencies": { + "dom-serializer": "0", + "domelementtype": "1" + } + }, + "node_modules/svgo/node_modules/domutils/node_modules/domelementtype": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.1.tgz", + "integrity": "sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==" + }, + "node_modules/svgo/node_modules/nth-check": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-1.0.2.tgz", + "integrity": "sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg==", + "dependencies": { + "boolbase": "~1.0.0" + } + }, + "node_modules/symbol-tree": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz", + "integrity": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==" + }, + "node_modules/tailwindcss": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.3.2.tgz", + "integrity": "sha512-9jPkMiIBXvPc2KywkraqsUfbfj+dHDb+JPWtSJa9MLFdrPyazI7q6WX2sUrm7R9eVR7qqv3Pas7EvQFzxKnI6w==", + "dependencies": { + "@alloc/quick-lru": "^5.2.0", + "arg": "^5.0.2", + "chokidar": "^3.5.3", + "didyoumean": "^1.2.2", + "dlv": "^1.1.3", + "fast-glob": "^3.2.12", + "glob-parent": "^6.0.2", + "is-glob": "^4.0.3", + "jiti": "^1.18.2", + "lilconfig": "^2.1.0", + "micromatch": "^4.0.5", + "normalize-path": "^3.0.0", + "object-hash": "^3.0.0", + "picocolors": "^1.0.0", + "postcss": "^8.4.23", + "postcss-import": "^15.1.0", + "postcss-js": "^4.0.1", + "postcss-load-config": "^4.0.1", + "postcss-nested": "^6.0.1", + "postcss-selector-parser": "^6.0.11", + "postcss-value-parser": "^4.2.0", + "resolve": "^1.22.2", + "sucrase": "^3.32.0" + }, + "bin": { + "tailwind": "lib/cli.js", + "tailwindcss": "lib/cli.js" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/tapable": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", + "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", + "engines": { + "node": ">=6" + } + }, + "node_modules/temp-dir": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/temp-dir/-/temp-dir-2.0.0.tgz", + "integrity": "sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg==", + "engines": { + "node": ">=8" + } + }, + "node_modules/tempy": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/tempy/-/tempy-0.6.0.tgz", + "integrity": "sha512-G13vtMYPT/J8A4X2SjdtBTphZlrp1gKv6hZiOjw14RCWg6GbHuQBGtjlx75xLbYV/wEc0D7G5K4rxKP/cXk8Bw==", + "dependencies": { + "is-stream": "^2.0.0", + "temp-dir": "^2.0.0", + "type-fest": "^0.16.0", + "unique-string": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/tempy/node_modules/type-fest": { + "version": "0.16.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.16.0.tgz", + "integrity": "sha512-eaBzG6MxNzEn9kiwvtre90cXaNLkmadMWa1zQMs3XORCXNbsH/OewwbxC5ia9dCxIxnTAsSxXJaa/p5y8DlvJg==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/terminal-link": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/terminal-link/-/terminal-link-2.1.1.tgz", + "integrity": "sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==", + "dependencies": { + "ansi-escapes": "^4.2.1", + "supports-hyperlinks": "^2.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/terser": { + "version": "5.17.7", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.17.7.tgz", + "integrity": "sha512-/bi0Zm2C6VAexlGgLlVxA0P2lru/sdLyfCVaRMfKVo9nWxbmz7f/sD8VPybPeSUJaJcwmCJis9pBIhcVcG1QcQ==", + "dependencies": { + "@jridgewell/source-map": "^0.3.3", + "acorn": "^8.8.2", + "commander": "^2.20.0", + "source-map-support": "~0.5.20" + }, + "bin": { + "terser": "bin/terser" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/terser-webpack-plugin": { + "version": "5.3.9", + "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.9.tgz", + "integrity": "sha512-ZuXsqE07EcggTWQjXUj+Aot/OMcD0bMKGgF63f7UxYcu5/AJF53aIpK1YoP5xR9l6s/Hy2b+t1AM0bLNPRuhwA==", + "dependencies": { + "@jridgewell/trace-mapping": "^0.3.17", + "jest-worker": "^27.4.5", + "schema-utils": "^3.1.1", + "serialize-javascript": "^6.0.1", + "terser": "^5.16.8" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.1.0" + }, + "peerDependenciesMeta": { + "@swc/core": { + "optional": true + }, + "esbuild": { + "optional": true + }, + "uglify-js": { + "optional": true + } + } + }, + "node_modules/terser/node_modules/commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" + }, + "node_modules/test-exclude": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz", + "integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==", + "dependencies": { + "@istanbuljs/schema": "^0.1.2", + "glob": "^7.1.4", + "minimatch": "^3.0.4" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/text-table": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", + "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==" + }, + "node_modules/thenify": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/thenify/-/thenify-3.3.1.tgz", + "integrity": "sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==", + "dependencies": { + "any-promise": "^1.0.0" + } + }, + "node_modules/thenify-all": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz", + "integrity": "sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==", + "dependencies": { + "thenify": ">= 3.1.0 < 4" + }, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/throat": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/throat/-/throat-6.0.2.tgz", + "integrity": "sha512-WKexMoJj3vEuK0yFEapj8y64V0A6xcuPuK9Gt1d0R+dzCSJc0lHqQytAbSB4cDAK0dWh4T0E2ETkoLE2WZ41OQ==" + }, + "node_modules/thunky": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/thunky/-/thunky-1.1.0.tgz", + "integrity": "sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==" + }, + "node_modules/tmpl": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz", + "integrity": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==" + }, + "node_modules/to-fast-properties": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", + "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==", + "engines": { + "node": ">=4" + } + }, + "node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/toidentifier": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", + "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", + "engines": { + "node": ">=0.6" + } + }, + "node_modules/tough-cookie": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.1.3.tgz", + "integrity": "sha512-aX/y5pVRkfRnfmuX+OdbSdXvPe6ieKX/G2s7e98f4poJHnqH3281gDPm/metm6E/WRamfx7WC4HUqkWHfQHprw==", + "dependencies": { + "psl": "^1.1.33", + "punycode": "^2.1.1", + "universalify": "^0.2.0", + "url-parse": "^1.5.3" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/tough-cookie/node_modules/universalify": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.2.0.tgz", + "integrity": "sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==", + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/tr46": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-2.1.0.tgz", + "integrity": "sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw==", + "dependencies": { + "punycode": "^2.1.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/tryer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/tryer/-/tryer-1.0.1.tgz", + "integrity": "sha512-c3zayb8/kWWpycWYg87P71E1S1ZL6b6IJxfb5fvsUgsf0S2MVGaDhDXXjDMpdCpfWXqptc+4mXwmiy1ypXqRAA==" + }, + "node_modules/ts-interface-checker": { + "version": "0.1.13", + "resolved": "https://registry.npmjs.org/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz", + "integrity": "sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==" + }, + "node_modules/tsconfig-paths": { + "version": "3.14.2", + "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.14.2.tgz", + "integrity": "sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g==", + "dependencies": { + "@types/json5": "^0.0.29", + "json5": "^1.0.2", + "minimist": "^1.2.6", + "strip-bom": "^3.0.0" + } + }, + "node_modules/tsconfig-paths/node_modules/json5": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", + "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", + "dependencies": { + "minimist": "^1.2.0" + }, + "bin": { + "json5": "lib/cli.js" + } + }, + "node_modules/tsconfig-paths/node_modules/strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", + "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", + "engines": { + "node": ">=4" + } + }, + "node_modules/tslib": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.3.tgz", + "integrity": "sha512-mSxlJJwl3BMEQCUNnxXBU9jP4JBktcEGhURcPR6VQVlnP0FdDEsIaz0C35dXNGLyRfrATNofF0F5p2KPxQgB+w==" + }, + "node_modules/tsutils": { + "version": "3.21.0", + "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz", + "integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==", + "dependencies": { + "tslib": "^1.8.1" + }, + "engines": { + "node": ">= 6" + }, + "peerDependencies": { + "typescript": ">=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta" + } + }, + "node_modules/tsutils/node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + }, + "node_modules/type-check": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", + "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", + "dependencies": { + "prelude-ls": "^1.2.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/type-detect": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz", + "integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==", + "engines": { + "node": ">=4" + } + }, + "node_modules/type-fest": { + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", + "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/type-is": { + "version": "1.6.18", + "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", + "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", + "dependencies": { + "media-typer": "0.3.0", + "mime-types": "~2.1.24" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/typed-array-length": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.4.tgz", + "integrity": "sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==", + "dependencies": { + "call-bind": "^1.0.2", + "for-each": "^0.3.3", + "is-typed-array": "^1.1.9" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/typedarray-to-buffer": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz", + "integrity": "sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==", + "dependencies": { + "is-typedarray": "^1.0.0" + } + }, + "node_modules/typescript": { + "version": "4.9.5", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.9.5.tgz", + "integrity": "sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==", + "peer": true, + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=4.2.0" + } + }, + "node_modules/unbox-primitive": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz", + "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==", + "dependencies": { + "call-bind": "^1.0.2", + "has-bigints": "^1.0.2", + "has-symbols": "^1.0.3", + "which-boxed-primitive": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/unicode-canonical-property-names-ecmascript": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz", + "integrity": "sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==", + "engines": { + "node": ">=4" + } + }, + "node_modules/unicode-match-property-ecmascript": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz", + "integrity": "sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==", + "dependencies": { + "unicode-canonical-property-names-ecmascript": "^2.0.0", + "unicode-property-aliases-ecmascript": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/unicode-match-property-value-ecmascript": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.1.0.tgz", + "integrity": "sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==", + "engines": { + "node": ">=4" + } + }, + "node_modules/unicode-property-aliases-ecmascript": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz", + "integrity": "sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==", + "engines": { + "node": ">=4" + } + }, + "node_modules/unique-string": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unique-string/-/unique-string-2.0.0.tgz", + "integrity": "sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==", + "dependencies": { + "crypto-random-string": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/universalify": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", + "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/unpipe": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", + "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/unquote": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/unquote/-/unquote-1.1.1.tgz", + "integrity": "sha512-vRCqFv6UhXpWxZPyGDh/F3ZpNv8/qo7w6iufLpQg9aKnQ71qM4B5KiI7Mia9COcjEhrO9LueHpMYjYzsWH3OIg==" + }, + "node_modules/upath": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/upath/-/upath-1.2.0.tgz", + "integrity": "sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==", + "engines": { + "node": ">=4", + "yarn": "*" + } + }, + "node_modules/update-browserslist-db": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz", + "integrity": "sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "escalade": "^3.1.1", + "picocolors": "^1.0.0" + }, + "bin": { + "update-browserslist-db": "cli.js" + }, + "peerDependencies": { + "browserslist": ">= 4.21.0" + } + }, + "node_modules/uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "dependencies": { + "punycode": "^2.1.0" + } + }, + "node_modules/url-parse": { + "version": "1.5.10", + "resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.5.10.tgz", + "integrity": "sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==", + "dependencies": { + "querystringify": "^2.1.1", + "requires-port": "^1.0.0" + } + }, + "node_modules/util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==" + }, + "node_modules/util.promisify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/util.promisify/-/util.promisify-1.0.1.tgz", + "integrity": "sha512-g9JpC/3He3bm38zsLupWryXHoEcS22YHthuPQSJdMy6KNrzIRzWqcsHzD/WUnqe45whVou4VIsPew37DoXWNrA==", + "dependencies": { + "define-properties": "^1.1.3", + "es-abstract": "^1.17.2", + "has-symbols": "^1.0.1", + "object.getownpropertydescriptors": "^2.1.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/utila": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/utila/-/utila-0.4.0.tgz", + "integrity": "sha512-Z0DbgELS9/L/75wZbro8xAnT50pBVFQZ+hUEueGDU5FN51YSCYM+jdxsfCiHjwNP/4LCDD0i/graKpeBnOXKRA==" + }, + "node_modules/utils-merge": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", + "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==", + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/uuid": { + "version": "8.3.2", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", + "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", + "bin": { + "uuid": "dist/bin/uuid" + } + }, + "node_modules/v8-to-istanbul": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-8.1.1.tgz", + "integrity": "sha512-FGtKtv3xIpR6BYhvgH8MI/y78oT7d8Au3ww4QIxymrCtZEh5b8gCw2siywE+puhEmuWKDtmfrvF5UlB298ut3w==", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.1", + "convert-source-map": "^1.6.0", + "source-map": "^0.7.3" + }, + "engines": { + "node": ">=10.12.0" + } + }, + "node_modules/vary": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", + "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/w3c-hr-time": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz", + "integrity": "sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==", + "deprecated": "Use your platform's native performance.now() and performance.timeOrigin.", + "dependencies": { + "browser-process-hrtime": "^1.0.0" + } + }, + "node_modules/w3c-xmlserializer": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-2.0.0.tgz", + "integrity": "sha512-4tzD0mF8iSiMiNs30BiLO3EpfGLZUT2MSX/G+o7ZywDzliWQ3OPtTZ0PTC3B3ca1UAf4cJMHB+2Bf56EriJuRA==", + "dependencies": { + "xml-name-validator": "^3.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/walker": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz", + "integrity": "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==", + "dependencies": { + "makeerror": "1.0.12" + } + }, + "node_modules/watchpack": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.0.tgz", + "integrity": "sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==", + "dependencies": { + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.1.2" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/wbuf": { + "version": "1.7.3", + "resolved": "https://registry.npmjs.org/wbuf/-/wbuf-1.7.3.tgz", + "integrity": "sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==", + "dependencies": { + "minimalistic-assert": "^1.0.0" + } + }, + "node_modules/web-vitals": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/web-vitals/-/web-vitals-2.1.4.tgz", + "integrity": "sha512-sVWcwhU5mX6crfI5Vd2dC4qchyTqxV8URinzt25XqVh+bHEPGH4C3NPrNionCP7Obx59wrYEbNlw4Z8sjALzZg==" + }, + "node_modules/webidl-conversions": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-6.1.0.tgz", + "integrity": "sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w==", + "engines": { + "node": ">=10.4" + } + }, + "node_modules/webpack": { + "version": "5.86.0", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.86.0.tgz", + "integrity": "sha512-3BOvworZ8SO/D4GVP+GoRC3fVeg5MO4vzmq8TJJEkdmopxyazGDxN8ClqN12uzrZW9Tv8EED8v5VSb6Sqyi0pg==", + "dependencies": { + "@types/eslint-scope": "^3.7.3", + "@types/estree": "^1.0.0", + "@webassemblyjs/ast": "^1.11.5", + "@webassemblyjs/wasm-edit": "^1.11.5", + "@webassemblyjs/wasm-parser": "^1.11.5", + "acorn": "^8.7.1", + "acorn-import-assertions": "^1.9.0", + "browserslist": "^4.14.5", + "chrome-trace-event": "^1.0.2", + "enhanced-resolve": "^5.14.1", + "es-module-lexer": "^1.2.1", + "eslint-scope": "5.1.1", + "events": "^3.2.0", + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.2.9", + "json-parse-even-better-errors": "^2.3.1", + "loader-runner": "^4.2.0", + "mime-types": "^2.1.27", + "neo-async": "^2.6.2", + "schema-utils": "^3.1.2", + "tapable": "^2.1.1", + "terser-webpack-plugin": "^5.3.7", + "watchpack": "^2.4.0", + "webpack-sources": "^3.2.3" + }, + "bin": { + "webpack": "bin/webpack.js" + }, + "engines": { + "node": ">=10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependenciesMeta": { + "webpack-cli": { + "optional": true + } + } + }, + "node_modules/webpack-dev-middleware": { + "version": "5.3.3", + "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-5.3.3.tgz", + "integrity": "sha512-hj5CYrY0bZLB+eTO+x/j67Pkrquiy7kWepMHmUMoPsmcUaeEnQJqFzHJOyxgWlq746/wUuA64p9ta34Kyb01pA==", + "dependencies": { + "colorette": "^2.0.10", + "memfs": "^3.4.3", + "mime-types": "^2.1.31", + "range-parser": "^1.2.1", + "schema-utils": "^4.0.0" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.0.0 || ^5.0.0" + } + }, + "node_modules/webpack-dev-middleware/node_modules/ajv": { + "version": "8.12.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", + "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/webpack-dev-middleware/node_modules/ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "dependencies": { + "fast-deep-equal": "^3.1.3" + }, + "peerDependencies": { + "ajv": "^8.8.2" + } + }, + "node_modules/webpack-dev-middleware/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" + }, + "node_modules/webpack-dev-middleware/node_modules/schema-utils": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.1.0.tgz", + "integrity": "sha512-Jw+GZVbP5IggB2WAn6UHI02LBwGmsIeYN/lNbSMZyDziQ7jmtAUrqKqDja+W89YHVs+KL/3IkIMltAklqB1vAw==", + "dependencies": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.9.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.1.0" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/webpack-dev-server": { + "version": "4.15.1", + "resolved": "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-4.15.1.tgz", + "integrity": "sha512-5hbAst3h3C3L8w6W4P96L5vaV0PxSmJhxZvWKYIdgxOQm8pNZ5dEOmmSLBVpP85ReeyRt6AS1QJNyo/oFFPeVA==", + "dependencies": { + "@types/bonjour": "^3.5.9", + "@types/connect-history-api-fallback": "^1.3.5", + "@types/express": "^4.17.13", + "@types/serve-index": "^1.9.1", + "@types/serve-static": "^1.13.10", + "@types/sockjs": "^0.3.33", + "@types/ws": "^8.5.5", + "ansi-html-community": "^0.0.8", + "bonjour-service": "^1.0.11", + "chokidar": "^3.5.3", + "colorette": "^2.0.10", + "compression": "^1.7.4", + "connect-history-api-fallback": "^2.0.0", + "default-gateway": "^6.0.3", + "express": "^4.17.3", + "graceful-fs": "^4.2.6", + "html-entities": "^2.3.2", + "http-proxy-middleware": "^2.0.3", + "ipaddr.js": "^2.0.1", + "launch-editor": "^2.6.0", + "open": "^8.0.9", + "p-retry": "^4.5.0", + "rimraf": "^3.0.2", + "schema-utils": "^4.0.0", + "selfsigned": "^2.1.1", + "serve-index": "^1.9.1", + "sockjs": "^0.3.24", + "spdy": "^4.0.2", + "webpack-dev-middleware": "^5.3.1", + "ws": "^8.13.0" + }, + "bin": { + "webpack-dev-server": "bin/webpack-dev-server.js" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.37.0 || ^5.0.0" + }, + "peerDependenciesMeta": { + "webpack": { + "optional": true + }, + "webpack-cli": { + "optional": true + } + } + }, + "node_modules/webpack-dev-server/node_modules/ajv": { + "version": "8.12.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", + "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/webpack-dev-server/node_modules/ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "dependencies": { + "fast-deep-equal": "^3.1.3" + }, + "peerDependencies": { + "ajv": "^8.8.2" + } + }, + "node_modules/webpack-dev-server/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" + }, + "node_modules/webpack-dev-server/node_modules/schema-utils": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.1.0.tgz", + "integrity": "sha512-Jw+GZVbP5IggB2WAn6UHI02LBwGmsIeYN/lNbSMZyDziQ7jmtAUrqKqDja+W89YHVs+KL/3IkIMltAklqB1vAw==", + "dependencies": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.9.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.1.0" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/webpack-dev-server/node_modules/ws": { + "version": "8.13.0", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.13.0.tgz", + "integrity": "sha512-x9vcZYTrFPC7aSIbj7sRCYo7L/Xb8Iy+pW0ng0wt2vCJv7M9HOMy0UoN3rr+IFC7hb7vXoqS+P9ktyLLLhO+LA==", + "engines": { + "node": ">=10.0.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": ">=5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } + } + }, + "node_modules/webpack-manifest-plugin": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/webpack-manifest-plugin/-/webpack-manifest-plugin-4.1.1.tgz", + "integrity": "sha512-YXUAwxtfKIJIKkhg03MKuiFAD72PlrqCiwdwO4VEXdRO5V0ORCNwaOwAZawPZalCbmH9kBDmXnNeQOw+BIEiow==", + "dependencies": { + "tapable": "^2.0.0", + "webpack-sources": "^2.2.0" + }, + "engines": { + "node": ">=12.22.0" + }, + "peerDependencies": { + "webpack": "^4.44.2 || ^5.47.0" + } + }, + "node_modules/webpack-manifest-plugin/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack-manifest-plugin/node_modules/webpack-sources": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-2.3.1.tgz", + "integrity": "sha512-y9EI9AO42JjEcrTJFOYmVywVZdKVUfOvDUPsJea5GIr1JOEGFVqwlY2K098fFoIjOkDzHn2AjRvM8dsBZu+gCA==", + "dependencies": { + "source-list-map": "^2.0.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/webpack-sources": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz", + "integrity": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==", + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/webpack/node_modules/eslint-scope": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", + "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/webpack/node_modules/estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/websocket-driver": { + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.7.4.tgz", + "integrity": "sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==", + "dependencies": { + "http-parser-js": ">=0.5.1", + "safe-buffer": ">=5.1.0", + "websocket-extensions": ">=0.1.1" + }, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/websocket-extensions": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/websocket-extensions/-/websocket-extensions-0.1.4.tgz", + "integrity": "sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/whatwg-encoding": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz", + "integrity": "sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw==", + "dependencies": { + "iconv-lite": "0.4.24" + } + }, + "node_modules/whatwg-encoding/node_modules/iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/whatwg-fetch": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-3.6.2.tgz", + "integrity": "sha512-bJlen0FcuU/0EMLrdbJ7zOnW6ITZLrZMIarMUVmdKtsGvZna8vxKYaexICWPfZ8qwf9fzNq+UEIZrnSaApt6RA==" + }, + "node_modules/whatwg-mimetype": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz", + "integrity": "sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==" + }, + "node_modules/whatwg-url": { + "version": "8.7.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-8.7.0.tgz", + "integrity": "sha512-gAojqb/m9Q8a5IV96E3fHJM70AzCkgt4uXYX2O7EmuyOnLrViCQlsEBmF9UQIu3/aeAIp2U17rtbpZWNntQqdg==", + "dependencies": { + "lodash": "^4.7.0", + "tr46": "^2.1.0", + "webidl-conversions": "^6.1.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/which-boxed-primitive": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", + "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", + "dependencies": { + "is-bigint": "^1.0.1", + "is-boolean-object": "^1.1.0", + "is-number-object": "^1.0.4", + "is-string": "^1.0.5", + "is-symbol": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/which-collection": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/which-collection/-/which-collection-1.0.1.tgz", + "integrity": "sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A==", + "dependencies": { + "is-map": "^2.0.1", + "is-set": "^2.0.1", + "is-weakmap": "^2.0.1", + "is-weakset": "^2.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/which-typed-array": { + "version": "1.1.9", + "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.9.tgz", + "integrity": "sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA==", + "dependencies": { + "available-typed-arrays": "^1.0.5", + "call-bind": "^1.0.2", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-tostringtag": "^1.0.0", + "is-typed-array": "^1.1.10" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/word-wrap": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz", + "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/workbox-background-sync": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-background-sync/-/workbox-background-sync-6.6.0.tgz", + "integrity": "sha512-jkf4ZdgOJxC9u2vztxLuPT/UjlH7m/nWRQ/MgGL0v8BJHoZdVGJd18Kck+a0e55wGXdqyHO+4IQTk0685g4MUw==", + "dependencies": { + "idb": "^7.0.1", + "workbox-core": "6.6.0" + } + }, + "node_modules/workbox-broadcast-update": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-broadcast-update/-/workbox-broadcast-update-6.6.0.tgz", + "integrity": "sha512-nm+v6QmrIFaB/yokJmQ/93qIJ7n72NICxIwQwe5xsZiV2aI93MGGyEyzOzDPVz5THEr5rC3FJSsO3346cId64Q==", + "dependencies": { + "workbox-core": "6.6.0" + } + }, + "node_modules/workbox-build": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-build/-/workbox-build-6.6.0.tgz", + "integrity": "sha512-Tjf+gBwOTuGyZwMz2Nk/B13Fuyeo0Q84W++bebbVsfr9iLkDSo6j6PST8tET9HYA58mlRXwlMGpyWO8ETJiXdQ==", + "dependencies": { + "@apideck/better-ajv-errors": "^0.3.1", + "@babel/core": "^7.11.1", + "@babel/preset-env": "^7.11.0", + "@babel/runtime": "^7.11.2", + "@rollup/plugin-babel": "^5.2.0", + "@rollup/plugin-node-resolve": "^11.2.1", + "@rollup/plugin-replace": "^2.4.1", + "@surma/rollup-plugin-off-main-thread": "^2.2.3", + "ajv": "^8.6.0", + "common-tags": "^1.8.0", + "fast-json-stable-stringify": "^2.1.0", + "fs-extra": "^9.0.1", + "glob": "^7.1.6", + "lodash": "^4.17.20", + "pretty-bytes": "^5.3.0", + "rollup": "^2.43.1", + "rollup-plugin-terser": "^7.0.0", + "source-map": "^0.8.0-beta.0", + "stringify-object": "^3.3.0", + "strip-comments": "^2.0.1", + "tempy": "^0.6.0", + "upath": "^1.2.0", + "workbox-background-sync": "6.6.0", + "workbox-broadcast-update": "6.6.0", + "workbox-cacheable-response": "6.6.0", + "workbox-core": "6.6.0", + "workbox-expiration": "6.6.0", + "workbox-google-analytics": "6.6.0", + "workbox-navigation-preload": "6.6.0", + "workbox-precaching": "6.6.0", + "workbox-range-requests": "6.6.0", + "workbox-recipes": "6.6.0", + "workbox-routing": "6.6.0", + "workbox-strategies": "6.6.0", + "workbox-streams": "6.6.0", + "workbox-sw": "6.6.0", + "workbox-window": "6.6.0" + }, + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/workbox-build/node_modules/@apideck/better-ajv-errors": { + "version": "0.3.6", + "resolved": "https://registry.npmjs.org/@apideck/better-ajv-errors/-/better-ajv-errors-0.3.6.tgz", + "integrity": "sha512-P+ZygBLZtkp0qqOAJJVX4oX/sFo5JR3eBWwwuqHHhK0GIgQOKWrAfiAaWX0aArHkRWHMuggFEgAZNxVPwPZYaA==", + "dependencies": { + "json-schema": "^0.4.0", + "jsonpointer": "^5.0.0", + "leven": "^3.1.0" + }, + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "ajv": ">=8" + } + }, + "node_modules/workbox-build/node_modules/ajv": { + "version": "8.12.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", + "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/workbox-build/node_modules/fs-extra": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", + "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", + "dependencies": { + "at-least-node": "^1.0.0", + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/workbox-build/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" + }, + "node_modules/workbox-build/node_modules/source-map": { + "version": "0.8.0-beta.0", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.8.0-beta.0.tgz", + "integrity": "sha512-2ymg6oRBpebeZi9UUNsgQ89bhx01TcTkmNTGnNO88imTmbSgy4nfujrgVEFKWpMTEGA11EDkTt7mqObTPdigIA==", + "dependencies": { + "whatwg-url": "^7.0.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/workbox-build/node_modules/tr46": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-1.0.1.tgz", + "integrity": "sha512-dTpowEjclQ7Kgx5SdBkqRzVhERQXov8/l9Ft9dVM9fmg0W0KQSVaXX9T4i6twCPNtYiZM53lpSSUAwJbFPOHxA==", + "dependencies": { + "punycode": "^2.1.0" + } + }, + "node_modules/workbox-build/node_modules/webidl-conversions": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-4.0.2.tgz", + "integrity": "sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==" + }, + "node_modules/workbox-build/node_modules/whatwg-url": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-7.1.0.tgz", + "integrity": "sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==", + "dependencies": { + "lodash.sortby": "^4.7.0", + "tr46": "^1.0.1", + "webidl-conversions": "^4.0.2" + } + }, + "node_modules/workbox-cacheable-response": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-cacheable-response/-/workbox-cacheable-response-6.6.0.tgz", + "integrity": "sha512-JfhJUSQDwsF1Xv3EV1vWzSsCOZn4mQ38bWEBR3LdvOxSPgB65gAM6cS2CX8rkkKHRgiLrN7Wxoyu+TuH67kHrw==", + "deprecated": "workbox-background-sync@6.6.0", + "dependencies": { + "workbox-core": "6.6.0" + } + }, + "node_modules/workbox-core": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-core/-/workbox-core-6.6.0.tgz", + "integrity": "sha512-GDtFRF7Yg3DD859PMbPAYPeJyg5gJYXuBQAC+wyrWuuXgpfoOrIQIvFRZnQ7+czTIQjIr1DhLEGFzZanAT/3bQ==" + }, + "node_modules/workbox-expiration": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-expiration/-/workbox-expiration-6.6.0.tgz", + "integrity": "sha512-baplYXcDHbe8vAo7GYvyAmlS4f6998Jff513L4XvlzAOxcl8F620O91guoJ5EOf5qeXG4cGdNZHkkVAPouFCpw==", + "dependencies": { + "idb": "^7.0.1", + "workbox-core": "6.6.0" + } + }, + "node_modules/workbox-google-analytics": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-google-analytics/-/workbox-google-analytics-6.6.0.tgz", + "integrity": "sha512-p4DJa6OldXWd6M9zRl0H6vB9lkrmqYFkRQ2xEiNdBFp9U0LhsGO7hsBscVEyH9H2/3eZZt8c97NB2FD9U2NJ+Q==", + "dependencies": { + "workbox-background-sync": "6.6.0", + "workbox-core": "6.6.0", + "workbox-routing": "6.6.0", + "workbox-strategies": "6.6.0" + } + }, + "node_modules/workbox-navigation-preload": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-navigation-preload/-/workbox-navigation-preload-6.6.0.tgz", + "integrity": "sha512-utNEWG+uOfXdaZmvhshrh7KzhDu/1iMHyQOV6Aqup8Mm78D286ugu5k9MFD9SzBT5TcwgwSORVvInaXWbvKz9Q==", + "dependencies": { + "workbox-core": "6.6.0" + } + }, + "node_modules/workbox-precaching": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-precaching/-/workbox-precaching-6.6.0.tgz", + "integrity": "sha512-eYu/7MqtRZN1IDttl/UQcSZFkHP7dnvr/X3Vn6Iw6OsPMruQHiVjjomDFCNtd8k2RdjLs0xiz9nq+t3YVBcWPw==", + "dependencies": { + "workbox-core": "6.6.0", + "workbox-routing": "6.6.0", + "workbox-strategies": "6.6.0" + } + }, + "node_modules/workbox-range-requests": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-range-requests/-/workbox-range-requests-6.6.0.tgz", + "integrity": "sha512-V3aICz5fLGq5DpSYEU8LxeXvsT//mRWzKrfBOIxzIdQnV/Wj7R+LyJVTczi4CQ4NwKhAaBVaSujI1cEjXW+hTw==", + "dependencies": { + "workbox-core": "6.6.0" + } + }, + "node_modules/workbox-recipes": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-recipes/-/workbox-recipes-6.6.0.tgz", + "integrity": "sha512-TFi3kTgYw73t5tg73yPVqQC8QQjxJSeqjXRO4ouE/CeypmP2O/xqmB/ZFBBQazLTPxILUQ0b8aeh0IuxVn9a6A==", + "dependencies": { + "workbox-cacheable-response": "6.6.0", + "workbox-core": "6.6.0", + "workbox-expiration": "6.6.0", + "workbox-precaching": "6.6.0", + "workbox-routing": "6.6.0", + "workbox-strategies": "6.6.0" + } + }, + "node_modules/workbox-routing": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-routing/-/workbox-routing-6.6.0.tgz", + "integrity": "sha512-x8gdN7VDBiLC03izAZRfU+WKUXJnbqt6PG9Uh0XuPRzJPpZGLKce/FkOX95dWHRpOHWLEq8RXzjW0O+POSkKvw==", + "dependencies": { + "workbox-core": "6.6.0" + } + }, + "node_modules/workbox-strategies": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-strategies/-/workbox-strategies-6.6.0.tgz", + "integrity": "sha512-eC07XGuINAKUWDnZeIPdRdVja4JQtTuc35TZ8SwMb1ztjp7Ddq2CJ4yqLvWzFWGlYI7CG/YGqaETntTxBGdKgQ==", + "dependencies": { + "workbox-core": "6.6.0" + } + }, + "node_modules/workbox-streams": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-streams/-/workbox-streams-6.6.0.tgz", + "integrity": "sha512-rfMJLVvwuED09CnH1RnIep7L9+mj4ufkTyDPVaXPKlhi9+0czCu+SJggWCIFbPpJaAZmp2iyVGLqS3RUmY3fxg==", + "dependencies": { + "workbox-core": "6.6.0", + "workbox-routing": "6.6.0" + } + }, + "node_modules/workbox-sw": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-sw/-/workbox-sw-6.6.0.tgz", + "integrity": "sha512-R2IkwDokbtHUE4Kus8pKO5+VkPHD2oqTgl+XJwh4zbF1HyjAbgNmK/FneZHVU7p03XUt9ICfuGDYISWG9qV/CQ==" + }, + "node_modules/workbox-webpack-plugin": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-webpack-plugin/-/workbox-webpack-plugin-6.6.0.tgz", + "integrity": "sha512-xNZIZHalboZU66Wa7x1YkjIqEy1gTR+zPM+kjrYJzqN7iurYZBctBLISyScjhkJKYuRrZUP0iqViZTh8rS0+3A==", + "dependencies": { + "fast-json-stable-stringify": "^2.1.0", + "pretty-bytes": "^5.4.1", + "upath": "^1.2.0", + "webpack-sources": "^1.4.3", + "workbox-build": "6.6.0" + }, + "engines": { + "node": ">=10.0.0" + }, + "peerDependencies": { + "webpack": "^4.4.0 || ^5.9.0" + } + }, + "node_modules/workbox-webpack-plugin/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/workbox-webpack-plugin/node_modules/webpack-sources": { + "version": "1.4.3", + "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-1.4.3.tgz", + "integrity": "sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==", + "dependencies": { + "source-list-map": "^2.0.0", + "source-map": "~0.6.1" + } + }, + "node_modules/workbox-window": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-window/-/workbox-window-6.6.0.tgz", + "integrity": "sha512-L4N9+vka17d16geaJXXRjENLFldvkWy7JyGxElRD0JvBxvFEd8LOhr+uXCcar/NzAmIBRv9EZ+M+Qr4mOoBITw==", + "dependencies": { + "@types/trusted-types": "^2.0.2", + "workbox-core": "6.6.0" + } + }, + "node_modules/wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrap-ansi/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/wrap-ansi/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/wrap-ansi/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==" + }, + "node_modules/write-file-atomic": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz", + "integrity": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==", + "dependencies": { + "imurmurhash": "^0.1.4", + "is-typedarray": "^1.0.0", + "signal-exit": "^3.0.2", + "typedarray-to-buffer": "^3.1.5" + } + }, + "node_modules/ws": { + "version": "7.5.9", + "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.9.tgz", + "integrity": "sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q==", + "engines": { + "node": ">=8.3.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": "^5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } + } + }, + "node_modules/xml-name-validator": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-3.0.0.tgz", + "integrity": "sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==" + }, + "node_modules/xmlchars": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz", + "integrity": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==" + }, + "node_modules/y18n": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", + "engines": { + "node": ">=10" + } + }, + "node_modules/yallist": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==" + }, + "node_modules/yaml": { + "version": "1.10.2", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", + "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==", + "engines": { + "node": ">= 6" + } + }, + "node_modules/yargs": { + "version": "16.2.0", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", + "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", + "dependencies": { + "cliui": "^7.0.2", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.0", + "y18n": "^5.0.5", + "yargs-parser": "^20.2.2" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/yargs-parser": { + "version": "20.2.9", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", + "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", + "engines": { + "node": ">=10" + } + }, + "node_modules/yocto-queue": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + } + } +} diff --git a/high-scores-react/package.json b/high-scores-react/package.json new file mode 100644 index 000000000..e702c891f --- /dev/null +++ b/high-scores-react/package.json @@ -0,0 +1,38 @@ +{ + "name": "high-scores-react", + "version": "0.1.0", + "private": true, + "dependencies": { + "@testing-library/jest-dom": "^5.16.5", + "@testing-library/react": "^13.4.0", + "@testing-library/user-event": "^13.5.0", + "react": "^18.2.0", + "react-dom": "^18.2.0", + "react-scripts": "5.0.1", + "web-vitals": "^2.1.4" + }, + "scripts": { + "start": "react-scripts start", + "build": "react-scripts build", + "test": "react-scripts test", + "eject": "react-scripts eject" + }, + "eslintConfig": { + "extends": [ + "react-app", + "react-app/jest" + ] + }, + "browserslist": { + "production": [ + ">0.2%", + "not dead", + "not op_mini all" + ], + "development": [ + "last 1 chrome version", + "last 1 firefox version", + "last 1 safari version" + ] + } +} diff --git a/high-scores-react/public/favicon.ico b/high-scores-react/public/favicon.ico new file mode 100644 index 000000000..a11777cc4 Binary files /dev/null and b/high-scores-react/public/favicon.ico differ diff --git a/high-scores-react/public/index.html b/high-scores-react/public/index.html new file mode 100644 index 000000000..aa069f27c --- /dev/null +++ b/high-scores-react/public/index.html @@ -0,0 +1,43 @@ + + + + + + + + + + + + + React App + + + +
+ + + diff --git a/high-scores-react/public/logo192.png b/high-scores-react/public/logo192.png new file mode 100644 index 000000000..fc44b0a37 Binary files /dev/null and b/high-scores-react/public/logo192.png differ diff --git a/high-scores-react/public/logo512.png b/high-scores-react/public/logo512.png new file mode 100644 index 000000000..a4e47a654 Binary files /dev/null and b/high-scores-react/public/logo512.png differ diff --git a/high-scores-react/public/manifest.json b/high-scores-react/public/manifest.json new file mode 100644 index 000000000..080d6c77a --- /dev/null +++ b/high-scores-react/public/manifest.json @@ -0,0 +1,25 @@ +{ + "short_name": "React App", + "name": "Create React App Sample", + "icons": [ + { + "src": "favicon.ico", + "sizes": "64x64 32x32 24x24 16x16", + "type": "image/x-icon" + }, + { + "src": "logo192.png", + "type": "image/png", + "sizes": "192x192" + }, + { + "src": "logo512.png", + "type": "image/png", + "sizes": "512x512" + } + ], + "start_url": ".", + "display": "standalone", + "theme_color": "#000000", + "background_color": "#ffffff" +} diff --git a/high-scores-react/public/robots.txt b/high-scores-react/public/robots.txt new file mode 100644 index 000000000..e9e57dc4d --- /dev/null +++ b/high-scores-react/public/robots.txt @@ -0,0 +1,3 @@ +# https://www.robotstxt.org/robotstxt.html +User-agent: * +Disallow: diff --git a/high-scores-react/src/App.css b/high-scores-react/src/App.css new file mode 100644 index 000000000..24eb8e0f2 --- /dev/null +++ b/high-scores-react/src/App.css @@ -0,0 +1,3 @@ +.App{ + text-align: center; +} \ No newline at end of file diff --git a/high-scores-react/src/App.js b/high-scores-react/src/App.js new file mode 100644 index 000000000..acd9ce3cb --- /dev/null +++ b/high-scores-react/src/App.js @@ -0,0 +1,18 @@ +import HighScores from './HighScores'; +import React from 'react'; +import './App.css'; + + + + +function App() { + return ( +
+ + + +
+ ); + +} +export default App; diff --git a/high-scores-react/src/App.test.js b/high-scores-react/src/App.test.js new file mode 100644 index 000000000..1f03afeec --- /dev/null +++ b/high-scores-react/src/App.test.js @@ -0,0 +1,8 @@ +import { render, screen } from '@testing-library/react'; +import App from './App'; + +test('renders learn react link', () => { + render(); + const linkElement = screen.getByText(/learn react/i); + expect(linkElement).toBeInTheDocument(); +}); diff --git a/high-scores-react/src/HighScores.js b/high-scores-react/src/HighScores.js new file mode 100644 index 000000000..20c5749ac --- /dev/null +++ b/high-scores-react/src/HighScores.js @@ -0,0 +1,9 @@ +import React from "react"; +import HighScoresData from "./HighScoresData"; +import scores from "./data/scores.json"; + +function HighScores() { + return
{

High Scores per Country

} +
; +} +export default HighScores; \ No newline at end of file diff --git a/high-scores-react/src/HighScoresData.js b/high-scores-react/src/HighScoresData.js new file mode 100644 index 000000000..88f77b82e --- /dev/null +++ b/high-scores-react/src/HighScoresData.js @@ -0,0 +1,12 @@ +function HighScoresData({products}){ + return (<> + {products.map((element)=> { + return
{

High Scores: {element.name}

} + {(element.scores).map((secondElement)=>{ + return <>{ +
{secondElement.n}{secondElement.s}
} + })}
; + })} + ) +} +export default HighScoresData; \ No newline at end of file diff --git a/high-scores-react/src/data/scores.json b/high-scores-react/src/data/scores.json new file mode 100644 index 000000000..40e344f33 --- /dev/null +++ b/high-scores-react/src/data/scores.json @@ -0,0 +1,63 @@ +[ + { + "name": "Ethiopia", + "scores": [ + { "n": "Sub", "s": 9990 }, + { "n": "lucy", "s": "4134234" }, + { "n": "DWH", "s": 9999 }, + { "n": "Hanif", "s": 999999999 } + ] + }, + { + "name": "Scotland", + "scores": [ + { "n": "groundkeeper willie", "s": 4000 }, + { "n": "Neill", "s": 999999 }, + { "n": "braveheart", "s": -200 } + ] + }, + { + "name": "England", + "scores": [ + { "n": "Jonny", "s": 202020 }, + { "n": "Chris", "s": 202021 } + ] + }, + { + "name": "Brazil", + "scores": [{ "n": "Mozart", "s": 999 }] + }, + { + "name": "Colombia", + "scores": [ + { "n": "Maria", "s": 6000 }, + { "n": "Melanie", "s": "99999999" }, + { "n": "Ali", "s": 5000 } + ] + }, + { + "name": "Turkey", + "scores": [ + { "n": "selim", "s": 900 }, + { "n": "mahmut", "s": 1000 }, + { "n": "morat", "s": 999 } + ] + }, + { + "name": "Iran", + "scores": [ + { "n": "arosha", "s": 5550 }, + { "n": "zahra", "s": 3000 }, + { "n": "nader", "s": 2000 }, + { "n": "Bani", "s": 1999 } + ] + }, + { + "name": "Bangladesh", + "scores": [ + { "n": "rahman", "s": 700200 }, + { "n": "rayhan", "s": 18238123 }, + { "n": "ali", "s": 5400000 } + ] + } +] diff --git a/high-scores-react/src/index.css b/high-scores-react/src/index.css new file mode 100644 index 000000000..af732d966 --- /dev/null +++ b/high-scores-react/src/index.css @@ -0,0 +1,63 @@ +/* body { + margin: 0; + font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', + 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', + sans-serif; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} */ + +/* code { + font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New', + monospace; +} */ +/* .outerTable{ + border: 3px solid blue; + align-items: center; + text-align: center; +} +.innerTable{ + border: 2px solid blue; + align-items: center; + text-align: center; + padding-bottom: 0px; + margin-bottom: 20px; + margin-left: 200px; + margin-right: 200px; +}*/ +.tableClass{ + border: 12px solid lawngreen; + border-spacing: 10px; + align-items: center; + text-align: center; + padding-bottom: 0px; + margin-bottom: 20px; + margin-left: 400px; + margin-right: 400px; + +} +table,td { + border: 1px solid black; + border-collapse: collapse; + width: 80%; + margin-bottom: 10px; + padding-left: 10px; + padding-right: 5px; + margin-left: 35px; + margin-right: 50px; + text-align: justify; + column-span: none; + +} + +.outerTable{ + border: 10px solid lightblue; + align-items: center; +} +h2{ + color:#BCECE4; +} +h1{ + color:#BCECE4; + +} diff --git a/high-scores-react/src/index.js b/high-scores-react/src/index.js new file mode 100644 index 000000000..d563c0fb1 --- /dev/null +++ b/high-scores-react/src/index.js @@ -0,0 +1,17 @@ +import React from 'react'; +import ReactDOM from 'react-dom/client'; +import './index.css'; +import App from './App'; +import reportWebVitals from './reportWebVitals'; + +const root = ReactDOM.createRoot(document.getElementById('root')); +root.render( + + + +); + +// If you want to start measuring performance in your app, pass a function +// to log results (for example: reportWebVitals(console.log)) +// or send to an analytics endpoint. Learn more: https://bit.ly/CRA-vitals +reportWebVitals(); diff --git a/high-scores-react/src/logo.svg b/high-scores-react/src/logo.svg new file mode 100644 index 000000000..9dfc1c058 --- /dev/null +++ b/high-scores-react/src/logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/high-scores-react/src/reportWebVitals.js b/high-scores-react/src/reportWebVitals.js new file mode 100644 index 000000000..5253d3ad9 --- /dev/null +++ b/high-scores-react/src/reportWebVitals.js @@ -0,0 +1,13 @@ +const reportWebVitals = onPerfEntry => { + if (onPerfEntry && onPerfEntry instanceof Function) { + import('web-vitals').then(({ getCLS, getFID, getFCP, getLCP, getTTFB }) => { + getCLS(onPerfEntry); + getFID(onPerfEntry); + getFCP(onPerfEntry); + getLCP(onPerfEntry); + getTTFB(onPerfEntry); + }); + } +}; + +export default reportWebVitals; diff --git a/high-scores-react/src/setupTests.js b/high-scores-react/src/setupTests.js new file mode 100644 index 000000000..8f2609b7b --- /dev/null +++ b/high-scores-react/src/setupTests.js @@ -0,0 +1,5 @@ +// jest-dom adds custom jest matchers for asserting on DOM nodes. +// allows you to do things like: +// expect(element).toHaveTextContent(/react/i) +// learn more: https://github.com/testing-library/jest-dom +import '@testing-library/jest-dom';