diff --git a/.hugo_build.lock b/.hugo_build.lock
new file mode 100644
index 0000000..e69de29
diff --git a/assets/scss/_variables_project.scss b/assets/scss/_variables_project.scss
new file mode 100644
index 0000000..2569027
--- /dev/null
+++ b/assets/scss/_variables_project.scss
@@ -0,0 +1,6 @@
+/*
+
+Add styles or override variables from the theme here.
+
+*/
+
diff --git a/config.toml b/config.toml
new file mode 100644
index 0000000..26c407a
--- /dev/null
+++ b/config.toml
@@ -0,0 +1,218 @@
+baseURL = "/"
+title = "Federated Docs"
+
+# Language settings
+contentDir = "content/en"
+defaultContentLanguage = "en"
+defaultContentLanguageInSubdir = false
+# Useful when translating.
+enableMissingTranslationPlaceholders = true
+
+enableRobotsTXT = true
+
+# Will give values to .Lastmod etc.
+enableGitInfo = false
+
+# Comment out to enable taxonomies in Docsy
+# disableKinds = ["taxonomy", "taxonomyTerm"]
+
+# You can add your own taxonomies
+[taxonomies]
+tag = "tags"
+category = "categories"
+
+[params.taxonomy]
+# set taxonomyCloud = [] to hide taxonomy clouds
+taxonomyCloud = ["tags", "categories"]
+
+# If used, must have same length as taxonomyCloud
+taxonomyCloudTitle = ["Tag Cloud", "Categories"]
+
+# set taxonomyPageHeader = [] to hide taxonomies on the page headers
+taxonomyPageHeader = ["tags", "categories"]
+
+
+# Highlighting config
+pygmentsCodeFences = true
+pygmentsUseClasses = false
+# Use the new Chroma Go highlighter in Hugo.
+pygmentsUseClassic = false
+#pygmentsOptions = "linenos=table"
+# See https://help.farbox.com/pygments.html
+pygmentsStyle = "tango"
+
+# Configure how URLs look like per section.
+[permalinks]
+blog = "/:section/:year/:month/:day/:slug/"
+
+# Image processing configuration.
+[imaging]
+resampleFilter = "CatmullRom"
+quality = 75
+anchor = "smart"
+
+[services]
+[services.googleAnalytics]
+# Comment out the next line to disable GA tracking. Also disables the feature described in [params.ui.feedback].
+# id = "UA-00000000-0"
+
+# Language configuration
+
+# [languages]
+# [languages.en]
+# title = "Goldydocs"
+# description = "A Docsy example site"
+# languageName ="English"
+# Weight used for sorting.
+# weight = 1
+
+# [languages.no]
+# title = "Goldydocs"
+# description = "Docsy er operativsystem for skyen"
+# languageName ="Norsk"
+# contentDir = "content/no"
+# time_format_default = "02.01.2006"
+# time_format_blog = "02.01.2006"
+#
+# [languages.fa]
+# title = "اسناد گلدی"
+# description = "یک نمونه برای پوسته داکسی"
+# languageName ="فارسی"
+# contentDir = "content/fa"
+# time_format_default = "2006.01.02"
+# time_format_blog = "2006.01.02"
+
+[markup]
+ [markup.goldmark]
+ [markup.goldmark.renderer]
+ unsafe = true
+ [markup.highlight]
+ # See a complete list of available styles at https://xyproto.github.io/splash/docs/all.html
+ style = "tango"
+ # Uncomment if you want your chosen highlight style used for code blocks without a specified language
+ # guessSyntax = "true"
+
+# Everything below this are Site Params
+
+# Comment out if you don't want the "print entire section" link enabled.
+[outputs]
+section = ["HTML", "print", "RSS"]
+
+[params]
+copyright = "Federated Computer, Inc."
+privacy_policy = "https://federated.computer"
+
+# First one is picked as the Twitter card image if not set on page.
+# images = ["images/project-illustration.png"]
+
+# Menu title if your navbar has a versions selector to access old versions of your site.
+# This menu appears only if you have at least one [params.versions] set.
+version_menu = "Releases"
+
+# Flag used in the "version-banner" partial to decide whether to display a
+# banner on every page indicating that this is an archived version of the docs.
+# Set this flag to "true" if you want to display the banner.
+archived_version = false
+
+# The version number for the version of the docs represented in this doc set.
+# Used in the "version-banner" partial to display a version number for the
+# current doc set.
+version = "0.1"
+
+# A link to latest version of the docs. Used in the "version-banner" partial to
+# point people to the main doc site.
+url_latest_version = "https://example.com"
+
+# Repository configuration (URLs for in-page links to opening issues and suggesting changes)
+github_repo = "https://github.com/google/docsy-example"
+# An optional link to a related project repo. For example, the sibling repository where your product code lives.
+# github_project_repo = "https://github.com/google/docsy"
+
+# Specify a value here if your content directory is not in your repo's root directory
+# github_subdir = ""
+
+# Uncomment this if your GitHub repo does not have "main" as the default branch,
+# or specify a new value if you want to reference another branch in your GitHub links
+# github_branch= "master"
+
+# Google Custom Search Engine ID. Remove or comment out to disable search.
+# gcs_engine_id = "d72aa9b2712488cc3"
+
+# Enable Algolia DocSearch
+# algolia_docsearch = false
+
+# Enable Lunr.js offline search
+offlineSearch = false
+
+# Enable syntax highlighting and copy buttons on code blocks with Prism
+prism_syntax_highlighting = false
+
+# User interface configuration
+[params.ui]
+# Set to true to disable breadcrumb navigation.
+breadcrumb_disable = false
+# Set to true to disable the About link in the site footer
+footer_about_disable = false
+# Set to false if you don't want to display a logo (/assets/icons/logo.svg) in the top navbar
+navbar_logo = true
+# Set to true if you don't want the top navbar to be translucent when over a `block/cover`, like on the homepage.
+navbar_translucent_over_cover_disable = false
+# Enable to show the side bar menu in its compact state.
+sidebar_menu_compact = false
+# Set to true to hide the sidebar search box (the top nav search box will still be displayed if search is enabled)
+sidebar_search_disable = false
+
+# Adds a H2 section titled "Feedback" to the bottom of each doc. The responses are sent to Google Analytics as events.
+# This feature depends on [services.googleAnalytics] and will be disabled if "services.googleAnalytics.id" is not set.
+# If you want this feature, but occasionally need to remove the "Feedback" section from a single page,
+# add "hide_feedback: true" to the page's front matter.
+[params.ui.feedback]
+enable = false
+# The responses that the user sees after clicking "yes" (the page was helpful) or "no" (the page was not helpful).
+# yes = 'Glad to hear it! Please tell us how we can improve .'
+# no = 'Sorry to hear that. Please tell us how we can improve .'
+
+# Adds a reading time to the top of each doc.
+# If you want this feature, but occasionally need to remove the Reading time from a single page,
+# add "hide_readingtime: true" to the page's front matter
+[params.ui.readingtime]
+enable = false
+
+[params.links]
+# End user relevant links. These will show up on left side of footer and in the community page if you have one.
+[[params.links.user]]
+ name = "User mailing list"
+ url = "https://federated.computer/mail"
+ icon = "fa fa-envelope"
+ desc = "Discussion and help from your fellow users"
+[[params.links.user]]
+ name ="Twitter"
+ url = "https://twitter.com/federatedworld"
+ icon = "fab fa-twitter"
+ desc = "Follow us on Twitter to get the latest news!"
+# Developer relevant links. These will show up on right side of footer and in the community page if you have one.
+[[params.links.developer]]
+ name = "GitHub"
+ url = "https://github.com/federatedcomputer"
+ icon = "fab fa-github"
+ desc = "Development takes place here!"
+[[params.links.developer]]
+ name = "Developer mailing list"
+ url = "https://federated.computer/developers"
+ icon = "fa fa-envelope"
+ desc = "Discuss development issues around the project"
+
+# hugo module configuration
+
+[module]
+ # uncomment line below for temporary local development of module
+ # replacements = "github.com/google/docsy -> ../../docsy"
+ [module.hugoVersion]
+ extended = true
+ min = "0.75.0"
+ [[module.imports]]
+ path = "github.com/google/docsy"
+ disable = false
+ [[module.imports]]
+ path = "github.com/google/docsy/dependencies"
+ disable = false
diff --git a/content/en/_index.html b/content/en/_index.html
new file mode 100644
index 0000000..8b29478
--- /dev/null
+++ b/content/en/_index.html
@@ -0,0 +1,81 @@
++++
+title = "Federated Docs"
+linkTitle = "Federated Docs"
+
++++
+
+{{< blocks/cover title="Welcome to the Federated Documentation Project" image_anchor="top" height="full" color="orange" >}}
+
+{{< /blocks/cover >}}
+
+
+{{% blocks/lead color="primary" %}}
+Federated provides a comprehensive distribution of software for individuals, teams, companies, small business, clubs, non-profits to run their digital work and life without fear of loss of privacy, surveillance from Federated, costly contracts, high prices.
+
+(If you would like to learn more, please visit us at [Federated](https://federated.computer).)
+{{% /blocks/lead %}}
+
+{{< blocks/section color="dark" >}}
+{{% blocks/feature icon="fa-lightbulb" title="New chair metrics!" %}}
+Federated is built on open-source projects. We point you to the relevant documentation for each project and help you to use the projects together as a working whole. That's Federated Core.
+
+We are always updating software and methods so please watch this space.
+{{% /blocks/feature %}}
+
+
+{{% blocks/feature icon="fab fa-github" title="Contributions welcome!" url="https://github.com/google/docsy-example" %}}
+We do [Pull Request](https://code.federated.computer/documentation/pulls) contributions on our **Gitea** server if you would like to contribute to the documentation. New users are always welcome and accepted contributions earn cash discounts on Federated Core. Please email support@federated.computer for more information.
+{{% /blocks/feature %}}
+
+
+{{% blocks/feature icon="fab fa-twitter" title="Follow us on Twitter!" url="https://twitter.com/federatedworld" %}}
+For announcement of latest features etc.
+{{% /blocks/feature %}}
+
+
+{{< /blocks/section >}}
+
+
+{{< blocks/section >}}
+
+
Did you know we have a brand dedicated to digital and lifestyle self sovereignty?
+
+
+{{< /blocks/section >}}
+
+
+
+{{< blocks/section >}}
+{{% blocks/feature icon="fab fa-app-store-ios" title="Subscribe **from Podcast Index**" %}}
+List to our podcast!
+{{% /blocks/feature %}}
+
+
+{{% blocks/feature icon="fab fa-github" title="Contributions welcome!" url="https://github.com/google/docsy-example" %}}
+You can contribute to Sovereign Reset through a [Pull Request](https://github.com/google/docsy-example/pulls) contribution on our **Gitea** or sending contributions to editor@sovereignreset.com. New users are always welcome!
+{{% /blocks/feature %}}
+
+
+{{% blocks/feature icon="fab fa-twitter" title="Follow us on Twitter!" url="https://twitter.com/sovereignreset" %}}
+For self-sovereign news, interviews, tips, engagement.
+{{% /blocks/feature %}}
+
+
+{{< /blocks/section >}}
+
+{{< blocks/section >}}
+
+
+
"It's your computer."
+
+
+{{< /blocks/section >}}
diff --git a/content/en/about/_index.html b/content/en/about/_index.html
new file mode 100644
index 0000000..252e704
--- /dev/null
+++ b/content/en/about/_index.html
@@ -0,0 +1,38 @@
+---
+title: About Federated Core
+linkTitle: About
+menu:
+ main:
+ weight: 10
+
+---
+
+
+{{< blocks/cover title="About Federated Core" image_anchor="bottom" height="min" >}}
+
+Documentation about using your Federated Core.
+
+
+{{< /blocks/cover >}}
+
+{{% blocks/lead %}}
+Federated Core is a replacement for all the anti-privacy, expensive, centralized services you need to run your life, business, club, group, etc. This site provides our great Customers with all the information they might need to use Federated Core to its full advantage.
+{{% /blocks/lead %}}
+
+
+{{< blocks/section >}}
+
+
If you would like to help with Federated Core documentation and earn free services, belt buckles, swag, and even bitcoin, please drop a note with your information and areas of interest to documentation@federated.computer. Thanks.
+
+
+{{< /blocks/section >}}
+
+
+
+{{< blocks/section >}}
+
+
+
This documentation is hosted on a Federated Core. Of course.
+
+
+{{< /blocks/section >}}
diff --git a/content/en/about/featured-background.jpg b/content/en/about/featured-background.jpg
new file mode 100644
index 0000000..44c220e
Binary files /dev/null and b/content/en/about/featured-background.jpg differ
diff --git a/content/en/blog/_index.md b/content/en/blog/_index.md
new file mode 100644
index 0000000..8f159e3
--- /dev/null
+++ b/content/en/blog/_index.md
@@ -0,0 +1,13 @@
+---
+title: "Federated Documents Blog"
+linkTitle: "Blog"
+menu:
+ main:
+ weight: 30
+---
+
+
+This is the **blog** section. It has two categories: News and Releases.
+
+Files in these directories will be listed in reverse chronological order.
+
diff --git a/content/en/blog/core/_index.md b/content/en/blog/core/_index.md
new file mode 100644
index 0000000..ccce855
--- /dev/null
+++ b/content/en/blog/core/_index.md
@@ -0,0 +1,8 @@
+
+---
+title: "New Releases"
+linkTitle: "Core"
+weight: 20
+---
+
+
diff --git a/content/en/blog/core/in-depth-monoliths-detailed-spec.md b/content/en/blog/core/in-depth-monoliths-detailed-spec.md
new file mode 100755
index 0000000..79124d0
--- /dev/null
+++ b/content/en/blog/core/in-depth-monoliths-detailed-spec.md
@@ -0,0 +1,26 @@
+
+---
+title: "Open Source Projects in Federated Core"
+linkTitle: "Open Source Projects"
+date: 2023-05-30
+description: >
+ This is a listing, with links, of all the open source projects currently in Federated Core.
+---
+
+Federated Core is comprised of the best open-source projects for individuals and small teams to manage their daily productivity and output.
+
+1. [Nextcloud](https://docs.nextcloud.com/)
+2. [Jitsi](https://jitsi.github.io/handbook/docs/intro/)
+3. [Element](https://element.io/get-started)
+4. [Matrix](https://matrix.org/docs/guides/)
+5. [Vaultwarden](https://github.com/dani-garcia/vaultwarden/wiki)
+6. [Listmonk](https://listmonk.app/docs/)
+7. [Baserow](https://baserow.io/docs/index)
+8. [LDAP](https://hub.docker.com/r/bitnami/openldap/)
+9. [Email Server](https://github.com/docker-mailserver/docker-mailserver)
+10. [Gitea](https://docs.gitea.com/)
+11. [Wireguard](https://github.com/pirate/wireguard-docs)
+12. [PowerDNS](https://doc.powerdns.com/)
+13. [Traefik](https://doc.traefik.io/)
+
+These links are for the open-source projects themselves. Our goal is to distill this documentation, without information about installing and management, into simple-to-understand guides for "users".
\ No newline at end of file
diff --git a/content/en/blog/news/_index.md b/content/en/blog/news/_index.md
new file mode 100644
index 0000000..68f96fe
--- /dev/null
+++ b/content/en/blog/news/_index.md
@@ -0,0 +1,8 @@
+
+---
+title: "News About Federated Core Documentation"
+linkTitle: "News"
+weight: 20
+---
+
+
diff --git a/content/en/blog/news/first-post/index.md b/content/en/blog/news/first-post/index.md
new file mode 100644
index 0000000..a9ea8ac
--- /dev/null
+++ b/content/en/blog/news/first-post/index.md
@@ -0,0 +1,28 @@
+---
+date: 2023-05-30
+title: "Helping with Federated Core documentation"
+linkTitle: "Helping"
+description: "You can earn free Federated services, belt buckles, other merchandise, and even BTC by contributing in regular significant ways to the Federated documentation project."
+author: David Young ([@davidpaulyoung](https://twitter.com/davidpaulyoung))
+resources:
+- src: "**.{png,jpg}"
+ title: "Image #:counter"
+ params:
+ byline: "Photo: David Young / CC-BY-CA"
+---
+
+**You could earn significant prizes and even BTC by helping build out and maintain the Federated documentation project.**
+
+Federated Core is a large, integrated system incorporation a number of the best open-source projects today into a single system for individuals and small teams. Documentation how all the software can be used is a large task best left to a dedicated community.
+
+## Volunteer to help with documentation
+
+If you would like to help with documentation, please send an email to: documentation@federated.computer. In the email please include the following:
+
+* Area(s) of interest for documentation and levels of expertise
+* How many hours per week you are willing to commit to documentation
+* Would you be willing to lead others?
+
+We will be in touch with you to coordinate your participation in the project.
+
+
diff --git a/content/en/community/_index.md b/content/en/community/_index.md
new file mode 100644
index 0000000..cdade16
--- /dev/null
+++ b/content/en/community/_index.md
@@ -0,0 +1,8 @@
+---
+title: Community
+menu:
+ main:
+ weight: 40
+---
+
+
diff --git a/content/en/docs/Concepts/_index.md b/content/en/docs/Concepts/_index.md
new file mode 100644
index 0000000..6cc6420
--- /dev/null
+++ b/content/en/docs/Concepts/_index.md
@@ -0,0 +1,17 @@
+---
+title: "Concepts"
+linkTitle: "Concepts"
+weight: 4
+description: >
+ What does your user need to understand about your project in order to use it - or potentially contribute to it?
+---
+
+{{% pageinfo %}}
+This is a placeholder page that shows you how to use this template site.
+{{% /pageinfo %}}
+
+For many projects, users may not need much information beyond the information in the [Overview](/docs/overview/), so this section is **optional**. However if there are areas where your users will need a more detailed understanding of a given term or feature in order to do anything useful with your project (or to not make mistakes when using it) put that information in this section. For example, you may want to add some conceptual pages if you have a large project with many components and a complex architecture.
+
+Remember to focus on what the user needs to know, not just what you think is interesting about your project! If they don’t need to understand your original design decisions to use or contribute to the project, don’t put them in, or include your design docs in your repo and link to them. Similarly, most users will probably need to know more about how features work when in use rather than how they are implemented. Consider a separate architecture page for more detailed implementation and system design information that potential project contributors can consult.
+
+
diff --git a/content/en/docs/Contribution guidelines/_index.md b/content/en/docs/Contribution guidelines/_index.md
new file mode 100644
index 0000000..bdf7078
--- /dev/null
+++ b/content/en/docs/Contribution guidelines/_index.md
@@ -0,0 +1,81 @@
+---
+title: "Contribution Guidelines"
+linkTitle: "Contribution Guidelines"
+weight: 10
+description: >
+ How to contribute to the docs
+---
+
+{{% pageinfo %}}
+These basic sample guidelines assume that your Docsy site is deployed using Netlify and your files are stored in GitHub. You can use the guidelines "as is" or adapt them with your own instructions: for example, other deployment options, information about your doc project's file structure, project-specific review guidelines, versioning guidelines, or any other information your users might find useful when updating your site. [Kubeflow](https://github.com/kubeflow/website/blob/master/README.md) has a great example.
+
+Don't forget to link to your own doc repo rather than our example site! Also make sure users can find these guidelines from your doc repo README: either add them there and link to them from this page, add them here and link to them from the README, or include them in both locations.
+{{% /pageinfo %}}
+
+We use [Hugo](https://gohugo.io/) to format and generate our website, the
+[Docsy](https://github.com/google/docsy) theme for styling and site structure,
+and [Netlify](https://www.netlify.com/) to manage the deployment of the site.
+Hugo is an open-source static site generator that provides us with templates,
+content organisation in a standard directory structure, and a website generation
+engine. You write the pages in Markdown (or HTML if you want), and Hugo wraps them up into a website.
+
+All submissions, including submissions by project members, require review. We
+use GitHub pull requests for this purpose. Consult
+[GitHub Help](https://help.github.com/articles/about-pull-requests/) for more
+information on using pull requests.
+
+## Quick start with Netlify
+
+Here's a quick guide to updating the docs. It assumes you're familiar with the
+GitHub workflow and you're happy to use the automated preview of your doc
+updates:
+
+1. Fork the [Goldydocs repo](https://github.com/google/docsy-example) on GitHub.
+1. Make your changes and send a pull request (PR).
+1. If you're not yet ready for a review, add "WIP" to the PR name to indicate
+ it's a work in progress. (**Don't** add the Hugo property
+ "draft = true" to the page front matter, because that prevents the
+ auto-deployment of the content preview described in the next point.)
+1. Wait for the automated PR workflow to do some checks. When it's ready,
+ you should see a comment like this: **deploy/netlify — Deploy preview ready!**
+1. Click **Details** to the right of "Deploy preview ready" to see a preview
+ of your updates.
+1. Continue updating your doc and pushing your changes until you're happy with
+ the content.
+1. When you're ready for a review, add a comment to the PR, and remove any
+ "WIP" markers.
+
+## Updating a single page
+
+If you've just spotted something you'd like to change while using the docs, Docsy has a shortcut for you:
+
+1. Click **Edit this page** in the top right hand corner of the page.
+1. If you don't already have an up to date fork of the project repo, you are prompted to get one - click **Fork this repository and propose changes** or **Update your Fork** to get an up to date version of the project to edit. The appropriate page in your fork is displayed in edit mode.
+1. Follow the rest of the [Quick start with Netlify](#quick-start-with-netlify) process above to make, preview, and propose your changes.
+
+## Previewing your changes locally
+
+If you want to run your own local Hugo server to preview your changes as you work:
+
+1. Follow the instructions in [Getting started](/docs/getting-started) to install Hugo and any other tools you need. You'll need at least **Hugo version 0.45** (we recommend using the most recent available version), and it must be the **extended** version, which supports SCSS.
+1. Fork the [Goldydocs repo](https://github.com/google/docsy-example) repo into your own project, then create a local copy using `git clone`. Don’t forget to use `--recurse-submodules` or you won’t pull down some of the code you need to generate a working site.
+
+ ```
+ git clone --recurse-submodules --depth 1 https://github.com/google/docsy-example.git
+ ```
+
+1. Run `hugo server` in the site root directory. By default your site will be available at http://localhost:1313/. Now that you're serving your site locally, Hugo will watch for changes to the content and automatically refresh your site.
+1. Continue with the usual GitHub workflow to edit files, commit them, push the
+ changes up to your fork, and create a pull request.
+
+## Creating an issue
+
+If you've found a problem in the docs, but you're not sure how to fix it yourself, please create an issue in the [Goldydocs repo](https://github.com/google/docsy-example/issues). You can also create an issue about a specific page by clicking the **Create Issue** button in the top right hand corner of the page.
+
+## Useful resources
+
+* [Docsy user guide](https://www.docsy.dev/docs/): All about Docsy, including how it manages navigation, look and feel, and multi-language support.
+* [Hugo documentation](https://gohugo.io/documentation/): Comprehensive reference for Hugo.
+* [Github Hello World!](https://guides.github.com/activities/hello-world/): A basic introduction to GitHub concepts and workflow.
+
+
diff --git a/content/en/docs/Examples/_index.md b/content/en/docs/Examples/_index.md
new file mode 100755
index 0000000..efc8cc8
--- /dev/null
+++ b/content/en/docs/Examples/_index.md
@@ -0,0 +1,17 @@
+
+---
+title: "Examples"
+linkTitle: "Examples"
+weight: 3
+date: 2017-01-05
+description: >
+ See your project in action!
+---
+
+{{% pageinfo %}}
+This is a placeholder page that shows you how to use this template site.
+{{% /pageinfo %}}
+
+Do you have any example **applications** or **code** for your users in your repo or elsewhere? Link to your examples here.
+
+
diff --git a/content/en/docs/Getting started/_index.md b/content/en/docs/Getting started/_index.md
new file mode 100644
index 0000000..5a3bbc7
--- /dev/null
+++ b/content/en/docs/Getting started/_index.md
@@ -0,0 +1,37 @@
+---
+categories: ["Examples", "Placeholders"]
+tags: ["test","docs"]
+title: "Getting Started"
+linkTitle: "Getting Started"
+weight: 2
+description: >
+ What does your user need to know to try your project?
+---
+
+{{% pageinfo %}}
+This is a placeholder page that shows you how to use this template site.
+{{% /pageinfo %}}
+
+Information in this section helps your user try your project themselves.
+
+* What do your users need to do to start using your project? This could include downloading/installation instructions, including any prerequisites or system requirements.
+
+* Introductory “Hello World” example, if appropriate. More complex tutorials should live in the Tutorials section.
+
+Consider using the headings below for your getting started page. You can delete any that are not applicable to your project.
+
+## Prerequisites
+
+Are there any system requirements for using your project? What languages are supported (if any)? Do users need to already have any software or tools installed?
+
+## Installation
+
+Where can your user find your project code? How can they install it (binaries, installable package, build from source)? Are there multiple options/versions they can install and how should they choose the right one for them?
+
+## Setup
+
+Is there any initial setup users need to do after installation to try your project?
+
+## Try it out!
+
+Can your users test their installation, for example by running a command or deploying a Hello World example?
diff --git a/content/en/docs/Getting started/example-page.md b/content/en/docs/Getting started/example-page.md
new file mode 100644
index 0000000..0bdd56c
--- /dev/null
+++ b/content/en/docs/Getting started/example-page.md
@@ -0,0 +1,241 @@
+---
+categories: ["Examples"]
+tags: ["test", "sample", "docs"]
+title: "Example Page"
+linkTitle: "Example Page"
+date: 2017-01-05
+description: >
+ A short lead description about this content page. It can be **bold** or _italic_ and can be split over multiple paragraphs.
+---
+
+{{% pageinfo %}}
+This is a placeholder page. Replace it with your own content.
+{{% /pageinfo %}}
+
+
+Text can be **bold**, _italic_, or ~~strikethrough~~. [Links](https://gohugo.io) should be blue with no underlines (unless hovered over).
+
+There should be whitespace between paragraphs. Vape migas chillwave sriracha poutine try-hard distillery. Tattooed shabby chic small batch, pabst art party heirloom letterpress air plant pop-up. Sustainable chia skateboard art party banjo cardigan normcore affogato vexillologist quinoa meggings man bun master cleanse shoreditch readymade. Yuccie prism four dollar toast tbh cardigan iPhone, tumblr listicle live-edge VHS. Pug lyft normcore hot chicken biodiesel, actually keffiyeh thundercats photo booth pour-over twee fam food truck microdosing banh mi. Vice activated charcoal raclette unicorn live-edge post-ironic. Heirloom vexillologist coloring book, beard deep v letterpress echo park humblebrag tilde.
+
+90's four loko seitan photo booth gochujang freegan tumeric listicle fam ugh humblebrag. Bespoke leggings gastropub, biodiesel brunch pug fashion axe meh swag art party neutra deep v chia. Enamel pin fanny pack knausgaard tofu, artisan cronut hammock meditation occupy master cleanse chartreuse lumbersexual. Kombucha kogi viral truffaut synth distillery single-origin coffee ugh slow-carb marfa selfies. Pitchfork schlitz semiotics fanny pack, ugh artisan vegan vaporware hexagon. Polaroid fixie post-ironic venmo wolf ramps **kale chips**.
+
+> There should be no margin above this first sentence.
+>
+> Blockquotes should be a lighter gray with a border along the left side in the secondary color.
+>
+> There should be no margin below this final sentence.
+
+## First Header 2
+
+This is a normal paragraph following a header. Knausgaard kale chips snackwave microdosing cronut copper mug swag synth bitters letterpress glossier **craft beer**. Mumblecore bushwick authentic gochujang vegan chambray meditation jean shorts irony. Viral farm-to-table kale chips, pork belly palo santo distillery activated charcoal aesthetic jianbing air plant woke lomo VHS organic. Tattooed locavore succulents heirloom, small batch sriracha echo park DIY af. Shaman you probably haven't heard of them copper mug, crucifix green juice vape *single-origin coffee* brunch actually. Mustache etsy vexillologist raclette authentic fam. Tousled beard humblebrag asymmetrical. I love turkey, I love my job, I love my friends, I love Chardonnay!
+
+Deae legum paulatimque terra, non vos mutata tacet: dic. Vocant docuique me plumas fila quin afuerunt copia haec o neque.
+
+On big screens, paragraphs and headings should not take up the full container width, but we want tables, code blocks and similar to take the full width.
+
+Scenester tumeric pickled, authentic crucifix post-ironic fam freegan VHS pork belly 8-bit yuccie PBR&B. **I love this life we live in**.
+
+
+## Second Header 2
+
+> This is a blockquote following a header. Bacon ipsum dolor sit amet t-bone doner shank drumstick, pork belly porchetta chuck sausage brisket ham hock rump pig. Chuck kielbasa leberkas, pork bresaola ham hock filet mignon cow shoulder short ribs biltong.
+
+### Header 3
+
+```
+This is a code block following a header.
+```
+
+Next level leggings before they sold out, PBR&B church-key shaman echo park. Kale chips occupy godard whatever pop-up freegan pork belly selfies. Gastropub Belinda subway tile woke post-ironic seitan. Shabby chic man bun semiotics vape, chia messenger bag plaid cardigan.
+
+#### Header 4
+
+* This is an unordered list following a header.
+* This is an unordered list following a header.
+* This is an unordered list following a header.
+
+##### Header 5
+
+1. This is an ordered list following a header.
+2. This is an ordered list following a header.
+3. This is an ordered list following a header.
+
+###### Header 6
+
+| What | Follows |
+|-----------|-----------------|
+| A table | A header |
+| A table | A header |
+| A table | A header |
+
+----------------
+
+There's a horizontal rule above and below this.
+
+----------------
+
+Here is an unordered list:
+
+* Liverpool F.C.
+* Chelsea F.C.
+* Manchester United F.C.
+
+And an ordered list:
+
+1. Michael Brecker
+2. Seamus Blake
+3. Branford Marsalis
+
+And an unordered task list:
+
+- [x] Create a Hugo theme
+- [x] Add task lists to it
+- [ ] Take a vacation
+
+And a "mixed" task list:
+
+- [ ] Pack bags
+- ?
+- [ ] Travel!
+
+And a nested list:
+
+* Jackson 5
+ * Michael
+ * Tito
+ * Jackie
+ * Marlon
+ * Jermaine
+* TMNT
+ * Leonardo
+ * Michelangelo
+ * Donatello
+ * Raphael
+
+Definition lists can be used with Markdown syntax. Definition headers are bold.
+
+Name
+: Godzilla
+
+Born
+: 1952
+
+Birthplace
+: Japan
+
+Color
+: Green
+
+
+----------------
+
+Tables should have bold headings and alternating shaded rows.
+
+| Artist | Album | Year |
+|-------------------|-----------------|------|
+| Michael Jackson | Thriller | 1982 |
+| Prince | Purple Rain | 1984 |
+| Beastie Boys | License to Ill | 1986 |
+
+If a table is too wide, it should scroll horizontally.
+
+| Artist | Album | Year | Label | Awards | Songs |
+|-------------------|-----------------|------|-------------|----------|-----------|
+| Michael Jackson | Thriller | 1982 | Epic Records | Grammy Award for Album of the Year, American Music Award for Favorite Pop/Rock Album, American Music Award for Favorite Soul/R&B Album, Brit Award for Best Selling Album, Grammy Award for Best Engineered Album, Non-Classical | Wanna Be Startin' Somethin', Baby Be Mine, The Girl Is Mine, Thriller, Beat It, Billie Jean, Human Nature, P.Y.T. (Pretty Young Thing), The Lady in My Life |
+| Prince | Purple Rain | 1984 | Warner Brothers Records | Grammy Award for Best Score Soundtrack for Visual Media, American Music Award for Favorite Pop/Rock Album, American Music Award for Favorite Soul/R&B Album, Brit Award for Best Soundtrack/Cast Recording, Grammy Award for Best Rock Performance by a Duo or Group with Vocal | Let's Go Crazy, Take Me With U, The Beautiful Ones, Computer Blue, Darling Nikki, When Doves Cry, I Would Die 4 U, Baby I'm a Star, Purple Rain |
+| Beastie Boys | License to Ill | 1986 | Mercury Records | noawardsbutthistablecelliswide | Rhymin & Stealin, The New Style, She's Crafty, Posse in Effect, Slow Ride, Girls, (You Gotta) Fight for Your Right, No Sleep Till Brooklyn, Paul Revere, Hold It Now, Hit It, Brass Monkey, Slow and Low, Time to Get Ill |
+
+----------------
+
+Code snippets like `var foo = "bar";` can be shown inline.
+
+Also, `this should vertically align` ~~`with this`~~ ~~and this~~.
+
+Code can also be shown in a block element.
+
+```
+foo := "bar";
+bar := "foo";
+```
+
+Code can also use syntax highlighting.
+
+```go
+func main() {
+ input := `var foo = "bar";`
+
+ lexer := lexers.Get("javascript")
+ iterator, _ := lexer.Tokenise(nil, input)
+ style := styles.Get("github")
+ formatter := html.New(html.WithLineNumbers())
+
+ var buff bytes.Buffer
+ formatter.Format(&buff, style, iterator)
+
+ fmt.Println(buff.String())
+}
+```
+
+```
+Long, single-line code blocks should not wrap. They should horizontally scroll if they are too long. This line should be long enough to demonstrate this.
+```
+
+Inline code inside table cells should still be distinguishable.
+
+| Language | Code |
+|-------------|--------------------|
+| Javascript | `var foo = "bar";` |
+| Ruby | `foo = "bar"{` |
+
+----------------
+
+Small images should be shown at their actual size.
+
+![](https://upload.wikimedia.org/wikipedia/commons/thumb/9/9e/Picea_abies_shoot_with_buds%2C_Sogndal%2C_Norway.jpg/240px-Picea_abies_shoot_with_buds%2C_Sogndal%2C_Norway.jpg)
+
+Large images should always scale down and fit in the content container.
+
+![](https://upload.wikimedia.org/wikipedia/commons/thumb/9/9e/Picea_abies_shoot_with_buds%2C_Sogndal%2C_Norway.jpg/1024px-Picea_abies_shoot_with_buds%2C_Sogndal%2C_Norway.jpg)
+
+_The photo above of the Spruce Picea abies shoot with foliage buds: Bjørn Erik Pedersen, CC-BY-SA._
+
+
+## Components
+
+### Alerts
+
+{{< alert >}}This is an alert.{{< /alert >}}
+{{< alert title="Note" >}}This is an alert with a title.{{< /alert >}}
+{{% alert title="Note" %}}This is an alert with a title and **Markdown**.{{% /alert %}}
+{{< alert color="success" >}}This is a successful alert.{{< /alert >}}
+{{< alert color="warning" >}}This is a warning.{{< /alert >}}
+{{< alert color="warning" title="Warning" >}}This is a warning with a title.{{< /alert >}}
+
+
+## Another Heading
+
+Add some sections here to see how the ToC looks like. Bacon ipsum dolor sit amet t-bone doner shank drumstick, pork belly porchetta chuck sausage brisket ham hock rump pig. Chuck kielbasa leberkas, pork bresaola ham hock filet mignon cow shoulder short ribs biltong.
+
+### This Document
+
+Inguina genus: Anaphen post: lingua violente voce suae meus aetate diversi. Orbis unam nec flammaeque status deam Silenum erat et a ferrea. Excitus rigidum ait: vestro et Herculis convicia: nitidae deseruit coniuge Proteaque adiciam *eripitur*? Sitim noceat signa *probat quidem*. Sua longis *fugatis* quidem genae.
+
+
+### Pixel Count
+
+Tilde photo booth wayfarers cliche lomo intelligentsia man braid kombucha vaporware farm-to-table mixtape portland. PBR&B pickled cornhole ugh try-hard ethical subway tile. Fixie paleo intelligentsia pabst. Ennui waistcoat vinyl gochujang. Poutine salvia authentic affogato, chambray lumbersexual shabby chic.
+
+### Contact Info
+
+Plaid hell of cred microdosing, succulents tilde pour-over. Offal shabby chic 3 wolf moon blue bottle raw denim normcore poutine pork belly.
+
+
+### External Links
+
+Stumptown PBR&B keytar plaid street art, forage XOXO pitchfork selvage affogato green juice listicle pickled everyday carry hashtag. Organic sustainable letterpress sartorial scenester intelligentsia swag bushwick. Put a bird on it stumptown neutra locavore. IPhone typewriter messenger bag narwhal. Ennui cold-pressed seitan flannel keytar, single-origin coffee adaptogen occupy yuccie williamsburg chillwave shoreditch forage waistcoat.
+
+
+
+```
+This is the final element on the page and there should be no margin below this.
+```
diff --git a/content/en/docs/Overview/_index.md b/content/en/docs/Overview/_index.md
new file mode 100644
index 0000000..6a03756
--- /dev/null
+++ b/content/en/docs/Overview/_index.md
@@ -0,0 +1,38 @@
+---
+title: "Overview"
+linkTitle: "Overview"
+weight: 1
+description: >
+ Here's where your user finds out if your project is for them.
+---
+
+{{% pageinfo %}}
+This is a placeholder page that shows you how to use this template site.
+{{% /pageinfo %}}
+
+
+The Overview is where your users find out about your project. Depending on the size of your docset, you can have a separate overview page (like this one) or put your overview contents in the Documentation landing page (like in the Docsy User Guide).
+
+Try answering these questions for your user in this page:
+
+## What is it?
+
+Introduce your project, including what it does or lets you do, why you would use it, and its primary goal (and how it achieves it). This should be similar to your README description, though you can go into a little more detail here if you want.
+
+## Why do I want it?
+
+Help your user know if your project will help them. Useful information can include:
+
+* **What is it good for?**: What types of problems does your project solve? What are the benefits of using it?
+
+* **What is it not good for?**: For example, point out situations that might intuitively seem suited for your project, but aren't for some reason. Also mention known limitations, scaling issues, or anything else that might let your users know if the project is not for them.
+
+* **What is it *not yet* good for?**: Highlight any useful features that are coming soon.
+
+## Where should I go next?
+
+Give your users next steps from the Overview. For example:
+
+* [Getting Started](/docs/getting-started/): Get started with $project
+* [Examples](/docs/examples/): Check out some example code!
+
diff --git a/content/en/docs/Reference/_index.md b/content/en/docs/Reference/_index.md
new file mode 100644
index 0000000..f174fc0
--- /dev/null
+++ b/content/en/docs/Reference/_index.md
@@ -0,0 +1,14 @@
+---
+title: "Reference"
+linkTitle: "Reference"
+weight: 9
+description: >
+ Low level reference docs for your project.
+---
+
+{{% pageinfo %}}
+This is a placeholder page that shows you how to use this template site.
+{{% /pageinfo %}}
+
+If your project has an API, configuration, or other reference - anything that users need to look up that’s at an even lower level than a single task - put (or link to it) here. You can serve and link to generated reference docs created using Doxygen,
+Javadoc, or other doc generation tools by putting them in your `static/` directory. Find out more in [Adding static content](https://docsy.dev/docs/adding-content/content/#adding-static-content). For OpenAPI reference, Docsy also provides a [Swagger UI layout and shortcode](https://www.docsy.dev/docs/adding-content/shortcodes/#swaggerui) that renders [Swagger UI](https://swagger.io/tools/swagger-ui/) using any OpenAPI YAML or JSON file as source.
diff --git a/content/en/docs/Reference/parameter-reference.md b/content/en/docs/Reference/parameter-reference.md
new file mode 100644
index 0000000..0012c85
--- /dev/null
+++ b/content/en/docs/Reference/parameter-reference.md
@@ -0,0 +1,212 @@
+---
+title: "Parameter Reference"
+linkTitle: "Parameter Reference"
+date: 2017-01-05
+description: >
+ A short lead description about this content page. It can be **bold** or _italic_ and can be split over multiple paragraphs.
+---
+
+{{% pageinfo %}}
+This is a placeholder page. Replace it with your own content.
+{{% /pageinfo %}}
+
+Text can be **bold**, _italic_, or ~~strikethrough~~. [Links](https://gohugo.io) should be blue with no underlines (unless hovered over).
+
+There should be whitespace between paragraphs. Vape migas chillwave sriracha poutine try-hard distillery. Tattooed shabby chic small batch, pabst art party heirloom letterpress air plant pop-up. Sustainable chia skateboard art party banjo cardigan normcore affogato vexillologist quinoa meggings man bun master cleanse shoreditch readymade. Yuccie prism four dollar toast tbh cardigan iPhone, tumblr listicle live-edge VHS. Pug lyft normcore hot chicken biodiesel, actually keffiyeh thundercats photo booth pour-over twee fam food truck microdosing banh mi. Vice activated charcoal raclette unicorn live-edge post-ironic. Heirloom vexillologist coloring book, beard deep v letterpress echo park humblebrag tilde.
+
+90's four loko seitan photo booth gochujang freegan tumeric listicle fam ugh humblebrag. Bespoke leggings gastropub, biodiesel brunch pug fashion axe meh swag art party neutra deep v chia. Enamel pin fanny pack knausgaard tofu, artisan cronut hammock meditation occupy master cleanse chartreuse lumbersexual. Kombucha kogi viral truffaut synth distillery single-origin coffee ugh slow-carb marfa selfies. Pitchfork schlitz semiotics fanny pack, ugh artisan vegan vaporware hexagon. Polaroid fixie post-ironic venmo wolf ramps **kale chips**.
+
+> There should be no margin above this first sentence.
+>
+> Blockquotes should be a lighter gray with a border along the left side in the secondary color.
+>
+> There should be no margin below this final sentence.
+
+## First Header 2
+
+This is a normal paragraph following a header. Knausgaard kale chips snackwave microdosing cronut copper mug swag synth bitters letterpress glossier **craft beer**. Mumblecore bushwick authentic gochujang vegan chambray meditation jean shorts irony. Viral farm-to-table kale chips, pork belly palo santo distillery activated charcoal aesthetic jianbing air plant woke lomo VHS organic. Tattooed locavore succulents heirloom, small batch sriracha echo park DIY af. Shaman you probably haven't heard of them copper mug, crucifix green juice vape *single-origin coffee* brunch actually. Mustache etsy vexillologist raclette authentic fam. Tousled beard humblebrag asymmetrical. I love turkey, I love my job, I love my friends, I love Chardonnay!
+
+Deae legum paulatimque terra, non vos mutata tacet: dic. Vocant docuique me plumas fila quin afuerunt copia haec o neque.
+
+On big screens, paragraphs and headings should not take up the full container width, but we want tables, code blocks and similar to take the full width.
+
+Scenester tumeric pickled, authentic crucifix post-ironic fam freegan VHS pork belly 8-bit yuccie PBR&B. **I love this life we live in**.
+
+
+## Second Header 2
+
+> This is a blockquote following a header. Bacon ipsum dolor sit amet t-bone doner shank drumstick, pork belly porchetta chuck sausage brisket ham hock rump pig. Chuck kielbasa leberkas, pork bresaola ham hock filet mignon cow shoulder short ribs biltong.
+
+### Header 3
+
+```
+This is a code block following a header.
+```
+
+Next level leggings before they sold out, PBR&B church-key shaman echo park. Kale chips occupy godard whatever pop-up freegan pork belly selfies. Gastropub Belinda subway tile woke post-ironic seitan. Shabby chic man bun semiotics vape, chia messenger bag plaid cardigan.
+
+#### Header 4
+
+* This is an unordered list following a header.
+* This is an unordered list following a header.
+* This is an unordered list following a header.
+
+##### Header 5
+
+1. This is an ordered list following a header.
+2. This is an ordered list following a header.
+3. This is an ordered list following a header.
+
+###### Header 6
+
+| What | Follows |
+|-----------|-----------------|
+| A table | A header |
+| A table | A header |
+| A table | A header |
+
+----------------
+
+There's a horizontal rule above and below this.
+
+----------------
+
+Here is an unordered list:
+
+* Liverpool F.C.
+* Chelsea F.C.
+* Manchester United F.C.
+
+And an ordered list:
+
+1. Michael Brecker
+2. Seamus Blake
+3. Branford Marsalis
+
+And an unordered task list:
+
+- [x] Create a Hugo theme
+- [x] Add task lists to it
+- [ ] Take a vacation
+
+And a "mixed" task list:
+
+- [ ] Pack bags
+- ?
+- [ ] Travel!
+
+And a nested list:
+
+* Jackson 5
+ * Michael
+ * Tito
+ * Jackie
+ * Marlon
+ * Jermaine
+* TMNT
+ * Leonardo
+ * Michelangelo
+ * Donatello
+ * Raphael
+
+Definition lists can be used with Markdown syntax. Definition headers are bold.
+
+Name
+: Godzilla
+
+Born
+: 1952
+
+Birthplace
+: Japan
+
+Color
+: Green
+
+
+----------------
+
+Tables should have bold headings and alternating shaded rows.
+
+| Artist | Album | Year |
+|-------------------|-----------------|------|
+| Michael Jackson | Thriller | 1982 |
+| Prince | Purple Rain | 1984 |
+| Beastie Boys | License to Ill | 1986 |
+
+If a table is too wide, it should scroll horizontally.
+
+| Artist | Album | Year | Label | Awards | Songs |
+|-------------------|-----------------|------|-------------|----------|-----------|
+| Michael Jackson | Thriller | 1982 | Epic Records | Grammy Award for Album of the Year, American Music Award for Favorite Pop/Rock Album, American Music Award for Favorite Soul/R&B Album, Brit Award for Best Selling Album, Grammy Award for Best Engineered Album, Non-Classical | Wanna Be Startin' Somethin', Baby Be Mine, The Girl Is Mine, Thriller, Beat It, Billie Jean, Human Nature, P.Y.T. (Pretty Young Thing), The Lady in My Life |
+| Prince | Purple Rain | 1984 | Warner Brothers Records | Grammy Award for Best Score Soundtrack for Visual Media, American Music Award for Favorite Pop/Rock Album, American Music Award for Favorite Soul/R&B Album, Brit Award for Best Soundtrack/Cast Recording, Grammy Award for Best Rock Performance by a Duo or Group with Vocal | Let's Go Crazy, Take Me With U, The Beautiful Ones, Computer Blue, Darling Nikki, When Doves Cry, I Would Die 4 U, Baby I'm a Star, Purple Rain |
+| Beastie Boys | License to Ill | 1986 | Mercury Records | noawardsbutthistablecelliswide | Rhymin & Stealin, The New Style, She's Crafty, Posse in Effect, Slow Ride, Girls, (You Gotta) Fight for Your Right, No Sleep Till Brooklyn, Paul Revere, Hold It Now, Hit It, Brass Monkey, Slow and Low, Time to Get Ill |
+
+----------------
+
+Code snippets like `var foo = "bar";` can be shown inline.
+
+Also, `this should vertically align` ~~`with this`~~ ~~and this~~.
+
+Code can also be shown in a block element.
+
+```
+foo := "bar";
+bar := "foo";
+```
+
+Code can also use syntax highlighting.
+
+```go
+func main() {
+ input := `var foo = "bar";`
+
+ lexer := lexers.Get("javascript")
+ iterator, _ := lexer.Tokenise(nil, input)
+ style := styles.Get("github")
+ formatter := html.New(html.WithLineNumbers())
+
+ var buff bytes.Buffer
+ formatter.Format(&buff, style, iterator)
+
+ fmt.Println(buff.String())
+}
+```
+
+```
+Long, single-line code blocks should not wrap. They should horizontally scroll if they are too long. This line should be long enough to demonstrate this.
+```
+
+Inline code inside table cells should still be distinguishable.
+
+| Language | Code |
+|-------------|--------------------|
+| Javascript | `var foo = "bar";` |
+| Ruby | `foo = "bar"{` |
+
+----------------
+
+Small images should be shown at their actual size.
+
+![](https://upload.wikimedia.org/wikipedia/commons/thumb/9/9e/Picea_abies_shoot_with_buds%2C_Sogndal%2C_Norway.jpg/240px-Picea_abies_shoot_with_buds%2C_Sogndal%2C_Norway.jpg)
+
+Large images should always scale down and fit in the content container.
+
+![](https://upload.wikimedia.org/wikipedia/commons/thumb/9/9e/Picea_abies_shoot_with_buds%2C_Sogndal%2C_Norway.jpg/1024px-Picea_abies_shoot_with_buds%2C_Sogndal%2C_Norway.jpg)
+
+_The photo above of the Spruce Picea abies shoot with foliage buds: Bjørn Erik Pedersen, CC-BY-SA._
+
+
+## Components
+
+### Alerts
+
+{{< alert >}}This is an alert.{{< /alert >}}
+{{< alert title="Note" >}}This is an alert with a title.{{< /alert >}}
+{{% alert title="Note" %}}This is an alert with a title and **Markdown**.{{% /alert %}}
+{{< alert color="success" >}}This is a successful alert.{{< /alert >}}
+{{< alert color="warning" >}}This is a warning.{{< /alert >}}
+{{< alert color="warning" title="Warning" >}}This is a warning with a title.{{< /alert >}}
+
+
+## Another Heading
diff --git a/content/en/docs/Tasks/Ponycopters/_index.md b/content/en/docs/Tasks/Ponycopters/_index.md
new file mode 100755
index 0000000..a1bd522
--- /dev/null
+++ b/content/en/docs/Tasks/Ponycopters/_index.md
@@ -0,0 +1,16 @@
+
+---
+title: "Working with Ponycopters"
+linkTitle: "Working with Ponycopters"
+date: 2017-01-05
+description: >
+ A short lead description about this section page. Text here can also be **bold** or _italic_ and can even be split over multiple paragraphs.
+---
+
+{{% pageinfo %}}
+This is a placeholder page. Replace it with your own content.
+{{% /pageinfo %}}
+
+
+This is the section landing page.
+
diff --git a/content/en/docs/Tasks/Ponycopters/configuring-ponycopters.md b/content/en/docs/Tasks/Ponycopters/configuring-ponycopters.md
new file mode 100644
index 0000000..6f29172
--- /dev/null
+++ b/content/en/docs/Tasks/Ponycopters/configuring-ponycopters.md
@@ -0,0 +1,239 @@
+---
+title: "Configuring Ponycopters"
+linkTitle: "Configuring Ponycopters"
+date: 2017-01-05
+weight: 2
+description: >
+ A short lead description about this content page. It can be **bold** or _italic_ and can be split over multiple paragraphs.
+---
+
+{{% pageinfo %}}
+This is a placeholder page. Replace it with your own content.
+{{% /pageinfo %}}
+
+Text can be **bold**, _italic_, or ~~strikethrough~~. [Links](https://gohugo.io) should be blue with no underlines (unless hovered over).
+
+There should be whitespace between paragraphs. Vape migas chillwave sriracha poutine try-hard distillery. Tattooed shabby chic small batch, pabst art party heirloom letterpress air plant pop-up. Sustainable chia skateboard art party banjo cardigan normcore affogato vexillologist quinoa meggings man bun master cleanse shoreditch readymade. Yuccie prism four dollar toast tbh cardigan iPhone, tumblr listicle live-edge VHS. Pug lyft normcore hot chicken biodiesel, actually keffiyeh thundercats photo booth pour-over twee fam food truck microdosing banh mi. Vice activated charcoal raclette unicorn live-edge post-ironic. Heirloom vexillologist coloring book, beard deep v letterpress echo park humblebrag tilde.
+
+90's four loko seitan photo booth gochujang freegan tumeric listicle fam ugh humblebrag. Bespoke leggings gastropub, biodiesel brunch pug fashion axe meh swag art party neutra deep v chia. Enamel pin fanny pack knausgaard tofu, artisan cronut hammock meditation occupy master cleanse chartreuse lumbersexual. Kombucha kogi viral truffaut synth distillery single-origin coffee ugh slow-carb marfa selfies. Pitchfork schlitz semiotics fanny pack, ugh artisan vegan vaporware hexagon. Polaroid fixie post-ironic venmo wolf ramps **kale chips**.
+
+> There should be no margin above this first sentence.
+>
+> Blockquotes should be a lighter gray with a border along the left side in the secondary color.
+>
+> There should be no margin below this final sentence.
+
+## First Header 2
+
+This is a normal paragraph following a header. Knausgaard kale chips snackwave microdosing cronut copper mug swag synth bitters letterpress glossier **craft beer**. Mumblecore bushwick authentic gochujang vegan chambray meditation jean shorts irony. Viral farm-to-table kale chips, pork belly palo santo distillery activated charcoal aesthetic jianbing air plant woke lomo VHS organic. Tattooed locavore succulents heirloom, small batch sriracha echo park DIY af. Shaman you probably haven't heard of them copper mug, crucifix green juice vape *single-origin coffee* brunch actually. Mustache etsy vexillologist raclette authentic fam. Tousled beard humblebrag asymmetrical. I love turkey, I love my job, I love my friends, I love Chardonnay!
+
+Deae legum paulatimque terra, non vos mutata tacet: dic. Vocant docuique me plumas fila quin afuerunt copia haec o neque.
+
+On big screens, paragraphs and headings should not take up the full container width, but we want tables, code blocks and similar to take the full width.
+
+Scenester tumeric pickled, authentic crucifix post-ironic fam freegan VHS pork belly 8-bit yuccie PBR&B. **I love this life we live in**.
+
+
+## Second Header 2
+
+> This is a blockquote following a header. Bacon ipsum dolor sit amet t-bone doner shank drumstick, pork belly porchetta chuck sausage brisket ham hock rump pig. Chuck kielbasa leberkas, pork bresaola ham hock filet mignon cow shoulder short ribs biltong.
+
+### Header 3
+
+```
+This is a code block following a header.
+```
+
+Next level leggings before they sold out, PBR&B church-key shaman echo park. Kale chips occupy godard whatever pop-up freegan pork belly selfies. Gastropub Belinda subway tile woke post-ironic seitan. Shabby chic man bun semiotics vape, chia messenger bag plaid cardigan.
+
+#### Header 4
+
+* This is an unordered list following a header.
+* This is an unordered list following a header.
+* This is an unordered list following a header.
+
+##### Header 5
+
+1. This is an ordered list following a header.
+2. This is an ordered list following a header.
+3. This is an ordered list following a header.
+
+###### Header 6
+
+| What | Follows |
+|-----------|-----------------|
+| A table | A header |
+| A table | A header |
+| A table | A header |
+
+----------------
+
+There's a horizontal rule above and below this.
+
+----------------
+
+Here is an unordered list:
+
+* Liverpool F.C.
+* Chelsea F.C.
+* Manchester United F.C.
+
+And an ordered list:
+
+1. Michael Brecker
+2. Seamus Blake
+3. Branford Marsalis
+
+And an unordered task list:
+
+- [x] Create a Hugo theme
+- [x] Add task lists to it
+- [ ] Take a vacation
+
+And a "mixed" task list:
+
+- [ ] Pack bags
+- ?
+- [ ] Travel!
+
+And a nested list:
+
+* Jackson 5
+ * Michael
+ * Tito
+ * Jackie
+ * Marlon
+ * Jermaine
+* TMNT
+ * Leonardo
+ * Michelangelo
+ * Donatello
+ * Raphael
+
+Definition lists can be used with Markdown syntax. Definition headers are bold.
+
+Name
+: Godzilla
+
+Born
+: 1952
+
+Birthplace
+: Japan
+
+Color
+: Green
+
+
+----------------
+
+Tables should have bold headings and alternating shaded rows.
+
+| Artist | Album | Year |
+|-------------------|-----------------|------|
+| Michael Jackson | Thriller | 1982 |
+| Prince | Purple Rain | 1984 |
+| Beastie Boys | License to Ill | 1986 |
+
+If a table is too wide, it should scroll horizontally.
+
+| Artist | Album | Year | Label | Awards | Songs |
+|-------------------|-----------------|------|-------------|----------|-----------|
+| Michael Jackson | Thriller | 1982 | Epic Records | Grammy Award for Album of the Year, American Music Award for Favorite Pop/Rock Album, American Music Award for Favorite Soul/R&B Album, Brit Award for Best Selling Album, Grammy Award for Best Engineered Album, Non-Classical | Wanna Be Startin' Somethin', Baby Be Mine, The Girl Is Mine, Thriller, Beat It, Billie Jean, Human Nature, P.Y.T. (Pretty Young Thing), The Lady in My Life |
+| Prince | Purple Rain | 1984 | Warner Brothers Records | Grammy Award for Best Score Soundtrack for Visual Media, American Music Award for Favorite Pop/Rock Album, American Music Award for Favorite Soul/R&B Album, Brit Award for Best Soundtrack/Cast Recording, Grammy Award for Best Rock Performance by a Duo or Group with Vocal | Let's Go Crazy, Take Me With U, The Beautiful Ones, Computer Blue, Darling Nikki, When Doves Cry, I Would Die 4 U, Baby I'm a Star, Purple Rain |
+| Beastie Boys | License to Ill | 1986 | Mercury Records | noawardsbutthistablecelliswide | Rhymin & Stealin, The New Style, She's Crafty, Posse in Effect, Slow Ride, Girls, (You Gotta) Fight for Your Right, No Sleep Till Brooklyn, Paul Revere, Hold It Now, Hit It, Brass Monkey, Slow and Low, Time to Get Ill |
+
+----------------
+
+Code snippets like `var foo = "bar";` can be shown inline.
+
+Also, `this should vertically align` ~~`with this`~~ ~~and this~~.
+
+Code can also be shown in a block element.
+
+```
+foo := "bar";
+bar := "foo";
+```
+
+Code can also use syntax highlighting.
+
+```go
+func main() {
+ input := `var foo = "bar";`
+
+ lexer := lexers.Get("javascript")
+ iterator, _ := lexer.Tokenise(nil, input)
+ style := styles.Get("github")
+ formatter := html.New(html.WithLineNumbers())
+
+ var buff bytes.Buffer
+ formatter.Format(&buff, style, iterator)
+
+ fmt.Println(buff.String())
+}
+```
+
+```
+Long, single-line code blocks should not wrap. They should horizontally scroll if they are too long. This line should be long enough to demonstrate this.
+```
+
+Inline code inside table cells should still be distinguishable.
+
+| Language | Code |
+|-------------|--------------------|
+| Javascript | `var foo = "bar";` |
+| Ruby | `foo = "bar"{` |
+
+----------------
+
+Small images should be shown at their actual size.
+
+![](https://upload.wikimedia.org/wikipedia/commons/thumb/9/9e/Picea_abies_shoot_with_buds%2C_Sogndal%2C_Norway.jpg/240px-Picea_abies_shoot_with_buds%2C_Sogndal%2C_Norway.jpg)
+
+Large images should always scale down and fit in the content container.
+
+![](https://upload.wikimedia.org/wikipedia/commons/thumb/9/9e/Picea_abies_shoot_with_buds%2C_Sogndal%2C_Norway.jpg/1024px-Picea_abies_shoot_with_buds%2C_Sogndal%2C_Norway.jpg)
+
+_The photo above of the Spruce Picea abies shoot with foliage buds: Bjørn Erik Pedersen, CC-BY-SA._
+
+
+## Components
+
+### Alerts
+
+{{< alert >}}This is an alert.{{< /alert >}}
+{{< alert title="Note" >}}This is an alert with a title.{{< /alert >}}
+{{% alert title="Note" %}}This is an alert with a title and **Markdown**.{{% /alert %}}
+{{< alert color="success" >}}This is a successful alert.{{< /alert >}}
+{{< alert color="warning" >}}This is a warning.{{< /alert >}}
+{{< alert color="warning" title="Warning" >}}This is a warning with a title.{{< /alert >}}
+
+
+## Another Heading
+
+Add some sections here to see how the ToC looks like. Bacon ipsum dolor sit amet t-bone doner shank drumstick, pork belly porchetta chuck sausage brisket ham hock rump pig. Chuck kielbasa leberkas, pork bresaola ham hock filet mignon cow shoulder short ribs biltong.
+
+### This Document
+
+Inguina genus: Anaphen post: lingua violente voce suae meus aetate diversi. Orbis unam nec flammaeque status deam Silenum erat et a ferrea. Excitus rigidum ait: vestro et Herculis convicia: nitidae deseruit coniuge Proteaque adiciam *eripitur*? Sitim noceat signa *probat quidem*. Sua longis *fugatis* quidem genae.
+
+
+### Pixel Count
+
+Tilde photo booth wayfarers cliche lomo intelligentsia man braid kombucha vaporware farm-to-table mixtape portland. PBR&B pickled cornhole ugh try-hard ethical subway tile. Fixie paleo intelligentsia pabst. Ennui waistcoat vinyl gochujang. Poutine salvia authentic affogato, chambray lumbersexual shabby chic.
+
+### Contact Info
+
+Plaid hell of cred microdosing, succulents tilde pour-over. Offal shabby chic 3 wolf moon blue bottle raw denim normcore poutine pork belly.
+
+
+### External Links
+
+Stumptown PBR&B keytar plaid street art, forage XOXO pitchfork selvage affogato green juice listicle pickled everyday carry hashtag. Organic sustainable letterpress sartorial scenester intelligentsia swag bushwick. Put a bird on it stumptown neutra locavore. IPhone typewriter messenger bag narwhal. Ennui cold-pressed seitan flannel keytar, single-origin coffee adaptogen occupy yuccie williamsburg chillwave shoreditch forage waistcoat.
+
+
+
+```
+This is the final element on the page and there should be no margin below this.
+```
diff --git a/content/en/docs/Tasks/Ponycopters/launching-ponycopters.md b/content/en/docs/Tasks/Ponycopters/launching-ponycopters.md
new file mode 100644
index 0000000..54a857a
--- /dev/null
+++ b/content/en/docs/Tasks/Ponycopters/launching-ponycopters.md
@@ -0,0 +1,239 @@
+---
+title: "Launching Ponycopters"
+linkTitle: "Launching Ponycopters"
+date: 2017-01-05
+weight: 3
+description: >
+ A short lead description about this content page. It can be **bold** or _italic_ and can be split over multiple paragraphs.
+---
+
+{{% pageinfo %}}
+This is a placeholder page. Replace it with your own content.
+{{% /pageinfo %}}
+
+Text can be **bold**, _italic_, or ~~strikethrough~~. [Links](https://gohugo.io) should be blue with no underlines (unless hovered over).
+
+There should be whitespace between paragraphs. Vape migas chillwave sriracha poutine try-hard distillery. Tattooed shabby chic small batch, pabst art party heirloom letterpress air plant pop-up. Sustainable chia skateboard art party banjo cardigan normcore affogato vexillologist quinoa meggings man bun master cleanse shoreditch readymade. Yuccie prism four dollar toast tbh cardigan iPhone, tumblr listicle live-edge VHS. Pug lyft normcore hot chicken biodiesel, actually keffiyeh thundercats photo booth pour-over twee fam food truck microdosing banh mi. Vice activated charcoal raclette unicorn live-edge post-ironic. Heirloom vexillologist coloring book, beard deep v letterpress echo park humblebrag tilde.
+
+90's four loko seitan photo booth gochujang freegan tumeric listicle fam ugh humblebrag. Bespoke leggings gastropub, biodiesel brunch pug fashion axe meh swag art party neutra deep v chia. Enamel pin fanny pack knausgaard tofu, artisan cronut hammock meditation occupy master cleanse chartreuse lumbersexual. Kombucha kogi viral truffaut synth distillery single-origin coffee ugh slow-carb marfa selfies. Pitchfork schlitz semiotics fanny pack, ugh artisan vegan vaporware hexagon. Polaroid fixie post-ironic venmo wolf ramps **kale chips**.
+
+> There should be no margin above this first sentence.
+>
+> Blockquotes should be a lighter gray with a border along the left side in the secondary color.
+>
+> There should be no margin below this final sentence.
+
+## First Header 2
+
+This is a normal paragraph following a header. Knausgaard kale chips snackwave microdosing cronut copper mug swag synth bitters letterpress glossier **craft beer**. Mumblecore bushwick authentic gochujang vegan chambray meditation jean shorts irony. Viral farm-to-table kale chips, pork belly palo santo distillery activated charcoal aesthetic jianbing air plant woke lomo VHS organic. Tattooed locavore succulents heirloom, small batch sriracha echo park DIY af. Shaman you probably haven't heard of them copper mug, crucifix green juice vape *single-origin coffee* brunch actually. Mustache etsy vexillologist raclette authentic fam. Tousled beard humblebrag asymmetrical. I love turkey, I love my job, I love my friends, I love Chardonnay!
+
+Deae legum paulatimque terra, non vos mutata tacet: dic. Vocant docuique me plumas fila quin afuerunt copia haec o neque.
+
+On big screens, paragraphs and headings should not take up the full container width, but we want tables, code blocks and similar to take the full width.
+
+Scenester tumeric pickled, authentic crucifix post-ironic fam freegan VHS pork belly 8-bit yuccie PBR&B. **I love this life we live in**.
+
+
+## Second Header 2
+
+> This is a blockquote following a header. Bacon ipsum dolor sit amet t-bone doner shank drumstick, pork belly porchetta chuck sausage brisket ham hock rump pig. Chuck kielbasa leberkas, pork bresaola ham hock filet mignon cow shoulder short ribs biltong.
+
+### Header 3
+
+```
+This is a code block following a header.
+```
+
+Next level leggings before they sold out, PBR&B church-key shaman echo park. Kale chips occupy godard whatever pop-up freegan pork belly selfies. Gastropub Belinda subway tile woke post-ironic seitan. Shabby chic man bun semiotics vape, chia messenger bag plaid cardigan.
+
+#### Header 4
+
+* This is an unordered list following a header.
+* This is an unordered list following a header.
+* This is an unordered list following a header.
+
+##### Header 5
+
+1. This is an ordered list following a header.
+2. This is an ordered list following a header.
+3. This is an ordered list following a header.
+
+###### Header 6
+
+| What | Follows |
+|-----------|-----------------|
+| A table | A header |
+| A table | A header |
+| A table | A header |
+
+----------------
+
+There's a horizontal rule above and below this.
+
+----------------
+
+Here is an unordered list:
+
+* Liverpool F.C.
+* Chelsea F.C.
+* Manchester United F.C.
+
+And an ordered list:
+
+1. Michael Brecker
+2. Seamus Blake
+3. Branford Marsalis
+
+And an unordered task list:
+
+- [x] Create a Hugo theme
+- [x] Add task lists to it
+- [ ] Take a vacation
+
+And a "mixed" task list:
+
+- [ ] Pack bags
+- ?
+- [ ] Travel!
+
+And a nested list:
+
+* Jackson 5
+ * Michael
+ * Tito
+ * Jackie
+ * Marlon
+ * Jermaine
+* TMNT
+ * Leonardo
+ * Michelangelo
+ * Donatello
+ * Raphael
+
+Definition lists can be used with Markdown syntax. Definition headers are bold.
+
+Name
+: Godzilla
+
+Born
+: 1952
+
+Birthplace
+: Japan
+
+Color
+: Green
+
+
+----------------
+
+Tables should have bold headings and alternating shaded rows.
+
+| Artist | Album | Year |
+|-------------------|-----------------|------|
+| Michael Jackson | Thriller | 1982 |
+| Prince | Purple Rain | 1984 |
+| Beastie Boys | License to Ill | 1986 |
+
+If a table is too wide, it should scroll horizontally.
+
+| Artist | Album | Year | Label | Awards | Songs |
+|-------------------|-----------------|------|-------------|----------|-----------|
+| Michael Jackson | Thriller | 1982 | Epic Records | Grammy Award for Album of the Year, American Music Award for Favorite Pop/Rock Album, American Music Award for Favorite Soul/R&B Album, Brit Award for Best Selling Album, Grammy Award for Best Engineered Album, Non-Classical | Wanna Be Startin' Somethin', Baby Be Mine, The Girl Is Mine, Thriller, Beat It, Billie Jean, Human Nature, P.Y.T. (Pretty Young Thing), The Lady in My Life |
+| Prince | Purple Rain | 1984 | Warner Brothers Records | Grammy Award for Best Score Soundtrack for Visual Media, American Music Award for Favorite Pop/Rock Album, American Music Award for Favorite Soul/R&B Album, Brit Award for Best Soundtrack/Cast Recording, Grammy Award for Best Rock Performance by a Duo or Group with Vocal | Let's Go Crazy, Take Me With U, The Beautiful Ones, Computer Blue, Darling Nikki, When Doves Cry, I Would Die 4 U, Baby I'm a Star, Purple Rain |
+| Beastie Boys | License to Ill | 1986 | Mercury Records | noawardsbutthistablecelliswide | Rhymin & Stealin, The New Style, She's Crafty, Posse in Effect, Slow Ride, Girls, (You Gotta) Fight for Your Right, No Sleep Till Brooklyn, Paul Revere, Hold It Now, Hit It, Brass Monkey, Slow and Low, Time to Get Ill |
+
+----------------
+
+Code snippets like `var foo = "bar";` can be shown inline.
+
+Also, `this should vertically align` ~~`with this`~~ ~~and this~~.
+
+Code can also be shown in a block element.
+
+```
+foo := "bar";
+bar := "foo";
+```
+
+Code can also use syntax highlighting.
+
+```go
+func main() {
+ input := `var foo = "bar";`
+
+ lexer := lexers.Get("javascript")
+ iterator, _ := lexer.Tokenise(nil, input)
+ style := styles.Get("github")
+ formatter := html.New(html.WithLineNumbers())
+
+ var buff bytes.Buffer
+ formatter.Format(&buff, style, iterator)
+
+ fmt.Println(buff.String())
+}
+```
+
+```
+Long, single-line code blocks should not wrap. They should horizontally scroll if they are too long. This line should be long enough to demonstrate this.
+```
+
+Inline code inside table cells should still be distinguishable.
+
+| Language | Code |
+|-------------|--------------------|
+| Javascript | `var foo = "bar";` |
+| Ruby | `foo = "bar"{` |
+
+----------------
+
+Small images should be shown at their actual size.
+
+![](https://upload.wikimedia.org/wikipedia/commons/thumb/9/9e/Picea_abies_shoot_with_buds%2C_Sogndal%2C_Norway.jpg/240px-Picea_abies_shoot_with_buds%2C_Sogndal%2C_Norway.jpg)
+
+Large images should always scale down and fit in the content container.
+
+![](https://upload.wikimedia.org/wikipedia/commons/thumb/9/9e/Picea_abies_shoot_with_buds%2C_Sogndal%2C_Norway.jpg/1024px-Picea_abies_shoot_with_buds%2C_Sogndal%2C_Norway.jpg)
+
+_The photo above of the Spruce Picea abies shoot with foliage buds: Bjørn Erik Pedersen, CC-BY-SA._
+
+
+## Components
+
+### Alerts
+
+{{< alert >}}This is an alert.{{< /alert >}}
+{{< alert title="Note" >}}This is an alert with a title.{{< /alert >}}
+{{% alert title="Note" %}}This is an alert with a title and **Markdown**.{{% /alert %}}
+{{< alert color="success" >}}This is a successful alert.{{< /alert >}}
+{{< alert color="warning" >}}This is a warning.{{< /alert >}}
+{{< alert color="warning" title="Warning" >}}This is a warning with a title.{{< /alert >}}
+
+
+## Another Heading
+
+Add some sections here to see how the ToC looks like. Bacon ipsum dolor sit amet t-bone doner shank drumstick, pork belly porchetta chuck sausage brisket ham hock rump pig. Chuck kielbasa leberkas, pork bresaola ham hock filet mignon cow shoulder short ribs biltong.
+
+### This Document
+
+Inguina genus: Anaphen post: lingua violente voce suae meus aetate diversi. Orbis unam nec flammaeque status deam Silenum erat et a ferrea. Excitus rigidum ait: vestro et Herculis convicia: nitidae deseruit coniuge Proteaque adiciam *eripitur*? Sitim noceat signa *probat quidem*. Sua longis *fugatis* quidem genae.
+
+
+### Pixel Count
+
+Tilde photo booth wayfarers cliche lomo intelligentsia man braid kombucha vaporware farm-to-table mixtape portland. PBR&B pickled cornhole ugh try-hard ethical subway tile. Fixie paleo intelligentsia pabst. Ennui waistcoat vinyl gochujang. Poutine salvia authentic affogato, chambray lumbersexual shabby chic.
+
+### Contact Info
+
+Plaid hell of cred microdosing, succulents tilde pour-over. Offal shabby chic 3 wolf moon blue bottle raw denim normcore poutine pork belly.
+
+
+### External Links
+
+Stumptown PBR&B keytar plaid street art, forage XOXO pitchfork selvage affogato green juice listicle pickled everyday carry hashtag. Organic sustainable letterpress sartorial scenester intelligentsia swag bushwick. Put a bird on it stumptown neutra locavore. IPhone typewriter messenger bag narwhal. Ennui cold-pressed seitan flannel keytar, single-origin coffee adaptogen occupy yuccie williamsburg chillwave shoreditch forage waistcoat.
+
+
+
+```
+This is the final element on the page and there should be no margin below this.
+```
diff --git a/content/en/docs/Tasks/_index.md b/content/en/docs/Tasks/_index.md
new file mode 100755
index 0000000..e43ab7c
--- /dev/null
+++ b/content/en/docs/Tasks/_index.md
@@ -0,0 +1,25 @@
+
+---
+title: "Core Tasks"
+linkTitle: "Core Tasks"
+weight: 6
+date: 2017-01-05
+description: >
+ What can your user do with your project?
+---
+
+{{% pageinfo %}}
+This is a placeholder page that shows you how to use this template site.
+{{% /pageinfo %}}
+
+Think about your project’s features and use cases. Use these to choose your core tasks. Each granular use case (enable x, configure y) should have a corresponding tasks page or tasks page section. Users should be able to quickly refer to your core tasks when they need to find out how to do one specific thing, rather than having to look for the instructions in a bigger tutorial or example. Think of your tasks pages as a cookbook with different procedures your users can combine to create something more substantial.
+
+You can give each task a page, or you can group related tasks together in a page, such as tasks related to a particular feature. As well as grouping related tasks in single pages, you can also group task pages in nested folders with an index page as an overview, as seen in this example site. Or if you have a small docset like the [Docsy User Guide](https://docsy.dev/docs/) with no Tutorials or Concepts pages, consider adding your feature-specific pages at the top level of your docs rather than in a Tasks section.
+
+Each task should give the user
+
+* The prerequisites for this task, if any (this can be specified at the top of a multi-task page if they're the same for all the page's tasks. "All these tasks assume that you understand....and that you have already....").
+* What this task accomplishes.
+* Instructions for the task. If it involves editing a file, running a command, or writing code, provide code-formatted example snippets to show the user what to do! If there are multiple steps, provide them as a numbered list.
+* If appropriate, links to related concept, tutorial, or example pages.
+
diff --git a/content/en/docs/Tasks/beds.md b/content/en/docs/Tasks/beds.md
new file mode 100644
index 0000000..4c5803d
--- /dev/null
+++ b/content/en/docs/Tasks/beds.md
@@ -0,0 +1,239 @@
+---
+title: "Bed and Chair Metrics"
+date: 2017-01-05
+weight: 2
+description: >
+ A short lead description about this content page. It can be **bold** or _italic_ and can be split over multiple paragraphs.
+---
+
+{{% pageinfo %}}
+This is a placeholder page. Replace it with your own content.
+{{% /pageinfo %}}
+
+
+Text can be **bold**, _italic_, or ~~strikethrough~~. [Links](https://gohugo.io) should be blue with no underlines (unless hovered over).
+
+There should be whitespace between paragraphs. Vape migas chillwave sriracha poutine try-hard distillery. Tattooed shabby chic small batch, pabst art party heirloom letterpress air plant pop-up. Sustainable chia skateboard art party banjo cardigan normcore affogato vexillologist quinoa meggings man bun master cleanse shoreditch readymade. Yuccie prism four dollar toast tbh cardigan iPhone, tumblr listicle live-edge VHS. Pug lyft normcore hot chicken biodiesel, actually keffiyeh thundercats photo booth pour-over twee fam food truck microdosing banh mi. Vice activated charcoal raclette unicorn live-edge post-ironic. Heirloom vexillologist coloring book, beard deep v letterpress echo park humblebrag tilde.
+
+90's four loko seitan photo booth gochujang freegan tumeric listicle fam ugh humblebrag. Bespoke leggings gastropub, biodiesel brunch pug fashion axe meh swag art party neutra deep v chia. Enamel pin fanny pack knausgaard tofu, artisan cronut hammock meditation occupy master cleanse chartreuse lumbersexual. Kombucha kogi viral truffaut synth distillery single-origin coffee ugh slow-carb marfa selfies. Pitchfork schlitz semiotics fanny pack, ugh artisan vegan vaporware hexagon. Polaroid fixie post-ironic venmo wolf ramps **kale chips**.
+
+> There should be no margin above this first sentence.
+>
+> Blockquotes should be a lighter gray with a border along the left side in the secondary color.
+>
+> There should be no margin below this final sentence.
+
+## First Header 2
+
+This is a normal paragraph following a header. Knausgaard kale chips snackwave microdosing cronut copper mug swag synth bitters letterpress glossier **craft beer**. Mumblecore bushwick authentic gochujang vegan chambray meditation jean shorts irony. Viral farm-to-table kale chips, pork belly palo santo distillery activated charcoal aesthetic jianbing air plant woke lomo VHS organic. Tattooed locavore succulents heirloom, small batch sriracha echo park DIY af. Shaman you probably haven't heard of them copper mug, crucifix green juice vape *single-origin coffee* brunch actually. Mustache etsy vexillologist raclette authentic fam. Tousled beard humblebrag asymmetrical. I love turkey, I love my job, I love my friends, I love Chardonnay!
+
+Deae legum paulatimque terra, non vos mutata tacet: dic. Vocant docuique me plumas fila quin afuerunt copia haec o neque.
+
+On big screens, paragraphs and headings should not take up the full container width, but we want tables, code blocks and similar to take the full width.
+
+Scenester tumeric pickled, authentic crucifix post-ironic fam freegan VHS pork belly 8-bit yuccie PBR&B. **I love this life we live in**.
+
+
+## Second Header 2
+
+> This is a blockquote following a header. Bacon ipsum dolor sit amet t-bone doner shank drumstick, pork belly porchetta chuck sausage brisket ham hock rump pig. Chuck kielbasa leberkas, pork bresaola ham hock filet mignon cow shoulder short ribs biltong.
+
+### Header 3
+
+```
+This is a code block following a header.
+```
+
+Next level leggings before they sold out, PBR&B church-key shaman echo park. Kale chips occupy godard whatever pop-up freegan pork belly selfies. Gastropub Belinda subway tile woke post-ironic seitan. Shabby chic man bun semiotics vape, chia messenger bag plaid cardigan.
+
+#### Header 4
+
+* This is an unordered list following a header.
+* This is an unordered list following a header.
+* This is an unordered list following a header.
+
+##### Header 5
+
+1. This is an ordered list following a header.
+2. This is an ordered list following a header.
+3. This is an ordered list following a header.
+
+###### Header 6
+
+| What | Follows |
+|-----------|-----------------|
+| A table | A header |
+| A table | A header |
+| A table | A header |
+
+----------------
+
+There's a horizontal rule above and below this.
+
+----------------
+
+Here is an unordered list:
+
+* Liverpool F.C.
+* Chelsea F.C.
+* Manchester United F.C.
+
+And an ordered list:
+
+1. Michael Brecker
+2. Seamus Blake
+3. Branford Marsalis
+
+And an unordered task list:
+
+- [x] Create a Hugo theme
+- [x] Add task lists to it
+- [ ] Take a vacation
+
+And a "mixed" task list:
+
+- [ ] Pack bags
+- ?
+- [ ] Travel!
+
+And a nested list:
+
+* Jackson 5
+ * Michael
+ * Tito
+ * Jackie
+ * Marlon
+ * Jermaine
+* TMNT
+ * Leonardo
+ * Michelangelo
+ * Donatello
+ * Raphael
+
+Definition lists can be used with Markdown syntax. Definition headers are bold.
+
+Name
+: Godzilla
+
+Born
+: 1952
+
+Birthplace
+: Japan
+
+Color
+: Green
+
+
+----------------
+
+Tables should have bold headings and alternating shaded rows.
+
+| Artist | Album | Year |
+|-------------------|-----------------|------|
+| Michael Jackson | Thriller | 1982 |
+| Prince | Purple Rain | 1984 |
+| Beastie Boys | License to Ill | 1986 |
+
+If a table is too wide, it should scroll horizontally.
+
+| Artist | Album | Year | Label | Awards | Songs |
+|-------------------|-----------------|------|-------------|----------|-----------|
+| Michael Jackson | Thriller | 1982 | Epic Records | Grammy Award for Album of the Year, American Music Award for Favorite Pop/Rock Album, American Music Award for Favorite Soul/R&B Album, Brit Award for Best Selling Album, Grammy Award for Best Engineered Album, Non-Classical | Wanna Be Startin' Somethin', Baby Be Mine, The Girl Is Mine, Thriller, Beat It, Billie Jean, Human Nature, P.Y.T. (Pretty Young Thing), The Lady in My Life |
+| Prince | Purple Rain | 1984 | Warner Brothers Records | Grammy Award for Best Score Soundtrack for Visual Media, American Music Award for Favorite Pop/Rock Album, American Music Award for Favorite Soul/R&B Album, Brit Award for Best Soundtrack/Cast Recording, Grammy Award for Best Rock Performance by a Duo or Group with Vocal | Let's Go Crazy, Take Me With U, The Beautiful Ones, Computer Blue, Darling Nikki, When Doves Cry, I Would Die 4 U, Baby I'm a Star, Purple Rain |
+| Beastie Boys | License to Ill | 1986 | Mercury Records | noawardsbutthistablecelliswide | Rhymin & Stealin, The New Style, She's Crafty, Posse in Effect, Slow Ride, Girls, (You Gotta) Fight for Your Right, No Sleep Till Brooklyn, Paul Revere, Hold It Now, Hit It, Brass Monkey, Slow and Low, Time to Get Ill |
+
+----------------
+
+Code snippets like `var foo = "bar";` can be shown inline.
+
+Also, `this should vertically align` ~~`with this`~~ ~~and this~~.
+
+Code can also be shown in a block element.
+
+```
+foo := "bar";
+bar := "foo";
+```
+
+Code can also use syntax highlighting.
+
+```go
+func main() {
+ input := `var foo = "bar";`
+
+ lexer := lexers.Get("javascript")
+ iterator, _ := lexer.Tokenise(nil, input)
+ style := styles.Get("github")
+ formatter := html.New(html.WithLineNumbers())
+
+ var buff bytes.Buffer
+ formatter.Format(&buff, style, iterator)
+
+ fmt.Println(buff.String())
+}
+```
+
+```
+Long, single-line code blocks should not wrap. They should horizontally scroll if they are too long. This line should be long enough to demonstrate this.
+```
+
+Inline code inside table cells should still be distinguishable.
+
+| Language | Code |
+|-------------|--------------------|
+| Javascript | `var foo = "bar";` |
+| Ruby | `foo = "bar"{` |
+
+----------------
+
+Small images should be shown at their actual size.
+
+![](https://upload.wikimedia.org/wikipedia/commons/thumb/9/9e/Picea_abies_shoot_with_buds%2C_Sogndal%2C_Norway.jpg/240px-Picea_abies_shoot_with_buds%2C_Sogndal%2C_Norway.jpg)
+
+Large images should always scale down and fit in the content container.
+
+![](https://upload.wikimedia.org/wikipedia/commons/thumb/9/9e/Picea_abies_shoot_with_buds%2C_Sogndal%2C_Norway.jpg/1024px-Picea_abies_shoot_with_buds%2C_Sogndal%2C_Norway.jpg)
+
+_The photo above of the Spruce Picea abies shoot with foliage buds: Bjørn Erik Pedersen, CC-BY-SA._
+
+
+## Components
+
+### Alerts
+
+{{< alert >}}This is an alert.{{< /alert >}}
+{{< alert title="Note" >}}This is an alert with a title.{{< /alert >}}
+{{% alert title="Note" %}}This is an alert with a title and **Markdown**.{{% /alert %}}
+{{< alert color="success" >}}This is a successful alert.{{< /alert >}}
+{{< alert color="warning" >}}This is a warning.{{< /alert >}}
+{{< alert color="warning" title="Warning" >}}This is a warning with a title.{{< /alert >}}
+
+
+## Another Heading
+
+Add some sections here to see how the ToC looks like. Bacon ipsum dolor sit amet t-bone doner shank drumstick, pork belly porchetta chuck sausage brisket ham hock rump pig. Chuck kielbasa leberkas, pork bresaola ham hock filet mignon cow shoulder short ribs biltong.
+
+### This Document
+
+Inguina genus: Anaphen post: lingua violente voce suae meus aetate diversi. Orbis unam nec flammaeque status deam Silenum erat et a ferrea. Excitus rigidum ait: vestro et Herculis convicia: nitidae deseruit coniuge Proteaque adiciam *eripitur*? Sitim noceat signa *probat quidem*. Sua longis *fugatis* quidem genae.
+
+
+### Pixel Count
+
+Tilde photo booth wayfarers cliche lomo intelligentsia man braid kombucha vaporware farm-to-table mixtape portland. PBR&B pickled cornhole ugh try-hard ethical subway tile. Fixie paleo intelligentsia pabst. Ennui waistcoat vinyl gochujang. Poutine salvia authentic affogato, chambray lumbersexual shabby chic.
+
+### Contact Info
+
+Plaid hell of cred microdosing, succulents tilde pour-over. Offal shabby chic 3 wolf moon blue bottle raw denim normcore poutine pork belly.
+
+
+### External Links
+
+Stumptown PBR&B keytar plaid street art, forage XOXO pitchfork selvage affogato green juice listicle pickled everyday carry hashtag. Organic sustainable letterpress sartorial scenester intelligentsia swag bushwick. Put a bird on it stumptown neutra locavore. IPhone typewriter messenger bag narwhal. Ennui cold-pressed seitan flannel keytar, single-origin coffee adaptogen occupy yuccie williamsburg chillwave shoreditch forage waistcoat.
+
+
+
+```
+This is the final element on the page and there should be no margin below this.
+```
diff --git a/content/en/docs/Tasks/porridge.md b/content/en/docs/Tasks/porridge.md
new file mode 100644
index 0000000..71ef273
--- /dev/null
+++ b/content/en/docs/Tasks/porridge.md
@@ -0,0 +1,239 @@
+---
+title: "Porridge Assessment"
+date: 2017-01-05
+weight: 4
+description: >
+ A short lead description about this content page. It can be **bold** or _italic_ and can be split over multiple paragraphs.
+---
+
+{{% pageinfo %}}
+This is a placeholder page. Replace it with your own content.
+{{% /pageinfo %}}
+
+
+Text can be **bold**, _italic_, or ~~strikethrough~~. [Links](https://gohugo.io) should be blue with no underlines (unless hovered over).
+
+There should be whitespace between paragraphs. Vape migas chillwave sriracha poutine try-hard distillery. Tattooed shabby chic small batch, pabst art party heirloom letterpress air plant pop-up. Sustainable chia skateboard art party banjo cardigan normcore affogato vexillologist quinoa meggings man bun master cleanse shoreditch readymade. Yuccie prism four dollar toast tbh cardigan iPhone, tumblr listicle live-edge VHS. Pug lyft normcore hot chicken biodiesel, actually keffiyeh thundercats photo booth pour-over twee fam food truck microdosing banh mi. Vice activated charcoal raclette unicorn live-edge post-ironic. Heirloom vexillologist coloring book, beard deep v letterpress echo park humblebrag tilde.
+
+90's four loko seitan photo booth gochujang freegan tumeric listicle fam ugh humblebrag. Bespoke leggings gastropub, biodiesel brunch pug fashion axe meh swag art party neutra deep v chia. Enamel pin fanny pack knausgaard tofu, artisan cronut hammock meditation occupy master cleanse chartreuse lumbersexual. Kombucha kogi viral truffaut synth distillery single-origin coffee ugh slow-carb marfa selfies. Pitchfork schlitz semiotics fanny pack, ugh artisan vegan vaporware hexagon. Polaroid fixie post-ironic venmo wolf ramps **kale chips**.
+
+> There should be no margin above this first sentence.
+>
+> Blockquotes should be a lighter gray with a border along the left side in the secondary color.
+>
+> There should be no margin below this final sentence.
+
+## First Header 2
+
+This is a normal paragraph following a header. Knausgaard kale chips snackwave microdosing cronut copper mug swag synth bitters letterpress glossier **craft beer**. Mumblecore bushwick authentic gochujang vegan chambray meditation jean shorts irony. Viral farm-to-table kale chips, pork belly palo santo distillery activated charcoal aesthetic jianbing air plant woke lomo VHS organic. Tattooed locavore succulents heirloom, small batch sriracha echo park DIY af. Shaman you probably haven't heard of them copper mug, crucifix green juice vape *single-origin coffee* brunch actually. Mustache etsy vexillologist raclette authentic fam. Tousled beard humblebrag asymmetrical. I love turkey, I love my job, I love my friends, I love Chardonnay!
+
+Deae legum paulatimque terra, non vos mutata tacet: dic. Vocant docuique me plumas fila quin afuerunt copia haec o neque.
+
+On big screens, paragraphs and headings should not take up the full container width, but we want tables, code blocks and similar to take the full width.
+
+Scenester tumeric pickled, authentic crucifix post-ironic fam freegan VHS pork belly 8-bit yuccie PBR&B. **I love this life we live in**.
+
+
+## Second Header 2
+
+> This is a blockquote following a header. Bacon ipsum dolor sit amet t-bone doner shank drumstick, pork belly porchetta chuck sausage brisket ham hock rump pig. Chuck kielbasa leberkas, pork bresaola ham hock filet mignon cow shoulder short ribs biltong.
+
+### Header 3
+
+```
+This is a code block following a header.
+```
+
+Next level leggings before they sold out, PBR&B church-key shaman echo park. Kale chips occupy godard whatever pop-up freegan pork belly selfies. Gastropub Belinda subway tile woke post-ironic seitan. Shabby chic man bun semiotics vape, chia messenger bag plaid cardigan.
+
+#### Header 4
+
+* This is an unordered list following a header.
+* This is an unordered list following a header.
+* This is an unordered list following a header.
+
+##### Header 5
+
+1. This is an ordered list following a header.
+2. This is an ordered list following a header.
+3. This is an ordered list following a header.
+
+###### Header 6
+
+| What | Follows |
+|-----------|-----------------|
+| A table | A header |
+| A table | A header |
+| A table | A header |
+
+----------------
+
+There's a horizontal rule above and below this.
+
+----------------
+
+Here is an unordered list:
+
+* Liverpool F.C.
+* Chelsea F.C.
+* Manchester United F.C.
+
+And an ordered list:
+
+1. Michael Brecker
+2. Seamus Blake
+3. Branford Marsalis
+
+And an unordered task list:
+
+- [x] Create a Hugo theme
+- [x] Add task lists to it
+- [ ] Take a vacation
+
+And a "mixed" task list:
+
+- [ ] Pack bags
+- ?
+- [ ] Travel!
+
+And a nested list:
+
+* Jackson 5
+ * Michael
+ * Tito
+ * Jackie
+ * Marlon
+ * Jermaine
+* TMNT
+ * Leonardo
+ * Michelangelo
+ * Donatello
+ * Raphael
+
+Definition lists can be used with Markdown syntax. Definition headers are bold.
+
+Name
+: Godzilla
+
+Born
+: 1952
+
+Birthplace
+: Japan
+
+Color
+: Green
+
+
+----------------
+
+Tables should have bold headings and alternating shaded rows.
+
+| Artist | Album | Year |
+|-------------------|-----------------|------|
+| Michael Jackson | Thriller | 1982 |
+| Prince | Purple Rain | 1984 |
+| Beastie Boys | License to Ill | 1986 |
+
+If a table is too wide, it should scroll horizontally.
+
+| Artist | Album | Year | Label | Awards | Songs |
+|-------------------|-----------------|------|-------------|----------|-----------|
+| Michael Jackson | Thriller | 1982 | Epic Records | Grammy Award for Album of the Year, American Music Award for Favorite Pop/Rock Album, American Music Award for Favorite Soul/R&B Album, Brit Award for Best Selling Album, Grammy Award for Best Engineered Album, Non-Classical | Wanna Be Startin' Somethin', Baby Be Mine, The Girl Is Mine, Thriller, Beat It, Billie Jean, Human Nature, P.Y.T. (Pretty Young Thing), The Lady in My Life |
+| Prince | Purple Rain | 1984 | Warner Brothers Records | Grammy Award for Best Score Soundtrack for Visual Media, American Music Award for Favorite Pop/Rock Album, American Music Award for Favorite Soul/R&B Album, Brit Award for Best Soundtrack/Cast Recording, Grammy Award for Best Rock Performance by a Duo or Group with Vocal | Let's Go Crazy, Take Me With U, The Beautiful Ones, Computer Blue, Darling Nikki, When Doves Cry, I Would Die 4 U, Baby I'm a Star, Purple Rain |
+| Beastie Boys | License to Ill | 1986 | Mercury Records | noawardsbutthistablecelliswide | Rhymin & Stealin, The New Style, She's Crafty, Posse in Effect, Slow Ride, Girls, (You Gotta) Fight for Your Right, No Sleep Till Brooklyn, Paul Revere, Hold It Now, Hit It, Brass Monkey, Slow and Low, Time to Get Ill |
+
+----------------
+
+Code snippets like `var foo = "bar";` can be shown inline.
+
+Also, `this should vertically align` ~~`with this`~~ ~~and this~~.
+
+Code can also be shown in a block element.
+
+```
+foo := "bar";
+bar := "foo";
+```
+
+Code can also use syntax highlighting.
+
+```go
+func main() {
+ input := `var foo = "bar";`
+
+ lexer := lexers.Get("javascript")
+ iterator, _ := lexer.Tokenise(nil, input)
+ style := styles.Get("github")
+ formatter := html.New(html.WithLineNumbers())
+
+ var buff bytes.Buffer
+ formatter.Format(&buff, style, iterator)
+
+ fmt.Println(buff.String())
+}
+```
+
+```
+Long, single-line code blocks should not wrap. They should horizontally scroll if they are too long. This line should be long enough to demonstrate this.
+```
+
+Inline code inside table cells should still be distinguishable.
+
+| Language | Code |
+|-------------|--------------------|
+| Javascript | `var foo = "bar";` |
+| Ruby | `foo = "bar"{` |
+
+----------------
+
+Small images should be shown at their actual size.
+
+![](https://upload.wikimedia.org/wikipedia/commons/thumb/9/9e/Picea_abies_shoot_with_buds%2C_Sogndal%2C_Norway.jpg/240px-Picea_abies_shoot_with_buds%2C_Sogndal%2C_Norway.jpg)
+
+Large images should always scale down and fit in the content container.
+
+![](https://upload.wikimedia.org/wikipedia/commons/thumb/9/9e/Picea_abies_shoot_with_buds%2C_Sogndal%2C_Norway.jpg/1024px-Picea_abies_shoot_with_buds%2C_Sogndal%2C_Norway.jpg)
+
+_The photo above of the Spruce Picea abies shoot with foliage buds: Bjørn Erik Pedersen, CC-BY-SA._
+
+
+## Components
+
+### Alerts
+
+{{< alert >}}This is an alert.{{< /alert >}}
+{{< alert title="Note" >}}This is an alert with a title.{{< /alert >}}
+{{% alert title="Note" %}}This is an alert with a title and **Markdown**.{{% /alert %}}
+{{< alert color="success" >}}This is a successful alert.{{< /alert >}}
+{{< alert color="warning" >}}This is a warning.{{< /alert >}}
+{{< alert color="warning" title="Warning" >}}This is a warning with a title.{{< /alert >}}
+
+
+## Another Heading
+
+Add some sections here to see how the ToC looks like. Bacon ipsum dolor sit amet t-bone doner shank drumstick, pork belly porchetta chuck sausage brisket ham hock rump pig. Chuck kielbasa leberkas, pork bresaola ham hock filet mignon cow shoulder short ribs biltong.
+
+### This Document
+
+Inguina genus: Anaphen post: lingua violente voce suae meus aetate diversi. Orbis unam nec flammaeque status deam Silenum erat et a ferrea. Excitus rigidum ait: vestro et Herculis convicia: nitidae deseruit coniuge Proteaque adiciam *eripitur*? Sitim noceat signa *probat quidem*. Sua longis *fugatis* quidem genae.
+
+
+### Pixel Count
+
+Tilde photo booth wayfarers cliche lomo intelligentsia man braid kombucha vaporware farm-to-table mixtape portland. PBR&B pickled cornhole ugh try-hard ethical subway tile. Fixie paleo intelligentsia pabst. Ennui waistcoat vinyl gochujang. Poutine salvia authentic affogato, chambray lumbersexual shabby chic.
+
+### Contact Info
+
+Plaid hell of cred microdosing, succulents tilde pour-over. Offal shabby chic 3 wolf moon blue bottle raw denim normcore poutine pork belly.
+
+
+### External Links
+
+Stumptown PBR&B keytar plaid street art, forage XOXO pitchfork selvage affogato green juice listicle pickled everyday carry hashtag. Organic sustainable letterpress sartorial scenester intelligentsia swag bushwick. Put a bird on it stumptown neutra locavore. IPhone typewriter messenger bag narwhal. Ennui cold-pressed seitan flannel keytar, single-origin coffee adaptogen occupy yuccie williamsburg chillwave shoreditch forage waistcoat.
+
+
+
+```
+This is the final element on the page and there should be no margin below this.
+```
diff --git a/content/en/docs/Tasks/task.md b/content/en/docs/Tasks/task.md
new file mode 100644
index 0000000..65b34cd
--- /dev/null
+++ b/content/en/docs/Tasks/task.md
@@ -0,0 +1,239 @@
+---
+title: "Another Task"
+date: 2017-01-05
+weight: 5
+description: >
+ A short lead description about this content page. It can be **bold** or _italic_ and can be split over multiple paragraphs.
+---
+
+{{% pageinfo %}}
+This is a placeholder page. Replace it with your own content.
+{{% /pageinfo %}}
+
+
+Text can be **bold**, _italic_, or ~~strikethrough~~. [Links](https://gohugo.io) should be blue with no underlines (unless hovered over).
+
+There should be whitespace between paragraphs. Vape migas chillwave sriracha poutine try-hard distillery. Tattooed shabby chic small batch, pabst art party heirloom letterpress air plant pop-up. Sustainable chia skateboard art party banjo cardigan normcore affogato vexillologist quinoa meggings man bun master cleanse shoreditch readymade. Yuccie prism four dollar toast tbh cardigan iPhone, tumblr listicle live-edge VHS. Pug lyft normcore hot chicken biodiesel, actually keffiyeh thundercats photo booth pour-over twee fam food truck microdosing banh mi. Vice activated charcoal raclette unicorn live-edge post-ironic. Heirloom vexillologist coloring book, beard deep v letterpress echo park humblebrag tilde.
+
+90's four loko seitan photo booth gochujang freegan tumeric listicle fam ugh humblebrag. Bespoke leggings gastropub, biodiesel brunch pug fashion axe meh swag art party neutra deep v chia. Enamel pin fanny pack knausgaard tofu, artisan cronut hammock meditation occupy master cleanse chartreuse lumbersexual. Kombucha kogi viral truffaut synth distillery single-origin coffee ugh slow-carb marfa selfies. Pitchfork schlitz semiotics fanny pack, ugh artisan vegan vaporware hexagon. Polaroid fixie post-ironic venmo wolf ramps **kale chips**.
+
+> There should be no margin above this first sentence.
+>
+> Blockquotes should be a lighter gray with a border along the left side in the secondary color.
+>
+> There should be no margin below this final sentence.
+
+## First Header 2
+
+This is a normal paragraph following a header. Knausgaard kale chips snackwave microdosing cronut copper mug swag synth bitters letterpress glossier **craft beer**. Mumblecore bushwick authentic gochujang vegan chambray meditation jean shorts irony. Viral farm-to-table kale chips, pork belly palo santo distillery activated charcoal aesthetic jianbing air plant woke lomo VHS organic. Tattooed locavore succulents heirloom, small batch sriracha echo park DIY af. Shaman you probably haven't heard of them copper mug, crucifix green juice vape *single-origin coffee* brunch actually. Mustache etsy vexillologist raclette authentic fam. Tousled beard humblebrag asymmetrical. I love turkey, I love my job, I love my friends, I love Chardonnay!
+
+Deae legum paulatimque terra, non vos mutata tacet: dic. Vocant docuique me plumas fila quin afuerunt copia haec o neque.
+
+On big screens, paragraphs and headings should not take up the full container width, but we want tables, code blocks and similar to take the full width.
+
+Scenester tumeric pickled, authentic crucifix post-ironic fam freegan VHS pork belly 8-bit yuccie PBR&B. **I love this life we live in**.
+
+
+## Second Header 2
+
+> This is a blockquote following a header. Bacon ipsum dolor sit amet t-bone doner shank drumstick, pork belly porchetta chuck sausage brisket ham hock rump pig. Chuck kielbasa leberkas, pork bresaola ham hock filet mignon cow shoulder short ribs biltong.
+
+### Header 3
+
+```
+This is a code block following a header.
+```
+
+Next level leggings before they sold out, PBR&B church-key shaman echo park. Kale chips occupy godard whatever pop-up freegan pork belly selfies. Gastropub Belinda subway tile woke post-ironic seitan. Shabby chic man bun semiotics vape, chia messenger bag plaid cardigan.
+
+#### Header 4
+
+* This is an unordered list following a header.
+* This is an unordered list following a header.
+* This is an unordered list following a header.
+
+##### Header 5
+
+1. This is an ordered list following a header.
+2. This is an ordered list following a header.
+3. This is an ordered list following a header.
+
+###### Header 6
+
+| What | Follows |
+|-----------|-----------------|
+| A table | A header |
+| A table | A header |
+| A table | A header |
+
+----------------
+
+There's a horizontal rule above and below this.
+
+----------------
+
+Here is an unordered list:
+
+* Liverpool F.C.
+* Chelsea F.C.
+* Manchester United F.C.
+
+And an ordered list:
+
+1. Michael Brecker
+2. Seamus Blake
+3. Branford Marsalis
+
+And an unordered task list:
+
+- [x] Create a Hugo theme
+- [x] Add task lists to it
+- [ ] Take a vacation
+
+And a "mixed" task list:
+
+- [ ] Pack bags
+- ?
+- [ ] Travel!
+
+And a nested list:
+
+* Jackson 5
+ * Michael
+ * Tito
+ * Jackie
+ * Marlon
+ * Jermaine
+* TMNT
+ * Leonardo
+ * Michelangelo
+ * Donatello
+ * Raphael
+
+Definition lists can be used with Markdown syntax. Definition headers are bold.
+
+Name
+: Godzilla
+
+Born
+: 1952
+
+Birthplace
+: Japan
+
+Color
+: Green
+
+
+----------------
+
+Tables should have bold headings and alternating shaded rows.
+
+| Artist | Album | Year |
+|-------------------|-----------------|------|
+| Michael Jackson | Thriller | 1982 |
+| Prince | Purple Rain | 1984 |
+| Beastie Boys | License to Ill | 1986 |
+
+If a table is too wide, it should scroll horizontally.
+
+| Artist | Album | Year | Label | Awards | Songs |
+|-------------------|-----------------|------|-------------|----------|-----------|
+| Michael Jackson | Thriller | 1982 | Epic Records | Grammy Award for Album of the Year, American Music Award for Favorite Pop/Rock Album, American Music Award for Favorite Soul/R&B Album, Brit Award for Best Selling Album, Grammy Award for Best Engineered Album, Non-Classical | Wanna Be Startin' Somethin', Baby Be Mine, The Girl Is Mine, Thriller, Beat It, Billie Jean, Human Nature, P.Y.T. (Pretty Young Thing), The Lady in My Life |
+| Prince | Purple Rain | 1984 | Warner Brothers Records | Grammy Award for Best Score Soundtrack for Visual Media, American Music Award for Favorite Pop/Rock Album, American Music Award for Favorite Soul/R&B Album, Brit Award for Best Soundtrack/Cast Recording, Grammy Award for Best Rock Performance by a Duo or Group with Vocal | Let's Go Crazy, Take Me With U, The Beautiful Ones, Computer Blue, Darling Nikki, When Doves Cry, I Would Die 4 U, Baby I'm a Star, Purple Rain |
+| Beastie Boys | License to Ill | 1986 | Mercury Records | noawardsbutthistablecelliswide | Rhymin & Stealin, The New Style, She's Crafty, Posse in Effect, Slow Ride, Girls, (You Gotta) Fight for Your Right, No Sleep Till Brooklyn, Paul Revere, Hold It Now, Hit It, Brass Monkey, Slow and Low, Time to Get Ill |
+
+----------------
+
+Code snippets like `var foo = "bar";` can be shown inline.
+
+Also, `this should vertically align` ~~`with this`~~ ~~and this~~.
+
+Code can also be shown in a block element.
+
+```
+foo := "bar";
+bar := "foo";
+```
+
+Code can also use syntax highlighting.
+
+```go
+func main() {
+ input := `var foo = "bar";`
+
+ lexer := lexers.Get("javascript")
+ iterator, _ := lexer.Tokenise(nil, input)
+ style := styles.Get("github")
+ formatter := html.New(html.WithLineNumbers())
+
+ var buff bytes.Buffer
+ formatter.Format(&buff, style, iterator)
+
+ fmt.Println(buff.String())
+}
+```
+
+```
+Long, single-line code blocks should not wrap. They should horizontally scroll if they are too long. This line should be long enough to demonstrate this.
+```
+
+Inline code inside table cells should still be distinguishable.
+
+| Language | Code |
+|-------------|--------------------|
+| Javascript | `var foo = "bar";` |
+| Ruby | `foo = "bar"{` |
+
+----------------
+
+Small images should be shown at their actual size.
+
+![](https://upload.wikimedia.org/wikipedia/commons/thumb/9/9e/Picea_abies_shoot_with_buds%2C_Sogndal%2C_Norway.jpg/240px-Picea_abies_shoot_with_buds%2C_Sogndal%2C_Norway.jpg)
+
+Large images should always scale down and fit in the content container.
+
+![](https://upload.wikimedia.org/wikipedia/commons/thumb/9/9e/Picea_abies_shoot_with_buds%2C_Sogndal%2C_Norway.jpg/1024px-Picea_abies_shoot_with_buds%2C_Sogndal%2C_Norway.jpg)
+
+_The photo above of the Spruce Picea abies shoot with foliage buds: Bjørn Erik Pedersen, CC-BY-SA._
+
+
+## Components
+
+### Alerts
+
+{{< alert >}}This is an alert.{{< /alert >}}
+{{< alert title="Note" >}}This is an alert with a title.{{< /alert >}}
+{{% alert title="Note" %}}This is an alert with a title and **Markdown**.{{% /alert %}}
+{{< alert color="success" >}}This is a successful alert.{{< /alert >}}
+{{< alert color="warning" >}}This is a warning.{{< /alert >}}
+{{< alert color="warning" title="Warning" >}}This is a warning with a title.{{< /alert >}}
+
+
+## Another Heading
+
+Add some sections here to see how the ToC looks like. Bacon ipsum dolor sit amet t-bone doner shank drumstick, pork belly porchetta chuck sausage brisket ham hock rump pig. Chuck kielbasa leberkas, pork bresaola ham hock filet mignon cow shoulder short ribs biltong.
+
+### This Document
+
+Inguina genus: Anaphen post: lingua violente voce suae meus aetate diversi. Orbis unam nec flammaeque status deam Silenum erat et a ferrea. Excitus rigidum ait: vestro et Herculis convicia: nitidae deseruit coniuge Proteaque adiciam *eripitur*? Sitim noceat signa *probat quidem*. Sua longis *fugatis* quidem genae.
+
+
+### Pixel Count
+
+Tilde photo booth wayfarers cliche lomo intelligentsia man braid kombucha vaporware farm-to-table mixtape portland. PBR&B pickled cornhole ugh try-hard ethical subway tile. Fixie paleo intelligentsia pabst. Ennui waistcoat vinyl gochujang. Poutine salvia authentic affogato, chambray lumbersexual shabby chic.
+
+### Contact Info
+
+Plaid hell of cred microdosing, succulents tilde pour-over. Offal shabby chic 3 wolf moon blue bottle raw denim normcore poutine pork belly.
+
+
+### External Links
+
+Stumptown PBR&B keytar plaid street art, forage XOXO pitchfork selvage affogato green juice listicle pickled everyday carry hashtag. Organic sustainable letterpress sartorial scenester intelligentsia swag bushwick. Put a bird on it stumptown neutra locavore. IPhone typewriter messenger bag narwhal. Ennui cold-pressed seitan flannel keytar, single-origin coffee adaptogen occupy yuccie williamsburg chillwave shoreditch forage waistcoat.
+
+
+
+```
+This is the final element on the page and there should be no margin below this.
+```
diff --git a/content/en/docs/Tutorials/_index.md b/content/en/docs/Tutorials/_index.md
new file mode 100755
index 0000000..df2584d
--- /dev/null
+++ b/content/en/docs/Tutorials/_index.md
@@ -0,0 +1,16 @@
+
+---
+title: "Tutorials"
+linkTitle: "Tutorials"
+weight: 8
+date: 2017-01-04
+description: >
+ Show your user how to work through some end to end examples.
+---
+
+{{% pageinfo %}}
+This is a placeholder page that shows you how to use this template site.
+{{% /pageinfo %}}
+
+Tutorials are **complete worked examples** made up of **multiple tasks** that guide the user through a relatively simple but realistic scenario: building an application that uses some of your project’s features, for example. If you have already created some Examples for your project you can base Tutorials on them. This section is **optional**. However, remember that although you may not need this section at first, having tutorials can be useful to help your users engage with your example code, especially if there are aspects that need more explanation than you can easily provide in code comments.
+
diff --git a/content/en/docs/Tutorials/multi-bear.md b/content/en/docs/Tutorials/multi-bear.md
new file mode 100644
index 0000000..0c07e1f
--- /dev/null
+++ b/content/en/docs/Tutorials/multi-bear.md
@@ -0,0 +1,238 @@
+---
+title: "Multi-Bear Domicile Setup"
+date: 2017-01-05
+weight: 4
+description: >
+ A short lead description about this content page. It can be **bold** or _italic_ and can be split over multiple paragraphs.
+---
+
+{{% pageinfo %}}
+This is a placeholder page. Replace it with your own content.
+{{% /pageinfo %}}
+
+Text can be **bold**, _italic_, or ~~strikethrough~~. [Links](https://gohugo.io) should be blue with no underlines (unless hovered over).
+
+There should be whitespace between paragraphs. Vape migas chillwave sriracha poutine try-hard distillery. Tattooed shabby chic small batch, pabst art party heirloom letterpress air plant pop-up. Sustainable chia skateboard art party banjo cardigan normcore affogato vexillologist quinoa meggings man bun master cleanse shoreditch readymade. Yuccie prism four dollar toast tbh cardigan iPhone, tumblr listicle live-edge VHS. Pug lyft normcore hot chicken biodiesel, actually keffiyeh thundercats photo booth pour-over twee fam food truck microdosing banh mi. Vice activated charcoal raclette unicorn live-edge post-ironic. Heirloom vexillologist coloring book, beard deep v letterpress echo park humblebrag tilde.
+
+90's four loko seitan photo booth gochujang freegan tumeric listicle fam ugh humblebrag. Bespoke leggings gastropub, biodiesel brunch pug fashion axe meh swag art party neutra deep v chia. Enamel pin fanny pack knausgaard tofu, artisan cronut hammock meditation occupy master cleanse chartreuse lumbersexual. Kombucha kogi viral truffaut synth distillery single-origin coffee ugh slow-carb marfa selfies. Pitchfork schlitz semiotics fanny pack, ugh artisan vegan vaporware hexagon. Polaroid fixie post-ironic venmo wolf ramps **kale chips**.
+
+> There should be no margin above this first sentence.
+>
+> Blockquotes should be a lighter gray with a border along the left side in the secondary color.
+>
+> There should be no margin below this final sentence.
+
+## First Header 2
+
+This is a normal paragraph following a header. Knausgaard kale chips snackwave microdosing cronut copper mug swag synth bitters letterpress glossier **craft beer**. Mumblecore bushwick authentic gochujang vegan chambray meditation jean shorts irony. Viral farm-to-table kale chips, pork belly palo santo distillery activated charcoal aesthetic jianbing air plant woke lomo VHS organic. Tattooed locavore succulents heirloom, small batch sriracha echo park DIY af. Shaman you probably haven't heard of them copper mug, crucifix green juice vape *single-origin coffee* brunch actually. Mustache etsy vexillologist raclette authentic fam. Tousled beard humblebrag asymmetrical. I love turkey, I love my job, I love my friends, I love Chardonnay!
+
+Deae legum paulatimque terra, non vos mutata tacet: dic. Vocant docuique me plumas fila quin afuerunt copia haec o neque.
+
+On big screens, paragraphs and headings should not take up the full container width, but we want tables, code blocks and similar to take the full width.
+
+Scenester tumeric pickled, authentic crucifix post-ironic fam freegan VHS pork belly 8-bit yuccie PBR&B. **I love this life we live in**.
+
+
+## Second Header 2
+
+> This is a blockquote following a header. Bacon ipsum dolor sit amet t-bone doner shank drumstick, pork belly porchetta chuck sausage brisket ham hock rump pig. Chuck kielbasa leberkas, pork bresaola ham hock filet mignon cow shoulder short ribs biltong.
+
+### Header 3
+
+```
+This is a code block following a header.
+```
+
+Next level leggings before they sold out, PBR&B church-key shaman echo park. Kale chips occupy godard whatever pop-up freegan pork belly selfies. Gastropub Belinda subway tile woke post-ironic seitan. Shabby chic man bun semiotics vape, chia messenger bag plaid cardigan.
+
+#### Header 4
+
+* This is an unordered list following a header.
+* This is an unordered list following a header.
+* This is an unordered list following a header.
+
+##### Header 5
+
+1. This is an ordered list following a header.
+2. This is an ordered list following a header.
+3. This is an ordered list following a header.
+
+###### Header 6
+
+| What | Follows |
+|-----------|-----------------|
+| A table | A header |
+| A table | A header |
+| A table | A header |
+
+----------------
+
+There's a horizontal rule above and below this.
+
+----------------
+
+Here is an unordered list:
+
+* Liverpool F.C.
+* Chelsea F.C.
+* Manchester United F.C.
+
+And an ordered list:
+
+1. Michael Brecker
+2. Seamus Blake
+3. Branford Marsalis
+
+And an unordered task list:
+
+- [x] Create a Hugo theme
+- [x] Add task lists to it
+- [ ] Take a vacation
+
+And a "mixed" task list:
+
+- [ ] Pack bags
+- ?
+- [ ] Travel!
+
+And a nested list:
+
+* Jackson 5
+ * Michael
+ * Tito
+ * Jackie
+ * Marlon
+ * Jermaine
+* TMNT
+ * Leonardo
+ * Michelangelo
+ * Donatello
+ * Raphael
+
+Definition lists can be used with Markdown syntax. Definition headers are bold.
+
+Name
+: Godzilla
+
+Born
+: 1952
+
+Birthplace
+: Japan
+
+Color
+: Green
+
+
+----------------
+
+Tables should have bold headings and alternating shaded rows.
+
+| Artist | Album | Year |
+|-------------------|-----------------|------|
+| Michael Jackson | Thriller | 1982 |
+| Prince | Purple Rain | 1984 |
+| Beastie Boys | License to Ill | 1986 |
+
+If a table is too wide, it should scroll horizontally.
+
+| Artist | Album | Year | Label | Awards | Songs |
+|-------------------|-----------------|------|-------------|----------|-----------|
+| Michael Jackson | Thriller | 1982 | Epic Records | Grammy Award for Album of the Year, American Music Award for Favorite Pop/Rock Album, American Music Award for Favorite Soul/R&B Album, Brit Award for Best Selling Album, Grammy Award for Best Engineered Album, Non-Classical | Wanna Be Startin' Somethin', Baby Be Mine, The Girl Is Mine, Thriller, Beat It, Billie Jean, Human Nature, P.Y.T. (Pretty Young Thing), The Lady in My Life |
+| Prince | Purple Rain | 1984 | Warner Brothers Records | Grammy Award for Best Score Soundtrack for Visual Media, American Music Award for Favorite Pop/Rock Album, American Music Award for Favorite Soul/R&B Album, Brit Award for Best Soundtrack/Cast Recording, Grammy Award for Best Rock Performance by a Duo or Group with Vocal | Let's Go Crazy, Take Me With U, The Beautiful Ones, Computer Blue, Darling Nikki, When Doves Cry, I Would Die 4 U, Baby I'm a Star, Purple Rain |
+| Beastie Boys | License to Ill | 1986 | Mercury Records | noawardsbutthistablecelliswide | Rhymin & Stealin, The New Style, She's Crafty, Posse in Effect, Slow Ride, Girls, (You Gotta) Fight for Your Right, No Sleep Till Brooklyn, Paul Revere, Hold It Now, Hit It, Brass Monkey, Slow and Low, Time to Get Ill |
+
+----------------
+
+Code snippets like `var foo = "bar";` can be shown inline.
+
+Also, `this should vertically align` ~~`with this`~~ ~~and this~~.
+
+Code can also be shown in a block element.
+
+```
+foo := "bar";
+bar := "foo";
+```
+
+Code can also use syntax highlighting.
+
+```go
+func main() {
+ input := `var foo = "bar";`
+
+ lexer := lexers.Get("javascript")
+ iterator, _ := lexer.Tokenise(nil, input)
+ style := styles.Get("github")
+ formatter := html.New(html.WithLineNumbers())
+
+ var buff bytes.Buffer
+ formatter.Format(&buff, style, iterator)
+
+ fmt.Println(buff.String())
+}
+```
+
+```
+Long, single-line code blocks should not wrap. They should horizontally scroll if they are too long. This line should be long enough to demonstrate this.
+```
+
+Inline code inside table cells should still be distinguishable.
+
+| Language | Code |
+|-------------|--------------------|
+| Javascript | `var foo = "bar";` |
+| Ruby | `foo = "bar"{` |
+
+----------------
+
+Small images should be shown at their actual size.
+
+![](https://upload.wikimedia.org/wikipedia/commons/thumb/9/9e/Picea_abies_shoot_with_buds%2C_Sogndal%2C_Norway.jpg/240px-Picea_abies_shoot_with_buds%2C_Sogndal%2C_Norway.jpg)
+
+Large images should always scale down and fit in the content container.
+
+![](https://upload.wikimedia.org/wikipedia/commons/thumb/9/9e/Picea_abies_shoot_with_buds%2C_Sogndal%2C_Norway.jpg/1024px-Picea_abies_shoot_with_buds%2C_Sogndal%2C_Norway.jpg)
+
+_The photo above of the Spruce Picea abies shoot with foliage buds: Bjørn Erik Pedersen, CC-BY-SA._
+
+
+## Components
+
+### Alerts
+
+{{< alert >}}This is an alert.{{< /alert >}}
+{{< alert title="Note" >}}This is an alert with a title.{{< /alert >}}
+{{% alert title="Note" %}}This is an alert with a title and **Markdown**.{{% /alert %}}
+{{< alert color="success" >}}This is a successful alert.{{< /alert >}}
+{{< alert color="warning" >}}This is a warning.{{< /alert >}}
+{{< alert color="warning" title="Warning" >}}This is a warning with a title.{{< /alert >}}
+
+
+## Another Heading
+
+Add some sections here to see how the ToC looks like. Bacon ipsum dolor sit amet t-bone doner shank drumstick, pork belly porchetta chuck sausage brisket ham hock rump pig. Chuck kielbasa leberkas, pork bresaola ham hock filet mignon cow shoulder short ribs biltong.
+
+### This Document
+
+Inguina genus: Anaphen post: lingua violente voce suae meus aetate diversi. Orbis unam nec flammaeque status deam Silenum erat et a ferrea. Excitus rigidum ait: vestro et Herculis convicia: nitidae deseruit coniuge Proteaque adiciam *eripitur*? Sitim noceat signa *probat quidem*. Sua longis *fugatis* quidem genae.
+
+
+### Pixel Count
+
+Tilde photo booth wayfarers cliche lomo intelligentsia man braid kombucha vaporware farm-to-table mixtape portland. PBR&B pickled cornhole ugh try-hard ethical subway tile. Fixie paleo intelligentsia pabst. Ennui waistcoat vinyl gochujang. Poutine salvia authentic affogato, chambray lumbersexual shabby chic.
+
+### Contact Info
+
+Plaid hell of cred microdosing, succulents tilde pour-over. Offal shabby chic 3 wolf moon blue bottle raw denim normcore poutine pork belly.
+
+
+### External Links
+
+Stumptown PBR&B keytar plaid street art, forage XOXO pitchfork selvage affogato green juice listicle pickled everyday carry hashtag. Organic sustainable letterpress sartorial scenester intelligentsia swag bushwick. Put a bird on it stumptown neutra locavore. IPhone typewriter messenger bag narwhal. Ennui cold-pressed seitan flannel keytar, single-origin coffee adaptogen occupy yuccie williamsburg chillwave shoreditch forage waistcoat.
+
+
+
+```
+This is the final element on the page and there should be no margin below this.
+```
diff --git a/content/en/docs/Tutorials/tutorial2.md b/content/en/docs/Tutorials/tutorial2.md
new file mode 100644
index 0000000..0cad5b5
--- /dev/null
+++ b/content/en/docs/Tutorials/tutorial2.md
@@ -0,0 +1,238 @@
+---
+title: "Another Tutorial"
+date: 2017-01-05
+weight: 5
+description: >
+ A short lead description about this content page. It can be **bold** or _italic_ and can be split over multiple paragraphs.
+---
+
+{{% pageinfo %}}
+This is a placeholder page. Replace it with your own content.
+{{% /pageinfo %}}
+
+Text can be **bold**, _italic_, or ~~strikethrough~~. [Links](https://gohugo.io) should be blue with no underlines (unless hovered over).
+
+There should be whitespace between paragraphs. Vape migas chillwave sriracha poutine try-hard distillery. Tattooed shabby chic small batch, pabst art party heirloom letterpress air plant pop-up. Sustainable chia skateboard art party banjo cardigan normcore affogato vexillologist quinoa meggings man bun master cleanse shoreditch readymade. Yuccie prism four dollar toast tbh cardigan iPhone, tumblr listicle live-edge VHS. Pug lyft normcore hot chicken biodiesel, actually keffiyeh thundercats photo booth pour-over twee fam food truck microdosing banh mi. Vice activated charcoal raclette unicorn live-edge post-ironic. Heirloom vexillologist coloring book, beard deep v letterpress echo park humblebrag tilde.
+
+90's four loko seitan photo booth gochujang freegan tumeric listicle fam ugh humblebrag. Bespoke leggings gastropub, biodiesel brunch pug fashion axe meh swag art party neutra deep v chia. Enamel pin fanny pack knausgaard tofu, artisan cronut hammock meditation occupy master cleanse chartreuse lumbersexual. Kombucha kogi viral truffaut synth distillery single-origin coffee ugh slow-carb marfa selfies. Pitchfork schlitz semiotics fanny pack, ugh artisan vegan vaporware hexagon. Polaroid fixie post-ironic venmo wolf ramps **kale chips**.
+
+> There should be no margin above this first sentence.
+>
+> Blockquotes should be a lighter gray with a border along the left side in the secondary color.
+>
+> There should be no margin below this final sentence.
+
+## First Header 2
+
+This is a normal paragraph following a header. Knausgaard kale chips snackwave microdosing cronut copper mug swag synth bitters letterpress glossier **craft beer**. Mumblecore bushwick authentic gochujang vegan chambray meditation jean shorts irony. Viral farm-to-table kale chips, pork belly palo santo distillery activated charcoal aesthetic jianbing air plant woke lomo VHS organic. Tattooed locavore succulents heirloom, small batch sriracha echo park DIY af. Shaman you probably haven't heard of them copper mug, crucifix green juice vape *single-origin coffee* brunch actually. Mustache etsy vexillologist raclette authentic fam. Tousled beard humblebrag asymmetrical. I love turkey, I love my job, I love my friends, I love Chardonnay!
+
+Deae legum paulatimque terra, non vos mutata tacet: dic. Vocant docuique me plumas fila quin afuerunt copia haec o neque.
+
+On big screens, paragraphs and headings should not take up the full container width, but we want tables, code blocks and similar to take the full width.
+
+Scenester tumeric pickled, authentic crucifix post-ironic fam freegan VHS pork belly 8-bit yuccie PBR&B. **I love this life we live in**.
+
+
+## Second Header 2
+
+> This is a blockquote following a header. Bacon ipsum dolor sit amet t-bone doner shank drumstick, pork belly porchetta chuck sausage brisket ham hock rump pig. Chuck kielbasa leberkas, pork bresaola ham hock filet mignon cow shoulder short ribs biltong.
+
+### Header 3
+
+```
+This is a code block following a header.
+```
+
+Next level leggings before they sold out, PBR&B church-key shaman echo park. Kale chips occupy godard whatever pop-up freegan pork belly selfies. Gastropub Belinda subway tile woke post-ironic seitan. Shabby chic man bun semiotics vape, chia messenger bag plaid cardigan.
+
+#### Header 4
+
+* This is an unordered list following a header.
+* This is an unordered list following a header.
+* This is an unordered list following a header.
+
+##### Header 5
+
+1. This is an ordered list following a header.
+2. This is an ordered list following a header.
+3. This is an ordered list following a header.
+
+###### Header 6
+
+| What | Follows |
+|-----------|-----------------|
+| A table | A header |
+| A table | A header |
+| A table | A header |
+
+----------------
+
+There's a horizontal rule above and below this.
+
+----------------
+
+Here is an unordered list:
+
+* Liverpool F.C.
+* Chelsea F.C.
+* Manchester United F.C.
+
+And an ordered list:
+
+1. Michael Brecker
+2. Seamus Blake
+3. Branford Marsalis
+
+And an unordered task list:
+
+- [x] Create a Hugo theme
+- [x] Add task lists to it
+- [ ] Take a vacation
+
+And a "mixed" task list:
+
+- [ ] Pack bags
+- ?
+- [ ] Travel!
+
+And a nested list:
+
+* Jackson 5
+ * Michael
+ * Tito
+ * Jackie
+ * Marlon
+ * Jermaine
+* TMNT
+ * Leonardo
+ * Michelangelo
+ * Donatello
+ * Raphael
+
+Definition lists can be used with Markdown syntax. Definition headers are bold.
+
+Name
+: Godzilla
+
+Born
+: 1952
+
+Birthplace
+: Japan
+
+Color
+: Green
+
+
+----------------
+
+Tables should have bold headings and alternating shaded rows.
+
+| Artist | Album | Year |
+|-------------------|-----------------|------|
+| Michael Jackson | Thriller | 1982 |
+| Prince | Purple Rain | 1984 |
+| Beastie Boys | License to Ill | 1986 |
+
+If a table is too wide, it should scroll horizontally.
+
+| Artist | Album | Year | Label | Awards | Songs |
+|-------------------|-----------------|------|-------------|----------|-----------|
+| Michael Jackson | Thriller | 1982 | Epic Records | Grammy Award for Album of the Year, American Music Award for Favorite Pop/Rock Album, American Music Award for Favorite Soul/R&B Album, Brit Award for Best Selling Album, Grammy Award for Best Engineered Album, Non-Classical | Wanna Be Startin' Somethin', Baby Be Mine, The Girl Is Mine, Thriller, Beat It, Billie Jean, Human Nature, P.Y.T. (Pretty Young Thing), The Lady in My Life |
+| Prince | Purple Rain | 1984 | Warner Brothers Records | Grammy Award for Best Score Soundtrack for Visual Media, American Music Award for Favorite Pop/Rock Album, American Music Award for Favorite Soul/R&B Album, Brit Award for Best Soundtrack/Cast Recording, Grammy Award for Best Rock Performance by a Duo or Group with Vocal | Let's Go Crazy, Take Me With U, The Beautiful Ones, Computer Blue, Darling Nikki, When Doves Cry, I Would Die 4 U, Baby I'm a Star, Purple Rain |
+| Beastie Boys | License to Ill | 1986 | Mercury Records | noawardsbutthistablecelliswide | Rhymin & Stealin, The New Style, She's Crafty, Posse in Effect, Slow Ride, Girls, (You Gotta) Fight for Your Right, No Sleep Till Brooklyn, Paul Revere, Hold It Now, Hit It, Brass Monkey, Slow and Low, Time to Get Ill |
+
+----------------
+
+Code snippets like `var foo = "bar";` can be shown inline.
+
+Also, `this should vertically align` ~~`with this`~~ ~~and this~~.
+
+Code can also be shown in a block element.
+
+```
+foo := "bar";
+bar := "foo";
+```
+
+Code can also use syntax highlighting.
+
+```go
+func main() {
+ input := `var foo = "bar";`
+
+ lexer := lexers.Get("javascript")
+ iterator, _ := lexer.Tokenise(nil, input)
+ style := styles.Get("github")
+ formatter := html.New(html.WithLineNumbers())
+
+ var buff bytes.Buffer
+ formatter.Format(&buff, style, iterator)
+
+ fmt.Println(buff.String())
+}
+```
+
+```
+Long, single-line code blocks should not wrap. They should horizontally scroll if they are too long. This line should be long enough to demonstrate this.
+```
+
+Inline code inside table cells should still be distinguishable.
+
+| Language | Code |
+|-------------|--------------------|
+| Javascript | `var foo = "bar";` |
+| Ruby | `foo = "bar"{` |
+
+----------------
+
+Small images should be shown at their actual size.
+
+![](https://upload.wikimedia.org/wikipedia/commons/thumb/9/9e/Picea_abies_shoot_with_buds%2C_Sogndal%2C_Norway.jpg/240px-Picea_abies_shoot_with_buds%2C_Sogndal%2C_Norway.jpg)
+
+Large images should always scale down and fit in the content container.
+
+![](https://upload.wikimedia.org/wikipedia/commons/thumb/9/9e/Picea_abies_shoot_with_buds%2C_Sogndal%2C_Norway.jpg/1024px-Picea_abies_shoot_with_buds%2C_Sogndal%2C_Norway.jpg)
+
+_The photo above of the Spruce Picea abies shoot with foliage buds: Bjørn Erik Pedersen, CC-BY-SA._
+
+
+## Components
+
+### Alerts
+
+{{< alert >}}This is an alert.{{< /alert >}}
+{{< alert title="Note" >}}This is an alert with a title.{{< /alert >}}
+{{% alert title="Note" %}}This is an alert with a title and **Markdown**.{{% /alert %}}
+{{< alert color="success" >}}This is a successful alert.{{< /alert >}}
+{{< alert color="warning" >}}This is a warning.{{< /alert >}}
+{{< alert color="warning" title="Warning" >}}This is a warning with a title.{{< /alert >}}
+
+
+## Another Heading
+
+Add some sections here to see how the ToC looks like. Bacon ipsum dolor sit amet t-bone doner shank drumstick, pork belly porchetta chuck sausage brisket ham hock rump pig. Chuck kielbasa leberkas, pork bresaola ham hock filet mignon cow shoulder short ribs biltong.
+
+### This Document
+
+Inguina genus: Anaphen post: lingua violente voce suae meus aetate diversi. Orbis unam nec flammaeque status deam Silenum erat et a ferrea. Excitus rigidum ait: vestro et Herculis convicia: nitidae deseruit coniuge Proteaque adiciam *eripitur*? Sitim noceat signa *probat quidem*. Sua longis *fugatis* quidem genae.
+
+
+### Pixel Count
+
+Tilde photo booth wayfarers cliche lomo intelligentsia man braid kombucha vaporware farm-to-table mixtape portland. PBR&B pickled cornhole ugh try-hard ethical subway tile. Fixie paleo intelligentsia pabst. Ennui waistcoat vinyl gochujang. Poutine salvia authentic affogato, chambray lumbersexual shabby chic.
+
+### Contact Info
+
+Plaid hell of cred microdosing, succulents tilde pour-over. Offal shabby chic 3 wolf moon blue bottle raw denim normcore poutine pork belly.
+
+
+### External Links
+
+Stumptown PBR&B keytar plaid street art, forage XOXO pitchfork selvage affogato green juice listicle pickled everyday carry hashtag. Organic sustainable letterpress sartorial scenester intelligentsia swag bushwick. Put a bird on it stumptown neutra locavore. IPhone typewriter messenger bag narwhal. Ennui cold-pressed seitan flannel keytar, single-origin coffee adaptogen occupy yuccie williamsburg chillwave shoreditch forage waistcoat.
+
+
+
+```
+This is the final element on the page and there should be no margin below this.
+```
diff --git a/content/en/docs/_index.md b/content/en/docs/_index.md
new file mode 100755
index 0000000..d5ec96a
--- /dev/null
+++ b/content/en/docs/_index.md
@@ -0,0 +1,24 @@
+
+---
+title: "Documentation"
+linkTitle: "Documentation"
+weight: 20
+menu:
+ main:
+ weight: 20
+---
+
+{{% pageinfo %}}
+This is a placeholder page that shows you how to use this template site.
+{{% /pageinfo %}}
+
+
+This section is where the user documentation for your project lives - all the information your users need to understand and successfully use your project.
+
+For large documentation sets we recommend adding content under the headings in this section, though if some or all of them don’t apply to your project feel free to remove them or add your own. You can see an example of a smaller Docsy documentation site in the [Docsy User Guide](https://docsy.dev/docs/), which lives in the [Docsy theme repo](https://github.com/google/docsy/tree/master/userguide) if you'd like to copy its docs section.
+
+Other content such as marketing material, case studies, and community updates should live in the [About](/about/) and [Community](/community/) pages.
+
+Find out how to use the Docsy theme in the [Docsy User Guide](https://docsy.dev/docs/). You can learn more about how to organize your documentation (and how we organized this site) in [Organizing Your Content](https://docsy.dev/docs/best-practices/organizing-content/).
+
+
diff --git a/content/en/featured-background.jpg b/content/en/featured-background.jpg
new file mode 100644
index 0000000..44c220e
Binary files /dev/null and b/content/en/featured-background.jpg differ
diff --git a/content/en/search.md b/content/en/search.md
new file mode 100644
index 0000000..e3690fd
--- /dev/null
+++ b/content/en/search.md
@@ -0,0 +1,6 @@
+---
+title: Search Results
+layout: search
+
+---
+
diff --git a/go.mod b/go.mod
new file mode 100644
index 0000000..1000f68
--- /dev/null
+++ b/go.mod
@@ -0,0 +1,9 @@
+module github.com/google/docsy-example
+
+go 1.12
+
+require (
+ github.com/FortAwesome/Font-Awesome v0.0.0-20220831210243-d3a7818c253f // indirect
+ github.com/google/docsy v0.5.1 // indirect
+ github.com/twbs/bootstrap v4.6.2+incompatible // indirect
+)
diff --git a/go.sum b/go.sum
new file mode 100644
index 0000000..796b137
--- /dev/null
+++ b/go.sum
@@ -0,0 +1,7 @@
+github.com/FortAwesome/Font-Awesome v0.0.0-20220831210243-d3a7818c253f h1:bvkUptSRPZBr3Kxuk+bnWCEmQ5MtEJX5fjezyV0bC3g=
+github.com/FortAwesome/Font-Awesome v0.0.0-20220831210243-d3a7818c253f/go.mod h1:IUgezN/MFpCDIlFezw3L8j83oeiIuYoj28Miwr/KUYo=
+github.com/google/docsy v0.5.1 h1:D/ZdFKiE29xM/gwPwQzmkyXhcbQGkReRS6aGrF7lnYk=
+github.com/google/docsy v0.5.1/go.mod h1:maoUAQU5H/d+FrZIB4xg1EVWAx7RyFMGSDJyWghm31E=
+github.com/google/docsy/dependencies v0.5.1/go.mod h1:EDGc2znMbGUw0RW5kWwy2oGgLt0iVXBmoq4UOqstuNE=
+github.com/twbs/bootstrap v4.6.2+incompatible h1:TDa+R51BTiy1wEHSYjmqDb8LxNl/zaEjAOpRE9Hwh/o=
+github.com/twbs/bootstrap v4.6.2+incompatible/go.mod h1:fZTSrkpSf0/HkL0IIJzvVspTt1r9zuf7XlZau8kpcY0=
diff --git a/layouts/404.html b/layouts/404.html
new file mode 100644
index 0000000..378b736
--- /dev/null
+++ b/layouts/404.html
@@ -0,0 +1,10 @@
+{{ define "main"}}
+
+
+
Not found
+
Oops! This page doesn't exist. Try going back to our home page .
+
+
You can learn how to make a 404 page like this in Custom 404 Pages .
+
+
+{{ end }}
diff --git a/node_modules/.bin/autoprefixer b/node_modules/.bin/autoprefixer
new file mode 120000
index 0000000..e876d81
--- /dev/null
+++ b/node_modules/.bin/autoprefixer
@@ -0,0 +1 @@
+../autoprefixer/bin/autoprefixer
\ No newline at end of file
diff --git a/node_modules/.bin/browserslist b/node_modules/.bin/browserslist
new file mode 120000
index 0000000..3cd991b
--- /dev/null
+++ b/node_modules/.bin/browserslist
@@ -0,0 +1 @@
+../browserslist/cli.js
\ No newline at end of file
diff --git a/node_modules/.bin/nanoid b/node_modules/.bin/nanoid
new file mode 120000
index 0000000..e2be547
--- /dev/null
+++ b/node_modules/.bin/nanoid
@@ -0,0 +1 @@
+../nanoid/bin/nanoid.cjs
\ No newline at end of file
diff --git a/node_modules/.bin/postcss b/node_modules/.bin/postcss
new file mode 120000
index 0000000..236af7c
--- /dev/null
+++ b/node_modules/.bin/postcss
@@ -0,0 +1 @@
+../postcss-cli/index.js
\ No newline at end of file
diff --git a/node_modules/.bin/update-browserslist-db b/node_modules/.bin/update-browserslist-db
new file mode 120000
index 0000000..b11e16f
--- /dev/null
+++ b/node_modules/.bin/update-browserslist-db
@@ -0,0 +1 @@
+../update-browserslist-db/cli.js
\ No newline at end of file
diff --git a/node_modules/.package-lock.json b/node_modules/.package-lock.json
new file mode 100644
index 0000000..bb236ea
--- /dev/null
+++ b/node_modules/.package-lock.json
@@ -0,0 +1,973 @@
+{
+ "name": "tech-doc-hugo",
+ "version": "0.0.1",
+ "lockfileVersion": 3,
+ "requires": true,
+ "packages": {
+ "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==",
+ "dev": true,
+ "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==",
+ "dev": true,
+ "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==",
+ "dev": true,
+ "dependencies": {
+ "@nodelib/fs.scandir": "2.1.5",
+ "fastq": "^1.6.0"
+ },
+ "engines": {
+ "node": ">= 8"
+ }
+ },
+ "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==",
+ "dev": true,
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/ansi-styles": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+ "dev": true,
+ "dependencies": {
+ "color-convert": "^2.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ }
+ },
+ "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==",
+ "dev": true,
+ "dependencies": {
+ "normalize-path": "^3.0.0",
+ "picomatch": "^2.0.4"
+ },
+ "engines": {
+ "node": ">= 8"
+ }
+ },
+ "node_modules/array-union": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/array-union/-/array-union-3.0.1.tgz",
+ "integrity": "sha512-1OvF9IbWwaeiM9VhzYXVQacMibxpXOMYVNIvMtKRyX9SImBXpKcFr8XvFDeEslCyuH/t6KRt7HEO94AlP8Iatw==",
+ "dev": true,
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/autoprefixer": {
+ "version": "10.4.14",
+ "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.14.tgz",
+ "integrity": "sha512-FQzyfOsTlwVzjHxKEqRIAdJx9niO6VCBCoEwax/VLSoQF29ggECcPuBqUMZ+u8jCZOPSy8b8/8KnuFbp0SaFZQ==",
+ "dev": true,
+ "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/binary-extensions": {
+ "version": "2.2.0",
+ "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz",
+ "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==",
+ "dev": true,
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/braces": {
+ "version": "3.0.2",
+ "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz",
+ "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==",
+ "dev": true,
+ "dependencies": {
+ "fill-range": "^7.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/browserslist": {
+ "version": "4.21.7",
+ "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.7.tgz",
+ "integrity": "sha512-BauCXrQ7I2ftSqd2mvKHGo85XR0u7Ru3C/Hxsy/0TkfCtjrmAbPdzLGasmoiBxplpDXlPvdjX9u7srIMfgasNA==",
+ "dev": true,
+ "funding": [
+ {
+ "type": "opencollective",
+ "url": "https://opencollective.com/browserslist"
+ },
+ {
+ "type": "tidelift",
+ "url": "https://tidelift.com/funding/github/npm/browserslist"
+ },
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/ai"
+ }
+ ],
+ "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/caniuse-lite": {
+ "version": "1.0.30001491",
+ "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001491.tgz",
+ "integrity": "sha512-17EYIi4TLnPiTzVKMveIxU5ETlxbSO3B6iPvMbprqnKh4qJsQGk5Nh1Lp4jIMAE0XfrujsJuWZAM3oJdMHaKBA==",
+ "dev": true,
+ "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/chokidar": {
+ "version": "3.5.3",
+ "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz",
+ "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==",
+ "dev": true,
+ "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/cliui": {
+ "version": "8.0.1",
+ "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz",
+ "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==",
+ "dev": true,
+ "dependencies": {
+ "string-width": "^4.2.0",
+ "strip-ansi": "^6.0.1",
+ "wrap-ansi": "^7.0.0"
+ },
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "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==",
+ "dev": true,
+ "dependencies": {
+ "color-name": "~1.1.4"
+ },
+ "engines": {
+ "node": ">=7.0.0"
+ }
+ },
+ "node_modules/color-name": {
+ "version": "1.1.4",
+ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
+ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
+ "dev": true
+ },
+ "node_modules/dependency-graph": {
+ "version": "0.11.0",
+ "resolved": "https://registry.npmjs.org/dependency-graph/-/dependency-graph-0.11.0.tgz",
+ "integrity": "sha512-JeMq7fEshyepOWDfcfHK06N3MhyPhz++vtqWhMT5O9A3K42rdsEDpfdVqjaqaAhsw6a+ZqeDvQVtD0hFHQWrzg==",
+ "dev": true,
+ "engines": {
+ "node": ">= 0.6.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==",
+ "dev": true,
+ "dependencies": {
+ "path-type": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/electron-to-chromium": {
+ "version": "1.4.413",
+ "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.413.tgz",
+ "integrity": "sha512-Gd+/OAhRca06dkVxIQo/W7dr6Nmk9cx6lQdZ19GvFp51k5B/lUAokm6SJfNkdV8kFLsC3Z4sLTyEHWCnB1Efbw==",
+ "dev": true
+ },
+ "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==",
+ "dev": true
+ },
+ "node_modules/escalade": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz",
+ "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==",
+ "dev": true,
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "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==",
+ "dev": true,
+ "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/fastq": {
+ "version": "1.15.0",
+ "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz",
+ "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==",
+ "dev": true,
+ "dependencies": {
+ "reusify": "^1.0.4"
+ }
+ },
+ "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==",
+ "dev": true,
+ "dependencies": {
+ "to-regex-range": "^5.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "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==",
+ "dev": true,
+ "engines": {
+ "node": "*"
+ },
+ "funding": {
+ "type": "patreon",
+ "url": "https://www.patreon.com/infusion"
+ }
+ },
+ "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==",
+ "dev": true,
+ "dependencies": {
+ "graceful-fs": "^4.2.0",
+ "jsonfile": "^6.0.1",
+ "universalify": "^2.0.0"
+ },
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "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==",
+ "dev": true,
+ "engines": {
+ "node": "6.* || 8.* || >= 10.*"
+ }
+ },
+ "node_modules/get-stdin": {
+ "version": "9.0.0",
+ "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-9.0.0.tgz",
+ "integrity": "sha512-dVKBjfWisLAicarI2Sf+JuBE/DghV4UzNAVe9yhEJuzeREd3JhOTE9cUaJTeSa77fsbQUK3pcOpJfM59+VKZaA==",
+ "dev": true,
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "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==",
+ "dev": true,
+ "dependencies": {
+ "is-glob": "^4.0.1"
+ },
+ "engines": {
+ "node": ">= 6"
+ }
+ },
+ "node_modules/globby": {
+ "version": "12.2.0",
+ "resolved": "https://registry.npmjs.org/globby/-/globby-12.2.0.tgz",
+ "integrity": "sha512-wiSuFQLZ+urS9x2gGPl1H5drc5twabmm4m2gTR27XDFyjUHJUNsS8o/2aKyIF6IoBaR630atdher0XJ5g6OMmA==",
+ "dev": true,
+ "dependencies": {
+ "array-union": "^3.0.1",
+ "dir-glob": "^3.0.1",
+ "fast-glob": "^3.2.7",
+ "ignore": "^5.1.9",
+ "merge2": "^1.4.1",
+ "slash": "^4.0.0"
+ },
+ "engines": {
+ "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "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==",
+ "dev": true
+ },
+ "node_modules/ignore": {
+ "version": "5.2.4",
+ "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz",
+ "integrity": "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==",
+ "dev": true,
+ "engines": {
+ "node": ">= 4"
+ }
+ },
+ "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==",
+ "dev": true,
+ "dependencies": {
+ "binary-extensions": "^2.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/is-extglob": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
+ "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==",
+ "dev": true,
+ "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==",
+ "dev": true,
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "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==",
+ "dev": true,
+ "dependencies": {
+ "is-extglob": "^2.1.1"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "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==",
+ "dev": true,
+ "engines": {
+ "node": ">=0.12.0"
+ }
+ },
+ "node_modules/jsonfile": {
+ "version": "6.1.0",
+ "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz",
+ "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==",
+ "dev": true,
+ "dependencies": {
+ "universalify": "^2.0.0"
+ },
+ "optionalDependencies": {
+ "graceful-fs": "^4.1.6"
+ }
+ },
+ "node_modules/lilconfig": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.1.0.tgz",
+ "integrity": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==",
+ "dev": true,
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/merge2": {
+ "version": "1.4.1",
+ "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz",
+ "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==",
+ "dev": true,
+ "engines": {
+ "node": ">= 8"
+ }
+ },
+ "node_modules/micromatch": {
+ "version": "4.0.5",
+ "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz",
+ "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==",
+ "dev": true,
+ "dependencies": {
+ "braces": "^3.0.2",
+ "picomatch": "^2.3.1"
+ },
+ "engines": {
+ "node": ">=8.6"
+ }
+ },
+ "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==",
+ "dev": true,
+ "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/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==",
+ "dev": true
+ },
+ "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==",
+ "dev": true,
+ "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==",
+ "dev": true,
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "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==",
+ "dev": true,
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/picocolors": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz",
+ "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==",
+ "dev": true
+ },
+ "node_modules/picomatch": {
+ "version": "2.3.1",
+ "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz",
+ "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==",
+ "dev": true,
+ "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==",
+ "dev": true,
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "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==",
+ "dev": true,
+ "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-cli": {
+ "version": "9.1.0",
+ "resolved": "https://registry.npmjs.org/postcss-cli/-/postcss-cli-9.1.0.tgz",
+ "integrity": "sha512-zvDN2ADbWfza42sAnj+O2uUWyL0eRL1V+6giM2vi4SqTR3gTYy8XzcpfwccayF2szcUif0HMmXiEaDv9iEhcpw==",
+ "dev": true,
+ "dependencies": {
+ "chokidar": "^3.3.0",
+ "dependency-graph": "^0.11.0",
+ "fs-extra": "^10.0.0",
+ "get-stdin": "^9.0.0",
+ "globby": "^12.0.0",
+ "picocolors": "^1.0.0",
+ "postcss-load-config": "^3.0.0",
+ "postcss-reporter": "^7.0.0",
+ "pretty-hrtime": "^1.0.3",
+ "read-cache": "^1.0.0",
+ "slash": "^4.0.0",
+ "yargs": "^17.0.0"
+ },
+ "bin": {
+ "postcss": "index.js"
+ },
+ "engines": {
+ "node": ">=12"
+ },
+ "peerDependencies": {
+ "postcss": "^8.0.0"
+ }
+ },
+ "node_modules/postcss-load-config": {
+ "version": "3.1.4",
+ "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-3.1.4.tgz",
+ "integrity": "sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==",
+ "dev": true,
+ "dependencies": {
+ "lilconfig": "^2.0.5",
+ "yaml": "^1.10.2"
+ },
+ "engines": {
+ "node": ">= 10"
+ },
+ "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-reporter": {
+ "version": "7.0.5",
+ "resolved": "https://registry.npmjs.org/postcss-reporter/-/postcss-reporter-7.0.5.tgz",
+ "integrity": "sha512-glWg7VZBilooZGOFPhN9msJ3FQs19Hie7l5a/eE6WglzYqVeH3ong3ShFcp9kDWJT1g2Y/wd59cocf9XxBtkWA==",
+ "dev": true,
+ "dependencies": {
+ "picocolors": "^1.0.0",
+ "thenby": "^1.3.4"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/postcss/"
+ },
+ "peerDependencies": {
+ "postcss": "^8.1.0"
+ }
+ },
+ "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==",
+ "dev": true
+ },
+ "node_modules/pretty-hrtime": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/pretty-hrtime/-/pretty-hrtime-1.0.3.tgz",
+ "integrity": "sha512-66hKPCr+72mlfiSjlEB1+45IjXSqvVAIy6mocupoww4tBFE9R9IhwwUGoI4G++Tc9Aq+2rxOt0RFU6gPcrte0A==",
+ "dev": true,
+ "engines": {
+ "node": ">= 0.8"
+ }
+ },
+ "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==",
+ "dev": true,
+ "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/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==",
+ "dev": true,
+ "dependencies": {
+ "pify": "^2.3.0"
+ }
+ },
+ "node_modules/readdirp": {
+ "version": "3.6.0",
+ "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz",
+ "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==",
+ "dev": true,
+ "dependencies": {
+ "picomatch": "^2.2.1"
+ },
+ "engines": {
+ "node": ">=8.10.0"
+ }
+ },
+ "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==",
+ "dev": true,
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/reusify": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz",
+ "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==",
+ "dev": true,
+ "engines": {
+ "iojs": ">=1.0.0",
+ "node": ">=0.10.0"
+ }
+ },
+ "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==",
+ "dev": true,
+ "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/slash": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/slash/-/slash-4.0.0.tgz",
+ "integrity": "sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==",
+ "dev": true,
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "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==",
+ "dev": true,
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "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==",
+ "dev": true,
+ "dependencies": {
+ "emoji-regex": "^8.0.0",
+ "is-fullwidth-code-point": "^3.0.0",
+ "strip-ansi": "^6.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "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==",
+ "dev": true,
+ "dependencies": {
+ "ansi-regex": "^5.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/thenby": {
+ "version": "1.3.4",
+ "resolved": "https://registry.npmjs.org/thenby/-/thenby-1.3.4.tgz",
+ "integrity": "sha512-89Gi5raiWA3QZ4b2ePcEwswC3me9JIg+ToSgtE0JWeCynLnLxNr/f9G+xfo9K+Oj4AFdom8YNJjibIARTJmapQ==",
+ "dev": true
+ },
+ "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==",
+ "dev": true,
+ "dependencies": {
+ "is-number": "^7.0.0"
+ },
+ "engines": {
+ "node": ">=8.0"
+ }
+ },
+ "node_modules/universalify": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz",
+ "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==",
+ "dev": true,
+ "engines": {
+ "node": ">= 10.0.0"
+ }
+ },
+ "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==",
+ "dev": true,
+ "funding": [
+ {
+ "type": "opencollective",
+ "url": "https://opencollective.com/browserslist"
+ },
+ {
+ "type": "tidelift",
+ "url": "https://tidelift.com/funding/github/npm/browserslist"
+ },
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/ai"
+ }
+ ],
+ "dependencies": {
+ "escalade": "^3.1.1",
+ "picocolors": "^1.0.0"
+ },
+ "bin": {
+ "update-browserslist-db": "cli.js"
+ },
+ "peerDependencies": {
+ "browserslist": ">= 4.21.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==",
+ "dev": true,
+ "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/y18n": {
+ "version": "5.0.8",
+ "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz",
+ "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==",
+ "dev": true,
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/yaml": {
+ "version": "1.10.2",
+ "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz",
+ "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==",
+ "dev": true,
+ "engines": {
+ "node": ">= 6"
+ }
+ },
+ "node_modules/yargs": {
+ "version": "17.7.2",
+ "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz",
+ "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==",
+ "dev": true,
+ "dependencies": {
+ "cliui": "^8.0.1",
+ "escalade": "^3.1.1",
+ "get-caller-file": "^2.0.5",
+ "require-directory": "^2.1.1",
+ "string-width": "^4.2.3",
+ "y18n": "^5.0.5",
+ "yargs-parser": "^21.1.1"
+ },
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/yargs-parser": {
+ "version": "21.1.1",
+ "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz",
+ "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==",
+ "dev": true,
+ "engines": {
+ "node": ">=12"
+ }
+ }
+ }
+}
diff --git a/node_modules/@nodelib/fs.scandir/LICENSE b/node_modules/@nodelib/fs.scandir/LICENSE
new file mode 100644
index 0000000..65a9994
--- /dev/null
+++ b/node_modules/@nodelib/fs.scandir/LICENSE
@@ -0,0 +1,21 @@
+The MIT License (MIT)
+
+Copyright (c) Denis Malinochkin
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
diff --git a/node_modules/@nodelib/fs.scandir/README.md b/node_modules/@nodelib/fs.scandir/README.md
new file mode 100644
index 0000000..e0b218b
--- /dev/null
+++ b/node_modules/@nodelib/fs.scandir/README.md
@@ -0,0 +1,171 @@
+# @nodelib/fs.scandir
+
+> List files and directories inside the specified directory.
+
+## :bulb: Highlights
+
+The package is aimed at obtaining information about entries in the directory.
+
+* :moneybag: Returns useful information: `name`, `path`, `dirent` and `stats` (optional).
+* :gear: On Node.js 10.10+ uses the mechanism without additional calls to determine the entry type. See [`old` and `modern` mode](#old-and-modern-mode).
+* :link: Can safely work with broken symbolic links.
+
+## Install
+
+```console
+npm install @nodelib/fs.scandir
+```
+
+## Usage
+
+```ts
+import * as fsScandir from '@nodelib/fs.scandir';
+
+fsScandir.scandir('path', (error, stats) => { /* … */ });
+```
+
+## API
+
+### .scandir(path, [optionsOrSettings], callback)
+
+Returns an array of plain objects ([`Entry`](#entry)) with information about entry for provided path with standard callback-style.
+
+```ts
+fsScandir.scandir('path', (error, entries) => { /* … */ });
+fsScandir.scandir('path', {}, (error, entries) => { /* … */ });
+fsScandir.scandir('path', new fsScandir.Settings(), (error, entries) => { /* … */ });
+```
+
+### .scandirSync(path, [optionsOrSettings])
+
+Returns an array of plain objects ([`Entry`](#entry)) with information about entry for provided path.
+
+```ts
+const entries = fsScandir.scandirSync('path');
+const entries = fsScandir.scandirSync('path', {});
+const entries = fsScandir.scandirSync(('path', new fsScandir.Settings());
+```
+
+#### path
+
+* Required: `true`
+* Type: `string | Buffer | URL`
+
+A path to a file. If a URL is provided, it must use the `file:` protocol.
+
+#### optionsOrSettings
+
+* Required: `false`
+* Type: `Options | Settings`
+* Default: An instance of `Settings` class
+
+An [`Options`](#options) object or an instance of [`Settings`](#settingsoptions) class.
+
+> :book: When you pass a plain object, an instance of the `Settings` class will be created automatically. If you plan to call the method frequently, use a pre-created instance of the `Settings` class.
+
+### Settings([options])
+
+A class of full settings of the package.
+
+```ts
+const settings = new fsScandir.Settings({ followSymbolicLinks: false });
+
+const entries = fsScandir.scandirSync('path', settings);
+```
+
+## Entry
+
+* `name` — The name of the entry (`unknown.txt`).
+* `path` — The path of the entry relative to call directory (`root/unknown.txt`).
+* `dirent` — An instance of [`fs.Dirent`](./src/types/index.ts) class. On Node.js below 10.10 will be emulated by [`DirentFromStats`](./src/utils/fs.ts) class.
+* `stats` (optional) — An instance of `fs.Stats` class.
+
+For example, the `scandir` call for `tools` directory with one directory inside:
+
+```ts
+{
+ dirent: Dirent { name: 'typedoc', /* … */ },
+ name: 'typedoc',
+ path: 'tools/typedoc'
+}
+```
+
+## Options
+
+### stats
+
+* Type: `boolean`
+* Default: `false`
+
+Adds an instance of `fs.Stats` class to the [`Entry`](#entry).
+
+> :book: Always use `fs.readdir` without the `withFileTypes` option. ??TODO??
+
+### followSymbolicLinks
+
+* Type: `boolean`
+* Default: `false`
+
+Follow symbolic links or not. Call `fs.stat` on symbolic link if `true`.
+
+### `throwErrorOnBrokenSymbolicLink`
+
+* Type: `boolean`
+* Default: `true`
+
+Throw an error when symbolic link is broken if `true` or safely use `lstat` call if `false`.
+
+### `pathSegmentSeparator`
+
+* Type: `string`
+* Default: `path.sep`
+
+By default, this package uses the correct path separator for your OS (`\` on Windows, `/` on Unix-like systems). But you can set this option to any separator character(s) that you want to use instead.
+
+### `fs`
+
+* Type: [`FileSystemAdapter`](./src/adapters/fs.ts)
+* Default: A default FS methods
+
+By default, the built-in Node.js module (`fs`) is used to work with the file system. You can replace any method with your own.
+
+```ts
+interface FileSystemAdapter {
+ lstat?: typeof fs.lstat;
+ stat?: typeof fs.stat;
+ lstatSync?: typeof fs.lstatSync;
+ statSync?: typeof fs.statSync;
+ readdir?: typeof fs.readdir;
+ readdirSync?: typeof fs.readdirSync;
+}
+
+const settings = new fsScandir.Settings({
+ fs: { lstat: fakeLstat }
+});
+```
+
+## `old` and `modern` mode
+
+This package has two modes that are used depending on the environment and parameters of use.
+
+### old
+
+* Node.js below `10.10` or when the `stats` option is enabled
+
+When working in the old mode, the directory is read first (`fs.readdir`), then the type of entries is determined (`fs.lstat` and/or `fs.stat` for symbolic links).
+
+### modern
+
+* Node.js 10.10+ and the `stats` option is disabled
+
+In the modern mode, reading the directory (`fs.readdir` with the `withFileTypes` option) is combined with obtaining information about its entries. An additional call for symbolic links (`fs.stat`) is still present.
+
+This mode makes fewer calls to the file system. It's faster.
+
+## Changelog
+
+See the [Releases section of our GitHub project](https://github.com/nodelib/nodelib/releases) for changelog for each release version.
+
+## License
+
+This software is released under the terms of the MIT license.
diff --git a/node_modules/@nodelib/fs.scandir/out/adapters/fs.d.ts b/node_modules/@nodelib/fs.scandir/out/adapters/fs.d.ts
new file mode 100644
index 0000000..827f1db
--- /dev/null
+++ b/node_modules/@nodelib/fs.scandir/out/adapters/fs.d.ts
@@ -0,0 +1,20 @@
+import type * as fsStat from '@nodelib/fs.stat';
+import type { Dirent, ErrnoException } from '../types';
+export interface ReaddirAsynchronousMethod {
+ (filepath: string, options: {
+ withFileTypes: true;
+ }, callback: (error: ErrnoException | null, files: Dirent[]) => void): void;
+ (filepath: string, callback: (error: ErrnoException | null, files: string[]) => void): void;
+}
+export interface ReaddirSynchronousMethod {
+ (filepath: string, options: {
+ withFileTypes: true;
+ }): Dirent[];
+ (filepath: string): string[];
+}
+export declare type FileSystemAdapter = fsStat.FileSystemAdapter & {
+ readdir: ReaddirAsynchronousMethod;
+ readdirSync: ReaddirSynchronousMethod;
+};
+export declare const FILE_SYSTEM_ADAPTER: FileSystemAdapter;
+export declare function createFileSystemAdapter(fsMethods?: Partial): FileSystemAdapter;
diff --git a/node_modules/@nodelib/fs.scandir/out/adapters/fs.js b/node_modules/@nodelib/fs.scandir/out/adapters/fs.js
new file mode 100644
index 0000000..f0fe022
--- /dev/null
+++ b/node_modules/@nodelib/fs.scandir/out/adapters/fs.js
@@ -0,0 +1,19 @@
+"use strict";
+Object.defineProperty(exports, "__esModule", { value: true });
+exports.createFileSystemAdapter = exports.FILE_SYSTEM_ADAPTER = void 0;
+const fs = require("fs");
+exports.FILE_SYSTEM_ADAPTER = {
+ lstat: fs.lstat,
+ stat: fs.stat,
+ lstatSync: fs.lstatSync,
+ statSync: fs.statSync,
+ readdir: fs.readdir,
+ readdirSync: fs.readdirSync
+};
+function createFileSystemAdapter(fsMethods) {
+ if (fsMethods === undefined) {
+ return exports.FILE_SYSTEM_ADAPTER;
+ }
+ return Object.assign(Object.assign({}, exports.FILE_SYSTEM_ADAPTER), fsMethods);
+}
+exports.createFileSystemAdapter = createFileSystemAdapter;
diff --git a/node_modules/@nodelib/fs.scandir/out/constants.d.ts b/node_modules/@nodelib/fs.scandir/out/constants.d.ts
new file mode 100644
index 0000000..33f1749
--- /dev/null
+++ b/node_modules/@nodelib/fs.scandir/out/constants.d.ts
@@ -0,0 +1,4 @@
+/**
+ * IS `true` for Node.js 10.10 and greater.
+ */
+export declare const IS_SUPPORT_READDIR_WITH_FILE_TYPES: boolean;
diff --git a/node_modules/@nodelib/fs.scandir/out/constants.js b/node_modules/@nodelib/fs.scandir/out/constants.js
new file mode 100644
index 0000000..7e3d441
--- /dev/null
+++ b/node_modules/@nodelib/fs.scandir/out/constants.js
@@ -0,0 +1,17 @@
+"use strict";
+Object.defineProperty(exports, "__esModule", { value: true });
+exports.IS_SUPPORT_READDIR_WITH_FILE_TYPES = void 0;
+const NODE_PROCESS_VERSION_PARTS = process.versions.node.split('.');
+if (NODE_PROCESS_VERSION_PARTS[0] === undefined || NODE_PROCESS_VERSION_PARTS[1] === undefined) {
+ throw new Error(`Unexpected behavior. The 'process.versions.node' variable has invalid value: ${process.versions.node}`);
+}
+const MAJOR_VERSION = Number.parseInt(NODE_PROCESS_VERSION_PARTS[0], 10);
+const MINOR_VERSION = Number.parseInt(NODE_PROCESS_VERSION_PARTS[1], 10);
+const SUPPORTED_MAJOR_VERSION = 10;
+const SUPPORTED_MINOR_VERSION = 10;
+const IS_MATCHED_BY_MAJOR = MAJOR_VERSION > SUPPORTED_MAJOR_VERSION;
+const IS_MATCHED_BY_MAJOR_AND_MINOR = MAJOR_VERSION === SUPPORTED_MAJOR_VERSION && MINOR_VERSION >= SUPPORTED_MINOR_VERSION;
+/**
+ * IS `true` for Node.js 10.10 and greater.
+ */
+exports.IS_SUPPORT_READDIR_WITH_FILE_TYPES = IS_MATCHED_BY_MAJOR || IS_MATCHED_BY_MAJOR_AND_MINOR;
diff --git a/node_modules/@nodelib/fs.scandir/out/index.d.ts b/node_modules/@nodelib/fs.scandir/out/index.d.ts
new file mode 100644
index 0000000..b9da83e
--- /dev/null
+++ b/node_modules/@nodelib/fs.scandir/out/index.d.ts
@@ -0,0 +1,12 @@
+import type { FileSystemAdapter, ReaddirAsynchronousMethod, ReaddirSynchronousMethod } from './adapters/fs';
+import * as async from './providers/async';
+import Settings, { Options } from './settings';
+import type { Dirent, Entry } from './types';
+declare type AsyncCallback = async.AsyncCallback;
+declare function scandir(path: string, callback: AsyncCallback): void;
+declare function scandir(path: string, optionsOrSettings: Options | Settings, callback: AsyncCallback): void;
+declare namespace scandir {
+ function __promisify__(path: string, optionsOrSettings?: Options | Settings): Promise;
+}
+declare function scandirSync(path: string, optionsOrSettings?: Options | Settings): Entry[];
+export { scandir, scandirSync, Settings, AsyncCallback, Dirent, Entry, FileSystemAdapter, ReaddirAsynchronousMethod, ReaddirSynchronousMethod, Options };
diff --git a/node_modules/@nodelib/fs.scandir/out/index.js b/node_modules/@nodelib/fs.scandir/out/index.js
new file mode 100644
index 0000000..99c70d3
--- /dev/null
+++ b/node_modules/@nodelib/fs.scandir/out/index.js
@@ -0,0 +1,26 @@
+"use strict";
+Object.defineProperty(exports, "__esModule", { value: true });
+exports.Settings = exports.scandirSync = exports.scandir = void 0;
+const async = require("./providers/async");
+const sync = require("./providers/sync");
+const settings_1 = require("./settings");
+exports.Settings = settings_1.default;
+function scandir(path, optionsOrSettingsOrCallback, callback) {
+ if (typeof optionsOrSettingsOrCallback === 'function') {
+ async.read(path, getSettings(), optionsOrSettingsOrCallback);
+ return;
+ }
+ async.read(path, getSettings(optionsOrSettingsOrCallback), callback);
+}
+exports.scandir = scandir;
+function scandirSync(path, optionsOrSettings) {
+ const settings = getSettings(optionsOrSettings);
+ return sync.read(path, settings);
+}
+exports.scandirSync = scandirSync;
+function getSettings(settingsOrOptions = {}) {
+ if (settingsOrOptions instanceof settings_1.default) {
+ return settingsOrOptions;
+ }
+ return new settings_1.default(settingsOrOptions);
+}
diff --git a/node_modules/@nodelib/fs.scandir/out/providers/async.d.ts b/node_modules/@nodelib/fs.scandir/out/providers/async.d.ts
new file mode 100644
index 0000000..5829676
--- /dev/null
+++ b/node_modules/@nodelib/fs.scandir/out/providers/async.d.ts
@@ -0,0 +1,7 @@
+///
+import type Settings from '../settings';
+import type { Entry } from '../types';
+export declare type AsyncCallback = (error: NodeJS.ErrnoException, entries: Entry[]) => void;
+export declare function read(directory: string, settings: Settings, callback: AsyncCallback): void;
+export declare function readdirWithFileTypes(directory: string, settings: Settings, callback: AsyncCallback): void;
+export declare function readdir(directory: string, settings: Settings, callback: AsyncCallback): void;
diff --git a/node_modules/@nodelib/fs.scandir/out/providers/async.js b/node_modules/@nodelib/fs.scandir/out/providers/async.js
new file mode 100644
index 0000000..e8e2f0a
--- /dev/null
+++ b/node_modules/@nodelib/fs.scandir/out/providers/async.js
@@ -0,0 +1,104 @@
+"use strict";
+Object.defineProperty(exports, "__esModule", { value: true });
+exports.readdir = exports.readdirWithFileTypes = exports.read = void 0;
+const fsStat = require("@nodelib/fs.stat");
+const rpl = require("run-parallel");
+const constants_1 = require("../constants");
+const utils = require("../utils");
+const common = require("./common");
+function read(directory, settings, callback) {
+ if (!settings.stats && constants_1.IS_SUPPORT_READDIR_WITH_FILE_TYPES) {
+ readdirWithFileTypes(directory, settings, callback);
+ return;
+ }
+ readdir(directory, settings, callback);
+}
+exports.read = read;
+function readdirWithFileTypes(directory, settings, callback) {
+ settings.fs.readdir(directory, { withFileTypes: true }, (readdirError, dirents) => {
+ if (readdirError !== null) {
+ callFailureCallback(callback, readdirError);
+ return;
+ }
+ const entries = dirents.map((dirent) => ({
+ dirent,
+ name: dirent.name,
+ path: common.joinPathSegments(directory, dirent.name, settings.pathSegmentSeparator)
+ }));
+ if (!settings.followSymbolicLinks) {
+ callSuccessCallback(callback, entries);
+ return;
+ }
+ const tasks = entries.map((entry) => makeRplTaskEntry(entry, settings));
+ rpl(tasks, (rplError, rplEntries) => {
+ if (rplError !== null) {
+ callFailureCallback(callback, rplError);
+ return;
+ }
+ callSuccessCallback(callback, rplEntries);
+ });
+ });
+}
+exports.readdirWithFileTypes = readdirWithFileTypes;
+function makeRplTaskEntry(entry, settings) {
+ return (done) => {
+ if (!entry.dirent.isSymbolicLink()) {
+ done(null, entry);
+ return;
+ }
+ settings.fs.stat(entry.path, (statError, stats) => {
+ if (statError !== null) {
+ if (settings.throwErrorOnBrokenSymbolicLink) {
+ done(statError);
+ return;
+ }
+ done(null, entry);
+ return;
+ }
+ entry.dirent = utils.fs.createDirentFromStats(entry.name, stats);
+ done(null, entry);
+ });
+ };
+}
+function readdir(directory, settings, callback) {
+ settings.fs.readdir(directory, (readdirError, names) => {
+ if (readdirError !== null) {
+ callFailureCallback(callback, readdirError);
+ return;
+ }
+ const tasks = names.map((name) => {
+ const path = common.joinPathSegments(directory, name, settings.pathSegmentSeparator);
+ return (done) => {
+ fsStat.stat(path, settings.fsStatSettings, (error, stats) => {
+ if (error !== null) {
+ done(error);
+ return;
+ }
+ const entry = {
+ name,
+ path,
+ dirent: utils.fs.createDirentFromStats(name, stats)
+ };
+ if (settings.stats) {
+ entry.stats = stats;
+ }
+ done(null, entry);
+ });
+ };
+ });
+ rpl(tasks, (rplError, entries) => {
+ if (rplError !== null) {
+ callFailureCallback(callback, rplError);
+ return;
+ }
+ callSuccessCallback(callback, entries);
+ });
+ });
+}
+exports.readdir = readdir;
+function callFailureCallback(callback, error) {
+ callback(error);
+}
+function callSuccessCallback(callback, result) {
+ callback(null, result);
+}
diff --git a/node_modules/@nodelib/fs.scandir/out/providers/common.d.ts b/node_modules/@nodelib/fs.scandir/out/providers/common.d.ts
new file mode 100644
index 0000000..2b4d08b
--- /dev/null
+++ b/node_modules/@nodelib/fs.scandir/out/providers/common.d.ts
@@ -0,0 +1 @@
+export declare function joinPathSegments(a: string, b: string, separator: string): string;
diff --git a/node_modules/@nodelib/fs.scandir/out/providers/common.js b/node_modules/@nodelib/fs.scandir/out/providers/common.js
new file mode 100644
index 0000000..8724cb5
--- /dev/null
+++ b/node_modules/@nodelib/fs.scandir/out/providers/common.js
@@ -0,0 +1,13 @@
+"use strict";
+Object.defineProperty(exports, "__esModule", { value: true });
+exports.joinPathSegments = void 0;
+function joinPathSegments(a, b, separator) {
+ /**
+ * The correct handling of cases when the first segment is a root (`/`, `C:/`) or UNC path (`//?/C:/`).
+ */
+ if (a.endsWith(separator)) {
+ return a + b;
+ }
+ return a + separator + b;
+}
+exports.joinPathSegments = joinPathSegments;
diff --git a/node_modules/@nodelib/fs.scandir/out/providers/sync.d.ts b/node_modules/@nodelib/fs.scandir/out/providers/sync.d.ts
new file mode 100644
index 0000000..e05c8f0
--- /dev/null
+++ b/node_modules/@nodelib/fs.scandir/out/providers/sync.d.ts
@@ -0,0 +1,5 @@
+import type Settings from '../settings';
+import type { Entry } from '../types';
+export declare function read(directory: string, settings: Settings): Entry[];
+export declare function readdirWithFileTypes(directory: string, settings: Settings): Entry[];
+export declare function readdir(directory: string, settings: Settings): Entry[];
diff --git a/node_modules/@nodelib/fs.scandir/out/providers/sync.js b/node_modules/@nodelib/fs.scandir/out/providers/sync.js
new file mode 100644
index 0000000..146db34
--- /dev/null
+++ b/node_modules/@nodelib/fs.scandir/out/providers/sync.js
@@ -0,0 +1,54 @@
+"use strict";
+Object.defineProperty(exports, "__esModule", { value: true });
+exports.readdir = exports.readdirWithFileTypes = exports.read = void 0;
+const fsStat = require("@nodelib/fs.stat");
+const constants_1 = require("../constants");
+const utils = require("../utils");
+const common = require("./common");
+function read(directory, settings) {
+ if (!settings.stats && constants_1.IS_SUPPORT_READDIR_WITH_FILE_TYPES) {
+ return readdirWithFileTypes(directory, settings);
+ }
+ return readdir(directory, settings);
+}
+exports.read = read;
+function readdirWithFileTypes(directory, settings) {
+ const dirents = settings.fs.readdirSync(directory, { withFileTypes: true });
+ return dirents.map((dirent) => {
+ const entry = {
+ dirent,
+ name: dirent.name,
+ path: common.joinPathSegments(directory, dirent.name, settings.pathSegmentSeparator)
+ };
+ if (entry.dirent.isSymbolicLink() && settings.followSymbolicLinks) {
+ try {
+ const stats = settings.fs.statSync(entry.path);
+ entry.dirent = utils.fs.createDirentFromStats(entry.name, stats);
+ }
+ catch (error) {
+ if (settings.throwErrorOnBrokenSymbolicLink) {
+ throw error;
+ }
+ }
+ }
+ return entry;
+ });
+}
+exports.readdirWithFileTypes = readdirWithFileTypes;
+function readdir(directory, settings) {
+ const names = settings.fs.readdirSync(directory);
+ return names.map((name) => {
+ const entryPath = common.joinPathSegments(directory, name, settings.pathSegmentSeparator);
+ const stats = fsStat.statSync(entryPath, settings.fsStatSettings);
+ const entry = {
+ name,
+ path: entryPath,
+ dirent: utils.fs.createDirentFromStats(name, stats)
+ };
+ if (settings.stats) {
+ entry.stats = stats;
+ }
+ return entry;
+ });
+}
+exports.readdir = readdir;
diff --git a/node_modules/@nodelib/fs.scandir/out/settings.d.ts b/node_modules/@nodelib/fs.scandir/out/settings.d.ts
new file mode 100644
index 0000000..a0db115
--- /dev/null
+++ b/node_modules/@nodelib/fs.scandir/out/settings.d.ts
@@ -0,0 +1,20 @@
+import * as fsStat from '@nodelib/fs.stat';
+import * as fs from './adapters/fs';
+export interface Options {
+ followSymbolicLinks?: boolean;
+ fs?: Partial;
+ pathSegmentSeparator?: string;
+ stats?: boolean;
+ throwErrorOnBrokenSymbolicLink?: boolean;
+}
+export default class Settings {
+ private readonly _options;
+ readonly followSymbolicLinks: boolean;
+ readonly fs: fs.FileSystemAdapter;
+ readonly pathSegmentSeparator: string;
+ readonly stats: boolean;
+ readonly throwErrorOnBrokenSymbolicLink: boolean;
+ readonly fsStatSettings: fsStat.Settings;
+ constructor(_options?: Options);
+ private _getValue;
+}
diff --git a/node_modules/@nodelib/fs.scandir/out/settings.js b/node_modules/@nodelib/fs.scandir/out/settings.js
new file mode 100644
index 0000000..15a3e8c
--- /dev/null
+++ b/node_modules/@nodelib/fs.scandir/out/settings.js
@@ -0,0 +1,24 @@
+"use strict";
+Object.defineProperty(exports, "__esModule", { value: true });
+const path = require("path");
+const fsStat = require("@nodelib/fs.stat");
+const fs = require("./adapters/fs");
+class Settings {
+ constructor(_options = {}) {
+ this._options = _options;
+ this.followSymbolicLinks = this._getValue(this._options.followSymbolicLinks, false);
+ this.fs = fs.createFileSystemAdapter(this._options.fs);
+ this.pathSegmentSeparator = this._getValue(this._options.pathSegmentSeparator, path.sep);
+ this.stats = this._getValue(this._options.stats, false);
+ this.throwErrorOnBrokenSymbolicLink = this._getValue(this._options.throwErrorOnBrokenSymbolicLink, true);
+ this.fsStatSettings = new fsStat.Settings({
+ followSymbolicLink: this.followSymbolicLinks,
+ fs: this.fs,
+ throwErrorOnBrokenSymbolicLink: this.throwErrorOnBrokenSymbolicLink
+ });
+ }
+ _getValue(option, value) {
+ return option !== null && option !== void 0 ? option : value;
+ }
+}
+exports.default = Settings;
diff --git a/node_modules/@nodelib/fs.scandir/out/types/index.d.ts b/node_modules/@nodelib/fs.scandir/out/types/index.d.ts
new file mode 100644
index 0000000..f326c5e
--- /dev/null
+++ b/node_modules/@nodelib/fs.scandir/out/types/index.d.ts
@@ -0,0 +1,20 @@
+///
+import type * as fs from 'fs';
+export interface Entry {
+ dirent: Dirent;
+ name: string;
+ path: string;
+ stats?: Stats;
+}
+export declare type Stats = fs.Stats;
+export declare type ErrnoException = NodeJS.ErrnoException;
+export interface Dirent {
+ isBlockDevice: () => boolean;
+ isCharacterDevice: () => boolean;
+ isDirectory: () => boolean;
+ isFIFO: () => boolean;
+ isFile: () => boolean;
+ isSocket: () => boolean;
+ isSymbolicLink: () => boolean;
+ name: string;
+}
diff --git a/node_modules/@nodelib/fs.scandir/out/types/index.js b/node_modules/@nodelib/fs.scandir/out/types/index.js
new file mode 100644
index 0000000..c8ad2e5
--- /dev/null
+++ b/node_modules/@nodelib/fs.scandir/out/types/index.js
@@ -0,0 +1,2 @@
+"use strict";
+Object.defineProperty(exports, "__esModule", { value: true });
diff --git a/node_modules/@nodelib/fs.scandir/out/utils/fs.d.ts b/node_modules/@nodelib/fs.scandir/out/utils/fs.d.ts
new file mode 100644
index 0000000..bb863f1
--- /dev/null
+++ b/node_modules/@nodelib/fs.scandir/out/utils/fs.d.ts
@@ -0,0 +1,2 @@
+import type { Dirent, Stats } from '../types';
+export declare function createDirentFromStats(name: string, stats: Stats): Dirent;
diff --git a/node_modules/@nodelib/fs.scandir/out/utils/fs.js b/node_modules/@nodelib/fs.scandir/out/utils/fs.js
new file mode 100644
index 0000000..ace7c74
--- /dev/null
+++ b/node_modules/@nodelib/fs.scandir/out/utils/fs.js
@@ -0,0 +1,19 @@
+"use strict";
+Object.defineProperty(exports, "__esModule", { value: true });
+exports.createDirentFromStats = void 0;
+class DirentFromStats {
+ constructor(name, stats) {
+ this.name = name;
+ this.isBlockDevice = stats.isBlockDevice.bind(stats);
+ this.isCharacterDevice = stats.isCharacterDevice.bind(stats);
+ this.isDirectory = stats.isDirectory.bind(stats);
+ this.isFIFO = stats.isFIFO.bind(stats);
+ this.isFile = stats.isFile.bind(stats);
+ this.isSocket = stats.isSocket.bind(stats);
+ this.isSymbolicLink = stats.isSymbolicLink.bind(stats);
+ }
+}
+function createDirentFromStats(name, stats) {
+ return new DirentFromStats(name, stats);
+}
+exports.createDirentFromStats = createDirentFromStats;
diff --git a/node_modules/@nodelib/fs.scandir/out/utils/index.d.ts b/node_modules/@nodelib/fs.scandir/out/utils/index.d.ts
new file mode 100644
index 0000000..1b41954
--- /dev/null
+++ b/node_modules/@nodelib/fs.scandir/out/utils/index.d.ts
@@ -0,0 +1,2 @@
+import * as fs from './fs';
+export { fs };
diff --git a/node_modules/@nodelib/fs.scandir/out/utils/index.js b/node_modules/@nodelib/fs.scandir/out/utils/index.js
new file mode 100644
index 0000000..f5de129
--- /dev/null
+++ b/node_modules/@nodelib/fs.scandir/out/utils/index.js
@@ -0,0 +1,5 @@
+"use strict";
+Object.defineProperty(exports, "__esModule", { value: true });
+exports.fs = void 0;
+const fs = require("./fs");
+exports.fs = fs;
diff --git a/node_modules/@nodelib/fs.scandir/package.json b/node_modules/@nodelib/fs.scandir/package.json
new file mode 100644
index 0000000..d3a8924
--- /dev/null
+++ b/node_modules/@nodelib/fs.scandir/package.json
@@ -0,0 +1,44 @@
+{
+ "name": "@nodelib/fs.scandir",
+ "version": "2.1.5",
+ "description": "List files and directories inside the specified directory",
+ "license": "MIT",
+ "repository": "https://github.com/nodelib/nodelib/tree/master/packages/fs/fs.scandir",
+ "keywords": [
+ "NodeLib",
+ "fs",
+ "FileSystem",
+ "file system",
+ "scandir",
+ "readdir",
+ "dirent"
+ ],
+ "engines": {
+ "node": ">= 8"
+ },
+ "files": [
+ "out/**",
+ "!out/**/*.map",
+ "!out/**/*.spec.*"
+ ],
+ "main": "out/index.js",
+ "typings": "out/index.d.ts",
+ "scripts": {
+ "clean": "rimraf {tsconfig.tsbuildinfo,out}",
+ "lint": "eslint \"src/**/*.ts\" --cache",
+ "compile": "tsc -b .",
+ "compile:watch": "tsc -p . --watch --sourceMap",
+ "test": "mocha \"out/**/*.spec.js\" -s 0",
+ "build": "npm run clean && npm run compile && npm run lint && npm test",
+ "watch": "npm run clean && npm run compile:watch"
+ },
+ "dependencies": {
+ "@nodelib/fs.stat": "2.0.5",
+ "run-parallel": "^1.1.9"
+ },
+ "devDependencies": {
+ "@nodelib/fs.macchiato": "1.0.4",
+ "@types/run-parallel": "^1.1.0"
+ },
+ "gitHead": "d6a7960d5281d3dd5f8e2efba49bb552d090f562"
+}
diff --git a/node_modules/@nodelib/fs.stat/LICENSE b/node_modules/@nodelib/fs.stat/LICENSE
new file mode 100644
index 0000000..65a9994
--- /dev/null
+++ b/node_modules/@nodelib/fs.stat/LICENSE
@@ -0,0 +1,21 @@
+The MIT License (MIT)
+
+Copyright (c) Denis Malinochkin
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
diff --git a/node_modules/@nodelib/fs.stat/README.md b/node_modules/@nodelib/fs.stat/README.md
new file mode 100644
index 0000000..686f047
--- /dev/null
+++ b/node_modules/@nodelib/fs.stat/README.md
@@ -0,0 +1,126 @@
+# @nodelib/fs.stat
+
+> Get the status of a file with some features.
+
+## :bulb: Highlights
+
+Wrapper around standard method `fs.lstat` and `fs.stat` with some features.
+
+* :beginner: Normally follows symbolic link.
+* :gear: Can safely work with broken symbolic link.
+
+## Install
+
+```console
+npm install @nodelib/fs.stat
+```
+
+## Usage
+
+```ts
+import * as fsStat from '@nodelib/fs.stat';
+
+fsStat.stat('path', (error, stats) => { /* … */ });
+```
+
+## API
+
+### .stat(path, [optionsOrSettings], callback)
+
+Returns an instance of `fs.Stats` class for provided path with standard callback-style.
+
+```ts
+fsStat.stat('path', (error, stats) => { /* … */ });
+fsStat.stat('path', {}, (error, stats) => { /* … */ });
+fsStat.stat('path', new fsStat.Settings(), (error, stats) => { /* … */ });
+```
+
+### .statSync(path, [optionsOrSettings])
+
+Returns an instance of `fs.Stats` class for provided path.
+
+```ts
+const stats = fsStat.stat('path');
+const stats = fsStat.stat('path', {});
+const stats = fsStat.stat('path', new fsStat.Settings());
+```
+
+#### path
+
+* Required: `true`
+* Type: `string | Buffer | URL`
+
+A path to a file. If a URL is provided, it must use the `file:` protocol.
+
+#### optionsOrSettings
+
+* Required: `false`
+* Type: `Options | Settings`
+* Default: An instance of `Settings` class
+
+An [`Options`](#options) object or an instance of [`Settings`](#settings) class.
+
+> :book: When you pass a plain object, an instance of the `Settings` class will be created automatically. If you plan to call the method frequently, use a pre-created instance of the `Settings` class.
+
+### Settings([options])
+
+A class of full settings of the package.
+
+```ts
+const settings = new fsStat.Settings({ followSymbolicLink: false });
+
+const stats = fsStat.stat('path', settings);
+```
+
+## Options
+
+### `followSymbolicLink`
+
+* Type: `boolean`
+* Default: `true`
+
+Follow symbolic link or not. Call `fs.stat` on symbolic link if `true`.
+
+### `markSymbolicLink`
+
+* Type: `boolean`
+* Default: `false`
+
+Mark symbolic link by setting the return value of `isSymbolicLink` function to always `true` (even after `fs.stat`).
+
+> :book: Can be used if you want to know what is hidden behind a symbolic link, but still continue to know that it is a symbolic link.
+
+### `throwErrorOnBrokenSymbolicLink`
+
+* Type: `boolean`
+* Default: `true`
+
+Throw an error when symbolic link is broken if `true` or safely return `lstat` call if `false`.
+
+### `fs`
+
+* Type: [`FileSystemAdapter`](./src/adapters/fs.ts)
+* Default: A default FS methods
+
+By default, the built-in Node.js module (`fs`) is used to work with the file system. You can replace any method with your own.
+
+```ts
+interface FileSystemAdapter {
+ lstat?: typeof fs.lstat;
+ stat?: typeof fs.stat;
+ lstatSync?: typeof fs.lstatSync;
+ statSync?: typeof fs.statSync;
+}
+
+const settings = new fsStat.Settings({
+ fs: { lstat: fakeLstat }
+});
+```
+
+## Changelog
+
+See the [Releases section of our GitHub project](https://github.com/nodelib/nodelib/releases) for changelog for each release version.
+
+## License
+
+This software is released under the terms of the MIT license.
diff --git a/node_modules/@nodelib/fs.stat/out/adapters/fs.d.ts b/node_modules/@nodelib/fs.stat/out/adapters/fs.d.ts
new file mode 100644
index 0000000..3af759c
--- /dev/null
+++ b/node_modules/@nodelib/fs.stat/out/adapters/fs.d.ts
@@ -0,0 +1,13 @@
+///
+import * as fs from 'fs';
+import type { ErrnoException } from '../types';
+export declare type StatAsynchronousMethod = (path: string, callback: (error: ErrnoException | null, stats: fs.Stats) => void) => void;
+export declare type StatSynchronousMethod = (path: string) => fs.Stats;
+export interface FileSystemAdapter {
+ lstat: StatAsynchronousMethod;
+ stat: StatAsynchronousMethod;
+ lstatSync: StatSynchronousMethod;
+ statSync: StatSynchronousMethod;
+}
+export declare const FILE_SYSTEM_ADAPTER: FileSystemAdapter;
+export declare function createFileSystemAdapter(fsMethods?: Partial): FileSystemAdapter;
diff --git a/node_modules/@nodelib/fs.stat/out/adapters/fs.js b/node_modules/@nodelib/fs.stat/out/adapters/fs.js
new file mode 100644
index 0000000..8dc08c8
--- /dev/null
+++ b/node_modules/@nodelib/fs.stat/out/adapters/fs.js
@@ -0,0 +1,17 @@
+"use strict";
+Object.defineProperty(exports, "__esModule", { value: true });
+exports.createFileSystemAdapter = exports.FILE_SYSTEM_ADAPTER = void 0;
+const fs = require("fs");
+exports.FILE_SYSTEM_ADAPTER = {
+ lstat: fs.lstat,
+ stat: fs.stat,
+ lstatSync: fs.lstatSync,
+ statSync: fs.statSync
+};
+function createFileSystemAdapter(fsMethods) {
+ if (fsMethods === undefined) {
+ return exports.FILE_SYSTEM_ADAPTER;
+ }
+ return Object.assign(Object.assign({}, exports.FILE_SYSTEM_ADAPTER), fsMethods);
+}
+exports.createFileSystemAdapter = createFileSystemAdapter;
diff --git a/node_modules/@nodelib/fs.stat/out/index.d.ts b/node_modules/@nodelib/fs.stat/out/index.d.ts
new file mode 100644
index 0000000..f95db99
--- /dev/null
+++ b/node_modules/@nodelib/fs.stat/out/index.d.ts
@@ -0,0 +1,12 @@
+import type { FileSystemAdapter, StatAsynchronousMethod, StatSynchronousMethod } from './adapters/fs';
+import * as async from './providers/async';
+import Settings, { Options } from './settings';
+import type { Stats } from './types';
+declare type AsyncCallback = async.AsyncCallback;
+declare function stat(path: string, callback: AsyncCallback): void;
+declare function stat(path: string, optionsOrSettings: Options | Settings, callback: AsyncCallback): void;
+declare namespace stat {
+ function __promisify__(path: string, optionsOrSettings?: Options | Settings): Promise;
+}
+declare function statSync(path: string, optionsOrSettings?: Options | Settings): Stats;
+export { Settings, stat, statSync, AsyncCallback, FileSystemAdapter, StatAsynchronousMethod, StatSynchronousMethod, Options, Stats };
diff --git a/node_modules/@nodelib/fs.stat/out/index.js b/node_modules/@nodelib/fs.stat/out/index.js
new file mode 100644
index 0000000..b23f751
--- /dev/null
+++ b/node_modules/@nodelib/fs.stat/out/index.js
@@ -0,0 +1,26 @@
+"use strict";
+Object.defineProperty(exports, "__esModule", { value: true });
+exports.statSync = exports.stat = exports.Settings = void 0;
+const async = require("./providers/async");
+const sync = require("./providers/sync");
+const settings_1 = require("./settings");
+exports.Settings = settings_1.default;
+function stat(path, optionsOrSettingsOrCallback, callback) {
+ if (typeof optionsOrSettingsOrCallback === 'function') {
+ async.read(path, getSettings(), optionsOrSettingsOrCallback);
+ return;
+ }
+ async.read(path, getSettings(optionsOrSettingsOrCallback), callback);
+}
+exports.stat = stat;
+function statSync(path, optionsOrSettings) {
+ const settings = getSettings(optionsOrSettings);
+ return sync.read(path, settings);
+}
+exports.statSync = statSync;
+function getSettings(settingsOrOptions = {}) {
+ if (settingsOrOptions instanceof settings_1.default) {
+ return settingsOrOptions;
+ }
+ return new settings_1.default(settingsOrOptions);
+}
diff --git a/node_modules/@nodelib/fs.stat/out/providers/async.d.ts b/node_modules/@nodelib/fs.stat/out/providers/async.d.ts
new file mode 100644
index 0000000..85423ce
--- /dev/null
+++ b/node_modules/@nodelib/fs.stat/out/providers/async.d.ts
@@ -0,0 +1,4 @@
+import type Settings from '../settings';
+import type { ErrnoException, Stats } from '../types';
+export declare type AsyncCallback = (error: ErrnoException, stats: Stats) => void;
+export declare function read(path: string, settings: Settings, callback: AsyncCallback): void;
diff --git a/node_modules/@nodelib/fs.stat/out/providers/async.js b/node_modules/@nodelib/fs.stat/out/providers/async.js
new file mode 100644
index 0000000..983ff0e
--- /dev/null
+++ b/node_modules/@nodelib/fs.stat/out/providers/async.js
@@ -0,0 +1,36 @@
+"use strict";
+Object.defineProperty(exports, "__esModule", { value: true });
+exports.read = void 0;
+function read(path, settings, callback) {
+ settings.fs.lstat(path, (lstatError, lstat) => {
+ if (lstatError !== null) {
+ callFailureCallback(callback, lstatError);
+ return;
+ }
+ if (!lstat.isSymbolicLink() || !settings.followSymbolicLink) {
+ callSuccessCallback(callback, lstat);
+ return;
+ }
+ settings.fs.stat(path, (statError, stat) => {
+ if (statError !== null) {
+ if (settings.throwErrorOnBrokenSymbolicLink) {
+ callFailureCallback(callback, statError);
+ return;
+ }
+ callSuccessCallback(callback, lstat);
+ return;
+ }
+ if (settings.markSymbolicLink) {
+ stat.isSymbolicLink = () => true;
+ }
+ callSuccessCallback(callback, stat);
+ });
+ });
+}
+exports.read = read;
+function callFailureCallback(callback, error) {
+ callback(error);
+}
+function callSuccessCallback(callback, result) {
+ callback(null, result);
+}
diff --git a/node_modules/@nodelib/fs.stat/out/providers/sync.d.ts b/node_modules/@nodelib/fs.stat/out/providers/sync.d.ts
new file mode 100644
index 0000000..428c3d7
--- /dev/null
+++ b/node_modules/@nodelib/fs.stat/out/providers/sync.d.ts
@@ -0,0 +1,3 @@
+import type Settings from '../settings';
+import type { Stats } from '../types';
+export declare function read(path: string, settings: Settings): Stats;
diff --git a/node_modules/@nodelib/fs.stat/out/providers/sync.js b/node_modules/@nodelib/fs.stat/out/providers/sync.js
new file mode 100644
index 0000000..1521c36
--- /dev/null
+++ b/node_modules/@nodelib/fs.stat/out/providers/sync.js
@@ -0,0 +1,23 @@
+"use strict";
+Object.defineProperty(exports, "__esModule", { value: true });
+exports.read = void 0;
+function read(path, settings) {
+ const lstat = settings.fs.lstatSync(path);
+ if (!lstat.isSymbolicLink() || !settings.followSymbolicLink) {
+ return lstat;
+ }
+ try {
+ const stat = settings.fs.statSync(path);
+ if (settings.markSymbolicLink) {
+ stat.isSymbolicLink = () => true;
+ }
+ return stat;
+ }
+ catch (error) {
+ if (!settings.throwErrorOnBrokenSymbolicLink) {
+ return lstat;
+ }
+ throw error;
+ }
+}
+exports.read = read;
diff --git a/node_modules/@nodelib/fs.stat/out/settings.d.ts b/node_modules/@nodelib/fs.stat/out/settings.d.ts
new file mode 100644
index 0000000..f4b3d44
--- /dev/null
+++ b/node_modules/@nodelib/fs.stat/out/settings.d.ts
@@ -0,0 +1,16 @@
+import * as fs from './adapters/fs';
+export interface Options {
+ followSymbolicLink?: boolean;
+ fs?: Partial;
+ markSymbolicLink?: boolean;
+ throwErrorOnBrokenSymbolicLink?: boolean;
+}
+export default class Settings {
+ private readonly _options;
+ readonly followSymbolicLink: boolean;
+ readonly fs: fs.FileSystemAdapter;
+ readonly markSymbolicLink: boolean;
+ readonly throwErrorOnBrokenSymbolicLink: boolean;
+ constructor(_options?: Options);
+ private _getValue;
+}
diff --git a/node_modules/@nodelib/fs.stat/out/settings.js b/node_modules/@nodelib/fs.stat/out/settings.js
new file mode 100644
index 0000000..111ec09
--- /dev/null
+++ b/node_modules/@nodelib/fs.stat/out/settings.js
@@ -0,0 +1,16 @@
+"use strict";
+Object.defineProperty(exports, "__esModule", { value: true });
+const fs = require("./adapters/fs");
+class Settings {
+ constructor(_options = {}) {
+ this._options = _options;
+ this.followSymbolicLink = this._getValue(this._options.followSymbolicLink, true);
+ this.fs = fs.createFileSystemAdapter(this._options.fs);
+ this.markSymbolicLink = this._getValue(this._options.markSymbolicLink, false);
+ this.throwErrorOnBrokenSymbolicLink = this._getValue(this._options.throwErrorOnBrokenSymbolicLink, true);
+ }
+ _getValue(option, value) {
+ return option !== null && option !== void 0 ? option : value;
+ }
+}
+exports.default = Settings;
diff --git a/node_modules/@nodelib/fs.stat/out/types/index.d.ts b/node_modules/@nodelib/fs.stat/out/types/index.d.ts
new file mode 100644
index 0000000..74c08ed
--- /dev/null
+++ b/node_modules/@nodelib/fs.stat/out/types/index.d.ts
@@ -0,0 +1,4 @@
+///
+import type * as fs from 'fs';
+export declare type Stats = fs.Stats;
+export declare type ErrnoException = NodeJS.ErrnoException;
diff --git a/node_modules/@nodelib/fs.stat/out/types/index.js b/node_modules/@nodelib/fs.stat/out/types/index.js
new file mode 100644
index 0000000..c8ad2e5
--- /dev/null
+++ b/node_modules/@nodelib/fs.stat/out/types/index.js
@@ -0,0 +1,2 @@
+"use strict";
+Object.defineProperty(exports, "__esModule", { value: true });
diff --git a/node_modules/@nodelib/fs.stat/package.json b/node_modules/@nodelib/fs.stat/package.json
new file mode 100644
index 0000000..f2540c2
--- /dev/null
+++ b/node_modules/@nodelib/fs.stat/package.json
@@ -0,0 +1,37 @@
+{
+ "name": "@nodelib/fs.stat",
+ "version": "2.0.5",
+ "description": "Get the status of a file with some features",
+ "license": "MIT",
+ "repository": "https://github.com/nodelib/nodelib/tree/master/packages/fs/fs.stat",
+ "keywords": [
+ "NodeLib",
+ "fs",
+ "FileSystem",
+ "file system",
+ "stat"
+ ],
+ "engines": {
+ "node": ">= 8"
+ },
+ "files": [
+ "out/**",
+ "!out/**/*.map",
+ "!out/**/*.spec.*"
+ ],
+ "main": "out/index.js",
+ "typings": "out/index.d.ts",
+ "scripts": {
+ "clean": "rimraf {tsconfig.tsbuildinfo,out}",
+ "lint": "eslint \"src/**/*.ts\" --cache",
+ "compile": "tsc -b .",
+ "compile:watch": "tsc -p . --watch --sourceMap",
+ "test": "mocha \"out/**/*.spec.js\" -s 0",
+ "build": "npm run clean && npm run compile && npm run lint && npm test",
+ "watch": "npm run clean && npm run compile:watch"
+ },
+ "devDependencies": {
+ "@nodelib/fs.macchiato": "1.0.4"
+ },
+ "gitHead": "d6a7960d5281d3dd5f8e2efba49bb552d090f562"
+}
diff --git a/node_modules/@nodelib/fs.walk/LICENSE b/node_modules/@nodelib/fs.walk/LICENSE
new file mode 100644
index 0000000..65a9994
--- /dev/null
+++ b/node_modules/@nodelib/fs.walk/LICENSE
@@ -0,0 +1,21 @@
+The MIT License (MIT)
+
+Copyright (c) Denis Malinochkin
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
diff --git a/node_modules/@nodelib/fs.walk/README.md b/node_modules/@nodelib/fs.walk/README.md
new file mode 100644
index 0000000..6ccc08d
--- /dev/null
+++ b/node_modules/@nodelib/fs.walk/README.md
@@ -0,0 +1,215 @@
+# @nodelib/fs.walk
+
+> A library for efficiently walking a directory recursively.
+
+## :bulb: Highlights
+
+* :moneybag: Returns useful information: `name`, `path`, `dirent` and `stats` (optional).
+* :rocket: On Node.js 10.10+ uses the mechanism without additional calls to determine the entry type for performance reasons. See [`old` and `modern` mode](https://github.com/nodelib/nodelib/blob/master/packages/fs/fs.scandir/README.md#old-and-modern-mode).
+* :gear: Built-in directories/files and error filtering system.
+* :link: Can safely work with broken symbolic links.
+
+## Install
+
+```console
+npm install @nodelib/fs.walk
+```
+
+## Usage
+
+```ts
+import * as fsWalk from '@nodelib/fs.walk';
+
+fsWalk.walk('path', (error, entries) => { /* … */ });
+```
+
+## API
+
+### .walk(path, [optionsOrSettings], callback)
+
+Reads the directory recursively and asynchronously. Requires a callback function.
+
+> :book: If you want to use the Promise API, use `util.promisify`.
+
+```ts
+fsWalk.walk('path', (error, entries) => { /* … */ });
+fsWalk.walk('path', {}, (error, entries) => { /* … */ });
+fsWalk.walk('path', new fsWalk.Settings(), (error, entries) => { /* … */ });
+```
+
+### .walkStream(path, [optionsOrSettings])
+
+Reads the directory recursively and asynchronously. [Readable Stream](https://nodejs.org/dist/latest-v12.x/docs/api/stream.html#stream_readable_streams) is used as a provider.
+
+```ts
+const stream = fsWalk.walkStream('path');
+const stream = fsWalk.walkStream('path', {});
+const stream = fsWalk.walkStream('path', new fsWalk.Settings());
+```
+
+### .walkSync(path, [optionsOrSettings])
+
+Reads the directory recursively and synchronously. Returns an array of entries.
+
+```ts
+const entries = fsWalk.walkSync('path');
+const entries = fsWalk.walkSync('path', {});
+const entries = fsWalk.walkSync('path', new fsWalk.Settings());
+```
+
+#### path
+
+* Required: `true`
+* Type: `string | Buffer | URL`
+
+A path to a file. If a URL is provided, it must use the `file:` protocol.
+
+#### optionsOrSettings
+
+* Required: `false`
+* Type: `Options | Settings`
+* Default: An instance of `Settings` class
+
+An [`Options`](#options) object or an instance of [`Settings`](#settings) class.
+
+> :book: When you pass a plain object, an instance of the `Settings` class will be created automatically. If you plan to call the method frequently, use a pre-created instance of the `Settings` class.
+
+### Settings([options])
+
+A class of full settings of the package.
+
+```ts
+const settings = new fsWalk.Settings({ followSymbolicLinks: true });
+
+const entries = fsWalk.walkSync('path', settings);
+```
+
+## Entry
+
+* `name` — The name of the entry (`unknown.txt`).
+* `path` — The path of the entry relative to call directory (`root/unknown.txt`).
+* `dirent` — An instance of [`fs.Dirent`](./src/types/index.ts) class.
+* [`stats`] — An instance of `fs.Stats` class.
+
+## Options
+
+### basePath
+
+* Type: `string`
+* Default: `undefined`
+
+By default, all paths are built relative to the root path. You can use this option to set custom root path.
+
+In the example below we read the files from the `root` directory, but in the results the root path will be `custom`.
+
+```ts
+fsWalk.walkSync('root'); // → ['root/file.txt']
+fsWalk.walkSync('root', { basePath: 'custom' }); // → ['custom/file.txt']
+```
+
+### concurrency
+
+* Type: `number`
+* Default: `Infinity`
+
+The maximum number of concurrent calls to `fs.readdir`.
+
+> :book: The higher the number, the higher performance and the load on the File System. If you want to read in quiet mode, set the value to `4 * os.cpus().length` (4 is default size of [thread pool work scheduling](http://docs.libuv.org/en/v1.x/threadpool.html#thread-pool-work-scheduling)).
+
+### deepFilter
+
+* Type: [`DeepFilterFunction`](./src/settings.ts)
+* Default: `undefined`
+
+A function that indicates whether the directory will be read deep or not.
+
+```ts
+// Skip all directories that starts with `node_modules`
+const filter: DeepFilterFunction = (entry) => !entry.path.startsWith('node_modules');
+```
+
+### entryFilter
+
+* Type: [`EntryFilterFunction`](./src/settings.ts)
+* Default: `undefined`
+
+A function that indicates whether the entry will be included to results or not.
+
+```ts
+// Exclude all `.js` files from results
+const filter: EntryFilterFunction = (entry) => !entry.name.endsWith('.js');
+```
+
+### errorFilter
+
+* Type: [`ErrorFilterFunction`](./src/settings.ts)
+* Default: `undefined`
+
+A function that allows you to skip errors that occur when reading directories.
+
+For example, you can skip `ENOENT` errors if required:
+
+```ts
+// Skip all ENOENT errors
+const filter: ErrorFilterFunction = (error) => error.code == 'ENOENT';
+```
+
+### stats
+
+* Type: `boolean`
+* Default: `false`
+
+Adds an instance of `fs.Stats` class to the [`Entry`](#entry).
+
+> :book: Always use `fs.readdir` with additional `fs.lstat/fs.stat` calls to determine the entry type.
+
+### followSymbolicLinks
+
+* Type: `boolean`
+* Default: `false`
+
+Follow symbolic links or not. Call `fs.stat` on symbolic link if `true`.
+
+### `throwErrorOnBrokenSymbolicLink`
+
+* Type: `boolean`
+* Default: `true`
+
+Throw an error when symbolic link is broken if `true` or safely return `lstat` call if `false`.
+
+### `pathSegmentSeparator`
+
+* Type: `string`
+* Default: `path.sep`
+
+By default, this package uses the correct path separator for your OS (`\` on Windows, `/` on Unix-like systems). But you can set this option to any separator character(s) that you want to use instead.
+
+### `fs`
+
+* Type: `FileSystemAdapter`
+* Default: A default FS methods
+
+By default, the built-in Node.js module (`fs`) is used to work with the file system. You can replace any method with your own.
+
+```ts
+interface FileSystemAdapter {
+ lstat: typeof fs.lstat;
+ stat: typeof fs.stat;
+ lstatSync: typeof fs.lstatSync;
+ statSync: typeof fs.statSync;
+ readdir: typeof fs.readdir;
+ readdirSync: typeof fs.readdirSync;
+}
+
+const settings = new fsWalk.Settings({
+ fs: { lstat: fakeLstat }
+});
+```
+
+## Changelog
+
+See the [Releases section of our GitHub project](https://github.com/nodelib/nodelib/releases) for changelog for each release version.
+
+## License
+
+This software is released under the terms of the MIT license.
diff --git a/node_modules/@nodelib/fs.walk/out/index.d.ts b/node_modules/@nodelib/fs.walk/out/index.d.ts
new file mode 100644
index 0000000..8864c7b
--- /dev/null
+++ b/node_modules/@nodelib/fs.walk/out/index.d.ts
@@ -0,0 +1,14 @@
+///
+import type { Readable } from 'stream';
+import type { Dirent, FileSystemAdapter } from '@nodelib/fs.scandir';
+import { AsyncCallback } from './providers/async';
+import Settings, { DeepFilterFunction, EntryFilterFunction, ErrorFilterFunction, Options } from './settings';
+import type { Entry } from './types';
+declare function walk(directory: string, callback: AsyncCallback): void;
+declare function walk(directory: string, optionsOrSettings: Options | Settings, callback: AsyncCallback): void;
+declare namespace walk {
+ function __promisify__(directory: string, optionsOrSettings?: Options | Settings): Promise;
+}
+declare function walkSync(directory: string, optionsOrSettings?: Options | Settings): Entry[];
+declare function walkStream(directory: string, optionsOrSettings?: Options | Settings): Readable;
+export { walk, walkSync, walkStream, Settings, AsyncCallback, Dirent, Entry, FileSystemAdapter, Options, DeepFilterFunction, EntryFilterFunction, ErrorFilterFunction };
diff --git a/node_modules/@nodelib/fs.walk/out/index.js b/node_modules/@nodelib/fs.walk/out/index.js
new file mode 100644
index 0000000..1520787
--- /dev/null
+++ b/node_modules/@nodelib/fs.walk/out/index.js
@@ -0,0 +1,34 @@
+"use strict";
+Object.defineProperty(exports, "__esModule", { value: true });
+exports.Settings = exports.walkStream = exports.walkSync = exports.walk = void 0;
+const async_1 = require("./providers/async");
+const stream_1 = require("./providers/stream");
+const sync_1 = require("./providers/sync");
+const settings_1 = require("./settings");
+exports.Settings = settings_1.default;
+function walk(directory, optionsOrSettingsOrCallback, callback) {
+ if (typeof optionsOrSettingsOrCallback === 'function') {
+ new async_1.default(directory, getSettings()).read(optionsOrSettingsOrCallback);
+ return;
+ }
+ new async_1.default(directory, getSettings(optionsOrSettingsOrCallback)).read(callback);
+}
+exports.walk = walk;
+function walkSync(directory, optionsOrSettings) {
+ const settings = getSettings(optionsOrSettings);
+ const provider = new sync_1.default(directory, settings);
+ return provider.read();
+}
+exports.walkSync = walkSync;
+function walkStream(directory, optionsOrSettings) {
+ const settings = getSettings(optionsOrSettings);
+ const provider = new stream_1.default(directory, settings);
+ return provider.read();
+}
+exports.walkStream = walkStream;
+function getSettings(settingsOrOptions = {}) {
+ if (settingsOrOptions instanceof settings_1.default) {
+ return settingsOrOptions;
+ }
+ return new settings_1.default(settingsOrOptions);
+}
diff --git a/node_modules/@nodelib/fs.walk/out/providers/async.d.ts b/node_modules/@nodelib/fs.walk/out/providers/async.d.ts
new file mode 100644
index 0000000..0f6717d
--- /dev/null
+++ b/node_modules/@nodelib/fs.walk/out/providers/async.d.ts
@@ -0,0 +1,12 @@
+import AsyncReader from '../readers/async';
+import type Settings from '../settings';
+import type { Entry, Errno } from '../types';
+export declare type AsyncCallback = (error: Errno, entries: Entry[]) => void;
+export default class AsyncProvider {
+ private readonly _root;
+ private readonly _settings;
+ protected readonly _reader: AsyncReader;
+ private readonly _storage;
+ constructor(_root: string, _settings: Settings);
+ read(callback: AsyncCallback): void;
+}
diff --git a/node_modules/@nodelib/fs.walk/out/providers/async.js b/node_modules/@nodelib/fs.walk/out/providers/async.js
new file mode 100644
index 0000000..51d3be5
--- /dev/null
+++ b/node_modules/@nodelib/fs.walk/out/providers/async.js
@@ -0,0 +1,30 @@
+"use strict";
+Object.defineProperty(exports, "__esModule", { value: true });
+const async_1 = require("../readers/async");
+class AsyncProvider {
+ constructor(_root, _settings) {
+ this._root = _root;
+ this._settings = _settings;
+ this._reader = new async_1.default(this._root, this._settings);
+ this._storage = [];
+ }
+ read(callback) {
+ this._reader.onError((error) => {
+ callFailureCallback(callback, error);
+ });
+ this._reader.onEntry((entry) => {
+ this._storage.push(entry);
+ });
+ this._reader.onEnd(() => {
+ callSuccessCallback(callback, this._storage);
+ });
+ this._reader.read();
+ }
+}
+exports.default = AsyncProvider;
+function callFailureCallback(callback, error) {
+ callback(error);
+}
+function callSuccessCallback(callback, entries) {
+ callback(null, entries);
+}
diff --git a/node_modules/@nodelib/fs.walk/out/providers/index.d.ts b/node_modules/@nodelib/fs.walk/out/providers/index.d.ts
new file mode 100644
index 0000000..874f60c
--- /dev/null
+++ b/node_modules/@nodelib/fs.walk/out/providers/index.d.ts
@@ -0,0 +1,4 @@
+import AsyncProvider from './async';
+import StreamProvider from './stream';
+import SyncProvider from './sync';
+export { AsyncProvider, StreamProvider, SyncProvider };
diff --git a/node_modules/@nodelib/fs.walk/out/providers/index.js b/node_modules/@nodelib/fs.walk/out/providers/index.js
new file mode 100644
index 0000000..4c2529c
--- /dev/null
+++ b/node_modules/@nodelib/fs.walk/out/providers/index.js
@@ -0,0 +1,9 @@
+"use strict";
+Object.defineProperty(exports, "__esModule", { value: true });
+exports.SyncProvider = exports.StreamProvider = exports.AsyncProvider = void 0;
+const async_1 = require("./async");
+exports.AsyncProvider = async_1.default;
+const stream_1 = require("./stream");
+exports.StreamProvider = stream_1.default;
+const sync_1 = require("./sync");
+exports.SyncProvider = sync_1.default;
diff --git a/node_modules/@nodelib/fs.walk/out/providers/stream.d.ts b/node_modules/@nodelib/fs.walk/out/providers/stream.d.ts
new file mode 100644
index 0000000..294185f
--- /dev/null
+++ b/node_modules/@nodelib/fs.walk/out/providers/stream.d.ts
@@ -0,0 +1,12 @@
+///
+import { Readable } from 'stream';
+import AsyncReader from '../readers/async';
+import type Settings from '../settings';
+export default class StreamProvider {
+ private readonly _root;
+ private readonly _settings;
+ protected readonly _reader: AsyncReader;
+ protected readonly _stream: Readable;
+ constructor(_root: string, _settings: Settings);
+ read(): Readable;
+}
diff --git a/node_modules/@nodelib/fs.walk/out/providers/stream.js b/node_modules/@nodelib/fs.walk/out/providers/stream.js
new file mode 100644
index 0000000..51298b0
--- /dev/null
+++ b/node_modules/@nodelib/fs.walk/out/providers/stream.js
@@ -0,0 +1,34 @@
+"use strict";
+Object.defineProperty(exports, "__esModule", { value: true });
+const stream_1 = require("stream");
+const async_1 = require("../readers/async");
+class StreamProvider {
+ constructor(_root, _settings) {
+ this._root = _root;
+ this._settings = _settings;
+ this._reader = new async_1.default(this._root, this._settings);
+ this._stream = new stream_1.Readable({
+ objectMode: true,
+ read: () => { },
+ destroy: () => {
+ if (!this._reader.isDestroyed) {
+ this._reader.destroy();
+ }
+ }
+ });
+ }
+ read() {
+ this._reader.onError((error) => {
+ this._stream.emit('error', error);
+ });
+ this._reader.onEntry((entry) => {
+ this._stream.push(entry);
+ });
+ this._reader.onEnd(() => {
+ this._stream.push(null);
+ });
+ this._reader.read();
+ return this._stream;
+ }
+}
+exports.default = StreamProvider;
diff --git a/node_modules/@nodelib/fs.walk/out/providers/sync.d.ts b/node_modules/@nodelib/fs.walk/out/providers/sync.d.ts
new file mode 100644
index 0000000..551c42e
--- /dev/null
+++ b/node_modules/@nodelib/fs.walk/out/providers/sync.d.ts
@@ -0,0 +1,10 @@
+import SyncReader from '../readers/sync';
+import type Settings from '../settings';
+import type { Entry } from '../types';
+export default class SyncProvider {
+ private readonly _root;
+ private readonly _settings;
+ protected readonly _reader: SyncReader;
+ constructor(_root: string, _settings: Settings);
+ read(): Entry[];
+}
diff --git a/node_modules/@nodelib/fs.walk/out/providers/sync.js b/node_modules/@nodelib/fs.walk/out/providers/sync.js
new file mode 100644
index 0000000..faab6ca
--- /dev/null
+++ b/node_modules/@nodelib/fs.walk/out/providers/sync.js
@@ -0,0 +1,14 @@
+"use strict";
+Object.defineProperty(exports, "__esModule", { value: true });
+const sync_1 = require("../readers/sync");
+class SyncProvider {
+ constructor(_root, _settings) {
+ this._root = _root;
+ this._settings = _settings;
+ this._reader = new sync_1.default(this._root, this._settings);
+ }
+ read() {
+ return this._reader.read();
+ }
+}
+exports.default = SyncProvider;
diff --git a/node_modules/@nodelib/fs.walk/out/readers/async.d.ts b/node_modules/@nodelib/fs.walk/out/readers/async.d.ts
new file mode 100644
index 0000000..9acf4e6
--- /dev/null
+++ b/node_modules/@nodelib/fs.walk/out/readers/async.d.ts
@@ -0,0 +1,30 @@
+///
+import { EventEmitter } from 'events';
+import * as fsScandir from '@nodelib/fs.scandir';
+import type Settings from '../settings';
+import type { Entry, Errno } from '../types';
+import Reader from './reader';
+declare type EntryEventCallback = (entry: Entry) => void;
+declare type ErrorEventCallback = (error: Errno) => void;
+declare type EndEventCallback = () => void;
+export default class AsyncReader extends Reader {
+ protected readonly _settings: Settings;
+ protected readonly _scandir: typeof fsScandir.scandir;
+ protected readonly _emitter: EventEmitter;
+ private readonly _queue;
+ private _isFatalError;
+ private _isDestroyed;
+ constructor(_root: string, _settings: Settings);
+ read(): EventEmitter;
+ get isDestroyed(): boolean;
+ destroy(): void;
+ onEntry(callback: EntryEventCallback): void;
+ onError(callback: ErrorEventCallback): void;
+ onEnd(callback: EndEventCallback): void;
+ private _pushToQueue;
+ private _worker;
+ private _handleError;
+ private _handleEntry;
+ private _emitEntry;
+}
+export {};
diff --git a/node_modules/@nodelib/fs.walk/out/readers/async.js b/node_modules/@nodelib/fs.walk/out/readers/async.js
new file mode 100644
index 0000000..ebe8dd5
--- /dev/null
+++ b/node_modules/@nodelib/fs.walk/out/readers/async.js
@@ -0,0 +1,97 @@
+"use strict";
+Object.defineProperty(exports, "__esModule", { value: true });
+const events_1 = require("events");
+const fsScandir = require("@nodelib/fs.scandir");
+const fastq = require("fastq");
+const common = require("./common");
+const reader_1 = require("./reader");
+class AsyncReader extends reader_1.default {
+ constructor(_root, _settings) {
+ super(_root, _settings);
+ this._settings = _settings;
+ this._scandir = fsScandir.scandir;
+ this._emitter = new events_1.EventEmitter();
+ this._queue = fastq(this._worker.bind(this), this._settings.concurrency);
+ this._isFatalError = false;
+ this._isDestroyed = false;
+ this._queue.drain = () => {
+ if (!this._isFatalError) {
+ this._emitter.emit('end');
+ }
+ };
+ }
+ read() {
+ this._isFatalError = false;
+ this._isDestroyed = false;
+ setImmediate(() => {
+ this._pushToQueue(this._root, this._settings.basePath);
+ });
+ return this._emitter;
+ }
+ get isDestroyed() {
+ return this._isDestroyed;
+ }
+ destroy() {
+ if (this._isDestroyed) {
+ throw new Error('The reader is already destroyed');
+ }
+ this._isDestroyed = true;
+ this._queue.killAndDrain();
+ }
+ onEntry(callback) {
+ this._emitter.on('entry', callback);
+ }
+ onError(callback) {
+ this._emitter.once('error', callback);
+ }
+ onEnd(callback) {
+ this._emitter.once('end', callback);
+ }
+ _pushToQueue(directory, base) {
+ const queueItem = { directory, base };
+ this._queue.push(queueItem, (error) => {
+ if (error !== null) {
+ this._handleError(error);
+ }
+ });
+ }
+ _worker(item, done) {
+ this._scandir(item.directory, this._settings.fsScandirSettings, (error, entries) => {
+ if (error !== null) {
+ done(error, undefined);
+ return;
+ }
+ for (const entry of entries) {
+ this._handleEntry(entry, item.base);
+ }
+ done(null, undefined);
+ });
+ }
+ _handleError(error) {
+ if (this._isDestroyed || !common.isFatalError(this._settings, error)) {
+ return;
+ }
+ this._isFatalError = true;
+ this._isDestroyed = true;
+ this._emitter.emit('error', error);
+ }
+ _handleEntry(entry, base) {
+ if (this._isDestroyed || this._isFatalError) {
+ return;
+ }
+ const fullpath = entry.path;
+ if (base !== undefined) {
+ entry.path = common.joinPathSegments(base, entry.name, this._settings.pathSegmentSeparator);
+ }
+ if (common.isAppliedFilter(this._settings.entryFilter, entry)) {
+ this._emitEntry(entry);
+ }
+ if (entry.dirent.isDirectory() && common.isAppliedFilter(this._settings.deepFilter, entry)) {
+ this._pushToQueue(fullpath, base === undefined ? undefined : entry.path);
+ }
+ }
+ _emitEntry(entry) {
+ this._emitter.emit('entry', entry);
+ }
+}
+exports.default = AsyncReader;
diff --git a/node_modules/@nodelib/fs.walk/out/readers/common.d.ts b/node_modules/@nodelib/fs.walk/out/readers/common.d.ts
new file mode 100644
index 0000000..5985f97
--- /dev/null
+++ b/node_modules/@nodelib/fs.walk/out/readers/common.d.ts
@@ -0,0 +1,7 @@
+import type { FilterFunction } from '../settings';
+import type Settings from '../settings';
+import type { Errno } from '../types';
+export declare function isFatalError(settings: Settings, error: Errno): boolean;
+export declare function isAppliedFilter(filter: FilterFunction | null, value: T): boolean;
+export declare function replacePathSegmentSeparator(filepath: string, separator: string): string;
+export declare function joinPathSegments(a: string, b: string, separator: string): string;
diff --git a/node_modules/@nodelib/fs.walk/out/readers/common.js b/node_modules/@nodelib/fs.walk/out/readers/common.js
new file mode 100644
index 0000000..a93572f
--- /dev/null
+++ b/node_modules/@nodelib/fs.walk/out/readers/common.js
@@ -0,0 +1,31 @@
+"use strict";
+Object.defineProperty(exports, "__esModule", { value: true });
+exports.joinPathSegments = exports.replacePathSegmentSeparator = exports.isAppliedFilter = exports.isFatalError = void 0;
+function isFatalError(settings, error) {
+ if (settings.errorFilter === null) {
+ return true;
+ }
+ return !settings.errorFilter(error);
+}
+exports.isFatalError = isFatalError;
+function isAppliedFilter(filter, value) {
+ return filter === null || filter(value);
+}
+exports.isAppliedFilter = isAppliedFilter;
+function replacePathSegmentSeparator(filepath, separator) {
+ return filepath.split(/[/\\]/).join(separator);
+}
+exports.replacePathSegmentSeparator = replacePathSegmentSeparator;
+function joinPathSegments(a, b, separator) {
+ if (a === '') {
+ return b;
+ }
+ /**
+ * The correct handling of cases when the first segment is a root (`/`, `C:/`) or UNC path (`//?/C:/`).
+ */
+ if (a.endsWith(separator)) {
+ return a + b;
+ }
+ return a + separator + b;
+}
+exports.joinPathSegments = joinPathSegments;
diff --git a/node_modules/@nodelib/fs.walk/out/readers/reader.d.ts b/node_modules/@nodelib/fs.walk/out/readers/reader.d.ts
new file mode 100644
index 0000000..e1f383b
--- /dev/null
+++ b/node_modules/@nodelib/fs.walk/out/readers/reader.d.ts
@@ -0,0 +1,6 @@
+import type Settings from '../settings';
+export default class Reader {
+ protected readonly _root: string;
+ protected readonly _settings: Settings;
+ constructor(_root: string, _settings: Settings);
+}
diff --git a/node_modules/@nodelib/fs.walk/out/readers/reader.js b/node_modules/@nodelib/fs.walk/out/readers/reader.js
new file mode 100644
index 0000000..782f07c
--- /dev/null
+++ b/node_modules/@nodelib/fs.walk/out/readers/reader.js
@@ -0,0 +1,11 @@
+"use strict";
+Object.defineProperty(exports, "__esModule", { value: true });
+const common = require("./common");
+class Reader {
+ constructor(_root, _settings) {
+ this._root = _root;
+ this._settings = _settings;
+ this._root = common.replacePathSegmentSeparator(_root, _settings.pathSegmentSeparator);
+ }
+}
+exports.default = Reader;
diff --git a/node_modules/@nodelib/fs.walk/out/readers/sync.d.ts b/node_modules/@nodelib/fs.walk/out/readers/sync.d.ts
new file mode 100644
index 0000000..af41033
--- /dev/null
+++ b/node_modules/@nodelib/fs.walk/out/readers/sync.d.ts
@@ -0,0 +1,15 @@
+import * as fsScandir from '@nodelib/fs.scandir';
+import type { Entry } from '../types';
+import Reader from './reader';
+export default class SyncReader extends Reader {
+ protected readonly _scandir: typeof fsScandir.scandirSync;
+ private readonly _storage;
+ private readonly _queue;
+ read(): Entry[];
+ private _pushToQueue;
+ private _handleQueue;
+ private _handleDirectory;
+ private _handleError;
+ private _handleEntry;
+ private _pushToStorage;
+}
diff --git a/node_modules/@nodelib/fs.walk/out/readers/sync.js b/node_modules/@nodelib/fs.walk/out/readers/sync.js
new file mode 100644
index 0000000..9a8d5a6
--- /dev/null
+++ b/node_modules/@nodelib/fs.walk/out/readers/sync.js
@@ -0,0 +1,59 @@
+"use strict";
+Object.defineProperty(exports, "__esModule", { value: true });
+const fsScandir = require("@nodelib/fs.scandir");
+const common = require("./common");
+const reader_1 = require("./reader");
+class SyncReader extends reader_1.default {
+ constructor() {
+ super(...arguments);
+ this._scandir = fsScandir.scandirSync;
+ this._storage = [];
+ this._queue = new Set();
+ }
+ read() {
+ this._pushToQueue(this._root, this._settings.basePath);
+ this._handleQueue();
+ return this._storage;
+ }
+ _pushToQueue(directory, base) {
+ this._queue.add({ directory, base });
+ }
+ _handleQueue() {
+ for (const item of this._queue.values()) {
+ this._handleDirectory(item.directory, item.base);
+ }
+ }
+ _handleDirectory(directory, base) {
+ try {
+ const entries = this._scandir(directory, this._settings.fsScandirSettings);
+ for (const entry of entries) {
+ this._handleEntry(entry, base);
+ }
+ }
+ catch (error) {
+ this._handleError(error);
+ }
+ }
+ _handleError(error) {
+ if (!common.isFatalError(this._settings, error)) {
+ return;
+ }
+ throw error;
+ }
+ _handleEntry(entry, base) {
+ const fullpath = entry.path;
+ if (base !== undefined) {
+ entry.path = common.joinPathSegments(base, entry.name, this._settings.pathSegmentSeparator);
+ }
+ if (common.isAppliedFilter(this._settings.entryFilter, entry)) {
+ this._pushToStorage(entry);
+ }
+ if (entry.dirent.isDirectory() && common.isAppliedFilter(this._settings.deepFilter, entry)) {
+ this._pushToQueue(fullpath, base === undefined ? undefined : entry.path);
+ }
+ }
+ _pushToStorage(entry) {
+ this._storage.push(entry);
+ }
+}
+exports.default = SyncReader;
diff --git a/node_modules/@nodelib/fs.walk/out/settings.d.ts b/node_modules/@nodelib/fs.walk/out/settings.d.ts
new file mode 100644
index 0000000..d1c4b45
--- /dev/null
+++ b/node_modules/@nodelib/fs.walk/out/settings.d.ts
@@ -0,0 +1,30 @@
+import * as fsScandir from '@nodelib/fs.scandir';
+import type { Entry, Errno } from './types';
+export declare type FilterFunction = (value: T) => boolean;
+export declare type DeepFilterFunction = FilterFunction;
+export declare type EntryFilterFunction = FilterFunction;
+export declare type ErrorFilterFunction = FilterFunction;
+export interface Options {
+ basePath?: string;
+ concurrency?: number;
+ deepFilter?: DeepFilterFunction;
+ entryFilter?: EntryFilterFunction;
+ errorFilter?: ErrorFilterFunction;
+ followSymbolicLinks?: boolean;
+ fs?: Partial;
+ pathSegmentSeparator?: string;
+ stats?: boolean;
+ throwErrorOnBrokenSymbolicLink?: boolean;
+}
+export default class Settings {
+ private readonly _options;
+ readonly basePath?: string;
+ readonly concurrency: number;
+ readonly deepFilter: DeepFilterFunction | null;
+ readonly entryFilter: EntryFilterFunction | null;
+ readonly errorFilter: ErrorFilterFunction | null;
+ readonly pathSegmentSeparator: string;
+ readonly fsScandirSettings: fsScandir.Settings;
+ constructor(_options?: Options);
+ private _getValue;
+}
diff --git a/node_modules/@nodelib/fs.walk/out/settings.js b/node_modules/@nodelib/fs.walk/out/settings.js
new file mode 100644
index 0000000..d7a85c8
--- /dev/null
+++ b/node_modules/@nodelib/fs.walk/out/settings.js
@@ -0,0 +1,26 @@
+"use strict";
+Object.defineProperty(exports, "__esModule", { value: true });
+const path = require("path");
+const fsScandir = require("@nodelib/fs.scandir");
+class Settings {
+ constructor(_options = {}) {
+ this._options = _options;
+ this.basePath = this._getValue(this._options.basePath, undefined);
+ this.concurrency = this._getValue(this._options.concurrency, Number.POSITIVE_INFINITY);
+ this.deepFilter = this._getValue(this._options.deepFilter, null);
+ this.entryFilter = this._getValue(this._options.entryFilter, null);
+ this.errorFilter = this._getValue(this._options.errorFilter, null);
+ this.pathSegmentSeparator = this._getValue(this._options.pathSegmentSeparator, path.sep);
+ this.fsScandirSettings = new fsScandir.Settings({
+ followSymbolicLinks: this._options.followSymbolicLinks,
+ fs: this._options.fs,
+ pathSegmentSeparator: this._options.pathSegmentSeparator,
+ stats: this._options.stats,
+ throwErrorOnBrokenSymbolicLink: this._options.throwErrorOnBrokenSymbolicLink
+ });
+ }
+ _getValue(option, value) {
+ return option !== null && option !== void 0 ? option : value;
+ }
+}
+exports.default = Settings;
diff --git a/node_modules/@nodelib/fs.walk/out/types/index.d.ts b/node_modules/@nodelib/fs.walk/out/types/index.d.ts
new file mode 100644
index 0000000..6ee9bd3
--- /dev/null
+++ b/node_modules/@nodelib/fs.walk/out/types/index.d.ts
@@ -0,0 +1,8 @@
+///
+import type * as scandir from '@nodelib/fs.scandir';
+export declare type Entry = scandir.Entry;
+export declare type Errno = NodeJS.ErrnoException;
+export interface QueueItem {
+ directory: string;
+ base?: string;
+}
diff --git a/node_modules/@nodelib/fs.walk/out/types/index.js b/node_modules/@nodelib/fs.walk/out/types/index.js
new file mode 100644
index 0000000..c8ad2e5
--- /dev/null
+++ b/node_modules/@nodelib/fs.walk/out/types/index.js
@@ -0,0 +1,2 @@
+"use strict";
+Object.defineProperty(exports, "__esModule", { value: true });
diff --git a/node_modules/@nodelib/fs.walk/package.json b/node_modules/@nodelib/fs.walk/package.json
new file mode 100644
index 0000000..86bfce4
--- /dev/null
+++ b/node_modules/@nodelib/fs.walk/package.json
@@ -0,0 +1,44 @@
+{
+ "name": "@nodelib/fs.walk",
+ "version": "1.2.8",
+ "description": "A library for efficiently walking a directory recursively",
+ "license": "MIT",
+ "repository": "https://github.com/nodelib/nodelib/tree/master/packages/fs/fs.walk",
+ "keywords": [
+ "NodeLib",
+ "fs",
+ "FileSystem",
+ "file system",
+ "walk",
+ "scanner",
+ "crawler"
+ ],
+ "engines": {
+ "node": ">= 8"
+ },
+ "files": [
+ "out/**",
+ "!out/**/*.map",
+ "!out/**/*.spec.*",
+ "!out/**/tests/**"
+ ],
+ "main": "out/index.js",
+ "typings": "out/index.d.ts",
+ "scripts": {
+ "clean": "rimraf {tsconfig.tsbuildinfo,out}",
+ "lint": "eslint \"src/**/*.ts\" --cache",
+ "compile": "tsc -b .",
+ "compile:watch": "tsc -p . --watch --sourceMap",
+ "test": "mocha \"out/**/*.spec.js\" -s 0",
+ "build": "npm run clean && npm run compile && npm run lint && npm test",
+ "watch": "npm run clean && npm run compile:watch"
+ },
+ "dependencies": {
+ "@nodelib/fs.scandir": "2.1.5",
+ "fastq": "^1.6.0"
+ },
+ "devDependencies": {
+ "@nodelib/fs.macchiato": "1.0.4"
+ },
+ "gitHead": "1e5bad48565da2b06b8600e744324ea240bf49d8"
+}
diff --git a/node_modules/ansi-regex/index.d.ts b/node_modules/ansi-regex/index.d.ts
new file mode 100644
index 0000000..2dbf6af
--- /dev/null
+++ b/node_modules/ansi-regex/index.d.ts
@@ -0,0 +1,37 @@
+declare namespace ansiRegex {
+ interface Options {
+ /**
+ Match only the first ANSI escape.
+
+ @default false
+ */
+ onlyFirst: boolean;
+ }
+}
+
+/**
+Regular expression for matching ANSI escape codes.
+
+@example
+```
+import ansiRegex = require('ansi-regex');
+
+ansiRegex().test('\u001B[4mcake\u001B[0m');
+//=> true
+
+ansiRegex().test('cake');
+//=> false
+
+'\u001B[4mcake\u001B[0m'.match(ansiRegex());
+//=> ['\u001B[4m', '\u001B[0m']
+
+'\u001B[4mcake\u001B[0m'.match(ansiRegex({onlyFirst: true}));
+//=> ['\u001B[4m']
+
+'\u001B]8;;https://github.com\u0007click\u001B]8;;\u0007'.match(ansiRegex());
+//=> ['\u001B]8;;https://github.com\u0007', '\u001B]8;;\u0007']
+```
+*/
+declare function ansiRegex(options?: ansiRegex.Options): RegExp;
+
+export = ansiRegex;
diff --git a/node_modules/ansi-regex/index.js b/node_modules/ansi-regex/index.js
new file mode 100644
index 0000000..616ff83
--- /dev/null
+++ b/node_modules/ansi-regex/index.js
@@ -0,0 +1,10 @@
+'use strict';
+
+module.exports = ({onlyFirst = false} = {}) => {
+ const pattern = [
+ '[\\u001B\\u009B][[\\]()#;?]*(?:(?:(?:(?:;[-a-zA-Z\\d\\/#&.:=?%@~_]+)*|[a-zA-Z\\d]+(?:;[-a-zA-Z\\d\\/#&.:=?%@~_]*)*)?\\u0007)',
+ '(?:(?:\\d{1,4}(?:;\\d{0,4})*)?[\\dA-PR-TZcf-ntqry=><~]))'
+ ].join('|');
+
+ return new RegExp(pattern, onlyFirst ? undefined : 'g');
+};
diff --git a/node_modules/ansi-regex/license b/node_modules/ansi-regex/license
new file mode 100644
index 0000000..e7af2f7
--- /dev/null
+++ b/node_modules/ansi-regex/license
@@ -0,0 +1,9 @@
+MIT License
+
+Copyright (c) Sindre Sorhus (sindresorhus.com)
+
+Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
diff --git a/node_modules/ansi-regex/package.json b/node_modules/ansi-regex/package.json
new file mode 100644
index 0000000..017f531
--- /dev/null
+++ b/node_modules/ansi-regex/package.json
@@ -0,0 +1,55 @@
+{
+ "name": "ansi-regex",
+ "version": "5.0.1",
+ "description": "Regular expression for matching ANSI escape codes",
+ "license": "MIT",
+ "repository": "chalk/ansi-regex",
+ "author": {
+ "name": "Sindre Sorhus",
+ "email": "sindresorhus@gmail.com",
+ "url": "sindresorhus.com"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "scripts": {
+ "test": "xo && ava && tsd",
+ "view-supported": "node fixtures/view-codes.js"
+ },
+ "files": [
+ "index.js",
+ "index.d.ts"
+ ],
+ "keywords": [
+ "ansi",
+ "styles",
+ "color",
+ "colour",
+ "colors",
+ "terminal",
+ "console",
+ "cli",
+ "string",
+ "tty",
+ "escape",
+ "formatting",
+ "rgb",
+ "256",
+ "shell",
+ "xterm",
+ "command-line",
+ "text",
+ "regex",
+ "regexp",
+ "re",
+ "match",
+ "test",
+ "find",
+ "pattern"
+ ],
+ "devDependencies": {
+ "ava": "^2.4.0",
+ "tsd": "^0.9.0",
+ "xo": "^0.25.3"
+ }
+}
diff --git a/node_modules/ansi-regex/readme.md b/node_modules/ansi-regex/readme.md
new file mode 100644
index 0000000..4d848bc
--- /dev/null
+++ b/node_modules/ansi-regex/readme.md
@@ -0,0 +1,78 @@
+# ansi-regex
+
+> Regular expression for matching [ANSI escape codes](https://en.wikipedia.org/wiki/ANSI_escape_code)
+
+
+## Install
+
+```
+$ npm install ansi-regex
+```
+
+
+## Usage
+
+```js
+const ansiRegex = require('ansi-regex');
+
+ansiRegex().test('\u001B[4mcake\u001B[0m');
+//=> true
+
+ansiRegex().test('cake');
+//=> false
+
+'\u001B[4mcake\u001B[0m'.match(ansiRegex());
+//=> ['\u001B[4m', '\u001B[0m']
+
+'\u001B[4mcake\u001B[0m'.match(ansiRegex({onlyFirst: true}));
+//=> ['\u001B[4m']
+
+'\u001B]8;;https://github.com\u0007click\u001B]8;;\u0007'.match(ansiRegex());
+//=> ['\u001B]8;;https://github.com\u0007', '\u001B]8;;\u0007']
+```
+
+
+## API
+
+### ansiRegex(options?)
+
+Returns a regex for matching ANSI escape codes.
+
+#### options
+
+Type: `object`
+
+##### onlyFirst
+
+Type: `boolean`
+Default: `false` *(Matches any ANSI escape codes in a string)*
+
+Match only the first ANSI escape.
+
+
+## FAQ
+
+### Why do you test for codes not in the ECMA 48 standard?
+
+Some of the codes we run as a test are codes that we acquired finding various lists of non-standard or manufacturer specific codes. We test for both standard and non-standard codes, as most of them follow the same or similar format and can be safely matched in strings without the risk of removing actual string content. There are a few non-standard control codes that do not follow the traditional format (i.e. they end in numbers) thus forcing us to exclude them from the test because we cannot reliably match them.
+
+On the historical side, those ECMA standards were established in the early 90's whereas the VT100, for example, was designed in the mid/late 70's. At that point in time, control codes were still pretty ungoverned and engineers used them for a multitude of things, namely to activate hardware ports that may have been proprietary. Somewhere else you see a similar 'anarchy' of codes is in the x86 architecture for processors; there are a ton of "interrupts" that can mean different things on certain brands of processors, most of which have been phased out.
+
+
+## Maintainers
+
+- [Sindre Sorhus](https://github.com/sindresorhus)
+- [Josh Junon](https://github.com/qix-)
+
+
+---
+
+
diff --git a/node_modules/ansi-styles/index.d.ts b/node_modules/ansi-styles/index.d.ts
new file mode 100644
index 0000000..44a907e
--- /dev/null
+++ b/node_modules/ansi-styles/index.d.ts
@@ -0,0 +1,345 @@
+declare type CSSColor =
+ | 'aliceblue'
+ | 'antiquewhite'
+ | 'aqua'
+ | 'aquamarine'
+ | 'azure'
+ | 'beige'
+ | 'bisque'
+ | 'black'
+ | 'blanchedalmond'
+ | 'blue'
+ | 'blueviolet'
+ | 'brown'
+ | 'burlywood'
+ | 'cadetblue'
+ | 'chartreuse'
+ | 'chocolate'
+ | 'coral'
+ | 'cornflowerblue'
+ | 'cornsilk'
+ | 'crimson'
+ | 'cyan'
+ | 'darkblue'
+ | 'darkcyan'
+ | 'darkgoldenrod'
+ | 'darkgray'
+ | 'darkgreen'
+ | 'darkgrey'
+ | 'darkkhaki'
+ | 'darkmagenta'
+ | 'darkolivegreen'
+ | 'darkorange'
+ | 'darkorchid'
+ | 'darkred'
+ | 'darksalmon'
+ | 'darkseagreen'
+ | 'darkslateblue'
+ | 'darkslategray'
+ | 'darkslategrey'
+ | 'darkturquoise'
+ | 'darkviolet'
+ | 'deeppink'
+ | 'deepskyblue'
+ | 'dimgray'
+ | 'dimgrey'
+ | 'dodgerblue'
+ | 'firebrick'
+ | 'floralwhite'
+ | 'forestgreen'
+ | 'fuchsia'
+ | 'gainsboro'
+ | 'ghostwhite'
+ | 'gold'
+ | 'goldenrod'
+ | 'gray'
+ | 'green'
+ | 'greenyellow'
+ | 'grey'
+ | 'honeydew'
+ | 'hotpink'
+ | 'indianred'
+ | 'indigo'
+ | 'ivory'
+ | 'khaki'
+ | 'lavender'
+ | 'lavenderblush'
+ | 'lawngreen'
+ | 'lemonchiffon'
+ | 'lightblue'
+ | 'lightcoral'
+ | 'lightcyan'
+ | 'lightgoldenrodyellow'
+ | 'lightgray'
+ | 'lightgreen'
+ | 'lightgrey'
+ | 'lightpink'
+ | 'lightsalmon'
+ | 'lightseagreen'
+ | 'lightskyblue'
+ | 'lightslategray'
+ | 'lightslategrey'
+ | 'lightsteelblue'
+ | 'lightyellow'
+ | 'lime'
+ | 'limegreen'
+ | 'linen'
+ | 'magenta'
+ | 'maroon'
+ | 'mediumaquamarine'
+ | 'mediumblue'
+ | 'mediumorchid'
+ | 'mediumpurple'
+ | 'mediumseagreen'
+ | 'mediumslateblue'
+ | 'mediumspringgreen'
+ | 'mediumturquoise'
+ | 'mediumvioletred'
+ | 'midnightblue'
+ | 'mintcream'
+ | 'mistyrose'
+ | 'moccasin'
+ | 'navajowhite'
+ | 'navy'
+ | 'oldlace'
+ | 'olive'
+ | 'olivedrab'
+ | 'orange'
+ | 'orangered'
+ | 'orchid'
+ | 'palegoldenrod'
+ | 'palegreen'
+ | 'paleturquoise'
+ | 'palevioletred'
+ | 'papayawhip'
+ | 'peachpuff'
+ | 'peru'
+ | 'pink'
+ | 'plum'
+ | 'powderblue'
+ | 'purple'
+ | 'rebeccapurple'
+ | 'red'
+ | 'rosybrown'
+ | 'royalblue'
+ | 'saddlebrown'
+ | 'salmon'
+ | 'sandybrown'
+ | 'seagreen'
+ | 'seashell'
+ | 'sienna'
+ | 'silver'
+ | 'skyblue'
+ | 'slateblue'
+ | 'slategray'
+ | 'slategrey'
+ | 'snow'
+ | 'springgreen'
+ | 'steelblue'
+ | 'tan'
+ | 'teal'
+ | 'thistle'
+ | 'tomato'
+ | 'turquoise'
+ | 'violet'
+ | 'wheat'
+ | 'white'
+ | 'whitesmoke'
+ | 'yellow'
+ | 'yellowgreen';
+
+declare namespace ansiStyles {
+ interface ColorConvert {
+ /**
+ The RGB color space.
+
+ @param red - (`0`-`255`)
+ @param green - (`0`-`255`)
+ @param blue - (`0`-`255`)
+ */
+ rgb(red: number, green: number, blue: number): string;
+
+ /**
+ The RGB HEX color space.
+
+ @param hex - A hexadecimal string containing RGB data.
+ */
+ hex(hex: string): string;
+
+ /**
+ @param keyword - A CSS color name.
+ */
+ keyword(keyword: CSSColor): string;
+
+ /**
+ The HSL color space.
+
+ @param hue - (`0`-`360`)
+ @param saturation - (`0`-`100`)
+ @param lightness - (`0`-`100`)
+ */
+ hsl(hue: number, saturation: number, lightness: number): string;
+
+ /**
+ The HSV color space.
+
+ @param hue - (`0`-`360`)
+ @param saturation - (`0`-`100`)
+ @param value - (`0`-`100`)
+ */
+ hsv(hue: number, saturation: number, value: number): string;
+
+ /**
+ The HSV color space.
+
+ @param hue - (`0`-`360`)
+ @param whiteness - (`0`-`100`)
+ @param blackness - (`0`-`100`)
+ */
+ hwb(hue: number, whiteness: number, blackness: number): string;
+
+ /**
+ Use a [4-bit unsigned number](https://en.wikipedia.org/wiki/ANSI_escape_code#3/4-bit) to set text color.
+ */
+ ansi(ansi: number): string;
+
+ /**
+ Use an [8-bit unsigned number](https://en.wikipedia.org/wiki/ANSI_escape_code#8-bit) to set text color.
+ */
+ ansi256(ansi: number): string;
+ }
+
+ interface CSPair {
+ /**
+ The ANSI terminal control sequence for starting this style.
+ */
+ readonly open: string;
+
+ /**
+ The ANSI terminal control sequence for ending this style.
+ */
+ readonly close: string;
+ }
+
+ interface ColorBase {
+ readonly ansi: ColorConvert;
+ readonly ansi256: ColorConvert;
+ readonly ansi16m: ColorConvert;
+
+ /**
+ The ANSI terminal control sequence for ending this color.
+ */
+ readonly close: string;
+ }
+
+ interface Modifier {
+ /**
+ Resets the current color chain.
+ */
+ readonly reset: CSPair;
+
+ /**
+ Make text bold.
+ */
+ readonly bold: CSPair;
+
+ /**
+ Emitting only a small amount of light.
+ */
+ readonly dim: CSPair;
+
+ /**
+ Make text italic. (Not widely supported)
+ */
+ readonly italic: CSPair;
+
+ /**
+ Make text underline. (Not widely supported)
+ */
+ readonly underline: CSPair;
+
+ /**
+ Inverse background and foreground colors.
+ */
+ readonly inverse: CSPair;
+
+ /**
+ Prints the text, but makes it invisible.
+ */
+ readonly hidden: CSPair;
+
+ /**
+ Puts a horizontal line through the center of the text. (Not widely supported)
+ */
+ readonly strikethrough: CSPair;
+ }
+
+ interface ForegroundColor {
+ readonly black: CSPair;
+ readonly red: CSPair;
+ readonly green: CSPair;
+ readonly yellow: CSPair;
+ readonly blue: CSPair;
+ readonly cyan: CSPair;
+ readonly magenta: CSPair;
+ readonly white: CSPair;
+
+ /**
+ Alias for `blackBright`.
+ */
+ readonly gray: CSPair;
+
+ /**
+ Alias for `blackBright`.
+ */
+ readonly grey: CSPair;
+
+ readonly blackBright: CSPair;
+ readonly redBright: CSPair;
+ readonly greenBright: CSPair;
+ readonly yellowBright: CSPair;
+ readonly blueBright: CSPair;
+ readonly cyanBright: CSPair;
+ readonly magentaBright: CSPair;
+ readonly whiteBright: CSPair;
+ }
+
+ interface BackgroundColor {
+ readonly bgBlack: CSPair;
+ readonly bgRed: CSPair;
+ readonly bgGreen: CSPair;
+ readonly bgYellow: CSPair;
+ readonly bgBlue: CSPair;
+ readonly bgCyan: CSPair;
+ readonly bgMagenta: CSPair;
+ readonly bgWhite: CSPair;
+
+ /**
+ Alias for `bgBlackBright`.
+ */
+ readonly bgGray: CSPair;
+
+ /**
+ Alias for `bgBlackBright`.
+ */
+ readonly bgGrey: CSPair;
+
+ readonly bgBlackBright: CSPair;
+ readonly bgRedBright: CSPair;
+ readonly bgGreenBright: CSPair;
+ readonly bgYellowBright: CSPair;
+ readonly bgBlueBright: CSPair;
+ readonly bgCyanBright: CSPair;
+ readonly bgMagentaBright: CSPair;
+ readonly bgWhiteBright: CSPair;
+ }
+}
+
+declare const ansiStyles: {
+ readonly modifier: ansiStyles.Modifier;
+ readonly color: ansiStyles.ForegroundColor & ansiStyles.ColorBase;
+ readonly bgColor: ansiStyles.BackgroundColor & ansiStyles.ColorBase;
+ readonly codes: ReadonlyMap;
+} & ansiStyles.BackgroundColor & ansiStyles.ForegroundColor & ansiStyles.Modifier;
+
+export = ansiStyles;
diff --git a/node_modules/ansi-styles/index.js b/node_modules/ansi-styles/index.js
new file mode 100644
index 0000000..5d82581
--- /dev/null
+++ b/node_modules/ansi-styles/index.js
@@ -0,0 +1,163 @@
+'use strict';
+
+const wrapAnsi16 = (fn, offset) => (...args) => {
+ const code = fn(...args);
+ return `\u001B[${code + offset}m`;
+};
+
+const wrapAnsi256 = (fn, offset) => (...args) => {
+ const code = fn(...args);
+ return `\u001B[${38 + offset};5;${code}m`;
+};
+
+const wrapAnsi16m = (fn, offset) => (...args) => {
+ const rgb = fn(...args);
+ return `\u001B[${38 + offset};2;${rgb[0]};${rgb[1]};${rgb[2]}m`;
+};
+
+const ansi2ansi = n => n;
+const rgb2rgb = (r, g, b) => [r, g, b];
+
+const setLazyProperty = (object, property, get) => {
+ Object.defineProperty(object, property, {
+ get: () => {
+ const value = get();
+
+ Object.defineProperty(object, property, {
+ value,
+ enumerable: true,
+ configurable: true
+ });
+
+ return value;
+ },
+ enumerable: true,
+ configurable: true
+ });
+};
+
+/** @type {typeof import('color-convert')} */
+let colorConvert;
+const makeDynamicStyles = (wrap, targetSpace, identity, isBackground) => {
+ if (colorConvert === undefined) {
+ colorConvert = require('color-convert');
+ }
+
+ const offset = isBackground ? 10 : 0;
+ const styles = {};
+
+ for (const [sourceSpace, suite] of Object.entries(colorConvert)) {
+ const name = sourceSpace === 'ansi16' ? 'ansi' : sourceSpace;
+ if (sourceSpace === targetSpace) {
+ styles[name] = wrap(identity, offset);
+ } else if (typeof suite === 'object') {
+ styles[name] = wrap(suite[targetSpace], offset);
+ }
+ }
+
+ return styles;
+};
+
+function assembleStyles() {
+ const codes = new Map();
+ const styles = {
+ modifier: {
+ reset: [0, 0],
+ // 21 isn't widely supported and 22 does the same thing
+ bold: [1, 22],
+ dim: [2, 22],
+ italic: [3, 23],
+ underline: [4, 24],
+ inverse: [7, 27],
+ hidden: [8, 28],
+ strikethrough: [9, 29]
+ },
+ color: {
+ black: [30, 39],
+ red: [31, 39],
+ green: [32, 39],
+ yellow: [33, 39],
+ blue: [34, 39],
+ magenta: [35, 39],
+ cyan: [36, 39],
+ white: [37, 39],
+
+ // Bright color
+ blackBright: [90, 39],
+ redBright: [91, 39],
+ greenBright: [92, 39],
+ yellowBright: [93, 39],
+ blueBright: [94, 39],
+ magentaBright: [95, 39],
+ cyanBright: [96, 39],
+ whiteBright: [97, 39]
+ },
+ bgColor: {
+ bgBlack: [40, 49],
+ bgRed: [41, 49],
+ bgGreen: [42, 49],
+ bgYellow: [43, 49],
+ bgBlue: [44, 49],
+ bgMagenta: [45, 49],
+ bgCyan: [46, 49],
+ bgWhite: [47, 49],
+
+ // Bright color
+ bgBlackBright: [100, 49],
+ bgRedBright: [101, 49],
+ bgGreenBright: [102, 49],
+ bgYellowBright: [103, 49],
+ bgBlueBright: [104, 49],
+ bgMagentaBright: [105, 49],
+ bgCyanBright: [106, 49],
+ bgWhiteBright: [107, 49]
+ }
+ };
+
+ // Alias bright black as gray (and grey)
+ styles.color.gray = styles.color.blackBright;
+ styles.bgColor.bgGray = styles.bgColor.bgBlackBright;
+ styles.color.grey = styles.color.blackBright;
+ styles.bgColor.bgGrey = styles.bgColor.bgBlackBright;
+
+ for (const [groupName, group] of Object.entries(styles)) {
+ for (const [styleName, style] of Object.entries(group)) {
+ styles[styleName] = {
+ open: `\u001B[${style[0]}m`,
+ close: `\u001B[${style[1]}m`
+ };
+
+ group[styleName] = styles[styleName];
+
+ codes.set(style[0], style[1]);
+ }
+
+ Object.defineProperty(styles, groupName, {
+ value: group,
+ enumerable: false
+ });
+ }
+
+ Object.defineProperty(styles, 'codes', {
+ value: codes,
+ enumerable: false
+ });
+
+ styles.color.close = '\u001B[39m';
+ styles.bgColor.close = '\u001B[49m';
+
+ setLazyProperty(styles.color, 'ansi', () => makeDynamicStyles(wrapAnsi16, 'ansi16', ansi2ansi, false));
+ setLazyProperty(styles.color, 'ansi256', () => makeDynamicStyles(wrapAnsi256, 'ansi256', ansi2ansi, false));
+ setLazyProperty(styles.color, 'ansi16m', () => makeDynamicStyles(wrapAnsi16m, 'rgb', rgb2rgb, false));
+ setLazyProperty(styles.bgColor, 'ansi', () => makeDynamicStyles(wrapAnsi16, 'ansi16', ansi2ansi, true));
+ setLazyProperty(styles.bgColor, 'ansi256', () => makeDynamicStyles(wrapAnsi256, 'ansi256', ansi2ansi, true));
+ setLazyProperty(styles.bgColor, 'ansi16m', () => makeDynamicStyles(wrapAnsi16m, 'rgb', rgb2rgb, true));
+
+ return styles;
+}
+
+// Make the export immutable
+Object.defineProperty(module, 'exports', {
+ enumerable: true,
+ get: assembleStyles
+});
diff --git a/node_modules/ansi-styles/license b/node_modules/ansi-styles/license
new file mode 100644
index 0000000..e7af2f7
--- /dev/null
+++ b/node_modules/ansi-styles/license
@@ -0,0 +1,9 @@
+MIT License
+
+Copyright (c) Sindre Sorhus (sindresorhus.com)
+
+Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
diff --git a/node_modules/ansi-styles/package.json b/node_modules/ansi-styles/package.json
new file mode 100644
index 0000000..7539328
--- /dev/null
+++ b/node_modules/ansi-styles/package.json
@@ -0,0 +1,56 @@
+{
+ "name": "ansi-styles",
+ "version": "4.3.0",
+ "description": "ANSI escape codes for styling strings in the terminal",
+ "license": "MIT",
+ "repository": "chalk/ansi-styles",
+ "funding": "https://github.com/chalk/ansi-styles?sponsor=1",
+ "author": {
+ "name": "Sindre Sorhus",
+ "email": "sindresorhus@gmail.com",
+ "url": "sindresorhus.com"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "scripts": {
+ "test": "xo && ava && tsd",
+ "screenshot": "svg-term --command='node screenshot' --out=screenshot.svg --padding=3 --width=55 --height=3 --at=1000 --no-cursor"
+ },
+ "files": [
+ "index.js",
+ "index.d.ts"
+ ],
+ "keywords": [
+ "ansi",
+ "styles",
+ "color",
+ "colour",
+ "colors",
+ "terminal",
+ "console",
+ "cli",
+ "string",
+ "tty",
+ "escape",
+ "formatting",
+ "rgb",
+ "256",
+ "shell",
+ "xterm",
+ "log",
+ "logging",
+ "command-line",
+ "text"
+ ],
+ "dependencies": {
+ "color-convert": "^2.0.1"
+ },
+ "devDependencies": {
+ "@types/color-convert": "^1.9.0",
+ "ava": "^2.3.0",
+ "svg-term-cli": "^2.1.1",
+ "tsd": "^0.11.0",
+ "xo": "^0.25.3"
+ }
+}
diff --git a/node_modules/ansi-styles/readme.md b/node_modules/ansi-styles/readme.md
new file mode 100644
index 0000000..24883de
--- /dev/null
+++ b/node_modules/ansi-styles/readme.md
@@ -0,0 +1,152 @@
+# ansi-styles [![Build Status](https://travis-ci.org/chalk/ansi-styles.svg?branch=master)](https://travis-ci.org/chalk/ansi-styles)
+
+> [ANSI escape codes](https://en.wikipedia.org/wiki/ANSI_escape_code#Colors_and_Styles) for styling strings in the terminal
+
+You probably want the higher-level [chalk](https://github.com/chalk/chalk) module for styling your strings.
+
+
+
+## Install
+
+```
+$ npm install ansi-styles
+```
+
+## Usage
+
+```js
+const style = require('ansi-styles');
+
+console.log(`${style.green.open}Hello world!${style.green.close}`);
+
+
+// Color conversion between 16/256/truecolor
+// NOTE: If conversion goes to 16 colors or 256 colors, the original color
+// may be degraded to fit that color palette. This means terminals
+// that do not support 16 million colors will best-match the
+// original color.
+console.log(style.bgColor.ansi.hsl(120, 80, 72) + 'Hello world!' + style.bgColor.close);
+console.log(style.color.ansi256.rgb(199, 20, 250) + 'Hello world!' + style.color.close);
+console.log(style.color.ansi16m.hex('#abcdef') + 'Hello world!' + style.color.close);
+```
+
+## API
+
+Each style has an `open` and `close` property.
+
+## Styles
+
+### Modifiers
+
+- `reset`
+- `bold`
+- `dim`
+- `italic` *(Not widely supported)*
+- `underline`
+- `inverse`
+- `hidden`
+- `strikethrough` *(Not widely supported)*
+
+### Colors
+
+- `black`
+- `red`
+- `green`
+- `yellow`
+- `blue`
+- `magenta`
+- `cyan`
+- `white`
+- `blackBright` (alias: `gray`, `grey`)
+- `redBright`
+- `greenBright`
+- `yellowBright`
+- `blueBright`
+- `magentaBright`
+- `cyanBright`
+- `whiteBright`
+
+### Background colors
+
+- `bgBlack`
+- `bgRed`
+- `bgGreen`
+- `bgYellow`
+- `bgBlue`
+- `bgMagenta`
+- `bgCyan`
+- `bgWhite`
+- `bgBlackBright` (alias: `bgGray`, `bgGrey`)
+- `bgRedBright`
+- `bgGreenBright`
+- `bgYellowBright`
+- `bgBlueBright`
+- `bgMagentaBright`
+- `bgCyanBright`
+- `bgWhiteBright`
+
+## Advanced usage
+
+By default, you get a map of styles, but the styles are also available as groups. They are non-enumerable so they don't show up unless you access them explicitly. This makes it easier to expose only a subset in a higher-level module.
+
+- `style.modifier`
+- `style.color`
+- `style.bgColor`
+
+###### Example
+
+```js
+console.log(style.color.green.open);
+```
+
+Raw escape codes (i.e. without the CSI escape prefix `\u001B[` and render mode postfix `m`) are available under `style.codes`, which returns a `Map` with the open codes as keys and close codes as values.
+
+###### Example
+
+```js
+console.log(style.codes.get(36));
+//=> 39
+```
+
+## [256 / 16 million (TrueColor) support](https://gist.github.com/XVilka/8346728)
+
+`ansi-styles` uses the [`color-convert`](https://github.com/Qix-/color-convert) package to allow for converting between various colors and ANSI escapes, with support for 256 and 16 million colors.
+
+The following color spaces from `color-convert` are supported:
+
+- `rgb`
+- `hex`
+- `keyword`
+- `hsl`
+- `hsv`
+- `hwb`
+- `ansi`
+- `ansi256`
+
+To use these, call the associated conversion function with the intended output, for example:
+
+```js
+style.color.ansi.rgb(100, 200, 15); // RGB to 16 color ansi foreground code
+style.bgColor.ansi.rgb(100, 200, 15); // RGB to 16 color ansi background code
+
+style.color.ansi256.hsl(120, 100, 60); // HSL to 256 color ansi foreground code
+style.bgColor.ansi256.hsl(120, 100, 60); // HSL to 256 color ansi foreground code
+
+style.color.ansi16m.hex('#C0FFEE'); // Hex (RGB) to 16 million color foreground code
+style.bgColor.ansi16m.hex('#C0FFEE'); // Hex (RGB) to 16 million color background code
+```
+
+## Related
+
+- [ansi-escapes](https://github.com/sindresorhus/ansi-escapes) - ANSI escape codes for manipulating the terminal
+
+## Maintainers
+
+- [Sindre Sorhus](https://github.com/sindresorhus)
+- [Josh Junon](https://github.com/qix-)
+
+## For enterprise
+
+Available as part of the Tidelift Subscription.
+
+The maintainers of `ansi-styles` and thousands of other packages are working with Tidelift to deliver commercial support and maintenance for the open source dependencies you use to build your applications. Save time, reduce risk, and improve code health, while paying the maintainers of the exact dependencies you use. [Learn more.](https://tidelift.com/subscription/pkg/npm-ansi-styles?utm_source=npm-ansi-styles&utm_medium=referral&utm_campaign=enterprise&utm_term=repo)
diff --git a/node_modules/anymatch/LICENSE b/node_modules/anymatch/LICENSE
new file mode 100644
index 0000000..491766c
--- /dev/null
+++ b/node_modules/anymatch/LICENSE
@@ -0,0 +1,15 @@
+The ISC License
+
+Copyright (c) 2019 Elan Shanker, Paul Miller (https://paulmillr.com)
+
+Permission to use, copy, modify, and/or distribute this software for any
+purpose with or without fee is hereby granted, provided that the above
+copyright notice and this permission notice appear in all copies.
+
+THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
+ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
+IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
diff --git a/node_modules/anymatch/README.md b/node_modules/anymatch/README.md
new file mode 100644
index 0000000..1dd67f5
--- /dev/null
+++ b/node_modules/anymatch/README.md
@@ -0,0 +1,87 @@
+anymatch [![Build Status](https://travis-ci.org/micromatch/anymatch.svg?branch=master)](https://travis-ci.org/micromatch/anymatch) [![Coverage Status](https://img.shields.io/coveralls/micromatch/anymatch.svg?branch=master)](https://coveralls.io/r/micromatch/anymatch?branch=master)
+======
+Javascript module to match a string against a regular expression, glob, string,
+or function that takes the string as an argument and returns a truthy or falsy
+value. The matcher can also be an array of any or all of these. Useful for
+allowing a very flexible user-defined config to define things like file paths.
+
+__Note: This module has Bash-parity, please be aware that Windows-style backslashes are not supported as separators. See https://github.com/micromatch/micromatch#backslashes for more information.__
+
+
+Usage
+-----
+```sh
+npm install anymatch
+```
+
+#### anymatch(matchers, testString, [returnIndex], [options])
+* __matchers__: (_Array|String|RegExp|Function_)
+String to be directly matched, string with glob patterns, regular expression
+test, function that takes the testString as an argument and returns a truthy
+value if it should be matched, or an array of any number and mix of these types.
+* __testString__: (_String|Array_) The string to test against the matchers. If
+passed as an array, the first element of the array will be used as the
+`testString` for non-function matchers, while the entire array will be applied
+as the arguments for function matchers.
+* __options__: (_Object_ [optional]_) Any of the [picomatch](https://github.com/micromatch/picomatch#options) options.
+ * __returnIndex__: (_Boolean [optional]_) If true, return the array index of
+the first matcher that that testString matched, or -1 if no match, instead of a
+boolean result.
+
+```js
+const anymatch = require('anymatch');
+
+const matchers = [ 'path/to/file.js', 'path/anyjs/**/*.js', /foo.js$/, string => string.includes('bar') && string.length > 10 ] ;
+
+anymatch(matchers, 'path/to/file.js'); // true
+anymatch(matchers, 'path/anyjs/baz.js'); // true
+anymatch(matchers, 'path/to/foo.js'); // true
+anymatch(matchers, 'path/to/bar.js'); // true
+anymatch(matchers, 'bar.js'); // false
+
+// returnIndex = true
+anymatch(matchers, 'foo.js', {returnIndex: true}); // 2
+anymatch(matchers, 'path/anyjs/foo.js', {returnIndex: true}); // 1
+
+// any picomatc
+
+// using globs to match directories and their children
+anymatch('node_modules', 'node_modules'); // true
+anymatch('node_modules', 'node_modules/somelib/index.js'); // false
+anymatch('node_modules/**', 'node_modules/somelib/index.js'); // true
+anymatch('node_modules/**', '/absolute/path/to/node_modules/somelib/index.js'); // false
+anymatch('**/node_modules/**', '/absolute/path/to/node_modules/somelib/index.js'); // true
+
+const matcher = anymatch(matchers);
+['foo.js', 'bar.js'].filter(matcher); // [ 'foo.js' ]
+anymatch master* ❯
+
+```
+
+#### anymatch(matchers)
+You can also pass in only your matcher(s) to get a curried function that has
+already been bound to the provided matching criteria. This can be used as an
+`Array#filter` callback.
+
+```js
+var matcher = anymatch(matchers);
+
+matcher('path/to/file.js'); // true
+matcher('path/anyjs/baz.js', true); // 1
+
+['foo.js', 'bar.js'].filter(matcher); // ['foo.js']
+```
+
+Changelog
+----------
+[See release notes page on GitHub](https://github.com/micromatch/anymatch/releases)
+
+- **v3.0:** Removed `startIndex` and `endIndex` arguments. Node 8.x-only.
+- **v2.0:** [micromatch](https://github.com/jonschlinkert/micromatch) moves away from minimatch-parity and inline with Bash. This includes handling backslashes differently (see https://github.com/micromatch/micromatch#backslashes for more information).
+- **v1.2:** anymatch uses [micromatch](https://github.com/jonschlinkert/micromatch)
+for glob pattern matching. Issues with glob pattern matching should be
+reported directly to the [micromatch issue tracker](https://github.com/jonschlinkert/micromatch/issues).
+
+License
+-------
+[ISC](https://raw.github.com/micromatch/anymatch/master/LICENSE)
diff --git a/node_modules/anymatch/index.d.ts b/node_modules/anymatch/index.d.ts
new file mode 100644
index 0000000..3ef7eaa
--- /dev/null
+++ b/node_modules/anymatch/index.d.ts
@@ -0,0 +1,20 @@
+type AnymatchFn = (testString: string) => boolean;
+type AnymatchPattern = string|RegExp|AnymatchFn;
+type AnymatchMatcher = AnymatchPattern|AnymatchPattern[]
+type AnymatchTester = {
+ (testString: string|any[], returnIndex: true): number;
+ (testString: string|any[]): boolean;
+}
+
+type PicomatchOptions = {dot: boolean};
+
+declare const anymatch: {
+ (matchers: AnymatchMatcher): AnymatchTester;
+ (matchers: AnymatchMatcher, testString: null, returnIndex: true | PicomatchOptions): AnymatchTester;
+ (matchers: AnymatchMatcher, testString: string|any[], returnIndex: true | PicomatchOptions): number;
+ (matchers: AnymatchMatcher, testString: string|any[]): boolean;
+}
+
+export {AnymatchMatcher as Matcher}
+export {AnymatchTester as Tester}
+export default anymatch
diff --git a/node_modules/anymatch/index.js b/node_modules/anymatch/index.js
new file mode 100644
index 0000000..8eb73e9
--- /dev/null
+++ b/node_modules/anymatch/index.js
@@ -0,0 +1,104 @@
+'use strict';
+
+Object.defineProperty(exports, "__esModule", { value: true });
+
+const picomatch = require('picomatch');
+const normalizePath = require('normalize-path');
+
+/**
+ * @typedef {(testString: string) => boolean} AnymatchFn
+ * @typedef {string|RegExp|AnymatchFn} AnymatchPattern
+ * @typedef {AnymatchPattern|AnymatchPattern[]} AnymatchMatcher
+ */
+const BANG = '!';
+const DEFAULT_OPTIONS = {returnIndex: false};
+const arrify = (item) => Array.isArray(item) ? item : [item];
+
+/**
+ * @param {AnymatchPattern} matcher
+ * @param {object} options
+ * @returns {AnymatchFn}
+ */
+const createPattern = (matcher, options) => {
+ if (typeof matcher === 'function') {
+ return matcher;
+ }
+ if (typeof matcher === 'string') {
+ const glob = picomatch(matcher, options);
+ return (string) => matcher === string || glob(string);
+ }
+ if (matcher instanceof RegExp) {
+ return (string) => matcher.test(string);
+ }
+ return (string) => false;
+};
+
+/**
+ * @param {Array} patterns
+ * @param {Array} negPatterns
+ * @param {String|Array} args
+ * @param {Boolean} returnIndex
+ * @returns {boolean|number}
+ */
+const matchPatterns = (patterns, negPatterns, args, returnIndex) => {
+ const isList = Array.isArray(args);
+ const _path = isList ? args[0] : args;
+ if (!isList && typeof _path !== 'string') {
+ throw new TypeError('anymatch: second argument must be a string: got ' +
+ Object.prototype.toString.call(_path))
+ }
+ const path = normalizePath(_path, false);
+
+ for (let index = 0; index < negPatterns.length; index++) {
+ const nglob = negPatterns[index];
+ if (nglob(path)) {
+ return returnIndex ? -1 : false;
+ }
+ }
+
+ const applied = isList && [path].concat(args.slice(1));
+ for (let index = 0; index < patterns.length; index++) {
+ const pattern = patterns[index];
+ if (isList ? pattern(...applied) : pattern(path)) {
+ return returnIndex ? index : true;
+ }
+ }
+
+ return returnIndex ? -1 : false;
+};
+
+/**
+ * @param {AnymatchMatcher} matchers
+ * @param {Array|string} testString
+ * @param {object} options
+ * @returns {boolean|number|Function}
+ */
+const anymatch = (matchers, testString, options = DEFAULT_OPTIONS) => {
+ if (matchers == null) {
+ throw new TypeError('anymatch: specify first argument');
+ }
+ const opts = typeof options === 'boolean' ? {returnIndex: options} : options;
+ const returnIndex = opts.returnIndex || false;
+
+ // Early cache for matchers.
+ const mtchers = arrify(matchers);
+ const negatedGlobs = mtchers
+ .filter(item => typeof item === 'string' && item.charAt(0) === BANG)
+ .map(item => item.slice(1))
+ .map(item => picomatch(item, opts));
+ const patterns = mtchers
+ .filter(item => typeof item !== 'string' || (typeof item === 'string' && item.charAt(0) !== BANG))
+ .map(matcher => createPattern(matcher, opts));
+
+ if (testString == null) {
+ return (testString, ri = false) => {
+ const returnIndex = typeof ri === 'boolean' ? ri : false;
+ return matchPatterns(patterns, negatedGlobs, testString, returnIndex);
+ }
+ }
+
+ return matchPatterns(patterns, negatedGlobs, testString, returnIndex);
+};
+
+anymatch.default = anymatch;
+module.exports = anymatch;
diff --git a/node_modules/anymatch/package.json b/node_modules/anymatch/package.json
new file mode 100644
index 0000000..2cb2307
--- /dev/null
+++ b/node_modules/anymatch/package.json
@@ -0,0 +1,48 @@
+{
+ "name": "anymatch",
+ "version": "3.1.3",
+ "description": "Matches strings against configurable strings, globs, regular expressions, and/or functions",
+ "files": [
+ "index.js",
+ "index.d.ts"
+ ],
+ "dependencies": {
+ "normalize-path": "^3.0.0",
+ "picomatch": "^2.0.4"
+ },
+ "author": {
+ "name": "Elan Shanker",
+ "url": "https://github.com/es128"
+ },
+ "license": "ISC",
+ "homepage": "https://github.com/micromatch/anymatch",
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/micromatch/anymatch"
+ },
+ "keywords": [
+ "match",
+ "any",
+ "string",
+ "file",
+ "fs",
+ "list",
+ "glob",
+ "regex",
+ "regexp",
+ "regular",
+ "expression",
+ "function"
+ ],
+ "scripts": {
+ "test": "nyc mocha",
+ "mocha": "mocha"
+ },
+ "devDependencies": {
+ "mocha": "^6.1.3",
+ "nyc": "^14.0.0"
+ },
+ "engines": {
+ "node": ">= 8"
+ }
+}
diff --git a/node_modules/array-union/index.d.ts b/node_modules/array-union/index.d.ts
new file mode 100644
index 0000000..379fc1d
--- /dev/null
+++ b/node_modules/array-union/index.d.ts
@@ -0,0 +1,25 @@
+/**
+Create an array of unique values, in order, from the input arrays.
+
+@example
+```
+import arrayUnion = require('array-union');
+
+arrayUnion([1, 1, 2, 3], [2, 3]);
+//=> [1, 2, 3]
+
+arrayUnion(['foo', 'foo', 'bar']);
+//=> ['foo', 'bar']
+
+arrayUnion(['🐱', '🦄', '🐻'], ['🦄', '🌈']);
+//=> ['🐱', '🦄', '🐻', '🌈']
+
+arrayUnion(['🐱', '🦄'], ['🐻', '🦄'], ['🐶', '🌈', '🌈']);
+//=> ['🐱', '🦄', '🐻', '🐶', '🌈']
+```
+*/
+declare function arrayUnion(
+ ...arguments: readonly ArgumentsType[]
+): ArgumentsType;
+
+export = arrayUnion;
diff --git a/node_modules/array-union/index.js b/node_modules/array-union/index.js
new file mode 100644
index 0000000..a5a3df8
--- /dev/null
+++ b/node_modules/array-union/index.js
@@ -0,0 +1,3 @@
+const arrayUnion = (...arguments_) => [...new Set(arguments_.flat())];
+
+export default arrayUnion;
diff --git a/node_modules/array-union/license b/node_modules/array-union/license
new file mode 100644
index 0000000..fa7ceba
--- /dev/null
+++ b/node_modules/array-union/license
@@ -0,0 +1,9 @@
+MIT License
+
+Copyright (c) Sindre Sorhus (https://sindresorhus.com)
+
+Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
diff --git a/node_modules/array-union/package.json b/node_modules/array-union/package.json
new file mode 100644
index 0000000..e7f7468
--- /dev/null
+++ b/node_modules/array-union/package.json
@@ -0,0 +1,46 @@
+{
+ "name": "array-union",
+ "version": "3.0.1",
+ "description": "Create an array of unique values, in order, from the input arrays",
+ "license": "MIT",
+ "repository": "sindresorhus/array-union",
+ "funding": "https://github.com/sponsors/sindresorhus",
+ "author": {
+ "name": "Sindre Sorhus",
+ "email": "sindresorhus@gmail.com",
+ "url": "https://sindresorhus.com"
+ },
+ "type": "module",
+ "exports": "./index.js",
+ "engines": {
+ "node": ">=12"
+ },
+ "scripts": {
+ "test": "xo && ava && tsd"
+ },
+ "files": [
+ "index.js",
+ "index.d.ts"
+ ],
+ "keywords": [
+ "array",
+ "set",
+ "uniq",
+ "unique",
+ "duplicate",
+ "remove",
+ "union",
+ "combine",
+ "merge"
+ ],
+ "devDependencies": {
+ "ava": "^3.15.0",
+ "tsd": "^0.14.0",
+ "xo": "^0.38.2"
+ },
+ "tsd": {
+ "compilerOptions": {
+ "esModuleInterop": true
+ }
+ }
+}
diff --git a/node_modules/array-union/readme.md b/node_modules/array-union/readme.md
new file mode 100644
index 0000000..b0b67fb
--- /dev/null
+++ b/node_modules/array-union/readme.md
@@ -0,0 +1,39 @@
+# array-union
+
+> Create an array of unique values, in order, from the input arrays
+
+## Install
+
+```
+$ npm install array-union
+```
+
+## Usage
+
+```js
+import arrayUnion from 'array-union';
+
+arrayUnion([1, 1, 2, 3], [2, 3]);
+//=> [1, 2, 3]
+
+arrayUnion(['foo', 'foo', 'bar']);
+//=> ['foo', 'bar']
+
+arrayUnion(['🐱', '🦄', '🐻'], ['🦄', '🌈']);
+//=> ['🐱', '🦄', '🐻', '🌈']
+
+arrayUnion(['🐱', '🦄'], ['🐻', '🦄'], ['🐶', '🌈', '🌈']);
+//=> ['🐱', '🦄', '🐻', '🐶', '🌈']
+```
+
+---
+
+
diff --git a/node_modules/autoprefixer/LICENSE b/node_modules/autoprefixer/LICENSE
new file mode 100644
index 0000000..da057b4
--- /dev/null
+++ b/node_modules/autoprefixer/LICENSE
@@ -0,0 +1,20 @@
+The MIT License (MIT)
+
+Copyright 2013 Andrey Sitnik
+
+Permission is hereby granted, free of charge, to any person obtaining a copy of
+this software and associated documentation files (the "Software"), to deal in
+the Software without restriction, including without limitation the rights to
+use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
+the Software, and to permit persons to whom the Software is furnished to do so,
+subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
+FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
+COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
+IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
+CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
diff --git a/node_modules/autoprefixer/README.md b/node_modules/autoprefixer/README.md
new file mode 100644
index 0000000..13b2ddb
--- /dev/null
+++ b/node_modules/autoprefixer/README.md
@@ -0,0 +1,66 @@
+# Autoprefixer [![Cult Of Martians][cult-img]][cult]
+
+
+
+[PostCSS] plugin to parse CSS and add vendor prefixes to CSS rules using values
+from [Can I Use]. It is recommended by Google and used in Twitter and Alibaba.
+
+Write your CSS rules without vendor prefixes (in fact, forget about them
+entirely):
+
+```css
+::placeholder {
+ color: gray;
+}
+
+.image {
+ background-image: url(image@1x.png);
+}
+@media (min-resolution: 2dppx) {
+ .image {
+ background-image: url(image@2x.png);
+ }
+}
+```
+
+Autoprefixer will use the data based on current browser popularity and property
+support to apply prefixes for you. You can try the [interactive demo]
+of Autoprefixer.
+
+```css
+::-moz-placeholder {
+ color: gray;
+}
+::placeholder {
+ color: gray;
+}
+
+.image {
+ background-image: url(image@1x.png);
+}
+@media (-webkit-min-device-pixel-ratio: 2),
+ (min-resolution: 2dppx) {
+ .image {
+ background-image: url(image@2x.png);
+ }
+}
+```
+
+Twitter account for news and releases: [@autoprefixer].
+
+
+
+
+
+[interactive demo]: https://autoprefixer.github.io/
+[@autoprefixer]: https://twitter.com/autoprefixer
+[Can I Use]: https://caniuse.com/
+[cult-img]: http://cultofmartians.com/assets/badges/badge.svg
+[PostCSS]: https://github.com/postcss/postcss
+[cult]: http://cultofmartians.com/tasks/autoprefixer-grid.html
+
+
+## Docs
+Read full docs **[here](https://github.com/postcss/autoprefixer#readme)**.
diff --git a/node_modules/autoprefixer/bin/autoprefixer b/node_modules/autoprefixer/bin/autoprefixer
new file mode 100755
index 0000000..785830e
--- /dev/null
+++ b/node_modules/autoprefixer/bin/autoprefixer
@@ -0,0 +1,22 @@
+#!/usr/bin/env node
+
+let mode = process.argv[2]
+if (mode === '--info') {
+ process.stdout.write(require('../')().info() + '\n')
+} else if (mode === '--version') {
+ process.stdout.write(
+ 'autoprefixer ' + require('../package.json').version + '\n'
+ )
+} else {
+ process.stdout.write(
+ 'autoprefix\n' +
+ '\n' +
+ 'Options:\n' +
+ ' --info Show target browsers and used prefixes\n' +
+ ' --version Show version number\n' +
+ ' --help Show help\n' +
+ '\n' +
+ 'Usage:\n' +
+ ' autoprefixer --info\n'
+ )
+}
diff --git a/node_modules/autoprefixer/data/prefixes.js b/node_modules/autoprefixer/data/prefixes.js
new file mode 100644
index 0000000..d9872fb
--- /dev/null
+++ b/node_modules/autoprefixer/data/prefixes.js
@@ -0,0 +1,1124 @@
+let unpack = require('caniuse-lite/dist/unpacker/feature')
+
+function browsersSort(a, b) {
+ a = a.split(' ')
+ b = b.split(' ')
+ if (a[0] > b[0]) {
+ return 1
+ } else if (a[0] < b[0]) {
+ return -1
+ } else {
+ return Math.sign(parseFloat(a[1]) - parseFloat(b[1]))
+ }
+}
+
+// Convert Can I Use data
+function f(data, opts, callback) {
+ data = unpack(data)
+
+ if (!callback) {
+ ;[callback, opts] = [opts, {}]
+ }
+
+ let match = opts.match || /\sx($|\s)/
+ let need = []
+
+ for (let browser in data.stats) {
+ let versions = data.stats[browser]
+ for (let version in versions) {
+ let support = versions[version]
+ if (support.match(match)) {
+ need.push(browser + ' ' + version)
+ }
+ }
+ }
+
+ callback(need.sort(browsersSort))
+}
+
+// Add data for all properties
+let result = {}
+
+function prefix(names, data) {
+ for (let name of names) {
+ result[name] = Object.assign({}, data)
+ }
+}
+
+function add(names, data) {
+ for (let name of names) {
+ result[name].browsers = result[name].browsers
+ .concat(data.browsers)
+ .sort(browsersSort)
+ }
+}
+
+module.exports = result
+
+// Border Radius
+let prefixBorderRadius = require('caniuse-lite/data/features/border-radius')
+
+f(prefixBorderRadius, browsers =>
+ prefix(
+ [
+ 'border-radius',
+ 'border-top-left-radius',
+ 'border-top-right-radius',
+ 'border-bottom-right-radius',
+ 'border-bottom-left-radius'
+ ],
+ {
+ mistakes: ['-khtml-', '-ms-', '-o-'],
+ feature: 'border-radius',
+ browsers
+ }
+ )
+)
+
+// Box Shadow
+let prefixBoxshadow = require('caniuse-lite/data/features/css-boxshadow')
+
+f(prefixBoxshadow, browsers =>
+ prefix(['box-shadow'], {
+ mistakes: ['-khtml-'],
+ feature: 'css-boxshadow',
+ browsers
+ })
+)
+
+// Animation
+let prefixAnimation = require('caniuse-lite/data/features/css-animation')
+
+f(prefixAnimation, browsers =>
+ prefix(
+ [
+ 'animation',
+ 'animation-name',
+ 'animation-duration',
+ 'animation-delay',
+ 'animation-direction',
+ 'animation-fill-mode',
+ 'animation-iteration-count',
+ 'animation-play-state',
+ 'animation-timing-function',
+ '@keyframes'
+ ],
+ {
+ mistakes: ['-khtml-', '-ms-'],
+ feature: 'css-animation',
+ browsers
+ }
+ )
+)
+
+// Transition
+let prefixTransition = require('caniuse-lite/data/features/css-transitions')
+
+f(prefixTransition, browsers =>
+ prefix(
+ [
+ 'transition',
+ 'transition-property',
+ 'transition-duration',
+ 'transition-delay',
+ 'transition-timing-function'
+ ],
+ {
+ mistakes: ['-khtml-', '-ms-'],
+ browsers,
+ feature: 'css-transitions'
+ }
+ )
+)
+
+// Transform 2D
+let prefixTransform2d = require('caniuse-lite/data/features/transforms2d')
+
+f(prefixTransform2d, browsers =>
+ prefix(['transform', 'transform-origin'], {
+ feature: 'transforms2d',
+ browsers
+ })
+)
+
+// Transform 3D
+let prefixTransforms3d = require('caniuse-lite/data/features/transforms3d')
+
+f(prefixTransforms3d, browsers => {
+ prefix(['perspective', 'perspective-origin'], {
+ feature: 'transforms3d',
+ browsers
+ })
+ return prefix(['transform-style'], {
+ mistakes: ['-ms-', '-o-'],
+ browsers,
+ feature: 'transforms3d'
+ })
+})
+
+f(prefixTransforms3d, { match: /y\sx|y\s#2/ }, browsers =>
+ prefix(['backface-visibility'], {
+ mistakes: ['-ms-', '-o-'],
+ feature: 'transforms3d',
+ browsers
+ })
+)
+
+// Gradients
+let prefixGradients = require('caniuse-lite/data/features/css-gradients')
+
+f(prefixGradients, { match: /y\sx/ }, browsers =>
+ prefix(
+ [
+ 'linear-gradient',
+ 'repeating-linear-gradient',
+ 'radial-gradient',
+ 'repeating-radial-gradient'
+ ],
+ {
+ props: [
+ 'background',
+ 'background-image',
+ 'border-image',
+ 'mask',
+ 'list-style',
+ 'list-style-image',
+ 'content',
+ 'mask-image'
+ ],
+ mistakes: ['-ms-'],
+ feature: 'css-gradients',
+ browsers
+ }
+ )
+)
+
+f(prefixGradients, { match: /a\sx/ }, browsers => {
+ browsers = browsers.map(i => {
+ if (/firefox|op/.test(i)) {
+ return i
+ } else {
+ return `${i} old`
+ }
+ })
+ return add(
+ [
+ 'linear-gradient',
+ 'repeating-linear-gradient',
+ 'radial-gradient',
+ 'repeating-radial-gradient'
+ ],
+ {
+ feature: 'css-gradients',
+ browsers
+ }
+ )
+})
+
+// Box sizing
+let prefixBoxsizing = require('caniuse-lite/data/features/css3-boxsizing')
+
+f(prefixBoxsizing, browsers =>
+ prefix(['box-sizing'], {
+ feature: 'css3-boxsizing',
+ browsers
+ })
+)
+
+// Filter Effects
+let prefixFilters = require('caniuse-lite/data/features/css-filters')
+
+f(prefixFilters, browsers =>
+ prefix(['filter'], {
+ feature: 'css-filters',
+ browsers
+ })
+)
+
+// filter() function
+let prefixFilterFunction = require('caniuse-lite/data/features/css-filter-function')
+
+f(prefixFilterFunction, browsers =>
+ prefix(['filter-function'], {
+ props: [
+ 'background',
+ 'background-image',
+ 'border-image',
+ 'mask',
+ 'list-style',
+ 'list-style-image',
+ 'content',
+ 'mask-image'
+ ],
+ feature: 'css-filter-function',
+ browsers
+ })
+)
+
+// Backdrop-filter
+let prefixBackdrop = require('caniuse-lite/data/features/css-backdrop-filter')
+
+f(prefixBackdrop, { match: /y\sx|y\s#2/ }, browsers =>
+ prefix(['backdrop-filter'], {
+ feature: 'css-backdrop-filter',
+ browsers
+ })
+)
+
+// element() function
+let prefixElementFunction = require('caniuse-lite/data/features/css-element-function')
+
+f(prefixElementFunction, browsers =>
+ prefix(['element'], {
+ props: [
+ 'background',
+ 'background-image',
+ 'border-image',
+ 'mask',
+ 'list-style',
+ 'list-style-image',
+ 'content',
+ 'mask-image'
+ ],
+ feature: 'css-element-function',
+ browsers
+ })
+)
+
+// Multicolumns
+let prefixMulticolumns = require('caniuse-lite/data/features/multicolumn')
+
+f(prefixMulticolumns, browsers => {
+ prefix(
+ [
+ 'columns',
+ 'column-width',
+ 'column-gap',
+ 'column-rule',
+ 'column-rule-color',
+ 'column-rule-width',
+ 'column-count',
+ 'column-rule-style',
+ 'column-span',
+ 'column-fill'
+ ],
+ {
+ feature: 'multicolumn',
+ browsers
+ }
+ )
+
+ let noff = browsers.filter(i => !/firefox/.test(i))
+ prefix(['break-before', 'break-after', 'break-inside'], {
+ feature: 'multicolumn',
+ browsers: noff
+ })
+})
+
+// User select
+let prefixUserSelect = require('caniuse-lite/data/features/user-select-none')
+
+f(prefixUserSelect, browsers =>
+ prefix(['user-select'], {
+ mistakes: ['-khtml-'],
+ feature: 'user-select-none',
+ browsers
+ })
+)
+
+// Flexible Box Layout
+let prefixFlexbox = require('caniuse-lite/data/features/flexbox')
+
+f(prefixFlexbox, { match: /a\sx/ }, browsers => {
+ browsers = browsers.map(i => {
+ if (/ie|firefox/.test(i)) {
+ return i
+ } else {
+ return `${i} 2009`
+ }
+ })
+ prefix(['display-flex', 'inline-flex'], {
+ props: ['display'],
+ feature: 'flexbox',
+ browsers
+ })
+ prefix(['flex', 'flex-grow', 'flex-shrink', 'flex-basis'], {
+ feature: 'flexbox',
+ browsers
+ })
+ prefix(
+ [
+ 'flex-direction',
+ 'flex-wrap',
+ 'flex-flow',
+ 'justify-content',
+ 'order',
+ 'align-items',
+ 'align-self',
+ 'align-content'
+ ],
+ {
+ feature: 'flexbox',
+ browsers
+ }
+ )
+})
+
+f(prefixFlexbox, { match: /y\sx/ }, browsers => {
+ add(['display-flex', 'inline-flex'], {
+ feature: 'flexbox',
+ browsers
+ })
+ add(['flex', 'flex-grow', 'flex-shrink', 'flex-basis'], {
+ feature: 'flexbox',
+ browsers
+ })
+ add(
+ [
+ 'flex-direction',
+ 'flex-wrap',
+ 'flex-flow',
+ 'justify-content',
+ 'order',
+ 'align-items',
+ 'align-self',
+ 'align-content'
+ ],
+ {
+ feature: 'flexbox',
+ browsers
+ }
+ )
+})
+
+// calc() unit
+let prefixCalc = require('caniuse-lite/data/features/calc')
+
+f(prefixCalc, browsers =>
+ prefix(['calc'], {
+ props: ['*'],
+ feature: 'calc',
+ browsers
+ })
+)
+
+// Background options
+let prefixBackgroundOptions = require('caniuse-lite/data/features/background-img-opts')
+
+f(prefixBackgroundOptions, browsers =>
+ prefix(['background-origin', 'background-size'], {
+ feature: 'background-img-opts',
+ browsers
+ })
+)
+
+// background-clip: text
+let prefixBackgroundClipText = require('caniuse-lite/data/features/background-clip-text')
+
+f(prefixBackgroundClipText, browsers =>
+ prefix(['background-clip'], {
+ feature: 'background-clip-text',
+ browsers
+ })
+)
+
+// Font feature settings
+let prefixFontFeature = require('caniuse-lite/data/features/font-feature')
+
+f(prefixFontFeature, browsers =>
+ prefix(
+ [
+ 'font-feature-settings',
+ 'font-variant-ligatures',
+ 'font-language-override'
+ ],
+ {
+ feature: 'font-feature',
+ browsers
+ }
+ )
+)
+
+// CSS font-kerning property
+let prefixFontKerning = require('caniuse-lite/data/features/font-kerning')
+
+f(prefixFontKerning, browsers =>
+ prefix(['font-kerning'], {
+ feature: 'font-kerning',
+ browsers
+ })
+)
+
+// Border image
+let prefixBorderImage = require('caniuse-lite/data/features/border-image')
+
+f(prefixBorderImage, browsers =>
+ prefix(['border-image'], {
+ feature: 'border-image',
+ browsers
+ })
+)
+
+// Selection selector
+let prefixSelection = require('caniuse-lite/data/features/css-selection')
+
+f(prefixSelection, browsers =>
+ prefix(['::selection'], {
+ selector: true,
+ feature: 'css-selection',
+ browsers
+ })
+)
+
+// Placeholder selector
+let prefixPlaceholder = require('caniuse-lite/data/features/css-placeholder')
+
+f(prefixPlaceholder, browsers => {
+ prefix(['::placeholder'], {
+ selector: true,
+ feature: 'css-placeholder',
+ browsers: browsers.concat(['ie 10 old', 'ie 11 old', 'firefox 18 old'])
+ })
+})
+
+// Placeholder-shown selector
+let prefixPlaceholderShown = require('caniuse-lite/data/features/css-placeholder-shown')
+
+f(prefixPlaceholderShown, browsers => {
+ prefix([':placeholder-shown'], {
+ selector: true,
+ feature: 'css-placeholder-shown',
+ browsers
+ })
+})
+
+// Hyphenation
+let prefixHyphens = require('caniuse-lite/data/features/css-hyphens')
+
+f(prefixHyphens, browsers =>
+ prefix(['hyphens'], {
+ feature: 'css-hyphens',
+ browsers
+ })
+)
+
+// Fullscreen selector
+let prefixFullscreen = require('caniuse-lite/data/features/fullscreen')
+
+f(prefixFullscreen, browsers =>
+ prefix([':fullscreen'], {
+ selector: true,
+ feature: 'fullscreen',
+ browsers
+ })
+)
+
+f(prefixFullscreen, { match: /x(\s#2|$)/ }, browsers =>
+ prefix(['::backdrop'], {
+ selector: true,
+ feature: 'fullscreen',
+ browsers
+ })
+)
+
+// File selector button
+let prefixFileSelectorButton = require('caniuse-lite/data/features/css-file-selector-button')
+
+f(prefixFileSelectorButton, browsers =>
+ prefix(['::file-selector-button'], {
+ selector: true,
+ feature: 'file-selector-button',
+ browsers
+ })
+)
+
+// :autofill
+let prefixAutofill = require('caniuse-lite/data/features/css-autofill')
+
+f(prefixAutofill, browsers =>
+ prefix([':autofill'], {
+ selector: true,
+ feature: 'css-autofill',
+ browsers
+ })
+)
+
+// Tab size
+let prefixTabsize = require('caniuse-lite/data/features/css3-tabsize')
+
+f(prefixTabsize, browsers =>
+ prefix(['tab-size'], {
+ feature: 'css3-tabsize',
+ browsers
+ })
+)
+
+// Intrinsic & extrinsic sizing
+let prefixIntrinsic = require('caniuse-lite/data/features/intrinsic-width')
+
+let sizeProps = [
+ 'width',
+ 'min-width',
+ 'max-width',
+ 'height',
+ 'min-height',
+ 'max-height',
+ 'inline-size',
+ 'min-inline-size',
+ 'max-inline-size',
+ 'block-size',
+ 'min-block-size',
+ 'max-block-size',
+ 'grid',
+ 'grid-template',
+ 'grid-template-rows',
+ 'grid-template-columns',
+ 'grid-auto-columns',
+ 'grid-auto-rows'
+]
+
+f(prefixIntrinsic, browsers =>
+ prefix(['max-content', 'min-content'], {
+ props: sizeProps,
+ feature: 'intrinsic-width',
+ browsers
+ })
+)
+
+f(prefixIntrinsic, { match: /x|\s#4/ }, browsers =>
+ prefix(['fill', 'fill-available'], {
+ props: sizeProps,
+ feature: 'intrinsic-width',
+ browsers
+ })
+)
+
+f(prefixIntrinsic, { match: /x|\s#5/ }, browsers =>
+ prefix(['fit-content'], {
+ props: sizeProps,
+ feature: 'intrinsic-width',
+ browsers
+ })
+)
+
+// Stretch value
+
+let prefixStretch = require('caniuse-lite/data/features/css-width-stretch')
+
+f(prefixStretch, browsers =>
+ prefix(['stretch'], {
+ props: sizeProps,
+ feature: 'css-width-stretch',
+ browsers
+ })
+)
+
+// Zoom cursors
+let prefixCursorsNewer = require('caniuse-lite/data/features/css3-cursors-newer')
+
+f(prefixCursorsNewer, browsers =>
+ prefix(['zoom-in', 'zoom-out'], {
+ props: ['cursor'],
+ feature: 'css3-cursors-newer',
+ browsers
+ })
+)
+
+// Grab cursors
+let prefixCursorsGrab = require('caniuse-lite/data/features/css3-cursors-grab')
+
+f(prefixCursorsGrab, browsers =>
+ prefix(['grab', 'grabbing'], {
+ props: ['cursor'],
+ feature: 'css3-cursors-grab',
+ browsers
+ })
+)
+
+// Sticky position
+let prefixSticky = require('caniuse-lite/data/features/css-sticky')
+
+f(prefixSticky, browsers =>
+ prefix(['sticky'], {
+ props: ['position'],
+ feature: 'css-sticky',
+ browsers
+ })
+)
+
+// Pointer Events
+let prefixPointer = require('caniuse-lite/data/features/pointer')
+
+f(prefixPointer, browsers =>
+ prefix(['touch-action'], {
+ feature: 'pointer',
+ browsers
+ })
+)
+
+// Text decoration
+let prefixDecoration = require('caniuse-lite/data/features/text-decoration')
+
+f(prefixDecoration, { match: /x.*#[235]/ }, browsers =>
+ prefix(['text-decoration-skip', 'text-decoration-skip-ink'], {
+ feature: 'text-decoration',
+ browsers
+ })
+)
+
+let prefixDecorationShorthand = require('caniuse-lite/data/features/mdn-text-decoration-shorthand')
+
+f(prefixDecorationShorthand, browsers =>
+ prefix(['text-decoration'], {
+ feature: 'text-decoration',
+ browsers
+ })
+)
+
+let prefixDecorationColor = require('caniuse-lite/data/features/mdn-text-decoration-color')
+
+f(prefixDecorationColor, browsers =>
+ prefix(['text-decoration-color'], {
+ feature: 'text-decoration',
+ browsers
+ })
+)
+
+let prefixDecorationLine = require('caniuse-lite/data/features/mdn-text-decoration-line')
+
+f(prefixDecorationLine, browsers =>
+ prefix(['text-decoration-line'], {
+ feature: 'text-decoration',
+ browsers
+ })
+)
+
+let prefixDecorationStyle = require('caniuse-lite/data/features/mdn-text-decoration-style')
+
+f(prefixDecorationStyle, browsers =>
+ prefix(['text-decoration-style'], {
+ feature: 'text-decoration',
+ browsers
+ })
+)
+
+// Text Size Adjust
+let prefixTextSizeAdjust = require('caniuse-lite/data/features/text-size-adjust')
+
+f(prefixTextSizeAdjust, browsers =>
+ prefix(['text-size-adjust'], {
+ feature: 'text-size-adjust',
+ browsers
+ })
+)
+
+// CSS Masks
+let prefixCssMasks = require('caniuse-lite/data/features/css-masks')
+
+f(prefixCssMasks, browsers => {
+ prefix(
+ [
+ 'mask-clip',
+ 'mask-composite',
+ 'mask-image',
+ 'mask-origin',
+ 'mask-repeat',
+ 'mask-border-repeat',
+ 'mask-border-source'
+ ],
+ {
+ feature: 'css-masks',
+ browsers
+ }
+ )
+ prefix(
+ [
+ 'mask',
+ 'mask-position',
+ 'mask-size',
+ 'mask-border',
+ 'mask-border-outset',
+ 'mask-border-width',
+ 'mask-border-slice'
+ ],
+ {
+ feature: 'css-masks',
+ browsers
+ }
+ )
+})
+
+// CSS clip-path property
+let prefixClipPath = require('caniuse-lite/data/features/css-clip-path')
+
+f(prefixClipPath, browsers =>
+ prefix(['clip-path'], {
+ feature: 'css-clip-path',
+ browsers
+ })
+)
+
+// Fragmented Borders and Backgrounds
+let prefixBoxdecoration = require('caniuse-lite/data/features/css-boxdecorationbreak')
+
+f(prefixBoxdecoration, browsers =>
+ prefix(['box-decoration-break'], {
+ feature: 'css-boxdecorationbreak',
+ browsers
+ })
+)
+
+// CSS3 object-fit/object-position
+let prefixObjectFit = require('caniuse-lite/data/features/object-fit')
+
+f(prefixObjectFit, browsers =>
+ prefix(['object-fit', 'object-position'], {
+ feature: 'object-fit',
+ browsers
+ })
+)
+
+// CSS Shapes
+let prefixShapes = require('caniuse-lite/data/features/css-shapes')
+
+f(prefixShapes, browsers =>
+ prefix(['shape-margin', 'shape-outside', 'shape-image-threshold'], {
+ feature: 'css-shapes',
+ browsers
+ })
+)
+
+// CSS3 text-overflow
+let prefixTextOverflow = require('caniuse-lite/data/features/text-overflow')
+
+f(prefixTextOverflow, browsers =>
+ prefix(['text-overflow'], {
+ feature: 'text-overflow',
+ browsers
+ })
+)
+
+// Viewport at-rule
+let prefixDeviceadaptation = require('caniuse-lite/data/features/css-deviceadaptation')
+
+f(prefixDeviceadaptation, browsers =>
+ prefix(['@viewport'], {
+ feature: 'css-deviceadaptation',
+ browsers
+ })
+)
+
+// Resolution Media Queries
+let prefixResolut = require('caniuse-lite/data/features/css-media-resolution')
+
+f(prefixResolut, { match: /( x($| )|a #2)/ }, browsers =>
+ prefix(['@resolution'], {
+ feature: 'css-media-resolution',
+ browsers
+ })
+)
+
+// CSS text-align-last
+let prefixTextAlignLast = require('caniuse-lite/data/features/css-text-align-last')
+
+f(prefixTextAlignLast, browsers =>
+ prefix(['text-align-last'], {
+ feature: 'css-text-align-last',
+ browsers
+ })
+)
+
+// Crisp Edges Image Rendering Algorithm
+let prefixCrispedges = require('caniuse-lite/data/features/css-crisp-edges')
+
+f(prefixCrispedges, { match: /y x|a x #1/ }, browsers =>
+ prefix(['pixelated'], {
+ props: ['image-rendering'],
+ feature: 'css-crisp-edges',
+ browsers
+ })
+)
+
+f(prefixCrispedges, { match: /a x #2/ }, browsers =>
+ prefix(['image-rendering'], {
+ feature: 'css-crisp-edges',
+ browsers
+ })
+)
+
+// Logical Properties
+let prefixLogicalProps = require('caniuse-lite/data/features/css-logical-props')
+
+f(prefixLogicalProps, browsers =>
+ prefix(
+ [
+ 'border-inline-start',
+ 'border-inline-end',
+ 'margin-inline-start',
+ 'margin-inline-end',
+ 'padding-inline-start',
+ 'padding-inline-end'
+ ],
+ {
+ feature: 'css-logical-props',
+ browsers
+ }
+ )
+)
+
+f(prefixLogicalProps, { match: /x\s#2/ }, browsers =>
+ prefix(
+ [
+ 'border-block-start',
+ 'border-block-end',
+ 'margin-block-start',
+ 'margin-block-end',
+ 'padding-block-start',
+ 'padding-block-end'
+ ],
+ {
+ feature: 'css-logical-props',
+ browsers
+ }
+ )
+)
+
+// CSS appearance
+let prefixAppearance = require('caniuse-lite/data/features/css-appearance')
+
+f(prefixAppearance, { match: /#2|x/ }, browsers =>
+ prefix(['appearance'], {
+ feature: 'css-appearance',
+ browsers
+ })
+)
+
+// CSS Scroll snap points
+let prefixSnappoints = require('caniuse-lite/data/features/css-snappoints')
+
+f(prefixSnappoints, browsers =>
+ prefix(
+ [
+ 'scroll-snap-type',
+ 'scroll-snap-coordinate',
+ 'scroll-snap-destination',
+ 'scroll-snap-points-x',
+ 'scroll-snap-points-y'
+ ],
+ {
+ feature: 'css-snappoints',
+ browsers
+ }
+ )
+)
+
+// CSS Regions
+let prefixRegions = require('caniuse-lite/data/features/css-regions')
+
+f(prefixRegions, browsers =>
+ prefix(['flow-into', 'flow-from', 'region-fragment'], {
+ feature: 'css-regions',
+ browsers
+ })
+)
+
+// CSS image-set
+let prefixImageSet = require('caniuse-lite/data/features/css-image-set')
+
+f(prefixImageSet, browsers =>
+ prefix(['image-set'], {
+ props: [
+ 'background',
+ 'background-image',
+ 'border-image',
+ 'cursor',
+ 'mask',
+ 'mask-image',
+ 'list-style',
+ 'list-style-image',
+ 'content'
+ ],
+ feature: 'css-image-set',
+ browsers
+ })
+)
+
+// Writing Mode
+let prefixWritingMode = require('caniuse-lite/data/features/css-writing-mode')
+
+f(prefixWritingMode, { match: /a|x/ }, browsers =>
+ prefix(['writing-mode'], {
+ feature: 'css-writing-mode',
+ browsers
+ })
+)
+
+// Cross-Fade Function
+let prefixCrossFade = require('caniuse-lite/data/features/css-cross-fade')
+
+f(prefixCrossFade, browsers =>
+ prefix(['cross-fade'], {
+ props: [
+ 'background',
+ 'background-image',
+ 'border-image',
+ 'mask',
+ 'list-style',
+ 'list-style-image',
+ 'content',
+ 'mask-image'
+ ],
+ feature: 'css-cross-fade',
+ browsers
+ })
+)
+
+// Read Only selector
+let prefixReadOnly = require('caniuse-lite/data/features/css-read-only-write')
+
+f(prefixReadOnly, browsers =>
+ prefix([':read-only', ':read-write'], {
+ selector: true,
+ feature: 'css-read-only-write',
+ browsers
+ })
+)
+
+// Text Emphasize
+let prefixTextEmphasis = require('caniuse-lite/data/features/text-emphasis')
+
+f(prefixTextEmphasis, browsers =>
+ prefix(
+ [
+ 'text-emphasis',
+ 'text-emphasis-position',
+ 'text-emphasis-style',
+ 'text-emphasis-color'
+ ],
+ {
+ feature: 'text-emphasis',
+ browsers
+ }
+ )
+)
+
+// CSS Grid Layout
+let prefixGrid = require('caniuse-lite/data/features/css-grid')
+
+f(prefixGrid, browsers => {
+ prefix(['display-grid', 'inline-grid'], {
+ props: ['display'],
+ feature: 'css-grid',
+ browsers
+ })
+ prefix(
+ [
+ 'grid-template-columns',
+ 'grid-template-rows',
+ 'grid-row-start',
+ 'grid-column-start',
+ 'grid-row-end',
+ 'grid-column-end',
+ 'grid-row',
+ 'grid-column',
+ 'grid-area',
+ 'grid-template',
+ 'grid-template-areas',
+ 'place-self'
+ ],
+ {
+ feature: 'css-grid',
+ browsers
+ }
+ )
+})
+
+f(prefixGrid, { match: /a x/ }, browsers =>
+ prefix(['grid-column-align', 'grid-row-align'], {
+ feature: 'css-grid',
+ browsers
+ })
+)
+
+// CSS text-spacing
+let prefixTextSpacing = require('caniuse-lite/data/features/css-text-spacing')
+
+f(prefixTextSpacing, browsers =>
+ prefix(['text-spacing'], {
+ feature: 'css-text-spacing',
+ browsers
+ })
+)
+
+// :any-link selector
+let prefixAnyLink = require('caniuse-lite/data/features/css-any-link')
+
+f(prefixAnyLink, browsers =>
+ prefix([':any-link'], {
+ selector: true,
+ feature: 'css-any-link',
+ browsers
+ })
+)
+
+// unicode-bidi
+
+let bidiIsolate = require('caniuse-lite/data/features/mdn-css-unicode-bidi-isolate')
+
+f(bidiIsolate, browsers =>
+ prefix(['isolate'], {
+ props: ['unicode-bidi'],
+ feature: 'css-unicode-bidi',
+ browsers
+ })
+)
+
+let bidiPlaintext = require('caniuse-lite/data/features/mdn-css-unicode-bidi-plaintext')
+
+f(bidiPlaintext, browsers =>
+ prefix(['plaintext'], {
+ props: ['unicode-bidi'],
+ feature: 'css-unicode-bidi',
+ browsers
+ })
+)
+
+let bidiOverride = require('caniuse-lite/data/features/mdn-css-unicode-bidi-isolate-override')
+
+f(bidiOverride, { match: /y x/ }, browsers =>
+ prefix(['isolate-override'], {
+ props: ['unicode-bidi'],
+ feature: 'css-unicode-bidi',
+ browsers
+ })
+)
+
+// overscroll-behavior selector
+let prefixOverscroll = require('caniuse-lite/data/features/css-overscroll-behavior')
+
+f(prefixOverscroll, { match: /a #1/ }, browsers =>
+ prefix(['overscroll-behavior'], {
+ feature: 'css-overscroll-behavior',
+ browsers
+ })
+)
+
+// text-orientation
+let prefixTextOrientation = require('caniuse-lite/data/features/css-text-orientation')
+
+f(prefixTextOrientation, browsers =>
+ prefix(['text-orientation'], {
+ feature: 'css-text-orientation',
+ browsers
+ })
+)
+
+// print-color-adjust
+let prefixPrintAdjust = require('caniuse-lite/data/features/css-print-color-adjust')
+
+f(prefixPrintAdjust, browsers =>
+ prefix(['print-color-adjust', 'color-adjust'], {
+ feature: 'css-print-color-adjust',
+ browsers
+ })
+)
diff --git a/node_modules/autoprefixer/lib/at-rule.js b/node_modules/autoprefixer/lib/at-rule.js
new file mode 100644
index 0000000..d36a279
--- /dev/null
+++ b/node_modules/autoprefixer/lib/at-rule.js
@@ -0,0 +1,35 @@
+let Prefixer = require('./prefixer')
+
+class AtRule extends Prefixer {
+ /**
+ * Clone and add prefixes for at-rule
+ */
+ add(rule, prefix) {
+ let prefixed = prefix + rule.name
+
+ let already = rule.parent.some(
+ i => i.name === prefixed && i.params === rule.params
+ )
+ if (already) {
+ return undefined
+ }
+
+ let cloned = this.clone(rule, { name: prefixed })
+ return rule.parent.insertBefore(rule, cloned)
+ }
+
+ /**
+ * Clone node with prefixes
+ */
+ process(node) {
+ let parent = this.parentPrefix(node)
+
+ for (let prefix of this.prefixes) {
+ if (!parent || parent === prefix) {
+ this.add(node, prefix)
+ }
+ }
+ }
+}
+
+module.exports = AtRule
diff --git a/node_modules/autoprefixer/lib/autoprefixer.d.ts b/node_modules/autoprefixer/lib/autoprefixer.d.ts
new file mode 100644
index 0000000..6ba292c
--- /dev/null
+++ b/node_modules/autoprefixer/lib/autoprefixer.d.ts
@@ -0,0 +1,95 @@
+import { Plugin } from 'postcss'
+import { Stats } from 'browserslist'
+
+declare function autoprefixer(
+ ...args: [...T, autoprefixer.Options]
+): Plugin & autoprefixer.ExportedAPI
+
+declare function autoprefixer(
+ browsers: string[],
+ options?: autoprefixer.Options
+): Plugin & autoprefixer.ExportedAPI
+
+declare function autoprefixer(
+ options?: autoprefixer.Options
+): Plugin & autoprefixer.ExportedAPI
+
+declare namespace autoprefixer {
+ type GridValue = 'autoplace' | 'no-autoplace'
+
+ interface Options {
+ /** environment for `Browserslist` */
+ env?: string
+
+ /** should Autoprefixer use Visual Cascade, if CSS is uncompressed */
+ cascade?: boolean
+
+ /** should Autoprefixer add prefixes. */
+ add?: boolean
+
+ /** should Autoprefixer [remove outdated] prefixes */
+ remove?: boolean
+
+ /** should Autoprefixer add prefixes for @supports parameters. */
+ supports?: boolean
+
+ /** should Autoprefixer add prefixes for flexbox properties */
+ flexbox?: boolean | 'no-2009'
+
+ /** should Autoprefixer add IE 10-11 prefixes for Grid Layout properties */
+ grid?: boolean | GridValue
+
+ /** custom usage statistics for > 10% in my stats browsers query */
+ stats?: Stats
+
+ /**
+ * list of queries for target browsers.
+ * Try to not use it.
+ * The best practice is to use `.browserslistrc` config or `browserslist` key in `package.json`
+ * to share target browsers with Babel, ESLint and Stylelint
+ */
+ overrideBrowserslist?: string | string[]
+
+ /** do not raise error on unknown browser version in `Browserslist` config. */
+ ignoreUnknownVersions?: boolean
+ }
+
+ interface ExportedAPI {
+ /** Autoprefixer data */
+ data: {
+ browsers: { [browser: string]: object | undefined }
+ prefixes: { [prefixName: string]: object | undefined }
+ }
+
+ /** Autoprefixer default browsers */
+ defaults: string[]
+
+ /** Inspect with default Autoprefixer */
+ info(options?: { from?: string }): string
+
+ options: Options
+
+ browsers: string | string[]
+ }
+
+ /** Autoprefixer data */
+ let data: ExportedAPI['data']
+
+ /** Autoprefixer default browsers */
+ let defaults: ExportedAPI['defaults']
+
+ /** Inspect with default Autoprefixer */
+ let info: ExportedAPI['info']
+
+ let postcss: true
+}
+
+declare global {
+ namespace NodeJS {
+ interface ProcessEnv {
+ AUTOPREFIXER_GRID?: autoprefixer.GridValue
+ }
+ }
+}
+
+export = autoprefixer
diff --git a/node_modules/autoprefixer/lib/autoprefixer.js b/node_modules/autoprefixer/lib/autoprefixer.js
new file mode 100644
index 0000000..8a9f5cd
--- /dev/null
+++ b/node_modules/autoprefixer/lib/autoprefixer.js
@@ -0,0 +1,164 @@
+let browserslist = require('browserslist')
+let { agents } = require('caniuse-lite/dist/unpacker/agents')
+let pico = require('picocolors')
+
+let Browsers = require('./browsers')
+let Prefixes = require('./prefixes')
+let dataPrefixes = require('../data/prefixes')
+let getInfo = require('./info')
+
+let autoprefixerData = { browsers: agents, prefixes: dataPrefixes }
+
+const WARNING =
+ '\n' +
+ ' Replace Autoprefixer `browsers` option to Browserslist config.\n' +
+ ' Use `browserslist` key in `package.json` or `.browserslistrc` file.\n' +
+ '\n' +
+ ' Using `browsers` option can cause errors. Browserslist config can\n' +
+ ' be used for Babel, Autoprefixer, postcss-normalize and other tools.\n' +
+ '\n' +
+ ' If you really need to use option, rename it to `overrideBrowserslist`.\n' +
+ '\n' +
+ ' Learn more at:\n' +
+ ' https://github.com/browserslist/browserslist#readme\n' +
+ ' https://twitter.com/browserslist\n' +
+ '\n'
+
+function isPlainObject(obj) {
+ return Object.prototype.toString.apply(obj) === '[object Object]'
+}
+
+let cache = new Map()
+
+function timeCapsule(result, prefixes) {
+ if (prefixes.browsers.selected.length === 0) {
+ return
+ }
+ if (prefixes.add.selectors.length > 0) {
+ return
+ }
+ if (Object.keys(prefixes.add).length > 2) {
+ return
+ }
+ /* c8 ignore next 11 */
+ result.warn(
+ 'Autoprefixer target browsers do not need any prefixes.' +
+ 'You do not need Autoprefixer anymore.\n' +
+ 'Check your Browserslist config to be sure that your targets ' +
+ 'are set up correctly.\n' +
+ '\n' +
+ ' Learn more at:\n' +
+ ' https://github.com/postcss/autoprefixer#readme\n' +
+ ' https://github.com/browserslist/browserslist#readme\n' +
+ '\n'
+ )
+}
+
+module.exports = plugin
+
+function plugin(...reqs) {
+ let options
+ if (reqs.length === 1 && isPlainObject(reqs[0])) {
+ options = reqs[0]
+ reqs = undefined
+ } else if (reqs.length === 0 || (reqs.length === 1 && !reqs[0])) {
+ reqs = undefined
+ } else if (reqs.length <= 2 && (Array.isArray(reqs[0]) || !reqs[0])) {
+ options = reqs[1]
+ reqs = reqs[0]
+ } else if (typeof reqs[reqs.length - 1] === 'object') {
+ options = reqs.pop()
+ }
+
+ if (!options) {
+ options = {}
+ }
+
+ if (options.browser) {
+ throw new Error(
+ 'Change `browser` option to `overrideBrowserslist` in Autoprefixer'
+ )
+ } else if (options.browserslist) {
+ throw new Error(
+ 'Change `browserslist` option to `overrideBrowserslist` in Autoprefixer'
+ )
+ }
+
+ if (options.overrideBrowserslist) {
+ reqs = options.overrideBrowserslist
+ } else if (options.browsers) {
+ if (typeof console !== 'undefined' && console.warn) {
+ console.warn(
+ pico.red(WARNING.replace(/`[^`]+`/g, i => pico.yellow(i.slice(1, -1))))
+ )
+ }
+ reqs = options.browsers
+ }
+
+ let brwlstOpts = {
+ ignoreUnknownVersions: options.ignoreUnknownVersions,
+ stats: options.stats,
+ env: options.env
+ }
+
+ function loadPrefixes(opts) {
+ let d = autoprefixerData
+ let browsers = new Browsers(d.browsers, reqs, opts, brwlstOpts)
+ let key = browsers.selected.join(', ') + JSON.stringify(options)
+
+ if (!cache.has(key)) {
+ cache.set(key, new Prefixes(d.prefixes, browsers, options))
+ }
+
+ return cache.get(key)
+ }
+
+ return {
+ postcssPlugin: 'autoprefixer',
+
+ prepare(result) {
+ let prefixes = loadPrefixes({
+ from: result.opts.from,
+ env: options.env
+ })
+
+ return {
+ OnceExit(root) {
+ timeCapsule(result, prefixes)
+ if (options.remove !== false) {
+ prefixes.processor.remove(root, result)
+ }
+ if (options.add !== false) {
+ prefixes.processor.add(root, result)
+ }
+ }
+ }
+ },
+
+ info(opts) {
+ opts = opts || {}
+ opts.from = opts.from || process.cwd()
+ return getInfo(loadPrefixes(opts))
+ },
+
+ options,
+ browsers: reqs
+ }
+}
+
+plugin.postcss = true
+
+/**
+ * Autoprefixer data
+ */
+plugin.data = autoprefixerData
+
+/**
+ * Autoprefixer default browsers
+ */
+plugin.defaults = browserslist.defaults
+
+/**
+ * Inspect with default Autoprefixer
+ */
+plugin.info = () => plugin().info()
diff --git a/node_modules/autoprefixer/lib/brackets.js b/node_modules/autoprefixer/lib/brackets.js
new file mode 100644
index 0000000..3bb1dad
--- /dev/null
+++ b/node_modules/autoprefixer/lib/brackets.js
@@ -0,0 +1,51 @@
+function last(array) {
+ return array[array.length - 1]
+}
+
+let brackets = {
+ /**
+ * Parse string to nodes tree
+ */
+ parse(str) {
+ let current = ['']
+ let stack = [current]
+
+ for (let sym of str) {
+ if (sym === '(') {
+ current = ['']
+ last(stack).push(current)
+ stack.push(current)
+ continue
+ }
+
+ if (sym === ')') {
+ stack.pop()
+ current = last(stack)
+ current.push('')
+ continue
+ }
+
+ current[current.length - 1] += sym
+ }
+
+ return stack[0]
+ },
+
+ /**
+ * Generate output string by nodes tree
+ */
+ stringify(ast) {
+ let result = ''
+ for (let i of ast) {
+ if (typeof i === 'object') {
+ result += `(${brackets.stringify(i)})`
+ continue
+ }
+
+ result += i
+ }
+ return result
+ }
+}
+
+module.exports = brackets
diff --git a/node_modules/autoprefixer/lib/browsers.js b/node_modules/autoprefixer/lib/browsers.js
new file mode 100644
index 0000000..9d8fd97
--- /dev/null
+++ b/node_modules/autoprefixer/lib/browsers.js
@@ -0,0 +1,79 @@
+let browserslist = require('browserslist')
+let { agents } = require('caniuse-lite/dist/unpacker/agents')
+
+let utils = require('./utils')
+
+class Browsers {
+ /**
+ * Return all prefixes for default browser data
+ */
+ static prefixes() {
+ if (this.prefixesCache) {
+ return this.prefixesCache
+ }
+
+ this.prefixesCache = []
+ for (let name in agents) {
+ this.prefixesCache.push(`-${agents[name].prefix}-`)
+ }
+
+ this.prefixesCache = utils
+ .uniq(this.prefixesCache)
+ .sort((a, b) => b.length - a.length)
+
+ return this.prefixesCache
+ }
+
+ /**
+ * Check is value contain any possible prefix
+ */
+ static withPrefix(value) {
+ if (!this.prefixesRegexp) {
+ this.prefixesRegexp = new RegExp(this.prefixes().join('|'))
+ }
+
+ return this.prefixesRegexp.test(value)
+ }
+
+ constructor(data, requirements, options, browserslistOpts) {
+ this.data = data
+ this.options = options || {}
+ this.browserslistOpts = browserslistOpts || {}
+ this.selected = this.parse(requirements)
+ }
+
+ /**
+ * Return browsers selected by requirements
+ */
+ parse(requirements) {
+ let opts = {}
+ for (let i in this.browserslistOpts) {
+ opts[i] = this.browserslistOpts[i]
+ }
+ opts.path = this.options.from
+ return browserslist(requirements, opts)
+ }
+
+ /**
+ * Return prefix for selected browser
+ */
+ prefix(browser) {
+ let [name, version] = browser.split(' ')
+ let data = this.data[name]
+
+ let prefix = data.prefix_exceptions && data.prefix_exceptions[version]
+ if (!prefix) {
+ prefix = data.prefix
+ }
+ return `-${prefix}-`
+ }
+
+ /**
+ * Is browser is selected by requirements
+ */
+ isSelected(browser) {
+ return this.selected.includes(browser)
+ }
+}
+
+module.exports = Browsers
diff --git a/node_modules/autoprefixer/lib/declaration.js b/node_modules/autoprefixer/lib/declaration.js
new file mode 100644
index 0000000..0f86c30
--- /dev/null
+++ b/node_modules/autoprefixer/lib/declaration.js
@@ -0,0 +1,187 @@
+let Prefixer = require('./prefixer')
+let Browsers = require('./browsers')
+let utils = require('./utils')
+
+class Declaration extends Prefixer {
+ /**
+ * Always true, because we already get prefixer by property name
+ */
+ check(/* decl */) {
+ return true
+ }
+
+ /**
+ * Return prefixed version of property
+ */
+ prefixed(prop, prefix) {
+ return prefix + prop
+ }
+
+ /**
+ * Return unprefixed version of property
+ */
+ normalize(prop) {
+ return prop
+ }
+
+ /**
+ * Check `value`, that it contain other prefixes, rather than `prefix`
+ */
+ otherPrefixes(value, prefix) {
+ for (let other of Browsers.prefixes()) {
+ if (other === prefix) {
+ continue
+ }
+ if (value.includes(other)) {
+ return value.replace(/var\([^)]+\)/, '').includes(other)
+ }
+ }
+ return false
+ }
+
+ /**
+ * Set prefix to declaration
+ */
+ set(decl, prefix) {
+ decl.prop = this.prefixed(decl.prop, prefix)
+ return decl
+ }
+
+ /**
+ * Should we use visual cascade for prefixes
+ */
+ needCascade(decl) {
+ if (!decl._autoprefixerCascade) {
+ decl._autoprefixerCascade =
+ this.all.options.cascade !== false && decl.raw('before').includes('\n')
+ }
+ return decl._autoprefixerCascade
+ }
+
+ /**
+ * Return maximum length of possible prefixed property
+ */
+ maxPrefixed(prefixes, decl) {
+ if (decl._autoprefixerMax) {
+ return decl._autoprefixerMax
+ }
+
+ let max = 0
+ for (let prefix of prefixes) {
+ prefix = utils.removeNote(prefix)
+ if (prefix.length > max) {
+ max = prefix.length
+ }
+ }
+ decl._autoprefixerMax = max
+
+ return decl._autoprefixerMax
+ }
+
+ /**
+ * Calculate indentation to create visual cascade
+ */
+ calcBefore(prefixes, decl, prefix = '') {
+ let max = this.maxPrefixed(prefixes, decl)
+ let diff = max - utils.removeNote(prefix).length
+
+ let before = decl.raw('before')
+ if (diff > 0) {
+ before += Array(diff).fill(' ').join('')
+ }
+
+ return before
+ }
+
+ /**
+ * Remove visual cascade
+ */
+ restoreBefore(decl) {
+ let lines = decl.raw('before').split('\n')
+ let min = lines[lines.length - 1]
+
+ this.all.group(decl).up(prefixed => {
+ let array = prefixed.raw('before').split('\n')
+ let last = array[array.length - 1]
+ if (last.length < min.length) {
+ min = last
+ }
+ })
+
+ lines[lines.length - 1] = min
+ decl.raws.before = lines.join('\n')
+ }
+
+ /**
+ * Clone and insert new declaration
+ */
+ insert(decl, prefix, prefixes) {
+ let cloned = this.set(this.clone(decl), prefix)
+ if (!cloned) return undefined
+
+ let already = decl.parent.some(
+ i => i.prop === cloned.prop && i.value === cloned.value
+ )
+ if (already) {
+ return undefined
+ }
+
+ if (this.needCascade(decl)) {
+ cloned.raws.before = this.calcBefore(prefixes, decl, prefix)
+ }
+ return decl.parent.insertBefore(decl, cloned)
+ }
+
+ /**
+ * Did this declaration has this prefix above
+ */
+ isAlready(decl, prefixed) {
+ let already = this.all.group(decl).up(i => i.prop === prefixed)
+ if (!already) {
+ already = this.all.group(decl).down(i => i.prop === prefixed)
+ }
+ return already
+ }
+
+ /**
+ * Clone and add prefixes for declaration
+ */
+ add(decl, prefix, prefixes, result) {
+ let prefixed = this.prefixed(decl.prop, prefix)
+ if (
+ this.isAlready(decl, prefixed) ||
+ this.otherPrefixes(decl.value, prefix)
+ ) {
+ return undefined
+ }
+ return this.insert(decl, prefix, prefixes, result)
+ }
+
+ /**
+ * Add spaces for visual cascade
+ */
+ process(decl, result) {
+ if (!this.needCascade(decl)) {
+ super.process(decl, result)
+ return
+ }
+
+ let prefixes = super.process(decl, result)
+
+ if (!prefixes || !prefixes.length) {
+ return
+ }
+
+ this.restoreBefore(decl)
+ decl.raws.before = this.calcBefore(prefixes, decl)
+ }
+
+ /**
+ * Return list of prefixed properties to clean old prefixes
+ */
+ old(prop, prefix) {
+ return [this.prefixed(prop, prefix)]
+ }
+}
+
+module.exports = Declaration
diff --git a/node_modules/autoprefixer/lib/hacks/align-content.js b/node_modules/autoprefixer/lib/hacks/align-content.js
new file mode 100644
index 0000000..9b1b698
--- /dev/null
+++ b/node_modules/autoprefixer/lib/hacks/align-content.js
@@ -0,0 +1,49 @@
+let flexSpec = require('./flex-spec')
+let Declaration = require('../declaration')
+
+class AlignContent extends Declaration {
+ /**
+ * Change property name for 2012 spec
+ */
+ prefixed(prop, prefix) {
+ let spec
+ ;[spec, prefix] = flexSpec(prefix)
+ if (spec === 2012) {
+ return prefix + 'flex-line-pack'
+ }
+ return super.prefixed(prop, prefix)
+ }
+
+ /**
+ * Return property name by final spec
+ */
+ normalize() {
+ return 'align-content'
+ }
+
+ /**
+ * Change value for 2012 spec and ignore prefix for 2009
+ */
+ set(decl, prefix) {
+ let spec = flexSpec(prefix)[0]
+ if (spec === 2012) {
+ decl.value = AlignContent.oldValues[decl.value] || decl.value
+ return super.set(decl, prefix)
+ }
+ if (spec === 'final') {
+ return super.set(decl, prefix)
+ }
+ return undefined
+ }
+}
+
+AlignContent.names = ['align-content', 'flex-line-pack']
+
+AlignContent.oldValues = {
+ 'flex-end': 'end',
+ 'flex-start': 'start',
+ 'space-between': 'justify',
+ 'space-around': 'distribute'
+}
+
+module.exports = AlignContent
diff --git a/node_modules/autoprefixer/lib/hacks/align-items.js b/node_modules/autoprefixer/lib/hacks/align-items.js
new file mode 100644
index 0000000..601a2d4
--- /dev/null
+++ b/node_modules/autoprefixer/lib/hacks/align-items.js
@@ -0,0 +1,46 @@
+let flexSpec = require('./flex-spec')
+let Declaration = require('../declaration')
+
+class AlignItems extends Declaration {
+ /**
+ * Change property name for 2009 and 2012 specs
+ */
+ prefixed(prop, prefix) {
+ let spec
+ ;[spec, prefix] = flexSpec(prefix)
+ if (spec === 2009) {
+ return prefix + 'box-align'
+ }
+ if (spec === 2012) {
+ return prefix + 'flex-align'
+ }
+ return super.prefixed(prop, prefix)
+ }
+
+ /**
+ * Return property name by final spec
+ */
+ normalize() {
+ return 'align-items'
+ }
+
+ /**
+ * Change value for 2009 and 2012 specs
+ */
+ set(decl, prefix) {
+ let spec = flexSpec(prefix)[0]
+ if (spec === 2009 || spec === 2012) {
+ decl.value = AlignItems.oldValues[decl.value] || decl.value
+ }
+ return super.set(decl, prefix)
+ }
+}
+
+AlignItems.names = ['align-items', 'flex-align', 'box-align']
+
+AlignItems.oldValues = {
+ 'flex-end': 'end',
+ 'flex-start': 'start'
+}
+
+module.exports = AlignItems
diff --git a/node_modules/autoprefixer/lib/hacks/align-self.js b/node_modules/autoprefixer/lib/hacks/align-self.js
new file mode 100644
index 0000000..56cf8b0
--- /dev/null
+++ b/node_modules/autoprefixer/lib/hacks/align-self.js
@@ -0,0 +1,56 @@
+let flexSpec = require('./flex-spec')
+let Declaration = require('../declaration')
+
+class AlignSelf extends Declaration {
+ check(decl) {
+ return (
+ decl.parent &&
+ !decl.parent.some(i => {
+ return i.prop && i.prop.startsWith('grid-')
+ })
+ )
+ }
+
+ /**
+ * Change property name for 2012 specs
+ */
+ prefixed(prop, prefix) {
+ let spec
+ ;[spec, prefix] = flexSpec(prefix)
+ if (spec === 2012) {
+ return prefix + 'flex-item-align'
+ }
+ return super.prefixed(prop, prefix)
+ }
+
+ /**
+ * Return property name by final spec
+ */
+ normalize() {
+ return 'align-self'
+ }
+
+ /**
+ * Change value for 2012 spec and ignore prefix for 2009
+ */
+ set(decl, prefix) {
+ let spec = flexSpec(prefix)[0]
+ if (spec === 2012) {
+ decl.value = AlignSelf.oldValues[decl.value] || decl.value
+ return super.set(decl, prefix)
+ }
+ if (spec === 'final') {
+ return super.set(decl, prefix)
+ }
+ return undefined
+ }
+}
+
+AlignSelf.names = ['align-self', 'flex-item-align']
+
+AlignSelf.oldValues = {
+ 'flex-end': 'end',
+ 'flex-start': 'start'
+}
+
+module.exports = AlignSelf
diff --git a/node_modules/autoprefixer/lib/hacks/animation.js b/node_modules/autoprefixer/lib/hacks/animation.js
new file mode 100644
index 0000000..7ce949a
--- /dev/null
+++ b/node_modules/autoprefixer/lib/hacks/animation.js
@@ -0,0 +1,17 @@
+let Declaration = require('../declaration')
+
+class Animation extends Declaration {
+ /**
+ * Don’t add prefixes for modern values.
+ */
+ check(decl) {
+ return !decl.value.split(/\s+/).some(i => {
+ let lower = i.toLowerCase()
+ return lower === 'reverse' || lower === 'alternate-reverse'
+ })
+ }
+}
+
+Animation.names = ['animation', 'animation-direction']
+
+module.exports = Animation
diff --git a/node_modules/autoprefixer/lib/hacks/appearance.js b/node_modules/autoprefixer/lib/hacks/appearance.js
new file mode 100644
index 0000000..34be384
--- /dev/null
+++ b/node_modules/autoprefixer/lib/hacks/appearance.js
@@ -0,0 +1,23 @@
+let Declaration = require('../declaration')
+let utils = require('../utils')
+
+class Appearance extends Declaration {
+ constructor(name, prefixes, all) {
+ super(name, prefixes, all)
+
+ if (this.prefixes) {
+ this.prefixes = utils.uniq(
+ this.prefixes.map(i => {
+ if (i === '-ms-') {
+ return '-webkit-'
+ }
+ return i
+ })
+ )
+ }
+ }
+}
+
+Appearance.names = ['appearance']
+
+module.exports = Appearance
diff --git a/node_modules/autoprefixer/lib/hacks/autofill.js b/node_modules/autoprefixer/lib/hacks/autofill.js
new file mode 100644
index 0000000..a9c49ce
--- /dev/null
+++ b/node_modules/autoprefixer/lib/hacks/autofill.js
@@ -0,0 +1,26 @@
+let Selector = require('../selector')
+let utils = require('../utils')
+
+class Autofill extends Selector {
+ constructor(name, prefixes, all) {
+ super(name, prefixes, all)
+
+ if (this.prefixes) {
+ this.prefixes = utils.uniq(this.prefixes.map(() => '-webkit-'))
+ }
+ }
+
+ /**
+ * Return different selectors depend on prefix
+ */
+ prefixed(prefix) {
+ if (prefix === '-webkit-') {
+ return ':-webkit-autofill'
+ }
+ return `:${prefix}autofill`
+ }
+}
+
+Autofill.names = [':autofill']
+
+module.exports = Autofill
diff --git a/node_modules/autoprefixer/lib/hacks/backdrop-filter.js b/node_modules/autoprefixer/lib/hacks/backdrop-filter.js
new file mode 100644
index 0000000..f9b4b05
--- /dev/null
+++ b/node_modules/autoprefixer/lib/hacks/backdrop-filter.js
@@ -0,0 +1,20 @@
+let Declaration = require('../declaration')
+let utils = require('../utils')
+
+class BackdropFilter extends Declaration {
+ constructor(name, prefixes, all) {
+ super(name, prefixes, all)
+
+ if (this.prefixes) {
+ this.prefixes = utils.uniq(
+ this.prefixes.map(i => {
+ return i === '-ms-' ? '-webkit-' : i
+ })
+ )
+ }
+ }
+}
+
+BackdropFilter.names = ['backdrop-filter']
+
+module.exports = BackdropFilter
diff --git a/node_modules/autoprefixer/lib/hacks/background-clip.js b/node_modules/autoprefixer/lib/hacks/background-clip.js
new file mode 100644
index 0000000..92c714c
--- /dev/null
+++ b/node_modules/autoprefixer/lib/hacks/background-clip.js
@@ -0,0 +1,24 @@
+let Declaration = require('../declaration')
+let utils = require('../utils')
+
+class BackgroundClip extends Declaration {
+ constructor(name, prefixes, all) {
+ super(name, prefixes, all)
+
+ if (this.prefixes) {
+ this.prefixes = utils.uniq(
+ this.prefixes.map(i => {
+ return i === '-ms-' ? '-webkit-' : i
+ })
+ )
+ }
+ }
+
+ check(decl) {
+ return decl.value.toLowerCase() === 'text'
+ }
+}
+
+BackgroundClip.names = ['background-clip']
+
+module.exports = BackgroundClip
diff --git a/node_modules/autoprefixer/lib/hacks/background-size.js b/node_modules/autoprefixer/lib/hacks/background-size.js
new file mode 100644
index 0000000..1fba894
--- /dev/null
+++ b/node_modules/autoprefixer/lib/hacks/background-size.js
@@ -0,0 +1,23 @@
+let Declaration = require('../declaration')
+
+class BackgroundSize extends Declaration {
+ /**
+ * Duplication parameter for -webkit- browsers
+ */
+ set(decl, prefix) {
+ let value = decl.value.toLowerCase()
+ if (
+ prefix === '-webkit-' &&
+ !value.includes(' ') &&
+ value !== 'contain' &&
+ value !== 'cover'
+ ) {
+ decl.value = decl.value + ' ' + decl.value
+ }
+ return super.set(decl, prefix)
+ }
+}
+
+BackgroundSize.names = ['background-size']
+
+module.exports = BackgroundSize
diff --git a/node_modules/autoprefixer/lib/hacks/block-logical.js b/node_modules/autoprefixer/lib/hacks/block-logical.js
new file mode 100644
index 0000000..d223f52
--- /dev/null
+++ b/node_modules/autoprefixer/lib/hacks/block-logical.js
@@ -0,0 +1,40 @@
+let Declaration = require('../declaration')
+
+class BlockLogical extends Declaration {
+ /**
+ * Use old syntax for -moz- and -webkit-
+ */
+ prefixed(prop, prefix) {
+ if (prop.includes('-start')) {
+ return prefix + prop.replace('-block-start', '-before')
+ }
+ return prefix + prop.replace('-block-end', '-after')
+ }
+
+ /**
+ * Return property name by spec
+ */
+ normalize(prop) {
+ if (prop.includes('-before')) {
+ return prop.replace('-before', '-block-start')
+ }
+ return prop.replace('-after', '-block-end')
+ }
+}
+
+BlockLogical.names = [
+ 'border-block-start',
+ 'border-block-end',
+ 'margin-block-start',
+ 'margin-block-end',
+ 'padding-block-start',
+ 'padding-block-end',
+ 'border-before',
+ 'border-after',
+ 'margin-before',
+ 'margin-after',
+ 'padding-before',
+ 'padding-after'
+]
+
+module.exports = BlockLogical
diff --git a/node_modules/autoprefixer/lib/hacks/border-image.js b/node_modules/autoprefixer/lib/hacks/border-image.js
new file mode 100644
index 0000000..f5cbd2c
--- /dev/null
+++ b/node_modules/autoprefixer/lib/hacks/border-image.js
@@ -0,0 +1,15 @@
+let Declaration = require('../declaration')
+
+class BorderImage extends Declaration {
+ /**
+ * Remove fill parameter for prefixed declarations
+ */
+ set(decl, prefix) {
+ decl.value = decl.value.replace(/\s+fill(\s)/, '$1')
+ return super.set(decl, prefix)
+ }
+}
+
+BorderImage.names = ['border-image']
+
+module.exports = BorderImage
diff --git a/node_modules/autoprefixer/lib/hacks/border-radius.js b/node_modules/autoprefixer/lib/hacks/border-radius.js
new file mode 100644
index 0000000..0501692
--- /dev/null
+++ b/node_modules/autoprefixer/lib/hacks/border-radius.js
@@ -0,0 +1,40 @@
+let Declaration = require('../declaration')
+
+class BorderRadius extends Declaration {
+ /**
+ * Change syntax, when add Mozilla prefix
+ */
+ prefixed(prop, prefix) {
+ if (prefix === '-moz-') {
+ return prefix + (BorderRadius.toMozilla[prop] || prop)
+ }
+ return super.prefixed(prop, prefix)
+ }
+
+ /**
+ * Return unprefixed version of property
+ */
+ normalize(prop) {
+ return BorderRadius.toNormal[prop] || prop
+ }
+}
+
+BorderRadius.names = ['border-radius']
+
+BorderRadius.toMozilla = {}
+BorderRadius.toNormal = {}
+
+for (let ver of ['top', 'bottom']) {
+ for (let hor of ['left', 'right']) {
+ let normal = `border-${ver}-${hor}-radius`
+ let mozilla = `border-radius-${ver}${hor}`
+
+ BorderRadius.names.push(normal)
+ BorderRadius.names.push(mozilla)
+
+ BorderRadius.toMozilla[normal] = mozilla
+ BorderRadius.toNormal[mozilla] = normal
+ }
+}
+
+module.exports = BorderRadius
diff --git a/node_modules/autoprefixer/lib/hacks/break-props.js b/node_modules/autoprefixer/lib/hacks/break-props.js
new file mode 100644
index 0000000..45252cd
--- /dev/null
+++ b/node_modules/autoprefixer/lib/hacks/break-props.js
@@ -0,0 +1,63 @@
+let Declaration = require('../declaration')
+
+class BreakProps extends Declaration {
+ /**
+ * Change name for -webkit- and -moz- prefix
+ */
+ prefixed(prop, prefix) {
+ return `${prefix}column-${prop}`
+ }
+
+ /**
+ * Return property name by final spec
+ */
+ normalize(prop) {
+ if (prop.includes('inside')) {
+ return 'break-inside'
+ }
+ if (prop.includes('before')) {
+ return 'break-before'
+ }
+ return 'break-after'
+ }
+
+ /**
+ * Change prefixed value for avoid-column and avoid-page
+ */
+ set(decl, prefix) {
+ if (
+ (decl.prop === 'break-inside' && decl.value === 'avoid-column') ||
+ decl.value === 'avoid-page'
+ ) {
+ decl.value = 'avoid'
+ }
+ return super.set(decl, prefix)
+ }
+
+ /**
+ * Don’t prefix some values
+ */
+ insert(decl, prefix, prefixes) {
+ if (decl.prop !== 'break-inside') {
+ return super.insert(decl, prefix, prefixes)
+ }
+ if (/region/i.test(decl.value) || /page/i.test(decl.value)) {
+ return undefined
+ }
+ return super.insert(decl, prefix, prefixes)
+ }
+}
+
+BreakProps.names = [
+ 'break-inside',
+ 'page-break-inside',
+ 'column-break-inside',
+ 'break-before',
+ 'page-break-before',
+ 'column-break-before',
+ 'break-after',
+ 'page-break-after',
+ 'column-break-after'
+]
+
+module.exports = BreakProps
diff --git a/node_modules/autoprefixer/lib/hacks/cross-fade.js b/node_modules/autoprefixer/lib/hacks/cross-fade.js
new file mode 100644
index 0000000..caaa90d
--- /dev/null
+++ b/node_modules/autoprefixer/lib/hacks/cross-fade.js
@@ -0,0 +1,35 @@
+let list = require('postcss').list
+
+let Value = require('../value')
+
+class CrossFade extends Value {
+ replace(string, prefix) {
+ return list
+ .space(string)
+ .map(value => {
+ if (value.slice(0, +this.name.length + 1) !== this.name + '(') {
+ return value
+ }
+
+ let close = value.lastIndexOf(')')
+ let after = value.slice(close + 1)
+ let args = value.slice(this.name.length + 1, close)
+
+ if (prefix === '-webkit-') {
+ let match = args.match(/\d*.?\d+%?/)
+ if (match) {
+ args = args.slice(match[0].length).trim()
+ args += `, ${match[0]}`
+ } else {
+ args += ', 0.5'
+ }
+ }
+ return prefix + this.name + '(' + args + ')' + after
+ })
+ .join(' ')
+ }
+}
+
+CrossFade.names = ['cross-fade']
+
+module.exports = CrossFade
diff --git a/node_modules/autoprefixer/lib/hacks/display-flex.js b/node_modules/autoprefixer/lib/hacks/display-flex.js
new file mode 100644
index 0000000..cc6cffc
--- /dev/null
+++ b/node_modules/autoprefixer/lib/hacks/display-flex.js
@@ -0,0 +1,65 @@
+let flexSpec = require('./flex-spec')
+let OldValue = require('../old-value')
+let Value = require('../value')
+
+class DisplayFlex extends Value {
+ constructor(name, prefixes) {
+ super(name, prefixes)
+ if (name === 'display-flex') {
+ this.name = 'flex'
+ }
+ }
+
+ /**
+ * Faster check for flex value
+ */
+ check(decl) {
+ return decl.prop === 'display' && decl.value === this.name
+ }
+
+ /**
+ * Return value by spec
+ */
+ prefixed(prefix) {
+ let spec, value
+ ;[spec, prefix] = flexSpec(prefix)
+
+ if (spec === 2009) {
+ if (this.name === 'flex') {
+ value = 'box'
+ } else {
+ value = 'inline-box'
+ }
+ } else if (spec === 2012) {
+ if (this.name === 'flex') {
+ value = 'flexbox'
+ } else {
+ value = 'inline-flexbox'
+ }
+ } else if (spec === 'final') {
+ value = this.name
+ }
+
+ return prefix + value
+ }
+
+ /**
+ * Add prefix to value depend on flebox spec version
+ */
+ replace(string, prefix) {
+ return this.prefixed(prefix)
+ }
+
+ /**
+ * Change value for old specs
+ */
+ old(prefix) {
+ let prefixed = this.prefixed(prefix)
+ if (!prefixed) return undefined
+ return new OldValue(this.name, prefixed)
+ }
+}
+
+DisplayFlex.names = ['display-flex', 'inline-flex']
+
+module.exports = DisplayFlex
diff --git a/node_modules/autoprefixer/lib/hacks/display-grid.js b/node_modules/autoprefixer/lib/hacks/display-grid.js
new file mode 100644
index 0000000..290ec8b
--- /dev/null
+++ b/node_modules/autoprefixer/lib/hacks/display-grid.js
@@ -0,0 +1,21 @@
+let Value = require('../value')
+
+class DisplayGrid extends Value {
+ constructor(name, prefixes) {
+ super(name, prefixes)
+ if (name === 'display-grid') {
+ this.name = 'grid'
+ }
+ }
+
+ /**
+ * Faster check for flex value
+ */
+ check(decl) {
+ return decl.prop === 'display' && decl.value === this.name
+ }
+}
+
+DisplayGrid.names = ['display-grid', 'inline-grid']
+
+module.exports = DisplayGrid
diff --git a/node_modules/autoprefixer/lib/hacks/file-selector-button.js b/node_modules/autoprefixer/lib/hacks/file-selector-button.js
new file mode 100644
index 0000000..18ebcea
--- /dev/null
+++ b/node_modules/autoprefixer/lib/hacks/file-selector-button.js
@@ -0,0 +1,26 @@
+let Selector = require('../selector')
+let utils = require('../utils')
+
+class FileSelectorButton extends Selector {
+ constructor(name, prefixes, all) {
+ super(name, prefixes, all)
+
+ if (this.prefixes) {
+ this.prefixes = utils.uniq(this.prefixes.map(() => '-webkit-'))
+ }
+ }
+
+ /**
+ * Return different selectors depend on prefix
+ */
+ prefixed(prefix) {
+ if (prefix === '-webkit-') {
+ return '::-webkit-file-upload-button'
+ }
+ return `::${prefix}file-selector-button`
+ }
+}
+
+FileSelectorButton.names = ['::file-selector-button']
+
+module.exports = FileSelectorButton
diff --git a/node_modules/autoprefixer/lib/hacks/filter-value.js b/node_modules/autoprefixer/lib/hacks/filter-value.js
new file mode 100644
index 0000000..98e5f61
--- /dev/null
+++ b/node_modules/autoprefixer/lib/hacks/filter-value.js
@@ -0,0 +1,14 @@
+let Value = require('../value')
+
+class FilterValue extends Value {
+ constructor(name, prefixes) {
+ super(name, prefixes)
+ if (name === 'filter-function') {
+ this.name = 'filter'
+ }
+ }
+}
+
+FilterValue.names = ['filter', 'filter-function']
+
+module.exports = FilterValue
diff --git a/node_modules/autoprefixer/lib/hacks/filter.js b/node_modules/autoprefixer/lib/hacks/filter.js
new file mode 100644
index 0000000..7ec6fbe
--- /dev/null
+++ b/node_modules/autoprefixer/lib/hacks/filter.js
@@ -0,0 +1,19 @@
+let Declaration = require('../declaration')
+
+class Filter extends Declaration {
+ /**
+ * Check is it Internet Explorer filter
+ */
+ check(decl) {
+ let v = decl.value
+ return (
+ !v.toLowerCase().includes('alpha(') &&
+ !v.includes('DXImageTransform.Microsoft') &&
+ !v.includes('data:image/svg+xml')
+ )
+ }
+}
+
+Filter.names = ['filter']
+
+module.exports = Filter
diff --git a/node_modules/autoprefixer/lib/hacks/flex-basis.js b/node_modules/autoprefixer/lib/hacks/flex-basis.js
new file mode 100644
index 0000000..959cf4c
--- /dev/null
+++ b/node_modules/autoprefixer/lib/hacks/flex-basis.js
@@ -0,0 +1,39 @@
+let flexSpec = require('./flex-spec')
+let Declaration = require('../declaration')
+
+class FlexBasis extends Declaration {
+ /**
+ * Return property name by final spec
+ */
+ normalize() {
+ return 'flex-basis'
+ }
+
+ /**
+ * Return flex property for 2012 spec
+ */
+ prefixed(prop, prefix) {
+ let spec
+ ;[spec, prefix] = flexSpec(prefix)
+ if (spec === 2012) {
+ return prefix + 'flex-preferred-size'
+ }
+ return super.prefixed(prop, prefix)
+ }
+
+ /**
+ * Ignore 2009 spec and use flex property for 2012
+ */
+ set(decl, prefix) {
+ let spec
+ ;[spec, prefix] = flexSpec(prefix)
+ if (spec === 2012 || spec === 'final') {
+ return super.set(decl, prefix)
+ }
+ return undefined
+ }
+}
+
+FlexBasis.names = ['flex-basis', 'flex-preferred-size']
+
+module.exports = FlexBasis
diff --git a/node_modules/autoprefixer/lib/hacks/flex-direction.js b/node_modules/autoprefixer/lib/hacks/flex-direction.js
new file mode 100644
index 0000000..b222b08
--- /dev/null
+++ b/node_modules/autoprefixer/lib/hacks/flex-direction.js
@@ -0,0 +1,72 @@
+let flexSpec = require('./flex-spec')
+let Declaration = require('../declaration')
+
+class FlexDirection extends Declaration {
+ /**
+ * Return property name by final spec
+ */
+ normalize() {
+ return 'flex-direction'
+ }
+
+ /**
+ * Use two properties for 2009 spec
+ */
+ insert(decl, prefix, prefixes) {
+ let spec
+ ;[spec, prefix] = flexSpec(prefix)
+ if (spec !== 2009) {
+ return super.insert(decl, prefix, prefixes)
+ }
+ let already = decl.parent.some(
+ i =>
+ i.prop === prefix + 'box-orient' || i.prop === prefix + 'box-direction'
+ )
+ if (already) {
+ return undefined
+ }
+
+ let v = decl.value
+ let orient, dir
+ if (v === 'inherit' || v === 'initial' || v === 'unset') {
+ orient = v
+ dir = v
+ } else {
+ orient = v.includes('row') ? 'horizontal' : 'vertical'
+ dir = v.includes('reverse') ? 'reverse' : 'normal'
+ }
+
+ let cloned = this.clone(decl)
+ cloned.prop = prefix + 'box-orient'
+ cloned.value = orient
+ if (this.needCascade(decl)) {
+ cloned.raws.before = this.calcBefore(prefixes, decl, prefix)
+ }
+ decl.parent.insertBefore(decl, cloned)
+
+ cloned = this.clone(decl)
+ cloned.prop = prefix + 'box-direction'
+ cloned.value = dir
+ if (this.needCascade(decl)) {
+ cloned.raws.before = this.calcBefore(prefixes, decl, prefix)
+ }
+ return decl.parent.insertBefore(decl, cloned)
+ }
+
+ /**
+ * Clean two properties for 2009 spec
+ */
+ old(prop, prefix) {
+ let spec
+ ;[spec, prefix] = flexSpec(prefix)
+ if (spec === 2009) {
+ return [prefix + 'box-orient', prefix + 'box-direction']
+ } else {
+ return super.old(prop, prefix)
+ }
+ }
+}
+
+FlexDirection.names = ['flex-direction', 'box-direction', 'box-orient']
+
+module.exports = FlexDirection
diff --git a/node_modules/autoprefixer/lib/hacks/flex-flow.js b/node_modules/autoprefixer/lib/hacks/flex-flow.js
new file mode 100644
index 0000000..0223bd8
--- /dev/null
+++ b/node_modules/autoprefixer/lib/hacks/flex-flow.js
@@ -0,0 +1,53 @@
+let flexSpec = require('./flex-spec')
+let Declaration = require('../declaration')
+
+class FlexFlow extends Declaration {
+ /**
+ * Use two properties for 2009 spec
+ */
+ insert(decl, prefix, prefixes) {
+ let spec
+ ;[spec, prefix] = flexSpec(prefix)
+ if (spec !== 2009) {
+ return super.insert(decl, prefix, prefixes)
+ }
+ let values = decl.value
+ .split(/\s+/)
+ .filter(i => i !== 'wrap' && i !== 'nowrap' && 'wrap-reverse')
+ if (values.length === 0) {
+ return undefined
+ }
+
+ let already = decl.parent.some(
+ i =>
+ i.prop === prefix + 'box-orient' || i.prop === prefix + 'box-direction'
+ )
+ if (already) {
+ return undefined
+ }
+
+ let value = values[0]
+ let orient = value.includes('row') ? 'horizontal' : 'vertical'
+ let dir = value.includes('reverse') ? 'reverse' : 'normal'
+
+ let cloned = this.clone(decl)
+ cloned.prop = prefix + 'box-orient'
+ cloned.value = orient
+ if (this.needCascade(decl)) {
+ cloned.raws.before = this.calcBefore(prefixes, decl, prefix)
+ }
+ decl.parent.insertBefore(decl, cloned)
+
+ cloned = this.clone(decl)
+ cloned.prop = prefix + 'box-direction'
+ cloned.value = dir
+ if (this.needCascade(decl)) {
+ cloned.raws.before = this.calcBefore(prefixes, decl, prefix)
+ }
+ return decl.parent.insertBefore(decl, cloned)
+ }
+}
+
+FlexFlow.names = ['flex-flow', 'box-direction', 'box-orient']
+
+module.exports = FlexFlow
diff --git a/node_modules/autoprefixer/lib/hacks/flex-grow.js b/node_modules/autoprefixer/lib/hacks/flex-grow.js
new file mode 100644
index 0000000..d53374b
--- /dev/null
+++ b/node_modules/autoprefixer/lib/hacks/flex-grow.js
@@ -0,0 +1,30 @@
+let flexSpec = require('./flex-spec')
+let Declaration = require('../declaration')
+
+class Flex extends Declaration {
+ /**
+ * Return property name by final spec
+ */
+ normalize() {
+ return 'flex'
+ }
+
+ /**
+ * Return flex property for 2009 and 2012 specs
+ */
+ prefixed(prop, prefix) {
+ let spec
+ ;[spec, prefix] = flexSpec(prefix)
+ if (spec === 2009) {
+ return prefix + 'box-flex'
+ }
+ if (spec === 2012) {
+ return prefix + 'flex-positive'
+ }
+ return super.prefixed(prop, prefix)
+ }
+}
+
+Flex.names = ['flex-grow', 'flex-positive']
+
+module.exports = Flex
diff --git a/node_modules/autoprefixer/lib/hacks/flex-shrink.js b/node_modules/autoprefixer/lib/hacks/flex-shrink.js
new file mode 100644
index 0000000..fbd0e82
--- /dev/null
+++ b/node_modules/autoprefixer/lib/hacks/flex-shrink.js
@@ -0,0 +1,39 @@
+let flexSpec = require('./flex-spec')
+let Declaration = require('../declaration')
+
+class FlexShrink extends Declaration {
+ /**
+ * Return property name by final spec
+ */
+ normalize() {
+ return 'flex-shrink'
+ }
+
+ /**
+ * Return flex property for 2012 spec
+ */
+ prefixed(prop, prefix) {
+ let spec
+ ;[spec, prefix] = flexSpec(prefix)
+ if (spec === 2012) {
+ return prefix + 'flex-negative'
+ }
+ return super.prefixed(prop, prefix)
+ }
+
+ /**
+ * Ignore 2009 spec and use flex property for 2012
+ */
+ set(decl, prefix) {
+ let spec
+ ;[spec, prefix] = flexSpec(prefix)
+ if (spec === 2012 || spec === 'final') {
+ return super.set(decl, prefix)
+ }
+ return undefined
+ }
+}
+
+FlexShrink.names = ['flex-shrink', 'flex-negative']
+
+module.exports = FlexShrink
diff --git a/node_modules/autoprefixer/lib/hacks/flex-spec.js b/node_modules/autoprefixer/lib/hacks/flex-spec.js
new file mode 100644
index 0000000..a077d66
--- /dev/null
+++ b/node_modules/autoprefixer/lib/hacks/flex-spec.js
@@ -0,0 +1,19 @@
+/**
+ * Return flexbox spec versions by prefix
+ */
+module.exports = function (prefix) {
+ let spec
+ if (prefix === '-webkit- 2009' || prefix === '-moz-') {
+ spec = 2009
+ } else if (prefix === '-ms-') {
+ spec = 2012
+ } else if (prefix === '-webkit-') {
+ spec = 'final'
+ }
+
+ if (prefix === '-webkit- 2009') {
+ prefix = '-webkit-'
+ }
+
+ return [spec, prefix]
+}
diff --git a/node_modules/autoprefixer/lib/hacks/flex-wrap.js b/node_modules/autoprefixer/lib/hacks/flex-wrap.js
new file mode 100644
index 0000000..8570476
--- /dev/null
+++ b/node_modules/autoprefixer/lib/hacks/flex-wrap.js
@@ -0,0 +1,19 @@
+let flexSpec = require('./flex-spec')
+let Declaration = require('../declaration')
+
+class FlexWrap extends Declaration {
+ /**
+ * Don't add prefix for 2009 spec
+ */
+ set(decl, prefix) {
+ let spec = flexSpec(prefix)[0]
+ if (spec !== 2009) {
+ return super.set(decl, prefix)
+ }
+ return undefined
+ }
+}
+
+FlexWrap.names = ['flex-wrap']
+
+module.exports = FlexWrap
diff --git a/node_modules/autoprefixer/lib/hacks/flex.js b/node_modules/autoprefixer/lib/hacks/flex.js
new file mode 100644
index 0000000..6a4fdf7
--- /dev/null
+++ b/node_modules/autoprefixer/lib/hacks/flex.js
@@ -0,0 +1,54 @@
+let list = require('postcss').list
+
+let flexSpec = require('./flex-spec')
+let Declaration = require('../declaration')
+
+class Flex extends Declaration {
+ /**
+ * Change property name for 2009 spec
+ */
+ prefixed(prop, prefix) {
+ let spec
+ ;[spec, prefix] = flexSpec(prefix)
+ if (spec === 2009) {
+ return prefix + 'box-flex'
+ }
+ return super.prefixed(prop, prefix)
+ }
+
+ /**
+ * Return property name by final spec
+ */
+ normalize() {
+ return 'flex'
+ }
+
+ /**
+ * Spec 2009 supports only first argument
+ * Spec 2012 disallows unitless basis
+ */
+ set(decl, prefix) {
+ let spec = flexSpec(prefix)[0]
+ if (spec === 2009) {
+ decl.value = list.space(decl.value)[0]
+ decl.value = Flex.oldValues[decl.value] || decl.value
+ return super.set(decl, prefix)
+ }
+ if (spec === 2012) {
+ let components = list.space(decl.value)
+ if (components.length === 3 && components[2] === '0') {
+ decl.value = components.slice(0, 2).concat('0px').join(' ')
+ }
+ }
+ return super.set(decl, prefix)
+ }
+}
+
+Flex.names = ['flex', 'box-flex']
+
+Flex.oldValues = {
+ auto: '1',
+ none: '0'
+}
+
+module.exports = Flex
diff --git a/node_modules/autoprefixer/lib/hacks/fullscreen.js b/node_modules/autoprefixer/lib/hacks/fullscreen.js
new file mode 100644
index 0000000..5a74390
--- /dev/null
+++ b/node_modules/autoprefixer/lib/hacks/fullscreen.js
@@ -0,0 +1,20 @@
+let Selector = require('../selector')
+
+class Fullscreen extends Selector {
+ /**
+ * Return different selectors depend on prefix
+ */
+ prefixed(prefix) {
+ if (prefix === '-webkit-') {
+ return ':-webkit-full-screen'
+ }
+ if (prefix === '-moz-') {
+ return ':-moz-full-screen'
+ }
+ return `:${prefix}fullscreen`
+ }
+}
+
+Fullscreen.names = [':fullscreen']
+
+module.exports = Fullscreen
diff --git a/node_modules/autoprefixer/lib/hacks/gradient.js b/node_modules/autoprefixer/lib/hacks/gradient.js
new file mode 100644
index 0000000..48e1332
--- /dev/null
+++ b/node_modules/autoprefixer/lib/hacks/gradient.js
@@ -0,0 +1,448 @@
+let parser = require('postcss-value-parser')
+let range = require('normalize-range')
+
+let OldValue = require('../old-value')
+let Value = require('../value')
+let utils = require('../utils')
+
+let IS_DIRECTION = /top|left|right|bottom/gi
+
+class Gradient extends Value {
+ /**
+ * Change degrees for webkit prefix
+ */
+ replace(string, prefix) {
+ let ast = parser(string)
+ for (let node of ast.nodes) {
+ let gradientName = this.name // gradient name
+ if (node.type === 'function' && node.value === gradientName) {
+ node.nodes = this.newDirection(node.nodes)
+ node.nodes = this.normalize(node.nodes, gradientName)
+ if (prefix === '-webkit- old') {
+ let changes = this.oldWebkit(node)
+ if (!changes) {
+ return false
+ }
+ } else {
+ node.nodes = this.convertDirection(node.nodes)
+ node.value = prefix + node.value
+ }
+ }
+ }
+ return ast.toString()
+ }
+
+ /**
+ * Replace first token
+ */
+ replaceFirst(params, ...words) {
+ let prefix = words.map(i => {
+ if (i === ' ') {
+ return { type: 'space', value: i }
+ }
+ return { type: 'word', value: i }
+ })
+ return prefix.concat(params.slice(1))
+ }
+
+ /**
+ * Convert angle unit to deg
+ */
+ normalizeUnit(str, full) {
+ let num = parseFloat(str)
+ let deg = (num / full) * 360
+ return `${deg}deg`
+ }
+
+ /**
+ * Normalize angle
+ */
+ normalize(nodes, gradientName) {
+ if (!nodes[0]) return nodes
+
+ if (/-?\d+(.\d+)?grad/.test(nodes[0].value)) {
+ nodes[0].value = this.normalizeUnit(nodes[0].value, 400)
+ } else if (/-?\d+(.\d+)?rad/.test(nodes[0].value)) {
+ nodes[0].value = this.normalizeUnit(nodes[0].value, 2 * Math.PI)
+ } else if (/-?\d+(.\d+)?turn/.test(nodes[0].value)) {
+ nodes[0].value = this.normalizeUnit(nodes[0].value, 1)
+ } else if (nodes[0].value.includes('deg')) {
+ let num = parseFloat(nodes[0].value)
+ num = range.wrap(0, 360, num)
+ nodes[0].value = `${num}deg`
+ }
+
+ if (
+ gradientName === 'linear-gradient' ||
+ gradientName === 'repeating-linear-gradient'
+ ) {
+ let direction = nodes[0].value
+
+ // Unitless zero for `` values are allowed in CSS gradients and transforms.
+ // Spec: https://github.com/w3c/csswg-drafts/commit/602789171429b2231223ab1e5acf8f7f11652eb3
+ if (direction === '0deg' || direction === '0') {
+ nodes = this.replaceFirst(nodes, 'to', ' ', 'top')
+ } else if (direction === '90deg') {
+ nodes = this.replaceFirst(nodes, 'to', ' ', 'right')
+ } else if (direction === '180deg') {
+ nodes = this.replaceFirst(nodes, 'to', ' ', 'bottom') // default value
+ } else if (direction === '270deg') {
+ nodes = this.replaceFirst(nodes, 'to', ' ', 'left')
+ }
+ }
+
+ return nodes
+ }
+
+ /**
+ * Replace old direction to new
+ */
+ newDirection(params) {
+ if (params[0].value === 'to') {
+ return params
+ }
+ IS_DIRECTION.lastIndex = 0 // reset search index of global regexp
+ if (!IS_DIRECTION.test(params[0].value)) {
+ return params
+ }
+
+ params.unshift(
+ {
+ type: 'word',
+ value: 'to'
+ },
+ {
+ type: 'space',
+ value: ' '
+ }
+ )
+
+ for (let i = 2; i < params.length; i++) {
+ if (params[i].type === 'div') {
+ break
+ }
+ if (params[i].type === 'word') {
+ params[i].value = this.revertDirection(params[i].value)
+ }
+ }
+
+ return params
+ }
+
+ /**
+ * Look for at word
+ */
+ isRadial(params) {
+ let state = 'before'
+ for (let param of params) {
+ if (state === 'before' && param.type === 'space') {
+ state = 'at'
+ } else if (state === 'at' && param.value === 'at') {
+ state = 'after'
+ } else if (state === 'after' && param.type === 'space') {
+ return true
+ } else if (param.type === 'div') {
+ break
+ } else {
+ state = 'before'
+ }
+ }
+ return false
+ }
+
+ /**
+ * Change new direction to old
+ */
+ convertDirection(params) {
+ if (params.length > 0) {
+ if (params[0].value === 'to') {
+ this.fixDirection(params)
+ } else if (params[0].value.includes('deg')) {
+ this.fixAngle(params)
+ } else if (this.isRadial(params)) {
+ this.fixRadial(params)
+ }
+ }
+ return params
+ }
+
+ /**
+ * Replace `to top left` to `bottom right`
+ */
+ fixDirection(params) {
+ params.splice(0, 2)
+
+ for (let param of params) {
+ if (param.type === 'div') {
+ break
+ }
+ if (param.type === 'word') {
+ param.value = this.revertDirection(param.value)
+ }
+ }
+ }
+
+ /**
+ * Add 90 degrees
+ */
+ fixAngle(params) {
+ let first = params[0].value
+ first = parseFloat(first)
+ first = Math.abs(450 - first) % 360
+ first = this.roundFloat(first, 3)
+ params[0].value = `${first}deg`
+ }
+
+ /**
+ * Fix radial direction syntax
+ */
+ fixRadial(params) {
+ let first = []
+ let second = []
+ let a, b, c, i, next
+
+ for (i = 0; i < params.length - 2; i++) {
+ a = params[i]
+ b = params[i + 1]
+ c = params[i + 2]
+ if (a.type === 'space' && b.value === 'at' && c.type === 'space') {
+ next = i + 3
+ break
+ } else {
+ first.push(a)
+ }
+ }
+
+ let div
+ for (i = next; i < params.length; i++) {
+ if (params[i].type === 'div') {
+ div = params[i]
+ break
+ } else {
+ second.push(params[i])
+ }
+ }
+
+ params.splice(0, i, ...second, div, ...first)
+ }
+
+ revertDirection(word) {
+ return Gradient.directions[word.toLowerCase()] || word
+ }
+
+ /**
+ * Round float and save digits under dot
+ */
+ roundFloat(float, digits) {
+ return parseFloat(float.toFixed(digits))
+ }
+
+ /**
+ * Convert to old webkit syntax
+ */
+ oldWebkit(node) {
+ let { nodes } = node
+ let string = parser.stringify(node.nodes)
+
+ if (this.name !== 'linear-gradient') {
+ return false
+ }
+ if (nodes[0] && nodes[0].value.includes('deg')) {
+ return false
+ }
+ if (
+ string.includes('px') ||
+ string.includes('-corner') ||
+ string.includes('-side')
+ ) {
+ return false
+ }
+
+ let params = [[]]
+ for (let i of nodes) {
+ params[params.length - 1].push(i)
+ if (i.type === 'div' && i.value === ',') {
+ params.push([])
+ }
+ }
+
+ this.oldDirection(params)
+ this.colorStops(params)
+
+ node.nodes = []
+ for (let param of params) {
+ node.nodes = node.nodes.concat(param)
+ }
+
+ node.nodes.unshift(
+ { type: 'word', value: 'linear' },
+ this.cloneDiv(node.nodes)
+ )
+ node.value = '-webkit-gradient'
+
+ return true
+ }
+
+ /**
+ * Change direction syntax to old webkit
+ */
+ oldDirection(params) {
+ let div = this.cloneDiv(params[0])
+
+ if (params[0][0].value !== 'to') {
+ return params.unshift([
+ { type: 'word', value: Gradient.oldDirections.bottom },
+ div
+ ])
+ } else {
+ let words = []
+ for (let node of params[0].slice(2)) {
+ if (node.type === 'word') {
+ words.push(node.value.toLowerCase())
+ }
+ }
+
+ words = words.join(' ')
+ let old = Gradient.oldDirections[words] || words
+
+ params[0] = [{ type: 'word', value: old }, div]
+ return params[0]
+ }
+ }
+
+ /**
+ * Get div token from exists parameters
+ */
+ cloneDiv(params) {
+ for (let i of params) {
+ if (i.type === 'div' && i.value === ',') {
+ return i
+ }
+ }
+ return { type: 'div', value: ',', after: ' ' }
+ }
+
+ /**
+ * Change colors syntax to old webkit
+ */
+ colorStops(params) {
+ let result = []
+ for (let i = 0; i < params.length; i++) {
+ let pos
+ let param = params[i]
+ let item
+ if (i === 0) {
+ continue
+ }
+
+ let color = parser.stringify(param[0])
+ if (param[1] && param[1].type === 'word') {
+ pos = param[1].value
+ } else if (param[2] && param[2].type === 'word') {
+ pos = param[2].value
+ }
+
+ let stop
+ if (i === 1 && (!pos || pos === '0%')) {
+ stop = `from(${color})`
+ } else if (i === params.length - 1 && (!pos || pos === '100%')) {
+ stop = `to(${color})`
+ } else if (pos) {
+ stop = `color-stop(${pos}, ${color})`
+ } else {
+ stop = `color-stop(${color})`
+ }
+
+ let div = param[param.length - 1]
+ params[i] = [{ type: 'word', value: stop }]
+ if (div.type === 'div' && div.value === ',') {
+ item = params[i].push(div)
+ }
+ result.push(item)
+ }
+ return result
+ }
+
+ /**
+ * Remove old WebKit gradient too
+ */
+ old(prefix) {
+ if (prefix === '-webkit-') {
+ let type
+ if (this.name === 'linear-gradient') {
+ type = 'linear'
+ } else if (this.name === 'repeating-linear-gradient') {
+ type = 'repeating-linear'
+ } else if (this.name === 'repeating-radial-gradient') {
+ type = 'repeating-radial'
+ } else {
+ type = 'radial'
+ }
+ let string = '-gradient'
+ let regexp = utils.regexp(
+ `-webkit-(${type}-gradient|gradient\\(\\s*${type})`,
+ false
+ )
+
+ return new OldValue(this.name, prefix + this.name, string, regexp)
+ } else {
+ return super.old(prefix)
+ }
+ }
+
+ /**
+ * Do not add non-webkit prefixes for list-style and object
+ */
+ add(decl, prefix) {
+ let p = decl.prop
+ if (p.includes('mask')) {
+ if (prefix === '-webkit-' || prefix === '-webkit- old') {
+ return super.add(decl, prefix)
+ }
+ } else if (
+ p === 'list-style' ||
+ p === 'list-style-image' ||
+ p === 'content'
+ ) {
+ if (prefix === '-webkit-' || prefix === '-webkit- old') {
+ return super.add(decl, prefix)
+ }
+ } else {
+ return super.add(decl, prefix)
+ }
+ return undefined
+ }
+}
+
+Gradient.names = [
+ 'linear-gradient',
+ 'repeating-linear-gradient',
+ 'radial-gradient',
+ 'repeating-radial-gradient'
+]
+
+Gradient.directions = {
+ top: 'bottom', // default value
+ left: 'right',
+ bottom: 'top',
+ right: 'left'
+}
+
+// Direction to replace
+Gradient.oldDirections = {
+ 'top': 'left bottom, left top',
+ 'left': 'right top, left top',
+ 'bottom': 'left top, left bottom',
+ 'right': 'left top, right top',
+
+ 'top right': 'left bottom, right top',
+ 'top left': 'right bottom, left top',
+ 'right top': 'left bottom, right top',
+ 'right bottom': 'left top, right bottom',
+ 'bottom right': 'left top, right bottom',
+ 'bottom left': 'right top, left bottom',
+ 'left top': 'right bottom, left top',
+ 'left bottom': 'right top, left bottom'
+}
+
+module.exports = Gradient
diff --git a/node_modules/autoprefixer/lib/hacks/grid-area.js b/node_modules/autoprefixer/lib/hacks/grid-area.js
new file mode 100644
index 0000000..0a2d86c
--- /dev/null
+++ b/node_modules/autoprefixer/lib/hacks/grid-area.js
@@ -0,0 +1,34 @@
+let Declaration = require('../declaration')
+let utils = require('./grid-utils')
+
+class GridArea extends Declaration {
+ /**
+ * Translate grid-area to separate -ms- prefixed properties
+ */
+ insert(decl, prefix, prefixes, result) {
+ if (prefix !== '-ms-') return super.insert(decl, prefix, prefixes)
+
+ let values = utils.parse(decl)
+
+ let [rowStart, rowSpan] = utils.translate(values, 0, 2)
+ let [columnStart, columnSpan] = utils.translate(values, 1, 3)
+
+ ;[
+ ['grid-row', rowStart],
+ ['grid-row-span', rowSpan],
+ ['grid-column', columnStart],
+ ['grid-column-span', columnSpan]
+ ].forEach(([prop, value]) => {
+ utils.insertDecl(decl, prop, value)
+ })
+
+ utils.warnTemplateSelectorNotFound(decl, result)
+ utils.warnIfGridRowColumnExists(decl, result)
+
+ return undefined
+ }
+}
+
+GridArea.names = ['grid-area']
+
+module.exports = GridArea
diff --git a/node_modules/autoprefixer/lib/hacks/grid-column-align.js b/node_modules/autoprefixer/lib/hacks/grid-column-align.js
new file mode 100644
index 0000000..79c51be
--- /dev/null
+++ b/node_modules/autoprefixer/lib/hacks/grid-column-align.js
@@ -0,0 +1,28 @@
+let Declaration = require('../declaration')
+
+class GridColumnAlign extends Declaration {
+ /**
+ * Do not prefix flexbox values
+ */
+ check(decl) {
+ return !decl.value.includes('flex-') && decl.value !== 'baseline'
+ }
+
+ /**
+ * Change property name for IE
+ */
+ prefixed(prop, prefix) {
+ return prefix + 'grid-column-align'
+ }
+
+ /**
+ * Change IE property back
+ */
+ normalize() {
+ return 'justify-self'
+ }
+}
+
+GridColumnAlign.names = ['grid-column-align']
+
+module.exports = GridColumnAlign
diff --git a/node_modules/autoprefixer/lib/hacks/grid-end.js b/node_modules/autoprefixer/lib/hacks/grid-end.js
new file mode 100644
index 0000000..63f6a42
--- /dev/null
+++ b/node_modules/autoprefixer/lib/hacks/grid-end.js
@@ -0,0 +1,52 @@
+let Declaration = require('../declaration')
+let { isPureNumber } = require('../utils')
+
+class GridEnd extends Declaration {
+ /**
+ * Change repeating syntax for IE
+ */
+ insert(decl, prefix, prefixes, result) {
+ if (prefix !== '-ms-') return super.insert(decl, prefix, prefixes)
+
+ let clonedDecl = this.clone(decl)
+
+ let startProp = decl.prop.replace(/end$/, 'start')
+ let spanProp = prefix + decl.prop.replace(/end$/, 'span')
+
+ if (decl.parent.some(i => i.prop === spanProp)) {
+ return undefined
+ }
+
+ clonedDecl.prop = spanProp
+
+ if (decl.value.includes('span')) {
+ clonedDecl.value = decl.value.replace(/span\s/i, '')
+ } else {
+ let startDecl
+ decl.parent.walkDecls(startProp, d => {
+ startDecl = d
+ })
+ if (startDecl) {
+ if (isPureNumber(startDecl.value)) {
+ let value = Number(decl.value) - Number(startDecl.value) + ''
+ clonedDecl.value = value
+ } else {
+ return undefined
+ }
+ } else {
+ decl.warn(
+ result,
+ `Can not prefix ${decl.prop} (${startProp} is not found)`
+ )
+ }
+ }
+
+ decl.cloneBefore(clonedDecl)
+
+ return undefined
+ }
+}
+
+GridEnd.names = ['grid-row-end', 'grid-column-end']
+
+module.exports = GridEnd
diff --git a/node_modules/autoprefixer/lib/hacks/grid-row-align.js b/node_modules/autoprefixer/lib/hacks/grid-row-align.js
new file mode 100644
index 0000000..4b3bf86
--- /dev/null
+++ b/node_modules/autoprefixer/lib/hacks/grid-row-align.js
@@ -0,0 +1,28 @@
+let Declaration = require('../declaration')
+
+class GridRowAlign extends Declaration {
+ /**
+ * Do not prefix flexbox values
+ */
+ check(decl) {
+ return !decl.value.includes('flex-') && decl.value !== 'baseline'
+ }
+
+ /**
+ * Change property name for IE
+ */
+ prefixed(prop, prefix) {
+ return prefix + 'grid-row-align'
+ }
+
+ /**
+ * Change IE property back
+ */
+ normalize() {
+ return 'align-self'
+ }
+}
+
+GridRowAlign.names = ['grid-row-align']
+
+module.exports = GridRowAlign
diff --git a/node_modules/autoprefixer/lib/hacks/grid-row-column.js b/node_modules/autoprefixer/lib/hacks/grid-row-column.js
new file mode 100644
index 0000000..2199f78
--- /dev/null
+++ b/node_modules/autoprefixer/lib/hacks/grid-row-column.js
@@ -0,0 +1,33 @@
+let Declaration = require('../declaration')
+let utils = require('./grid-utils')
+
+class GridRowColumn extends Declaration {
+ /**
+ * Translate grid-row / grid-column to separate -ms- prefixed properties
+ */
+ insert(decl, prefix, prefixes) {
+ if (prefix !== '-ms-') return super.insert(decl, prefix, prefixes)
+
+ let values = utils.parse(decl)
+ let [start, span] = utils.translate(values, 0, 1)
+
+ let hasStartValueSpan = values[0] && values[0].includes('span')
+
+ if (hasStartValueSpan) {
+ span = values[0].join('').replace(/\D/g, '')
+ }
+
+ ;[
+ [decl.prop, start],
+ [`${decl.prop}-span`, span]
+ ].forEach(([prop, value]) => {
+ utils.insertDecl(decl, prop, value)
+ })
+
+ return undefined
+ }
+}
+
+GridRowColumn.names = ['grid-row', 'grid-column']
+
+module.exports = GridRowColumn
diff --git a/node_modules/autoprefixer/lib/hacks/grid-rows-columns.js b/node_modules/autoprefixer/lib/hacks/grid-rows-columns.js
new file mode 100644
index 0000000..ca10977
--- /dev/null
+++ b/node_modules/autoprefixer/lib/hacks/grid-rows-columns.js
@@ -0,0 +1,125 @@
+let Declaration = require('../declaration')
+let {
+ prefixTrackProp,
+ prefixTrackValue,
+ autoplaceGridItems,
+ getGridGap,
+ inheritGridGap
+} = require('./grid-utils')
+let Processor = require('../processor')
+
+class GridRowsColumns extends Declaration {
+ /**
+ * Change property name for IE
+ */
+ prefixed(prop, prefix) {
+ if (prefix === '-ms-') {
+ return prefixTrackProp({ prop, prefix })
+ }
+ return super.prefixed(prop, prefix)
+ }
+
+ /**
+ * Change IE property back
+ */
+ normalize(prop) {
+ return prop.replace(/^grid-(rows|columns)/, 'grid-template-$1')
+ }
+
+ insert(decl, prefix, prefixes, result) {
+ if (prefix !== '-ms-') return super.insert(decl, prefix, prefixes)
+
+ let { parent, prop, value } = decl
+ let isRowProp = prop.includes('rows')
+ let isColumnProp = prop.includes('columns')
+
+ let hasGridTemplate = parent.some(
+ i => i.prop === 'grid-template' || i.prop === 'grid-template-areas'
+ )
+
+ /**
+ * Not to prefix rows declaration if grid-template(-areas) is present
+ */
+ if (hasGridTemplate && isRowProp) {
+ return false
+ }
+
+ let processor = new Processor({ options: {} })
+ let status = processor.gridStatus(parent, result)
+ let gap = getGridGap(decl)
+ gap = inheritGridGap(decl, gap) || gap
+
+ let gapValue = isRowProp ? gap.row : gap.column
+
+ if ((status === 'no-autoplace' || status === true) && !hasGridTemplate) {
+ gapValue = null
+ }
+
+ let prefixValue = prefixTrackValue({
+ value,
+ gap: gapValue
+ })
+
+ /**
+ * Insert prefixes
+ */
+ decl.cloneBefore({
+ prop: prefixTrackProp({ prop, prefix }),
+ value: prefixValue
+ })
+
+ let autoflow = parent.nodes.find(i => i.prop === 'grid-auto-flow')
+ let autoflowValue = 'row'
+
+ if (autoflow && !processor.disabled(autoflow, result)) {
+ autoflowValue = autoflow.value.trim()
+ }
+ if (status === 'autoplace') {
+ /**
+ * Show warning if grid-template-rows decl is not found
+ */
+ let rowDecl = parent.nodes.find(i => i.prop === 'grid-template-rows')
+
+ if (!rowDecl && hasGridTemplate) {
+ return undefined
+ } else if (!rowDecl && !hasGridTemplate) {
+ decl.warn(
+ result,
+ 'Autoplacement does not work without grid-template-rows property'
+ )
+ return undefined
+ }
+
+ /**
+ * Show warning if grid-template-columns decl is not found
+ */
+ let columnDecl = parent.nodes.find(i => {
+ return i.prop === 'grid-template-columns'
+ })
+ if (!columnDecl && !hasGridTemplate) {
+ decl.warn(
+ result,
+ 'Autoplacement does not work without grid-template-columns property'
+ )
+ }
+
+ /**
+ * Autoplace grid items
+ */
+ if (isColumnProp && !hasGridTemplate) {
+ autoplaceGridItems(decl, result, gap, autoflowValue)
+ }
+ }
+
+ return undefined
+ }
+}
+
+GridRowsColumns.names = [
+ 'grid-template-rows',
+ 'grid-template-columns',
+ 'grid-rows',
+ 'grid-columns'
+]
+
+module.exports = GridRowsColumns
diff --git a/node_modules/autoprefixer/lib/hacks/grid-start.js b/node_modules/autoprefixer/lib/hacks/grid-start.js
new file mode 100644
index 0000000..32cebc1
--- /dev/null
+++ b/node_modules/autoprefixer/lib/hacks/grid-start.js
@@ -0,0 +1,33 @@
+let Declaration = require('../declaration')
+
+class GridStart extends Declaration {
+ /**
+ * Do not add prefix for unsupported value in IE
+ */
+ check(decl) {
+ let value = decl.value
+ return !value.includes('/') && !value.includes('span')
+ }
+
+ /**
+ * Return a final spec property
+ */
+ normalize(prop) {
+ return prop.replace('-start', '')
+ }
+
+ /**
+ * Change property name for IE
+ */
+ prefixed(prop, prefix) {
+ let result = super.prefixed(prop, prefix)
+ if (prefix === '-ms-') {
+ result = result.replace('-start', '')
+ }
+ return result
+ }
+}
+
+GridStart.names = ['grid-row-start', 'grid-column-start']
+
+module.exports = GridStart
diff --git a/node_modules/autoprefixer/lib/hacks/grid-template-areas.js b/node_modules/autoprefixer/lib/hacks/grid-template-areas.js
new file mode 100644
index 0000000..9c7f214
--- /dev/null
+++ b/node_modules/autoprefixer/lib/hacks/grid-template-areas.js
@@ -0,0 +1,84 @@
+let Declaration = require('../declaration')
+let {
+ parseGridAreas,
+ warnMissedAreas,
+ prefixTrackProp,
+ prefixTrackValue,
+ getGridGap,
+ warnGridGap,
+ inheritGridGap
+} = require('./grid-utils')
+
+function getGridRows(tpl) {
+ return tpl
+ .trim()
+ .slice(1, -1)
+ .split(/["']\s*["']?/g)
+}
+
+class GridTemplateAreas extends Declaration {
+ /**
+ * Translate grid-template-areas to separate -ms- prefixed properties
+ */
+ insert(decl, prefix, prefixes, result) {
+ if (prefix !== '-ms-') return super.insert(decl, prefix, prefixes)
+
+ let hasColumns = false
+ let hasRows = false
+ let parent = decl.parent
+ let gap = getGridGap(decl)
+ gap = inheritGridGap(decl, gap) || gap
+
+ // remove already prefixed rows
+ // to prevent doubling prefixes
+ parent.walkDecls(/-ms-grid-rows/, i => i.remove())
+
+ // add empty tracks to rows
+ parent.walkDecls(/grid-template-(rows|columns)/, trackDecl => {
+ if (trackDecl.prop === 'grid-template-rows') {
+ hasRows = true
+ let { prop, value } = trackDecl
+ trackDecl.cloneBefore({
+ prop: prefixTrackProp({ prop, prefix }),
+ value: prefixTrackValue({ value, gap: gap.row })
+ })
+ } else {
+ hasColumns = true
+ }
+ })
+
+ let gridRows = getGridRows(decl.value)
+
+ if (hasColumns && !hasRows && gap.row && gridRows.length > 1) {
+ decl.cloneBefore({
+ prop: '-ms-grid-rows',
+ value: prefixTrackValue({
+ value: `repeat(${gridRows.length}, auto)`,
+ gap: gap.row
+ }),
+ raws: {}
+ })
+ }
+
+ // warnings
+ warnGridGap({
+ gap,
+ hasColumns,
+ decl,
+ result
+ })
+
+ let areas = parseGridAreas({
+ rows: gridRows,
+ gap
+ })
+
+ warnMissedAreas(areas, decl, result)
+
+ return decl
+ }
+}
+
+GridTemplateAreas.names = ['grid-template-areas']
+
+module.exports = GridTemplateAreas
diff --git a/node_modules/autoprefixer/lib/hacks/grid-template.js b/node_modules/autoprefixer/lib/hacks/grid-template.js
new file mode 100644
index 0000000..d2c5ea2
--- /dev/null
+++ b/node_modules/autoprefixer/lib/hacks/grid-template.js
@@ -0,0 +1,69 @@
+let Declaration = require('../declaration')
+let {
+ parseTemplate,
+ warnMissedAreas,
+ getGridGap,
+ warnGridGap,
+ inheritGridGap
+} = require('./grid-utils')
+
+class GridTemplate extends Declaration {
+ /**
+ * Translate grid-template to separate -ms- prefixed properties
+ */
+ insert(decl, prefix, prefixes, result) {
+ if (prefix !== '-ms-') return super.insert(decl, prefix, prefixes)
+
+ if (decl.parent.some(i => i.prop === '-ms-grid-rows')) {
+ return undefined
+ }
+
+ let gap = getGridGap(decl)
+
+ /**
+ * we must insert inherited gap values in some cases:
+ * if we are inside media query && if we have no grid-gap value
+ */
+ let inheritedGap = inheritGridGap(decl, gap)
+
+ let { rows, columns, areas } = parseTemplate({
+ decl,
+ gap: inheritedGap || gap
+ })
+
+ let hasAreas = Object.keys(areas).length > 0
+ let hasRows = Boolean(rows)
+ let hasColumns = Boolean(columns)
+
+ warnGridGap({
+ gap,
+ hasColumns,
+ decl,
+ result
+ })
+
+ warnMissedAreas(areas, decl, result)
+
+ if ((hasRows && hasColumns) || hasAreas) {
+ decl.cloneBefore({
+ prop: '-ms-grid-rows',
+ value: rows,
+ raws: {}
+ })
+ }
+
+ if (hasColumns) {
+ decl.cloneBefore({
+ prop: '-ms-grid-columns',
+ value: columns,
+ raws: {}
+ })
+ }
+
+ return decl
+ }
+}
+
+GridTemplate.names = ['grid-template']
+
+module.exports = GridTemplate
diff --git a/node_modules/autoprefixer/lib/hacks/grid-utils.js b/node_modules/autoprefixer/lib/hacks/grid-utils.js
new file mode 100644
index 0000000..1af3e3d
--- /dev/null
+++ b/node_modules/autoprefixer/lib/hacks/grid-utils.js
@@ -0,0 +1,1113 @@
+let parser = require('postcss-value-parser')
+let list = require('postcss').list
+
+let uniq = require('../utils').uniq
+let escapeRegexp = require('../utils').escapeRegexp
+let splitSelector = require('../utils').splitSelector
+
+function convert(value) {
+ if (
+ value &&
+ value.length === 2 &&
+ value[0] === 'span' &&
+ parseInt(value[1], 10) > 0
+ ) {
+ return [false, parseInt(value[1], 10)]
+ }
+
+ if (value && value.length === 1 && parseInt(value[0], 10) > 0) {
+ return [parseInt(value[0], 10), false]
+ }
+
+ return [false, false]
+}
+
+exports.translate = translate
+
+function translate(values, startIndex, endIndex) {
+ let startValue = values[startIndex]
+ let endValue = values[endIndex]
+
+ if (!startValue) {
+ return [false, false]
+ }
+
+ let [start, spanStart] = convert(startValue)
+ let [end, spanEnd] = convert(endValue)
+
+ if (start && !endValue) {
+ return [start, false]
+ }
+
+ if (spanStart && end) {
+ return [end - spanStart, spanStart]
+ }
+
+ if (start && spanEnd) {
+ return [start, spanEnd]
+ }
+
+ if (start && end) {
+ return [start, end - start]
+ }
+
+ return [false, false]
+}
+
+exports.parse = parse
+
+function parse(decl) {
+ let node = parser(decl.value)
+
+ let values = []
+ let current = 0
+ values[current] = []
+
+ for (let i of node.nodes) {
+ if (i.type === 'div') {
+ current += 1
+ values[current] = []
+ } else if (i.type === 'word') {
+ values[current].push(i.value)
+ }
+ }
+
+ return values
+}
+
+exports.insertDecl = insertDecl
+
+function insertDecl(decl, prop, value) {
+ if (value && !decl.parent.some(i => i.prop === `-ms-${prop}`)) {
+ decl.cloneBefore({
+ prop: `-ms-${prop}`,
+ value: value.toString()
+ })
+ }
+}
+
+// Track transforms
+
+exports.prefixTrackProp = prefixTrackProp
+
+function prefixTrackProp({ prop, prefix }) {
+ return prefix + prop.replace('template-', '')
+}
+
+function transformRepeat({ nodes }, { gap }) {
+ let { count, size } = nodes.reduce(
+ (result, node) => {
+ if (node.type === 'div' && node.value === ',') {
+ result.key = 'size'
+ } else {
+ result[result.key].push(parser.stringify(node))
+ }
+ return result
+ },
+ {
+ key: 'count',
+ size: [],
+ count: []
+ }
+ )
+
+ // insert gap values
+ if (gap) {
+ size = size.filter(i => i.trim())
+ let val = []
+ for (let i = 1; i <= count; i++) {
+ size.forEach((item, index) => {
+ if (index > 0 || i > 1) {
+ val.push(gap)
+ }
+ val.push(item)
+ })
+ }
+
+ return val.join(' ')
+ }
+
+ return `(${size.join('')})[${count.join('')}]`
+}
+
+exports.prefixTrackValue = prefixTrackValue
+
+function prefixTrackValue({ value, gap }) {
+ let result = parser(value).nodes.reduce((nodes, node) => {
+ if (node.type === 'function' && node.value === 'repeat') {
+ return nodes.concat({
+ type: 'word',
+ value: transformRepeat(node, { gap })
+ })
+ }
+ if (gap && node.type === 'space') {
+ return nodes.concat(
+ {
+ type: 'space',
+ value: ' '
+ },
+ {
+ type: 'word',
+ value: gap
+ },
+ node
+ )
+ }
+ return nodes.concat(node)
+ }, [])
+
+ return parser.stringify(result)
+}
+
+// Parse grid-template-areas
+
+let DOTS = /^\.+$/
+
+function track(start, end) {
+ return { start, end, span: end - start }
+}
+
+function getColumns(line) {
+ return line.trim().split(/\s+/g)
+}
+
+exports.parseGridAreas = parseGridAreas
+
+function parseGridAreas({ rows, gap }) {
+ return rows.reduce((areas, line, rowIndex) => {
+ if (gap.row) rowIndex *= 2
+
+ if (line.trim() === '') return areas
+
+ getColumns(line).forEach((area, columnIndex) => {
+ if (DOTS.test(area)) return
+
+ if (gap.column) columnIndex *= 2
+
+ if (typeof areas[area] === 'undefined') {
+ areas[area] = {
+ column: track(columnIndex + 1, columnIndex + 2),
+ row: track(rowIndex + 1, rowIndex + 2)
+ }
+ } else {
+ let { column, row } = areas[area]
+
+ column.start = Math.min(column.start, columnIndex + 1)
+ column.end = Math.max(column.end, columnIndex + 2)
+ column.span = column.end - column.start
+
+ row.start = Math.min(row.start, rowIndex + 1)
+ row.end = Math.max(row.end, rowIndex + 2)
+ row.span = row.end - row.start
+ }
+ })
+
+ return areas
+ }, {})
+}
+
+// Parse grid-template
+
+function testTrack(node) {
+ return node.type === 'word' && /^\[.+]$/.test(node.value)
+}
+
+function verifyRowSize(result) {
+ if (result.areas.length > result.rows.length) {
+ result.rows.push('auto')
+ }
+ return result
+}
+
+exports.parseTemplate = parseTemplate
+
+function parseTemplate({ decl, gap }) {
+ let gridTemplate = parser(decl.value).nodes.reduce(
+ (result, node) => {
+ let { type, value } = node
+
+ if (testTrack(node) || type === 'space') return result
+
+ // area
+ if (type === 'string') {
+ result = verifyRowSize(result)
+ result.areas.push(value)
+ }
+
+ // values and function
+ if (type === 'word' || type === 'function') {
+ result[result.key].push(parser.stringify(node))
+ }
+
+ // divider(/)
+ if (type === 'div' && value === '/') {
+ result.key = 'columns'
+ result = verifyRowSize(result)
+ }
+
+ return result
+ },
+ {
+ key: 'rows',
+ columns: [],
+ rows: [],
+ areas: []
+ }
+ )
+
+ return {
+ areas: parseGridAreas({
+ rows: gridTemplate.areas,
+ gap
+ }),
+ columns: prefixTrackValue({
+ value: gridTemplate.columns.join(' '),
+ gap: gap.column
+ }),
+ rows: prefixTrackValue({
+ value: gridTemplate.rows.join(' '),
+ gap: gap.row
+ })
+ }
+}
+
+// Insert parsed grid areas
+
+/**
+ * Get an array of -ms- prefixed props and values
+ * @param {Object} [area] area object with column and row data
+ * @param {Boolean} [addRowSpan] should we add grid-column-row value?
+ * @param {Boolean} [addColumnSpan] should we add grid-column-span value?
+ * @return {Array}
+ */
+function getMSDecls(area, addRowSpan = false, addColumnSpan = false) {
+ let result = [
+ {
+ prop: '-ms-grid-row',
+ value: String(area.row.start)
+ }
+ ]
+ if (area.row.span > 1 || addRowSpan) {
+ result.push({
+ prop: '-ms-grid-row-span',
+ value: String(area.row.span)
+ })
+ }
+ result.push({
+ prop: '-ms-grid-column',
+ value: String(area.column.start)
+ })
+ if (area.column.span > 1 || addColumnSpan) {
+ result.push({
+ prop: '-ms-grid-column-span',
+ value: String(area.column.span)
+ })
+ }
+ return result
+}
+
+function getParentMedia(parent) {
+ if (parent.type === 'atrule' && parent.name === 'media') {
+ return parent
+ }
+ if (!parent.parent) {
+ return false
+ }
+ return getParentMedia(parent.parent)
+}
+
+/**
+ * change selectors for rules with duplicate grid-areas.
+ * @param {Array} rules
+ * @param {Array} templateSelectors
+ * @return {Array} rules with changed selectors
+ */
+function changeDuplicateAreaSelectors(ruleSelectors, templateSelectors) {
+ ruleSelectors = ruleSelectors.map(selector => {
+ let selectorBySpace = list.space(selector)
+ let selectorByComma = list.comma(selector)
+
+ if (selectorBySpace.length > selectorByComma.length) {
+ selector = selectorBySpace.slice(-1).join('')
+ }
+ return selector
+ })
+
+ return ruleSelectors.map(ruleSelector => {
+ let newSelector = templateSelectors.map((tplSelector, index) => {
+ let space = index === 0 ? '' : ' '
+ return `${space}${tplSelector} > ${ruleSelector}`
+ })
+
+ return newSelector
+ })
+}
+
+/**
+ * check if selector of rules are equal
+ * @param {Rule} ruleA
+ * @param {Rule} ruleB
+ * @return {Boolean}
+ */
+function selectorsEqual(ruleA, ruleB) {
+ return ruleA.selectors.some(sel => {
+ return ruleB.selectors.includes(sel)
+ })
+}
+
+/**
+ * Parse data from all grid-template(-areas) declarations
+ * @param {Root} css css root
+ * @return {Object} parsed data
+ */
+function parseGridTemplatesData(css) {
+ let parsed = []
+
+ // we walk through every grid-template(-areas) declaration and store
+ // data with the same area names inside the item
+ css.walkDecls(/grid-template(-areas)?$/, d => {
+ let rule = d.parent
+ let media = getParentMedia(rule)
+ let gap = getGridGap(d)
+ let inheritedGap = inheritGridGap(d, gap)
+ let { areas } = parseTemplate({ decl: d, gap: inheritedGap || gap })
+ let areaNames = Object.keys(areas)
+
+ // skip node if it doesn't have areas
+ if (areaNames.length === 0) {
+ return true
+ }
+
+ // check parsed array for item that include the same area names
+ // return index of that item
+ let index = parsed.reduce((acc, { allAreas }, idx) => {
+ let hasAreas = allAreas && areaNames.some(area => allAreas.includes(area))
+ return hasAreas ? idx : acc
+ }, null)
+
+ if (index !== null) {
+ // index is found, add the grid-template data to that item
+ let { allAreas, rules } = parsed[index]
+
+ // check if rule has no duplicate area names
+ let hasNoDuplicates = rules.some(r => {
+ return r.hasDuplicates === false && selectorsEqual(r, rule)
+ })
+
+ let duplicatesFound = false
+
+ // check need to gather all duplicate area names
+ let duplicateAreaNames = rules.reduce((acc, r) => {
+ if (!r.params && selectorsEqual(r, rule)) {
+ duplicatesFound = true
+ return r.duplicateAreaNames
+ }
+ if (!duplicatesFound) {
+ areaNames.forEach(name => {
+ if (r.areas[name]) {
+ acc.push(name)
+ }
+ })
+ }
+ return uniq(acc)
+ }, [])
+
+ // update grid-row/column-span values for areas with duplicate
+ // area names. @see #1084 and #1146
+ rules.forEach(r => {
+ areaNames.forEach(name => {
+ let area = r.areas[name]
+ if (area && area.row.span !== areas[name].row.span) {
+ areas[name].row.updateSpan = true
+ }
+
+ if (area && area.column.span !== areas[name].column.span) {
+ areas[name].column.updateSpan = true
+ }
+ })
+ })
+
+ parsed[index].allAreas = uniq([...allAreas, ...areaNames])
+ parsed[index].rules.push({
+ hasDuplicates: !hasNoDuplicates,
+ params: media.params,
+ selectors: rule.selectors,
+ node: rule,
+ duplicateAreaNames,
+ areas
+ })
+ } else {
+ // index is NOT found, push the new item to the parsed array
+ parsed.push({
+ allAreas: areaNames,
+ areasCount: 0,
+ rules: [
+ {
+ hasDuplicates: false,
+ duplicateRules: [],
+ params: media.params,
+ selectors: rule.selectors,
+ node: rule,
+ duplicateAreaNames: [],
+ areas
+ }
+ ]
+ })
+ }
+
+ return undefined
+ })
+
+ return parsed
+}
+
+/**
+ * insert prefixed grid-area declarations
+ * @param {Root} css css root
+ * @param {Function} isDisabled check if the rule is disabled
+ * @return {void}
+ */
+exports.insertAreas = insertAreas
+
+function insertAreas(css, isDisabled) {
+ // parse grid-template declarations
+ let gridTemplatesData = parseGridTemplatesData(css)
+
+ // return undefined if no declarations found
+ if (gridTemplatesData.length === 0) {
+ return undefined
+ }
+
+ // we need to store the rules that we will insert later
+ let rulesToInsert = {}
+
+ css.walkDecls('grid-area', gridArea => {
+ let gridAreaRule = gridArea.parent
+ let hasPrefixedRow = gridAreaRule.first.prop === '-ms-grid-row'
+ let gridAreaMedia = getParentMedia(gridAreaRule)
+
+ if (isDisabled(gridArea)) {
+ return undefined
+ }
+
+ let gridAreaRuleIndex = css.index(gridAreaMedia || gridAreaRule)
+
+ let value = gridArea.value
+ // found the data that matches grid-area identifier
+ let data = gridTemplatesData.filter(d => d.allAreas.includes(value))[0]
+
+ if (!data) {
+ return true
+ }
+
+ let lastArea = data.allAreas[data.allAreas.length - 1]
+ let selectorBySpace = list.space(gridAreaRule.selector)
+ let selectorByComma = list.comma(gridAreaRule.selector)
+ let selectorIsComplex =
+ selectorBySpace.length > 1 &&
+ selectorBySpace.length > selectorByComma.length
+
+ // prevent doubling of prefixes
+ if (hasPrefixedRow) {
+ return false
+ }
+
+ // create the empty object with the key as the last area name
+ // e.g if we have templates with "a b c" values, "c" will be the last area
+ if (!rulesToInsert[lastArea]) {
+ rulesToInsert[lastArea] = {}
+ }
+
+ let lastRuleIsSet = false
+
+ // walk through every grid-template rule data
+ for (let rule of data.rules) {
+ let area = rule.areas[value]
+ let hasDuplicateName = rule.duplicateAreaNames.includes(value)
+
+ // if we can't find the area name, update lastRule and continue
+ if (!area) {
+ let lastRule = rulesToInsert[lastArea].lastRule
+ let lastRuleIndex
+ if (lastRule) {
+ lastRuleIndex = css.index(lastRule)
+ } else {
+ /* c8 ignore next 2 */
+ lastRuleIndex = -1
+ }
+
+ if (gridAreaRuleIndex > lastRuleIndex) {
+ rulesToInsert[lastArea].lastRule = gridAreaMedia || gridAreaRule
+ }
+ continue
+ }
+
+ // for grid-templates inside media rule we need to create empty
+ // array to push prefixed grid-area rules later
+ if (rule.params && !rulesToInsert[lastArea][rule.params]) {
+ rulesToInsert[lastArea][rule.params] = []
+ }
+
+ if ((!rule.hasDuplicates || !hasDuplicateName) && !rule.params) {
+ // grid-template has no duplicates and not inside media rule
+
+ getMSDecls(area, false, false)
+ .reverse()
+ .forEach(i =>
+ gridAreaRule.prepend(
+ Object.assign(i, {
+ raws: {
+ between: gridArea.raws.between
+ }
+ })
+ )
+ )
+
+ rulesToInsert[lastArea].lastRule = gridAreaRule
+ lastRuleIsSet = true
+ } else if (rule.hasDuplicates && !rule.params && !selectorIsComplex) {
+ // grid-template has duplicates and not inside media rule
+ let cloned = gridAreaRule.clone()
+ cloned.removeAll()
+
+ getMSDecls(area, area.row.updateSpan, area.column.updateSpan)
+ .reverse()
+ .forEach(i =>
+ cloned.prepend(
+ Object.assign(i, {
+ raws: {
+ between: gridArea.raws.between
+ }
+ })
+ )
+ )
+
+ cloned.selectors = changeDuplicateAreaSelectors(
+ cloned.selectors,
+ rule.selectors
+ )
+
+ if (rulesToInsert[lastArea].lastRule) {
+ rulesToInsert[lastArea].lastRule.after(cloned)
+ }
+ rulesToInsert[lastArea].lastRule = cloned
+ lastRuleIsSet = true
+ } else if (
+ rule.hasDuplicates &&
+ !rule.params &&
+ selectorIsComplex &&
+ gridAreaRule.selector.includes(rule.selectors[0])
+ ) {
+ // grid-template has duplicates and not inside media rule
+ // and the selector is complex
+ gridAreaRule.walkDecls(/-ms-grid-(row|column)/, d => d.remove())
+ getMSDecls(area, area.row.updateSpan, area.column.updateSpan)
+ .reverse()
+ .forEach(i =>
+ gridAreaRule.prepend(
+ Object.assign(i, {
+ raws: {
+ between: gridArea.raws.between
+ }
+ })
+ )
+ )
+ } else if (rule.params) {
+ // grid-template is inside media rule
+ // if we're inside media rule, we need to store prefixed rules
+ // inside rulesToInsert object to be able to preserve the order of media
+ // rules and merge them easily
+ let cloned = gridAreaRule.clone()
+ cloned.removeAll()
+
+ getMSDecls(area, area.row.updateSpan, area.column.updateSpan)
+ .reverse()
+ .forEach(i =>
+ cloned.prepend(
+ Object.assign(i, {
+ raws: {
+ between: gridArea.raws.between
+ }
+ })
+ )
+ )
+
+ if (rule.hasDuplicates && hasDuplicateName) {
+ cloned.selectors = changeDuplicateAreaSelectors(
+ cloned.selectors,
+ rule.selectors
+ )
+ }
+
+ cloned.raws = rule.node.raws
+
+ if (css.index(rule.node.parent) > gridAreaRuleIndex) {
+ // append the prefixed rules right inside media rule
+ // with grid-template
+ rule.node.parent.append(cloned)
+ } else {
+ // store the rule to insert later
+ rulesToInsert[lastArea][rule.params].push(cloned)
+ }
+
+ // set new rule as last rule ONLY if we didn't set lastRule for
+ // this grid-area before
+ if (!lastRuleIsSet) {
+ rulesToInsert[lastArea].lastRule = gridAreaMedia || gridAreaRule
+ }
+ }
+ }
+
+ return undefined
+ })
+
+ // append stored rules inside the media rules
+ Object.keys(rulesToInsert).forEach(area => {
+ let data = rulesToInsert[area]
+ let lastRule = data.lastRule
+ Object.keys(data)
+ .reverse()
+ .filter(p => p !== 'lastRule')
+ .forEach(params => {
+ if (data[params].length > 0 && lastRule) {
+ lastRule.after({ name: 'media', params })
+ lastRule.next().append(data[params])
+ }
+ })
+ })
+
+ return undefined
+}
+
+/**
+ * Warn user if grid area identifiers are not found
+ * @param {Object} areas
+ * @param {Declaration} decl
+ * @param {Result} result
+ * @return {void}
+ */
+exports.warnMissedAreas = warnMissedAreas
+
+function warnMissedAreas(areas, decl, result) {
+ let missed = Object.keys(areas)
+
+ decl.root().walkDecls('grid-area', gridArea => {
+ missed = missed.filter(e => e !== gridArea.value)
+ })
+
+ if (missed.length > 0) {
+ decl.warn(result, 'Can not find grid areas: ' + missed.join(', '))
+ }
+
+ return undefined
+}
+
+/**
+ * compare selectors with grid-area rule and grid-template rule
+ * show warning if grid-template selector is not found
+ * (this function used for grid-area rule)
+ * @param {Declaration} decl
+ * @param {Result} result
+ * @return {void}
+ */
+exports.warnTemplateSelectorNotFound = warnTemplateSelectorNotFound
+
+function warnTemplateSelectorNotFound(decl, result) {
+ let rule = decl.parent
+ let root = decl.root()
+ let duplicatesFound = false
+
+ // slice selector array. Remove the last part (for comparison)
+ let slicedSelectorArr = list
+ .space(rule.selector)
+ .filter(str => str !== '>')
+ .slice(0, -1)
+
+ // we need to compare only if selector is complex.
+ // e.g '.grid-cell' is simple, but '.parent > .grid-cell' is complex
+ if (slicedSelectorArr.length > 0) {
+ let gridTemplateFound = false
+ let foundAreaSelector = null
+
+ root.walkDecls(/grid-template(-areas)?$/, d => {
+ let parent = d.parent
+ let templateSelectors = parent.selectors
+
+ let { areas } = parseTemplate({ decl: d, gap: getGridGap(d) })
+ let hasArea = areas[decl.value]
+
+ // find the the matching selectors
+ for (let tplSelector of templateSelectors) {
+ if (gridTemplateFound) {
+ break
+ }
+ let tplSelectorArr = list.space(tplSelector).filter(str => str !== '>')
+
+ gridTemplateFound = tplSelectorArr.every(
+ (item, idx) => item === slicedSelectorArr[idx]
+ )
+ }
+
+ if (gridTemplateFound || !hasArea) {
+ return true
+ }
+
+ if (!foundAreaSelector) {
+ foundAreaSelector = parent.selector
+ }
+
+ // if we found the duplicate area with different selector
+ if (foundAreaSelector && foundAreaSelector !== parent.selector) {
+ duplicatesFound = true
+ }
+
+ return undefined
+ })
+
+ // warn user if we didn't find template
+ if (!gridTemplateFound && duplicatesFound) {
+ decl.warn(
+ result,
+ 'Autoprefixer cannot find a grid-template ' +
+ `containing the duplicate grid-area "${decl.value}" ` +
+ `with full selector matching: ${slicedSelectorArr.join(' ')}`
+ )
+ }
+ }
+}
+
+/**
+ * warn user if both grid-area and grid-(row|column)
+ * declarations are present in the same rule
+ * @param {Declaration} decl
+ * @param {Result} result
+ * @return {void}
+ */
+exports.warnIfGridRowColumnExists = warnIfGridRowColumnExists
+
+function warnIfGridRowColumnExists(decl, result) {
+ let rule = decl.parent
+ let decls = []
+ rule.walkDecls(/^grid-(row|column)/, d => {
+ if (
+ !d.prop.endsWith('-end') &&
+ !d.value.startsWith('span') &&
+ !d.prop.endsWith('-gap')
+ ) {
+ decls.push(d)
+ }
+ })
+ if (decls.length > 0) {
+ decls.forEach(d => {
+ d.warn(
+ result,
+ 'You already have a grid-area declaration present in the rule. ' +
+ `You should use either grid-area or ${d.prop}, not both`
+ )
+ })
+ }
+
+ return undefined
+}
+
+// Gap utils
+
+exports.getGridGap = getGridGap
+
+function getGridGap(decl) {
+ let gap = {}
+
+ // try to find gap
+ let testGap = /^(grid-)?((row|column)-)?gap$/
+ decl.parent.walkDecls(testGap, ({ prop, value }) => {
+ if (/^(grid-)?gap$/.test(prop)) {
+ let [row, , column] = parser(value).nodes
+
+ gap.row = row && parser.stringify(row)
+ gap.column = column ? parser.stringify(column) : gap.row
+ }
+ if (/^(grid-)?row-gap$/.test(prop)) gap.row = value
+ if (/^(grid-)?column-gap$/.test(prop)) gap.column = value
+ })
+
+ return gap
+}
+
+/**
+ * parse media parameters (for example 'min-width: 500px')
+ * @param {String} params parameter to parse
+ * @return {}
+ */
+function parseMediaParams(params) {
+ if (!params) {
+ return []
+ }
+ let parsed = parser(params)
+ let prop
+ let value
+
+ parsed.walk(node => {
+ if (node.type === 'word' && /min|max/g.test(node.value)) {
+ prop = node.value
+ } else if (node.value.includes('px')) {
+ value = parseInt(node.value.replace(/\D/g, ''))
+ }
+ })
+
+ return [prop, value]
+}
+
+/**
+ * Compare the selectors and decide if we
+ * need to inherit gap from compared selector or not.
+ * @type {String} selA
+ * @type {String} selB
+ * @return {Boolean}
+ */
+function shouldInheritGap(selA, selB) {
+ let result
+
+ // get arrays of selector split in 3-deep array
+ let splitSelectorArrA = splitSelector(selA)
+ let splitSelectorArrB = splitSelector(selB)
+
+ if (splitSelectorArrA[0].length < splitSelectorArrB[0].length) {
+ // abort if selectorA has lower descendant specificity then selectorB
+ // (e.g '.grid' and '.hello .world .grid')
+ return false
+ } else if (splitSelectorArrA[0].length > splitSelectorArrB[0].length) {
+ // if selectorA has higher descendant specificity then selectorB
+ // (e.g '.foo .bar .grid' and '.grid')
+
+ let idx = splitSelectorArrA[0].reduce((res, [item], index) => {
+ let firstSelectorPart = splitSelectorArrB[0][0][0]
+ if (item === firstSelectorPart) {
+ return index
+ }
+ return false
+ }, false)
+
+ if (idx) {
+ result = splitSelectorArrB[0].every((arr, index) => {
+ return arr.every(
+ (part, innerIndex) =>
+ // because selectorA has more space elements, we need to slice
+ // selectorA array by 'idx' number to compare them
+ splitSelectorArrA[0].slice(idx)[index][innerIndex] === part
+ )
+ })
+ }
+ } else {
+ // if selectorA has the same descendant specificity as selectorB
+ // this condition covers cases such as: '.grid.foo.bar' and '.grid'
+ result = splitSelectorArrB.some(byCommaArr => {
+ return byCommaArr.every((bySpaceArr, index) => {
+ return bySpaceArr.every(
+ (part, innerIndex) => splitSelectorArrA[0][index][innerIndex] === part
+ )
+ })
+ })
+ }
+
+ return result
+}
+/**
+ * inherit grid gap values from the closest rule above
+ * with the same selector
+ * @param {Declaration} decl
+ * @param {Object} gap gap values
+ * @return {Object | Boolean} return gap values or false (if not found)
+ */
+exports.inheritGridGap = inheritGridGap
+
+function inheritGridGap(decl, gap) {
+ let rule = decl.parent
+ let mediaRule = getParentMedia(rule)
+ let root = rule.root()
+
+ // get an array of selector split in 3-deep array
+ let splitSelectorArr = splitSelector(rule.selector)
+
+ // abort if the rule already has gaps
+ if (Object.keys(gap).length > 0) {
+ return false
+ }
+
+ // e.g ['min-width']
+ let [prop] = parseMediaParams(mediaRule.params)
+
+ let lastBySpace = splitSelectorArr[0]
+
+ // get escaped value from the selector
+ // if we have '.grid-2.foo.bar' selector, will be '\.grid\-2'
+ let escaped = escapeRegexp(lastBySpace[lastBySpace.length - 1][0])
+
+ let regexp = new RegExp(`(${escaped}$)|(${escaped}[,.])`)
+
+ // find the closest rule with the same selector
+ let closestRuleGap
+ root.walkRules(regexp, r => {
+ let gridGap
+
+ // abort if are checking the same rule
+ if (rule.toString() === r.toString()) {
+ return false
+ }
+
+ // find grid-gap values
+ r.walkDecls('grid-gap', d => (gridGap = getGridGap(d)))
+
+ // skip rule without gaps
+ if (!gridGap || Object.keys(gridGap).length === 0) {
+ return true
+ }
+
+ // skip rules that should not be inherited from
+ if (!shouldInheritGap(rule.selector, r.selector)) {
+ return true
+ }
+
+ let media = getParentMedia(r)
+ if (media) {
+ // if we are inside media, we need to check that media props match
+ // e.g ('min-width' === 'min-width')
+ let propToCompare = parseMediaParams(media.params)[0]
+ if (propToCompare === prop) {
+ closestRuleGap = gridGap
+ return true
+ }
+ } else {
+ closestRuleGap = gridGap
+ return true
+ }
+
+ return undefined
+ })
+
+ // if we find the closest gap object
+ if (closestRuleGap && Object.keys(closestRuleGap).length > 0) {
+ return closestRuleGap
+ }
+ return false
+}
+
+exports.warnGridGap = warnGridGap
+
+function warnGridGap({ gap, hasColumns, decl, result }) {
+ let hasBothGaps = gap.row && gap.column
+ if (!hasColumns && (hasBothGaps || (gap.column && !gap.row))) {
+ delete gap.column
+ decl.warn(
+ result,
+ 'Can not implement grid-gap without grid-template-columns'
+ )
+ }
+}
+
+/**
+ * normalize the grid-template-rows/columns values
+ * @param {String} str grid-template-rows/columns value
+ * @return {Array} normalized array with values
+ * @example
+ * let normalized = normalizeRowColumn('1fr repeat(2, 20px 50px) 1fr')
+ * normalized // <= ['1fr', '20px', '50px', '20px', '50px', '1fr']
+ */
+function normalizeRowColumn(str) {
+ let normalized = parser(str).nodes.reduce((result, node) => {
+ if (node.type === 'function' && node.value === 'repeat') {
+ let key = 'count'
+
+ let [count, value] = node.nodes.reduce(
+ (acc, n) => {
+ if (n.type === 'word' && key === 'count') {
+ acc[0] = Math.abs(parseInt(n.value))
+ return acc
+ }
+ if (n.type === 'div' && n.value === ',') {
+ key = 'value'
+ return acc
+ }
+ if (key === 'value') {
+ acc[1] += parser.stringify(n)
+ }
+ return acc
+ },
+ [0, '']
+ )
+
+ if (count) {
+ for (let i = 0; i < count; i++) {
+ result.push(value)
+ }
+ }
+
+ return result
+ }
+ if (node.type === 'space') {
+ return result
+ }
+ return result.concat(parser.stringify(node))
+ }, [])
+
+ return normalized
+}
+
+exports.autoplaceGridItems = autoplaceGridItems
+
+/**
+ * Autoplace grid items
+ * @param {Declaration} decl
+ * @param {Result} result
+ * @param {Object} gap gap values
+ * @param {String} autoflowValue grid-auto-flow value
+ * @return {void}
+ * @see https://github.com/postcss/autoprefixer/issues/1148
+ */
+function autoplaceGridItems(decl, result, gap, autoflowValue = 'row') {
+ let { parent } = decl
+
+ let rowDecl = parent.nodes.find(i => i.prop === 'grid-template-rows')
+ let rows = normalizeRowColumn(rowDecl.value)
+ let columns = normalizeRowColumn(decl.value)
+
+ // Build array of area names with dummy values. If we have 3 columns and
+ // 2 rows, filledRows will be equal to ['1 2 3', '4 5 6']
+ let filledRows = rows.map((_, rowIndex) => {
+ return Array.from(
+ { length: columns.length },
+ (v, k) => k + rowIndex * columns.length + 1
+ ).join(' ')
+ })
+
+ let areas = parseGridAreas({ rows: filledRows, gap })
+ let keys = Object.keys(areas)
+ let items = keys.map(i => areas[i])
+
+ // Change the order of cells if grid-auto-flow value is 'column'
+ if (autoflowValue.includes('column')) {
+ items = items.sort((a, b) => a.column.start - b.column.start)
+ }
+
+ // Insert new rules
+ items.reverse().forEach((item, index) => {
+ let { column, row } = item
+ let nodeSelector = parent.selectors
+ .map(sel => sel + ` > *:nth-child(${keys.length - index})`)
+ .join(', ')
+
+ // create new rule
+ let node = parent.clone().removeAll()
+
+ // change rule selector
+ node.selector = nodeSelector
+
+ // insert prefixed row/column values
+ node.append({ prop: '-ms-grid-row', value: row.start })
+ node.append({ prop: '-ms-grid-column', value: column.start })
+
+ // insert rule
+ parent.after(node)
+ })
+
+ return undefined
+}
diff --git a/node_modules/autoprefixer/lib/hacks/image-rendering.js b/node_modules/autoprefixer/lib/hacks/image-rendering.js
new file mode 100644
index 0000000..3b0d33a
--- /dev/null
+++ b/node_modules/autoprefixer/lib/hacks/image-rendering.js
@@ -0,0 +1,48 @@
+let Declaration = require('../declaration')
+
+class ImageRendering extends Declaration {
+ /**
+ * Add hack only for crisp-edges
+ */
+ check(decl) {
+ return decl.value === 'pixelated'
+ }
+
+ /**
+ * Change property name for IE
+ */
+ prefixed(prop, prefix) {
+ if (prefix === '-ms-') {
+ return '-ms-interpolation-mode'
+ }
+ return super.prefixed(prop, prefix)
+ }
+
+ /**
+ * Change property and value for IE
+ */
+ set(decl, prefix) {
+ if (prefix !== '-ms-') return super.set(decl, prefix)
+ decl.prop = '-ms-interpolation-mode'
+ decl.value = 'nearest-neighbor'
+ return decl
+ }
+
+ /**
+ * Return property name by spec
+ */
+ normalize() {
+ return 'image-rendering'
+ }
+
+ /**
+ * Warn on old value
+ */
+ process(node, result) {
+ return super.process(node, result)
+ }
+}
+
+ImageRendering.names = ['image-rendering', 'interpolation-mode']
+
+module.exports = ImageRendering
diff --git a/node_modules/autoprefixer/lib/hacks/image-set.js b/node_modules/autoprefixer/lib/hacks/image-set.js
new file mode 100644
index 0000000..fecd088
--- /dev/null
+++ b/node_modules/autoprefixer/lib/hacks/image-set.js
@@ -0,0 +1,18 @@
+let Value = require('../value')
+
+class ImageSet extends Value {
+ /**
+ * Use non-standard name for WebKit and Firefox
+ */
+ replace(string, prefix) {
+ let fixed = super.replace(string, prefix)
+ if (prefix === '-webkit-') {
+ fixed = fixed.replace(/("[^"]+"|'[^']+')(\s+\d+\w)/gi, 'url($1)$2')
+ }
+ return fixed
+ }
+}
+
+ImageSet.names = ['image-set']
+
+module.exports = ImageSet
diff --git a/node_modules/autoprefixer/lib/hacks/inline-logical.js b/node_modules/autoprefixer/lib/hacks/inline-logical.js
new file mode 100644
index 0000000..564af2e
--- /dev/null
+++ b/node_modules/autoprefixer/lib/hacks/inline-logical.js
@@ -0,0 +1,34 @@
+let Declaration = require('../declaration')
+
+class InlineLogical extends Declaration {
+ /**
+ * Use old syntax for -moz- and -webkit-
+ */
+ prefixed(prop, prefix) {
+ return prefix + prop.replace('-inline', '')
+ }
+
+ /**
+ * Return property name by spec
+ */
+ normalize(prop) {
+ return prop.replace(/(margin|padding|border)-(start|end)/, '$1-inline-$2')
+ }
+}
+
+InlineLogical.names = [
+ 'border-inline-start',
+ 'border-inline-end',
+ 'margin-inline-start',
+ 'margin-inline-end',
+ 'padding-inline-start',
+ 'padding-inline-end',
+ 'border-start',
+ 'border-end',
+ 'margin-start',
+ 'margin-end',
+ 'padding-start',
+ 'padding-end'
+]
+
+module.exports = InlineLogical
diff --git a/node_modules/autoprefixer/lib/hacks/intrinsic.js b/node_modules/autoprefixer/lib/hacks/intrinsic.js
new file mode 100644
index 0000000..4e4e105
--- /dev/null
+++ b/node_modules/autoprefixer/lib/hacks/intrinsic.js
@@ -0,0 +1,61 @@
+let OldValue = require('../old-value')
+let Value = require('../value')
+
+function regexp(name) {
+ return new RegExp(`(^|[\\s,(])(${name}($|[\\s),]))`, 'gi')
+}
+
+class Intrinsic extends Value {
+ regexp() {
+ if (!this.regexpCache) this.regexpCache = regexp(this.name)
+ return this.regexpCache
+ }
+
+ isStretch() {
+ return (
+ this.name === 'stretch' ||
+ this.name === 'fill' ||
+ this.name === 'fill-available'
+ )
+ }
+
+ replace(string, prefix) {
+ if (prefix === '-moz-' && this.isStretch()) {
+ return string.replace(this.regexp(), '$1-moz-available$3')
+ }
+ if (prefix === '-webkit-' && this.isStretch()) {
+ return string.replace(this.regexp(), '$1-webkit-fill-available$3')
+ }
+ return super.replace(string, prefix)
+ }
+
+ old(prefix) {
+ let prefixed = prefix + this.name
+ if (this.isStretch()) {
+ if (prefix === '-moz-') {
+ prefixed = '-moz-available'
+ } else if (prefix === '-webkit-') {
+ prefixed = '-webkit-fill-available'
+ }
+ }
+ return new OldValue(this.name, prefixed, prefixed, regexp(prefixed))
+ }
+
+ add(decl, prefix) {
+ if (decl.prop.includes('grid') && prefix !== '-webkit-') {
+ return undefined
+ }
+ return super.add(decl, prefix)
+ }
+}
+
+Intrinsic.names = [
+ 'max-content',
+ 'min-content',
+ 'fit-content',
+ 'fill',
+ 'fill-available',
+ 'stretch'
+]
+
+module.exports = Intrinsic
diff --git a/node_modules/autoprefixer/lib/hacks/justify-content.js b/node_modules/autoprefixer/lib/hacks/justify-content.js
new file mode 100644
index 0000000..2a27cfc
--- /dev/null
+++ b/node_modules/autoprefixer/lib/hacks/justify-content.js
@@ -0,0 +1,54 @@
+let flexSpec = require('./flex-spec')
+let Declaration = require('../declaration')
+
+class JustifyContent extends Declaration {
+ /**
+ * Change property name for 2009 and 2012 specs
+ */
+ prefixed(prop, prefix) {
+ let spec
+ ;[spec, prefix] = flexSpec(prefix)
+ if (spec === 2009) {
+ return prefix + 'box-pack'
+ }
+ if (spec === 2012) {
+ return prefix + 'flex-pack'
+ }
+ return super.prefixed(prop, prefix)
+ }
+
+ /**
+ * Return property name by final spec
+ */
+ normalize() {
+ return 'justify-content'
+ }
+
+ /**
+ * Change value for 2009 and 2012 specs
+ */
+ set(decl, prefix) {
+ let spec = flexSpec(prefix)[0]
+ if (spec === 2009 || spec === 2012) {
+ let value = JustifyContent.oldValues[decl.value] || decl.value
+ decl.value = value
+ if (spec !== 2009 || value !== 'distribute') {
+ return super.set(decl, prefix)
+ }
+ } else if (spec === 'final') {
+ return super.set(decl, prefix)
+ }
+ return undefined
+ }
+}
+
+JustifyContent.names = ['justify-content', 'flex-pack', 'box-pack']
+
+JustifyContent.oldValues = {
+ 'flex-end': 'end',
+ 'flex-start': 'start',
+ 'space-between': 'justify',
+ 'space-around': 'distribute'
+}
+
+module.exports = JustifyContent
diff --git a/node_modules/autoprefixer/lib/hacks/mask-border.js b/node_modules/autoprefixer/lib/hacks/mask-border.js
new file mode 100644
index 0000000..d5efde2
--- /dev/null
+++ b/node_modules/autoprefixer/lib/hacks/mask-border.js
@@ -0,0 +1,38 @@
+let Declaration = require('../declaration')
+
+class MaskBorder extends Declaration {
+ /**
+ * Return property name by final spec
+ */
+ normalize() {
+ return this.name.replace('box-image', 'border')
+ }
+
+ /**
+ * Return flex property for 2012 spec
+ */
+ prefixed(prop, prefix) {
+ let result = super.prefixed(prop, prefix)
+ if (prefix === '-webkit-') {
+ result = result.replace('border', 'box-image')
+ }
+ return result
+ }
+}
+
+MaskBorder.names = [
+ 'mask-border',
+ 'mask-border-source',
+ 'mask-border-slice',
+ 'mask-border-width',
+ 'mask-border-outset',
+ 'mask-border-repeat',
+ 'mask-box-image',
+ 'mask-box-image-source',
+ 'mask-box-image-slice',
+ 'mask-box-image-width',
+ 'mask-box-image-outset',
+ 'mask-box-image-repeat'
+]
+
+module.exports = MaskBorder
diff --git a/node_modules/autoprefixer/lib/hacks/mask-composite.js b/node_modules/autoprefixer/lib/hacks/mask-composite.js
new file mode 100644
index 0000000..abb2388
--- /dev/null
+++ b/node_modules/autoprefixer/lib/hacks/mask-composite.js
@@ -0,0 +1,88 @@
+let Declaration = require('../declaration')
+
+class MaskComposite extends Declaration {
+ /**
+ * Prefix mask-composite for webkit
+ */
+ insert(decl, prefix, prefixes) {
+ let isCompositeProp = decl.prop === 'mask-composite'
+
+ let compositeValues
+
+ if (isCompositeProp) {
+ compositeValues = decl.value.split(',')
+ } else {
+ compositeValues = decl.value.match(MaskComposite.regexp) || []
+ }
+
+ compositeValues = compositeValues.map(el => el.trim()).filter(el => el)
+ let hasCompositeValues = compositeValues.length
+
+ let compositeDecl
+
+ if (hasCompositeValues) {
+ compositeDecl = this.clone(decl)
+ compositeDecl.value = compositeValues
+ .map(value => MaskComposite.oldValues[value] || value)
+ .join(', ')
+
+ if (compositeValues.includes('intersect')) {
+ compositeDecl.value += ', xor'
+ }
+
+ compositeDecl.prop = prefix + 'mask-composite'
+ }
+
+ if (isCompositeProp) {
+ if (!hasCompositeValues) {
+ return undefined
+ }
+
+ if (this.needCascade(decl)) {
+ compositeDecl.raws.before = this.calcBefore(prefixes, decl, prefix)
+ }
+
+ return decl.parent.insertBefore(decl, compositeDecl)
+ }
+
+ let cloned = this.clone(decl)
+ cloned.prop = prefix + cloned.prop
+
+ if (hasCompositeValues) {
+ cloned.value = cloned.value.replace(MaskComposite.regexp, '')
+ }
+
+ if (this.needCascade(decl)) {
+ cloned.raws.before = this.calcBefore(prefixes, decl, prefix)
+ }
+
+ decl.parent.insertBefore(decl, cloned)
+
+ if (!hasCompositeValues) {
+ return decl
+ }
+
+ if (this.needCascade(decl)) {
+ compositeDecl.raws.before = this.calcBefore(prefixes, decl, prefix)
+ }
+ return decl.parent.insertBefore(decl, compositeDecl)
+ }
+}
+
+MaskComposite.names = ['mask', 'mask-composite']
+
+MaskComposite.oldValues = {
+ add: 'source-over',
+ subtract: 'source-out',
+ intersect: 'source-in',
+ exclude: 'xor'
+}
+
+MaskComposite.regexp = new RegExp(
+ `\\s+(${Object.keys(MaskComposite.oldValues).join(
+ '|'
+ )})\\b(?!\\))\\s*(?=[,])`,
+ 'ig'
+)
+
+module.exports = MaskComposite
diff --git a/node_modules/autoprefixer/lib/hacks/order.js b/node_modules/autoprefixer/lib/hacks/order.js
new file mode 100644
index 0000000..12ccdea
--- /dev/null
+++ b/node_modules/autoprefixer/lib/hacks/order.js
@@ -0,0 +1,42 @@
+let flexSpec = require('./flex-spec')
+let Declaration = require('../declaration')
+
+class Order extends Declaration {
+ /**
+ * Change property name for 2009 and 2012 specs
+ */
+ prefixed(prop, prefix) {
+ let spec
+ ;[spec, prefix] = flexSpec(prefix)
+ if (spec === 2009) {
+ return prefix + 'box-ordinal-group'
+ }
+ if (spec === 2012) {
+ return prefix + 'flex-order'
+ }
+ return super.prefixed(prop, prefix)
+ }
+
+ /**
+ * Return property name by final spec
+ */
+ normalize() {
+ return 'order'
+ }
+
+ /**
+ * Fix value for 2009 spec
+ */
+ set(decl, prefix) {
+ let spec = flexSpec(prefix)[0]
+ if (spec === 2009 && /\d/.test(decl.value)) {
+ decl.value = (parseInt(decl.value) + 1).toString()
+ return super.set(decl, prefix)
+ }
+ return super.set(decl, prefix)
+ }
+}
+
+Order.names = ['order', 'flex-order', 'box-ordinal-group']
+
+module.exports = Order
diff --git a/node_modules/autoprefixer/lib/hacks/overscroll-behavior.js b/node_modules/autoprefixer/lib/hacks/overscroll-behavior.js
new file mode 100644
index 0000000..0a09f1e
--- /dev/null
+++ b/node_modules/autoprefixer/lib/hacks/overscroll-behavior.js
@@ -0,0 +1,33 @@
+let Declaration = require('../declaration')
+
+class OverscrollBehavior extends Declaration {
+ /**
+ * Change property name for IE
+ */
+ prefixed(prop, prefix) {
+ return prefix + 'scroll-chaining'
+ }
+
+ /**
+ * Return property name by spec
+ */
+ normalize() {
+ return 'overscroll-behavior'
+ }
+
+ /**
+ * Change value for IE
+ */
+ set(decl, prefix) {
+ if (decl.value === 'auto') {
+ decl.value = 'chained'
+ } else if (decl.value === 'none' || decl.value === 'contain') {
+ decl.value = 'none'
+ }
+ return super.set(decl, prefix)
+ }
+}
+
+OverscrollBehavior.names = ['overscroll-behavior', 'scroll-chaining']
+
+module.exports = OverscrollBehavior
diff --git a/node_modules/autoprefixer/lib/hacks/pixelated.js b/node_modules/autoprefixer/lib/hacks/pixelated.js
new file mode 100644
index 0000000..63e7111
--- /dev/null
+++ b/node_modules/autoprefixer/lib/hacks/pixelated.js
@@ -0,0 +1,34 @@
+let OldValue = require('../old-value')
+let Value = require('../value')
+
+class Pixelated extends Value {
+ /**
+ * Use non-standard name for WebKit and Firefox
+ */
+ replace(string, prefix) {
+ if (prefix === '-webkit-') {
+ return string.replace(this.regexp(), '$1-webkit-optimize-contrast')
+ }
+ if (prefix === '-moz-') {
+ return string.replace(this.regexp(), '$1-moz-crisp-edges')
+ }
+ return super.replace(string, prefix)
+ }
+
+ /**
+ * Different name for WebKit and Firefox
+ */
+ old(prefix) {
+ if (prefix === '-webkit-') {
+ return new OldValue(this.name, '-webkit-optimize-contrast')
+ }
+ if (prefix === '-moz-') {
+ return new OldValue(this.name, '-moz-crisp-edges')
+ }
+ return super.old(prefix)
+ }
+}
+
+Pixelated.names = ['pixelated']
+
+module.exports = Pixelated
diff --git a/node_modules/autoprefixer/lib/hacks/place-self.js b/node_modules/autoprefixer/lib/hacks/place-self.js
new file mode 100644
index 0000000..e0ce3e8
--- /dev/null
+++ b/node_modules/autoprefixer/lib/hacks/place-self.js
@@ -0,0 +1,32 @@
+let Declaration = require('../declaration')
+let utils = require('./grid-utils')
+
+class PlaceSelf extends Declaration {
+ /**
+ * Translate place-self to separate -ms- prefixed properties
+ */
+ insert(decl, prefix, prefixes) {
+ if (prefix !== '-ms-') return super.insert(decl, prefix, prefixes)
+
+ // prevent doubling of prefixes
+ if (decl.parent.some(i => i.prop === '-ms-grid-row-align')) {
+ return undefined
+ }
+
+ let [[first, second]] = utils.parse(decl)
+
+ if (second) {
+ utils.insertDecl(decl, 'grid-row-align', first)
+ utils.insertDecl(decl, 'grid-column-align', second)
+ } else {
+ utils.insertDecl(decl, 'grid-row-align', first)
+ utils.insertDecl(decl, 'grid-column-align', first)
+ }
+
+ return undefined
+ }
+}
+
+PlaceSelf.names = ['place-self']
+
+module.exports = PlaceSelf
diff --git a/node_modules/autoprefixer/lib/hacks/placeholder-shown.js b/node_modules/autoprefixer/lib/hacks/placeholder-shown.js
new file mode 100644
index 0000000..8bb1cc8
--- /dev/null
+++ b/node_modules/autoprefixer/lib/hacks/placeholder-shown.js
@@ -0,0 +1,17 @@
+let Selector = require('../selector')
+
+class PlaceholderShown extends Selector {
+ /**
+ * Return different selectors depend on prefix
+ */
+ prefixed(prefix) {
+ if (prefix === '-ms-') {
+ return ':-ms-input-placeholder'
+ }
+ return `:${prefix}placeholder-shown`
+ }
+}
+
+PlaceholderShown.names = [':placeholder-shown']
+
+module.exports = PlaceholderShown
diff --git a/node_modules/autoprefixer/lib/hacks/placeholder.js b/node_modules/autoprefixer/lib/hacks/placeholder.js
new file mode 100644
index 0000000..45730a5
--- /dev/null
+++ b/node_modules/autoprefixer/lib/hacks/placeholder.js
@@ -0,0 +1,33 @@
+let Selector = require('../selector')
+
+class Placeholder extends Selector {
+ /**
+ * Add old mozilla to possible prefixes
+ */
+ possible() {
+ return super.possible().concat(['-moz- old', '-ms- old'])
+ }
+
+ /**
+ * Return different selectors depend on prefix
+ */
+ prefixed(prefix) {
+ if (prefix === '-webkit-') {
+ return '::-webkit-input-placeholder'
+ }
+ if (prefix === '-ms-') {
+ return '::-ms-input-placeholder'
+ }
+ if (prefix === '-ms- old') {
+ return ':-ms-input-placeholder'
+ }
+ if (prefix === '-moz- old') {
+ return ':-moz-placeholder'
+ }
+ return `::${prefix}placeholder`
+ }
+}
+
+Placeholder.names = ['::placeholder']
+
+module.exports = Placeholder
diff --git a/node_modules/autoprefixer/lib/hacks/print-color-adjust.js b/node_modules/autoprefixer/lib/hacks/print-color-adjust.js
new file mode 100644
index 0000000..951964b
--- /dev/null
+++ b/node_modules/autoprefixer/lib/hacks/print-color-adjust.js
@@ -0,0 +1,25 @@
+let Declaration = require('../declaration')
+
+class PrintColorAdjust extends Declaration {
+ /**
+ * Change property name for WebKit-based browsers
+ */
+ prefixed(prop, prefix) {
+ if (prefix === '-moz-') {
+ return 'color-adjust'
+ } else {
+ return prefix + 'print-color-adjust'
+ }
+ }
+
+ /**
+ * Return property name by spec
+ */
+ normalize() {
+ return 'print-color-adjust'
+ }
+}
+
+PrintColorAdjust.names = ['print-color-adjust', 'color-adjust']
+
+module.exports = PrintColorAdjust
diff --git a/node_modules/autoprefixer/lib/hacks/text-decoration-skip-ink.js b/node_modules/autoprefixer/lib/hacks/text-decoration-skip-ink.js
new file mode 100644
index 0000000..25dc4db
--- /dev/null
+++ b/node_modules/autoprefixer/lib/hacks/text-decoration-skip-ink.js
@@ -0,0 +1,23 @@
+let Declaration = require('../declaration')
+
+class TextDecorationSkipInk extends Declaration {
+ /**
+ * Change prefix for ink value
+ */
+ set(decl, prefix) {
+ if (decl.prop === 'text-decoration-skip-ink' && decl.value === 'auto') {
+ decl.prop = prefix + 'text-decoration-skip'
+ decl.value = 'ink'
+ return decl
+ } else {
+ return super.set(decl, prefix)
+ }
+ }
+}
+
+TextDecorationSkipInk.names = [
+ 'text-decoration-skip-ink',
+ 'text-decoration-skip'
+]
+
+module.exports = TextDecorationSkipInk
diff --git a/node_modules/autoprefixer/lib/hacks/text-decoration.js b/node_modules/autoprefixer/lib/hacks/text-decoration.js
new file mode 100644
index 0000000..148d98a
--- /dev/null
+++ b/node_modules/autoprefixer/lib/hacks/text-decoration.js
@@ -0,0 +1,25 @@
+let Declaration = require('../declaration')
+
+const BASIC = [
+ 'none',
+ 'underline',
+ 'overline',
+ 'line-through',
+ 'blink',
+ 'inherit',
+ 'initial',
+ 'unset'
+]
+
+class TextDecoration extends Declaration {
+ /**
+ * Do not add prefixes for basic values.
+ */
+ check(decl) {
+ return decl.value.split(/\s+/).some(i => !BASIC.includes(i))
+ }
+}
+
+TextDecoration.names = ['text-decoration']
+
+module.exports = TextDecoration
diff --git a/node_modules/autoprefixer/lib/hacks/text-emphasis-position.js b/node_modules/autoprefixer/lib/hacks/text-emphasis-position.js
new file mode 100644
index 0000000..0d04f8b
--- /dev/null
+++ b/node_modules/autoprefixer/lib/hacks/text-emphasis-position.js
@@ -0,0 +1,14 @@
+let Declaration = require('../declaration')
+
+class TextEmphasisPosition extends Declaration {
+ set(decl, prefix) {
+ if (prefix === '-webkit-') {
+ decl.value = decl.value.replace(/\s*(right|left)\s*/i, '')
+ }
+ return super.set(decl, prefix)
+ }
+}
+
+TextEmphasisPosition.names = ['text-emphasis-position']
+
+module.exports = TextEmphasisPosition
diff --git a/node_modules/autoprefixer/lib/hacks/transform-decl.js b/node_modules/autoprefixer/lib/hacks/transform-decl.js
new file mode 100644
index 0000000..2cf7e5e
--- /dev/null
+++ b/node_modules/autoprefixer/lib/hacks/transform-decl.js
@@ -0,0 +1,79 @@
+let Declaration = require('../declaration')
+
+class TransformDecl extends Declaration {
+ /**
+ * Recursively check all parents for @keyframes
+ */
+ keyframeParents(decl) {
+ let { parent } = decl
+ while (parent) {
+ if (parent.type === 'atrule' && parent.name === 'keyframes') {
+ return true
+ }
+ ;({ parent } = parent)
+ }
+ return false
+ }
+
+ /**
+ * Is transform contain 3D commands
+ */
+ contain3d(decl) {
+ if (decl.prop === 'transform-origin') {
+ return false
+ }
+
+ for (let func of TransformDecl.functions3d) {
+ if (decl.value.includes(`${func}(`)) {
+ return true
+ }
+ }
+
+ return false
+ }
+
+ /**
+ * Replace rotateZ to rotate for IE 9
+ */
+ set(decl, prefix) {
+ decl = super.set(decl, prefix)
+ if (prefix === '-ms-') {
+ decl.value = decl.value.replace(/rotatez/gi, 'rotate')
+ }
+ return decl
+ }
+
+ /**
+ * Don't add prefix for IE in keyframes
+ */
+ insert(decl, prefix, prefixes) {
+ if (prefix === '-ms-') {
+ if (!this.contain3d(decl) && !this.keyframeParents(decl)) {
+ return super.insert(decl, prefix, prefixes)
+ }
+ } else if (prefix === '-o-') {
+ if (!this.contain3d(decl)) {
+ return super.insert(decl, prefix, prefixes)
+ }
+ } else {
+ return super.insert(decl, prefix, prefixes)
+ }
+ return undefined
+ }
+}
+
+TransformDecl.names = ['transform', 'transform-origin']
+
+TransformDecl.functions3d = [
+ 'matrix3d',
+ 'translate3d',
+ 'translateZ',
+ 'scale3d',
+ 'scaleZ',
+ 'rotate3d',
+ 'rotateX',
+ 'rotateY',
+ 'perspective'
+]
+
+module.exports = TransformDecl
diff --git a/node_modules/autoprefixer/lib/hacks/user-select.js b/node_modules/autoprefixer/lib/hacks/user-select.js
new file mode 100644
index 0000000..3aba217
--- /dev/null
+++ b/node_modules/autoprefixer/lib/hacks/user-select.js
@@ -0,0 +1,28 @@
+let Declaration = require('../declaration')
+
+class UserSelect extends Declaration {
+ /**
+ * Change prefixed value for IE
+ */
+ set(decl, prefix) {
+ if (prefix === '-ms-' && decl.value === 'contain') {
+ decl.value = 'element'
+ }
+ return super.set(decl, prefix)
+ }
+
+ /**
+ * Avoid prefixing all in IE
+ */
+ insert(decl, prefix, prefixes) {
+ if (decl.value === 'all' && prefix === '-ms-') {
+ return undefined
+ } else {
+ return super.insert(decl, prefix, prefixes)
+ }
+ }
+}
+
+UserSelect.names = ['user-select']
+
+module.exports = UserSelect
diff --git a/node_modules/autoprefixer/lib/hacks/writing-mode.js b/node_modules/autoprefixer/lib/hacks/writing-mode.js
new file mode 100644
index 0000000..aa7c075
--- /dev/null
+++ b/node_modules/autoprefixer/lib/hacks/writing-mode.js
@@ -0,0 +1,42 @@
+let Declaration = require('../declaration')
+
+class WritingMode extends Declaration {
+ insert(decl, prefix, prefixes) {
+ if (prefix === '-ms-') {
+ let cloned = this.set(this.clone(decl), prefix)
+
+ if (this.needCascade(decl)) {
+ cloned.raws.before = this.calcBefore(prefixes, decl, prefix)
+ }
+ let direction = 'ltr'
+
+ decl.parent.nodes.forEach(i => {
+ if (i.prop === 'direction') {
+ if (i.value === 'rtl' || i.value === 'ltr') direction = i.value
+ }
+ })
+
+ cloned.value = WritingMode.msValues[direction][decl.value] || decl.value
+ return decl.parent.insertBefore(decl, cloned)
+ }
+
+ return super.insert(decl, prefix, prefixes)
+ }
+}
+
+WritingMode.names = ['writing-mode']
+
+WritingMode.msValues = {
+ ltr: {
+ 'horizontal-tb': 'lr-tb',
+ 'vertical-rl': 'tb-rl',
+ 'vertical-lr': 'tb-lr'
+ },
+ rtl: {
+ 'horizontal-tb': 'rl-tb',
+ 'vertical-rl': 'bt-rl',
+ 'vertical-lr': 'bt-lr'
+ }
+}
+
+module.exports = WritingMode
diff --git a/node_modules/autoprefixer/lib/info.js b/node_modules/autoprefixer/lib/info.js
new file mode 100644
index 0000000..d8cb8aa
--- /dev/null
+++ b/node_modules/autoprefixer/lib/info.js
@@ -0,0 +1,123 @@
+let browserslist = require('browserslist')
+
+function capitalize(str) {
+ return str.slice(0, 1).toUpperCase() + str.slice(1)
+}
+
+const NAMES = {
+ ie: 'IE',
+ ie_mob: 'IE Mobile',
+ ios_saf: 'iOS Safari',
+ op_mini: 'Opera Mini',
+ op_mob: 'Opera Mobile',
+ and_chr: 'Chrome for Android',
+ and_ff: 'Firefox for Android',
+ and_uc: 'UC for Android',
+ and_qq: 'QQ Browser',
+ kaios: 'KaiOS Browser',
+ baidu: 'Baidu Browser',
+ samsung: 'Samsung Internet'
+}
+
+function prefix(name, prefixes, note) {
+ let out = ` ${name}`
+ if (note) out += ' *'
+ out += ': '
+ out += prefixes.map(i => i.replace(/^-(.*)-$/g, '$1')).join(', ')
+ out += '\n'
+ return out
+}
+
+module.exports = function (prefixes) {
+ if (prefixes.browsers.selected.length === 0) {
+ return 'No browsers selected'
+ }
+
+ let versions = {}
+ for (let browser of prefixes.browsers.selected) {
+ let parts = browser.split(' ')
+ let name = parts[0]
+ let version = parts[1]
+
+ name = NAMES[name] || capitalize(name)
+ if (versions[name]) {
+ versions[name].push(version)
+ } else {
+ versions[name] = [version]
+ }
+ }
+
+ let out = 'Browsers:\n'
+ for (let browser in versions) {
+ let list = versions[browser]
+ list = list.sort((a, b) => parseFloat(b) - parseFloat(a))
+ out += ` ${browser}: ${list.join(', ')}\n`
+ }
+
+ let coverage = browserslist.coverage(prefixes.browsers.selected)
+ let round = Math.round(coverage * 100) / 100.0
+ out += `\nThese browsers account for ${round}% of all users globally\n`
+
+ let atrules = []
+ for (let name in prefixes.add) {
+ let data = prefixes.add[name]
+ if (name[0] === '@' && data.prefixes) {
+ atrules.push(prefix(name, data.prefixes))
+ }
+ }
+ if (atrules.length > 0) {
+ out += `\nAt-Rules:\n${atrules.sort().join('')}`
+ }
+
+ let selectors = []
+ for (let selector of prefixes.add.selectors) {
+ if (selector.prefixes) {
+ selectors.push(prefix(selector.name, selector.prefixes))
+ }
+ }
+ if (selectors.length > 0) {
+ out += `\nSelectors:\n${selectors.sort().join('')}`
+ }
+
+ let values = []
+ let props = []
+ let hadGrid = false
+ for (let name in prefixes.add) {
+ let data = prefixes.add[name]
+ if (name[0] !== '@' && data.prefixes) {
+ let grid = name.indexOf('grid-') === 0
+ if (grid) hadGrid = true
+ props.push(prefix(name, data.prefixes, grid))
+ }
+
+ if (!Array.isArray(data.values)) {
+ continue
+ }
+ for (let value of data.values) {
+ let grid = value.name.includes('grid')
+ if (grid) hadGrid = true
+ let string = prefix(value.name, value.prefixes, grid)
+ if (!values.includes(string)) {
+ values.push(string)
+ }
+ }
+ }
+
+ if (props.length > 0) {
+ out += `\nProperties:\n${props.sort().join('')}`
+ }
+ if (values.length > 0) {
+ out += `\nValues:\n${values.sort().join('')}`
+ }
+ if (hadGrid) {
+ out += '\n* - Prefixes will be added only on grid: true option.\n'
+ }
+
+ if (!atrules.length && !selectors.length && !props.length && !values.length) {
+ out +=
+ "\nAwesome! Your browsers don't require any vendor prefixes." +
+ '\nNow you can remove Autoprefixer from build steps.'
+ }
+
+ return out
+}
diff --git a/node_modules/autoprefixer/lib/old-selector.js b/node_modules/autoprefixer/lib/old-selector.js
new file mode 100644
index 0000000..4262479
--- /dev/null
+++ b/node_modules/autoprefixer/lib/old-selector.js
@@ -0,0 +1,67 @@
+class OldSelector {
+ constructor(selector, prefix) {
+ this.prefix = prefix
+ this.prefixed = selector.prefixed(this.prefix)
+ this.regexp = selector.regexp(this.prefix)
+
+ this.prefixeds = selector
+ .possible()
+ .map(x => [selector.prefixed(x), selector.regexp(x)])
+
+ this.unprefixed = selector.name
+ this.nameRegexp = selector.regexp()
+ }
+
+ /**
+ * Is rule a hack without unprefixed version bottom
+ */
+ isHack(rule) {
+ let index = rule.parent.index(rule) + 1
+ let rules = rule.parent.nodes
+
+ while (index < rules.length) {
+ let before = rules[index].selector
+ if (!before) {
+ return true
+ }
+
+ if (before.includes(this.unprefixed) && before.match(this.nameRegexp)) {
+ return false
+ }
+
+ let some = false
+ for (let [string, regexp] of this.prefixeds) {
+ if (before.includes(string) && before.match(regexp)) {
+ some = true
+ break
+ }
+ }
+
+ if (!some) {
+ return true
+ }
+
+ index += 1
+ }
+
+ return true
+ }
+
+ /**
+ * Does rule contain an unnecessary prefixed selector
+ */
+ check(rule) {
+ if (!rule.selector.includes(this.prefixed)) {
+ return false
+ }
+ if (!rule.selector.match(this.regexp)) {
+ return false
+ }
+ if (this.isHack(rule)) {
+ return false
+ }
+ return true
+ }
+}
+
+module.exports = OldSelector
diff --git a/node_modules/autoprefixer/lib/old-value.js b/node_modules/autoprefixer/lib/old-value.js
new file mode 100644
index 0000000..63a2643
--- /dev/null
+++ b/node_modules/autoprefixer/lib/old-value.js
@@ -0,0 +1,22 @@
+let utils = require('./utils')
+
+class OldValue {
+ constructor(unprefixed, prefixed, string, regexp) {
+ this.unprefixed = unprefixed
+ this.prefixed = prefixed
+ this.string = string || prefixed
+ this.regexp = regexp || utils.regexp(prefixed)
+ }
+
+ /**
+ * Check, that value contain old value
+ */
+ check(value) {
+ if (value.includes(this.string)) {
+ return !!value.match(this.regexp)
+ }
+ return false
+ }
+}
+
+module.exports = OldValue
diff --git a/node_modules/autoprefixer/lib/prefixer.js b/node_modules/autoprefixer/lib/prefixer.js
new file mode 100644
index 0000000..ca28230
--- /dev/null
+++ b/node_modules/autoprefixer/lib/prefixer.js
@@ -0,0 +1,144 @@
+let Browsers = require('./browsers')
+let vendor = require('./vendor')
+let utils = require('./utils')
+
+/**
+ * Recursively clone objects
+ */
+function clone(obj, parent) {
+ let cloned = new obj.constructor()
+
+ for (let i of Object.keys(obj || {})) {
+ let value = obj[i]
+ if (i === 'parent' && typeof value === 'object') {
+ if (parent) {
+ cloned[i] = parent
+ }
+ } else if (i === 'source' || i === null) {
+ cloned[i] = value
+ } else if (Array.isArray(value)) {
+ cloned[i] = value.map(x => clone(x, cloned))
+ } else if (
+ i !== '_autoprefixerPrefix' &&
+ i !== '_autoprefixerValues' &&
+ i !== 'proxyCache'
+ ) {
+ if (typeof value === 'object' && value !== null) {
+ value = clone(value, cloned)
+ }
+ cloned[i] = value
+ }
+ }
+
+ return cloned
+}
+
+class Prefixer {
+ /**
+ * Add hack to selected names
+ */
+ static hack(klass) {
+ if (!this.hacks) {
+ this.hacks = {}
+ }
+ return klass.names.map(name => {
+ this.hacks[name] = klass
+ return this.hacks[name]
+ })
+ }
+
+ /**
+ * Load hacks for some names
+ */
+ static load(name, prefixes, all) {
+ let Klass = this.hacks && this.hacks[name]
+ if (Klass) {
+ return new Klass(name, prefixes, all)
+ } else {
+ return new this(name, prefixes, all)
+ }
+ }
+
+ /**
+ * Clone node and clean autprefixer custom caches
+ */
+ static clone(node, overrides) {
+ let cloned = clone(node)
+ for (let name in overrides) {
+ cloned[name] = overrides[name]
+ }
+ return cloned
+ }
+
+ constructor(name, prefixes, all) {
+ this.prefixes = prefixes
+ this.name = name
+ this.all = all
+ }
+
+ /**
+ * Find prefix in node parents
+ */
+ parentPrefix(node) {
+ let prefix
+
+ if (typeof node._autoprefixerPrefix !== 'undefined') {
+ prefix = node._autoprefixerPrefix
+ } else if (node.type === 'decl' && node.prop[0] === '-') {
+ prefix = vendor.prefix(node.prop)
+ } else if (node.type === 'root') {
+ prefix = false
+ } else if (
+ node.type === 'rule' &&
+ node.selector.includes(':-') &&
+ /:(-\w+-)/.test(node.selector)
+ ) {
+ prefix = node.selector.match(/:(-\w+-)/)[1]
+ } else if (node.type === 'atrule' && node.name[0] === '-') {
+ prefix = vendor.prefix(node.name)
+ } else {
+ prefix = this.parentPrefix(node.parent)
+ }
+
+ if (!Browsers.prefixes().includes(prefix)) {
+ prefix = false
+ }
+
+ node._autoprefixerPrefix = prefix
+
+ return node._autoprefixerPrefix
+ }
+
+ /**
+ * Clone node with prefixes
+ */
+ process(node, result) {
+ if (!this.check(node)) {
+ return undefined
+ }
+
+ let parent = this.parentPrefix(node)
+
+ let prefixes = this.prefixes.filter(
+ prefix => !parent || parent === utils.removeNote(prefix)
+ )
+
+ let added = []
+ for (let prefix of prefixes) {
+ if (this.add(node, prefix, added.concat([prefix]), result)) {
+ added.push(prefix)
+ }
+ }
+
+ return added
+ }
+
+ /**
+ * Shortcut for Prefixer.clone
+ */
+ clone(node, overrides) {
+ return Prefixer.clone(node, overrides)
+ }
+}
+
+module.exports = Prefixer
diff --git a/node_modules/autoprefixer/lib/prefixes.js b/node_modules/autoprefixer/lib/prefixes.js
new file mode 100644
index 0000000..2cd497a
--- /dev/null
+++ b/node_modules/autoprefixer/lib/prefixes.js
@@ -0,0 +1,428 @@
+let vendor = require('./vendor')
+let Declaration = require('./declaration')
+let Resolution = require('./resolution')
+let Transition = require('./transition')
+let Processor = require('./processor')
+let Supports = require('./supports')
+let Browsers = require('./browsers')
+let Selector = require('./selector')
+let AtRule = require('./at-rule')
+let Value = require('./value')
+let utils = require('./utils')
+let hackFullscreen = require('./hacks/fullscreen')
+let hackPlaceholder = require('./hacks/placeholder')
+let hackPlaceholderShown = require('./hacks/placeholder-shown')
+let hackFileSelectorButton = require('./hacks/file-selector-button')
+let hackFlex = require('./hacks/flex')
+let hackOrder = require('./hacks/order')
+let hackFilter = require('./hacks/filter')
+let hackGridEnd = require('./hacks/grid-end')
+let hackAnimation = require('./hacks/animation')
+let hackFlexFlow = require('./hacks/flex-flow')
+let hackFlexGrow = require('./hacks/flex-grow')
+let hackFlexWrap = require('./hacks/flex-wrap')
+let hackGridArea = require('./hacks/grid-area')
+let hackPlaceSelf = require('./hacks/place-self')
+let hackGridStart = require('./hacks/grid-start')
+let hackAlignSelf = require('./hacks/align-self')
+let hackAppearance = require('./hacks/appearance')
+let hackFlexBasis = require('./hacks/flex-basis')
+let hackMaskBorder = require('./hacks/mask-border')
+let hackMaskComposite = require('./hacks/mask-composite')
+let hackAlignItems = require('./hacks/align-items')
+let hackUserSelect = require('./hacks/user-select')
+let hackFlexShrink = require('./hacks/flex-shrink')
+let hackBreakProps = require('./hacks/break-props')
+let hackWritingMode = require('./hacks/writing-mode')
+let hackBorderImage = require('./hacks/border-image')
+let hackAlignContent = require('./hacks/align-content')
+let hackBorderRadius = require('./hacks/border-radius')
+let hackBlockLogical = require('./hacks/block-logical')
+let hackGridTemplate = require('./hacks/grid-template')
+let hackInlineLogical = require('./hacks/inline-logical')
+let hackGridRowAlign = require('./hacks/grid-row-align')
+let hackTransformDecl = require('./hacks/transform-decl')
+let hackFlexDirection = require('./hacks/flex-direction')
+let hackImageRendering = require('./hacks/image-rendering')
+let hackBackdropFilter = require('./hacks/backdrop-filter')
+let hackBackgroundClip = require('./hacks/background-clip')
+let hackTextDecoration = require('./hacks/text-decoration')
+let hackJustifyContent = require('./hacks/justify-content')
+let hackBackgroundSize = require('./hacks/background-size')
+let hackGridRowColumn = require('./hacks/grid-row-column')
+let hackGridRowsColumns = require('./hacks/grid-rows-columns')
+let hackGridColumnAlign = require('./hacks/grid-column-align')
+let hackPrintColorAdjust = require('./hacks/print-color-adjust')
+let hackOverscrollBehavior = require('./hacks/overscroll-behavior')
+let hackGridTemplateAreas = require('./hacks/grid-template-areas')
+let hackTextEmphasisPosition = require('./hacks/text-emphasis-position')
+let hackTextDecorationSkipInk = require('./hacks/text-decoration-skip-ink')
+let hackGradient = require('./hacks/gradient')
+let hackIntrinsic = require('./hacks/intrinsic')
+let hackPixelated = require('./hacks/pixelated')
+let hackImageSet = require('./hacks/image-set')
+let hackCrossFade = require('./hacks/cross-fade')
+let hackDisplayFlex = require('./hacks/display-flex')
+let hackDisplayGrid = require('./hacks/display-grid')
+let hackFilterValue = require('./hacks/filter-value')
+let hackAutofill = require('./hacks/autofill')
+
+Selector.hack(hackAutofill)
+Selector.hack(hackFullscreen)
+Selector.hack(hackPlaceholder)
+Selector.hack(hackPlaceholderShown)
+Selector.hack(hackFileSelectorButton)
+Declaration.hack(hackFlex)
+Declaration.hack(hackOrder)
+Declaration.hack(hackFilter)
+Declaration.hack(hackGridEnd)
+Declaration.hack(hackAnimation)
+Declaration.hack(hackFlexFlow)
+Declaration.hack(hackFlexGrow)
+Declaration.hack(hackFlexWrap)
+Declaration.hack(hackGridArea)
+Declaration.hack(hackPlaceSelf)
+Declaration.hack(hackGridStart)
+Declaration.hack(hackAlignSelf)
+Declaration.hack(hackAppearance)
+Declaration.hack(hackFlexBasis)
+Declaration.hack(hackMaskBorder)
+Declaration.hack(hackMaskComposite)
+Declaration.hack(hackAlignItems)
+Declaration.hack(hackUserSelect)
+Declaration.hack(hackFlexShrink)
+Declaration.hack(hackBreakProps)
+Declaration.hack(hackWritingMode)
+Declaration.hack(hackBorderImage)
+Declaration.hack(hackAlignContent)
+Declaration.hack(hackBorderRadius)
+Declaration.hack(hackBlockLogical)
+Declaration.hack(hackGridTemplate)
+Declaration.hack(hackInlineLogical)
+Declaration.hack(hackGridRowAlign)
+Declaration.hack(hackTransformDecl)
+Declaration.hack(hackFlexDirection)
+Declaration.hack(hackImageRendering)
+Declaration.hack(hackBackdropFilter)
+Declaration.hack(hackBackgroundClip)
+Declaration.hack(hackTextDecoration)
+Declaration.hack(hackJustifyContent)
+Declaration.hack(hackBackgroundSize)
+Declaration.hack(hackGridRowColumn)
+Declaration.hack(hackGridRowsColumns)
+Declaration.hack(hackGridColumnAlign)
+Declaration.hack(hackOverscrollBehavior)
+Declaration.hack(hackGridTemplateAreas)
+Declaration.hack(hackPrintColorAdjust)
+Declaration.hack(hackTextEmphasisPosition)
+Declaration.hack(hackTextDecorationSkipInk)
+Value.hack(hackGradient)
+Value.hack(hackIntrinsic)
+Value.hack(hackPixelated)
+Value.hack(hackImageSet)
+Value.hack(hackCrossFade)
+Value.hack(hackDisplayFlex)
+Value.hack(hackDisplayGrid)
+Value.hack(hackFilterValue)
+
+let declsCache = new Map()
+
+class Prefixes {
+ constructor(data, browsers, options = {}) {
+ this.data = data
+ this.browsers = browsers
+ this.options = options
+ ;[this.add, this.remove] = this.preprocess(this.select(this.data))
+ this.transition = new Transition(this)
+ this.processor = new Processor(this)
+ }
+
+ /**
+ * Return clone instance to remove all prefixes
+ */
+ cleaner() {
+ if (this.cleanerCache) {
+ return this.cleanerCache
+ }
+
+ if (this.browsers.selected.length) {
+ let empty = new Browsers(this.browsers.data, [])
+ this.cleanerCache = new Prefixes(this.data, empty, this.options)
+ } else {
+ return this
+ }
+
+ return this.cleanerCache
+ }
+
+ /**
+ * Select prefixes from data, which is necessary for selected browsers
+ */
+ select(list) {
+ let selected = { add: {}, remove: {} }
+
+ for (let name in list) {
+ let data = list[name]
+ let add = data.browsers.map(i => {
+ let params = i.split(' ')
+ return {
+ browser: `${params[0]} ${params[1]}`,
+ note: params[2]
+ }
+ })
+
+ let notes = add
+ .filter(i => i.note)
+ .map(i => `${this.browsers.prefix(i.browser)} ${i.note}`)
+ notes = utils.uniq(notes)
+
+ add = add
+ .filter(i => this.browsers.isSelected(i.browser))
+ .map(i => {
+ let prefix = this.browsers.prefix(i.browser)
+ if (i.note) {
+ return `${prefix} ${i.note}`
+ } else {
+ return prefix
+ }
+ })
+ add = this.sort(utils.uniq(add))
+
+ if (this.options.flexbox === 'no-2009') {
+ add = add.filter(i => !i.includes('2009'))
+ }
+
+ let all = data.browsers.map(i => this.browsers.prefix(i))
+ if (data.mistakes) {
+ all = all.concat(data.mistakes)
+ }
+ all = all.concat(notes)
+ all = utils.uniq(all)
+
+ if (add.length) {
+ selected.add[name] = add
+ if (add.length < all.length) {
+ selected.remove[name] = all.filter(i => !add.includes(i))
+ }
+ } else {
+ selected.remove[name] = all
+ }
+ }
+
+ return selected
+ }
+
+ /**
+ * Sort vendor prefixes
+ */
+ sort(prefixes) {
+ return prefixes.sort((a, b) => {
+ let aLength = utils.removeNote(a).length
+ let bLength = utils.removeNote(b).length
+
+ if (aLength === bLength) {
+ return b.length - a.length
+ } else {
+ return bLength - aLength
+ }
+ })
+ }
+
+ /**
+ * Cache prefixes data to fast CSS processing
+ */
+ preprocess(selected) {
+ let add = {
+ 'selectors': [],
+ '@supports': new Supports(Prefixes, this)
+ }
+ for (let name in selected.add) {
+ let prefixes = selected.add[name]
+ if (name === '@keyframes' || name === '@viewport') {
+ add[name] = new AtRule(name, prefixes, this)
+ } else if (name === '@resolution') {
+ add[name] = new Resolution(name, prefixes, this)
+ } else if (this.data[name].selector) {
+ add.selectors.push(Selector.load(name, prefixes, this))
+ } else {
+ let props = this.data[name].props
+
+ if (props) {
+ let value = Value.load(name, prefixes, this)
+ for (let prop of props) {
+ if (!add[prop]) {
+ add[prop] = { values: [] }
+ }
+ add[prop].values.push(value)
+ }
+ } else {
+ let values = (add[name] && add[name].values) || []
+ add[name] = Declaration.load(name, prefixes, this)
+ add[name].values = values
+ }
+ }
+ }
+
+ let remove = { selectors: [] }
+ for (let name in selected.remove) {
+ let prefixes = selected.remove[name]
+ if (this.data[name].selector) {
+ let selector = Selector.load(name, prefixes)
+ for (let prefix of prefixes) {
+ remove.selectors.push(selector.old(prefix))
+ }
+ } else if (name === '@keyframes' || name === '@viewport') {
+ for (let prefix of prefixes) {
+ let prefixed = `@${prefix}${name.slice(1)}`
+ remove[prefixed] = { remove: true }
+ }
+ } else if (name === '@resolution') {
+ remove[name] = new Resolution(name, prefixes, this)
+ } else {
+ let props = this.data[name].props
+ if (props) {
+ let value = Value.load(name, [], this)
+ for (let prefix of prefixes) {
+ let old = value.old(prefix)
+ if (old) {
+ for (let prop of props) {
+ if (!remove[prop]) {
+ remove[prop] = {}
+ }
+ if (!remove[prop].values) {
+ remove[prop].values = []
+ }
+ remove[prop].values.push(old)
+ }
+ }
+ }
+ } else {
+ for (let p of prefixes) {
+ let olds = this.decl(name).old(name, p)
+ if (name === 'align-self') {
+ let a = add[name] && add[name].prefixes
+ if (a) {
+ if (p === '-webkit- 2009' && a.includes('-webkit-')) {
+ continue
+ } else if (p === '-webkit-' && a.includes('-webkit- 2009')) {
+ continue
+ }
+ }
+ }
+ for (let prefixed of olds) {
+ if (!remove[prefixed]) {
+ remove[prefixed] = {}
+ }
+ remove[prefixed].remove = true
+ }
+ }
+ }
+ }
+ }
+
+ return [add, remove]
+ }
+
+ /**
+ * Declaration loader with caching
+ */
+ decl(prop) {
+ if (!declsCache.has(prop)) {
+ declsCache.set(prop, Declaration.load(prop))
+ }
+
+ return declsCache.get(prop)
+ }
+
+ /**
+ * Return unprefixed version of property
+ */
+ unprefixed(prop) {
+ let value = this.normalize(vendor.unprefixed(prop))
+ if (value === 'flex-direction') {
+ value = 'flex-flow'
+ }
+ return value
+ }
+
+ /**
+ * Normalize prefix for remover
+ */
+ normalize(prop) {
+ return this.decl(prop).normalize(prop)
+ }
+
+ /**
+ * Return prefixed version of property
+ */
+ prefixed(prop, prefix) {
+ prop = vendor.unprefixed(prop)
+ return this.decl(prop).prefixed(prop, prefix)
+ }
+
+ /**
+ * Return values, which must be prefixed in selected property
+ */
+ values(type, prop) {
+ let data = this[type]
+
+ let global = data['*'] && data['*'].values
+ let values = data[prop] && data[prop].values
+
+ if (global && values) {
+ return utils.uniq(global.concat(values))
+ } else {
+ return global || values || []
+ }
+ }
+
+ /**
+ * Group declaration by unprefixed property to check them
+ */
+ group(decl) {
+ let rule = decl.parent
+ let index = rule.index(decl)
+ let { length } = rule.nodes
+ let unprefixed = this.unprefixed(decl.prop)
+
+ let checker = (step, callback) => {
+ index += step
+ while (index >= 0 && index < length) {
+ let other = rule.nodes[index]
+ if (other.type === 'decl') {
+ if (step === -1 && other.prop === unprefixed) {
+ if (!Browsers.withPrefix(other.value)) {
+ break
+ }
+ }
+
+ if (this.unprefixed(other.prop) !== unprefixed) {
+ break
+ } else if (callback(other) === true) {
+ return true
+ }
+
+ if (step === +1 && other.prop === unprefixed) {
+ if (!Browsers.withPrefix(other.value)) {
+ break
+ }
+ }
+ }
+
+ index += step
+ }
+ return false
+ }
+
+ return {
+ up(callback) {
+ return checker(-1, callback)
+ },
+ down(callback) {
+ return checker(+1, callback)
+ }
+ }
+ }
+}
+
+module.exports = Prefixes
diff --git a/node_modules/autoprefixer/lib/processor.js b/node_modules/autoprefixer/lib/processor.js
new file mode 100644
index 0000000..d27b5e8
--- /dev/null
+++ b/node_modules/autoprefixer/lib/processor.js
@@ -0,0 +1,718 @@
+let parser = require('postcss-value-parser')
+
+let Value = require('./value')
+let insertAreas = require('./hacks/grid-utils').insertAreas
+
+const OLD_LINEAR = /(^|[^-])linear-gradient\(\s*(top|left|right|bottom)/i
+const OLD_RADIAL = /(^|[^-])radial-gradient\(\s*\d+(\w*|%)\s+\d+(\w*|%)\s*,/i
+const IGNORE_NEXT = /(!\s*)?autoprefixer:\s*ignore\s+next/i
+const GRID_REGEX = /(!\s*)?autoprefixer\s*grid:\s*(on|off|(no-)?autoplace)/i
+
+const SIZES = [
+ 'width',
+ 'height',
+ 'min-width',
+ 'max-width',
+ 'min-height',
+ 'max-height',
+ 'inline-size',
+ 'min-inline-size',
+ 'max-inline-size',
+ 'block-size',
+ 'min-block-size',
+ 'max-block-size'
+]
+
+function hasGridTemplate(decl) {
+ return decl.parent.some(
+ i => i.prop === 'grid-template' || i.prop === 'grid-template-areas'
+ )
+}
+
+function hasRowsAndColumns(decl) {
+ let hasRows = decl.parent.some(i => i.prop === 'grid-template-rows')
+ let hasColumns = decl.parent.some(i => i.prop === 'grid-template-columns')
+ return hasRows && hasColumns
+}
+
+class Processor {
+ constructor(prefixes) {
+ this.prefixes = prefixes
+ }
+
+ /**
+ * Add necessary prefixes
+ */
+ add(css, result) {
+ // At-rules
+ let resolution = this.prefixes.add['@resolution']
+ let keyframes = this.prefixes.add['@keyframes']
+ let viewport = this.prefixes.add['@viewport']
+ let supports = this.prefixes.add['@supports']
+
+ css.walkAtRules(rule => {
+ if (rule.name === 'keyframes') {
+ if (!this.disabled(rule, result)) {
+ return keyframes && keyframes.process(rule)
+ }
+ } else if (rule.name === 'viewport') {
+ if (!this.disabled(rule, result)) {
+ return viewport && viewport.process(rule)
+ }
+ } else if (rule.name === 'supports') {
+ if (
+ this.prefixes.options.supports !== false &&
+ !this.disabled(rule, result)
+ ) {
+ return supports.process(rule)
+ }
+ } else if (rule.name === 'media' && rule.params.includes('-resolution')) {
+ if (!this.disabled(rule, result)) {
+ return resolution && resolution.process(rule)
+ }
+ }
+
+ return undefined
+ })
+
+ // Selectors
+ css.walkRules(rule => {
+ if (this.disabled(rule, result)) return undefined
+
+ return this.prefixes.add.selectors.map(selector => {
+ return selector.process(rule, result)
+ })
+ })
+
+ function insideGrid(decl) {
+ return decl.parent.nodes.some(node => {
+ if (node.type !== 'decl') return false
+ let displayGrid =
+ node.prop === 'display' && /(inline-)?grid/.test(node.value)
+ let gridTemplate = node.prop.startsWith('grid-template')
+ let gridGap = /^grid-([A-z]+-)?gap/.test(node.prop)
+ return displayGrid || gridTemplate || gridGap
+ })
+ }
+ function insideFlex(decl) {
+ return decl.parent.some(node => {
+ return node.prop === 'display' && /(inline-)?flex/.test(node.value)
+ })
+ }
+
+ let gridPrefixes =
+ this.gridStatus(css, result) &&
+ this.prefixes.add['grid-area'] &&
+ this.prefixes.add['grid-area'].prefixes
+
+ css.walkDecls(decl => {
+ if (this.disabledDecl(decl, result)) return undefined
+
+ let parent = decl.parent
+ let prop = decl.prop
+ let value = decl.value
+
+ if (prop === 'color-adjust') {
+ if (parent.every(i => i.prop !== 'print-color-adjust')) {
+ result.warn(
+ 'Replace color-adjust to print-color-adjust. ' +
+ 'The color-adjust shorthand is currently deprecated.',
+ { node: decl }
+ )
+ }
+ } else if (prop === 'grid-row-span') {
+ result.warn(
+ 'grid-row-span is not part of final Grid Layout. Use grid-row.',
+ { node: decl }
+ )
+ return undefined
+ } else if (prop === 'grid-column-span') {
+ result.warn(
+ 'grid-column-span is not part of final Grid Layout. Use grid-column.',
+ { node: decl }
+ )
+ return undefined
+ } else if (prop === 'display' && value === 'box') {
+ result.warn(
+ 'You should write display: flex by final spec ' +
+ 'instead of display: box',
+ { node: decl }
+ )
+ return undefined
+ } else if (prop === 'text-emphasis-position') {
+ if (value === 'under' || value === 'over') {
+ result.warn(
+ 'You should use 2 values for text-emphasis-position ' +
+ 'For example, `under left` instead of just `under`.',
+ { node: decl }
+ )
+ }
+ } else if (
+ /^(align|justify|place)-(items|content)$/.test(prop) &&
+ insideFlex(decl)
+ ) {
+ if (value === 'start' || value === 'end') {
+ result.warn(
+ `${value} value has mixed support, consider using ` +
+ `flex-${value} instead`,
+ { node: decl }
+ )
+ }
+ } else if (prop === 'text-decoration-skip' && value === 'ink') {
+ result.warn(
+ 'Replace text-decoration-skip: ink to ' +
+ 'text-decoration-skip-ink: auto, because spec had been changed',
+ { node: decl }
+ )
+ } else {
+ if (gridPrefixes && this.gridStatus(decl, result)) {
+ if (decl.value === 'subgrid') {
+ result.warn('IE does not support subgrid', { node: decl })
+ }
+ if (/^(align|justify|place)-items$/.test(prop) && insideGrid(decl)) {
+ let fixed = prop.replace('-items', '-self')
+ result.warn(
+ `IE does not support ${prop} on grid containers. ` +
+ `Try using ${fixed} on child elements instead: ` +
+ `${decl.parent.selector} > * { ${fixed}: ${decl.value} }`,
+ { node: decl }
+ )
+ } else if (
+ /^(align|justify|place)-content$/.test(prop) &&
+ insideGrid(decl)
+ ) {
+ result.warn(`IE does not support ${decl.prop} on grid containers`, {
+ node: decl
+ })
+ } else if (prop === 'display' && decl.value === 'contents') {
+ result.warn(
+ 'Please do not use display: contents; ' +
+ 'if you have grid setting enabled',
+ { node: decl }
+ )
+ return undefined
+ } else if (decl.prop === 'grid-gap') {
+ let status = this.gridStatus(decl, result)
+ if (
+ status === 'autoplace' &&
+ !hasRowsAndColumns(decl) &&
+ !hasGridTemplate(decl)
+ ) {
+ result.warn(
+ 'grid-gap only works if grid-template(-areas) is being ' +
+ 'used or both rows and columns have been declared ' +
+ 'and cells have not been manually ' +
+ 'placed inside the explicit grid',
+ { node: decl }
+ )
+ } else if (
+ (status === true || status === 'no-autoplace') &&
+ !hasGridTemplate(decl)
+ ) {
+ result.warn(
+ 'grid-gap only works if grid-template(-areas) is being used',
+ { node: decl }
+ )
+ }
+ } else if (prop === 'grid-auto-columns') {
+ result.warn('grid-auto-columns is not supported by IE', {
+ node: decl
+ })
+ return undefined
+ } else if (prop === 'grid-auto-rows') {
+ result.warn('grid-auto-rows is not supported by IE', { node: decl })
+ return undefined
+ } else if (prop === 'grid-auto-flow') {
+ let hasRows = parent.some(i => i.prop === 'grid-template-rows')
+ let hasCols = parent.some(i => i.prop === 'grid-template-columns')
+
+ if (hasGridTemplate(decl)) {
+ result.warn('grid-auto-flow is not supported by IE', {
+ node: decl
+ })
+ } else if (value.includes('dense')) {
+ result.warn('grid-auto-flow: dense is not supported by IE', {
+ node: decl
+ })
+ } else if (!hasRows && !hasCols) {
+ result.warn(
+ 'grid-auto-flow works only if grid-template-rows and ' +
+ 'grid-template-columns are present in the same rule',
+ { node: decl }
+ )
+ }
+ return undefined
+ } else if (value.includes('auto-fit')) {
+ result.warn('auto-fit value is not supported by IE', {
+ node: decl,
+ word: 'auto-fit'
+ })
+ return undefined
+ } else if (value.includes('auto-fill')) {
+ result.warn('auto-fill value is not supported by IE', {
+ node: decl,
+ word: 'auto-fill'
+ })
+ return undefined
+ } else if (prop.startsWith('grid-template') && value.includes('[')) {
+ result.warn(
+ 'Autoprefixer currently does not support line names. ' +
+ 'Try using grid-template-areas instead.',
+ { node: decl, word: '[' }
+ )
+ }
+ }
+ if (value.includes('radial-gradient')) {
+ if (OLD_RADIAL.test(decl.value)) {
+ result.warn(
+ 'Gradient has outdated direction syntax. ' +
+ 'New syntax is like `closest-side at 0 0` ' +
+ 'instead of `0 0, closest-side`.',
+ { node: decl }
+ )
+ } else {
+ let ast = parser(value)
+
+ for (let i of ast.nodes) {
+ if (i.type === 'function' && i.value === 'radial-gradient') {
+ for (let word of i.nodes) {
+ if (word.type === 'word') {
+ if (word.value === 'cover') {
+ result.warn(
+ 'Gradient has outdated direction syntax. ' +
+ 'Replace `cover` to `farthest-corner`.',
+ { node: decl }
+ )
+ } else if (word.value === 'contain') {
+ result.warn(
+ 'Gradient has outdated direction syntax. ' +
+ 'Replace `contain` to `closest-side`.',
+ { node: decl }
+ )
+ }
+ }
+ }
+ }
+ }
+ }
+ }
+ if (value.includes('linear-gradient')) {
+ if (OLD_LINEAR.test(value)) {
+ result.warn(
+ 'Gradient has outdated direction syntax. ' +
+ 'New syntax is like `to left` instead of `right`.',
+ { node: decl }
+ )
+ }
+ }
+ }
+
+ if (SIZES.includes(decl.prop)) {
+ if (!decl.value.includes('-fill-available')) {
+ if (decl.value.includes('fill-available')) {
+ result.warn(
+ 'Replace fill-available to stretch, ' +
+ 'because spec had been changed',
+ { node: decl }
+ )
+ } else if (decl.value.includes('fill')) {
+ let ast = parser(value)
+ if (ast.nodes.some(i => i.type === 'word' && i.value === 'fill')) {
+ result.warn(
+ 'Replace fill to stretch, because spec had been changed',
+ { node: decl }
+ )
+ }
+ }
+ }
+ }
+
+ let prefixer
+
+ if (decl.prop === 'transition' || decl.prop === 'transition-property') {
+ // Transition
+ return this.prefixes.transition.add(decl, result)
+ } else if (decl.prop === 'align-self') {
+ // align-self flexbox or grid
+ let display = this.displayType(decl)
+ if (display !== 'grid' && this.prefixes.options.flexbox !== false) {
+ prefixer = this.prefixes.add['align-self']
+ if (prefixer && prefixer.prefixes) {
+ prefixer.process(decl)
+ }
+ }
+ if (this.gridStatus(decl, result) !== false) {
+ prefixer = this.prefixes.add['grid-row-align']
+ if (prefixer && prefixer.prefixes) {
+ return prefixer.process(decl, result)
+ }
+ }
+ } else if (decl.prop === 'justify-self') {
+ // justify-self flexbox or grid
+ if (this.gridStatus(decl, result) !== false) {
+ prefixer = this.prefixes.add['grid-column-align']
+ if (prefixer && prefixer.prefixes) {
+ return prefixer.process(decl, result)
+ }
+ }
+ } else if (decl.prop === 'place-self') {
+ prefixer = this.prefixes.add['place-self']
+ if (
+ prefixer &&
+ prefixer.prefixes &&
+ this.gridStatus(decl, result) !== false
+ ) {
+ return prefixer.process(decl, result)
+ }
+ } else {
+ // Properties
+ prefixer = this.prefixes.add[decl.prop]
+ if (prefixer && prefixer.prefixes) {
+ return prefixer.process(decl, result)
+ }
+ }
+
+ return undefined
+ })
+
+ // Insert grid-area prefixes. We need to be able to store the different
+ // rules as a data and hack API is not enough for this
+ if (this.gridStatus(css, result)) {
+ insertAreas(css, this.disabled)
+ }
+
+ // Values
+ return css.walkDecls(decl => {
+ if (this.disabledValue(decl, result)) return
+
+ let unprefixed = this.prefixes.unprefixed(decl.prop)
+ let list = this.prefixes.values('add', unprefixed)
+ if (Array.isArray(list)) {
+ for (let value of list) {
+ if (value.process) value.process(decl, result)
+ }
+ }
+ Value.save(this.prefixes, decl)
+ })
+ }
+
+ /**
+ * Remove unnecessary pefixes
+ */
+ remove(css, result) {
+ // At-rules
+ let resolution = this.prefixes.remove['@resolution']
+
+ css.walkAtRules((rule, i) => {
+ if (this.prefixes.remove[`@${rule.name}`]) {
+ if (!this.disabled(rule, result)) {
+ rule.parent.removeChild(i)
+ }
+ } else if (
+ rule.name === 'media' &&
+ rule.params.includes('-resolution') &&
+ resolution
+ ) {
+ resolution.clean(rule)
+ }
+ })
+
+ // Selectors
+ for (let checker of this.prefixes.remove.selectors) {
+ css.walkRules((rule, i) => {
+ if (checker.check(rule)) {
+ if (!this.disabled(rule, result)) {
+ rule.parent.removeChild(i)
+ }
+ }
+ })
+ }
+
+ return css.walkDecls((decl, i) => {
+ if (this.disabled(decl, result)) return
+
+ let rule = decl.parent
+ let unprefixed = this.prefixes.unprefixed(decl.prop)
+
+ // Transition
+ if (decl.prop === 'transition' || decl.prop === 'transition-property') {
+ this.prefixes.transition.remove(decl)
+ }
+
+ // Properties
+ if (
+ this.prefixes.remove[decl.prop] &&
+ this.prefixes.remove[decl.prop].remove
+ ) {
+ let notHack = this.prefixes.group(decl).down(other => {
+ return this.prefixes.normalize(other.prop) === unprefixed
+ })
+
+ if (unprefixed === 'flex-flow') {
+ notHack = true
+ }
+
+ if (decl.prop === '-webkit-box-orient') {
+ let hacks = { 'flex-direction': true, 'flex-flow': true }
+ if (!decl.parent.some(j => hacks[j.prop])) return
+ }
+
+ if (notHack && !this.withHackValue(decl)) {
+ if (decl.raw('before').includes('\n')) {
+ this.reduceSpaces(decl)
+ }
+ rule.removeChild(i)
+ return
+ }
+ }
+
+ // Values
+ for (let checker of this.prefixes.values('remove', unprefixed)) {
+ if (!checker.check) continue
+ if (!checker.check(decl.value)) continue
+
+ unprefixed = checker.unprefixed
+ let notHack = this.prefixes.group(decl).down(other => {
+ return other.value.includes(unprefixed)
+ })
+
+ if (notHack) {
+ rule.removeChild(i)
+ return
+ }
+ }
+ })
+ }
+
+ /**
+ * Some rare old values, which is not in standard
+ */
+ withHackValue(decl) {
+ return decl.prop === '-webkit-background-clip' && decl.value === 'text'
+ }
+
+ /**
+ * Check for grid/flexbox options.
+ */
+ disabledValue(node, result) {
+ if (this.gridStatus(node, result) === false && node.type === 'decl') {
+ if (node.prop === 'display' && node.value.includes('grid')) {
+ return true
+ }
+ }
+ if (this.prefixes.options.flexbox === false && node.type === 'decl') {
+ if (node.prop === 'display' && node.value.includes('flex')) {
+ return true
+ }
+ }
+ if (node.type === 'decl' && node.prop === 'content') {
+ return true
+ }
+
+ return this.disabled(node, result)
+ }
+
+ /**
+ * Check for grid/flexbox options.
+ */
+ disabledDecl(node, result) {
+ if (this.gridStatus(node, result) === false && node.type === 'decl') {
+ if (node.prop.includes('grid') || node.prop === 'justify-items') {
+ return true
+ }
+ }
+ if (this.prefixes.options.flexbox === false && node.type === 'decl') {
+ let other = ['order', 'justify-content', 'align-items', 'align-content']
+ if (node.prop.includes('flex') || other.includes(node.prop)) {
+ return true
+ }
+ }
+
+ return this.disabled(node, result)
+ }
+
+ /**
+ * Check for control comment and global options
+ */
+ disabled(node, result) {
+ if (!node) return false
+
+ if (node._autoprefixerDisabled !== undefined) {
+ return node._autoprefixerDisabled
+ }
+
+ if (node.parent) {
+ let p = node.prev()
+ if (p && p.type === 'comment' && IGNORE_NEXT.test(p.text)) {
+ node._autoprefixerDisabled = true
+ node._autoprefixerSelfDisabled = true
+ return true
+ }
+ }
+
+ let value = null
+ if (node.nodes) {
+ let status
+ node.each(i => {
+ if (i.type !== 'comment') return
+ if (/(!\s*)?autoprefixer:\s*(off|on)/i.test(i.text)) {
+ if (typeof status !== 'undefined') {
+ result.warn(
+ 'Second Autoprefixer control comment ' +
+ 'was ignored. Autoprefixer applies control ' +
+ 'comment to whole block, not to next rules.',
+ { node: i }
+ )
+ } else {
+ status = /on/i.test(i.text)
+ }
+ }
+ })
+
+ if (status !== undefined) {
+ value = !status
+ }
+ }
+ if (!node.nodes || value === null) {
+ if (node.parent) {
+ let isParentDisabled = this.disabled(node.parent, result)
+ if (node.parent._autoprefixerSelfDisabled === true) {
+ value = false
+ } else {
+ value = isParentDisabled
+ }
+ } else {
+ value = false
+ }
+ }
+ node._autoprefixerDisabled = value
+ return value
+ }
+
+ /**
+ * Normalize spaces in cascade declaration group
+ */
+ reduceSpaces(decl) {
+ let stop = false
+ this.prefixes.group(decl).up(() => {
+ stop = true
+ return true
+ })
+ if (stop) {
+ return
+ }
+
+ let parts = decl.raw('before').split('\n')
+ let prevMin = parts[parts.length - 1].length
+ let diff = false
+
+ this.prefixes.group(decl).down(other => {
+ parts = other.raw('before').split('\n')
+ let last = parts.length - 1
+
+ if (parts[last].length > prevMin) {
+ if (diff === false) {
+ diff = parts[last].length - prevMin
+ }
+
+ parts[last] = parts[last].slice(0, -diff)
+ other.raws.before = parts.join('\n')
+ }
+ })
+ }
+
+ /**
+ * Is it flebox or grid rule
+ */
+ displayType(decl) {
+ for (let i of decl.parent.nodes) {
+ if (i.prop !== 'display') {
+ continue
+ }
+
+ if (i.value.includes('flex')) {
+ return 'flex'
+ }
+
+ if (i.value.includes('grid')) {
+ return 'grid'
+ }
+ }
+
+ return false
+ }
+
+ /**
+ * Set grid option via control comment
+ */
+ gridStatus(node, result) {
+ if (!node) return false
+
+ if (node._autoprefixerGridStatus !== undefined) {
+ return node._autoprefixerGridStatus
+ }
+
+ let value = null
+ if (node.nodes) {
+ let status
+ node.each(i => {
+ if (i.type !== 'comment') return
+ if (GRID_REGEX.test(i.text)) {
+ let hasAutoplace = /:\s*autoplace/i.test(i.text)
+ let noAutoplace = /no-autoplace/i.test(i.text)
+ if (typeof status !== 'undefined') {
+ result.warn(
+ 'Second Autoprefixer grid control comment was ' +
+ 'ignored. Autoprefixer applies control comments to the whole ' +
+ 'block, not to the next rules.',
+ { node: i }
+ )
+ } else if (hasAutoplace) {
+ status = 'autoplace'
+ } else if (noAutoplace) {
+ status = true
+ } else {
+ status = /on/i.test(i.text)
+ }
+ }
+ })
+
+ if (status !== undefined) {
+ value = status
+ }
+ }
+
+ if (node.type === 'atrule' && node.name === 'supports') {
+ let params = node.params
+ if (params.includes('grid') && params.includes('auto')) {
+ value = false
+ }
+ }
+
+ if (!node.nodes || value === null) {
+ if (node.parent) {
+ let isParentGrid = this.gridStatus(node.parent, result)
+ if (node.parent._autoprefixerSelfDisabled === true) {
+ value = false
+ } else {
+ value = isParentGrid
+ }
+ } else if (typeof this.prefixes.options.grid !== 'undefined') {
+ value = this.prefixes.options.grid
+ } else if (typeof process.env.AUTOPREFIXER_GRID !== 'undefined') {
+ if (process.env.AUTOPREFIXER_GRID === 'autoplace') {
+ value = 'autoplace'
+ } else {
+ value = true
+ }
+ } else {
+ value = false
+ }
+ }
+
+ node._autoprefixerGridStatus = value
+ return value
+ }
+}
+
+module.exports = Processor
diff --git a/node_modules/autoprefixer/lib/resolution.js b/node_modules/autoprefixer/lib/resolution.js
new file mode 100644
index 0000000..ee04d6d
--- /dev/null
+++ b/node_modules/autoprefixer/lib/resolution.js
@@ -0,0 +1,97 @@
+let FractionJs = require('fraction.js')
+
+let Prefixer = require('./prefixer')
+let utils = require('./utils')
+
+const REGEXP = /(min|max)-resolution\s*:\s*\d*\.?\d+(dppx|dpcm|dpi|x)/gi
+const SPLIT = /(min|max)-resolution(\s*:\s*)(\d*\.?\d+)(dppx|dpcm|dpi|x)/i
+
+class Resolution extends Prefixer {
+ /**
+ * Return prefixed query name
+ */
+ prefixName(prefix, name) {
+ if (prefix === '-moz-') {
+ return name + '--moz-device-pixel-ratio'
+ } else {
+ return prefix + name + '-device-pixel-ratio'
+ }
+ }
+
+ /**
+ * Return prefixed query
+ */
+ prefixQuery(prefix, name, colon, value, units) {
+ value = new FractionJs(value)
+
+ // 1dpcm = 2.54dpi
+ // 1dppx = 96dpi
+ if (units === 'dpi') {
+ value = value.div(96)
+ } else if (units === 'dpcm') {
+ value = value.mul(2.54).div(96)
+ }
+ value = value.simplify()
+
+ if (prefix === '-o-') {
+ value = value.n + '/' + value.d
+ }
+ return this.prefixName(prefix, name) + colon + value
+ }
+
+ /**
+ * Remove prefixed queries
+ */
+ clean(rule) {
+ if (!this.bad) {
+ this.bad = []
+ for (let prefix of this.prefixes) {
+ this.bad.push(this.prefixName(prefix, 'min'))
+ this.bad.push(this.prefixName(prefix, 'max'))
+ }
+ }
+
+ rule.params = utils.editList(rule.params, queries => {
+ return queries.filter(query => this.bad.every(i => !query.includes(i)))
+ })
+ }
+
+ /**
+ * Add prefixed queries
+ */
+ process(rule) {
+ let parent = this.parentPrefix(rule)
+ let prefixes = parent ? [parent] : this.prefixes
+
+ rule.params = utils.editList(rule.params, (origin, prefixed) => {
+ for (let query of origin) {
+ if (
+ !query.includes('min-resolution') &&
+ !query.includes('max-resolution')
+ ) {
+ prefixed.push(query)
+ continue
+ }
+
+ for (let prefix of prefixes) {
+ let processed = query.replace(REGEXP, str => {
+ let parts = str.match(SPLIT)
+ return this.prefixQuery(
+ prefix,
+ parts[1],
+ parts[2],
+ parts[3],
+ parts[4]
+ )
+ })
+ prefixed.push(processed)
+ }
+ prefixed.push(query)
+ }
+
+ return utils.uniq(prefixed)
+ })
+ }
+}
+
+module.exports = Resolution
diff --git a/node_modules/autoprefixer/lib/selector.js b/node_modules/autoprefixer/lib/selector.js
new file mode 100644
index 0000000..2780b6b
--- /dev/null
+++ b/node_modules/autoprefixer/lib/selector.js
@@ -0,0 +1,150 @@
+let { list } = require('postcss')
+
+let OldSelector = require('./old-selector')
+let Prefixer = require('./prefixer')
+let Browsers = require('./browsers')
+let utils = require('./utils')
+
+class Selector extends Prefixer {
+ constructor(name, prefixes, all) {
+ super(name, prefixes, all)
+ this.regexpCache = new Map()
+ }
+
+ /**
+ * Is rule selectors need to be prefixed
+ */
+ check(rule) {
+ if (rule.selector.includes(this.name)) {
+ return !!rule.selector.match(this.regexp())
+ }
+
+ return false
+ }
+
+ /**
+ * Return prefixed version of selector
+ */
+ prefixed(prefix) {
+ return this.name.replace(/^(\W*)/, `$1${prefix}`)
+ }
+
+ /**
+ * Lazy loadRegExp for name
+ */
+ regexp(prefix) {
+ if (!this.regexpCache.has(prefix)) {
+ let name = prefix ? this.prefixed(prefix) : this.name
+ this.regexpCache.set(
+ prefix,
+ new RegExp(`(^|[^:"'=])${utils.escapeRegexp(name)}`, 'gi')
+ )
+ }
+
+ return this.regexpCache.get(prefix)
+ }
+
+ /**
+ * All possible prefixes
+ */
+ possible() {
+ return Browsers.prefixes()
+ }
+
+ /**
+ * Return all possible selector prefixes
+ */
+ prefixeds(rule) {
+ if (rule._autoprefixerPrefixeds) {
+ if (rule._autoprefixerPrefixeds[this.name]) {
+ return rule._autoprefixerPrefixeds
+ }
+ } else {
+ rule._autoprefixerPrefixeds = {}
+ }
+
+ let prefixeds = {}
+ if (rule.selector.includes(',')) {
+ let ruleParts = list.comma(rule.selector)
+ let toProcess = ruleParts.filter(el => el.includes(this.name))
+
+ for (let prefix of this.possible()) {
+ prefixeds[prefix] = toProcess
+ .map(el => this.replace(el, prefix))
+ .join(', ')
+ }
+ } else {
+ for (let prefix of this.possible()) {
+ prefixeds[prefix] = this.replace(rule.selector, prefix)
+ }
+ }
+
+ rule._autoprefixerPrefixeds[this.name] = prefixeds
+ return rule._autoprefixerPrefixeds
+ }
+
+ /**
+ * Is rule already prefixed before
+ */
+ already(rule, prefixeds, prefix) {
+ let index = rule.parent.index(rule) - 1
+
+ while (index >= 0) {
+ let before = rule.parent.nodes[index]
+
+ if (before.type !== 'rule') {
+ return false
+ }
+
+ let some = false
+ for (let key in prefixeds[this.name]) {
+ let prefixed = prefixeds[this.name][key]
+ if (before.selector === prefixed) {
+ if (prefix === key) {
+ return true
+ } else {
+ some = true
+ break
+ }
+ }
+ }
+ if (!some) {
+ return false
+ }
+
+ index -= 1
+ }
+
+ return false
+ }
+
+ /**
+ * Replace selectors by prefixed one
+ */
+ replace(selector, prefix) {
+ return selector.replace(this.regexp(), `$1${this.prefixed(prefix)}`)
+ }
+
+ /**
+ * Clone and add prefixes for at-rule
+ */
+ add(rule, prefix) {
+ let prefixeds = this.prefixeds(rule)
+
+ if (this.already(rule, prefixeds, prefix)) {
+ return
+ }
+
+ let cloned = this.clone(rule, { selector: prefixeds[this.name][prefix] })
+ rule.parent.insertBefore(rule, cloned)
+ }
+
+ /**
+ * Return function to fast find prefixed selector
+ */
+ old(prefix) {
+ return new OldSelector(this, prefix)
+ }
+}
+
+module.exports = Selector
diff --git a/node_modules/autoprefixer/lib/supports.js b/node_modules/autoprefixer/lib/supports.js
new file mode 100644
index 0000000..7d74c5a
--- /dev/null
+++ b/node_modules/autoprefixer/lib/supports.js
@@ -0,0 +1,302 @@
+let featureQueries = require('caniuse-lite/data/features/css-featurequeries.js')
+let feature = require('caniuse-lite/dist/unpacker/feature')
+let { parse } = require('postcss')
+
+let Browsers = require('./browsers')
+let brackets = require('./brackets')
+let Value = require('./value')
+let utils = require('./utils')
+
+let data = feature(featureQueries)
+
+let supported = []
+for (let browser in data.stats) {
+ let versions = data.stats[browser]
+ for (let version in versions) {
+ let support = versions[version]
+ if (/y/.test(support)) {
+ supported.push(browser + ' ' + version)
+ }
+ }
+}
+
+class Supports {
+ constructor(Prefixes, all) {
+ this.Prefixes = Prefixes
+ this.all = all
+ }
+
+ /**
+ * Return prefixer only with @supports supported browsers
+ */
+ prefixer() {
+ if (this.prefixerCache) {
+ return this.prefixerCache
+ }
+
+ let filtered = this.all.browsers.selected.filter(i => {
+ return supported.includes(i)
+ })
+
+ let browsers = new Browsers(
+ this.all.browsers.data,
+ filtered,
+ this.all.options
+ )
+ this.prefixerCache = new this.Prefixes(
+ this.all.data,
+ browsers,
+ this.all.options
+ )
+ return this.prefixerCache
+ }
+
+ /**
+ * Parse string into declaration property and value
+ */
+ parse(str) {
+ let parts = str.split(':')
+ let prop = parts[0]
+ let value = parts[1]
+ if (!value) value = ''
+ return [prop.trim(), value.trim()]
+ }
+
+ /**
+ * Create virtual rule to process it by prefixer
+ */
+ virtual(str) {
+ let [prop, value] = this.parse(str)
+ let rule = parse('a{}').first
+ rule.append({ prop, value, raws: { before: '' } })
+ return rule
+ }
+
+ /**
+ * Return array of Declaration with all necessary prefixes
+ */
+ prefixed(str) {
+ let rule = this.virtual(str)
+ if (this.disabled(rule.first)) {
+ return rule.nodes
+ }
+
+ let result = { warn: () => null }
+
+ let prefixer = this.prefixer().add[rule.first.prop]
+ prefixer && prefixer.process && prefixer.process(rule.first, result)
+
+ for (let decl of rule.nodes) {
+ for (let value of this.prefixer().values('add', rule.first.prop)) {
+ value.process(decl)
+ }
+ Value.save(this.all, decl)
+ }
+
+ return rule.nodes
+ }
+
+ /**
+ * Return true if brackets node is "not" word
+ */
+ isNot(node) {
+ return typeof node === 'string' && /not\s*/i.test(node)
+ }
+
+ /**
+ * Return true if brackets node is "or" word
+ */
+ isOr(node) {
+ return typeof node === 'string' && /\s*or\s*/i.test(node)
+ }
+
+ /**
+ * Return true if brackets node is (prop: value)
+ */
+ isProp(node) {
+ return (
+ typeof node === 'object' &&
+ node.length === 1 &&
+ typeof node[0] === 'string'
+ )
+ }
+
+ /**
+ * Return true if prefixed property has no unprefixed
+ */
+ isHack(all, unprefixed) {
+ let check = new RegExp(`(\\(|\\s)${utils.escapeRegexp(unprefixed)}:`)
+ return !check.test(all)
+ }
+
+ /**
+ * Return true if we need to remove node
+ */
+ toRemove(str, all) {
+ let [prop, value] = this.parse(str)
+ let unprefixed = this.all.unprefixed(prop)
+
+ let cleaner = this.all.cleaner()
+
+ if (
+ cleaner.remove[prop] &&
+ cleaner.remove[prop].remove &&
+ !this.isHack(all, unprefixed)
+ ) {
+ return true
+ }
+
+ for (let checker of cleaner.values('remove', unprefixed)) {
+ if (checker.check(value)) {
+ return true
+ }
+ }
+
+ return false
+ }
+
+ /**
+ * Remove all unnecessary prefixes
+ */
+ remove(nodes, all) {
+ let i = 0
+ while (i < nodes.length) {
+ if (
+ !this.isNot(nodes[i - 1]) &&
+ this.isProp(nodes[i]) &&
+ this.isOr(nodes[i + 1])
+ ) {
+ if (this.toRemove(nodes[i][0], all)) {
+ nodes.splice(i, 2)
+ continue
+ }
+
+ i += 2
+ continue
+ }
+
+ if (typeof nodes[i] === 'object') {
+ nodes[i] = this.remove(nodes[i], all)
+ }
+
+ i += 1
+ }
+ return nodes
+ }
+
+ /**
+ * Clean brackets with one child
+ */
+ cleanBrackets(nodes) {
+ return nodes.map(i => {
+ if (typeof i !== 'object') {
+ return i
+ }
+
+ if (i.length === 1 && typeof i[0] === 'object') {
+ return this.cleanBrackets(i[0])
+ }
+
+ return this.cleanBrackets(i)
+ })
+ }
+
+ /**
+ * Add " or " between properties and convert it to brackets format
+ */
+ convert(progress) {
+ let result = ['']
+ for (let i of progress) {
+ result.push([`${i.prop}: ${i.value}`])
+ result.push(' or ')
+ }
+ result[result.length - 1] = ''
+ return result
+ }
+
+ /**
+ * Compress value functions into a string nodes
+ */
+ normalize(nodes) {
+ if (typeof nodes !== 'object') {
+ return nodes
+ }
+
+ nodes = nodes.filter(i => i !== '')
+
+ if (typeof nodes[0] === 'string') {
+ let firstNode = nodes[0].trim()
+
+ if (
+ firstNode.includes(':') ||
+ firstNode === 'selector' ||
+ firstNode === 'not selector'
+ ) {
+ return [brackets.stringify(nodes)]
+ }
+ }
+ return nodes.map(i => this.normalize(i))
+ }
+
+ /**
+ * Add prefixes
+ */
+ add(nodes, all) {
+ return nodes.map(i => {
+ if (this.isProp(i)) {
+ let prefixed = this.prefixed(i[0])
+ if (prefixed.length > 1) {
+ return this.convert(prefixed)
+ }
+
+ return i
+ }
+
+ if (typeof i === 'object') {
+ return this.add(i, all)
+ }
+
+ return i
+ })
+ }
+
+ /**
+ * Add prefixed declaration
+ */
+ process(rule) {
+ let ast = brackets.parse(rule.params)
+ ast = this.normalize(ast)
+ ast = this.remove(ast, rule.params)
+ ast = this.add(ast, rule.params)
+ ast = this.cleanBrackets(ast)
+ rule.params = brackets.stringify(ast)
+ }
+
+ /**
+ * Check global options
+ */
+ disabled(node) {
+ if (!this.all.options.grid) {
+ if (node.prop === 'display' && node.value.includes('grid')) {
+ return true
+ }
+ if (node.prop.includes('grid') || node.prop === 'justify-items') {
+ return true
+ }
+ }
+
+ if (this.all.options.flexbox === false) {
+ if (node.prop === 'display' && node.value.includes('flex')) {
+ return true
+ }
+ let other = ['order', 'justify-content', 'align-items', 'align-content']
+ if (node.prop.includes('flex') || other.includes(node.prop)) {
+ return true
+ }
+ }
+
+ return false
+ }
+}
+
+module.exports = Supports
diff --git a/node_modules/autoprefixer/lib/transition.js b/node_modules/autoprefixer/lib/transition.js
new file mode 100644
index 0000000..9df9e5d
--- /dev/null
+++ b/node_modules/autoprefixer/lib/transition.js
@@ -0,0 +1,329 @@
+let { list } = require('postcss')
+let parser = require('postcss-value-parser')
+
+let Browsers = require('./browsers')
+let vendor = require('./vendor')
+
+class Transition {
+ constructor(prefixes) {
+ this.props = ['transition', 'transition-property']
+ this.prefixes = prefixes
+ }
+
+ /**
+ * Process transition and add prefixes for all necessary properties
+ */
+ add(decl, result) {
+ let prefix, prop
+ let add = this.prefixes.add[decl.prop]
+ let vendorPrefixes = this.ruleVendorPrefixes(decl)
+ let declPrefixes = vendorPrefixes || (add && add.prefixes) || []
+
+ let params = this.parse(decl.value)
+ let names = params.map(i => this.findProp(i))
+ let added = []
+
+ if (names.some(i => i[0] === '-')) {
+ return
+ }
+
+ for (let param of params) {
+ prop = this.findProp(param)
+ if (prop[0] === '-') continue
+
+ let prefixer = this.prefixes.add[prop]
+ if (!prefixer || !prefixer.prefixes) continue
+
+ for (prefix of prefixer.prefixes) {
+ if (vendorPrefixes && !vendorPrefixes.some(p => prefix.includes(p))) {
+ continue
+ }
+
+ let prefixed = this.prefixes.prefixed(prop, prefix)
+ if (prefixed !== '-ms-transform' && !names.includes(prefixed)) {
+ if (!this.disabled(prop, prefix)) {
+ added.push(this.clone(prop, prefixed, param))
+ }
+ }
+ }
+ }
+
+ params = params.concat(added)
+ let value = this.stringify(params)
+
+ let webkitClean = this.stringify(
+ this.cleanFromUnprefixed(params, '-webkit-')
+ )
+ if (declPrefixes.includes('-webkit-')) {
+ this.cloneBefore(decl, `-webkit-${decl.prop}`, webkitClean)
+ }
+ this.cloneBefore(decl, decl.prop, webkitClean)
+ if (declPrefixes.includes('-o-')) {
+ let operaClean = this.stringify(this.cleanFromUnprefixed(params, '-o-'))
+ this.cloneBefore(decl, `-o-${decl.prop}`, operaClean)
+ }
+
+ for (prefix of declPrefixes) {
+ if (prefix !== '-webkit-' && prefix !== '-o-') {
+ let prefixValue = this.stringify(
+ this.cleanOtherPrefixes(params, prefix)
+ )
+ this.cloneBefore(decl, prefix + decl.prop, prefixValue)
+ }
+ }
+
+ if (value !== decl.value && !this.already(decl, decl.prop, value)) {
+ this.checkForWarning(result, decl)
+ decl.cloneBefore()
+ decl.value = value
+ }
+ }
+
+ /**
+ * Find property name
+ */
+ findProp(param) {
+ let prop = param[0].value
+ if (/^\d/.test(prop)) {
+ for (let [i, token] of param.entries()) {
+ if (i !== 0 && token.type === 'word') {
+ return token.value
+ }
+ }
+ }
+ return prop
+ }
+
+ /**
+ * Does we already have this declaration
+ */
+ already(decl, prop, value) {
+ return decl.parent.some(i => i.prop === prop && i.value === value)
+ }
+
+ /**
+ * Add declaration if it is not exist
+ */
+ cloneBefore(decl, prop, value) {
+ if (!this.already(decl, prop, value)) {
+ decl.cloneBefore({ prop, value })
+ }
+ }
+
+ /**
+ * Show transition-property warning
+ */
+ checkForWarning(result, decl) {
+ if (decl.prop !== 'transition-property') {
+ return
+ }
+
+ let isPrefixed = false
+ let hasAssociatedProp = false
+
+ decl.parent.each(i => {
+ if (i.type !== 'decl') {
+ return undefined
+ }
+ if (i.prop.indexOf('transition-') !== 0) {
+ return undefined
+ }
+ let values = list.comma(i.value)
+ // check if current Rule's transition-property comma separated value list needs prefixes
+ if (i.prop === 'transition-property') {
+ values.forEach(value => {
+ let lookup = this.prefixes.add[value]
+ if (lookup && lookup.prefixes && lookup.prefixes.length > 0) {
+ isPrefixed = true
+ }
+ })
+ return undefined
+ }
+ // check if another transition-* prop in current Rule has comma separated value list
+ hasAssociatedProp = hasAssociatedProp || values.length > 1
+ return false
+ })
+
+ if (isPrefixed && hasAssociatedProp) {
+ decl.warn(
+ result,
+ 'Replace transition-property to transition, ' +
+ 'because Autoprefixer could not support ' +
+ 'any cases of transition-property ' +
+ 'and other transition-*'
+ )
+ }
+ }
+
+ /**
+ * Process transition and remove all unnecessary properties
+ */
+ remove(decl) {
+ let params = this.parse(decl.value)
+ params = params.filter(i => {
+ let prop = this.prefixes.remove[this.findProp(i)]
+ return !prop || !prop.remove
+ })
+ let value = this.stringify(params)
+
+ if (decl.value === value) {
+ return
+ }
+
+ if (params.length === 0) {
+ decl.remove()
+ return
+ }
+
+ let double = decl.parent.some(i => {
+ return i.prop === decl.prop && i.value === value
+ })
+ let smaller = decl.parent.some(i => {
+ return i !== decl && i.prop === decl.prop && i.value.length > value.length
+ })
+
+ if (double || smaller) {
+ decl.remove()
+ return
+ }
+
+ decl.value = value
+ }
+
+ /**
+ * Parse properties list to array
+ */
+ parse(value) {
+ let ast = parser(value)
+ let result = []
+ let param = []
+ for (let node of ast.nodes) {
+ param.push(node)
+ if (node.type === 'div' && node.value === ',') {
+ result.push(param)
+ param = []
+ }
+ }
+ result.push(param)
+ return result.filter(i => i.length > 0)
+ }
+
+ /**
+ * Return properties string from array
+ */
+ stringify(params) {
+ if (params.length === 0) {
+ return ''
+ }
+ let nodes = []
+ for (let param of params) {
+ if (param[param.length - 1].type !== 'div') {
+ param.push(this.div(params))
+ }
+ nodes = nodes.concat(param)
+ }
+ if (nodes[0].type === 'div') {
+ nodes = nodes.slice(1)
+ }
+ if (nodes[nodes.length - 1].type === 'div') {
+ nodes = nodes.slice(0, +-2 + 1 || undefined)
+ }
+ return parser.stringify({ nodes })
+ }
+
+ /**
+ * Return new param array with different name
+ */
+ clone(origin, name, param) {
+ let result = []
+ let changed = false
+ for (let i of param) {
+ if (!changed && i.type === 'word' && i.value === origin) {
+ result.push({ type: 'word', value: name })
+ changed = true
+ } else {
+ result.push(i)
+ }
+ }
+ return result
+ }
+
+ /**
+ * Find or create separator
+ */
+ div(params) {
+ for (let param of params) {
+ for (let node of param) {
+ if (node.type === 'div' && node.value === ',') {
+ return node
+ }
+ }
+ }
+ return { type: 'div', value: ',', after: ' ' }
+ }
+
+ cleanOtherPrefixes(params, prefix) {
+ return params.filter(param => {
+ let current = vendor.prefix(this.findProp(param))
+ return current === '' || current === prefix
+ })
+ }
+
+ /**
+ * Remove all non-webkit prefixes and unprefixed params if we have prefixed
+ */
+ cleanFromUnprefixed(params, prefix) {
+ let remove = params
+ .map(i => this.findProp(i))
+ .filter(i => i.slice(0, prefix.length) === prefix)
+ .map(i => this.prefixes.unprefixed(i))
+
+ let result = []
+ for (let param of params) {
+ let prop = this.findProp(param)
+ let p = vendor.prefix(prop)
+ if (!remove.includes(prop) && (p === prefix || p === '')) {
+ result.push(param)
+ }
+ }
+ return result
+ }
+
+ /**
+ * Check property for disabled by option
+ */
+ disabled(prop, prefix) {
+ let other = ['order', 'justify-content', 'align-self', 'align-content']
+ if (prop.includes('flex') || other.includes(prop)) {
+ if (this.prefixes.options.flexbox === false) {
+ return true
+ }
+
+ if (this.prefixes.options.flexbox === 'no-2009') {
+ return prefix.includes('2009')
+ }
+ }
+ return undefined
+ }
+
+ /**
+ * Check if transition prop is inside vendor specific rule
+ */
+ ruleVendorPrefixes(decl) {
+ let { parent } = decl
+
+ if (parent.type !== 'rule') {
+ return false
+ } else if (!parent.selector.includes(':-')) {
+ return false
+ }
+
+ let selectors = Browsers.prefixes().filter(s =>
+ parent.selector.includes(':' + s)
+ )
+
+ return selectors.length > 0 ? selectors : false
+ }
+}
+
+module.exports = Transition
diff --git a/node_modules/autoprefixer/lib/utils.js b/node_modules/autoprefixer/lib/utils.js
new file mode 100644
index 0000000..2309e8e
--- /dev/null
+++ b/node_modules/autoprefixer/lib/utils.js
@@ -0,0 +1,93 @@
+let { list } = require('postcss')
+
+/**
+ * Throw special error, to tell beniary,
+ * that this error is from Autoprefixer.
+ */
+module.exports.error = function (text) {
+ let err = new Error(text)
+ err.autoprefixer = true
+ throw err
+}
+
+/**
+ * Return array, that doesn’t contain duplicates.
+ */
+module.exports.uniq = function (array) {
+ return [...new Set(array)]
+}
+
+/**
+ * Return "-webkit-" on "-webkit- old"
+ */
+module.exports.removeNote = function (string) {
+ if (!string.includes(' ')) {
+ return string
+ }
+
+ return string.split(' ')[0]
+}
+
+/**
+ * Escape RegExp symbols
+ */
+module.exports.escapeRegexp = function (string) {
+ return string.replace(/[$()*+-.?[\\\]^{|}]/g, '\\$&')
+}
+
+/**
+ * Return regexp to check, that CSS string contain word
+ */
+module.exports.regexp = function (word, escape = true) {
+ if (escape) {
+ word = this.escapeRegexp(word)
+ }
+ return new RegExp(`(^|[\\s,(])(${word}($|[\\s(,]))`, 'gi')
+}
+
+/**
+ * Change comma list
+ */
+module.exports.editList = function (value, callback) {
+ let origin = list.comma(value)
+ let changed = callback(origin, [])
+
+ if (origin === changed) {
+ return value
+ }
+
+ let join = value.match(/,\s*/)
+ join = join ? join[0] : ', '
+ return changed.join(join)
+}
+
+/**
+ * Split the selector into parts.
+ * It returns 3 level deep array because selectors can be comma
+ * separated (1), space separated (2), and combined (3)
+ * @param {String} selector selector string
+ * @return {Array>} 3 level deep array of split selector
+ * @see utils.test.js for examples
+ */
+module.exports.splitSelector = function (selector) {
+ return list.comma(selector).map(i => {
+ return list.space(i).map(k => {
+ return k.split(/(?=\.|#)/g)
+ })
+ })
+}
+
+/**
+ * Return true if a given value only contains numbers.
+ * @param {*} value
+ * @returns {boolean}
+ */
+module.exports.isPureNumber = function (value) {
+ if (typeof value === 'number') {
+ return true
+ }
+ if (typeof value === 'string') {
+ return /^[0-9]+$/.test(value)
+ }
+ return false
+}
diff --git a/node_modules/autoprefixer/lib/value.js b/node_modules/autoprefixer/lib/value.js
new file mode 100644
index 0000000..ef6e632
--- /dev/null
+++ b/node_modules/autoprefixer/lib/value.js
@@ -0,0 +1,125 @@
+let Prefixer = require('./prefixer')
+let OldValue = require('./old-value')
+let vendor = require('./vendor')
+let utils = require('./utils')
+
+class Value extends Prefixer {
+ /**
+ * Clone decl for each prefixed values
+ */
+ static save(prefixes, decl) {
+ let prop = decl.prop
+ let result = []
+
+ for (let prefix in decl._autoprefixerValues) {
+ let value = decl._autoprefixerValues[prefix]
+
+ if (value === decl.value) {
+ continue
+ }
+
+ let item
+ let propPrefix = vendor.prefix(prop)
+
+ if (propPrefix === '-pie-') {
+ continue
+ }
+
+ if (propPrefix === prefix) {
+ item = decl.value = value
+ result.push(item)
+ continue
+ }
+
+ let prefixed = prefixes.prefixed(prop, prefix)
+ let rule = decl.parent
+
+ if (!rule.every(i => i.prop !== prefixed)) {
+ result.push(item)
+ continue
+ }
+
+ let trimmed = value.replace(/\s+/, ' ')
+ let already = rule.some(
+ i => i.prop === decl.prop && i.value.replace(/\s+/, ' ') === trimmed
+ )
+
+ if (already) {
+ result.push(item)
+ continue
+ }
+
+ let cloned = this.clone(decl, { value })
+ item = decl.parent.insertBefore(decl, cloned)
+
+ result.push(item)
+ }
+
+ return result
+ }
+
+ /**
+ * Is declaration need to be prefixed
+ */
+ check(decl) {
+ let value = decl.value
+ if (!value.includes(this.name)) {
+ return false
+ }
+
+ return !!value.match(this.regexp())
+ }
+
+ /**
+ * Lazy regexp loading
+ */
+ regexp() {
+ return this.regexpCache || (this.regexpCache = utils.regexp(this.name))
+ }
+
+ /**
+ * Add prefix to values in string
+ */
+ replace(string, prefix) {
+ return string.replace(this.regexp(), `$1${prefix}$2`)
+ }
+
+ /**
+ * Get value with comments if it was not changed
+ */
+ value(decl) {
+ if (decl.raws.value && decl.raws.value.value === decl.value) {
+ return decl.raws.value.raw
+ } else {
+ return decl.value
+ }
+ }
+
+ /**
+ * Save values with next prefixed token
+ */
+ add(decl, prefix) {
+ if (!decl._autoprefixerValues) {
+ decl._autoprefixerValues = {}
+ }
+ let value = decl._autoprefixerValues[prefix] || this.value(decl)
+
+ let before
+ do {
+ before = value
+ value = this.replace(value, prefix)
+ if (value === false) return
+ } while (value !== before)
+
+ decl._autoprefixerValues[prefix] = value
+ }
+
+ /**
+ * Return function to fast find prefixed value
+ */
+ old(prefix) {
+ return new OldValue(this.name, prefix + this.name)
+ }
+}
+
+module.exports = Value
diff --git a/node_modules/autoprefixer/lib/vendor.js b/node_modules/autoprefixer/lib/vendor.js
new file mode 100644
index 0000000..099ffc1
--- /dev/null
+++ b/node_modules/autoprefixer/lib/vendor.js
@@ -0,0 +1,14 @@
+module.exports = {
+ prefix(prop) {
+ let match = prop.match(/^(-\w+-)/)
+ if (match) {
+ return match[0]
+ }
+
+ return ''
+ },
+
+ unprefixed(prop) {
+ return prop.replace(/^-\w+-/, '')
+ }
+}
diff --git a/node_modules/autoprefixer/package.json b/node_modules/autoprefixer/package.json
new file mode 100644
index 0000000..8dca3a8
--- /dev/null
+++ b/node_modules/autoprefixer/package.json
@@ -0,0 +1,45 @@
+{
+ "name": "autoprefixer",
+ "version": "10.4.14",
+ "description": "Parse CSS and add vendor prefixes to CSS rules using values from the Can I Use website",
+ "engines": {
+ "node": "^10 || ^12 || >=14"
+ },
+ "keywords": [
+ "autoprefixer",
+ "css",
+ "prefix",
+ "postcss",
+ "postcss-plugin"
+ ],
+ "main": "lib/autoprefixer.js",
+ "bin": "bin/autoprefixer",
+ "types": "lib/autoprefixer.d.ts",
+ "funding": [
+ {
+ "type": "opencollective",
+ "url": "https://opencollective.com/postcss/"
+ },
+ {
+ "type": "tidelift",
+ "url": "https://tidelift.com/funding/github/npm/autoprefixer"
+ }
+ ],
+ "author": "Andrey Sitnik ",
+ "license": "MIT",
+ "repository": "postcss/autoprefixer",
+ "bugs": {
+ "url": "https://github.com/postcss/autoprefixer/issues"
+ },
+ "peerDependencies": {
+ "postcss": "^8.1.0"
+ },
+ "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"
+ }
+}
diff --git a/node_modules/binary-extensions/binary-extensions.json b/node_modules/binary-extensions/binary-extensions.json
new file mode 100644
index 0000000..4aab383
--- /dev/null
+++ b/node_modules/binary-extensions/binary-extensions.json
@@ -0,0 +1,260 @@
+[
+ "3dm",
+ "3ds",
+ "3g2",
+ "3gp",
+ "7z",
+ "a",
+ "aac",
+ "adp",
+ "ai",
+ "aif",
+ "aiff",
+ "alz",
+ "ape",
+ "apk",
+ "appimage",
+ "ar",
+ "arj",
+ "asf",
+ "au",
+ "avi",
+ "bak",
+ "baml",
+ "bh",
+ "bin",
+ "bk",
+ "bmp",
+ "btif",
+ "bz2",
+ "bzip2",
+ "cab",
+ "caf",
+ "cgm",
+ "class",
+ "cmx",
+ "cpio",
+ "cr2",
+ "cur",
+ "dat",
+ "dcm",
+ "deb",
+ "dex",
+ "djvu",
+ "dll",
+ "dmg",
+ "dng",
+ "doc",
+ "docm",
+ "docx",
+ "dot",
+ "dotm",
+ "dra",
+ "DS_Store",
+ "dsk",
+ "dts",
+ "dtshd",
+ "dvb",
+ "dwg",
+ "dxf",
+ "ecelp4800",
+ "ecelp7470",
+ "ecelp9600",
+ "egg",
+ "eol",
+ "eot",
+ "epub",
+ "exe",
+ "f4v",
+ "fbs",
+ "fh",
+ "fla",
+ "flac",
+ "flatpak",
+ "fli",
+ "flv",
+ "fpx",
+ "fst",
+ "fvt",
+ "g3",
+ "gh",
+ "gif",
+ "graffle",
+ "gz",
+ "gzip",
+ "h261",
+ "h263",
+ "h264",
+ "icns",
+ "ico",
+ "ief",
+ "img",
+ "ipa",
+ "iso",
+ "jar",
+ "jpeg",
+ "jpg",
+ "jpgv",
+ "jpm",
+ "jxr",
+ "key",
+ "ktx",
+ "lha",
+ "lib",
+ "lvp",
+ "lz",
+ "lzh",
+ "lzma",
+ "lzo",
+ "m3u",
+ "m4a",
+ "m4v",
+ "mar",
+ "mdi",
+ "mht",
+ "mid",
+ "midi",
+ "mj2",
+ "mka",
+ "mkv",
+ "mmr",
+ "mng",
+ "mobi",
+ "mov",
+ "movie",
+ "mp3",
+ "mp4",
+ "mp4a",
+ "mpeg",
+ "mpg",
+ "mpga",
+ "mxu",
+ "nef",
+ "npx",
+ "numbers",
+ "nupkg",
+ "o",
+ "odp",
+ "ods",
+ "odt",
+ "oga",
+ "ogg",
+ "ogv",
+ "otf",
+ "ott",
+ "pages",
+ "pbm",
+ "pcx",
+ "pdb",
+ "pdf",
+ "pea",
+ "pgm",
+ "pic",
+ "png",
+ "pnm",
+ "pot",
+ "potm",
+ "potx",
+ "ppa",
+ "ppam",
+ "ppm",
+ "pps",
+ "ppsm",
+ "ppsx",
+ "ppt",
+ "pptm",
+ "pptx",
+ "psd",
+ "pya",
+ "pyc",
+ "pyo",
+ "pyv",
+ "qt",
+ "rar",
+ "ras",
+ "raw",
+ "resources",
+ "rgb",
+ "rip",
+ "rlc",
+ "rmf",
+ "rmvb",
+ "rpm",
+ "rtf",
+ "rz",
+ "s3m",
+ "s7z",
+ "scpt",
+ "sgi",
+ "shar",
+ "snap",
+ "sil",
+ "sketch",
+ "slk",
+ "smv",
+ "snk",
+ "so",
+ "stl",
+ "suo",
+ "sub",
+ "swf",
+ "tar",
+ "tbz",
+ "tbz2",
+ "tga",
+ "tgz",
+ "thmx",
+ "tif",
+ "tiff",
+ "tlz",
+ "ttc",
+ "ttf",
+ "txz",
+ "udf",
+ "uvh",
+ "uvi",
+ "uvm",
+ "uvp",
+ "uvs",
+ "uvu",
+ "viv",
+ "vob",
+ "war",
+ "wav",
+ "wax",
+ "wbmp",
+ "wdp",
+ "weba",
+ "webm",
+ "webp",
+ "whl",
+ "wim",
+ "wm",
+ "wma",
+ "wmv",
+ "wmx",
+ "woff",
+ "woff2",
+ "wrm",
+ "wvx",
+ "xbm",
+ "xif",
+ "xla",
+ "xlam",
+ "xls",
+ "xlsb",
+ "xlsm",
+ "xlsx",
+ "xlt",
+ "xltm",
+ "xltx",
+ "xm",
+ "xmind",
+ "xpi",
+ "xpm",
+ "xwd",
+ "xz",
+ "z",
+ "zip",
+ "zipx"
+]
diff --git a/node_modules/binary-extensions/binary-extensions.json.d.ts b/node_modules/binary-extensions/binary-extensions.json.d.ts
new file mode 100644
index 0000000..94a248c
--- /dev/null
+++ b/node_modules/binary-extensions/binary-extensions.json.d.ts
@@ -0,0 +1,3 @@
+declare const binaryExtensionsJson: readonly string[];
+
+export = binaryExtensionsJson;
diff --git a/node_modules/binary-extensions/index.d.ts b/node_modules/binary-extensions/index.d.ts
new file mode 100644
index 0000000..f469ac5
--- /dev/null
+++ b/node_modules/binary-extensions/index.d.ts
@@ -0,0 +1,14 @@
+/**
+List of binary file extensions.
+
+@example
+```
+import binaryExtensions = require('binary-extensions');
+
+console.log(binaryExtensions);
+//=> ['3ds', '3g2', …]
+```
+*/
+declare const binaryExtensions: readonly string[];
+
+export = binaryExtensions;
diff --git a/node_modules/binary-extensions/index.js b/node_modules/binary-extensions/index.js
new file mode 100644
index 0000000..d46e468
--- /dev/null
+++ b/node_modules/binary-extensions/index.js
@@ -0,0 +1 @@
+module.exports = require('./binary-extensions.json');
diff --git a/node_modules/binary-extensions/license b/node_modules/binary-extensions/license
new file mode 100644
index 0000000..401b1c7
--- /dev/null
+++ b/node_modules/binary-extensions/license
@@ -0,0 +1,9 @@
+MIT License
+
+Copyright (c) 2019 Sindre Sorhus (https://sindresorhus.com), Paul Miller (https://paulmillr.com)
+
+Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
diff --git a/node_modules/binary-extensions/package.json b/node_modules/binary-extensions/package.json
new file mode 100644
index 0000000..c4d3641
--- /dev/null
+++ b/node_modules/binary-extensions/package.json
@@ -0,0 +1,38 @@
+{
+ "name": "binary-extensions",
+ "version": "2.2.0",
+ "description": "List of binary file extensions",
+ "license": "MIT",
+ "repository": "sindresorhus/binary-extensions",
+ "author": {
+ "name": "Sindre Sorhus",
+ "email": "sindresorhus@gmail.com",
+ "url": "sindresorhus.com"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "scripts": {
+ "test": "xo && ava && tsd"
+ },
+ "files": [
+ "index.js",
+ "index.d.ts",
+ "binary-extensions.json",
+ "binary-extensions.json.d.ts"
+ ],
+ "keywords": [
+ "binary",
+ "extensions",
+ "extension",
+ "file",
+ "json",
+ "list",
+ "array"
+ ],
+ "devDependencies": {
+ "ava": "^1.4.1",
+ "tsd": "^0.7.2",
+ "xo": "^0.24.0"
+ }
+}
diff --git a/node_modules/binary-extensions/readme.md b/node_modules/binary-extensions/readme.md
new file mode 100644
index 0000000..3e25dd8
--- /dev/null
+++ b/node_modules/binary-extensions/readme.md
@@ -0,0 +1,41 @@
+# binary-extensions
+
+> List of binary file extensions
+
+The list is just a [JSON file](binary-extensions.json) and can be used anywhere.
+
+
+## Install
+
+```
+$ npm install binary-extensions
+```
+
+
+## Usage
+
+```js
+const binaryExtensions = require('binary-extensions');
+
+console.log(binaryExtensions);
+//=> ['3ds', '3g2', …]
+```
+
+
+## Related
+
+- [is-binary-path](https://github.com/sindresorhus/is-binary-path) - Check if a filepath is a binary file
+- [text-extensions](https://github.com/sindresorhus/text-extensions) - List of text file extensions
+
+
+---
+
+
diff --git a/node_modules/braces/CHANGELOG.md b/node_modules/braces/CHANGELOG.md
new file mode 100644
index 0000000..36f798b
--- /dev/null
+++ b/node_modules/braces/CHANGELOG.md
@@ -0,0 +1,184 @@
+# Release history
+
+All notable changes to this project will be documented in this file.
+
+The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
+and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
+
+
+ Guiding Principles
+
+- Changelogs are for humans, not machines.
+- There should be an entry for every single version.
+- The same types of changes should be grouped.
+- Versions and sections should be linkable.
+- The latest version comes first.
+- The release date of each versions is displayed.
+- Mention whether you follow Semantic Versioning.
+
+
+
+
+ Types of changes
+
+Changelog entries are classified using the following labels _(from [keep-a-changelog](http://keepachangelog.com/)_):
+
+- `Added` for new features.
+- `Changed` for changes in existing functionality.
+- `Deprecated` for soon-to-be removed features.
+- `Removed` for now removed features.
+- `Fixed` for any bug fixes.
+- `Security` in case of vulnerabilities.
+
+
+
+## [3.0.0] - 2018-04-08
+
+v3.0 is a complete refactor, resulting in a faster, smaller codebase, with fewer deps, and a more accurate parser and compiler.
+
+**Breaking Changes**
+
+- The undocumented `.makeRe` method was removed
+
+**Non-breaking changes**
+
+- Caching was removed
+
+## [2.3.2] - 2018-04-08
+
+- start refactoring
+- cover sets
+- better range handling
+
+## [2.3.1] - 2018-02-17
+
+- Remove unnecessary escape in Regex. (#14)
+
+## [2.3.0] - 2017-10-19
+
+- minor code reorganization
+- optimize regex
+- expose `maxLength` option
+
+## [2.2.1] - 2017-05-30
+
+- don't condense when braces contain extglobs
+
+## [2.2.0] - 2017-05-28
+
+- ensure word boundaries are preserved
+- fixes edge case where extglob characters precede a brace pattern
+
+## [2.1.1] - 2017-04-27
+
+- use snapdragon-node
+- handle edge case
+- optimizations, lint
+
+## [2.0.4] - 2017-04-11
+
+- pass opts to compiler
+- minor optimization in create method
+- re-write parser handlers to remove negation regex
+
+## [2.0.3] - 2016-12-10
+
+- use split-string
+- clear queue at the end
+- adds sequences example
+- add unit tests
+
+## [2.0.2] - 2016-10-21
+
+- fix comma handling in nested extglobs
+
+## [2.0.1] - 2016-10-20
+
+- add comments
+- more tests, ensure quotes are stripped
+
+## [2.0.0] - 2016-10-19
+
+- don't expand braces inside character classes
+- add quantifier pattern
+
+## [1.8.5] - 2016-05-21
+
+- Refactor (#10)
+
+## [1.8.4] - 2016-04-20
+
+- fixes https://github.com/jonschlinkert/micromatch/issues/66
+
+## [1.8.0] - 2015-03-18
+
+- adds exponent examples, tests
+- fixes the first example in https://github.com/jonschlinkert/micromatch/issues/38
+
+## [1.6.0] - 2015-01-30
+
+- optimizations, `bash` mode:
+- improve path escaping
+
+## [1.5.0] - 2015-01-28
+
+- Merge pull request #5 from eush77/lib-files
+
+## [1.4.0] - 2015-01-24
+
+- add extglob tests
+- externalize exponent function
+- better whitespace handling
+
+## [1.3.0] - 2015-01-24
+
+- make regex patterns explicity
+
+## [1.1.0] - 2015-01-11
+
+- don't create a match group with `makeRe`
+
+## [1.0.0] - 2014-12-23
+
+- Merge commit '97b05f5544f8348736a8efaecf5c32bbe3e2ad6e'
+- support empty brace syntax
+- better bash coverage
+- better support for regex strings
+
+## [0.1.4] - 2014-11-14
+
+- improve recognition of bad args, recognize mismatched argument types
+- support escaping
+- remove pathname-expansion
+- support whitespace in patterns
+
+## [0.1.0]
+
+- first commit
+
+[2.3.2]: https://github.com/micromatch/braces/compare/2.3.1...2.3.2
+[2.3.1]: https://github.com/micromatch/braces/compare/2.3.0...2.3.1
+[2.3.0]: https://github.com/micromatch/braces/compare/2.2.1...2.3.0
+[2.2.1]: https://github.com/micromatch/braces/compare/2.2.0...2.2.1
+[2.2.0]: https://github.com/micromatch/braces/compare/2.1.1...2.2.0
+[2.1.1]: https://github.com/micromatch/braces/compare/2.1.0...2.1.1
+[2.1.0]: https://github.com/micromatch/braces/compare/2.0.4...2.1.0
+[2.0.4]: https://github.com/micromatch/braces/compare/2.0.3...2.0.4
+[2.0.3]: https://github.com/micromatch/braces/compare/2.0.2...2.0.3
+[2.0.2]: https://github.com/micromatch/braces/compare/2.0.1...2.0.2
+[2.0.1]: https://github.com/micromatch/braces/compare/2.0.0...2.0.1
+[2.0.0]: https://github.com/micromatch/braces/compare/1.8.5...2.0.0
+[1.8.5]: https://github.com/micromatch/braces/compare/1.8.4...1.8.5
+[1.8.4]: https://github.com/micromatch/braces/compare/1.8.0...1.8.4
+[1.8.0]: https://github.com/micromatch/braces/compare/1.6.0...1.8.0
+[1.6.0]: https://github.com/micromatch/braces/compare/1.5.0...1.6.0
+[1.5.0]: https://github.com/micromatch/braces/compare/1.4.0...1.5.0
+[1.4.0]: https://github.com/micromatch/braces/compare/1.3.0...1.4.0
+[1.3.0]: https://github.com/micromatch/braces/compare/1.2.0...1.3.0
+[1.2.0]: https://github.com/micromatch/braces/compare/1.1.0...1.2.0
+[1.1.0]: https://github.com/micromatch/braces/compare/1.0.0...1.1.0
+[1.0.0]: https://github.com/micromatch/braces/compare/0.1.4...1.0.0
+[0.1.4]: https://github.com/micromatch/braces/compare/0.1.0...0.1.4
+
+[Unreleased]: https://github.com/micromatch/braces/compare/0.1.0...HEAD
+[keep-a-changelog]: https://github.com/olivierlacan/keep-a-changelog
\ No newline at end of file
diff --git a/node_modules/braces/LICENSE b/node_modules/braces/LICENSE
new file mode 100644
index 0000000..d32ab44
--- /dev/null
+++ b/node_modules/braces/LICENSE
@@ -0,0 +1,21 @@
+The MIT License (MIT)
+
+Copyright (c) 2014-2018, Jon Schlinkert.
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.
diff --git a/node_modules/braces/README.md b/node_modules/braces/README.md
new file mode 100644
index 0000000..cba2f60
--- /dev/null
+++ b/node_modules/braces/README.md
@@ -0,0 +1,593 @@
+# braces [![Donate](https://img.shields.io/badge/Donate-PayPal-green.svg)](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=W8YFZ425KND68) [![NPM version](https://img.shields.io/npm/v/braces.svg?style=flat)](https://www.npmjs.com/package/braces) [![NPM monthly downloads](https://img.shields.io/npm/dm/braces.svg?style=flat)](https://npmjs.org/package/braces) [![NPM total downloads](https://img.shields.io/npm/dt/braces.svg?style=flat)](https://npmjs.org/package/braces) [![Linux Build Status](https://img.shields.io/travis/micromatch/braces.svg?style=flat&label=Travis)](https://travis-ci.org/micromatch/braces)
+
+> Bash-like brace expansion, implemented in JavaScript. Safer than other brace expansion libs, with complete support for the Bash 4.3 braces specification, without sacrificing speed.
+
+Please consider following this project's author, [Jon Schlinkert](https://github.com/jonschlinkert), and consider starring the project to show your :heart: and support.
+
+## Install
+
+Install with [npm](https://www.npmjs.com/):
+
+```sh
+$ npm install --save braces
+```
+
+## v3.0.0 Released!!
+
+See the [changelog](CHANGELOG.md) for details.
+
+## Why use braces?
+
+Brace patterns make globs more powerful by adding the ability to match specific ranges and sequences of characters.
+
+* **Accurate** - complete support for the [Bash 4.3 Brace Expansion](www.gnu.org/software/bash/) specification (passes all of the Bash braces tests)
+* **[fast and performant](#benchmarks)** - Starts fast, runs fast and [scales well](#performance) as patterns increase in complexity.
+* **Organized code base** - The parser and compiler are easy to maintain and update when edge cases crop up.
+* **Well-tested** - Thousands of test assertions, and passes all of the Bash, minimatch, and [brace-expansion](https://github.com/juliangruber/brace-expansion) unit tests (as of the date this was written).
+* **Safer** - You shouldn't have to worry about users defining aggressive or malicious brace patterns that can break your application. Braces takes measures to prevent malicious regex that can be used for DDoS attacks (see [catastrophic backtracking](https://www.regular-expressions.info/catastrophic.html)).
+* [Supports lists](#lists) - (aka "sets") `a/{b,c}/d` => `['a/b/d', 'a/c/d']`
+* [Supports sequences](#sequences) - (aka "ranges") `{01..03}` => `['01', '02', '03']`
+* [Supports steps](#steps) - (aka "increments") `{2..10..2}` => `['2', '4', '6', '8', '10']`
+* [Supports escaping](#escaping) - To prevent evaluation of special characters.
+
+## Usage
+
+The main export is a function that takes one or more brace `patterns` and `options`.
+
+```js
+const braces = require('braces');
+// braces(patterns[, options]);
+
+console.log(braces(['{01..05}', '{a..e}']));
+//=> ['(0[1-5])', '([a-e])']
+
+console.log(braces(['{01..05}', '{a..e}'], { expand: true }));
+//=> ['01', '02', '03', '04', '05', 'a', 'b', 'c', 'd', 'e']
+```
+
+### Brace Expansion vs. Compilation
+
+By default, brace patterns are compiled into strings that are optimized for creating regular expressions and matching.
+
+**Compiled**
+
+```js
+console.log(braces('a/{x,y,z}/b'));
+//=> ['a/(x|y|z)/b']
+console.log(braces(['a/{01..20}/b', 'a/{1..5}/b']));
+//=> [ 'a/(0[1-9]|1[0-9]|20)/b', 'a/([1-5])/b' ]
+```
+
+**Expanded**
+
+Enable brace expansion by setting the `expand` option to true, or by using [braces.expand()](#expand) (returns an array similar to what you'd expect from Bash, or `echo {1..5}`, or [minimatch](https://github.com/isaacs/minimatch)):
+
+```js
+console.log(braces('a/{x,y,z}/b', { expand: true }));
+//=> ['a/x/b', 'a/y/b', 'a/z/b']
+
+console.log(braces.expand('{01..10}'));
+//=> ['01','02','03','04','05','06','07','08','09','10']
+```
+
+### Lists
+
+Expand lists (like Bash "sets"):
+
+```js
+console.log(braces('a/{foo,bar,baz}/*.js'));
+//=> ['a/(foo|bar|baz)/*.js']
+
+console.log(braces.expand('a/{foo,bar,baz}/*.js'));
+//=> ['a/foo/*.js', 'a/bar/*.js', 'a/baz/*.js']
+```
+
+### Sequences
+
+Expand ranges of characters (like Bash "sequences"):
+
+```js
+console.log(braces.expand('{1..3}')); // ['1', '2', '3']
+console.log(braces.expand('a/{1..3}/b')); // ['a/1/b', 'a/2/b', 'a/3/b']
+console.log(braces('{a..c}', { expand: true })); // ['a', 'b', 'c']
+console.log(braces('foo/{a..c}', { expand: true })); // ['foo/a', 'foo/b', 'foo/c']
+
+// supports zero-padded ranges
+console.log(braces('a/{01..03}/b')); //=> ['a/(0[1-3])/b']
+console.log(braces('a/{001..300}/b')); //=> ['a/(0{2}[1-9]|0[1-9][0-9]|[12][0-9]{2}|300)/b']
+```
+
+See [fill-range](https://github.com/jonschlinkert/fill-range) for all available range-expansion options.
+
+### Steppped ranges
+
+Steps, or increments, may be used with ranges:
+
+```js
+console.log(braces.expand('{2..10..2}'));
+//=> ['2', '4', '6', '8', '10']
+
+console.log(braces('{2..10..2}'));
+//=> ['(2|4|6|8|10)']
+```
+
+When the [.optimize](#optimize) method is used, or [options.optimize](#optionsoptimize) is set to true, sequences are passed to [to-regex-range](https://github.com/jonschlinkert/to-regex-range) for expansion.
+
+### Nesting
+
+Brace patterns may be nested. The results of each expanded string are not sorted, and left to right order is preserved.
+
+**"Expanded" braces**
+
+```js
+console.log(braces.expand('a{b,c,/{x,y}}/e'));
+//=> ['ab/e', 'ac/e', 'a/x/e', 'a/y/e']
+
+console.log(braces.expand('a/{x,{1..5},y}/c'));
+//=> ['a/x/c', 'a/1/c', 'a/2/c', 'a/3/c', 'a/4/c', 'a/5/c', 'a/y/c']
+```
+
+**"Optimized" braces**
+
+```js
+console.log(braces('a{b,c,/{x,y}}/e'));
+//=> ['a(b|c|/(x|y))/e']
+
+console.log(braces('a/{x,{1..5},y}/c'));
+//=> ['a/(x|([1-5])|y)/c']
+```
+
+### Escaping
+
+**Escaping braces**
+
+A brace pattern will not be expanded or evaluted if _either the opening or closing brace is escaped_:
+
+```js
+console.log(braces.expand('a\\{d,c,b}e'));
+//=> ['a{d,c,b}e']
+
+console.log(braces.expand('a{d,c,b\\}e'));
+//=> ['a{d,c,b}e']
+```
+
+**Escaping commas**
+
+Commas inside braces may also be escaped:
+
+```js
+console.log(braces.expand('a{b\\,c}d'));
+//=> ['a{b,c}d']
+
+console.log(braces.expand('a{d\\,c,b}e'));
+//=> ['ad,ce', 'abe']
+```
+
+**Single items**
+
+Following bash conventions, a brace pattern is also not expanded when it contains a single character:
+
+```js
+console.log(braces.expand('a{b}c'));
+//=> ['a{b}c']
+```
+
+## Options
+
+### options.maxLength
+
+**Type**: `Number`
+
+**Default**: `65,536`
+
+**Description**: Limit the length of the input string. Useful when the input string is generated or your application allows users to pass a string, et cetera.
+
+```js
+console.log(braces('a/{b,c}/d', { maxLength: 3 })); //=> throws an error
+```
+
+### options.expand
+
+**Type**: `Boolean`
+
+**Default**: `undefined`
+
+**Description**: Generate an "expanded" brace pattern (alternatively you can use the `braces.expand()` method, which does the same thing).
+
+```js
+console.log(braces('a/{b,c}/d', { expand: true }));
+//=> [ 'a/b/d', 'a/c/d' ]
+```
+
+### options.nodupes
+
+**Type**: `Boolean`
+
+**Default**: `undefined`
+
+**Description**: Remove duplicates from the returned array.
+
+### options.rangeLimit
+
+**Type**: `Number`
+
+**Default**: `1000`
+
+**Description**: To prevent malicious patterns from being passed by users, an error is thrown when `braces.expand()` is used or `options.expand` is true and the generated range will exceed the `rangeLimit`.
+
+You can customize `options.rangeLimit` or set it to `Inifinity` to disable this altogether.
+
+**Examples**
+
+```js
+// pattern exceeds the "rangeLimit", so it's optimized automatically
+console.log(braces.expand('{1..1000}'));
+//=> ['([1-9]|[1-9][0-9]{1,2}|1000)']
+
+// pattern does not exceed "rangeLimit", so it's NOT optimized
+console.log(braces.expand('{1..100}'));
+//=> ['1', '2', '3', '4', '5', '6', '7', '8', '9', '10', '11', '12', '13', '14', '15', '16', '17', '18', '19', '20', '21', '22', '23', '24', '25', '26', '27', '28', '29', '30', '31', '32', '33', '34', '35', '36', '37', '38', '39', '40', '41', '42', '43', '44', '45', '46', '47', '48', '49', '50', '51', '52', '53', '54', '55', '56', '57', '58', '59', '60', '61', '62', '63', '64', '65', '66', '67', '68', '69', '70', '71', '72', '73', '74', '75', '76', '77', '78', '79', '80', '81', '82', '83', '84', '85', '86', '87', '88', '89', '90', '91', '92', '93', '94', '95', '96', '97', '98', '99', '100']
+```
+
+### options.transform
+
+**Type**: `Function`
+
+**Default**: `undefined`
+
+**Description**: Customize range expansion.
+
+**Example: Transforming non-numeric values**
+
+```js
+const alpha = braces.expand('x/{a..e}/y', {
+ transform(value, index) {
+ // When non-numeric values are passed, "value" is a character code.
+ return 'foo/' + String.fromCharCode(value) + '-' + index;
+ }
+});
+console.log(alpha);
+//=> [ 'x/foo/a-0/y', 'x/foo/b-1/y', 'x/foo/c-2/y', 'x/foo/d-3/y', 'x/foo/e-4/y' ]
+```
+
+**Example: Transforming numeric values**
+
+```js
+const numeric = braces.expand('{1..5}', {
+ transform(value) {
+ // when numeric values are passed, "value" is a number
+ return 'foo/' + value * 2;
+ }
+});
+console.log(numeric);
+//=> [ 'foo/2', 'foo/4', 'foo/6', 'foo/8', 'foo/10' ]
+```
+
+### options.quantifiers
+
+**Type**: `Boolean`
+
+**Default**: `undefined`
+
+**Description**: In regular expressions, quanitifiers can be used to specify how many times a token can be repeated. For example, `a{1,3}` will match the letter `a` one to three times.
+
+Unfortunately, regex quantifiers happen to share the same syntax as [Bash lists](#lists)
+
+The `quantifiers` option tells braces to detect when [regex quantifiers](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/RegExp#quantifiers) are defined in the given pattern, and not to try to expand them as lists.
+
+**Examples**
+
+```js
+const braces = require('braces');
+console.log(braces('a/b{1,3}/{x,y,z}'));
+//=> [ 'a/b(1|3)/(x|y|z)' ]
+console.log(braces('a/b{1,3}/{x,y,z}', {quantifiers: true}));
+//=> [ 'a/b{1,3}/(x|y|z)' ]
+console.log(braces('a/b{1,3}/{x,y,z}', {quantifiers: true, expand: true}));
+//=> [ 'a/b{1,3}/x', 'a/b{1,3}/y', 'a/b{1,3}/z' ]
+```
+
+### options.unescape
+
+**Type**: `Boolean`
+
+**Default**: `undefined`
+
+**Description**: Strip backslashes that were used for escaping from the result.
+
+## What is "brace expansion"?
+
+Brace expansion is a type of parameter expansion that was made popular by unix shells for generating lists of strings, as well as regex-like matching when used alongside wildcards (globs).
+
+In addition to "expansion", braces are also used for matching. In other words:
+
+* [brace expansion](#brace-expansion) is for generating new lists
+* [brace matching](#brace-matching) is for filtering existing lists
+
+
+More about brace expansion (click to expand)
+
+There are two main types of brace expansion:
+
+1. **lists**: which are defined using comma-separated values inside curly braces: `{a,b,c}`
+2. **sequences**: which are defined using a starting value and an ending value, separated by two dots: `a{1..3}b`. Optionally, a third argument may be passed to define a "step" or increment to use: `a{1..100..10}b`. These are also sometimes referred to as "ranges".
+
+Here are some example brace patterns to illustrate how they work:
+
+**Sets**
+
+```
+{a,b,c} => a b c
+{a,b,c}{1,2} => a1 a2 b1 b2 c1 c2
+```
+
+**Sequences**
+
+```
+{1..9} => 1 2 3 4 5 6 7 8 9
+{4..-4} => 4 3 2 1 0 -1 -2 -3 -4
+{1..20..3} => 1 4 7 10 13 16 19
+{a..j} => a b c d e f g h i j
+{j..a} => j i h g f e d c b a
+{a..z..3} => a d g j m p s v y
+```
+
+**Combination**
+
+Sets and sequences can be mixed together or used along with any other strings.
+
+```
+{a,b,c}{1..3} => a1 a2 a3 b1 b2 b3 c1 c2 c3
+foo/{a,b,c}/bar => foo/a/bar foo/b/bar foo/c/bar
+```
+
+The fact that braces can be "expanded" from relatively simple patterns makes them ideal for quickly generating test fixtures, file paths, and similar use cases.
+
+## Brace matching
+
+In addition to _expansion_, brace patterns are also useful for performing regular-expression-like matching.
+
+For example, the pattern `foo/{1..3}/bar` would match any of following strings:
+
+```
+foo/1/bar
+foo/2/bar
+foo/3/bar
+```
+
+But not:
+
+```
+baz/1/qux
+baz/2/qux
+baz/3/qux
+```
+
+Braces can also be combined with [glob patterns](https://github.com/jonschlinkert/micromatch) to perform more advanced wildcard matching. For example, the pattern `*/{1..3}/*` would match any of following strings:
+
+```
+foo/1/bar
+foo/2/bar
+foo/3/bar
+baz/1/qux
+baz/2/qux
+baz/3/qux
+```
+
+## Brace matching pitfalls
+
+Although brace patterns offer a user-friendly way of matching ranges or sets of strings, there are also some major disadvantages and potential risks you should be aware of.
+
+### tldr
+
+**"brace bombs"**
+
+* brace expansion can eat up a huge amount of processing resources
+* as brace patterns increase _linearly in size_, the system resources required to expand the pattern increase exponentially
+* users can accidentally (or intentially) exhaust your system's resources resulting in the equivalent of a DoS attack (bonus: no programming knowledge is required!)
+
+For a more detailed explanation with examples, see the [geometric complexity](#geometric-complexity) section.
+
+### The solution
+
+Jump to the [performance section](#performance) to see how Braces solves this problem in comparison to other libraries.
+
+### Geometric complexity
+
+At minimum, brace patterns with sets limited to two elements have quadradic or `O(n^2)` complexity. But the complexity of the algorithm increases exponentially as the number of sets, _and elements per set_, increases, which is `O(n^c)`.
+
+For example, the following sets demonstrate quadratic (`O(n^2)`) complexity:
+
+```
+{1,2}{3,4} => (2X2) => 13 14 23 24
+{1,2}{3,4}{5,6} => (2X2X2) => 135 136 145 146 235 236 245 246
+```
+
+But add an element to a set, and we get a n-fold Cartesian product with `O(n^c)` complexity:
+
+```
+{1,2,3}{4,5,6}{7,8,9} => (3X3X3) => 147 148 149 157 158 159 167 168 169 247 248
+ 249 257 258 259 267 268 269 347 348 349 357
+ 358 359 367 368 369
+```
+
+Now, imagine how this complexity grows given that each element is a n-tuple:
+
+```
+{1..100}{1..100} => (100X100) => 10,000 elements (38.4 kB)
+{1..100}{1..100}{1..100} => (100X100X100) => 1,000,000 elements (5.76 MB)
+```
+
+Although these examples are clearly contrived, they demonstrate how brace patterns can quickly grow out of control.
+
+**More information**
+
+Interested in learning more about brace expansion?
+
+* [linuxjournal/bash-brace-expansion](http://www.linuxjournal.com/content/bash-brace-expansion)
+* [rosettacode/Brace_expansion](https://rosettacode.org/wiki/Brace_expansion)
+* [cartesian product](https://en.wikipedia.org/wiki/Cartesian_product)
+
+
+
+## Performance
+
+Braces is not only screaming fast, it's also more accurate the other brace expansion libraries.
+
+### Better algorithms
+
+Fortunately there is a solution to the ["brace bomb" problem](#brace-matching-pitfalls): _don't expand brace patterns into an array when they're used for matching_.
+
+Instead, convert the pattern into an optimized regular expression. This is easier said than done, and braces is the only library that does this currently.
+
+**The proof is in the numbers**
+
+Minimatch gets exponentially slower as patterns increase in complexity, braces does not. The following results were generated using `braces()` and `minimatch.braceExpand()`, respectively.
+
+| **Pattern** | **braces** | **[minimatch][]** |
+| --- | --- | --- |
+| `{1..9007199254740991}`[^1] | `298 B` (5ms 459μs)| N/A (freezes) |
+| `{1..1000000000000000}` | `41 B` (1ms 15μs) | N/A (freezes) |
+| `{1..100000000000000}` | `40 B` (890μs) | N/A (freezes) |
+| `{1..10000000000000}` | `39 B` (2ms 49μs) | N/A (freezes) |
+| `{1..1000000000000}` | `38 B` (608μs) | N/A (freezes) |
+| `{1..100000000000}` | `37 B` (397μs) | N/A (freezes) |
+| `{1..10000000000}` | `35 B` (983μs) | N/A (freezes) |
+| `{1..1000000000}` | `34 B` (798μs) | N/A (freezes) |
+| `{1..100000000}` | `33 B` (733μs) | N/A (freezes) |
+| `{1..10000000}` | `32 B` (5ms 632μs) | `78.89 MB` (16s 388ms 569μs) |
+| `{1..1000000}` | `31 B` (1ms 381μs) | `6.89 MB` (1s 496ms 887μs) |
+| `{1..100000}` | `30 B` (950μs) | `588.89 kB` (146ms 921μs) |
+| `{1..10000}` | `29 B` (1ms 114μs) | `48.89 kB` (14ms 187μs) |
+| `{1..1000}` | `28 B` (760μs) | `3.89 kB` (1ms 453μs) |
+| `{1..100}` | `22 B` (345μs) | `291 B` (196μs) |
+| `{1..10}` | `10 B` (533μs) | `20 B` (37μs) |
+| `{1..3}` | `7 B` (190μs) | `5 B` (27μs) |
+
+### Faster algorithms
+
+When you need expansion, braces is still much faster.
+
+_(the following results were generated using `braces.expand()` and `minimatch.braceExpand()`, respectively)_
+
+| **Pattern** | **braces** | **[minimatch][]** |
+| --- | --- | --- |
+| `{1..10000000}` | `78.89 MB` (2s 698ms 642μs) | `78.89 MB` (18s 601ms 974μs) |
+| `{1..1000000}` | `6.89 MB` (458ms 576μs) | `6.89 MB` (1s 491ms 621μs) |
+| `{1..100000}` | `588.89 kB` (20ms 728μs) | `588.89 kB` (156ms 919μs) |
+| `{1..10000}` | `48.89 kB` (2ms 202μs) | `48.89 kB` (13ms 641μs) |
+| `{1..1000}` | `3.89 kB` (1ms 796μs) | `3.89 kB` (1ms 958μs) |
+| `{1..100}` | `291 B` (424μs) | `291 B` (211μs) |
+| `{1..10}` | `20 B` (487μs) | `20 B` (72μs) |
+| `{1..3}` | `5 B` (166μs) | `5 B` (27μs) |
+
+If you'd like to run these comparisons yourself, see [test/support/generate.js](test/support/generate.js).
+
+## Benchmarks
+
+### Running benchmarks
+
+Install dev dependencies:
+
+```bash
+npm i -d && npm benchmark
+```
+
+### Latest results
+
+Braces is more accurate, without sacrificing performance.
+
+```bash
+# range (expanded)
+ braces x 29,040 ops/sec ±3.69% (91 runs sampled))
+ minimatch x 4,735 ops/sec ±1.28% (90 runs sampled)
+
+# range (optimized for regex)
+ braces x 382,878 ops/sec ±0.56% (94 runs sampled)
+ minimatch x 1,040 ops/sec ±0.44% (93 runs sampled)
+
+# nested ranges (expanded)
+ braces x 19,744 ops/sec ±2.27% (92 runs sampled))
+ minimatch x 4,579 ops/sec ±0.50% (93 runs sampled)
+
+# nested ranges (optimized for regex)
+ braces x 246,019 ops/sec ±2.02% (93 runs sampled)
+ minimatch x 1,028 ops/sec ±0.39% (94 runs sampled)
+
+# set (expanded)
+ braces x 138,641 ops/sec ±0.53% (95 runs sampled)
+ minimatch x 219,582 ops/sec ±0.98% (94 runs sampled)
+
+# set (optimized for regex)
+ braces x 388,408 ops/sec ±0.41% (95 runs sampled)
+ minimatch x 44,724 ops/sec ±0.91% (89 runs sampled)
+
+# nested sets (expanded)
+ braces x 84,966 ops/sec ±0.48% (94 runs sampled)
+ minimatch x 140,720 ops/sec ±0.37% (95 runs sampled)
+
+# nested sets (optimized for regex)
+ braces x 263,340 ops/sec ±2.06% (92 runs sampled)
+ minimatch x 28,714 ops/sec ±0.40% (90 runs sampled)
+```
+
+## About
+
+
+Contributing
+
+Pull requests and stars are always welcome. For bugs and feature requests, [please create an issue](../../issues/new).
+
+
+
+
+Running Tests
+
+Running and reviewing unit tests is a great way to get familiarized with a library and its API. You can install dependencies and run tests with the following command:
+
+```sh
+$ npm install && npm test
+```
+
+
+
+
+Building docs
+
+_(This project's readme.md is generated by [verb](https://github.com/verbose/verb-generate-readme), please don't edit the readme directly. Any changes to the readme must be made in the [.verb.md](.verb.md) readme template.)_
+
+To generate the readme, run the following command:
+
+```sh
+$ npm install -g verbose/verb#dev verb-generate-readme && verb
+```
+
+
+
+### Contributors
+
+| **Commits** | **Contributor** |
+| --- | --- |
+| 197 | [jonschlinkert](https://github.com/jonschlinkert) |
+| 4 | [doowb](https://github.com/doowb) |
+| 1 | [es128](https://github.com/es128) |
+| 1 | [eush77](https://github.com/eush77) |
+| 1 | [hemanth](https://github.com/hemanth) |
+| 1 | [wtgtybhertgeghgtwtg](https://github.com/wtgtybhertgeghgtwtg) |
+
+### Author
+
+**Jon Schlinkert**
+
+* [GitHub Profile](https://github.com/jonschlinkert)
+* [Twitter Profile](https://twitter.com/jonschlinkert)
+* [LinkedIn Profile](https://linkedin.com/in/jonschlinkert)
+
+### License
+
+Copyright © 2019, [Jon Schlinkert](https://github.com/jonschlinkert).
+Released under the [MIT License](LICENSE).
+
+***
+
+_This file was generated by [verb-generate-readme](https://github.com/verbose/verb-generate-readme), v0.8.0, on April 08, 2019._
\ No newline at end of file
diff --git a/node_modules/braces/index.js b/node_modules/braces/index.js
new file mode 100644
index 0000000..0eee0f5
--- /dev/null
+++ b/node_modules/braces/index.js
@@ -0,0 +1,170 @@
+'use strict';
+
+const stringify = require('./lib/stringify');
+const compile = require('./lib/compile');
+const expand = require('./lib/expand');
+const parse = require('./lib/parse');
+
+/**
+ * Expand the given pattern or create a regex-compatible string.
+ *
+ * ```js
+ * const braces = require('braces');
+ * console.log(braces('{a,b,c}', { compile: true })); //=> ['(a|b|c)']
+ * console.log(braces('{a,b,c}')); //=> ['a', 'b', 'c']
+ * ```
+ * @param {String} `str`
+ * @param {Object} `options`
+ * @return {String}
+ * @api public
+ */
+
+const braces = (input, options = {}) => {
+ let output = [];
+
+ if (Array.isArray(input)) {
+ for (let pattern of input) {
+ let result = braces.create(pattern, options);
+ if (Array.isArray(result)) {
+ output.push(...result);
+ } else {
+ output.push(result);
+ }
+ }
+ } else {
+ output = [].concat(braces.create(input, options));
+ }
+
+ if (options && options.expand === true && options.nodupes === true) {
+ output = [...new Set(output)];
+ }
+ return output;
+};
+
+/**
+ * Parse the given `str` with the given `options`.
+ *
+ * ```js
+ * // braces.parse(pattern, [, options]);
+ * const ast = braces.parse('a/{b,c}/d');
+ * console.log(ast);
+ * ```
+ * @param {String} pattern Brace pattern to parse
+ * @param {Object} options
+ * @return {Object} Returns an AST
+ * @api public
+ */
+
+braces.parse = (input, options = {}) => parse(input, options);
+
+/**
+ * Creates a braces string from an AST, or an AST node.
+ *
+ * ```js
+ * const braces = require('braces');
+ * let ast = braces.parse('foo/{a,b}/bar');
+ * console.log(stringify(ast.nodes[2])); //=> '{a,b}'
+ * ```
+ * @param {String} `input` Brace pattern or AST.
+ * @param {Object} `options`
+ * @return {Array} Returns an array of expanded values.
+ * @api public
+ */
+
+braces.stringify = (input, options = {}) => {
+ if (typeof input === 'string') {
+ return stringify(braces.parse(input, options), options);
+ }
+ return stringify(input, options);
+};
+
+/**
+ * Compiles a brace pattern into a regex-compatible, optimized string.
+ * This method is called by the main [braces](#braces) function by default.
+ *
+ * ```js
+ * const braces = require('braces');
+ * console.log(braces.compile('a/{b,c}/d'));
+ * //=> ['a/(b|c)/d']
+ * ```
+ * @param {String} `input` Brace pattern or AST.
+ * @param {Object} `options`
+ * @return {Array} Returns an array of expanded values.
+ * @api public
+ */
+
+braces.compile = (input, options = {}) => {
+ if (typeof input === 'string') {
+ input = braces.parse(input, options);
+ }
+ return compile(input, options);
+};
+
+/**
+ * Expands a brace pattern into an array. This method is called by the
+ * main [braces](#braces) function when `options.expand` is true. Before
+ * using this method it's recommended that you read the [performance notes](#performance))
+ * and advantages of using [.compile](#compile) instead.
+ *
+ * ```js
+ * const braces = require('braces');
+ * console.log(braces.expand('a/{b,c}/d'));
+ * //=> ['a/b/d', 'a/c/d'];
+ * ```
+ * @param {String} `pattern` Brace pattern
+ * @param {Object} `options`
+ * @return {Array} Returns an array of expanded values.
+ * @api public
+ */
+
+braces.expand = (input, options = {}) => {
+ if (typeof input === 'string') {
+ input = braces.parse(input, options);
+ }
+
+ let result = expand(input, options);
+
+ // filter out empty strings if specified
+ if (options.noempty === true) {
+ result = result.filter(Boolean);
+ }
+
+ // filter out duplicates if specified
+ if (options.nodupes === true) {
+ result = [...new Set(result)];
+ }
+
+ return result;
+};
+
+/**
+ * Processes a brace pattern and returns either an expanded array
+ * (if `options.expand` is true), a highly optimized regex-compatible string.
+ * This method is called by the main [braces](#braces) function.
+ *
+ * ```js
+ * const braces = require('braces');
+ * console.log(braces.create('user-{200..300}/project-{a,b,c}-{1..10}'))
+ * //=> 'user-(20[0-9]|2[1-9][0-9]|300)/project-(a|b|c)-([1-9]|10)'
+ * ```
+ * @param {String} `pattern` Brace pattern
+ * @param {Object} `options`
+ * @return {Array} Returns an array of expanded values.
+ * @api public
+ */
+
+braces.create = (input, options = {}) => {
+ if (input === '' || input.length < 3) {
+ return [input];
+ }
+
+ return options.expand !== true
+ ? braces.compile(input, options)
+ : braces.expand(input, options);
+};
+
+/**
+ * Expose "braces"
+ */
+
+module.exports = braces;
diff --git a/node_modules/braces/lib/compile.js b/node_modules/braces/lib/compile.js
new file mode 100644
index 0000000..3e984a4
--- /dev/null
+++ b/node_modules/braces/lib/compile.js
@@ -0,0 +1,57 @@
+'use strict';
+
+const fill = require('fill-range');
+const utils = require('./utils');
+
+const compile = (ast, options = {}) => {
+ let walk = (node, parent = {}) => {
+ let invalidBlock = utils.isInvalidBrace(parent);
+ let invalidNode = node.invalid === true && options.escapeInvalid === true;
+ let invalid = invalidBlock === true || invalidNode === true;
+ let prefix = options.escapeInvalid === true ? '\\' : '';
+ let output = '';
+
+ if (node.isOpen === true) {
+ return prefix + node.value;
+ }
+ if (node.isClose === true) {
+ return prefix + node.value;
+ }
+
+ if (node.type === 'open') {
+ return invalid ? (prefix + node.value) : '(';
+ }
+
+ if (node.type === 'close') {
+ return invalid ? (prefix + node.value) : ')';
+ }
+
+ if (node.type === 'comma') {
+ return node.prev.type === 'comma' ? '' : (invalid ? node.value : '|');
+ }
+
+ if (node.value) {
+ return node.value;
+ }
+
+ if (node.nodes && node.ranges > 0) {
+ let args = utils.reduce(node.nodes);
+ let range = fill(...args, { ...options, wrap: false, toRegex: true });
+
+ if (range.length !== 0) {
+ return args.length > 1 && range.length > 1 ? `(${range})` : range;
+ }
+ }
+
+ if (node.nodes) {
+ for (let child of node.nodes) {
+ output += walk(child, node);
+ }
+ }
+ return output;
+ };
+
+ return walk(ast);
+};
+
+module.exports = compile;
diff --git a/node_modules/braces/lib/constants.js b/node_modules/braces/lib/constants.js
new file mode 100644
index 0000000..a937943
--- /dev/null
+++ b/node_modules/braces/lib/constants.js
@@ -0,0 +1,57 @@
+'use strict';
+
+module.exports = {
+ MAX_LENGTH: 1024 * 64,
+
+ // Digits
+ CHAR_0: '0', /* 0 */
+ CHAR_9: '9', /* 9 */
+
+ // Alphabet chars.
+ CHAR_UPPERCASE_A: 'A', /* A */
+ CHAR_LOWERCASE_A: 'a', /* a */
+ CHAR_UPPERCASE_Z: 'Z', /* Z */
+ CHAR_LOWERCASE_Z: 'z', /* z */
+
+ CHAR_LEFT_PARENTHESES: '(', /* ( */
+ CHAR_RIGHT_PARENTHESES: ')', /* ) */
+
+ CHAR_ASTERISK: '*', /* * */
+
+ // Non-alphabetic chars.
+ CHAR_AMPERSAND: '&', /* & */
+ CHAR_AT: '@', /* @ */
+ CHAR_BACKSLASH: '\\', /* \ */
+ CHAR_BACKTICK: '`', /* ` */
+ CHAR_CARRIAGE_RETURN: '\r', /* \r */
+ CHAR_CIRCUMFLEX_ACCENT: '^', /* ^ */
+ CHAR_COLON: ':', /* : */
+ CHAR_COMMA: ',', /* , */
+ CHAR_DOLLAR: '$', /* . */
+ CHAR_DOT: '.', /* . */
+ CHAR_DOUBLE_QUOTE: '"', /* " */
+ CHAR_EQUAL: '=', /* = */
+ CHAR_EXCLAMATION_MARK: '!', /* ! */
+ CHAR_FORM_FEED: '\f', /* \f */
+ CHAR_FORWARD_SLASH: '/', /* / */
+ CHAR_HASH: '#', /* # */
+ CHAR_HYPHEN_MINUS: '-', /* - */
+ CHAR_LEFT_ANGLE_BRACKET: '<', /* < */
+ CHAR_LEFT_CURLY_BRACE: '{', /* { */
+ CHAR_LEFT_SQUARE_BRACKET: '[', /* [ */
+ CHAR_LINE_FEED: '\n', /* \n */
+ CHAR_NO_BREAK_SPACE: '\u00A0', /* \u00A0 */
+ CHAR_PERCENT: '%', /* % */
+ CHAR_PLUS: '+', /* + */
+ CHAR_QUESTION_MARK: '?', /* ? */
+ CHAR_RIGHT_ANGLE_BRACKET: '>', /* > */
+ CHAR_RIGHT_CURLY_BRACE: '}', /* } */
+ CHAR_RIGHT_SQUARE_BRACKET: ']', /* ] */
+ CHAR_SEMICOLON: ';', /* ; */
+ CHAR_SINGLE_QUOTE: '\'', /* ' */
+ CHAR_SPACE: ' ', /* */
+ CHAR_TAB: '\t', /* \t */
+ CHAR_UNDERSCORE: '_', /* _ */
+ CHAR_VERTICAL_LINE: '|', /* | */
+ CHAR_ZERO_WIDTH_NOBREAK_SPACE: '\uFEFF' /* \uFEFF */
+};
diff --git a/node_modules/braces/lib/expand.js b/node_modules/braces/lib/expand.js
new file mode 100644
index 0000000..376c748
--- /dev/null
+++ b/node_modules/braces/lib/expand.js
@@ -0,0 +1,113 @@
+'use strict';
+
+const fill = require('fill-range');
+const stringify = require('./stringify');
+const utils = require('./utils');
+
+const append = (queue = '', stash = '', enclose = false) => {
+ let result = [];
+
+ queue = [].concat(queue);
+ stash = [].concat(stash);
+
+ if (!stash.length) return queue;
+ if (!queue.length) {
+ return enclose ? utils.flatten(stash).map(ele => `{${ele}}`) : stash;
+ }
+
+ for (let item of queue) {
+ if (Array.isArray(item)) {
+ for (let value of item) {
+ result.push(append(value, stash, enclose));
+ }
+ } else {
+ for (let ele of stash) {
+ if (enclose === true && typeof ele === 'string') ele = `{${ele}}`;
+ result.push(Array.isArray(ele) ? append(item, ele, enclose) : (item + ele));
+ }
+ }
+ }
+ return utils.flatten(result);
+};
+
+const expand = (ast, options = {}) => {
+ let rangeLimit = options.rangeLimit === void 0 ? 1000 : options.rangeLimit;
+
+ let walk = (node, parent = {}) => {
+ node.queue = [];
+
+ let p = parent;
+ let q = parent.queue;
+
+ while (p.type !== 'brace' && p.type !== 'root' && p.parent) {
+ p = p.parent;
+ q = p.queue;
+ }
+
+ if (node.invalid || node.dollar) {
+ q.push(append(q.pop(), stringify(node, options)));
+ return;
+ }
+
+ if (node.type === 'brace' && node.invalid !== true && node.nodes.length === 2) {
+ q.push(append(q.pop(), ['{}']));
+ return;
+ }
+
+ if (node.nodes && node.ranges > 0) {
+ let args = utils.reduce(node.nodes);
+
+ if (utils.exceedsLimit(...args, options.step, rangeLimit)) {
+ throw new RangeError('expanded array length exceeds range limit. Use options.rangeLimit to increase or disable the limit.');
+ }
+
+ let range = fill(...args, options);
+ if (range.length === 0) {
+ range = stringify(node, options);
+ }
+
+ q.push(append(q.pop(), range));
+ node.nodes = [];
+ return;
+ }
+
+ let enclose = utils.encloseBrace(node);
+ let queue = node.queue;
+ let block = node;
+
+ while (block.type !== 'brace' && block.type !== 'root' && block.parent) {
+ block = block.parent;
+ queue = block.queue;
+ }
+
+ for (let i = 0; i < node.nodes.length; i++) {
+ let child = node.nodes[i];
+
+ if (child.type === 'comma' && node.type === 'brace') {
+ if (i === 1) queue.push('');
+ queue.push('');
+ continue;
+ }
+
+ if (child.type === 'close') {
+ q.push(append(q.pop(), queue, enclose));
+ continue;
+ }
+
+ if (child.value && child.type !== 'open') {
+ queue.push(append(queue.pop(), child.value));
+ continue;
+ }
+
+ if (child.nodes) {
+ walk(child, node);
+ }
+ }
+
+ return queue;
+ };
+
+ return utils.flatten(walk(ast));
+};
+
+module.exports = expand;
diff --git a/node_modules/braces/lib/parse.js b/node_modules/braces/lib/parse.js
new file mode 100644
index 0000000..145ea26
--- /dev/null
+++ b/node_modules/braces/lib/parse.js
@@ -0,0 +1,333 @@
+'use strict';
+
+const stringify = require('./stringify');
+
+/**
+ * Constants
+ */
+
+const {
+ MAX_LENGTH,
+ CHAR_BACKSLASH, /* \ */
+ CHAR_BACKTICK, /* ` */
+ CHAR_COMMA, /* , */
+ CHAR_DOT, /* . */
+ CHAR_LEFT_PARENTHESES, /* ( */
+ CHAR_RIGHT_PARENTHESES, /* ) */
+ CHAR_LEFT_CURLY_BRACE, /* { */
+ CHAR_RIGHT_CURLY_BRACE, /* } */
+ CHAR_LEFT_SQUARE_BRACKET, /* [ */
+ CHAR_RIGHT_SQUARE_BRACKET, /* ] */
+ CHAR_DOUBLE_QUOTE, /* " */
+ CHAR_SINGLE_QUOTE, /* ' */
+ CHAR_NO_BREAK_SPACE,
+ CHAR_ZERO_WIDTH_NOBREAK_SPACE
+} = require('./constants');
+
+/**
+ * parse
+ */
+
+const parse = (input, options = {}) => {
+ if (typeof input !== 'string') {
+ throw new TypeError('Expected a string');
+ }
+
+ let opts = options || {};
+ let max = typeof opts.maxLength === 'number' ? Math.min(MAX_LENGTH, opts.maxLength) : MAX_LENGTH;
+ if (input.length > max) {
+ throw new SyntaxError(`Input length (${input.length}), exceeds max characters (${max})`);
+ }
+
+ let ast = { type: 'root', input, nodes: [] };
+ let stack = [ast];
+ let block = ast;
+ let prev = ast;
+ let brackets = 0;
+ let length = input.length;
+ let index = 0;
+ let depth = 0;
+ let value;
+ let memo = {};
+
+ /**
+ * Helpers
+ */
+
+ const advance = () => input[index++];
+ const push = node => {
+ if (node.type === 'text' && prev.type === 'dot') {
+ prev.type = 'text';
+ }
+
+ if (prev && prev.type === 'text' && node.type === 'text') {
+ prev.value += node.value;
+ return;
+ }
+
+ block.nodes.push(node);
+ node.parent = block;
+ node.prev = prev;
+ prev = node;
+ return node;
+ };
+
+ push({ type: 'bos' });
+
+ while (index < length) {
+ block = stack[stack.length - 1];
+ value = advance();
+
+ /**
+ * Invalid chars
+ */
+
+ if (value === CHAR_ZERO_WIDTH_NOBREAK_SPACE || value === CHAR_NO_BREAK_SPACE) {
+ continue;
+ }
+
+ /**
+ * Escaped chars
+ */
+
+ if (value === CHAR_BACKSLASH) {
+ push({ type: 'text', value: (options.keepEscaping ? value : '') + advance() });
+ continue;
+ }
+
+ /**
+ * Right square bracket (literal): ']'
+ */
+
+ if (value === CHAR_RIGHT_SQUARE_BRACKET) {
+ push({ type: 'text', value: '\\' + value });
+ continue;
+ }
+
+ /**
+ * Left square bracket: '['
+ */
+
+ if (value === CHAR_LEFT_SQUARE_BRACKET) {
+ brackets++;
+
+ let closed = true;
+ let next;
+
+ while (index < length && (next = advance())) {
+ value += next;
+
+ if (next === CHAR_LEFT_SQUARE_BRACKET) {
+ brackets++;
+ continue;
+ }
+
+ if (next === CHAR_BACKSLASH) {
+ value += advance();
+ continue;
+ }
+
+ if (next === CHAR_RIGHT_SQUARE_BRACKET) {
+ brackets--;
+
+ if (brackets === 0) {
+ break;
+ }
+ }
+ }
+
+ push({ type: 'text', value });
+ continue;
+ }
+
+ /**
+ * Parentheses
+ */
+
+ if (value === CHAR_LEFT_PARENTHESES) {
+ block = push({ type: 'paren', nodes: [] });
+ stack.push(block);
+ push({ type: 'text', value });
+ continue;
+ }
+
+ if (value === CHAR_RIGHT_PARENTHESES) {
+ if (block.type !== 'paren') {
+ push({ type: 'text', value });
+ continue;
+ }
+ block = stack.pop();
+ push({ type: 'text', value });
+ block = stack[stack.length - 1];
+ continue;
+ }
+
+ /**
+ * Quotes: '|"|`
+ */
+
+ if (value === CHAR_DOUBLE_QUOTE || value === CHAR_SINGLE_QUOTE || value === CHAR_BACKTICK) {
+ let open = value;
+ let next;
+
+ if (options.keepQuotes !== true) {
+ value = '';
+ }
+
+ while (index < length && (next = advance())) {
+ if (next === CHAR_BACKSLASH) {
+ value += next + advance();
+ continue;
+ }
+
+ if (next === open) {
+ if (options.keepQuotes === true) value += next;
+ break;
+ }
+
+ value += next;
+ }
+
+ push({ type: 'text', value });
+ continue;
+ }
+
+ /**
+ * Left curly brace: '{'
+ */
+
+ if (value === CHAR_LEFT_CURLY_BRACE) {
+ depth++;
+
+ let dollar = prev.value && prev.value.slice(-1) === '$' || block.dollar === true;
+ let brace = {
+ type: 'brace',
+ open: true,
+ close: false,
+ dollar,
+ depth,
+ commas: 0,
+ ranges: 0,
+ nodes: []
+ };
+
+ block = push(brace);
+ stack.push(block);
+ push({ type: 'open', value });
+ continue;
+ }
+
+ /**
+ * Right curly brace: '}'
+ */
+
+ if (value === CHAR_RIGHT_CURLY_BRACE) {
+ if (block.type !== 'brace') {
+ push({ type: 'text', value });
+ continue;
+ }
+
+ let type = 'close';
+ block = stack.pop();
+ block.close = true;
+
+ push({ type, value });
+ depth--;
+
+ block = stack[stack.length - 1];
+ continue;
+ }
+
+ /**
+ * Comma: ','
+ */
+
+ if (value === CHAR_COMMA && depth > 0) {
+ if (block.ranges > 0) {
+ block.ranges = 0;
+ let open = block.nodes.shift();
+ block.nodes = [open, { type: 'text', value: stringify(block) }];
+ }
+
+ push({ type: 'comma', value });
+ block.commas++;
+ continue;
+ }
+
+ /**
+ * Dot: '.'
+ */
+
+ if (value === CHAR_DOT && depth > 0 && block.commas === 0) {
+ let siblings = block.nodes;
+
+ if (depth === 0 || siblings.length === 0) {
+ push({ type: 'text', value });
+ continue;
+ }
+
+ if (prev.type === 'dot') {
+ block.range = [];
+ prev.value += value;
+ prev.type = 'range';
+
+ if (block.nodes.length !== 3 && block.nodes.length !== 5) {
+ block.invalid = true;
+ block.ranges = 0;
+ prev.type = 'text';
+ continue;
+ }
+
+ block.ranges++;
+ block.args = [];
+ continue;
+ }
+
+ if (prev.type === 'range') {
+ siblings.pop();
+
+ let before = siblings[siblings.length - 1];
+ before.value += prev.value + value;
+ prev = before;
+ block.ranges--;
+ continue;
+ }
+
+ push({ type: 'dot', value });
+ continue;
+ }
+
+ /**
+ * Text
+ */
+
+ push({ type: 'text', value });
+ }
+
+ // Mark imbalanced braces and brackets as invalid
+ do {
+ block = stack.pop();
+
+ if (block.type !== 'root') {
+ block.nodes.forEach(node => {
+ if (!node.nodes) {
+ if (node.type === 'open') node.isOpen = true;
+ if (node.type === 'close') node.isClose = true;
+ if (!node.nodes) node.type = 'text';
+ node.invalid = true;
+ }
+ });
+
+ // get the location of the block on parent.nodes (block's siblings)
+ let parent = stack[stack.length - 1];
+ let index = parent.nodes.indexOf(block);
+ // replace the (invalid) block with it's nodes
+ parent.nodes.splice(index, 1, ...block.nodes);
+ }
+ } while (stack.length > 0);
+
+ push({ type: 'eos' });
+ return ast;
+};
+
+module.exports = parse;
diff --git a/node_modules/braces/lib/stringify.js b/node_modules/braces/lib/stringify.js
new file mode 100644
index 0000000..414b7bc
--- /dev/null
+++ b/node_modules/braces/lib/stringify.js
@@ -0,0 +1,32 @@
+'use strict';
+
+const utils = require('./utils');
+
+module.exports = (ast, options = {}) => {
+ let stringify = (node, parent = {}) => {
+ let invalidBlock = options.escapeInvalid && utils.isInvalidBrace(parent);
+ let invalidNode = node.invalid === true && options.escapeInvalid === true;
+ let output = '';
+
+ if (node.value) {
+ if ((invalidBlock || invalidNode) && utils.isOpenOrClose(node)) {
+ return '\\' + node.value;
+ }
+ return node.value;
+ }
+
+ if (node.value) {
+ return node.value;
+ }
+
+ if (node.nodes) {
+ for (let child of node.nodes) {
+ output += stringify(child);
+ }
+ }
+ return output;
+ };
+
+ return stringify(ast);
+};
+
diff --git a/node_modules/braces/lib/utils.js b/node_modules/braces/lib/utils.js
new file mode 100644
index 0000000..e3551a6
--- /dev/null
+++ b/node_modules/braces/lib/utils.js
@@ -0,0 +1,112 @@
+'use strict';
+
+exports.isInteger = num => {
+ if (typeof num === 'number') {
+ return Number.isInteger(num);
+ }
+ if (typeof num === 'string' && num.trim() !== '') {
+ return Number.isInteger(Number(num));
+ }
+ return false;
+};
+
+/**
+ * Find a node of the given type
+ */
+
+exports.find = (node, type) => node.nodes.find(node => node.type === type);
+
+/**
+ * Find a node of the given type
+ */
+
+exports.exceedsLimit = (min, max, step = 1, limit) => {
+ if (limit === false) return false;
+ if (!exports.isInteger(min) || !exports.isInteger(max)) return false;
+ return ((Number(max) - Number(min)) / Number(step)) >= limit;
+};
+
+/**
+ * Escape the given node with '\\' before node.value
+ */
+
+exports.escapeNode = (block, n = 0, type) => {
+ let node = block.nodes[n];
+ if (!node) return;
+
+ if ((type && node.type === type) || node.type === 'open' || node.type === 'close') {
+ if (node.escaped !== true) {
+ node.value = '\\' + node.value;
+ node.escaped = true;
+ }
+ }
+};
+
+/**
+ * Returns true if the given brace node should be enclosed in literal braces
+ */
+
+exports.encloseBrace = node => {
+ if (node.type !== 'brace') return false;
+ if ((node.commas >> 0 + node.ranges >> 0) === 0) {
+ node.invalid = true;
+ return true;
+ }
+ return false;
+};
+
+/**
+ * Returns true if a brace node is invalid.
+ */
+
+exports.isInvalidBrace = block => {
+ if (block.type !== 'brace') return false;
+ if (block.invalid === true || block.dollar) return true;
+ if ((block.commas >> 0 + block.ranges >> 0) === 0) {
+ block.invalid = true;
+ return true;
+ }
+ if (block.open !== true || block.close !== true) {
+ block.invalid = true;
+ return true;
+ }
+ return false;
+};
+
+/**
+ * Returns true if a node is an open or close node
+ */
+
+exports.isOpenOrClose = node => {
+ if (node.type === 'open' || node.type === 'close') {
+ return true;
+ }
+ return node.open === true || node.close === true;
+};
+
+/**
+ * Reduce an array of text nodes.
+ */
+
+exports.reduce = nodes => nodes.reduce((acc, node) => {
+ if (node.type === 'text') acc.push(node.value);
+ if (node.type === 'range') node.type = 'text';
+ return acc;
+}, []);
+
+/**
+ * Flatten an array
+ */
+
+exports.flatten = (...args) => {
+ const result = [];
+ const flat = arr => {
+ for (let i = 0; i < arr.length; i++) {
+ let ele = arr[i];
+ Array.isArray(ele) ? flat(ele, result) : ele !== void 0 && result.push(ele);
+ }
+ return result;
+ };
+ flat(args);
+ return result;
+};
diff --git a/node_modules/braces/package.json b/node_modules/braces/package.json
new file mode 100644
index 0000000..3f52e34
--- /dev/null
+++ b/node_modules/braces/package.json
@@ -0,0 +1,77 @@
+{
+ "name": "braces",
+ "description": "Bash-like brace expansion, implemented in JavaScript. Safer than other brace expansion libs, with complete support for the Bash 4.3 braces specification, without sacrificing speed.",
+ "version": "3.0.2",
+ "homepage": "https://github.com/micromatch/braces",
+ "author": "Jon Schlinkert (https://github.com/jonschlinkert)",
+ "contributors": [
+ "Brian Woodward (https://twitter.com/doowb)",
+ "Elan Shanker (https://github.com/es128)",
+ "Eugene Sharygin (https://github.com/eush77)",
+ "hemanth.hm (http://h3manth.com)",
+ "Jon Schlinkert (http://twitter.com/jonschlinkert)"
+ ],
+ "repository": "micromatch/braces",
+ "bugs": {
+ "url": "https://github.com/micromatch/braces/issues"
+ },
+ "license": "MIT",
+ "files": [
+ "index.js",
+ "lib"
+ ],
+ "main": "index.js",
+ "engines": {
+ "node": ">=8"
+ },
+ "scripts": {
+ "test": "mocha",
+ "benchmark": "node benchmark"
+ },
+ "dependencies": {
+ "fill-range": "^7.0.1"
+ },
+ "devDependencies": {
+ "ansi-colors": "^3.2.4",
+ "bash-path": "^2.0.1",
+ "gulp-format-md": "^2.0.0",
+ "mocha": "^6.1.1"
+ },
+ "keywords": [
+ "alpha",
+ "alphabetical",
+ "bash",
+ "brace",
+ "braces",
+ "expand",
+ "expansion",
+ "filepath",
+ "fill",
+ "fs",
+ "glob",
+ "globbing",
+ "letter",
+ "match",
+ "matches",
+ "matching",
+ "number",
+ "numerical",
+ "path",
+ "range",
+ "ranges",
+ "sh"
+ ],
+ "verb": {
+ "toc": false,
+ "layout": "default",
+ "tasks": [
+ "readme"
+ ],
+ "lint": {
+ "reflinks": true
+ },
+ "plugins": [
+ "gulp-format-md"
+ ]
+ }
+}
diff --git a/node_modules/browserslist/LICENSE b/node_modules/browserslist/LICENSE
new file mode 100644
index 0000000..90b6b91
--- /dev/null
+++ b/node_modules/browserslist/LICENSE
@@ -0,0 +1,20 @@
+The MIT License (MIT)
+
+Copyright 2014 Andrey Sitnik and other contributors
+
+Permission is hereby granted, free of charge, to any person obtaining a copy of
+this software and associated documentation files (the "Software"), to deal in
+the Software without restriction, including without limitation the rights to
+use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
+the Software, and to permit persons to whom the Software is furnished to do so,
+subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
+FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
+COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
+IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
+CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
diff --git a/node_modules/browserslist/README.md b/node_modules/browserslist/README.md
new file mode 100644
index 0000000..04abebd
--- /dev/null
+++ b/node_modules/browserslist/README.md
@@ -0,0 +1,73 @@
+# Browserslist [![Cult Of Martians][cult-img]][cult]
+
+
+
+The config to share target browsers and Node.js versions between different
+front-end tools. It is used in:
+
+* [Autoprefixer]
+* [Babel]
+* [postcss-preset-env]
+* [eslint-plugin-compat]
+* [stylelint-no-unsupported-browser-features]
+* [postcss-normalize]
+* [obsolete-webpack-plugin]
+
+All tools will find target browsers automatically,
+when you add the following to `package.json`:
+
+```json
+ "browserslist": [
+ "defaults and supports es6-module",
+ "maintained node versions"
+ ]
+```
+
+Or in `.browserslistrc` config:
+
+```yaml
+# Browsers that we support
+
+defaults and supports es6-module
+maintained node versions
+```
+
+Developers set their version lists using queries like `last 2 versions`
+to be free from updating versions manually.
+Browserslist will use [`caniuse-lite`] with [Can I Use] data for this queries.
+
+You can check how config works at our playground: [`browsersl.ist`](https://browsersl.ist/)
+
+
+
+
+
+
+
+
+
+[stylelint-no-unsupported-browser-features]: https://github.com/ismay/stylelint-no-unsupported-browser-features
+[obsolete-webpack-plugin]: https://github.com/ElemeFE/obsolete-webpack-plugin
+[eslint-plugin-compat]: https://github.com/amilajack/eslint-plugin-compat
+[Browserslist Example]: https://github.com/browserslist/browserslist-example
+[postcss-preset-env]: https://github.com/csstools/postcss-plugins/tree/main/plugin-packs/postcss-preset-env
+[postcss-normalize]: https://github.com/csstools/postcss-normalize
+[`browsersl.ist`]: https://browsersl.ist/
+[`caniuse-lite`]: https://github.com/ben-eb/caniuse-lite
+[Autoprefixer]: https://github.com/postcss/autoprefixer
+[Can I Use]: https://caniuse.com/
+[Babel]: https://github.com/babel/babel/tree/master/packages/babel-preset-env
+[cult-img]: https://cultofmartians.com/assets/badges/badge.svg
+[cult]: https://cultofmartians.com/done.html
+
+## Docs
+Read full docs **[here](https://github.com/browserslist/browserslist#readme)**.
diff --git a/node_modules/browserslist/browser.js b/node_modules/browserslist/browser.js
new file mode 100644
index 0000000..6828bdb
--- /dev/null
+++ b/node_modules/browserslist/browser.js
@@ -0,0 +1,52 @@
+var BrowserslistError = require('./error')
+
+function noop() {}
+
+module.exports = {
+ loadQueries: function loadQueries() {
+ throw new BrowserslistError(
+ 'Sharable configs are not supported in client-side build of Browserslist'
+ )
+ },
+
+ getStat: function getStat(opts) {
+ return opts.stats
+ },
+
+ loadConfig: function loadConfig(opts) {
+ if (opts.config) {
+ throw new BrowserslistError(
+ 'Browserslist config are not supported in client-side build'
+ )
+ }
+ },
+
+ loadCountry: function loadCountry() {
+ throw new BrowserslistError(
+ 'Country statistics are not supported ' +
+ 'in client-side build of Browserslist'
+ )
+ },
+
+ loadFeature: function loadFeature() {
+ throw new BrowserslistError(
+ 'Supports queries are not available in client-side build of Browserslist'
+ )
+ },
+
+ currentNode: function currentNode(resolve, context) {
+ return resolve(['maintained node versions'], context)[0]
+ },
+
+ parseConfig: noop,
+
+ readConfig: noop,
+
+ findConfig: noop,
+
+ clearCaches: noop,
+
+ oldDataWarning: noop,
+
+ env: {}
+}
diff --git a/node_modules/browserslist/cli.js b/node_modules/browserslist/cli.js
new file mode 100755
index 0000000..c54aa98
--- /dev/null
+++ b/node_modules/browserslist/cli.js
@@ -0,0 +1,151 @@
+#!/usr/bin/env node
+
+var updateDb = require('update-browserslist-db')
+var fs = require('fs')
+
+var browserslist = require('./')
+var pkg = require('./package.json')
+
+var args = process.argv.slice(2)
+
+var USAGE =
+ 'Usage:\n' +
+ ' npx browserslist\n' +
+ ' npx browserslist "QUERIES"\n' +
+ ' npx browserslist --json "QUERIES"\n' +
+ ' npx browserslist --config="path/to/browserlist/file"\n' +
+ ' npx browserslist --coverage "QUERIES"\n' +
+ ' npx browserslist --coverage=US "QUERIES"\n' +
+ ' npx browserslist --coverage=US,RU,global "QUERIES"\n' +
+ ' npx browserslist --env="environment name defined in config"\n' +
+ ' npx browserslist --stats="path/to/browserlist/stats/file"\n' +
+ ' npx browserslist --mobile-to-desktop\n' +
+ ' npx browserslist --ignore-unknown-versions\n'
+
+function isArg(arg) {
+ return args.some(function (str) {
+ return str === arg || str.indexOf(arg + '=') === 0
+ })
+}
+
+function error(msg) {
+ process.stderr.write('browserslist: ' + msg + '\n')
+ process.exit(1)
+}
+
+if (isArg('--help') || isArg('-h')) {
+ process.stdout.write(pkg.description + '.\n\n' + USAGE + '\n')
+} else if (isArg('--version') || isArg('-v')) {
+ process.stdout.write('browserslist ' + pkg.version + '\n')
+} else if (isArg('--update-db')) {
+ /* c8 ignore next 3 */
+ updateDb(function (str) {
+ process.stdout.write(str)
+ })
+} else {
+ var mode = 'browsers'
+ var opts = {}
+ var queries
+ var areas
+
+ for (var i = 0; i < args.length; i++) {
+ if (args[i][0] !== '-') {
+ queries = args[i].replace(/^["']|["']$/g, '')
+ continue
+ }
+
+ var arg = args[i].split('=')
+ var name = arg[0]
+ var value = arg[1]
+
+ if (value) value = value.replace(/^["']|["']$/g, '')
+
+ if (name === '--config' || name === '-b') {
+ opts.config = value
+ } else if (name === '--env' || name === '-e') {
+ opts.env = value
+ } else if (name === '--stats' || name === '-s') {
+ opts.stats = value
+ } else if (name === '--coverage' || name === '-c') {
+ if (mode !== 'json') mode = 'coverage'
+ if (value) {
+ areas = value.split(',')
+ } else {
+ areas = ['global']
+ }
+ } else if (name === '--json') {
+ mode = 'json'
+ } else if (name === '--mobile-to-desktop') {
+ /* c8 ignore next */
+ opts.mobileToDesktop = true
+ } else if (name === '--ignore-unknown-versions') {
+ /* c8 ignore next */
+ opts.ignoreUnknownVersions = true
+ } else {
+ error('Unknown arguments ' + args[i] + '.\n\n' + USAGE)
+ }
+ }
+
+ var browsers
+ try {
+ browsers = browserslist(queries, opts)
+ } catch (e) {
+ if (e.name === 'BrowserslistError') {
+ error(e.message)
+ } /* c8 ignore start */ else {
+ throw e
+ } /* c8 ignore end */
+ }
+
+ var coverage
+ if (mode === 'browsers') {
+ browsers.forEach(function (browser) {
+ process.stdout.write(browser + '\n')
+ })
+ } else if (areas) {
+ coverage = areas.map(function (area) {
+ var stats
+ if (area !== 'global') {
+ stats = area
+ } else if (opts.stats) {
+ stats = JSON.parse(fs.readFileSync(opts.stats))
+ }
+ var result = browserslist.coverage(browsers, stats)
+ var round = Math.round(result * 100) / 100.0
+
+ return [area, round]
+ })
+
+ if (mode === 'coverage') {
+ var prefix = 'These browsers account for '
+ process.stdout.write(prefix)
+ coverage.forEach(function (data, index) {
+ var area = data[0]
+ var round = data[1]
+ var end = 'globally'
+ if (area && area !== 'global') {
+ end = 'in the ' + area.toUpperCase()
+ } else if (opts.stats) {
+ end = 'in custom statistics'
+ }
+
+ if (index !== 0) {
+ process.stdout.write(prefix.replace(/./g, ' '))
+ }
+
+ process.stdout.write(round + '% of all users ' + end + '\n')
+ })
+ }
+ }
+
+ if (mode === 'json') {
+ var data = { browsers: browsers }
+ if (coverage) {
+ data.coverage = coverage.reduce(function (object, j) {
+ object[j[0]] = j[1]
+ return object
+ }, {})
+ }
+ process.stdout.write(JSON.stringify(data, null, ' ') + '\n')
+ }
+}
diff --git a/node_modules/browserslist/error.d.ts b/node_modules/browserslist/error.d.ts
new file mode 100644
index 0000000..12ff921
--- /dev/null
+++ b/node_modules/browserslist/error.d.ts
@@ -0,0 +1,7 @@
+declare class BrowserslistError extends Error {
+ constructor(message: any)
+ name: 'BrowserslistError'
+ browserslist: true
+}
+
+export = BrowserslistError
diff --git a/node_modules/browserslist/error.js b/node_modules/browserslist/error.js
new file mode 100644
index 0000000..6e5da7a
--- /dev/null
+++ b/node_modules/browserslist/error.js
@@ -0,0 +1,12 @@
+function BrowserslistError(message) {
+ this.name = 'BrowserslistError'
+ this.message = message
+ this.browserslist = true
+ if (Error.captureStackTrace) {
+ Error.captureStackTrace(this, BrowserslistError)
+ }
+}
+
+BrowserslistError.prototype = Error.prototype
+
+module.exports = BrowserslistError
diff --git a/node_modules/browserslist/index.d.ts b/node_modules/browserslist/index.d.ts
new file mode 100644
index 0000000..076590c
--- /dev/null
+++ b/node_modules/browserslist/index.d.ts
@@ -0,0 +1,198 @@
+/**
+ * Return array of browsers by selection queries.
+ *
+ * ```js
+ * browserslist('IE >= 10, IE 8') //=> ['ie 11', 'ie 10', 'ie 8']
+ * ```
+ *
+ * @param queries Browser queries.
+ * @param opts Options.
+ * @returns Array with browser names in Can I Use.
+ */
+declare function browserslist(
+ queries?: string | readonly string[] | null,
+ opts?: browserslist.Options
+): string[]
+
+declare namespace browserslist {
+ interface Query {
+ compose: 'or' | 'and'
+ type: string
+ query: string
+ not?: true
+ }
+
+ interface Options {
+ /**
+ * Path to processed file. It will be used to find config files.
+ */
+ path?: string | false
+ /**
+ * Processing environment. It will be used to take right queries
+ * from config file.
+ */
+ env?: string
+ /**
+ * Custom browser usage statistics for "> 1% in my stats" query.
+ */
+ stats?: Stats | string
+ /**
+ * Path to config file with queries.
+ */
+ config?: string
+ /**
+ * Do not throw on unknown version in direct query.
+ */
+ ignoreUnknownVersions?: boolean
+ /**
+ * Throw an error if env is not found.
+ */
+ throwOnMissing?: boolean
+ /**
+ * Disable security checks for extend query.
+ */
+ dangerousExtend?: boolean
+ /**
+ * Alias mobile browsers to the desktop version when Can I Use
+ * doesn’t have data about the specified version.
+ */
+ mobileToDesktop?: boolean
+ }
+
+ type Config = {
+ defaults: string[]
+ [section: string]: string[] | undefined
+ }
+
+ interface Stats {
+ [browser: string]: {
+ [version: string]: number
+ }
+ }
+
+ /**
+ * Browser names aliases.
+ */
+ let aliases: {
+ [alias: string]: string | undefined
+ }
+
+ /**
+ * Aliases to work with joined versions like `ios_saf 7.0-7.1`.
+ */
+ let versionAliases: {
+ [browser: string]:
+ | {
+ [version: string]: string | undefined
+ }
+ | undefined
+ }
+
+ /**
+ * Can I Use only provides a few versions for some browsers (e.g. `and_chr`).
+ *
+ * Fallback to a similar browser for unknown versions.
+ */
+ let desktopNames: {
+ [browser: string]: string | undefined
+ }
+
+ let data: {
+ [browser: string]:
+ | {
+ name: string
+ versions: string[]
+ released: string[]
+ releaseDate: {
+ [version: string]: number | undefined | null
+ }
+ }
+ | undefined
+ }
+
+ let nodeVersions: string[]
+
+ interface Usage {
+ [version: string]: number
+ }
+
+ let usage: {
+ global?: Usage
+ custom?: Usage | null
+ [country: string]: Usage | undefined | null
+ }
+
+ let cache: {
+ [feature: string]: {
+ [name: string]: 'y' | 'n'
+ }
+ }
+
+ /**
+ * Default browsers query
+ */
+ let defaults: readonly string[]
+
+ /**
+ * Which statistics should be used. Country code or custom statistics.
+ * Pass `"my stats"` to load statistics from `Browserslist` files.
+ */
+ type StatsOptions = string | 'my stats' | Stats | { dataByBrowser: Stats }
+
+ /**
+ * Return browsers market coverage.
+ *
+ * ```js
+ * browserslist.coverage(browserslist('> 1% in US'), 'US') //=> 83.1
+ * ```
+ *
+ * @param browsers Browsers names in Can I Use.
+ * @param stats Which statistics should be used.
+ * @returns Total market coverage for all selected browsers.
+ */
+ function coverage(browsers: readonly string[], stats?: StatsOptions): number
+
+ /**
+ * Get queries AST to analyze the config content.
+ *
+ * @param queries Browser queries.
+ * @param opts Options.
+ * @returns An array of the data of each query in the config.
+ */
+ function parse(
+ queries?: string | readonly string[] | null,
+ opts?: browserslist.Options
+ ): Query[]
+
+ function clearCaches(): void
+
+ function parseConfig(string: string): Config
+
+ function readConfig(file: string): Config
+
+ function findConfig(...pathSegments: string[]): Config | undefined
+
+ interface LoadConfigOptions {
+ config?: string
+ path?: string
+ env?: string
+ }
+
+ function loadConfig(options: LoadConfigOptions): string[] | undefined
+}
+
+declare global {
+ namespace NodeJS {
+ interface ProcessEnv {
+ BROWSERSLIST?: string
+ BROWSERSLIST_CONFIG?: string
+ BROWSERSLIST_DANGEROUS_EXTEND?: string
+ BROWSERSLIST_DISABLE_CACHE?: string
+ BROWSERSLIST_ENV?: string
+ BROWSERSLIST_IGNORE_OLD_DATA?: string
+ BROWSERSLIST_STATS?: string
+ }
+ }
+}
+
+export = browserslist
diff --git a/node_modules/browserslist/index.js b/node_modules/browserslist/index.js
new file mode 100644
index 0000000..c05cf6c
--- /dev/null
+++ b/node_modules/browserslist/index.js
@@ -0,0 +1,1191 @@
+var jsReleases = require('node-releases/data/processed/envs.json')
+var agents = require('caniuse-lite/dist/unpacker/agents').agents
+var jsEOL = require('node-releases/data/release-schedule/release-schedule.json')
+var path = require('path')
+var e2c = require('electron-to-chromium/versions')
+
+var BrowserslistError = require('./error')
+var parse = require('./parse')
+var env = require('./node') // Will load browser.js in webpack
+
+var YEAR = 365.259641 * 24 * 60 * 60 * 1000
+var ANDROID_EVERGREEN_FIRST = '37'
+
+// Helpers
+
+function isVersionsMatch(versionA, versionB) {
+ return (versionA + '.').indexOf(versionB + '.') === 0
+}
+
+function isEolReleased(name) {
+ var version = name.slice(1)
+ return browserslist.nodeVersions.some(function (i) {
+ return isVersionsMatch(i, version)
+ })
+}
+
+function normalize(versions) {
+ return versions.filter(function (version) {
+ return typeof version === 'string'
+ })
+}
+
+function normalizeElectron(version) {
+ var versionToUse = version
+ if (version.split('.').length === 3) {
+ versionToUse = version.split('.').slice(0, -1).join('.')
+ }
+ return versionToUse
+}
+
+function nameMapper(name) {
+ return function mapName(version) {
+ return name + ' ' + version
+ }
+}
+
+function getMajor(version) {
+ return parseInt(version.split('.')[0])
+}
+
+function getMajorVersions(released, number) {
+ if (released.length === 0) return []
+ var majorVersions = uniq(released.map(getMajor))
+ var minimum = majorVersions[majorVersions.length - number]
+ if (!minimum) {
+ return released
+ }
+ var selected = []
+ for (var i = released.length - 1; i >= 0; i--) {
+ if (minimum > getMajor(released[i])) break
+ selected.unshift(released[i])
+ }
+ return selected
+}
+
+function uniq(array) {
+ var filtered = []
+ for (var i = 0; i < array.length; i++) {
+ if (filtered.indexOf(array[i]) === -1) filtered.push(array[i])
+ }
+ return filtered
+}
+
+function fillUsage(result, name, data) {
+ for (var i in data) {
+ result[name + ' ' + i] = data[i]
+ }
+}
+
+function generateFilter(sign, version) {
+ version = parseFloat(version)
+ if (sign === '>') {
+ return function (v) {
+ return parseFloat(v) > version
+ }
+ } else if (sign === '>=') {
+ return function (v) {
+ return parseFloat(v) >= version
+ }
+ } else if (sign === '<') {
+ return function (v) {
+ return parseFloat(v) < version
+ }
+ } else {
+ return function (v) {
+ return parseFloat(v) <= version
+ }
+ }
+}
+
+function generateSemverFilter(sign, version) {
+ version = version.split('.').map(parseSimpleInt)
+ version[1] = version[1] || 0
+ version[2] = version[2] || 0
+ if (sign === '>') {
+ return function (v) {
+ v = v.split('.').map(parseSimpleInt)
+ return compareSemver(v, version) > 0
+ }
+ } else if (sign === '>=') {
+ return function (v) {
+ v = v.split('.').map(parseSimpleInt)
+ return compareSemver(v, version) >= 0
+ }
+ } else if (sign === '<') {
+ return function (v) {
+ v = v.split('.').map(parseSimpleInt)
+ return compareSemver(version, v) > 0
+ }
+ } else {
+ return function (v) {
+ v = v.split('.').map(parseSimpleInt)
+ return compareSemver(version, v) >= 0
+ }
+ }
+}
+
+function parseSimpleInt(x) {
+ return parseInt(x)
+}
+
+function compare(a, b) {
+ if (a < b) return -1
+ if (a > b) return +1
+ return 0
+}
+
+function compareSemver(a, b) {
+ return (
+ compare(parseInt(a[0]), parseInt(b[0])) ||
+ compare(parseInt(a[1] || '0'), parseInt(b[1] || '0')) ||
+ compare(parseInt(a[2] || '0'), parseInt(b[2] || '0'))
+ )
+}
+
+// this follows the npm-like semver behavior
+function semverFilterLoose(operator, range) {
+ range = range.split('.').map(parseSimpleInt)
+ if (typeof range[1] === 'undefined') {
+ range[1] = 'x'
+ }
+ // ignore any patch version because we only return minor versions
+ // range[2] = 'x'
+ switch (operator) {
+ case '<=':
+ return function (version) {
+ version = version.split('.').map(parseSimpleInt)
+ return compareSemverLoose(version, range) <= 0
+ }
+ case '>=':
+ default:
+ return function (version) {
+ version = version.split('.').map(parseSimpleInt)
+ return compareSemverLoose(version, range) >= 0
+ }
+ }
+}
+
+// this follows the npm-like semver behavior
+function compareSemverLoose(version, range) {
+ if (version[0] !== range[0]) {
+ return version[0] < range[0] ? -1 : +1
+ }
+ if (range[1] === 'x') {
+ return 0
+ }
+ if (version[1] !== range[1]) {
+ return version[1] < range[1] ? -1 : +1
+ }
+ return 0
+}
+
+function resolveVersion(data, version) {
+ if (data.versions.indexOf(version) !== -1) {
+ return version
+ } else if (browserslist.versionAliases[data.name][version]) {
+ return browserslist.versionAliases[data.name][version]
+ } else {
+ return false
+ }
+}
+
+function normalizeVersion(data, version) {
+ var resolved = resolveVersion(data, version)
+ if (resolved) {
+ return resolved
+ } else if (data.versions.length === 1) {
+ return data.versions[0]
+ } else {
+ return false
+ }
+}
+
+function filterByYear(since, context) {
+ since = since / 1000
+ return Object.keys(agents).reduce(function (selected, name) {
+ var data = byName(name, context)
+ if (!data) return selected
+ var versions = Object.keys(data.releaseDate).filter(function (v) {
+ var date = data.releaseDate[v]
+ return date !== null && date >= since
+ })
+ return selected.concat(versions.map(nameMapper(data.name)))
+ }, [])
+}
+
+function cloneData(data) {
+ return {
+ name: data.name,
+ versions: data.versions,
+ released: data.released,
+ releaseDate: data.releaseDate
+ }
+}
+
+function mapVersions(data, map) {
+ data.versions = data.versions.map(function (i) {
+ return map[i] || i
+ })
+ data.released = data.released.map(function (i) {
+ return map[i] || i
+ })
+ var fixedDate = {}
+ for (var i in data.releaseDate) {
+ fixedDate[map[i] || i] = data.releaseDate[i]
+ }
+ data.releaseDate = fixedDate
+ return data
+}
+
+function byName(name, context) {
+ name = name.toLowerCase()
+ name = browserslist.aliases[name] || name
+ if (context.mobileToDesktop && browserslist.desktopNames[name]) {
+ var desktop = browserslist.data[browserslist.desktopNames[name]]
+ if (name === 'android') {
+ return normalizeAndroidData(cloneData(browserslist.data[name]), desktop)
+ } else {
+ var cloned = cloneData(desktop)
+ cloned.name = name
+ if (name === 'op_mob') {
+ cloned = mapVersions(cloned, { '10.0-10.1': '10' })
+ }
+ return cloned
+ }
+ }
+ return browserslist.data[name]
+}
+
+function normalizeAndroidVersions(androidVersions, chromeVersions) {
+ var iFirstEvergreen = chromeVersions.indexOf(ANDROID_EVERGREEN_FIRST)
+ return androidVersions
+ .filter(function (version) {
+ return /^(?:[2-4]\.|[34]$)/.test(version)
+ })
+ .concat(chromeVersions.slice(iFirstEvergreen))
+}
+
+function normalizeAndroidData(android, chrome) {
+ android.released = normalizeAndroidVersions(android.released, chrome.released)
+ android.versions = normalizeAndroidVersions(android.versions, chrome.versions)
+ android.released.forEach(function (v) {
+ if (android.releaseDate[v] === undefined) {
+ android.releaseDate[v] = chrome.releaseDate[v]
+ }
+ })
+ return android
+}
+
+function checkName(name, context) {
+ var data = byName(name, context)
+ if (!data) throw new BrowserslistError('Unknown browser ' + name)
+ return data
+}
+
+function unknownQuery(query) {
+ return new BrowserslistError(
+ 'Unknown browser query `' +
+ query +
+ '`. ' +
+ 'Maybe you are using old Browserslist or made typo in query.'
+ )
+}
+
+function filterAndroid(list, versions, context) {
+ if (context.mobileToDesktop) return list
+ var released = browserslist.data.chrome.released
+ var nEvergreen = released.length - released.indexOf(ANDROID_EVERGREEN_FIRST)
+ if (versions <= nEvergreen) {
+ return list.slice(-1)
+ }
+ return list.slice(nEvergreen - 1 - versions)
+}
+
+function resolve(queries, context) {
+ return parse(QUERIES, queries).reduce(function (result, node, index) {
+ if (node.not && index === 0) {
+ throw new BrowserslistError(
+ 'Write any browsers query (for instance, `defaults`) ' +
+ 'before `' +
+ node.query +
+ '`'
+ )
+ }
+ var type = QUERIES[node.type]
+ var array = type.select.call(browserslist, context, node).map(function (j) {
+ var parts = j.split(' ')
+ if (parts[1] === '0') {
+ return parts[0] + ' ' + byName(parts[0], context).versions[0]
+ } else {
+ return j
+ }
+ })
+
+ if (node.compose === 'and') {
+ if (node.not) {
+ return result.filter(function (j) {
+ return array.indexOf(j) === -1
+ })
+ } else {
+ return result.filter(function (j) {
+ return array.indexOf(j) !== -1
+ })
+ }
+ } else {
+ if (node.not) {
+ var filter = {}
+ array.forEach(function (j) {
+ filter[j] = true
+ })
+ return result.filter(function (j) {
+ return !filter[j]
+ })
+ }
+ return result.concat(array)
+ }
+ }, [])
+}
+
+function prepareOpts(opts) {
+ if (typeof opts === 'undefined') opts = {}
+
+ if (typeof opts.path === 'undefined') {
+ opts.path = path.resolve ? path.resolve('.') : '.'
+ }
+
+ return opts
+}
+
+function prepareQueries(queries, opts) {
+ if (typeof queries === 'undefined' || queries === null) {
+ var config = browserslist.loadConfig(opts)
+ if (config) {
+ queries = config
+ } else {
+ queries = browserslist.defaults
+ }
+ }
+
+ return queries
+}
+
+function checkQueries(queries) {
+ if (!(typeof queries === 'string' || Array.isArray(queries))) {
+ throw new BrowserslistError(
+ 'Browser queries must be an array or string. Got ' + typeof queries + '.'
+ )
+ }
+}
+
+var cache = {}
+
+function browserslist(queries, opts) {
+ opts = prepareOpts(opts)
+ queries = prepareQueries(queries, opts)
+ checkQueries(queries)
+
+ var context = {
+ ignoreUnknownVersions: opts.ignoreUnknownVersions,
+ dangerousExtend: opts.dangerousExtend,
+ mobileToDesktop: opts.mobileToDesktop,
+ path: opts.path,
+ env: opts.env
+ }
+
+ env.oldDataWarning(browserslist.data)
+ var stats = env.getStat(opts, browserslist.data)
+ if (stats) {
+ context.customUsage = {}
+ for (var browser in stats) {
+ fillUsage(context.customUsage, browser, stats[browser])
+ }
+ }
+
+ var cacheKey = JSON.stringify([queries, context])
+ if (cache[cacheKey]) return cache[cacheKey]
+
+ var result = uniq(resolve(queries, context)).sort(function (name1, name2) {
+ name1 = name1.split(' ')
+ name2 = name2.split(' ')
+ if (name1[0] === name2[0]) {
+ // assumptions on caniuse data
+ // 1) version ranges never overlaps
+ // 2) if version is not a range, it never contains `-`
+ var version1 = name1[1].split('-')[0]
+ var version2 = name2[1].split('-')[0]
+ return compareSemver(version2.split('.'), version1.split('.'))
+ } else {
+ return compare(name1[0], name2[0])
+ }
+ })
+ if (!env.env.BROWSERSLIST_DISABLE_CACHE) {
+ cache[cacheKey] = result
+ }
+ return result
+}
+
+browserslist.parse = function (queries, opts) {
+ opts = prepareOpts(opts)
+ queries = prepareQueries(queries, opts)
+ checkQueries(queries)
+ return parse(QUERIES, queries)
+}
+
+// Will be filled by Can I Use data below
+browserslist.cache = {}
+browserslist.data = {}
+browserslist.usage = {
+ global: {},
+ custom: null
+}
+
+// Default browsers query
+browserslist.defaults = ['> 0.5%', 'last 2 versions', 'Firefox ESR', 'not dead']
+
+// Browser names aliases
+browserslist.aliases = {
+ fx: 'firefox',
+ ff: 'firefox',
+ ios: 'ios_saf',
+ explorer: 'ie',
+ blackberry: 'bb',
+ explorermobile: 'ie_mob',
+ operamini: 'op_mini',
+ operamobile: 'op_mob',
+ chromeandroid: 'and_chr',
+ firefoxandroid: 'and_ff',
+ ucandroid: 'and_uc',
+ qqandroid: 'and_qq'
+}
+
+// Can I Use only provides a few versions for some browsers (e.g. and_chr).
+// Fallback to a similar browser for unknown versions
+browserslist.desktopNames = {
+ and_chr: 'chrome',
+ and_ff: 'firefox',
+ ie_mob: 'ie',
+ op_mob: 'opera',
+ android: 'chrome' // has extra processing logic
+}
+
+// Aliases to work with joined versions like `ios_saf 7.0-7.1`
+browserslist.versionAliases = {}
+
+browserslist.clearCaches = env.clearCaches
+browserslist.parseConfig = env.parseConfig
+browserslist.readConfig = env.readConfig
+browserslist.findConfig = env.findConfig
+browserslist.loadConfig = env.loadConfig
+
+browserslist.coverage = function (browsers, stats) {
+ var data
+ if (typeof stats === 'undefined') {
+ data = browserslist.usage.global
+ } else if (stats === 'my stats') {
+ var opts = {}
+ opts.path = path.resolve ? path.resolve('.') : '.'
+ var customStats = env.getStat(opts)
+ if (!customStats) {
+ throw new BrowserslistError('Custom usage statistics was not provided')
+ }
+ data = {}
+ for (var browser in customStats) {
+ fillUsage(data, browser, customStats[browser])
+ }
+ } else if (typeof stats === 'string') {
+ if (stats.length > 2) {
+ stats = stats.toLowerCase()
+ } else {
+ stats = stats.toUpperCase()
+ }
+ env.loadCountry(browserslist.usage, stats, browserslist.data)
+ data = browserslist.usage[stats]
+ } else {
+ if ('dataByBrowser' in stats) {
+ stats = stats.dataByBrowser
+ }
+ data = {}
+ for (var name in stats) {
+ for (var version in stats[name]) {
+ data[name + ' ' + version] = stats[name][version]
+ }
+ }
+ }
+
+ return browsers.reduce(function (all, i) {
+ var usage = data[i]
+ if (usage === undefined) {
+ usage = data[i.replace(/ \S+$/, ' 0')]
+ }
+ return all + (usage || 0)
+ }, 0)
+}
+
+function nodeQuery(context, node) {
+ var matched = browserslist.nodeVersions.filter(function (i) {
+ return isVersionsMatch(i, node.version)
+ })
+ if (matched.length === 0) {
+ if (context.ignoreUnknownVersions) {
+ return []
+ } else {
+ throw new BrowserslistError(
+ 'Unknown version ' + node.version + ' of Node.js'
+ )
+ }
+ }
+ return ['node ' + matched[matched.length - 1]]
+}
+
+function sinceQuery(context, node) {
+ var year = parseInt(node.year)
+ var month = parseInt(node.month || '01') - 1
+ var day = parseInt(node.day || '01')
+ return filterByYear(Date.UTC(year, month, day, 0, 0, 0), context)
+}
+
+function coverQuery(context, node) {
+ var coverage = parseFloat(node.coverage)
+ var usage = browserslist.usage.global
+ if (node.place) {
+ if (node.place.match(/^my\s+stats$/i)) {
+ if (!context.customUsage) {
+ throw new BrowserslistError('Custom usage statistics was not provided')
+ }
+ usage = context.customUsage
+ } else {
+ var place
+ if (node.place.length === 2) {
+ place = node.place.toUpperCase()
+ } else {
+ place = node.place.toLowerCase()
+ }
+ env.loadCountry(browserslist.usage, place, browserslist.data)
+ usage = browserslist.usage[place]
+ }
+ }
+ var versions = Object.keys(usage).sort(function (a, b) {
+ return usage[b] - usage[a]
+ })
+ var coveraged = 0
+ var result = []
+ var version
+ for (var i = 0; i < versions.length; i++) {
+ version = versions[i]
+ if (usage[version] === 0) break
+ coveraged += usage[version]
+ result.push(version)
+ if (coveraged >= coverage) break
+ }
+ return result
+}
+
+var QUERIES = {
+ last_major_versions: {
+ matches: ['versions'],
+ regexp: /^last\s+(\d+)\s+major\s+versions?$/i,
+ select: function (context, node) {
+ return Object.keys(agents).reduce(function (selected, name) {
+ var data = byName(name, context)
+ if (!data) return selected
+ var list = getMajorVersions(data.released, node.versions)
+ list = list.map(nameMapper(data.name))
+ if (data.name === 'android') {
+ list = filterAndroid(list, node.versions, context)
+ }
+ return selected.concat(list)
+ }, [])
+ }
+ },
+ last_versions: {
+ matches: ['versions'],
+ regexp: /^last\s+(\d+)\s+versions?$/i,
+ select: function (context, node) {
+ return Object.keys(agents).reduce(function (selected, name) {
+ var data = byName(name, context)
+ if (!data) return selected
+ var list = data.released.slice(-node.versions)
+ list = list.map(nameMapper(data.name))
+ if (data.name === 'android') {
+ list = filterAndroid(list, node.versions, context)
+ }
+ return selected.concat(list)
+ }, [])
+ }
+ },
+ last_electron_major_versions: {
+ matches: ['versions'],
+ regexp: /^last\s+(\d+)\s+electron\s+major\s+versions?$/i,
+ select: function (context, node) {
+ var validVersions = getMajorVersions(Object.keys(e2c), node.versions)
+ return validVersions.map(function (i) {
+ return 'chrome ' + e2c[i]
+ })
+ }
+ },
+ last_node_major_versions: {
+ matches: ['versions'],
+ regexp: /^last\s+(\d+)\s+node\s+major\s+versions?$/i,
+ select: function (context, node) {
+ return getMajorVersions(browserslist.nodeVersions, node.versions).map(
+ function (version) {
+ return 'node ' + version
+ }
+ )
+ }
+ },
+ last_browser_major_versions: {
+ matches: ['versions', 'browser'],
+ regexp: /^last\s+(\d+)\s+(\w+)\s+major\s+versions?$/i,
+ select: function (context, node) {
+ var data = checkName(node.browser, context)
+ var validVersions = getMajorVersions(data.released, node.versions)
+ var list = validVersions.map(nameMapper(data.name))
+ if (data.name === 'android') {
+ list = filterAndroid(list, node.versions, context)
+ }
+ return list
+ }
+ },
+ last_electron_versions: {
+ matches: ['versions'],
+ regexp: /^last\s+(\d+)\s+electron\s+versions?$/i,
+ select: function (context, node) {
+ return Object.keys(e2c)
+ .slice(-node.versions)
+ .map(function (i) {
+ return 'chrome ' + e2c[i]
+ })
+ }
+ },
+ last_node_versions: {
+ matches: ['versions'],
+ regexp: /^last\s+(\d+)\s+node\s+versions?$/i,
+ select: function (context, node) {
+ return browserslist.nodeVersions
+ .slice(-node.versions)
+ .map(function (version) {
+ return 'node ' + version
+ })
+ }
+ },
+ last_browser_versions: {
+ matches: ['versions', 'browser'],
+ regexp: /^last\s+(\d+)\s+(\w+)\s+versions?$/i,
+ select: function (context, node) {
+ var data = checkName(node.browser, context)
+ var list = data.released.slice(-node.versions).map(nameMapper(data.name))
+ if (data.name === 'android') {
+ list = filterAndroid(list, node.versions, context)
+ }
+ return list
+ }
+ },
+ unreleased_versions: {
+ matches: [],
+ regexp: /^unreleased\s+versions$/i,
+ select: function (context) {
+ return Object.keys(agents).reduce(function (selected, name) {
+ var data = byName(name, context)
+ if (!data) return selected
+ var list = data.versions.filter(function (v) {
+ return data.released.indexOf(v) === -1
+ })
+ list = list.map(nameMapper(data.name))
+ return selected.concat(list)
+ }, [])
+ }
+ },
+ unreleased_electron_versions: {
+ matches: [],
+ regexp: /^unreleased\s+electron\s+versions?$/i,
+ select: function () {
+ return []
+ }
+ },
+ unreleased_browser_versions: {
+ matches: ['browser'],
+ regexp: /^unreleased\s+(\w+)\s+versions?$/i,
+ select: function (context, node) {
+ var data = checkName(node.browser, context)
+ return data.versions
+ .filter(function (v) {
+ return data.released.indexOf(v) === -1
+ })
+ .map(nameMapper(data.name))
+ }
+ },
+ last_years: {
+ matches: ['years'],
+ regexp: /^last\s+(\d*.?\d+)\s+years?$/i,
+ select: function (context, node) {
+ return filterByYear(Date.now() - YEAR * node.years, context)
+ }
+ },
+ since_y: {
+ matches: ['year'],
+ regexp: /^since (\d+)$/i,
+ select: sinceQuery
+ },
+ since_y_m: {
+ matches: ['year', 'month'],
+ regexp: /^since (\d+)-(\d+)$/i,
+ select: sinceQuery
+ },
+ since_y_m_d: {
+ matches: ['year', 'month', 'day'],
+ regexp: /^since (\d+)-(\d+)-(\d+)$/i,
+ select: sinceQuery
+ },
+ popularity: {
+ matches: ['sign', 'popularity'],
+ regexp: /^(>=?|<=?)\s*(\d+|\d+\.\d+|\.\d+)%$/,
+ select: function (context, node) {
+ var popularity = parseFloat(node.popularity)
+ var usage = browserslist.usage.global
+ return Object.keys(usage).reduce(function (result, version) {
+ if (node.sign === '>') {
+ if (usage[version] > popularity) {
+ result.push(version)
+ }
+ } else if (node.sign === '<') {
+ if (usage[version] < popularity) {
+ result.push(version)
+ }
+ } else if (node.sign === '<=') {
+ if (usage[version] <= popularity) {
+ result.push(version)
+ }
+ } else if (usage[version] >= popularity) {
+ result.push(version)
+ }
+ return result
+ }, [])
+ }
+ },
+ popularity_in_my_stats: {
+ matches: ['sign', 'popularity'],
+ regexp: /^(>=?|<=?)\s*(\d+|\d+\.\d+|\.\d+)%\s+in\s+my\s+stats$/,
+ select: function (context, node) {
+ var popularity = parseFloat(node.popularity)
+ if (!context.customUsage) {
+ throw new BrowserslistError('Custom usage statistics was not provided')
+ }
+ var usage = context.customUsage
+ return Object.keys(usage).reduce(function (result, version) {
+ var percentage = usage[version]
+ if (percentage == null) {
+ return result
+ }
+
+ if (node.sign === '>') {
+ if (percentage > popularity) {
+ result.push(version)
+ }
+ } else if (node.sign === '<') {
+ if (percentage < popularity) {
+ result.push(version)
+ }
+ } else if (node.sign === '<=') {
+ if (percentage <= popularity) {
+ result.push(version)
+ }
+ } else if (percentage >= popularity) {
+ result.push(version)
+ }
+ return result
+ }, [])
+ }
+ },
+ popularity_in_config_stats: {
+ matches: ['sign', 'popularity', 'config'],
+ regexp: /^(>=?|<=?)\s*(\d+|\d+\.\d+|\.\d+)%\s+in\s+(\S+)\s+stats$/,
+ select: function (context, node) {
+ var popularity = parseFloat(node.popularity)
+ var stats = env.loadStat(context, node.config, browserslist.data)
+ if (stats) {
+ context.customUsage = {}
+ for (var browser in stats) {
+ fillUsage(context.customUsage, browser, stats[browser])
+ }
+ }
+ if (!context.customUsage) {
+ throw new BrowserslistError('Custom usage statistics was not provided')
+ }
+ var usage = context.customUsage
+ return Object.keys(usage).reduce(function (result, version) {
+ var percentage = usage[version]
+ if (percentage == null) {
+ return result
+ }
+
+ if (node.sign === '>') {
+ if (percentage > popularity) {
+ result.push(version)
+ }
+ } else if (node.sign === '<') {
+ if (percentage < popularity) {
+ result.push(version)
+ }
+ } else if (node.sign === '<=') {
+ if (percentage <= popularity) {
+ result.push(version)
+ }
+ } else if (percentage >= popularity) {
+ result.push(version)
+ }
+ return result
+ }, [])
+ }
+ },
+ popularity_in_place: {
+ matches: ['sign', 'popularity', 'place'],
+ regexp: /^(>=?|<=?)\s*(\d+|\d+\.\d+|\.\d+)%\s+in\s+((alt-)?\w\w)$/,
+ select: function (context, node) {
+ var popularity = parseFloat(node.popularity)
+ var place = node.place
+ if (place.length === 2) {
+ place = place.toUpperCase()
+ } else {
+ place = place.toLowerCase()
+ }
+ env.loadCountry(browserslist.usage, place, browserslist.data)
+ var usage = browserslist.usage[place]
+ return Object.keys(usage).reduce(function (result, version) {
+ var percentage = usage[version]
+ if (percentage == null) {
+ return result
+ }
+
+ if (node.sign === '>') {
+ if (percentage > popularity) {
+ result.push(version)
+ }
+ } else if (node.sign === '<') {
+ if (percentage < popularity) {
+ result.push(version)
+ }
+ } else if (node.sign === '<=') {
+ if (percentage <= popularity) {
+ result.push(version)
+ }
+ } else if (percentage >= popularity) {
+ result.push(version)
+ }
+ return result
+ }, [])
+ }
+ },
+ cover: {
+ matches: ['coverage'],
+ regexp: /^cover\s+(\d+|\d+\.\d+|\.\d+)%$/i,
+ select: coverQuery
+ },
+ cover_in: {
+ matches: ['coverage', 'place'],
+ regexp: /^cover\s+(\d+|\d+\.\d+|\.\d+)%\s+in\s+(my\s+stats|(alt-)?\w\w)$/i,
+ select: coverQuery
+ },
+ supports: {
+ matches: ['feature'],
+ regexp: /^supports\s+([\w-]+)$/,
+ select: function (context, node) {
+ env.loadFeature(browserslist.cache, node.feature)
+ var features = browserslist.cache[node.feature]
+ return Object.keys(features).reduce(function (result, version) {
+ var flags = features[version]
+ if (flags.indexOf('y') >= 0 || flags.indexOf('a') >= 0) {
+ result.push(version)
+ }
+ return result
+ }, [])
+ }
+ },
+ electron_range: {
+ matches: ['from', 'to'],
+ regexp: /^electron\s+([\d.]+)\s*-\s*([\d.]+)$/i,
+ select: function (context, node) {
+ var fromToUse = normalizeElectron(node.from)
+ var toToUse = normalizeElectron(node.to)
+ var from = parseFloat(node.from)
+ var to = parseFloat(node.to)
+ if (!e2c[fromToUse]) {
+ throw new BrowserslistError('Unknown version ' + from + ' of electron')
+ }
+ if (!e2c[toToUse]) {
+ throw new BrowserslistError('Unknown version ' + to + ' of electron')
+ }
+ return Object.keys(e2c)
+ .filter(function (i) {
+ var parsed = parseFloat(i)
+ return parsed >= from && parsed <= to
+ })
+ .map(function (i) {
+ return 'chrome ' + e2c[i]
+ })
+ }
+ },
+ node_range: {
+ matches: ['from', 'to'],
+ regexp: /^node\s+([\d.]+)\s*-\s*([\d.]+)$/i,
+ select: function (context, node) {
+ return browserslist.nodeVersions
+ .filter(semverFilterLoose('>=', node.from))
+ .filter(semverFilterLoose('<=', node.to))
+ .map(function (v) {
+ return 'node ' + v
+ })
+ }
+ },
+ browser_range: {
+ matches: ['browser', 'from', 'to'],
+ regexp: /^(\w+)\s+([\d.]+)\s*-\s*([\d.]+)$/i,
+ select: function (context, node) {
+ var data = checkName(node.browser, context)
+ var from = parseFloat(normalizeVersion(data, node.from) || node.from)
+ var to = parseFloat(normalizeVersion(data, node.to) || node.to)
+ function filter(v) {
+ var parsed = parseFloat(v)
+ return parsed >= from && parsed <= to
+ }
+ return data.released.filter(filter).map(nameMapper(data.name))
+ }
+ },
+ electron_ray: {
+ matches: ['sign', 'version'],
+ regexp: /^electron\s*(>=?|<=?)\s*([\d.]+)$/i,
+ select: function (context, node) {
+ var versionToUse = normalizeElectron(node.version)
+ return Object.keys(e2c)
+ .filter(generateFilter(node.sign, versionToUse))
+ .map(function (i) {
+ return 'chrome ' + e2c[i]
+ })
+ }
+ },
+ node_ray: {
+ matches: ['sign', 'version'],
+ regexp: /^node\s*(>=?|<=?)\s*([\d.]+)$/i,
+ select: function (context, node) {
+ return browserslist.nodeVersions
+ .filter(generateSemverFilter(node.sign, node.version))
+ .map(function (v) {
+ return 'node ' + v
+ })
+ }
+ },
+ browser_ray: {
+ matches: ['browser', 'sign', 'version'],
+ regexp: /^(\w+)\s*(>=?|<=?)\s*([\d.]+)$/,
+ select: function (context, node) {
+ var version = node.version
+ var data = checkName(node.browser, context)
+ var alias = browserslist.versionAliases[data.name][version]
+ if (alias) version = alias
+ return data.released
+ .filter(generateFilter(node.sign, version))
+ .map(function (v) {
+ return data.name + ' ' + v
+ })
+ }
+ },
+ firefox_esr: {
+ matches: [],
+ regexp: /^(firefox|ff|fx)\s+esr$/i,
+ select: function () {
+ return ['firefox 102']
+ }
+ },
+ opera_mini_all: {
+ matches: [],
+ regexp: /(operamini|op_mini)\s+all/i,
+ select: function () {
+ return ['op_mini all']
+ }
+ },
+ electron_version: {
+ matches: ['version'],
+ regexp: /^electron\s+([\d.]+)$/i,
+ select: function (context, node) {
+ var versionToUse = normalizeElectron(node.version)
+ var chrome = e2c[versionToUse]
+ if (!chrome) {
+ throw new BrowserslistError(
+ 'Unknown version ' + node.version + ' of electron'
+ )
+ }
+ return ['chrome ' + chrome]
+ }
+ },
+ node_major_version: {
+ matches: ['version'],
+ regexp: /^node\s+(\d+)$/i,
+ select: nodeQuery
+ },
+ node_minor_version: {
+ matches: ['version'],
+ regexp: /^node\s+(\d+\.\d+)$/i,
+ select: nodeQuery
+ },
+ node_patch_version: {
+ matches: ['version'],
+ regexp: /^node\s+(\d+\.\d+\.\d+)$/i,
+ select: nodeQuery
+ },
+ current_node: {
+ matches: [],
+ regexp: /^current\s+node$/i,
+ select: function (context) {
+ return [env.currentNode(resolve, context)]
+ }
+ },
+ maintained_node: {
+ matches: [],
+ regexp: /^maintained\s+node\s+versions$/i,
+ select: function (context) {
+ var now = Date.now()
+ var queries = Object.keys(jsEOL)
+ .filter(function (key) {
+ return (
+ now < Date.parse(jsEOL[key].end) &&
+ now > Date.parse(jsEOL[key].start) &&
+ isEolReleased(key)
+ )
+ })
+ .map(function (key) {
+ return 'node ' + key.slice(1)
+ })
+ return resolve(queries, context)
+ }
+ },
+ phantomjs_1_9: {
+ matches: [],
+ regexp: /^phantomjs\s+1.9$/i,
+ select: function () {
+ return ['safari 5']
+ }
+ },
+ phantomjs_2_1: {
+ matches: [],
+ regexp: /^phantomjs\s+2.1$/i,
+ select: function () {
+ return ['safari 6']
+ }
+ },
+ browser_version: {
+ matches: ['browser', 'version'],
+ regexp: /^(\w+)\s+(tp|[\d.]+)$/i,
+ select: function (context, node) {
+ var version = node.version
+ if (/^tp$/i.test(version)) version = 'TP'
+ var data = checkName(node.browser, context)
+ var alias = normalizeVersion(data, version)
+ if (alias) {
+ version = alias
+ } else {
+ if (version.indexOf('.') === -1) {
+ alias = version + '.0'
+ } else {
+ alias = version.replace(/\.0$/, '')
+ }
+ alias = normalizeVersion(data, alias)
+ if (alias) {
+ version = alias
+ } else if (context.ignoreUnknownVersions) {
+ return []
+ } else {
+ throw new BrowserslistError(
+ 'Unknown version ' + version + ' of ' + node.browser
+ )
+ }
+ }
+ return [data.name + ' ' + version]
+ }
+ },
+ browserslist_config: {
+ matches: [],
+ regexp: /^browserslist config$/i,
+ select: function (context) {
+ return browserslist(undefined, context)
+ }
+ },
+ extends: {
+ matches: ['config'],
+ regexp: /^extends (.+)$/i,
+ select: function (context, node) {
+ return resolve(env.loadQueries(context, node.config), context)
+ }
+ },
+ defaults: {
+ matches: [],
+ regexp: /^defaults$/i,
+ select: function (context) {
+ return resolve(browserslist.defaults, context)
+ }
+ },
+ dead: {
+ matches: [],
+ regexp: /^dead$/i,
+ select: function (context) {
+ var dead = [
+ 'Baidu >= 0',
+ 'ie <= 11',
+ 'ie_mob <= 11',
+ 'bb <= 10',
+ 'op_mob <= 12.1',
+ 'samsung 4'
+ ]
+ return resolve(dead, context)
+ }
+ },
+ unknown: {
+ matches: [],
+ regexp: /^(\w+)$/i,
+ select: function (context, node) {
+ if (byName(node.query, context)) {
+ throw new BrowserslistError(
+ 'Specify versions in Browserslist query for browser ' + node.query
+ )
+ } else {
+ throw unknownQuery(node.query)
+ }
+ }
+ }
+}
+
+// Get and convert Can I Use data
+
+;(function () {
+ for (var name in agents) {
+ var browser = agents[name]
+ browserslist.data[name] = {
+ name: name,
+ versions: normalize(agents[name].versions),
+ released: normalize(agents[name].versions.slice(0, -3)),
+ releaseDate: agents[name].release_date
+ }
+ fillUsage(browserslist.usage.global, name, browser.usage_global)
+
+ browserslist.versionAliases[name] = {}
+ for (var i = 0; i < browser.versions.length; i++) {
+ var full = browser.versions[i]
+ if (!full) continue
+
+ if (full.indexOf('-') !== -1) {
+ var interval = full.split('-')
+ for (var j = 0; j < interval.length; j++) {
+ browserslist.versionAliases[name][interval[j]] = full
+ }
+ }
+ }
+ }
+
+ browserslist.versionAliases.op_mob['59'] = '58'
+
+ browserslist.nodeVersions = jsReleases.map(function (release) {
+ return release.version
+ })
+})()
+
+module.exports = browserslist
diff --git a/node_modules/browserslist/node.js b/node_modules/browserslist/node.js
new file mode 100644
index 0000000..0e208d0
--- /dev/null
+++ b/node_modules/browserslist/node.js
@@ -0,0 +1,409 @@
+var feature = require('caniuse-lite/dist/unpacker/feature').default
+var region = require('caniuse-lite/dist/unpacker/region').default
+var path = require('path')
+var fs = require('fs')
+
+var BrowserslistError = require('./error')
+
+var IS_SECTION = /^\s*\[(.+)]\s*$/
+var CONFIG_PATTERN = /^browserslist-config-/
+var SCOPED_CONFIG__PATTERN = /@[^/]+\/browserslist-config(-|$|\/)/
+var TIME_TO_UPDATE_CANIUSE = 6 * 30 * 24 * 60 * 60 * 1000
+var FORMAT =
+ 'Browserslist config should be a string or an array ' +
+ 'of strings with browser queries'
+
+var dataTimeChecked = false
+var filenessCache = {}
+var configCache = {}
+function checkExtend(name) {
+ var use = ' Use `dangerousExtend` option to disable.'
+ if (!CONFIG_PATTERN.test(name) && !SCOPED_CONFIG__PATTERN.test(name)) {
+ throw new BrowserslistError(
+ 'Browserslist config needs `browserslist-config-` prefix. ' + use
+ )
+ }
+ if (name.replace(/^@[^/]+\//, '').indexOf('.') !== -1) {
+ throw new BrowserslistError(
+ '`.` not allowed in Browserslist config name. ' + use
+ )
+ }
+ if (name.indexOf('node_modules') !== -1) {
+ throw new BrowserslistError(
+ '`node_modules` not allowed in Browserslist config.' + use
+ )
+ }
+}
+
+function isFile(file) {
+ if (file in filenessCache) {
+ return filenessCache[file]
+ }
+ var result = fs.existsSync(file) && fs.statSync(file).isFile()
+ if (!process.env.BROWSERSLIST_DISABLE_CACHE) {
+ filenessCache[file] = result
+ }
+ return result
+}
+
+function eachParent(file, callback) {
+ var dir = isFile(file) ? path.dirname(file) : file
+ var loc = path.resolve(dir)
+ do {
+ var result = callback(loc)
+ if (typeof result !== 'undefined') return result
+ } while (loc !== (loc = path.dirname(loc)))
+ return undefined
+}
+
+function check(section) {
+ if (Array.isArray(section)) {
+ for (var i = 0; i < section.length; i++) {
+ if (typeof section[i] !== 'string') {
+ throw new BrowserslistError(FORMAT)
+ }
+ }
+ } else if (typeof section !== 'string') {
+ throw new BrowserslistError(FORMAT)
+ }
+}
+
+function pickEnv(config, opts) {
+ if (typeof config !== 'object') return config
+
+ var name
+ if (typeof opts.env === 'string') {
+ name = opts.env
+ } else if (process.env.BROWSERSLIST_ENV) {
+ name = process.env.BROWSERSLIST_ENV
+ } else if (process.env.NODE_ENV) {
+ name = process.env.NODE_ENV
+ } else {
+ name = 'production'
+ }
+
+ if (opts.throwOnMissing) {
+ if (name && name !== 'defaults' && !config[name]) {
+ throw new BrowserslistError(
+ 'Missing config for Browserslist environment `' + name + '`'
+ )
+ }
+ }
+
+ return config[name] || config.defaults
+}
+
+function parsePackage(file) {
+ var config = JSON.parse(
+ fs
+ .readFileSync(file)
+ .toString()
+ .replace(/^\uFEFF/m, '')
+ )
+ if (config.browserlist && !config.browserslist) {
+ throw new BrowserslistError(
+ '`browserlist` key instead of `browserslist` in ' + file
+ )
+ }
+ var list = config.browserslist
+ if (Array.isArray(list) || typeof list === 'string') {
+ list = { defaults: list }
+ }
+ for (var i in list) {
+ check(list[i])
+ }
+
+ return list
+}
+
+function latestReleaseTime(agents) {
+ var latest = 0
+ for (var name in agents) {
+ var dates = agents[name].releaseDate || {}
+ for (var key in dates) {
+ if (latest < dates[key]) {
+ latest = dates[key]
+ }
+ }
+ }
+ return latest * 1000
+}
+
+function normalizeStats(data, stats) {
+ if (!data) {
+ data = {}
+ }
+ if (stats && 'dataByBrowser' in stats) {
+ stats = stats.dataByBrowser
+ }
+
+ if (typeof stats !== 'object') return undefined
+
+ var normalized = {}
+ for (var i in stats) {
+ var versions = Object.keys(stats[i])
+ if (versions.length === 1 && data[i] && data[i].versions.length === 1) {
+ var normal = data[i].versions[0]
+ normalized[i] = {}
+ normalized[i][normal] = stats[i][versions[0]]
+ } else {
+ normalized[i] = stats[i]
+ }
+ }
+
+ return normalized
+}
+
+function normalizeUsageData(usageData, data) {
+ for (var browser in usageData) {
+ var browserUsage = usageData[browser]
+ // eslint-disable-next-line max-len
+ // https://github.com/browserslist/browserslist/issues/431#issuecomment-565230615
+ // caniuse-db returns { 0: "percentage" } for `and_*` regional stats
+ if ('0' in browserUsage) {
+ var versions = data[browser].versions
+ browserUsage[versions[versions.length - 1]] = browserUsage[0]
+ delete browserUsage[0]
+ }
+ }
+}
+
+module.exports = {
+ loadQueries: function loadQueries(ctx, name) {
+ if (!ctx.dangerousExtend && !process.env.BROWSERSLIST_DANGEROUS_EXTEND) {
+ checkExtend(name)
+ }
+ var queries = require(require.resolve(name, { paths: ['.', ctx.path] }))
+ if (queries) {
+ if (Array.isArray(queries)) {
+ return queries
+ } else if (typeof queries === 'object') {
+ if (!queries.defaults) queries.defaults = []
+ return pickEnv(queries, ctx, name)
+ }
+ }
+ throw new BrowserslistError(
+ '`' +
+ name +
+ '` config exports not an array of queries' +
+ ' or an object of envs'
+ )
+ },
+
+ loadStat: function loadStat(ctx, name, data) {
+ if (!ctx.dangerousExtend && !process.env.BROWSERSLIST_DANGEROUS_EXTEND) {
+ checkExtend(name)
+ }
+ var stats = require(require.resolve(
+ path.join(name, 'browserslist-stats.json'),
+ { paths: ['.'] }
+ ))
+ return normalizeStats(data, stats)
+ },
+
+ getStat: function getStat(opts, data) {
+ var stats
+ if (opts.stats) {
+ stats = opts.stats
+ } else if (process.env.BROWSERSLIST_STATS) {
+ stats = process.env.BROWSERSLIST_STATS
+ } else if (opts.path && path.resolve && fs.existsSync) {
+ stats = eachParent(opts.path, function (dir) {
+ var file = path.join(dir, 'browserslist-stats.json')
+ return isFile(file) ? file : undefined
+ })
+ }
+ if (typeof stats === 'string') {
+ try {
+ stats = JSON.parse(fs.readFileSync(stats))
+ } catch (e) {
+ throw new BrowserslistError("Can't read " + stats)
+ }
+ }
+ return normalizeStats(data, stats)
+ },
+
+ loadConfig: function loadConfig(opts) {
+ if (process.env.BROWSERSLIST) {
+ return process.env.BROWSERSLIST
+ } else if (opts.config || process.env.BROWSERSLIST_CONFIG) {
+ var file = opts.config || process.env.BROWSERSLIST_CONFIG
+ if (path.basename(file) === 'package.json') {
+ return pickEnv(parsePackage(file), opts)
+ } else {
+ return pickEnv(module.exports.readConfig(file), opts)
+ }
+ } else if (opts.path) {
+ return pickEnv(module.exports.findConfig(opts.path), opts)
+ } else {
+ return undefined
+ }
+ },
+
+ loadCountry: function loadCountry(usage, country, data) {
+ var code = country.replace(/[^\w-]/g, '')
+ if (!usage[code]) {
+ var compressed
+ try {
+ compressed = require('caniuse-lite/data/regions/' + code + '.js')
+ } catch (e) {
+ throw new BrowserslistError('Unknown region name `' + code + '`.')
+ }
+ var usageData = region(compressed)
+ normalizeUsageData(usageData, data)
+ usage[country] = {}
+ for (var i in usageData) {
+ for (var j in usageData[i]) {
+ usage[country][i + ' ' + j] = usageData[i][j]
+ }
+ }
+ }
+ },
+
+ loadFeature: function loadFeature(features, name) {
+ name = name.replace(/[^\w-]/g, '')
+ if (features[name]) return
+ var compressed
+ try {
+ compressed = require('caniuse-lite/data/features/' + name + '.js')
+ } catch (e) {
+ throw new BrowserslistError('Unknown feature name `' + name + '`.')
+ }
+ var stats = feature(compressed).stats
+ features[name] = {}
+ for (var i in stats) {
+ for (var j in stats[i]) {
+ features[name][i + ' ' + j] = stats[i][j]
+ }
+ }
+ },
+
+ parseConfig: function parseConfig(string) {
+ var result = { defaults: [] }
+ var sections = ['defaults']
+
+ string
+ .toString()
+ .replace(/#[^\n]*/g, '')
+ .split(/\n|,/)
+ .map(function (line) {
+ return line.trim()
+ })
+ .filter(function (line) {
+ return line !== ''
+ })
+ .forEach(function (line) {
+ if (IS_SECTION.test(line)) {
+ sections = line.match(IS_SECTION)[1].trim().split(' ')
+ sections.forEach(function (section) {
+ if (result[section]) {
+ throw new BrowserslistError(
+ 'Duplicate section ' + section + ' in Browserslist config'
+ )
+ }
+ result[section] = []
+ })
+ } else {
+ sections.forEach(function (section) {
+ result[section].push(line)
+ })
+ }
+ })
+
+ return result
+ },
+
+ readConfig: function readConfig(file) {
+ if (!isFile(file)) {
+ throw new BrowserslistError("Can't read " + file + ' config')
+ }
+ return module.exports.parseConfig(fs.readFileSync(file))
+ },
+
+ findConfig: function findConfig(from) {
+ from = path.resolve(from)
+
+ var passed = []
+ var resolved = eachParent(from, function (dir) {
+ if (dir in configCache) {
+ return configCache[dir]
+ }
+
+ passed.push(dir)
+
+ var config = path.join(dir, 'browserslist')
+ var pkg = path.join(dir, 'package.json')
+ var rc = path.join(dir, '.browserslistrc')
+
+ var pkgBrowserslist
+ if (isFile(pkg)) {
+ try {
+ pkgBrowserslist = parsePackage(pkg)
+ } catch (e) {
+ if (e.name === 'BrowserslistError') throw e
+ console.warn(
+ '[Browserslist] Could not parse ' + pkg + '. Ignoring it.'
+ )
+ }
+ }
+
+ if (isFile(config) && pkgBrowserslist) {
+ throw new BrowserslistError(
+ dir + ' contains both browserslist and package.json with browsers'
+ )
+ } else if (isFile(rc) && pkgBrowserslist) {
+ throw new BrowserslistError(
+ dir + ' contains both .browserslistrc and package.json with browsers'
+ )
+ } else if (isFile(config) && isFile(rc)) {
+ throw new BrowserslistError(
+ dir + ' contains both .browserslistrc and browserslist'
+ )
+ } else if (isFile(config)) {
+ return module.exports.readConfig(config)
+ } else if (isFile(rc)) {
+ return module.exports.readConfig(rc)
+ } else {
+ return pkgBrowserslist
+ }
+ })
+ if (!process.env.BROWSERSLIST_DISABLE_CACHE) {
+ passed.forEach(function (dir) {
+ configCache[dir] = resolved
+ })
+ }
+ return resolved
+ },
+
+ clearCaches: function clearCaches() {
+ dataTimeChecked = false
+ filenessCache = {}
+ configCache = {}
+
+ this.cache = {}
+ },
+
+ oldDataWarning: function oldDataWarning(agentsObj) {
+ if (dataTimeChecked) return
+ dataTimeChecked = true
+ if (process.env.BROWSERSLIST_IGNORE_OLD_DATA) return
+
+ var latest = latestReleaseTime(agentsObj)
+ var halfYearAgo = Date.now() - TIME_TO_UPDATE_CANIUSE
+
+ if (latest !== 0 && latest < halfYearAgo) {
+ console.warn(
+ 'Browserslist: caniuse-lite is outdated. Please run:\n' +
+ ' npx update-browserslist-db@latest\n' +
+ ' Why you should do it regularly: ' +
+ 'https://github.com/browserslist/update-db#readme'
+ )
+ }
+ },
+
+ currentNode: function currentNode() {
+ return 'node ' + process.versions.node
+ },
+
+ env: process.env
+}
diff --git a/node_modules/browserslist/package.json b/node_modules/browserslist/package.json
new file mode 100644
index 0000000..8c0a5db
--- /dev/null
+++ b/node_modules/browserslist/package.json
@@ -0,0 +1,44 @@
+{
+ "name": "browserslist",
+ "version": "4.21.7",
+ "description": "Share target browsers between different front-end tools, like Autoprefixer, Stylelint and babel-env-preset",
+ "keywords": [
+ "caniuse",
+ "browsers",
+ "target"
+ ],
+ "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"
+ }
+ ],
+ "author": "Andrey Sitnik ",
+ "license": "MIT",
+ "repository": "browserslist/browserslist",
+ "dependencies": {
+ "caniuse-lite": "^1.0.30001489",
+ "electron-to-chromium": "^1.4.411",
+ "node-releases": "^2.0.12",
+ "update-browserslist-db": "^1.0.11"
+ },
+ "engines": {
+ "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7"
+ },
+ "bin": {
+ "browserslist": "cli.js"
+ },
+ "types": "./index.d.ts",
+ "browser": {
+ "./node.js": "./browser.js",
+ "path": false
+ }
+}
diff --git a/node_modules/browserslist/parse.js b/node_modules/browserslist/parse.js
new file mode 100644
index 0000000..56b534a
--- /dev/null
+++ b/node_modules/browserslist/parse.js
@@ -0,0 +1,78 @@
+var AND_REGEXP = /^\s+and\s+(.*)/i
+var OR_REGEXP = /^(?:,\s*|\s+or\s+)(.*)/i
+
+function flatten(array) {
+ if (!Array.isArray(array)) return [array]
+ return array.reduce(function (a, b) {
+ return a.concat(flatten(b))
+ }, [])
+}
+
+function find(string, predicate) {
+ for (var n = 1, max = string.length; n <= max; n++) {
+ var parsed = string.substr(-n, n)
+ if (predicate(parsed, n, max)) {
+ return string.slice(0, -n)
+ }
+ }
+ return ''
+}
+
+function matchQuery(all, query) {
+ var node = { query: query }
+ if (query.indexOf('not ') === 0) {
+ node.not = true
+ query = query.slice(4)
+ }
+
+ for (var name in all) {
+ var type = all[name]
+ var match = query.match(type.regexp)
+ if (match) {
+ node.type = name
+ for (var i = 0; i < type.matches.length; i++) {
+ node[type.matches[i]] = match[i + 1]
+ }
+ return node
+ }
+ }
+
+ node.type = 'unknown'
+ return node
+}
+
+function matchBlock(all, string, qs) {
+ var node
+ return find(string, function (parsed, n, max) {
+ if (AND_REGEXP.test(parsed)) {
+ node = matchQuery(all, parsed.match(AND_REGEXP)[1])
+ node.compose = 'and'
+ qs.unshift(node)
+ return true
+ } else if (OR_REGEXP.test(parsed)) {
+ node = matchQuery(all, parsed.match(OR_REGEXP)[1])
+ node.compose = 'or'
+ qs.unshift(node)
+ return true
+ } else if (n === max) {
+ node = matchQuery(all, parsed.trim())
+ node.compose = 'or'
+ qs.unshift(node)
+ return true
+ }
+ return false
+ })
+}
+
+module.exports = function parse(all, queries) {
+ if (!Array.isArray(queries)) queries = [queries]
+ return flatten(
+ queries.map(function (block) {
+ var qs = []
+ do {
+ block = matchBlock(all, block, qs)
+ } while (block)
+ return qs
+ })
+ )
+}
diff --git a/node_modules/caniuse-lite/LICENSE b/node_modules/caniuse-lite/LICENSE
new file mode 100644
index 0000000..06c608d
--- /dev/null
+++ b/node_modules/caniuse-lite/LICENSE
@@ -0,0 +1,395 @@
+Attribution 4.0 International
+
+=======================================================================
+
+Creative Commons Corporation ("Creative Commons") is not a law firm and
+does not provide legal services or legal advice. Distribution of
+Creative Commons public licenses does not create a lawyer-client or
+other relationship. Creative Commons makes its licenses and related
+information available on an "as-is" basis. Creative Commons gives no
+warranties regarding its licenses, any material licensed under their
+terms and conditions, or any related information. Creative Commons
+disclaims all liability for damages resulting from their use to the
+fullest extent possible.
+
+Using Creative Commons Public Licenses
+
+Creative Commons public licenses provide a standard set of terms and
+conditions that creators and other rights holders may use to share
+original works of authorship and other material subject to copyright
+and certain other rights specified in the public license below. The
+following considerations are for informational purposes only, are not
+exhaustive, and do not form part of our licenses.
+
+ Considerations for licensors: Our public licenses are
+ intended for use by those authorized to give the public
+ permission to use material in ways otherwise restricted by
+ copyright and certain other rights. Our licenses are
+ irrevocable. Licensors should read and understand the terms
+ and conditions of the license they choose before applying it.
+ Licensors should also secure all rights necessary before
+ applying our licenses so that the public can reuse the
+ material as expected. Licensors should clearly mark any
+ material not subject to the license. This includes other CC-
+ licensed material, or material used under an exception or
+ limitation to copyright. More considerations for licensors:
+ wiki.creativecommons.org/Considerations_for_licensors
+
+ Considerations for the public: By using one of our public
+ licenses, a licensor grants the public permission to use the
+ licensed material under specified terms and conditions. If
+ the licensor's permission is not necessary for any reason--for
+ example, because of any applicable exception or limitation to
+ copyright--then that use is not regulated by the license. Our
+ licenses grant only permissions under copyright and certain
+ other rights that a licensor has authority to grant. Use of
+ the licensed material may still be restricted for other
+ reasons, including because others have copyright or other
+ rights in the material. A licensor may make special requests,
+ such as asking that all changes be marked or described.
+ Although not required by our licenses, you are encouraged to
+ respect those requests where reasonable. More_considerations
+ for the public:
+ wiki.creativecommons.org/Considerations_for_licensees
+
+=======================================================================
+
+Creative Commons Attribution 4.0 International Public License
+
+By exercising the Licensed Rights (defined below), You accept and agree
+to be bound by the terms and conditions of this Creative Commons
+Attribution 4.0 International Public License ("Public License"). To the
+extent this Public License may be interpreted as a contract, You are
+granted the Licensed Rights in consideration of Your acceptance of
+these terms and conditions, and the Licensor grants You such rights in
+consideration of benefits the Licensor receives from making the
+Licensed Material available under these terms and conditions.
+
+
+Section 1 -- Definitions.
+
+ a. Adapted Material means material subject to Copyright and Similar
+ Rights that is derived from or based upon the Licensed Material
+ and in which the Licensed Material is translated, altered,
+ arranged, transformed, or otherwise modified in a manner requiring
+ permission under the Copyright and Similar Rights held by the
+ Licensor. For purposes of this Public License, where the Licensed
+ Material is a musical work, performance, or sound recording,
+ Adapted Material is always produced where the Licensed Material is
+ synched in timed relation with a moving image.
+
+ b. Adapter's License means the license You apply to Your Copyright
+ and Similar Rights in Your contributions to Adapted Material in
+ accordance with the terms and conditions of this Public License.
+
+ c. Copyright and Similar Rights means copyright and/or similar rights
+ closely related to copyright including, without limitation,
+ performance, broadcast, sound recording, and Sui Generis Database
+ Rights, without regard to how the rights are labeled or
+ categorized. For purposes of this Public License, the rights
+ specified in Section 2(b)(1)-(2) are not Copyright and Similar
+ Rights.
+
+ d. Effective Technological Measures means those measures that, in the
+ absence of proper authority, may not be circumvented under laws
+ fulfilling obligations under Article 11 of the WIPO Copyright
+ Treaty adopted on December 20, 1996, and/or similar international
+ agreements.
+
+ e. Exceptions and Limitations means fair use, fair dealing, and/or
+ any other exception or limitation to Copyright and Similar Rights
+ that applies to Your use of the Licensed Material.
+
+ f. Licensed Material means the artistic or literary work, database,
+ or other material to which the Licensor applied this Public
+ License.
+
+ g. Licensed Rights means the rights granted to You subject to the
+ terms and conditions of this Public License, which are limited to
+ all Copyright and Similar Rights that apply to Your use of the
+ Licensed Material and that the Licensor has authority to license.
+
+ h. Licensor means the individual(s) or entity(ies) granting rights
+ under this Public License.
+
+ i. Share means to provide material to the public by any means or
+ process that requires permission under the Licensed Rights, such
+ as reproduction, public display, public performance, distribution,
+ dissemination, communication, or importation, and to make material
+ available to the public including in ways that members of the
+ public may access the material from a place and at a time
+ individually chosen by them.
+
+ j. Sui Generis Database Rights means rights other than copyright
+ resulting from Directive 96/9/EC of the European Parliament and of
+ the Council of 11 March 1996 on the legal protection of databases,
+ as amended and/or succeeded, as well as other essentially
+ equivalent rights anywhere in the world.
+
+ k. You means the individual or entity exercising the Licensed Rights
+ under this Public License. Your has a corresponding meaning.
+
+
+Section 2 -- Scope.
+
+ a. License grant.
+
+ 1. Subject to the terms and conditions of this Public License,
+ the Licensor hereby grants You a worldwide, royalty-free,
+ non-sublicensable, non-exclusive, irrevocable license to
+ exercise the Licensed Rights in the Licensed Material to:
+
+ a. reproduce and Share the Licensed Material, in whole or
+ in part; and
+
+ b. produce, reproduce, and Share Adapted Material.
+
+ 2. Exceptions and Limitations. For the avoidance of doubt, where
+ Exceptions and Limitations apply to Your use, this Public
+ License does not apply, and You do not need to comply with
+ its terms and conditions.
+
+ 3. Term. The term of this Public License is specified in Section
+ 6(a).
+
+ 4. Media and formats; technical modifications allowed. The
+ Licensor authorizes You to exercise the Licensed Rights in
+ all media and formats whether now known or hereafter created,
+ and to make technical modifications necessary to do so. The
+ Licensor waives and/or agrees not to assert any right or
+ authority to forbid You from making technical modifications
+ necessary to exercise the Licensed Rights, including
+ technical modifications necessary to circumvent Effective
+ Technological Measures. For purposes of this Public License,
+ simply making modifications authorized by this Section 2(a)
+ (4) never produces Adapted Material.
+
+ 5. Downstream recipients.
+
+ a. Offer from the Licensor -- Licensed Material. Every
+ recipient of the Licensed Material automatically
+ receives an offer from the Licensor to exercise the
+ Licensed Rights under the terms and conditions of this
+ Public License.
+
+ b. No downstream restrictions. You may not offer or impose
+ any additional or different terms or conditions on, or
+ apply any Effective Technological Measures to, the
+ Licensed Material if doing so restricts exercise of the
+ Licensed Rights by any recipient of the Licensed
+ Material.
+
+ 6. No endorsement. Nothing in this Public License constitutes or
+ may be construed as permission to assert or imply that You
+ are, or that Your use of the Licensed Material is, connected
+ with, or sponsored, endorsed, or granted official status by,
+ the Licensor or others designated to receive attribution as
+ provided in Section 3(a)(1)(A)(i).
+
+ b. Other rights.
+
+ 1. Moral rights, such as the right of integrity, are not
+ licensed under this Public License, nor are publicity,
+ privacy, and/or other similar personality rights; however, to
+ the extent possible, the Licensor waives and/or agrees not to
+ assert any such rights held by the Licensor to the limited
+ extent necessary to allow You to exercise the Licensed
+ Rights, but not otherwise.
+
+ 2. Patent and trademark rights are not licensed under this
+ Public License.
+
+ 3. To the extent possible, the Licensor waives any right to
+ collect royalties from You for the exercise of the Licensed
+ Rights, whether directly or through a collecting society
+ under any voluntary or waivable statutory or compulsory
+ licensing scheme. In all other cases the Licensor expressly
+ reserves any right to collect such royalties.
+
+
+Section 3 -- License Conditions.
+
+Your exercise of the Licensed Rights is expressly made subject to the
+following conditions.
+
+ a. Attribution.
+
+ 1. If You Share the Licensed Material (including in modified
+ form), You must:
+
+ a. retain the following if it is supplied by the Licensor
+ with the Licensed Material:
+
+ i. identification of the creator(s) of the Licensed
+ Material and any others designated to receive
+ attribution, in any reasonable manner requested by
+ the Licensor (including by pseudonym if
+ designated);
+
+ ii. a copyright notice;
+
+ iii. a notice that refers to this Public License;
+
+ iv. a notice that refers to the disclaimer of
+ warranties;
+
+ v. a URI or hyperlink to the Licensed Material to the
+ extent reasonably practicable;
+
+ b. indicate if You modified the Licensed Material and
+ retain an indication of any previous modifications; and
+
+ c. indicate the Licensed Material is licensed under this
+ Public License, and include the text of, or the URI or
+ hyperlink to, this Public License.
+
+ 2. You may satisfy the conditions in Section 3(a)(1) in any
+ reasonable manner based on the medium, means, and context in
+ which You Share the Licensed Material. For example, it may be
+ reasonable to satisfy the conditions by providing a URI or
+ hyperlink to a resource that includes the required
+ information.
+
+ 3. If requested by the Licensor, You must remove any of the
+ information required by Section 3(a)(1)(A) to the extent
+ reasonably practicable.
+
+ 4. If You Share Adapted Material You produce, the Adapter's
+ License You apply must not prevent recipients of the Adapted
+ Material from complying with this Public License.
+
+
+Section 4 -- Sui Generis Database Rights.
+
+Where the Licensed Rights include Sui Generis Database Rights that
+apply to Your use of the Licensed Material:
+
+ a. for the avoidance of doubt, Section 2(a)(1) grants You the right
+ to extract, reuse, reproduce, and Share all or a substantial
+ portion of the contents of the database;
+
+ b. if You include all or a substantial portion of the database
+ contents in a database in which You have Sui Generis Database
+ Rights, then the database in which You have Sui Generis Database
+ Rights (but not its individual contents) is Adapted Material; and
+
+ c. You must comply with the conditions in Section 3(a) if You Share
+ all or a substantial portion of the contents of the database.
+
+For the avoidance of doubt, this Section 4 supplements and does not
+replace Your obligations under this Public License where the Licensed
+Rights include other Copyright and Similar Rights.
+
+
+Section 5 -- Disclaimer of Warranties and Limitation of Liability.
+
+ a. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE
+ EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS
+ AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF
+ ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS,
+ IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION,
+ WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR
+ PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS,
+ ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT
+ KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT
+ ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU.
+
+ b. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE
+ TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION,
+ NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT,
+ INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES,
+ COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR
+ USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN
+ ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR
+ DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR
+ IN PART, THIS LIMITATION MAY NOT APPLY TO YOU.
+
+ c. The disclaimer of warranties and limitation of liability provided
+ above shall be interpreted in a manner that, to the extent
+ possible, most closely approximates an absolute disclaimer and
+ waiver of all liability.
+
+
+Section 6 -- Term and Termination.
+
+ a. This Public License applies for the term of the Copyright and
+ Similar Rights licensed here. However, if You fail to comply with
+ this Public License, then Your rights under this Public License
+ terminate automatically.
+
+ b. Where Your right to use the Licensed Material has terminated under
+ Section 6(a), it reinstates:
+
+ 1. automatically as of the date the violation is cured, provided
+ it is cured within 30 days of Your discovery of the
+ violation; or
+
+ 2. upon express reinstatement by the Licensor.
+
+ For the avoidance of doubt, this Section 6(b) does not affect any
+ right the Licensor may have to seek remedies for Your violations
+ of this Public License.
+
+ c. For the avoidance of doubt, the Licensor may also offer the
+ Licensed Material under separate terms or conditions or stop
+ distributing the Licensed Material at any time; however, doing so
+ will not terminate this Public License.
+
+ d. Sections 1, 5, 6, 7, and 8 survive termination of this Public
+ License.
+
+
+Section 7 -- Other Terms and Conditions.
+
+ a. The Licensor shall not be bound by any additional or different
+ terms or conditions communicated by You unless expressly agreed.
+
+ b. Any arrangements, understandings, or agreements regarding the
+ Licensed Material not stated herein are separate from and
+ independent of the terms and conditions of this Public License.
+
+
+Section 8 -- Interpretation.
+
+ a. For the avoidance of doubt, this Public License does not, and
+ shall not be interpreted to, reduce, limit, restrict, or impose
+ conditions on any use of the Licensed Material that could lawfully
+ be made without permission under this Public License.
+
+ b. To the extent possible, if any provision of this Public License is
+ deemed unenforceable, it shall be automatically reformed to the
+ minimum extent necessary to make it enforceable. If the provision
+ cannot be reformed, it shall be severed from this Public License
+ without affecting the enforceability of the remaining terms and
+ conditions.
+
+ c. No term or condition of this Public License will be waived and no
+ failure to comply consented to unless expressly agreed to by the
+ Licensor.
+
+ d. Nothing in this Public License constitutes or may be interpreted
+ as a limitation upon, or waiver of, any privileges and immunities
+ that apply to the Licensor or You, including from the legal
+ processes of any jurisdiction or authority.
+
+
+=======================================================================
+
+Creative Commons is not a party to its public
+licenses. Notwithstanding, Creative Commons may elect to apply one of
+its public licenses to material it publishes and in those instances
+will be considered the “Licensor.” The text of the Creative Commons
+public licenses is dedicated to the public domain under the CC0 Public
+Domain Dedication. Except for the limited purpose of indicating that
+material is shared under a Creative Commons public license or as
+otherwise permitted by the Creative Commons policies published at
+creativecommons.org/policies, Creative Commons does not authorize the
+use of the trademark "Creative Commons" or any other trademark or logo
+of Creative Commons without its prior written consent including,
+without limitation, in connection with any unauthorized modifications
+to any of its public licenses or any other arrangements,
+understandings, or agreements concerning use of licensed material. For
+the avoidance of doubt, this paragraph does not form part of the
+public licenses.
+
+Creative Commons may be contacted at creativecommons.org.
diff --git a/node_modules/caniuse-lite/README.md b/node_modules/caniuse-lite/README.md
new file mode 100644
index 0000000..f2c67bc
--- /dev/null
+++ b/node_modules/caniuse-lite/README.md
@@ -0,0 +1,6 @@
+# caniuse-lite
+
+A smaller version of caniuse-db, with only the essentials!
+
+## Docs
+Read full docs **[here](https://github.com/browserslist/caniuse-lite#readme)**.
diff --git a/node_modules/caniuse-lite/data/agents.js b/node_modules/caniuse-lite/data/agents.js
new file mode 100644
index 0000000..df675a0
--- /dev/null
+++ b/node_modules/caniuse-lite/data/agents.js
@@ -0,0 +1 @@
+module.exports={A:{A:{J:0.0131217,E:0.00621152,F:0.0439988,G:0.0527986,A:0.00879976,B:0.36959,GC:0.009298},B:"ms",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","GC","J","E","F","G","A","B","","",""],E:"IE",F:{GC:962323200,J:998870400,E:1161129600,F:1237420800,G:1300060800,A:1346716800,B:1381968000}},B:{A:{C:0.004081,K:0.004267,L:0.004268,H:0.004081,M:0.003702,N:0.004441,O:0.013323,P:0,Q:0.004298,R:0.00944,S:0.004043,T:0.004441,U:0.003861,V:0.003861,W:0.004441,X:0.003943,Y:0.004441,Z:0.003943,a:0.003943,b:0.008882,c:0.004118,d:0.003939,e:0.003943,f:0.003943,g:0.003943,h:0.003929,i:0.003901,m:0.011829,n:0.004441,o:0.004441,p:0.008162,q:0.004081,r:0.004441,s:0.008882,t:0.017764,u:0.031087,v:0.093261,w:0.075497,x:1.38559,y:3.15755,D:0},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","C","K","L","H","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z","a","b","c","d","e","f","g","h","i","m","n","o","p","q","r","s","t","u","v","w","x","y","D","","",""],E:"Edge",F:{C:1438128000,K:1447286400,L:1470096000,H:1491868800,M:1508198400,N:1525046400,O:1542067200,P:1579046400,Q:1581033600,R:1586736000,S:1590019200,T:1594857600,U:1598486400,V:1602201600,W:1605830400,X:1611360000,Y:1614816000,Z:1618358400,a:1622073600,b:1626912000,c:1630627200,d:1632441600,e:1634774400,f:1637539200,g:1641427200,h:1643932800,i:1646265600,m:1649635200,n:1651190400,o:1653955200,p:1655942400,q:1659657600,r:1661990400,s:1664755200,t:1666915200,u:1670198400,v:1673481600,w:1675900800,x:1678665600,y:1680825600,D:1683158400},D:{C:"ms",K:"ms",L:"ms",H:"ms",M:"ms",N:"ms",O:"ms"}},C:{A:{"0":0.004443,"1":0.013698,"2":0.004161,"3":0.008786,"4":0.004118,"5":0.004317,"6":0.004393,"7":0.004418,"8":0.008834,"9":0.008322,HC:0.004118,wB:0.004271,I:0.011703,z:0.004879,J:0.020136,E:0.005725,F:0.004525,G:0.00533,A:0.004283,B:0.008882,C:0.004471,K:0.004486,L:0.00453,H:0.008322,M:0.004417,N:0.004425,O:0.004161,j:0.004283,k:0.008322,AB:0.008928,BB:0.004471,CB:0.009284,DB:0.004707,EB:0.009076,FB:0.004081,GB:0.004783,HB:0.003929,IB:0.004783,JB:0.00487,KB:0.005029,LB:0.0047,MB:0.022205,NB:0.004441,OB:0.003867,PB:0.004525,QB:0.004293,RB:0.004081,SB:0.004538,TB:0.008282,UB:0.011601,VB:0.039969,WB:0.011601,XB:0.004441,YB:0.004441,ZB:0.004441,aB:0.011601,bB:0.003939,xB:0.004441,cB:0.003929,yB:0.004356,dB:0.004425,eB:0.008322,fB:0.00415,gB:0.004267,hB:0.003801,iB:0.004267,jB:0.004081,kB:0.00415,lB:0.004293,mB:0.004425,nB:0.013323,l:0.00415,oB:0.00415,pB:0.004318,qB:0.004356,rB:0.003974,sB:0.031087,P:0.004081,Q:0.004081,R:0.004081,zB:0.003861,S:0.004441,T:0.003929,U:0.004268,V:0.003801,W:0.008882,X:0.004441,Y:0.003943,Z:0.003943,a:0.008882,b:0.003801,c:0.007722,d:0.017764,e:0.003773,f:0.007886,g:0.003901,h:0.003901,i:0.004081,m:0.003861,n:0.004081,o:0.097702,p:0.017764,q:0.004441,r:0.008882,s:0.008882,t:0.008882,u:0.013323,v:0.022205,w:0.048851,x:1.00367,y:0.905964,D:0.008882,"0B":0,"1B":0,IC:0.008786,JC:0.00487},B:"moz",C:["HC","wB","IC","JC","I","z","J","E","F","G","A","B","C","K","L","H","M","N","O","0","j","k","1","2","3","4","5","6","7","8","9","AB","BB","CB","DB","EB","FB","GB","HB","IB","JB","KB","LB","MB","NB","OB","PB","QB","RB","SB","TB","UB","VB","WB","XB","YB","ZB","aB","bB","xB","cB","yB","dB","eB","fB","gB","hB","iB","jB","kB","lB","mB","nB","l","oB","pB","qB","rB","sB","P","Q","R","zB","S","T","U","V","W","X","Y","Z","a","b","c","d","e","f","g","h","i","m","n","o","p","q","r","s","t","u","v","w","x","y","D","0B","1B",""],E:"Firefox",F:{"0":1357603200,"1":1368489600,"2":1372118400,"3":1375747200,"4":1379376000,"5":1386633600,"6":1391472000,"7":1395100800,"8":1398729600,"9":1402358400,HC:1161648000,wB:1213660800,IC:1246320000,JC:1264032000,I:1300752000,z:1308614400,J:1313452800,E:1317081600,F:1317081600,G:1320710400,A:1324339200,B:1327968000,C:1331596800,K:1335225600,L:1338854400,H:1342483200,M:1346112000,N:1349740800,O:1353628800,j:1361232000,k:1364860800,AB:1405987200,BB:1409616000,CB:1413244800,DB:1417392000,EB:1421107200,FB:1424736000,GB:1428278400,HB:1431475200,IB:1435881600,JB:1439251200,KB:1442880000,LB:1446508800,MB:1450137600,NB:1453852800,OB:1457395200,PB:1461628800,QB:1465257600,RB:1470096000,SB:1474329600,TB:1479168000,UB:1485216000,VB:1488844800,WB:1492560000,XB:1497312000,YB:1502150400,ZB:1506556800,aB:1510617600,bB:1516665600,xB:1520985600,cB:1525824000,yB:1529971200,dB:1536105600,eB:1540252800,fB:1544486400,gB:1548720000,hB:1552953600,iB:1558396800,jB:1562630400,kB:1567468800,lB:1571788800,mB:1575331200,nB:1578355200,l:1581379200,oB:1583798400,pB:1586304000,qB:1588636800,rB:1591056000,sB:1593475200,P:1595894400,Q:1598313600,R:1600732800,zB:1603152000,S:1605571200,T:1607990400,U:1611619200,V:1614038400,W:1616457600,X:1618790400,Y:1622505600,Z:1626134400,a:1628553600,b:1630972800,c:1633392000,d:1635811200,e:1638835200,f:1641859200,g:1644364800,h:1646697600,i:1649116800,m:1651536000,n:1653955200,o:1656374400,p:1658793600,q:1661212800,r:1663632000,s:1666051200,t:1668470400,u:1670889600,v:1673913600,w:1676332800,x:1678752000,y:1681171200,D:1683590400,"0B":null,"1B":null}},D:{A:{"0":0.008322,"1":0.003901,"2":0.008786,"3":0.003939,"4":0.004461,"5":0.004141,"6":0.004326,"7":0.0047,"8":0.004538,"9":0.008322,I:0.004706,z:0.004879,J:0.004879,E:0.005591,F:0.005591,G:0.005591,A:0.004534,B:0.004464,C:0.010424,K:0.0083,L:0.004706,H:0.015087,M:0.004393,N:0.004393,O:0.008652,j:0.004393,k:0.004317,AB:0.008596,BB:0.004566,CB:0.004118,DB:0.008882,EB:0.004441,FB:0.004335,GB:0.004464,HB:0.017764,IB:0.003867,JB:0.013323,KB:0.004441,LB:0.003974,MB:0.008882,NB:0.008882,OB:0.013323,PB:0.003867,QB:0.008882,RB:0.017764,SB:0.035528,TB:0.004441,UB:0.004081,VB:0.004441,WB:0.008882,XB:0.003867,YB:0.004441,ZB:0.066615,aB:0.004081,bB:0.004441,xB:0.003773,cB:0.013323,yB:0.008882,dB:0.003773,eB:0.004441,fB:0.003943,gB:0.008882,hB:0.031087,iB:0.008882,jB:0.013323,kB:0.039969,lB:0.022205,mB:0.017764,nB:0.026646,l:0.008882,oB:0.031087,pB:0.04441,qB:0.04441,rB:0.017764,sB:0.026646,P:0.22205,Q:0.039969,R:0.04441,S:0.137671,T:0.035528,U:0.071056,V:0.057733,W:0.093261,X:0.026646,Y:0.035528,Z:0.04441,a:0.084379,b:0.048851,c:0.137671,d:0.066615,e:0.017764,f:0.035528,g:0.048851,h:0.039969,i:0.057733,m:0.048851,n:0.039969,o:0.057733,p:0.270901,q:0.057733,r:0.08882,s:0.071056,t:0.093261,u:0.248696,v:2.10947,w:0.475187,x:8.75321,y:9.67694,D:0.022205,"0B":0.013323,"1B":0,KC:0},B:"webkit",C:["","","","","","I","z","J","E","F","G","A","B","C","K","L","H","M","N","O","0","j","k","1","2","3","4","5","6","7","8","9","AB","BB","CB","DB","EB","FB","GB","HB","IB","JB","KB","LB","MB","NB","OB","PB","QB","RB","SB","TB","UB","VB","WB","XB","YB","ZB","aB","bB","xB","cB","yB","dB","eB","fB","gB","hB","iB","jB","kB","lB","mB","nB","l","oB","pB","qB","rB","sB","P","Q","R","S","T","U","V","W","X","Y","Z","a","b","c","d","e","f","g","h","i","m","n","o","p","q","r","s","t","u","v","w","x","y","D","0B","1B","KC"],E:"Chrome",F:{"0":1332892800,"1":1343692800,"2":1348531200,"3":1352246400,"4":1357862400,"5":1361404800,"6":1364428800,"7":1369094400,"8":1374105600,"9":1376956800,I:1264377600,z:1274745600,J:1283385600,E:1287619200,F:1291248000,G:1296777600,A:1299542400,B:1303862400,C:1307404800,K:1312243200,L:1316131200,H:1316131200,M:1319500800,N:1323734400,O:1328659200,j:1337040000,k:1340668800,AB:1384214400,BB:1389657600,CB:1392940800,DB:1397001600,EB:1400544000,FB:1405468800,GB:1409011200,HB:1412640000,IB:1416268800,JB:1421798400,KB:1425513600,LB:1429401600,MB:1432080000,NB:1437523200,OB:1441152000,PB:1444780800,QB:1449014400,RB:1453248000,SB:1456963200,TB:1460592000,UB:1464134400,VB:1469059200,WB:1472601600,XB:1476230400,YB:1480550400,ZB:1485302400,aB:1489017600,bB:1492560000,xB:1496707200,cB:1500940800,yB:1504569600,dB:1508198400,eB:1512518400,fB:1516752000,gB:1520294400,hB:1523923200,iB:1527552000,jB:1532390400,kB:1536019200,lB:1539648000,mB:1543968000,nB:1548720000,l:1552348800,oB:1555977600,pB:1559606400,qB:1564444800,rB:1568073600,sB:1571702400,P:1575936000,Q:1580860800,R:1586304000,S:1589846400,T:1594684800,U:1598313600,V:1601942400,W:1605571200,X:1611014400,Y:1614556800,Z:1618272000,a:1621987200,b:1626739200,c:1630368000,d:1632268800,e:1634601600,f:1637020800,g:1641340800,h:1643673600,i:1646092800,m:1648512000,n:1650931200,o:1653350400,p:1655769600,q:1659398400,r:1661817600,s:1664236800,t:1666656000,u:1669680000,v:1673308800,w:1675728000,x:1678147200,y:1680566400,D:1682985600,"0B":null,"1B":null,KC:null}},E:{A:{I:0,z:0.008322,J:0.004656,E:0.004465,F:0.003974,G:0.003929,A:0.004425,B:0.004318,C:0.003801,K:0.022205,L:0.119907,H:0.026646,LC:0,"2B":0.008692,MC:0.008882,NC:0.00456,OC:0.004283,PC:0.048851,"3B":0.007802,tB:0.008882,uB:0.039969,"4B":0.186522,QC:0.328634,RC:0.048851,"5B":0.04441,"6B":0.111025,"7B":0.195404,"8B":0.830467,vB:0.08882,"9B":0.279783,AC:0.408572,BC:1.63429,CC:0.688355,DC:0.013323,SC:0,TC:0},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","LC","2B","I","z","MC","J","NC","E","OC","F","G","PC","A","3B","B","tB","C","uB","K","4B","L","QC","H","RC","5B","6B","7B","8B","vB","9B","AC","BC","CC","DC","SC","TC",""],E:"Safari",F:{LC:1205798400,"2B":1226534400,I:1244419200,z:1275868800,MC:1311120000,J:1343174400,NC:1382400000,E:1382400000,OC:1410998400,F:1413417600,G:1443657600,PC:1458518400,A:1474329600,"3B":1490572800,B:1505779200,tB:1522281600,C:1537142400,uB:1553472000,K:1568851200,"4B":1585008000,L:1600214400,QC:1619395200,H:1632096000,RC:1635292800,"5B":1639353600,"6B":1647216000,"7B":1652745600,"8B":1658275200,vB:1662940800,"9B":1666569600,AC:1670889600,BC:1674432000,CC:1679875200,DC:1684368000,SC:null,TC:null}},F:{A:{"0":0.006015,"1":0.006597,"2":0.013434,"3":0.006702,"4":0.006015,"5":0.005595,"6":0.004393,"7":0.008882,"8":0.004879,"9":0.004879,G:0.0082,B:0.016581,C:0.004317,H:0.00685,M:0.00685,N:0.00685,O:0.005014,j:0.004879,k:0.006597,AB:0.004441,BB:0.005152,CB:0.005014,DB:0.009758,EB:0.004879,FB:0.004441,GB:0.004283,HB:0.004367,IB:0.004534,JB:0.004441,KB:0.004227,LB:0.004418,MB:0.004161,NB:0.004227,OB:0.004725,PB:0.013323,QB:0.008942,RB:0.004707,SB:0.004827,TB:0.004707,UB:0.004707,VB:0.004326,WB:0.008922,XB:0.014349,YB:0.004425,ZB:0.00472,aB:0.004425,bB:0.004425,cB:0.00472,dB:0.004532,eB:0.004566,fB:0.02283,gB:0.00867,hB:0.004656,iB:0.004642,jB:0.003929,kB:0.00944,lB:0.004293,mB:0.003929,nB:0.004298,l:0.096692,oB:0.008162,pB:0.004141,qB:0.004257,rB:0.003939,sB:0.008236,P:0.003855,Q:0.003939,R:0.008514,zB:0.003939,S:0.003939,T:0.003702,U:0.004441,V:0.003855,W:0.003855,X:0.003929,Y:0.003861,Z:0.011703,a:0.007546,b:0.011829,c:0.069498,d:0.004441,e:0.066615,f:0.315311,g:0.817144,h:0.031087,i:0,UC:0.00685,VC:0,WC:0.008392,XC:0.004706,tB:0.006229,EC:0.004879,YC:0.008786,uB:0.00472},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","G","UC","VC","WC","XC","B","tB","EC","YC","C","uB","H","M","N","O","0","j","k","1","2","3","4","5","6","7","8","9","AB","BB","CB","DB","EB","FB","GB","HB","IB","JB","KB","LB","MB","NB","OB","PB","QB","RB","SB","TB","UB","VB","WB","XB","YB","ZB","aB","bB","cB","dB","eB","fB","gB","hB","iB","jB","kB","lB","mB","nB","l","oB","pB","qB","rB","sB","P","Q","R","zB","S","T","U","V","W","X","Y","Z","a","b","c","d","e","f","g","h","i","","",""],E:"Opera",F:{"0":1390867200,"1":1401753600,"2":1405987200,"3":1409616000,"4":1413331200,"5":1417132800,"6":1422316800,"7":1425945600,"8":1430179200,"9":1433808000,G:1150761600,UC:1223424000,VC:1251763200,WC:1267488000,XC:1277942400,B:1292457600,tB:1302566400,EC:1309219200,YC:1323129600,C:1323129600,uB:1352073600,H:1372723200,M:1377561600,N:1381104000,O:1386288000,j:1393891200,k:1399334400,AB:1438646400,BB:1442448000,CB:1445904000,DB:1449100800,EB:1454371200,FB:1457308800,GB:1462320000,HB:1465344000,IB:1470096000,JB:1474329600,KB:1477267200,LB:1481587200,MB:1486425600,NB:1490054400,OB:1494374400,PB:1498003200,QB:1502236800,RB:1506470400,SB:1510099200,TB:1515024000,UB:1517961600,VB:1521676800,WB:1525910400,XB:1530144000,YB:1534982400,ZB:1537833600,aB:1543363200,bB:1548201600,cB:1554768000,dB:1561593600,eB:1566259200,fB:1570406400,gB:1573689600,hB:1578441600,iB:1583971200,jB:1587513600,kB:1592956800,lB:1595894400,mB:1600128000,nB:1603238400,l:1613520000,oB:1612224000,pB:1616544000,qB:1619568000,rB:1623715200,sB:1627948800,P:1631577600,Q:1633392000,R:1635984000,zB:1638403200,S:1642550400,T:1644969600,U:1647993600,V:1650412800,W:1652745600,X:1654646400,Y:1657152000,Z:1660780800,a:1663113600,b:1668816000,c:1668643200,d:1671062400,e:1675209600,f:1677024000,g:1679529600,h:1681948800,i:1684195200},D:{G:"o",B:"o",C:"o",UC:"o",VC:"o",WC:"o",XC:"o",tB:"o",EC:"o",YC:"o",uB:"o"}},G:{A:{F:0.00318601,"2B":0,ZC:0,FC:0.00318601,aC:0.00477902,bC:0.00637202,cC:0.0175231,dC:0.0254881,eC:0.012744,fC:0.0541622,gC:0.00318601,hC:0.0684992,iC:0.0207091,jC:0.0223021,kC:0.0191161,lC:0.358426,mC:0.011151,nC:0.0207091,oC:0.0302671,pC:0.0908013,qC:0.237358,rC:0.430112,sC:0.136998,"5B":0.167266,"6B":0.191161,"7B":0.30745,"8B":0.831549,vB:0.933501,"9B":1.93709,AC:1.14696,BC:5.44011,CC:2.42455,DC:0.0525692},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","2B","ZC","FC","aC","bC","cC","F","dC","eC","fC","gC","hC","iC","jC","kC","lC","mC","nC","oC","pC","qC","rC","sC","5B","6B","7B","8B","vB","9B","AC","BC","CC","DC","","",""],E:"Safari on iOS",F:{"2B":1270252800,ZC:1283904000,FC:1299628800,aC:1331078400,bC:1359331200,cC:1394409600,F:1410912000,dC:1413763200,eC:1442361600,fC:1458518400,gC:1473724800,hC:1490572800,iC:1505779200,jC:1522281600,kC:1537142400,lC:1553472000,mC:1568851200,nC:1572220800,oC:1580169600,pC:1585008000,qC:1600214400,rC:1619395200,sC:1632096000,"5B":1639353600,"6B":1647216000,"7B":1652659200,"8B":1658275200,vB:1662940800,"9B":1666569600,AC:1670889600,BC:1674432000,CC:1679875200,DC:1684368000}},H:{A:{tC:0.994689},B:"o",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","tC","","",""],E:"Opera Mini",F:{tC:1426464000}},I:{A:{wB:0,I:0.0285433,D:0,uC:0,vC:0.00951444,wC:0,xC:0.0190289,FC:0.0951444,yC:0,zC:0.34252},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","uC","vC","wC","wB","I","xC","FC","yC","zC","D","","",""],E:"Android Browser",F:{uC:1256515200,vC:1274313600,wC:1291593600,wB:1298332800,I:1318896000,xC:1341792000,FC:1374624000,yC:1386547200,zC:1401667200,D:1682985600}},J:{A:{E:0,A:0},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","E","A","","",""],E:"Blackberry Browser",F:{E:1325376000,A:1359504000}},K:{A:{A:0,B:0,C:0,l:0.0111391,tB:0,EC:0,uB:0},B:"o",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","A","B","tB","EC","C","uB","l","","",""],E:"Opera Mobile",F:{A:1287100800,B:1300752000,tB:1314835200,EC:1318291200,C:1330300800,uB:1349740800,l:1673827200},D:{l:"webkit"}},L:{A:{D:39.6882},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","D","","",""],E:"Chrome for Android",F:{D:1682985600}},M:{A:{D:0.289068},B:"moz",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","D","","",""],E:"Firefox for Android",F:{D:1683590400}},N:{A:{A:0.0115934,B:0.022664},B:"ms",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","A","B","","",""],E:"IE Mobile",F:{A:1340150400,B:1353456000}},O:{A:{"0C":0.950589},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0C","","",""],E:"UC Browser for Android",F:{"0C":1634688000},D:{"0C":"webkit"}},P:{A:{I:0.191027,j:2.06946,k:0,"1C":0.0103543,"2C":0.010304,"3C":0.0530632,"4C":0.0103584,"5C":0.0104443,"3B":0.0105043,"6C":0.0212253,"7C":0.0103982,"8C":0.0212253,"9C":0.0106126,AD:0.0106126,vB:0.0530632,BD:0.0530632,CD:0.0530632,DD:0.148577},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","I","1C","2C","3C","4C","5C","3B","6C","7C","8C","9C","AD","vB","BD","CD","DD","j","k","","",""],E:"Samsung Internet",F:{I:1461024000,"1C":1481846400,"2C":1509408000,"3C":1528329600,"4C":1546128000,"5C":1554163200,"3B":1567900800,"6C":1582588800,"7C":1593475200,"8C":1605657600,"9C":1618531200,AD:1629072000,vB:1640736000,BD:1651708800,CD:1659657600,DD:1667260800,j:1677369600,k:1684454400}},Q:{A:{"4B":0.127857},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","4B","","",""],E:"QQ Browser",F:{"4B":1663718400}},R:{A:{ED:0},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","ED","","",""],E:"Baidu Browser",F:{ED:1663027200}},S:{A:{FD:0.066708,GD:0},B:"moz",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","FD","GD","","",""],E:"KaiOS Browser",F:{FD:1527811200,GD:1631664000}}};
diff --git a/node_modules/caniuse-lite/data/browserVersions.js b/node_modules/caniuse-lite/data/browserVersions.js
new file mode 100644
index 0000000..0759e01
--- /dev/null
+++ b/node_modules/caniuse-lite/data/browserVersions.js
@@ -0,0 +1 @@
+module.exports={"0":"19","1":"22","2":"23","3":"24","4":"25","5":"26","6":"27","7":"28","8":"29","9":"30",A:"10",B:"11",C:"12",D:"113",E:"7",F:"8",G:"9",H:"15",I:"4",J:"6",K:"13",L:"14",M:"16",N:"17",O:"18",P:"79",Q:"80",R:"81",S:"83",T:"84",U:"85",V:"86",W:"87",X:"88",Y:"89",Z:"90",a:"91",b:"92",c:"93",d:"94",e:"95",f:"96",g:"97",h:"98",i:"99",j:"20",k:"21",l:"73",m:"100",n:"101",o:"102",p:"103",q:"104",r:"105",s:"106",t:"107",u:"108",v:"109",w:"110",x:"111",y:"112",z:"5",AB:"31",BB:"32",CB:"33",DB:"34",EB:"35",FB:"36",GB:"37",HB:"38",IB:"39",JB:"40",KB:"41",LB:"42",MB:"43",NB:"44",OB:"45",PB:"46",QB:"47",RB:"48",SB:"49",TB:"50",UB:"51",VB:"52",WB:"53",XB:"54",YB:"55",ZB:"56",aB:"57",bB:"58",cB:"60",dB:"62",eB:"63",fB:"64",gB:"65",hB:"66",iB:"67",jB:"68",kB:"69",lB:"70",mB:"71",nB:"72",oB:"74",pB:"75",qB:"76",rB:"77",sB:"78",tB:"11.1",uB:"12.1",vB:"16.0",wB:"3",xB:"59",yB:"61",zB:"82","0B":"114","1B":"115","2B":"3.2","3B":"10.1","4B":"13.1","5B":"15.2-15.3","6B":"15.4","7B":"15.5","8B":"15.6","9B":"16.1",AC:"16.2",BC:"16.3",CC:"16.4",DC:"16.5",EC:"11.5",FC:"4.2-4.3",GC:"5.5",HC:"2",IC:"3.5",JC:"3.6",KC:"116",LC:"3.1",MC:"5.1",NC:"6.1",OC:"7.1",PC:"9.1",QC:"14.1",RC:"15.1",SC:"16.6",TC:"TP",UC:"9.5-9.6",VC:"10.0-10.1",WC:"10.5",XC:"10.6",YC:"11.6",ZC:"4.0-4.1",aC:"5.0-5.1",bC:"6.0-6.1",cC:"7.0-7.1",dC:"8.1-8.4",eC:"9.0-9.2",fC:"9.3",gC:"10.0-10.2",hC:"10.3",iC:"11.0-11.2",jC:"11.3-11.4",kC:"12.0-12.1",lC:"12.2-12.5",mC:"13.0-13.1",nC:"13.2",oC:"13.3",pC:"13.4-13.7",qC:"14.0-14.4",rC:"14.5-14.8",sC:"15.0-15.1",tC:"all",uC:"2.1",vC:"2.2",wC:"2.3",xC:"4.1",yC:"4.4",zC:"4.4.3-4.4.4","0C":"13.4","1C":"5.0-5.4","2C":"6.2-6.4","3C":"7.2-7.4","4C":"8.2","5C":"9.2","6C":"11.1-11.2","7C":"12.0","8C":"13.0","9C":"14.0",AD:"15.0",BD:"17.0",CD:"18.0",DD:"19.0",ED:"13.18",FD:"2.5",GD:"3.0-3.1"};
diff --git a/node_modules/caniuse-lite/data/browsers.js b/node_modules/caniuse-lite/data/browsers.js
new file mode 100644
index 0000000..04fbb50
--- /dev/null
+++ b/node_modules/caniuse-lite/data/browsers.js
@@ -0,0 +1 @@
+module.exports={A:"ie",B:"edge",C:"firefox",D:"chrome",E:"safari",F:"opera",G:"ios_saf",H:"op_mini",I:"android",J:"bb",K:"op_mob",L:"and_chr",M:"and_ff",N:"ie_mob",O:"and_uc",P:"samsung",Q:"and_qq",R:"baidu",S:"kaios"};
diff --git a/node_modules/caniuse-lite/data/features.js b/node_modules/caniuse-lite/data/features.js
new file mode 100644
index 0000000..f7404b3
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features.js
@@ -0,0 +1 @@
+module.exports={"aac":require("./features/aac"),"abortcontroller":require("./features/abortcontroller"),"ac3-ec3":require("./features/ac3-ec3"),"accelerometer":require("./features/accelerometer"),"addeventlistener":require("./features/addeventlistener"),"alternate-stylesheet":require("./features/alternate-stylesheet"),"ambient-light":require("./features/ambient-light"),"apng":require("./features/apng"),"array-find-index":require("./features/array-find-index"),"array-find":require("./features/array-find"),"array-flat":require("./features/array-flat"),"array-includes":require("./features/array-includes"),"arrow-functions":require("./features/arrow-functions"),"asmjs":require("./features/asmjs"),"async-clipboard":require("./features/async-clipboard"),"async-functions":require("./features/async-functions"),"atob-btoa":require("./features/atob-btoa"),"audio-api":require("./features/audio-api"),"audio":require("./features/audio"),"audiotracks":require("./features/audiotracks"),"autofocus":require("./features/autofocus"),"auxclick":require("./features/auxclick"),"av1":require("./features/av1"),"avif":require("./features/avif"),"background-attachment":require("./features/background-attachment"),"background-clip-text":require("./features/background-clip-text"),"background-img-opts":require("./features/background-img-opts"),"background-position-x-y":require("./features/background-position-x-y"),"background-repeat-round-space":require("./features/background-repeat-round-space"),"background-sync":require("./features/background-sync"),"battery-status":require("./features/battery-status"),"beacon":require("./features/beacon"),"beforeafterprint":require("./features/beforeafterprint"),"bigint":require("./features/bigint"),"blobbuilder":require("./features/blobbuilder"),"bloburls":require("./features/bloburls"),"border-image":require("./features/border-image"),"border-radius":require("./features/border-radius"),"broadcastchannel":require("./features/broadcastchannel"),"brotli":require("./features/brotli"),"calc":require("./features/calc"),"canvas-blending":require("./features/canvas-blending"),"canvas-text":require("./features/canvas-text"),"canvas":require("./features/canvas"),"ch-unit":require("./features/ch-unit"),"chacha20-poly1305":require("./features/chacha20-poly1305"),"channel-messaging":require("./features/channel-messaging"),"childnode-remove":require("./features/childnode-remove"),"classlist":require("./features/classlist"),"client-hints-dpr-width-viewport":require("./features/client-hints-dpr-width-viewport"),"clipboard":require("./features/clipboard"),"colr-v1":require("./features/colr-v1"),"colr":require("./features/colr"),"comparedocumentposition":require("./features/comparedocumentposition"),"console-basic":require("./features/console-basic"),"console-time":require("./features/console-time"),"const":require("./features/const"),"constraint-validation":require("./features/constraint-validation"),"contenteditable":require("./features/contenteditable"),"contentsecuritypolicy":require("./features/contentsecuritypolicy"),"contentsecuritypolicy2":require("./features/contentsecuritypolicy2"),"cookie-store-api":require("./features/cookie-store-api"),"cors":require("./features/cors"),"createimagebitmap":require("./features/createimagebitmap"),"credential-management":require("./features/credential-management"),"cryptography":require("./features/cryptography"),"css-all":require("./features/css-all"),"css-animation":require("./features/css-animation"),"css-any-link":require("./features/css-any-link"),"css-appearance":require("./features/css-appearance"),"css-at-counter-style":require("./features/css-at-counter-style"),"css-autofill":require("./features/css-autofill"),"css-backdrop-filter":require("./features/css-backdrop-filter"),"css-background-offsets":require("./features/css-background-offsets"),"css-backgroundblendmode":require("./features/css-backgroundblendmode"),"css-boxdecorationbreak":require("./features/css-boxdecorationbreak"),"css-boxshadow":require("./features/css-boxshadow"),"css-canvas":require("./features/css-canvas"),"css-caret-color":require("./features/css-caret-color"),"css-cascade-layers":require("./features/css-cascade-layers"),"css-case-insensitive":require("./features/css-case-insensitive"),"css-clip-path":require("./features/css-clip-path"),"css-color-adjust":require("./features/css-color-adjust"),"css-color-function":require("./features/css-color-function"),"css-conic-gradients":require("./features/css-conic-gradients"),"css-container-queries-style":require("./features/css-container-queries-style"),"css-container-queries":require("./features/css-container-queries"),"css-container-query-units":require("./features/css-container-query-units"),"css-containment":require("./features/css-containment"),"css-content-visibility":require("./features/css-content-visibility"),"css-counters":require("./features/css-counters"),"css-crisp-edges":require("./features/css-crisp-edges"),"css-cross-fade":require("./features/css-cross-fade"),"css-default-pseudo":require("./features/css-default-pseudo"),"css-descendant-gtgt":require("./features/css-descendant-gtgt"),"css-deviceadaptation":require("./features/css-deviceadaptation"),"css-dir-pseudo":require("./features/css-dir-pseudo"),"css-display-contents":require("./features/css-display-contents"),"css-element-function":require("./features/css-element-function"),"css-env-function":require("./features/css-env-function"),"css-exclusions":require("./features/css-exclusions"),"css-featurequeries":require("./features/css-featurequeries"),"css-file-selector-button":require("./features/css-file-selector-button"),"css-filter-function":require("./features/css-filter-function"),"css-filters":require("./features/css-filters"),"css-first-letter":require("./features/css-first-letter"),"css-first-line":require("./features/css-first-line"),"css-fixed":require("./features/css-fixed"),"css-focus-visible":require("./features/css-focus-visible"),"css-focus-within":require("./features/css-focus-within"),"css-font-palette":require("./features/css-font-palette"),"css-font-rendering-controls":require("./features/css-font-rendering-controls"),"css-font-stretch":require("./features/css-font-stretch"),"css-gencontent":require("./features/css-gencontent"),"css-gradients":require("./features/css-gradients"),"css-grid-animation":require("./features/css-grid-animation"),"css-grid":require("./features/css-grid"),"css-hanging-punctuation":require("./features/css-hanging-punctuation"),"css-has":require("./features/css-has"),"css-hyphens":require("./features/css-hyphens"),"css-image-orientation":require("./features/css-image-orientation"),"css-image-set":require("./features/css-image-set"),"css-in-out-of-range":require("./features/css-in-out-of-range"),"css-indeterminate-pseudo":require("./features/css-indeterminate-pseudo"),"css-initial-letter":require("./features/css-initial-letter"),"css-initial-value":require("./features/css-initial-value"),"css-lch-lab":require("./features/css-lch-lab"),"css-letter-spacing":require("./features/css-letter-spacing"),"css-line-clamp":require("./features/css-line-clamp"),"css-logical-props":require("./features/css-logical-props"),"css-marker-pseudo":require("./features/css-marker-pseudo"),"css-masks":require("./features/css-masks"),"css-matches-pseudo":require("./features/css-matches-pseudo"),"css-math-functions":require("./features/css-math-functions"),"css-media-interaction":require("./features/css-media-interaction"),"css-media-range-syntax":require("./features/css-media-range-syntax"),"css-media-resolution":require("./features/css-media-resolution"),"css-media-scripting":require("./features/css-media-scripting"),"css-mediaqueries":require("./features/css-mediaqueries"),"css-mixblendmode":require("./features/css-mixblendmode"),"css-motion-paths":require("./features/css-motion-paths"),"css-namespaces":require("./features/css-namespaces"),"css-nesting":require("./features/css-nesting"),"css-not-sel-list":require("./features/css-not-sel-list"),"css-nth-child-of":require("./features/css-nth-child-of"),"css-opacity":require("./features/css-opacity"),"css-optional-pseudo":require("./features/css-optional-pseudo"),"css-overflow-anchor":require("./features/css-overflow-anchor"),"css-overflow-overlay":require("./features/css-overflow-overlay"),"css-overflow":require("./features/css-overflow"),"css-overscroll-behavior":require("./features/css-overscroll-behavior"),"css-page-break":require("./features/css-page-break"),"css-paged-media":require("./features/css-paged-media"),"css-paint-api":require("./features/css-paint-api"),"css-placeholder-shown":require("./features/css-placeholder-shown"),"css-placeholder":require("./features/css-placeholder"),"css-print-color-adjust":require("./features/css-print-color-adjust"),"css-read-only-write":require("./features/css-read-only-write"),"css-rebeccapurple":require("./features/css-rebeccapurple"),"css-reflections":require("./features/css-reflections"),"css-regions":require("./features/css-regions"),"css-relative-colors":require("./features/css-relative-colors"),"css-repeating-gradients":require("./features/css-repeating-gradients"),"css-resize":require("./features/css-resize"),"css-revert-value":require("./features/css-revert-value"),"css-rrggbbaa":require("./features/css-rrggbbaa"),"css-scroll-behavior":require("./features/css-scroll-behavior"),"css-scroll-timeline":require("./features/css-scroll-timeline"),"css-scrollbar":require("./features/css-scrollbar"),"css-sel2":require("./features/css-sel2"),"css-sel3":require("./features/css-sel3"),"css-selection":require("./features/css-selection"),"css-shapes":require("./features/css-shapes"),"css-snappoints":require("./features/css-snappoints"),"css-sticky":require("./features/css-sticky"),"css-subgrid":require("./features/css-subgrid"),"css-supports-api":require("./features/css-supports-api"),"css-table":require("./features/css-table"),"css-text-align-last":require("./features/css-text-align-last"),"css-text-box-trim":require("./features/css-text-box-trim"),"css-text-indent":require("./features/css-text-indent"),"css-text-justify":require("./features/css-text-justify"),"css-text-orientation":require("./features/css-text-orientation"),"css-text-spacing":require("./features/css-text-spacing"),"css-textshadow":require("./features/css-textshadow"),"css-touch-action":require("./features/css-touch-action"),"css-transitions":require("./features/css-transitions"),"css-unicode-bidi":require("./features/css-unicode-bidi"),"css-unset-value":require("./features/css-unset-value"),"css-variables":require("./features/css-variables"),"css-when-else":require("./features/css-when-else"),"css-widows-orphans":require("./features/css-widows-orphans"),"css-width-stretch":require("./features/css-width-stretch"),"css-writing-mode":require("./features/css-writing-mode"),"css-zoom":require("./features/css-zoom"),"css3-attr":require("./features/css3-attr"),"css3-boxsizing":require("./features/css3-boxsizing"),"css3-colors":require("./features/css3-colors"),"css3-cursors-grab":require("./features/css3-cursors-grab"),"css3-cursors-newer":require("./features/css3-cursors-newer"),"css3-cursors":require("./features/css3-cursors"),"css3-tabsize":require("./features/css3-tabsize"),"currentcolor":require("./features/currentcolor"),"custom-elements":require("./features/custom-elements"),"custom-elementsv1":require("./features/custom-elementsv1"),"customevent":require("./features/customevent"),"datalist":require("./features/datalist"),"dataset":require("./features/dataset"),"datauri":require("./features/datauri"),"date-tolocaledatestring":require("./features/date-tolocaledatestring"),"declarative-shadow-dom":require("./features/declarative-shadow-dom"),"decorators":require("./features/decorators"),"details":require("./features/details"),"deviceorientation":require("./features/deviceorientation"),"devicepixelratio":require("./features/devicepixelratio"),"dialog":require("./features/dialog"),"dispatchevent":require("./features/dispatchevent"),"dnssec":require("./features/dnssec"),"do-not-track":require("./features/do-not-track"),"document-currentscript":require("./features/document-currentscript"),"document-evaluate-xpath":require("./features/document-evaluate-xpath"),"document-execcommand":require("./features/document-execcommand"),"document-policy":require("./features/document-policy"),"document-scrollingelement":require("./features/document-scrollingelement"),"documenthead":require("./features/documenthead"),"dom-manip-convenience":require("./features/dom-manip-convenience"),"dom-range":require("./features/dom-range"),"domcontentloaded":require("./features/domcontentloaded"),"dommatrix":require("./features/dommatrix"),"download":require("./features/download"),"dragndrop":require("./features/dragndrop"),"element-closest":require("./features/element-closest"),"element-from-point":require("./features/element-from-point"),"element-scroll-methods":require("./features/element-scroll-methods"),"eme":require("./features/eme"),"eot":require("./features/eot"),"es5":require("./features/es5"),"es6-class":require("./features/es6-class"),"es6-generators":require("./features/es6-generators"),"es6-module-dynamic-import":require("./features/es6-module-dynamic-import"),"es6-module":require("./features/es6-module"),"es6-number":require("./features/es6-number"),"es6-string-includes":require("./features/es6-string-includes"),"es6":require("./features/es6"),"eventsource":require("./features/eventsource"),"extended-system-fonts":require("./features/extended-system-fonts"),"feature-policy":require("./features/feature-policy"),"fetch":require("./features/fetch"),"fieldset-disabled":require("./features/fieldset-disabled"),"fileapi":require("./features/fileapi"),"filereader":require("./features/filereader"),"filereadersync":require("./features/filereadersync"),"filesystem":require("./features/filesystem"),"flac":require("./features/flac"),"flexbox-gap":require("./features/flexbox-gap"),"flexbox":require("./features/flexbox"),"flow-root":require("./features/flow-root"),"focusin-focusout-events":require("./features/focusin-focusout-events"),"font-family-system-ui":require("./features/font-family-system-ui"),"font-feature":require("./features/font-feature"),"font-kerning":require("./features/font-kerning"),"font-loading":require("./features/font-loading"),"font-size-adjust":require("./features/font-size-adjust"),"font-smooth":require("./features/font-smooth"),"font-unicode-range":require("./features/font-unicode-range"),"font-variant-alternates":require("./features/font-variant-alternates"),"font-variant-numeric":require("./features/font-variant-numeric"),"fontface":require("./features/fontface"),"form-attribute":require("./features/form-attribute"),"form-submit-attributes":require("./features/form-submit-attributes"),"form-validation":require("./features/form-validation"),"forms":require("./features/forms"),"fullscreen":require("./features/fullscreen"),"gamepad":require("./features/gamepad"),"geolocation":require("./features/geolocation"),"getboundingclientrect":require("./features/getboundingclientrect"),"getcomputedstyle":require("./features/getcomputedstyle"),"getelementsbyclassname":require("./features/getelementsbyclassname"),"getrandomvalues":require("./features/getrandomvalues"),"gyroscope":require("./features/gyroscope"),"hardwareconcurrency":require("./features/hardwareconcurrency"),"hashchange":require("./features/hashchange"),"heif":require("./features/heif"),"hevc":require("./features/hevc"),"hidden":require("./features/hidden"),"high-resolution-time":require("./features/high-resolution-time"),"history":require("./features/history"),"html-media-capture":require("./features/html-media-capture"),"html5semantic":require("./features/html5semantic"),"http-live-streaming":require("./features/http-live-streaming"),"http2":require("./features/http2"),"http3":require("./features/http3"),"iframe-sandbox":require("./features/iframe-sandbox"),"iframe-seamless":require("./features/iframe-seamless"),"iframe-srcdoc":require("./features/iframe-srcdoc"),"imagecapture":require("./features/imagecapture"),"ime":require("./features/ime"),"img-naturalwidth-naturalheight":require("./features/img-naturalwidth-naturalheight"),"import-maps":require("./features/import-maps"),"imports":require("./features/imports"),"indeterminate-checkbox":require("./features/indeterminate-checkbox"),"indexeddb":require("./features/indexeddb"),"indexeddb2":require("./features/indexeddb2"),"inline-block":require("./features/inline-block"),"innertext":require("./features/innertext"),"input-autocomplete-onoff":require("./features/input-autocomplete-onoff"),"input-color":require("./features/input-color"),"input-datetime":require("./features/input-datetime"),"input-email-tel-url":require("./features/input-email-tel-url"),"input-event":require("./features/input-event"),"input-file-accept":require("./features/input-file-accept"),"input-file-directory":require("./features/input-file-directory"),"input-file-multiple":require("./features/input-file-multiple"),"input-inputmode":require("./features/input-inputmode"),"input-minlength":require("./features/input-minlength"),"input-number":require("./features/input-number"),"input-pattern":require("./features/input-pattern"),"input-placeholder":require("./features/input-placeholder"),"input-range":require("./features/input-range"),"input-search":require("./features/input-search"),"input-selection":require("./features/input-selection"),"insert-adjacent":require("./features/insert-adjacent"),"insertadjacenthtml":require("./features/insertadjacenthtml"),"internationalization":require("./features/internationalization"),"intersectionobserver-v2":require("./features/intersectionobserver-v2"),"intersectionobserver":require("./features/intersectionobserver"),"intl-pluralrules":require("./features/intl-pluralrules"),"intrinsic-width":require("./features/intrinsic-width"),"jpeg2000":require("./features/jpeg2000"),"jpegxl":require("./features/jpegxl"),"jpegxr":require("./features/jpegxr"),"js-regexp-lookbehind":require("./features/js-regexp-lookbehind"),"json":require("./features/json"),"justify-content-space-evenly":require("./features/justify-content-space-evenly"),"kerning-pairs-ligatures":require("./features/kerning-pairs-ligatures"),"keyboardevent-charcode":require("./features/keyboardevent-charcode"),"keyboardevent-code":require("./features/keyboardevent-code"),"keyboardevent-getmodifierstate":require("./features/keyboardevent-getmodifierstate"),"keyboardevent-key":require("./features/keyboardevent-key"),"keyboardevent-location":require("./features/keyboardevent-location"),"keyboardevent-which":require("./features/keyboardevent-which"),"lazyload":require("./features/lazyload"),"let":require("./features/let"),"link-icon-png":require("./features/link-icon-png"),"link-icon-svg":require("./features/link-icon-svg"),"link-rel-dns-prefetch":require("./features/link-rel-dns-prefetch"),"link-rel-modulepreload":require("./features/link-rel-modulepreload"),"link-rel-preconnect":require("./features/link-rel-preconnect"),"link-rel-prefetch":require("./features/link-rel-prefetch"),"link-rel-preload":require("./features/link-rel-preload"),"link-rel-prerender":require("./features/link-rel-prerender"),"loading-lazy-attr":require("./features/loading-lazy-attr"),"localecompare":require("./features/localecompare"),"magnetometer":require("./features/magnetometer"),"matchesselector":require("./features/matchesselector"),"matchmedia":require("./features/matchmedia"),"mathml":require("./features/mathml"),"maxlength":require("./features/maxlength"),"mdn-css-unicode-bidi-isolate-override":require("./features/mdn-css-unicode-bidi-isolate-override"),"mdn-css-unicode-bidi-isolate":require("./features/mdn-css-unicode-bidi-isolate"),"mdn-css-unicode-bidi-plaintext":require("./features/mdn-css-unicode-bidi-plaintext"),"mdn-text-decoration-color":require("./features/mdn-text-decoration-color"),"mdn-text-decoration-line":require("./features/mdn-text-decoration-line"),"mdn-text-decoration-shorthand":require("./features/mdn-text-decoration-shorthand"),"mdn-text-decoration-style":require("./features/mdn-text-decoration-style"),"media-fragments":require("./features/media-fragments"),"mediacapture-fromelement":require("./features/mediacapture-fromelement"),"mediarecorder":require("./features/mediarecorder"),"mediasource":require("./features/mediasource"),"menu":require("./features/menu"),"meta-theme-color":require("./features/meta-theme-color"),"meter":require("./features/meter"),"midi":require("./features/midi"),"minmaxwh":require("./features/minmaxwh"),"mp3":require("./features/mp3"),"mpeg-dash":require("./features/mpeg-dash"),"mpeg4":require("./features/mpeg4"),"multibackgrounds":require("./features/multibackgrounds"),"multicolumn":require("./features/multicolumn"),"mutation-events":require("./features/mutation-events"),"mutationobserver":require("./features/mutationobserver"),"namevalue-storage":require("./features/namevalue-storage"),"native-filesystem-api":require("./features/native-filesystem-api"),"nav-timing":require("./features/nav-timing"),"netinfo":require("./features/netinfo"),"notifications":require("./features/notifications"),"object-entries":require("./features/object-entries"),"object-fit":require("./features/object-fit"),"object-observe":require("./features/object-observe"),"object-values":require("./features/object-values"),"objectrtc":require("./features/objectrtc"),"offline-apps":require("./features/offline-apps"),"offscreencanvas":require("./features/offscreencanvas"),"ogg-vorbis":require("./features/ogg-vorbis"),"ogv":require("./features/ogv"),"ol-reversed":require("./features/ol-reversed"),"once-event-listener":require("./features/once-event-listener"),"online-status":require("./features/online-status"),"opus":require("./features/opus"),"orientation-sensor":require("./features/orientation-sensor"),"outline":require("./features/outline"),"pad-start-end":require("./features/pad-start-end"),"page-transition-events":require("./features/page-transition-events"),"pagevisibility":require("./features/pagevisibility"),"passive-event-listener":require("./features/passive-event-listener"),"passwordrules":require("./features/passwordrules"),"path2d":require("./features/path2d"),"payment-request":require("./features/payment-request"),"pdf-viewer":require("./features/pdf-viewer"),"permissions-api":require("./features/permissions-api"),"permissions-policy":require("./features/permissions-policy"),"picture-in-picture":require("./features/picture-in-picture"),"picture":require("./features/picture"),"ping":require("./features/ping"),"png-alpha":require("./features/png-alpha"),"pointer-events":require("./features/pointer-events"),"pointer":require("./features/pointer"),"pointerlock":require("./features/pointerlock"),"portals":require("./features/portals"),"prefers-color-scheme":require("./features/prefers-color-scheme"),"prefers-reduced-motion":require("./features/prefers-reduced-motion"),"progress":require("./features/progress"),"promise-finally":require("./features/promise-finally"),"promises":require("./features/promises"),"proximity":require("./features/proximity"),"proxy":require("./features/proxy"),"publickeypinning":require("./features/publickeypinning"),"push-api":require("./features/push-api"),"queryselector":require("./features/queryselector"),"readonly-attr":require("./features/readonly-attr"),"referrer-policy":require("./features/referrer-policy"),"registerprotocolhandler":require("./features/registerprotocolhandler"),"rel-noopener":require("./features/rel-noopener"),"rel-noreferrer":require("./features/rel-noreferrer"),"rellist":require("./features/rellist"),"rem":require("./features/rem"),"requestanimationframe":require("./features/requestanimationframe"),"requestidlecallback":require("./features/requestidlecallback"),"resizeobserver":require("./features/resizeobserver"),"resource-timing":require("./features/resource-timing"),"rest-parameters":require("./features/rest-parameters"),"rtcpeerconnection":require("./features/rtcpeerconnection"),"ruby":require("./features/ruby"),"run-in":require("./features/run-in"),"same-site-cookie-attribute":require("./features/same-site-cookie-attribute"),"screen-orientation":require("./features/screen-orientation"),"script-async":require("./features/script-async"),"script-defer":require("./features/script-defer"),"scrollintoview":require("./features/scrollintoview"),"scrollintoviewifneeded":require("./features/scrollintoviewifneeded"),"sdch":require("./features/sdch"),"selection-api":require("./features/selection-api"),"server-timing":require("./features/server-timing"),"serviceworkers":require("./features/serviceworkers"),"setimmediate":require("./features/setimmediate"),"shadowdom":require("./features/shadowdom"),"shadowdomv1":require("./features/shadowdomv1"),"sharedarraybuffer":require("./features/sharedarraybuffer"),"sharedworkers":require("./features/sharedworkers"),"sni":require("./features/sni"),"spdy":require("./features/spdy"),"speech-recognition":require("./features/speech-recognition"),"speech-synthesis":require("./features/speech-synthesis"),"spellcheck-attribute":require("./features/spellcheck-attribute"),"sql-storage":require("./features/sql-storage"),"srcset":require("./features/srcset"),"stream":require("./features/stream"),"streams":require("./features/streams"),"stricttransportsecurity":require("./features/stricttransportsecurity"),"style-scoped":require("./features/style-scoped"),"subresource-bundling":require("./features/subresource-bundling"),"subresource-integrity":require("./features/subresource-integrity"),"svg-css":require("./features/svg-css"),"svg-filters":require("./features/svg-filters"),"svg-fonts":require("./features/svg-fonts"),"svg-fragment":require("./features/svg-fragment"),"svg-html":require("./features/svg-html"),"svg-html5":require("./features/svg-html5"),"svg-img":require("./features/svg-img"),"svg-smil":require("./features/svg-smil"),"svg":require("./features/svg"),"sxg":require("./features/sxg"),"tabindex-attr":require("./features/tabindex-attr"),"template-literals":require("./features/template-literals"),"template":require("./features/template"),"temporal":require("./features/temporal"),"testfeat":require("./features/testfeat"),"text-decoration":require("./features/text-decoration"),"text-emphasis":require("./features/text-emphasis"),"text-overflow":require("./features/text-overflow"),"text-size-adjust":require("./features/text-size-adjust"),"text-stroke":require("./features/text-stroke"),"textcontent":require("./features/textcontent"),"textencoder":require("./features/textencoder"),"tls1-1":require("./features/tls1-1"),"tls1-2":require("./features/tls1-2"),"tls1-3":require("./features/tls1-3"),"touch":require("./features/touch"),"transforms2d":require("./features/transforms2d"),"transforms3d":require("./features/transforms3d"),"trusted-types":require("./features/trusted-types"),"ttf":require("./features/ttf"),"typedarrays":require("./features/typedarrays"),"u2f":require("./features/u2f"),"unhandledrejection":require("./features/unhandledrejection"),"upgradeinsecurerequests":require("./features/upgradeinsecurerequests"),"url-scroll-to-text-fragment":require("./features/url-scroll-to-text-fragment"),"url":require("./features/url"),"urlsearchparams":require("./features/urlsearchparams"),"use-strict":require("./features/use-strict"),"user-select-none":require("./features/user-select-none"),"user-timing":require("./features/user-timing"),"variable-fonts":require("./features/variable-fonts"),"vector-effect":require("./features/vector-effect"),"vibration":require("./features/vibration"),"video":require("./features/video"),"videotracks":require("./features/videotracks"),"viewport-unit-variants":require("./features/viewport-unit-variants"),"viewport-units":require("./features/viewport-units"),"wai-aria":require("./features/wai-aria"),"wake-lock":require("./features/wake-lock"),"wasm":require("./features/wasm"),"wav":require("./features/wav"),"wbr-element":require("./features/wbr-element"),"web-animation":require("./features/web-animation"),"web-app-manifest":require("./features/web-app-manifest"),"web-bluetooth":require("./features/web-bluetooth"),"web-serial":require("./features/web-serial"),"web-share":require("./features/web-share"),"webauthn":require("./features/webauthn"),"webcodecs":require("./features/webcodecs"),"webgl":require("./features/webgl"),"webgl2":require("./features/webgl2"),"webgpu":require("./features/webgpu"),"webhid":require("./features/webhid"),"webkit-user-drag":require("./features/webkit-user-drag"),"webm":require("./features/webm"),"webnfc":require("./features/webnfc"),"webp":require("./features/webp"),"websockets":require("./features/websockets"),"webtransport":require("./features/webtransport"),"webusb":require("./features/webusb"),"webvr":require("./features/webvr"),"webvtt":require("./features/webvtt"),"webworkers":require("./features/webworkers"),"webxr":require("./features/webxr"),"will-change":require("./features/will-change"),"woff":require("./features/woff"),"woff2":require("./features/woff2"),"word-break":require("./features/word-break"),"wordwrap":require("./features/wordwrap"),"x-doc-messaging":require("./features/x-doc-messaging"),"x-frame-options":require("./features/x-frame-options"),"xhr2":require("./features/xhr2"),"xhtml":require("./features/xhtml"),"xhtmlsmil":require("./features/xhtmlsmil"),"xml-serializer":require("./features/xml-serializer")};
diff --git a/node_modules/caniuse-lite/data/features/aac.js b/node_modules/caniuse-lite/data/features/aac.js
new file mode 100644
index 0000000..cb8e950
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/aac.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"G A B","2":"J E F GC"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"2":"0 HC wB I z J E F G A B C K L H M N O j k IC JC","132":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"I z J E F G","16":"A B"},E:{"1":"I z J E F G A B C K L H MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"LC 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"G B C UC VC WC XC tB EC YC uB"},G:{"1":"F ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","16":"2B"},H:{"2":"tC"},I:{"1":"wB I D xC FC yC zC","2":"uC vC wC"},J:{"1":"A","2":"E"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"132":"D"},N:{"1":"A","2":"B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"132":"FD GD"}},B:6,C:"AAC audio file format"};
diff --git a/node_modules/caniuse-lite/data/features/abortcontroller.js b/node_modules/caniuse-lite/data/features/abortcontroller.js
new file mode 100644
index 0000000..5282241
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/abortcontroller.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L H"},C:{"1":"aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB IC JC"},D:{"1":"hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB"},E:{"1":"K L H uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E F G A B LC 2B MC NC OC PC 3B","130":"C tB"},F:{"1":"WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB UC VC WC XC tB EC YC uB"},G:{"1":"jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"j k 5C 3B 6C 7C 8C 9C AD vB BD CD DD","2":"I 1C 2C 3C 4C"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"GD","2":"FD"}},B:1,C:"AbortController & AbortSignal"};
diff --git a/node_modules/caniuse-lite/data/features/ac3-ec3.js b/node_modules/caniuse-lite/data/features/ac3-ec3.js
new file mode 100644
index 0000000..c5bbef1
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/ac3-ec3.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"C K L H M N O","2":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"2":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i UC VC WC XC tB EC YC uB"},G:{"2":"F 2B ZC FC aC bC cC dC","132":"eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"2":"wB I D uC vC wC xC FC yC zC"},J:{"2":"E","132":"A"},K:{"2":"A B C l tB EC","132":"uB"},L:{"2":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"2":"0C"},P:{"2":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"2":"4B"},R:{"2":"ED"},S:{"2":"FD GD"}},B:6,C:"AC-3 (Dolby Digital) and EC-3 (Dolby Digital Plus) codecs"};
diff --git a/node_modules/caniuse-lite/data/features/accelerometer.js b/node_modules/caniuse-lite/data/features/accelerometer.js
new file mode 100644
index 0000000..c2288c2
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/accelerometer.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L H M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC"},D:{"1":"iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB","194":"bB xB cB yB dB eB fB gB hB"},E:{"2":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"1":"XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB UC VC WC XC tB EC YC uB"},G:{"2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"2":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"2":"FD GD"}},B:4,C:"Accelerometer"};
diff --git a/node_modules/caniuse-lite/data/features/addeventlistener.js b/node_modules/caniuse-lite/data/features/addeventlistener.js
new file mode 100644
index 0000000..c41460f
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/addeventlistener.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"G A B","130":"J E F GC"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","257":"HC wB I z J IC JC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"1":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i UC VC WC XC tB EC YC uB"},G:{"1":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"1":"tC"},I:{"1":"wB I D uC vC wC xC FC yC zC"},J:{"1":"E A"},K:{"1":"A B C l tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:1,C:"EventTarget.addEventListener()"};
diff --git a/node_modules/caniuse-lite/data/features/alternate-stylesheet.js b/node_modules/caniuse-lite/data/features/alternate-stylesheet.js
new file mode 100644
index 0000000..a1dfac5
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/alternate-stylesheet.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"F G A B","2":"J E GC"},B:{"2":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"2":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"1":"G B C UC VC WC XC tB EC YC uB","16":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i"},G:{"2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"16":"tC"},I:{"2":"wB I D uC vC wC xC FC yC zC"},J:{"16":"E A"},K:{"2":"l","16":"A B C tB EC uB"},L:{"16":"D"},M:{"16":"D"},N:{"16":"A B"},O:{"16":"0C"},P:{"16":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"2":"4B"},R:{"16":"ED"},S:{"1":"FD GD"}},B:1,C:"Alternate stylesheet"};
diff --git a/node_modules/caniuse-lite/data/features/ambient-light.js b/node_modules/caniuse-lite/data/features/ambient-light.js
new file mode 100644
index 0000000..9001f8d
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/ambient-light.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"2":"C K","132":"L H M N O","322":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"2":"0 HC wB I z J E F G A B C K L H M N O j k IC JC","132":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB","194":"cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB","322":"bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"2":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB UC VC WC XC tB EC YC uB","322":"l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i"},G:{"2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"2":"wB I D uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"2":"A B C l tB EC uB"},L:{"2":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"2":"0C"},P:{"2":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"2":"4B"},R:{"2":"ED"},S:{"132":"FD GD"}},B:4,C:"Ambient Light Sensor"};
diff --git a/node_modules/caniuse-lite/data/features/apng.js b/node_modules/caniuse-lite/data/features/apng.js
new file mode 100644
index 0000000..7e8bd73
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/apng.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L H M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC","2":"HC"},D:{"1":"xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB"},E:{"1":"F G A B C K L H PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E LC 2B MC NC OC"},F:{"1":"B C PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i UC VC WC XC tB EC YC uB","2":"0 1 2 3 4 5 6 7 8 9 G H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB"},G:{"1":"F dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"2B ZC FC aC bC cC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"A B C l tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"j k 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD","2":"I 1C 2C"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:5,C:"Animated PNG (APNG)"};
diff --git a/node_modules/caniuse-lite/data/features/array-find-index.js b/node_modules/caniuse-lite/data/features/array-find-index.js
new file mode 100644
index 0000000..edc5300
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/array-find-index.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 HC wB I z J E F G A B C K L H M N O j k IC JC"},D:{"1":"OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB"},E:{"1":"F G A B C K L H OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E LC 2B MC NC"},F:{"1":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB UC VC WC XC tB EC YC uB"},G:{"1":"F dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"2B ZC FC aC bC cC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E","16":"A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD","2":"I"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:6,C:"Array.prototype.findIndex"};
diff --git a/node_modules/caniuse-lite/data/features/array-find.js b/node_modules/caniuse-lite/data/features/array-find.js
new file mode 100644
index 0000000..e877b99
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/array-find.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","16":"C K L"},C:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 HC wB I z J E F G A B C K L H M N O j k IC JC"},D:{"1":"OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB"},E:{"1":"F G A B C K L H OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E LC 2B MC NC"},F:{"1":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB UC VC WC XC tB EC YC uB"},G:{"1":"F dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"2B ZC FC aC bC cC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E","16":"A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD","2":"I"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:6,C:"Array.prototype.find"};
diff --git a/node_modules/caniuse-lite/data/features/array-flat.js b/node_modules/caniuse-lite/data/features/array-flat.js
new file mode 100644
index 0000000..9663384
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/array-flat.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L H M N O"},C:{"1":"dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB IC JC"},D:{"1":"kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB"},E:{"1":"C K L H uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E F G A B LC 2B MC NC OC PC 3B tB"},F:{"1":"ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB UC VC WC XC tB EC YC uB"},G:{"1":"kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"j k 3B 6C 7C 8C 9C AD vB BD CD DD","2":"I 1C 2C 3C 4C 5C"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"GD","2":"FD"}},B:6,C:"flat & flatMap array methods"};
diff --git a/node_modules/caniuse-lite/data/features/array-includes.js b/node_modules/caniuse-lite/data/features/array-includes.js
new file mode 100644
index 0000000..a783830
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/array-includes.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K"},C:{"1":"MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB IC JC"},D:{"1":"QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB"},E:{"1":"G A B C K L H PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E F LC 2B MC NC OC"},F:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB UC VC WC XC tB EC YC uB"},G:{"1":"eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"F 2B ZC FC aC bC cC dC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD","2":"I"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:6,C:"Array.prototype.includes"};
diff --git a/node_modules/caniuse-lite/data/features/arrow-functions.js b/node_modules/caniuse-lite/data/features/arrow-functions.js
new file mode 100644
index 0000000..ea9ca9c
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/arrow-functions.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 HC wB I z J E F G A B C K L H M N O j k IC JC"},D:{"1":"OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB"},E:{"1":"A B C K L H 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E F G LC 2B MC NC OC PC"},F:{"1":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB UC VC WC XC tB EC YC uB"},G:{"1":"gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"F 2B ZC FC aC bC cC dC eC fC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD","2":"I"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:6,C:"Arrow functions"};
diff --git a/node_modules/caniuse-lite/data/features/asmjs.js b/node_modules/caniuse-lite/data/features/asmjs.js
new file mode 100644
index 0000000..9634e58
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/asmjs.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"K L H M N O","132":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","322":"C"},C:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 HC wB I z J E F G A B C K L H M N O j k IC JC"},D:{"2":"0 1 2 3 4 5 6 I z J E F G A B C K L H M N O j k","132":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"2":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"2":"G B C UC VC WC XC tB EC YC uB","132":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i"},G:{"2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"2":"wB I uC vC wC xC FC yC zC","132":"D"},J:{"2":"E A"},K:{"2":"A B C tB EC uB","132":"l"},L:{"132":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"132":"0C"},P:{"2":"I","132":"j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"132":"4B"},R:{"132":"ED"},S:{"1":"FD GD"}},B:6,C:"asm.js"};
diff --git a/node_modules/caniuse-lite/data/features/async-clipboard.js b/node_modules/caniuse-lite/data/features/async-clipboard.js
new file mode 100644
index 0000000..e58fd1c
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/async-clipboard.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L H M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB IC JC","132":"eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B"},D:{"1":"dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB","66":"bB xB cB yB"},E:{"1":"L H 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E F G A B C K LC 2B MC NC OC PC 3B tB uB"},F:{"1":"SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB UC VC WC XC tB EC YC uB"},G:{"2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC","260":"qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"2":"wB I uC vC wC xC FC yC zC","260":"D"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"132":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"2":"I 1C 2C 3C 4C","260":"j k 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"2":"FD","132":"GD"}},B:5,C:"Asynchronous Clipboard API"};
diff --git a/node_modules/caniuse-lite/data/features/async-functions.js b/node_modules/caniuse-lite/data/features/async-functions.js
new file mode 100644
index 0000000..6eb1d83
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/async-functions.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K","194":"L"},C:{"1":"VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB IC JC"},D:{"1":"YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB"},E:{"1":"B C K L H tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E F G A LC 2B MC NC OC PC","514":"3B"},F:{"1":"LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB UC VC WC XC tB EC YC uB"},G:{"1":"iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"F 2B ZC FC aC bC cC dC eC fC gC","514":"hC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"j k 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD","2":"I 1C"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"GD","2":"FD"}},B:6,C:"Async functions"};
diff --git a/node_modules/caniuse-lite/data/features/atob-btoa.js b/node_modules/caniuse-lite/data/features/atob-btoa.js
new file mode 100644
index 0000000..411dcbc
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/atob-btoa.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"A B","2":"J E F G GC"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"1":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i XC tB EC YC uB","2":"G UC VC","16":"WC"},G:{"1":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"1":"tC"},I:{"1":"wB I D uC vC wC xC FC yC zC"},J:{"1":"E A"},K:{"1":"B C l tB EC uB","16":"A"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:1,C:"Base64 encoding and decoding"};
diff --git a/node_modules/caniuse-lite/data/features/audio-api.js b/node_modules/caniuse-lite/data/features/audio-api.js
new file mode 100644
index 0000000..d60a5e6
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/audio-api.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 HC wB I z J E F G A B C K L H M N O j k IC JC"},D:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"I z J E F G A B C K","33":"0 1 2 3 4 5 6 7 8 9 L H M N O j k AB BB CB"},E:{"1":"H QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z LC 2B MC","33":"J E F G A B C K L NC OC PC 3B tB uB 4B"},F:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"G B C UC VC WC XC tB EC YC uB","33":"0 H M N O j k"},G:{"1":"rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"2B ZC FC aC","33":"F bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:2,C:"Web Audio API"};
diff --git a/node_modules/caniuse-lite/data/features/audio.js b/node_modules/caniuse-lite/data/features/audio.js
new file mode 100644
index 0000000..61de893
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/audio.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"G A B","2":"J E F GC"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"1 2 3 4 5 6 7 8 9 j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"HC wB","132":"0 I z J E F G A B C K L H M N O IC JC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"1":"I z J E F G A B C K L H MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"LC 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i WC XC tB EC YC uB","2":"G","4":"UC VC"},G:{"1":"F ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"2B"},H:{"2":"tC"},I:{"1":"wB I D wC xC FC yC zC","2":"uC vC"},J:{"1":"E A"},K:{"1":"B C l tB EC uB","2":"A"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:1,C:"Audio element"};
diff --git a/node_modules/caniuse-lite/data/features/audiotracks.js b/node_modules/caniuse-lite/data/features/audiotracks.js
new file mode 100644
index 0000000..8eeeb88
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/audiotracks.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"A B","2":"J E F G GC"},B:{"1":"C K L H M N O","322":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB IC JC","194":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB","322":"OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"1":"E F G A B C K L H NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J LC 2B MC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB UC VC WC XC tB EC YC uB","322":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i"},G:{"1":"F cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"2B ZC FC aC bC"},H:{"2":"tC"},I:{"2":"wB I D uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"2":"A B C tB EC uB","322":"l"},L:{"322":"D"},M:{"2":"D"},N:{"1":"A B"},O:{"322":"0C"},P:{"2":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"322":"4B"},R:{"322":"ED"},S:{"194":"FD GD"}},B:1,C:"Audio Tracks"};
diff --git a/node_modules/caniuse-lite/data/features/autofocus.js b/node_modules/caniuse-lite/data/features/autofocus.js
new file mode 100644
index 0000000..acb6f1f
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/autofocus.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"A B","2":"J E F G GC"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"HC wB IC JC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"I"},E:{"1":"z J E F G A B C K L H MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I LC 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i UC VC WC XC tB EC YC uB","2":"G"},G:{"2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"1":"wB I D xC FC yC zC","2":"uC vC wC"},J:{"1":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"GD","2":"FD"}},B:1,C:"Autofocus attribute"};
diff --git a/node_modules/caniuse-lite/data/features/auxclick.js b/node_modules/caniuse-lite/data/features/auxclick.js
new file mode 100644
index 0000000..c78950f
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/auxclick.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L H M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB IC JC","129":"WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B"},D:{"1":"YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB"},E:{"2":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"1":"LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB UC VC WC XC tB EC YC uB"},G:{"2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD","2":"I"},Q:{"1":"4B"},R:{"1":"ED"},S:{"2":"FD GD"}},B:5,C:"Auxclick"};
diff --git a/node_modules/caniuse-lite/data/features/av1.js b/node_modules/caniuse-lite/data/features/av1.js
new file mode 100644
index 0000000..b0b3f70
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/av1.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"2":"C K L H M N","194":"O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB IC JC","66":"YB ZB aB bB xB cB yB dB eB fB","260":"gB","516":"hB"},D:{"1":"lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB","66":"iB jB kB"},E:{"2":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"1":"aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB UC VC WC XC tB EC YC uB"},G:{"2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1090":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"j k 7C 8C 9C AD vB BD CD DD","2":"I 1C 2C 3C 4C 5C 3B 6C"},Q:{"1":"4B"},R:{"1":"ED"},S:{"2":"FD GD"}},B:6,C:"AV1 video format"};
diff --git a/node_modules/caniuse-lite/data/features/avif.js b/node_modules/caniuse-lite/data/features/avif.js
new file mode 100644
index 0000000..4bc1c42
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/avif.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"2":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"D 0B 1B","2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB IC JC","194":"rB sB P Q R zB S T U V W X Y Z a b","257":"c d e f g h i m n o p q r s t u v w","2049":"x y"},D:{"1":"U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T"},E:{"1":"CC DC SC TC","2":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB","1796":"9B AC BC"},F:{"1":"mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB UC VC WC XC tB EC YC uB"},G:{"1":"CC DC","2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B","1281":"vB 9B AC BC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"257":"D"},N:{"2":"A B"},O:{"2":"0C"},P:{"1":"j k 9C AD vB BD CD DD","2":"I 1C 2C 3C 4C 5C 3B 6C 7C 8C"},Q:{"2":"4B"},R:{"1":"ED"},S:{"2":"FD GD"}},B:6,C:"AVIF image format"};
diff --git a/node_modules/caniuse-lite/data/features/background-attachment.js b/node_modules/caniuse-lite/data/features/background-attachment.js
new file mode 100644
index 0000000..07edfdc
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/background-attachment.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"G A B","132":"J E F GC"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","132":"0 1 2 3 HC wB I z J E F G A B C K L H M N O j k IC JC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"1":"z J E F G A B C MC NC OC PC 3B tB uB 6B 7B 8B vB 9B AC BC CC DC SC TC","132":"I K LC 2B 4B","2050":"L H QC RC 5B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i WC XC tB EC YC uB","132":"G UC VC"},G:{"2":"2B ZC FC","772":"F aC bC cC dC eC fC gC hC iC jC kC lC","2050":"mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"2":"wB I D uC vC wC yC zC","132":"xC FC"},J:{"260":"E A"},K:{"1":"B C l tB EC uB","132":"A"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"0C"},P:{"2":"I","1028":"j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:4,C:"CSS background-attachment"};
diff --git a/node_modules/caniuse-lite/data/features/background-clip-text.js b/node_modules/caniuse-lite/data/features/background-clip-text.js
new file mode 100644
index 0000000..3060e61
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/background-clip-text.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"H M N O","33":"C K L P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB IC JC"},D:{"33":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"1":"L H QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","16":"LC 2B","33":"I z J E F G A B C K MC NC OC PC 3B tB uB 4B"},F:{"2":"G B C UC VC WC XC tB EC YC uB","33":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i"},G:{"1":"qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","16":"2B ZC FC aC","33":"F bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC"},H:{"2":"tC"},I:{"16":"wB uC vC wC","33":"I D xC FC yC zC"},J:{"33":"E A"},K:{"16":"A B C tB EC uB","33":"l"},L:{"33":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"33":"0C"},P:{"33":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"33":"4B"},R:{"33":"ED"},S:{"1":"FD GD"}},B:7,C:"Background-clip: text"};
diff --git a/node_modules/caniuse-lite/data/features/background-img-opts.js b/node_modules/caniuse-lite/data/features/background-img-opts.js
new file mode 100644
index 0000000..ddf4b8b
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/background-img-opts.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"G A B","2":"J E F GC"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"HC wB IC","36":"JC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","516":"I z J E F G A B C K L"},E:{"1":"E F G A B C K L H OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","772":"I z J LC 2B MC NC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i WC XC tB EC YC uB","2":"G UC","36":"VC"},G:{"1":"F cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","4":"2B ZC FC bC","516":"aC"},H:{"132":"tC"},I:{"1":"D yC zC","36":"uC","516":"wB I xC FC","548":"vC wC"},J:{"1":"E A"},K:{"1":"A B C l tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:4,C:"CSS3 Background-image options"};
diff --git a/node_modules/caniuse-lite/data/features/background-position-x-y.js b/node_modules/caniuse-lite/data/features/background-position-x-y.js
new file mode 100644
index 0000000..9da6c24
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/background-position-x-y.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"J E F G A B GC"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB IC JC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"1":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"G B C UC VC WC XC tB EC YC uB"},G:{"1":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"1":"wB I D uC vC wC xC FC yC zC"},J:{"1":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"GD","2":"FD"}},B:7,C:"background-position-x & background-position-y"};
diff --git a/node_modules/caniuse-lite/data/features/background-repeat-round-space.js b/node_modules/caniuse-lite/data/features/background-repeat-round-space.js
new file mode 100644
index 0000000..9847849
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/background-repeat-round-space.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"A B","2":"J E F GC","132":"G"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB IC JC"},D:{"1":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB"},E:{"1":"E F G A B C K L H OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J LC 2B MC NC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i WC XC tB EC YC uB","2":"G H M N O UC VC"},G:{"1":"F cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"2B ZC FC aC bC"},H:{"1":"tC"},I:{"1":"D yC zC","2":"wB I uC vC wC xC FC"},J:{"1":"A","2":"E"},K:{"1":"B C l tB EC uB","2":"A"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"GD","2":"FD"}},B:4,C:"CSS background-repeat round and space"};
diff --git a/node_modules/caniuse-lite/data/features/background-sync.js b/node_modules/caniuse-lite/data/features/background-sync.js
new file mode 100644
index 0000000..d8db7f4
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/background-sync.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L H M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D IC JC","16":"0B 1B"},D:{"1":"SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB"},E:{"2":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"1":"LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB UC VC WC XC tB EC YC uB"},G:{"2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD","2":"I"},Q:{"1":"4B"},R:{"1":"ED"},S:{"2":"FD GD"}},B:7,C:"Background Sync API"};
diff --git a/node_modules/caniuse-lite/data/features/battery-status.js b/node_modules/caniuse-lite/data/features/battery-status.js
new file mode 100644
index 0000000..c012a43
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/battery-status.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L H M N O"},C:{"1":"MB NB OB PB QB RB SB TB UB","2":"HC wB I z J E F G VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC","132":"0 1 2 3 4 5 6 7 8 9 M N O j k AB BB CB DB EB FB GB HB IB JB KB LB","164":"A B C K L H"},D:{"1":"HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB","66":"GB"},E:{"2":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 G B C H M N O j k UC VC WC XC tB EC YC uB"},G:{"2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD","2":"GD"}},B:4,C:"Battery Status API"};
diff --git a/node_modules/caniuse-lite/data/features/beacon.js b/node_modules/caniuse-lite/data/features/beacon.js
new file mode 100644
index 0000000..a643ac7
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/beacon.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K"},C:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k IC JC"},D:{"1":"IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB"},E:{"1":"C K L H tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E F G A B LC 2B MC NC OC PC 3B"},F:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 G B C H M N O j k UC VC WC XC tB EC YC uB"},G:{"1":"jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:4,C:"Beacon API"};
diff --git a/node_modules/caniuse-lite/data/features/beforeafterprint.js b/node_modules/caniuse-lite/data/features/beforeafterprint.js
new file mode 100644
index 0000000..7910eb4
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/beforeafterprint.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"J E F G A B","16":"GC"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"HC wB I z IC JC"},D:{"1":"eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB"},E:{"1":"K L H 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E F G A B C LC 2B MC NC OC PC 3B tB uB"},F:{"1":"TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB UC VC WC XC tB EC YC uB"},G:{"1":"mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC"},H:{"2":"tC"},I:{"2":"wB I D uC vC wC xC FC yC zC"},J:{"16":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"16":"A B"},O:{"1":"0C"},P:{"2":"j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD","16":"I"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:1,C:"Printing Events"};
diff --git a/node_modules/caniuse-lite/data/features/bigint.js b/node_modules/caniuse-lite/data/features/bigint.js
new file mode 100644
index 0000000..eb7acac
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/bigint.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L H M N O"},C:{"1":"jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB IC JC","194":"gB hB iB"},D:{"1":"iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB"},E:{"1":"L H QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E F G A B C K LC 2B MC NC OC PC 3B tB uB 4B"},F:{"1":"XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB UC VC WC XC tB EC YC uB"},G:{"1":"qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"j k 5C 3B 6C 7C 8C 9C AD vB BD CD DD","2":"I 1C 2C 3C 4C"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"GD","2":"FD"}},B:6,C:"BigInt"};
diff --git a/node_modules/caniuse-lite/data/features/blobbuilder.js b/node_modules/caniuse-lite/data/features/blobbuilder.js
new file mode 100644
index 0000000..95d8bf9
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/blobbuilder.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"A B","2":"J E F G GC"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"HC wB I z IC JC","36":"J E F G A B C"},D:{"1":"1 2 3 4 5 6 7 8 9 j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"I z J E","36":"0 F G A B C K L H M N O"},E:{"1":"J E F G A B C K L H NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z LC 2B MC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i uB","2":"G B C UC VC WC XC tB EC YC"},G:{"1":"F bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"2B ZC FC aC"},H:{"2":"tC"},I:{"1":"D","2":"uC vC wC","36":"wB I xC FC yC zC"},J:{"1":"A","2":"E"},K:{"1":"l uB","2":"A B C tB EC"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:5,C:"Blob constructing"};
diff --git a/node_modules/caniuse-lite/data/features/bloburls.js b/node_modules/caniuse-lite/data/features/bloburls.js
new file mode 100644
index 0000000..bfcc888
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/bloburls.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G GC","129":"A B"},B:{"1":"H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","129":"C K L"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"HC wB IC JC"},D:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"I z J E","33":"0 1 F G A B C K L H M N O j k"},E:{"1":"E F G A B C K L H NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z LC 2B MC","33":"J"},F:{"1":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"G B C UC VC WC XC tB EC YC uB"},G:{"1":"F cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"2B ZC FC aC","33":"bC"},H:{"2":"tC"},I:{"1":"D yC zC","2":"wB uC vC wC","33":"I xC FC"},J:{"1":"A","2":"E"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"1":"B","2":"A"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:5,C:"Blob URLs"};
diff --git a/node_modules/caniuse-lite/data/features/border-image.js b/node_modules/caniuse-lite/data/features/border-image.js
new file mode 100644
index 0000000..c5bcce4
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/border-image.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"B","2":"J E F G A GC"},B:{"1":"L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","129":"C K"},C:{"1":"TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"HC wB","260":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB","804":"I z J E F G A B C K L IC JC"},D:{"1":"ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","260":"UB VB WB XB YB","388":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB","1412":"0 1 2 3 4 5 6 7 8 H M N O j k","1956":"I z J E F G A B C K L"},E:{"1":"6B 7B 8B vB 9B AC BC CC DC SC TC","129":"A B C K L H PC 3B tB uB 4B QC RC 5B","1412":"J E F G NC OC","1956":"I z LC 2B MC"},F:{"1":"MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"G UC VC","260":"HB IB JB KB LB","388":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB","1796":"WC XC","1828":"B C tB EC YC uB"},G:{"1":"6B 7B 8B vB 9B AC BC CC DC","129":"fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B","1412":"F bC cC dC eC","1956":"2B ZC FC aC"},H:{"1828":"tC"},I:{"1":"D","388":"yC zC","1956":"wB I uC vC wC xC FC"},J:{"1412":"A","1924":"E"},K:{"1":"l","2":"A","1828":"B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"1":"B","2":"A"},O:{"1":"0C"},P:{"1":"j k 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD","260":"1C 2C","388":"I"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"GD","260":"FD"}},B:4,C:"CSS3 Border images"};
diff --git a/node_modules/caniuse-lite/data/features/border-radius.js b/node_modules/caniuse-lite/data/features/border-radius.js
new file mode 100644
index 0000000..6bb8f30
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/border-radius.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"G A B","2":"J E F GC"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","257":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB","289":"wB IC JC","292":"HC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","33":"I"},E:{"1":"z E F G A B C K L H OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","33":"I LC 2B","129":"J MC NC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i WC XC tB EC YC uB","2":"G UC VC"},G:{"1":"F ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","33":"2B"},H:{"2":"tC"},I:{"1":"wB I D vC wC xC FC yC zC","33":"uC"},J:{"1":"E A"},K:{"1":"B C l tB EC uB","2":"A"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"GD","257":"FD"}},B:4,C:"CSS3 Border-radius (rounded corners)"};
diff --git a/node_modules/caniuse-lite/data/features/broadcastchannel.js b/node_modules/caniuse-lite/data/features/broadcastchannel.js
new file mode 100644
index 0000000..d10c756
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/broadcastchannel.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L H M N O"},C:{"1":"HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB IC JC"},D:{"1":"XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB"},E:{"1":"6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B"},F:{"1":"KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB UC VC WC XC tB EC YC uB"},G:{"1":"6B 7B 8B vB 9B AC BC CC DC","2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"j k 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD","2":"I 1C 2C"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:1,C:"BroadcastChannel"};
diff --git a/node_modules/caniuse-lite/data/features/brotli.js b/node_modules/caniuse-lite/data/features/brotli.js
new file mode 100644
index 0000000..68f13f2
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/brotli.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L"},C:{"1":"NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB IC JC"},D:{"1":"UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB","194":"SB","257":"TB"},E:{"1":"K L H 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E F G A LC 2B MC NC OC PC 3B","513":"B C tB uB"},F:{"1":"HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB UC VC WC XC tB EC YC uB","194":"FB GB"},G:{"1":"iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"F 2B ZC FC aC bC cC dC eC fC gC hC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD","2":"I"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:6,C:"Brotli Accept-Encoding/Content-Encoding"};
diff --git a/node_modules/caniuse-lite/data/features/calc.js b/node_modules/caniuse-lite/data/features/calc.js
new file mode 100644
index 0000000..19d44ed
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/calc.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F GC","260":"G","516":"A B"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"HC wB IC JC","33":"I z J E F G A B C K L H"},D:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"I z J E F G A B C K L H M N O","33":"0 1 2 3 4 j k"},E:{"1":"E F G A B C K L H NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z LC 2B MC","33":"J"},F:{"1":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"G B C UC VC WC XC tB EC YC uB"},G:{"1":"F cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"2B ZC FC aC","33":"bC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC","132":"yC zC"},J:{"1":"A","2":"E"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:4,C:"calc() as CSS unit value"};
diff --git a/node_modules/caniuse-lite/data/features/canvas-blending.js b/node_modules/caniuse-lite/data/features/canvas-blending.js
new file mode 100644
index 0000000..ff2f6c3
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/canvas-blending.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C"},C:{"1":"1 2 3 4 5 6 7 8 9 j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 HC wB I z J E F G A B C K L H M N O IC JC"},D:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 I z J E F G A B C K L H M N O j k"},E:{"1":"E F G A B C K L H NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J LC 2B MC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"G B C H M UC VC WC XC tB EC YC uB"},G:{"1":"F cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"2B ZC FC aC bC"},H:{"2":"tC"},I:{"1":"D yC zC","2":"wB I uC vC wC xC FC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:4,C:"Canvas blend modes"};
diff --git a/node_modules/caniuse-lite/data/features/canvas-text.js b/node_modules/caniuse-lite/data/features/canvas-text.js
new file mode 100644
index 0000000..6d449fd
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/canvas-text.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"G A B","2":"GC","8":"J E F"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC","8":"HC wB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"1":"I z J E F G A B C K L H MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","8":"LC 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i WC XC tB EC YC uB","8":"G UC VC"},G:{"1":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"1":"wB I D uC vC wC xC FC yC zC"},J:{"1":"E A"},K:{"1":"B C l tB EC uB","8":"A"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:1,C:"Text API for Canvas"};
diff --git a/node_modules/caniuse-lite/data/features/canvas.js b/node_modules/caniuse-lite/data/features/canvas.js
new file mode 100644
index 0000000..c0d52df
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/canvas.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"G A B","2":"GC","8":"J E F"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B JC","132":"HC wB IC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"1":"I z J E F G A B C K L H MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","132":"LC 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i UC VC WC XC tB EC YC uB"},G:{"1":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"260":"tC"},I:{"1":"wB I D xC FC yC zC","132":"uC vC wC"},J:{"1":"E A"},K:{"1":"A B C l tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:1,C:"Canvas (basic support)"};
diff --git a/node_modules/caniuse-lite/data/features/ch-unit.js b/node_modules/caniuse-lite/data/features/ch-unit.js
new file mode 100644
index 0000000..b8ec8b3
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/ch-unit.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F GC","132":"G A B"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC"},D:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 I z J E F G A B C K L H M N O j k"},E:{"1":"E F G A B C K L H OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J LC 2B MC NC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"G B C UC VC WC XC tB EC YC uB"},G:{"1":"F cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"2B ZC FC aC bC"},H:{"2":"tC"},I:{"1":"D yC zC","2":"wB I uC vC wC xC FC"},J:{"1":"A","2":"E"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:4,C:"ch (character) unit"};
diff --git a/node_modules/caniuse-lite/data/features/chacha20-poly1305.js b/node_modules/caniuse-lite/data/features/chacha20-poly1305.js
new file mode 100644
index 0000000..4c70b09
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/chacha20-poly1305.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L H M N O"},C:{"1":"QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB IC JC"},D:{"1":"SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB","129":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB"},E:{"1":"C K L H tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E F G A B LC 2B MC NC OC PC 3B"},F:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB UC VC WC XC tB EC YC uB"},G:{"1":"iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"F 2B ZC FC aC bC cC dC eC fC gC hC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC","16":"zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:6,C:"ChaCha20-Poly1305 cipher suites for TLS"};
diff --git a/node_modules/caniuse-lite/data/features/channel-messaging.js b/node_modules/caniuse-lite/data/features/channel-messaging.js
new file mode 100644
index 0000000..749151b
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/channel-messaging.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"A B","2":"J E F G GC"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 4 HC wB I z J E F G A B C K L H M N O j k IC JC","194":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"1":"z J E F G A B C K L H MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I LC 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i XC tB EC YC uB","2":"G UC VC","16":"WC"},G:{"1":"F aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"2B ZC FC"},H:{"2":"tC"},I:{"1":"D yC zC","2":"wB I uC vC wC xC FC"},J:{"1":"E A"},K:{"1":"B C l tB EC uB","2":"A"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:1,C:"Channel messaging"};
diff --git a/node_modules/caniuse-lite/data/features/childnode-remove.js b/node_modules/caniuse-lite/data/features/childnode-remove.js
new file mode 100644
index 0000000..bbd7d6a
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/childnode-remove.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","16":"C"},C:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 HC wB I z J E F G A B C K L H M N O j k IC JC"},D:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 I z J E F G A B C K L H M N O j k"},E:{"1":"E F G A B C K L H NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z LC 2B MC","16":"J"},F:{"1":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"G B C UC VC WC XC tB EC YC uB"},G:{"1":"F cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"2B ZC FC aC bC"},H:{"2":"tC"},I:{"1":"D yC zC","2":"wB I uC vC wC xC FC"},J:{"1":"A","2":"E"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:1,C:"ChildNode.remove()"};
diff --git a/node_modules/caniuse-lite/data/features/classlist.js b/node_modules/caniuse-lite/data/features/classlist.js
new file mode 100644
index 0000000..f8e0f1f
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/classlist.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"8":"J E F G GC","1924":"A B"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","8":"HC wB IC","516":"3 4","772":"0 1 2 I z J E F G A B C K L H M N O j k JC"},D:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","8":"I z J E","516":"3 4 5 6","772":"2","900":"0 1 F G A B C K L H M N O j k"},E:{"1":"E F G A B C K L H OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","8":"I z LC 2B","900":"J MC NC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","8":"G B UC VC WC XC tB","900":"C EC YC uB"},G:{"1":"F cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","8":"2B ZC FC","900":"aC bC"},H:{"900":"tC"},I:{"1":"D yC zC","8":"uC vC wC","900":"wB I xC FC"},J:{"1":"A","900":"E"},K:{"1":"l","8":"A B","900":"C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"900":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:1,C:"classList (DOMTokenList)"};
diff --git a/node_modules/caniuse-lite/data/features/client-hints-dpr-width-viewport.js b/node_modules/caniuse-lite/data/features/client-hints-dpr-width-viewport.js
new file mode 100644
index 0000000..41728c0
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/client-hints-dpr-width-viewport.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L H M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC"},D:{"1":"PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB"},E:{"2":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB UC VC WC XC tB EC YC uB"},G:{"2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD","2":"I"},Q:{"1":"4B"},R:{"1":"ED"},S:{"2":"FD GD"}},B:6,C:"Client Hints: DPR, Width, Viewport-Width"};
diff --git a/node_modules/caniuse-lite/data/features/clipboard.js b/node_modules/caniuse-lite/data/features/clipboard.js
new file mode 100644
index 0000000..4cf717e
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/clipboard.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2436":"J E F G A B GC"},B:{"260":"N O","2436":"C K L H M","8196":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"2":"0 HC wB I z J E F G A B C K L H M N O j k IC JC","772":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB","4100":"KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B"},D:{"2":"I z J E F G A B C","2564":"0 1 2 3 4 5 6 7 8 9 K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB","8196":"bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","10244":"MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB"},E:{"1":"C K L H uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","16":"LC 2B","2308":"A B 3B tB","2820":"I z J E F G MC NC OC PC"},F:{"2":"G B UC VC WC XC tB EC YC","16":"C","516":"uB","2564":"0 1 2 3 4 5 6 7 8 H M N O j k","8196":"OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","10244":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB"},G:{"1":"kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"2B ZC FC","2820":"F aC bC cC dC eC fC gC hC iC jC"},H:{"2":"tC"},I:{"2":"wB I uC vC wC xC FC","260":"D","2308":"yC zC"},J:{"2":"E","2308":"A"},K:{"2":"A B C tB EC","16":"uB","8196":"l"},L:{"8196":"D"},M:{"1028":"D"},N:{"2":"A B"},O:{"8196":"0C"},P:{"2052":"1C 2C","2308":"I","8196":"j k 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"8196":"4B"},R:{"8196":"ED"},S:{"4100":"FD GD"}},B:5,C:"Synchronous Clipboard API"};
diff --git a/node_modules/caniuse-lite/data/features/colr-v1.js b/node_modules/caniuse-lite/data/features/colr-v1.js
new file mode 100644
index 0000000..44ade95
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/colr-v1.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"h i m n o p q r s t u v w x y D","2":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g"},C:{"1":"t u v w x y D 0B 1B","2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g IC JC","258":"h i m n o p q","578":"r s"},D:{"1":"h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y","194":"Z a b c d e f g"},E:{"2":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"1":"V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U UC VC WC XC tB EC YC uB"},G:{"2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"16":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"16":"A B"},O:{"2":"0C"},P:{"1":"j k CD DD","2":"I 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD"},Q:{"2":"4B"},R:{"2":"ED"},S:{"2":"FD GD"}},B:6,C:"COLR/CPAL(v1) Font Formats"};
diff --git a/node_modules/caniuse-lite/data/features/colr.js b/node_modules/caniuse-lite/data/features/colr.js
new file mode 100644
index 0000000..a6fd3e2
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/colr.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F GC","257":"G A B"},B:{"1":"C K L H M N O","513":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB IC JC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB","513":"mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"1":"L H QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E F G A LC 2B MC NC OC PC 3B","129":"B C K tB uB 4B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB UC VC WC XC tB EC YC uB","513":"bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i"},G:{"1":"iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"F 2B ZC FC aC bC cC dC eC fC gC hC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"16":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"16":"A B"},O:{"1":"0C"},P:{"1":"j k 3B 6C 7C 8C 9C AD vB BD CD DD","2":"I 1C 2C 3C 4C 5C"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:6,C:"COLR/CPAL(v0) Font Formats"};
diff --git a/node_modules/caniuse-lite/data/features/comparedocumentposition.js b/node_modules/caniuse-lite/data/features/comparedocumentposition.js
new file mode 100644
index 0000000..b89fc5d
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/comparedocumentposition.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"G A B","2":"J E F GC"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","16":"HC wB IC JC"},D:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","16":"I z J E F G A B C K L","132":"0 1 2 3 4 5 6 7 8 H M N O j k"},E:{"1":"A B C K L H 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","16":"I z J LC 2B","132":"E F G NC OC PC","260":"MC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i YC uB","16":"G B UC VC WC XC tB EC","132":"H M"},G:{"1":"gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","16":"2B","132":"F ZC FC aC bC cC dC eC fC"},H:{"1":"tC"},I:{"1":"D yC zC","16":"uC vC","132":"wB I wC xC FC"},J:{"132":"E A"},K:{"1":"C l uB","16":"A B tB EC"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:1,C:"Node.compareDocumentPosition()"};
diff --git a/node_modules/caniuse-lite/data/features/console-basic.js b/node_modules/caniuse-lite/data/features/console-basic.js
new file mode 100644
index 0000000..889e50b
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/console-basic.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"A B","2":"J E GC","132":"F G"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"HC wB IC JC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"1":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i tB EC YC uB","2":"G UC VC WC XC"},G:{"1":"2B ZC FC aC","513":"F bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"4097":"tC"},I:{"1025":"wB I D uC vC wC xC FC yC zC"},J:{"258":"E A"},K:{"2":"A","258":"B C tB EC uB","1025":"l"},L:{"1025":"D"},M:{"2049":"D"},N:{"258":"A B"},O:{"258":"0C"},P:{"1025":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1025":"ED"},S:{"1":"FD GD"}},B:1,C:"Basic console logging functions"};
diff --git a/node_modules/caniuse-lite/data/features/console-time.js b/node_modules/caniuse-lite/data/features/console-time.js
new file mode 100644
index 0000000..53ac5b4
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/console-time.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"B","2":"J E F G A GC"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"HC wB I z J E F G IC JC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"1":"I z J E F G A B C K L H MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"LC 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i tB EC YC uB","2":"G UC VC WC XC","16":"B"},G:{"1":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"1":"tC"},I:{"1":"wB I D uC vC wC xC FC yC zC"},J:{"1":"E A"},K:{"1":"l","16":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"1":"B","2":"A"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:1,C:"console.time and console.timeEnd"};
diff --git a/node_modules/caniuse-lite/data/features/const.js b/node_modules/caniuse-lite/data/features/const.js
new file mode 100644
index 0000000..aa7b5df
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/const.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A GC","2052":"B"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","132":"HC wB I z J E F G A B C IC JC","260":"0 1 2 3 4 5 6 7 8 9 K L H M N O j k AB BB CB DB EB"},D:{"1":"SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","260":"0 I z J E F G A B C K L H M N O j","772":"1 2 3 4 5 6 7 8 9 k AB BB CB DB EB FB GB HB IB JB","1028":"KB LB MB NB OB PB QB RB"},E:{"1":"B C K L H tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","260":"I z A LC 2B 3B","772":"J E F G MC NC OC PC"},F:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"G UC","132":"B VC WC XC tB EC","644":"C YC uB","772":"0 1 2 3 4 5 6 H M N O j k","1028":"7 8 9 AB BB CB DB EB"},G:{"1":"iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","260":"2B ZC FC gC hC","772":"F aC bC cC dC eC fC"},H:{"644":"tC"},I:{"1":"D","16":"uC vC","260":"wC","772":"wB I xC FC yC zC"},J:{"772":"E A"},K:{"1":"l","132":"A B tB EC","644":"C uB"},L:{"1":"D"},M:{"1":"D"},N:{"1":"B","2":"A"},O:{"1":"0C"},P:{"1":"j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD","1028":"I"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:6,C:"const"};
diff --git a/node_modules/caniuse-lite/data/features/constraint-validation.js b/node_modules/caniuse-lite/data/features/constraint-validation.js
new file mode 100644
index 0000000..4674c7a
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/constraint-validation.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G GC","900":"A B"},B:{"1":"N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","388":"L H M","900":"C K"},C:{"1":"UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"HC wB IC JC","260":"SB TB","388":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB","900":"0 1 2 3 4 5 6 7 I z J E F G A B C K L H M N O j k"},D:{"1":"JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","16":"I z J E F G A B C K L","388":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB","900":"0 1 2 3 H M N O j k"},E:{"1":"A B C K L H 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","16":"I z LC 2B","388":"F G OC PC","900":"J E MC NC"},F:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","16":"G B UC VC WC XC tB EC","388":"0 1 2 3 4 5 H M N O j k","900":"C YC uB"},G:{"1":"gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","16":"2B ZC FC","388":"F cC dC eC fC","900":"aC bC"},H:{"2":"tC"},I:{"1":"D","16":"wB uC vC wC","388":"yC zC","900":"I xC FC"},J:{"16":"E","388":"A"},K:{"1":"l","16":"A B tB EC","900":"C uB"},L:{"1":"D"},M:{"1":"D"},N:{"900":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"GD","388":"FD"}},B:1,C:"Constraint Validation API"};
diff --git a/node_modules/caniuse-lite/data/features/contenteditable.js b/node_modules/caniuse-lite/data/features/contenteditable.js
new file mode 100644
index 0000000..228d676
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/contenteditable.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"J E F G A B GC"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC","2":"HC","4":"wB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"1":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i UC VC WC XC tB EC YC uB"},G:{"1":"F aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"2B ZC FC"},H:{"2":"tC"},I:{"1":"wB I D xC FC yC zC","2":"uC vC wC"},J:{"1":"E A"},K:{"1":"l uB","2":"A B C tB EC"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:1,C:"contenteditable attribute (basic support)"};
diff --git a/node_modules/caniuse-lite/data/features/contentsecuritypolicy.js b/node_modules/caniuse-lite/data/features/contentsecuritypolicy.js
new file mode 100644
index 0000000..6702e75
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/contentsecuritypolicy.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G GC","132":"A B"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"HC wB IC JC","129":"0 1 I z J E F G A B C K L H M N O j k"},D:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"I z J E F G A B C K","257":"0 1 2 3 L H M N O j k"},E:{"1":"E F G A B C K L H OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z LC 2B","257":"J NC","260":"MC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"G B C UC VC WC XC tB EC YC uB"},G:{"1":"F cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"2B ZC FC","257":"bC","260":"aC"},H:{"2":"tC"},I:{"1":"D yC zC","2":"wB I uC vC wC xC FC"},J:{"2":"E","257":"A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"132":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:4,C:"Content Security Policy 1.0"};
diff --git a/node_modules/caniuse-lite/data/features/contentsecuritypolicy2.js b/node_modules/caniuse-lite/data/features/contentsecuritypolicy2.js
new file mode 100644
index 0000000..c2fdf7d
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/contentsecuritypolicy2.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L","4100":"H M N O"},C:{"1":"OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k IC JC","132":"AB BB CB DB","260":"EB","516":"FB GB HB IB JB KB LB MB NB"},D:{"1":"JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB","1028":"FB GB HB","2052":"IB"},E:{"1":"A B C K L H 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E F G LC 2B MC NC OC PC"},F:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 G B C H M N O j k UC VC WC XC tB EC YC uB","1028":"2 3 4","2052":"5"},G:{"1":"gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"F 2B ZC FC aC bC cC dC eC fC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:2,C:"Content Security Policy Level 2"};
diff --git a/node_modules/caniuse-lite/data/features/cookie-store-api.js b/node_modules/caniuse-lite/data/features/cookie-store-api.js
new file mode 100644
index 0000000..c699c70
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/cookie-store-api.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L H M N O","194":"P Q R S T U V"},C:{"2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC"},D:{"1":"W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB","194":"fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V"},E:{"2":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"1":"oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UC VC WC XC tB EC YC uB","194":"UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l"},G:{"2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"2":"0C"},P:{"1":"j k 9C AD vB BD CD DD","2":"I 1C 2C 3C 4C 5C 3B 6C 7C 8C"},Q:{"2":"4B"},R:{"1":"ED"},S:{"2":"FD GD"}},B:7,C:"Cookie Store API"};
diff --git a/node_modules/caniuse-lite/data/features/cors.js b/node_modules/caniuse-lite/data/features/cors.js
new file mode 100644
index 0000000..8ed6a74
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/cors.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"B","2":"J E GC","132":"A","260":"F G"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC","2":"HC wB","1025":"yB dB eB fB gB hB iB jB kB lB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","132":"I z J E F G A B C"},E:{"2":"LC 2B","513":"J E F G A B C K L H NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","644":"I z MC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i uB","2":"G B UC VC WC XC tB EC YC"},G:{"513":"F bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","644":"2B ZC FC aC"},H:{"2":"tC"},I:{"1":"D yC zC","132":"wB I uC vC wC xC FC"},J:{"1":"A","132":"E"},K:{"1":"C l uB","2":"A B tB EC"},L:{"1":"D"},M:{"1":"D"},N:{"1":"B","132":"A"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:1,C:"Cross-Origin Resource Sharing"};
diff --git a/node_modules/caniuse-lite/data/features/createimagebitmap.js b/node_modules/caniuse-lite/data/features/createimagebitmap.js
new file mode 100644
index 0000000..29790ea
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/createimagebitmap.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L H M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB IC JC","1028":"c d e f g","3076":"LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b","8196":"h i m n o p q r s t u v w x y D 0B 1B"},D:{"1":"xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB","132":"TB UB","260":"VB WB","516":"XB YB ZB aB bB"},E:{"2":"I z J E F G A B C K L LC 2B MC NC OC PC 3B tB uB 4B QC","4100":"H RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"1":"PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB UC VC WC XC tB EC YC uB","132":"GB HB","260":"IB JB","516":"KB LB MB NB OB"},G:{"2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC","4100":"sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"8196":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"j k 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD","16":"I 1C"},Q:{"1":"4B"},R:{"1":"ED"},S:{"3076":"FD GD"}},B:1,C:"createImageBitmap"};
diff --git a/node_modules/caniuse-lite/data/features/credential-management.js b/node_modules/caniuse-lite/data/features/credential-management.js
new file mode 100644
index 0000000..e386ada
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/credential-management.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L H M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC"},D:{"1":"aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB","66":"RB SB TB","129":"UB VB WB XB YB ZB"},E:{"2":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"1":"OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB UC VC WC XC tB EC YC uB"},G:{"1":"qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"j k 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD","2":"I 1C 2C"},Q:{"1":"4B"},R:{"1":"ED"},S:{"2":"FD GD"}},B:5,C:"Credential Management API"};
diff --git a/node_modules/caniuse-lite/data/features/cryptography.js b/node_modules/caniuse-lite/data/features/cryptography.js
new file mode 100644
index 0000000..9c4c1f7
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/cryptography.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"GC","8":"J E F G A","164":"B"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","513":"C K L H M N O"},C:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","8":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB IC JC","66":"BB CB"},D:{"1":"GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","8":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB"},E:{"1":"B C K L H tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","8":"I z J E LC 2B MC NC","289":"F G A OC PC 3B"},F:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","8":"0 1 2 G B C H M N O j k UC VC WC XC tB EC YC uB"},G:{"1":"iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","8":"2B ZC FC aC bC cC","289":"F dC eC fC gC hC"},H:{"2":"tC"},I:{"1":"D","8":"wB I uC vC wC xC FC yC zC"},J:{"8":"E A"},K:{"1":"l","8":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"8":"A","164":"B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:2,C:"Web Cryptography"};
diff --git a/node_modules/caniuse-lite/data/features/css-all.js b/node_modules/caniuse-lite/data/features/css-all.js
new file mode 100644
index 0000000..9843044
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/css-all.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L H M N O"},C:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 4 5 HC wB I z J E F G A B C K L H M N O j k IC JC"},D:{"1":"GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB"},E:{"1":"A B C K L H PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E F G LC 2B MC NC OC"},F:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 G B C H M N O j k UC VC WC XC tB EC YC uB"},G:{"1":"fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"F 2B ZC FC aC bC cC dC eC"},H:{"2":"tC"},I:{"1":"D zC","2":"wB I uC vC wC xC FC yC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:2,C:"CSS all property"};
diff --git a/node_modules/caniuse-lite/data/features/css-animation.js b/node_modules/caniuse-lite/data/features/css-animation.js
new file mode 100644
index 0000000..61e6b58
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/css-animation.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"A B","2":"J E F G GC"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"HC wB I IC JC","33":"z J E F G A B C K L H"},D:{"1":"MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","33":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB"},E:{"1":"G A B C K L H PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"LC 2B","33":"J E F MC NC OC","292":"I z"},F:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i uB","2":"G B UC VC WC XC tB EC YC","33":"0 1 2 3 4 5 6 7 8 C H M N O j k"},G:{"1":"eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","33":"F bC cC dC","164":"2B ZC FC aC"},H:{"2":"tC"},I:{"1":"D","33":"I xC FC yC zC","164":"wB uC vC wC"},J:{"33":"E A"},K:{"1":"l uB","2":"A B C tB EC"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:5,C:"CSS Animation"};
diff --git a/node_modules/caniuse-lite/data/features/css-any-link.js b/node_modules/caniuse-lite/data/features/css-any-link.js
new file mode 100644
index 0000000..8c0bb25
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/css-any-link.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L H M N O"},C:{"1":"TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","16":"HC","33":"0 1 2 3 4 5 6 7 8 9 wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB IC JC"},D:{"1":"gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","16":"I z J E F G A B C K L","33":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB"},E:{"1":"G A B C K L H PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","16":"I z J LC 2B MC","33":"E F NC OC"},F:{"1":"VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"G B C UC VC WC XC tB EC YC uB","33":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB"},G:{"1":"eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","16":"2B ZC FC aC","33":"F bC cC dC"},H:{"2":"tC"},I:{"1":"D","16":"wB I uC vC wC xC FC","33":"yC zC"},J:{"16":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"j k 5C 3B 6C 7C 8C 9C AD vB BD CD DD","16":"I","33":"1C 2C 3C 4C"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"GD","33":"FD"}},B:5,C:"CSS :any-link selector"};
diff --git a/node_modules/caniuse-lite/data/features/css-appearance.js b/node_modules/caniuse-lite/data/features/css-appearance.js
new file mode 100644
index 0000000..c2828d0
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/css-appearance.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","33":"S","164":"P Q R","388":"C K L H M N O"},C:{"1":"Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","164":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P","676":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB IC JC"},D:{"1":"T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","33":"S","164":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R"},E:{"1":"6B 7B 8B vB 9B AC BC CC DC SC TC","164":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B"},F:{"1":"l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"G B C UC VC WC XC tB EC YC uB","33":"lB mB nB","164":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB"},G:{"1":"6B 7B 8B vB 9B AC BC CC DC","164":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B"},H:{"2":"tC"},I:{"1":"D","164":"wB I uC vC wC xC FC yC zC"},J:{"164":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A","388":"B"},O:{"164":"0C"},P:{"164":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"164":"4B"},R:{"1":"ED"},S:{"1":"GD","164":"FD"}},B:5,C:"CSS Appearance"};
diff --git a/node_modules/caniuse-lite/data/features/css-at-counter-style.js b/node_modules/caniuse-lite/data/features/css-at-counter-style.js
new file mode 100644
index 0000000..7378d56
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/css-at-counter-style.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"2":"C K L H M N O P Q R S T U V W X Y Z","132":"a b c d e f g h i m n o p q r s t u v w x y D"},C:{"2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB IC JC","132":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z","132":"a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"2":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC","4":"TC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB UC VC WC XC tB EC YC uB","132":"rB sB P Q R zB S T U V W X Y Z a b c d e f g h i"},G:{"2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"2":"wB I uC vC wC xC FC yC zC","132":"D"},J:{"2":"E A"},K:{"2":"A B C tB EC uB","132":"l"},L:{"132":"D"},M:{"132":"D"},N:{"2":"A B"},O:{"2":"0C"},P:{"2":"I 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD","132":"j k vB BD CD DD"},Q:{"2":"4B"},R:{"132":"ED"},S:{"132":"FD GD"}},B:4,C:"CSS Counter Styles"};
diff --git a/node_modules/caniuse-lite/data/features/css-autofill.js b/node_modules/caniuse-lite/data/features/css-autofill.js
new file mode 100644
index 0000000..e2c1e7b
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/css-autofill.js
@@ -0,0 +1 @@
+module.exports={A:{D:{"33":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},L:{"33":"D"},B:{"2":"C K L H M N O","33":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U IC JC"},M:{"1":"D"},A:{"2":"J E F G A B GC"},F:{"2":"G B C UC VC WC XC tB EC YC uB","33":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i"},K:{"2":"A B C tB EC uB","33":"l"},E:{"1":"H RC 5B 6B 7B 8B vB 9B AC BC CC DC SC","2":"TC","33":"I z J E F G A B C K L LC 2B MC NC OC PC 3B tB uB 4B QC"},G:{"1":"sC 5B 6B 7B 8B vB 9B AC BC CC DC","33":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC"},P:{"33":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},I:{"2":"wB I uC vC wC xC FC","33":"D yC zC"}},B:6,C:":autofill CSS pseudo-class"};
diff --git a/node_modules/caniuse-lite/data/features/css-backdrop-filter.js b/node_modules/caniuse-lite/data/features/css-backdrop-filter.js
new file mode 100644
index 0000000..12e7e72
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/css-backdrop-filter.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L H M","257":"N O"},C:{"1":"p q r s t u v w x y D 0B 1B","2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB IC JC","578":"lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o"},D:{"1":"qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB","194":"QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB"},E:{"2":"I z J E F LC 2B MC NC OC","33":"G A B C K L H PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"1":"fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB UC VC WC XC tB EC YC uB","194":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB"},G:{"2":"F 2B ZC FC aC bC cC dC","33":"eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"j k 7C 8C 9C AD vB BD CD DD","2":"I","194":"1C 2C 3C 4C 5C 3B 6C"},Q:{"2":"4B"},R:{"1":"ED"},S:{"2":"FD GD"}},B:7,C:"CSS Backdrop Filter"};
diff --git a/node_modules/caniuse-lite/data/features/css-background-offsets.js b/node_modules/caniuse-lite/data/features/css-background-offsets.js
new file mode 100644
index 0000000..a0547f1
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/css-background-offsets.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"G A B","2":"J E F GC"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"HC wB I z J E F G A B C IC JC"},D:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 I z J E F G A B C K L H M N O j k"},E:{"1":"E F G A B C K L H OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J LC 2B MC NC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i WC XC tB EC YC uB","2":"G UC VC"},G:{"1":"F cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"2B ZC FC aC bC"},H:{"1":"tC"},I:{"1":"D yC zC","2":"wB I uC vC wC xC FC"},J:{"1":"A","2":"E"},K:{"1":"B C l tB EC uB","2":"A"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:4,C:"CSS background-position edge offsets"};
diff --git a/node_modules/caniuse-lite/data/features/css-backgroundblendmode.js b/node_modules/caniuse-lite/data/features/css-backgroundblendmode.js
new file mode 100644
index 0000000..e31ddd7
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/css-backgroundblendmode.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L H M N O"},C:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 4 5 6 7 8 HC wB I z J E F G A B C K L H M N O j k IC JC"},D:{"1":"EB FB GB HB IB JB KB LB MB NB OB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB","260":"PB"},E:{"1":"B C K L H 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E LC 2B MC NC","132":"F G A OC PC"},F:{"1":"1 2 3 4 5 6 7 8 9 AB BB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 G B C H M N O j k UC VC WC XC tB EC YC uB","260":"CB"},G:{"1":"hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"2B ZC FC aC bC cC","132":"F dC eC fC gC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:4,C:"CSS background-blend-mode"};
diff --git a/node_modules/caniuse-lite/data/features/css-boxdecorationbreak.js b/node_modules/caniuse-lite/data/features/css-boxdecorationbreak.js
new file mode 100644
index 0000000..852ef9d
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/css-boxdecorationbreak.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"2":"C K L H M N O","164":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB IC JC"},D:{"2":"0 I z J E F G A B C K L H M N O j k","164":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"2":"I z J LC 2B MC","164":"E F G A B C K L H NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"2":"G UC VC WC XC","129":"B C tB EC YC uB","164":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i"},G:{"2":"2B ZC FC aC bC","164":"F cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"132":"tC"},I:{"2":"wB I uC vC wC xC FC","164":"D yC zC"},J:{"2":"E","164":"A"},K:{"2":"A","129":"B C tB EC uB","164":"l"},L:{"164":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"164":"0C"},P:{"164":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"164":"4B"},R:{"164":"ED"},S:{"1":"FD GD"}},B:4,C:"CSS box-decoration-break"};
diff --git a/node_modules/caniuse-lite/data/features/css-boxshadow.js b/node_modules/caniuse-lite/data/features/css-boxshadow.js
new file mode 100644
index 0000000..d434b3e
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/css-boxshadow.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"G A B","2":"J E F GC"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"HC wB","33":"IC JC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","33":"I z J E F G"},E:{"1":"J E F G A B C K L H MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","33":"z","164":"I LC 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i WC XC tB EC YC uB","2":"G UC VC"},G:{"1":"F aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","33":"ZC FC","164":"2B"},H:{"2":"tC"},I:{"1":"I D xC FC yC zC","164":"wB uC vC wC"},J:{"1":"A","33":"E"},K:{"1":"B C l tB EC uB","2":"A"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:4,C:"CSS3 Box-shadow"};
diff --git a/node_modules/caniuse-lite/data/features/css-canvas.js b/node_modules/caniuse-lite/data/features/css-canvas.js
new file mode 100644
index 0000000..93fb3bb
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/css-canvas.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"2":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC"},D:{"2":"RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","33":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB"},E:{"2":"LC 2B","33":"I z J E F G A B C K L H MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"2":"G B C EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i UC VC WC XC tB EC YC uB","33":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB"},G:{"33":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"2":"D","33":"wB I uC vC wC xC FC yC zC"},J:{"33":"E A"},K:{"2":"A B C l tB EC uB"},L:{"2":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"2":"0C"},P:{"2":"j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD","33":"I"},Q:{"2":"4B"},R:{"2":"ED"},S:{"2":"FD GD"}},B:7,C:"CSS Canvas Drawings"};
diff --git a/node_modules/caniuse-lite/data/features/css-caret-color.js b/node_modules/caniuse-lite/data/features/css-caret-color.js
new file mode 100644
index 0000000..a8dfafe
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/css-caret-color.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L H M N O"},C:{"1":"WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB IC JC"},D:{"1":"aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB"},E:{"1":"C K L H tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E F G A B LC 2B MC NC OC PC 3B"},F:{"1":"NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB UC VC WC XC tB EC YC uB"},G:{"1":"jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"j k 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD","2":"I 1C 2C"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"GD","2":"FD"}},B:2,C:"CSS caret-color"};
diff --git a/node_modules/caniuse-lite/data/features/css-cascade-layers.js b/node_modules/caniuse-lite/data/features/css-cascade-layers.js
new file mode 100644
index 0000000..419791d
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/css-cascade-layers.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"i m n o p q r s t u v w x y D","2":"C K L H M N O P Q R S T U V W X Y Z a b c d e","322":"f g h"},C:{"1":"g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c IC JC","194":"d e f"},D:{"1":"i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e","322":"f g h"},E:{"1":"6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B"},F:{"1":"V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U UC VC WC XC tB EC YC uB"},G:{"1":"6B 7B 8B vB 9B AC BC CC DC","2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"2":"0C"},P:{"1":"j k CD DD","2":"I 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD"},Q:{"2":"4B"},R:{"2":"ED"},S:{"2":"FD GD"}},B:4,C:"CSS Cascade Layers"};
diff --git a/node_modules/caniuse-lite/data/features/css-case-insensitive.js b/node_modules/caniuse-lite/data/features/css-case-insensitive.js
new file mode 100644
index 0000000..7114ec9
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/css-case-insensitive.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L H M N O"},C:{"1":"QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB IC JC"},D:{"1":"SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB"},E:{"1":"G A B C K L H PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E F LC 2B MC NC OC"},F:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB UC VC WC XC tB EC YC uB"},G:{"1":"eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"F 2B ZC FC aC bC cC dC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD","2":"I"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:5,C:"Case-insensitive CSS attribute selectors"};
diff --git a/node_modules/caniuse-lite/data/features/css-clip-path.js b/node_modules/caniuse-lite/data/features/css-clip-path.js
new file mode 100644
index 0000000..05dcdff
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/css-clip-path.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"2":"C K L H M N","260":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","3138":"O"},C:{"1":"XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"HC wB","132":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB IC JC","644":"QB RB SB TB UB VB WB"},D:{"2":"0 1 2 I z J E F G A B C K L H M N O j k","260":"YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","292":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB"},E:{"2":"I z J LC 2B MC NC","260":"L H 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","292":"E F G A B C K OC PC 3B tB uB"},F:{"2":"G B C UC VC WC XC tB EC YC uB","260":"LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","292":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB JB KB"},G:{"2":"2B ZC FC aC bC","260":"mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","292":"F cC dC eC fC gC hC iC jC kC lC"},H:{"2":"tC"},I:{"2":"wB I uC vC wC xC FC","260":"D","292":"yC zC"},J:{"2":"E A"},K:{"2":"A B C tB EC uB","260":"l"},L:{"260":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"260":"0C"},P:{"292":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"260":"4B"},R:{"260":"ED"},S:{"1":"GD","644":"FD"}},B:4,C:"CSS clip-path property (for HTML)"};
diff --git a/node_modules/caniuse-lite/data/features/css-color-adjust.js b/node_modules/caniuse-lite/data/features/css-color-adjust.js
new file mode 100644
index 0000000..a6313a6
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/css-color-adjust.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"2":"C K L H M N O","33":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB IC JC"},D:{"16":"I z J E F G A B C K L H M N O","33":"0 1 2 3 4 5 6 7 8 9 j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"1":"6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z LC 2B MC","33":"J E F G A B C K L H NC OC PC 3B tB uB 4B QC RC 5B"},F:{"2":"G B C UC VC WC XC tB EC YC uB","33":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i"},G:{"1":"6B 7B 8B vB 9B AC BC CC DC","16":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B"},H:{"2":"tC"},I:{"16":"wB I uC vC wC xC FC yC zC","33":"D"},J:{"16":"E A"},K:{"2":"A B C tB EC uB","33":"l"},L:{"16":"D"},M:{"1":"D"},N:{"16":"A B"},O:{"16":"0C"},P:{"16":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"33":"4B"},R:{"16":"ED"},S:{"1":"FD GD"}},B:4,C:"CSS print-color-adjust"};
diff --git a/node_modules/caniuse-lite/data/features/css-color-function.js b/node_modules/caniuse-lite/data/features/css-color-function.js
new file mode 100644
index 0000000..fb16005
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/css-color-function.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"x y D","2":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t","322":"u v w"},C:{"1":"D 0B 1B","2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w IC JC","578":"x y"},D:{"1":"x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t","322":"u v w"},E:{"1":"H RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E F G A LC 2B MC NC OC PC","132":"B C K L 3B tB uB 4B QC"},F:{"1":"h i","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d UC VC WC XC tB EC YC uB","322":"e f g"},G:{"1":"sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"F 2B ZC FC aC bC cC dC eC fC gC","132":"hC iC jC kC lC mC nC oC pC qC rC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"2":"A B C l tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"2":"0C"},P:{"2":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"2":"4B"},R:{"2":"ED"},S:{"2":"FD GD"}},B:4,C:"CSS color() function"};
diff --git a/node_modules/caniuse-lite/data/features/css-conic-gradients.js b/node_modules/caniuse-lite/data/features/css-conic-gradients.js
new file mode 100644
index 0000000..8051c84
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/css-conic-gradients.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L H M N O"},C:{"1":"S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB IC JC","578":"pB qB rB sB P Q R zB"},D:{"1":"kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB","194":"xB cB yB dB eB fB gB hB iB jB"},E:{"1":"K L H uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E F G A B C LC 2B MC NC OC PC 3B tB"},F:{"1":"fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB UC VC WC XC tB EC YC uB","194":"PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB"},G:{"1":"lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"j k 3B 6C 7C 8C 9C AD vB BD CD DD","2":"I 1C 2C 3C 4C 5C"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"GD","2":"FD"}},B:5,C:"CSS Conical Gradients"};
diff --git a/node_modules/caniuse-lite/data/features/css-container-queries-style.js b/node_modules/caniuse-lite/data/features/css-container-queries-style.js
new file mode 100644
index 0000000..a5b27e3
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/css-container-queries-style.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"2":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s","194":"t u v w","260":"x y D"},C:{"2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s","194":"t u v w","260":"x y D 0B 1B KC"},E:{"2":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b UC VC WC XC tB EC YC uB","194":"c d e f g","260":"h i"},G:{"2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"2":"wB I uC vC wC xC FC yC zC","260":"D"},J:{"2":"E A"},K:{"2":"A B C tB EC uB","194":"l"},L:{"260":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"2":"0C"},P:{"2":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"2":"4B"},R:{"2":"ED"},S:{"2":"FD GD"}},B:5,C:"CSS Container Style Queries"};
diff --git a/node_modules/caniuse-lite/data/features/css-container-queries.js b/node_modules/caniuse-lite/data/features/css-container-queries.js
new file mode 100644
index 0000000..b560497
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/css-container-queries.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"s t u v w x y D","2":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q","516":"r"},C:{"1":"w x y D 0B 1B","2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v IC JC"},D:{"1":"s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a","194":"c d e f g h i m n o p q","450":"b","516":"r"},E:{"1":"vB 9B AC BC CC DC SC TC","2":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B"},F:{"1":"d e f g h i","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB UC VC WC XC tB EC YC uB","194":"P Q R zB S T U V W X Y Z","516":"a b c"},G:{"1":"vB 9B AC BC CC DC","2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"2":"0C"},P:{"1":"j k","2":"I 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"2":"4B"},R:{"2":"ED"},S:{"2":"FD GD"}},B:5,C:"CSS Container Queries (Size)"};
diff --git a/node_modules/caniuse-lite/data/features/css-container-query-units.js b/node_modules/caniuse-lite/data/features/css-container-query-units.js
new file mode 100644
index 0000000..b35075d
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/css-container-query-units.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"r s t u v w x y D","2":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q"},C:{"1":"w x y D 0B 1B","2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v IC JC"},D:{"1":"r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b","194":"n o p q","450":"c d e f g h i m"},E:{"1":"vB 9B AC BC CC DC SC TC","2":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B"},F:{"1":"a b c d e f g h i","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB UC VC WC XC tB EC YC uB","194":"P Q R zB S T U V W X Y Z"},G:{"1":"vB 9B AC BC CC DC","2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"2":"0C"},P:{"1":"j k","2":"I 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"2":"4B"},R:{"2":"ED"},S:{"2":"FD GD"}},B:5,C:"CSS Container Query Units"};
diff --git a/node_modules/caniuse-lite/data/features/css-containment.js b/node_modules/caniuse-lite/data/features/css-containment.js
new file mode 100644
index 0000000..3376b6a
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/css-containment.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L H M N O"},C:{"1":"kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB IC JC","194":"KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB"},D:{"1":"VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB","66":"UB"},E:{"1":"6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B"},F:{"1":"JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB UC VC WC XC tB EC YC uB","66":"HB IB"},G:{"1":"6B 7B 8B vB 9B AC BC CC DC","2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"j k 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD","2":"I 1C"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"GD","194":"FD"}},B:2,C:"CSS Containment"};
diff --git a/node_modules/caniuse-lite/data/features/css-content-visibility.js b/node_modules/caniuse-lite/data/features/css-content-visibility.js
new file mode 100644
index 0000000..cd901ff
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/css-content-visibility.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L H M N O P Q R S T"},C:{"2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u IC JC","194":"v w x y D 0B 1B"},D:{"1":"U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T"},E:{"2":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"1":"mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB UC VC WC XC tB EC YC uB"},G:{"2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"2":"0C"},P:{"1":"j k 9C AD vB BD CD DD","2":"I 1C 2C 3C 4C 5C 3B 6C 7C 8C"},Q:{"2":"4B"},R:{"1":"ED"},S:{"2":"FD GD"}},B:5,C:"CSS content-visibility"};
diff --git a/node_modules/caniuse-lite/data/features/css-counters.js b/node_modules/caniuse-lite/data/features/css-counters.js
new file mode 100644
index 0000000..fae2059
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/css-counters.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"F G A B","2":"J E GC"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"1":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i UC VC WC XC tB EC YC uB"},G:{"1":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"1":"tC"},I:{"1":"wB I D uC vC wC xC FC yC zC"},J:{"1":"E A"},K:{"1":"A B C l tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:2,C:"CSS Counters"};
diff --git a/node_modules/caniuse-lite/data/features/css-crisp-edges.js b/node_modules/caniuse-lite/data/features/css-crisp-edges.js
new file mode 100644
index 0000000..1344f01
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/css-crisp-edges.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J GC","2340":"E F G A B"},B:{"2":"C K L H M N O","1025":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"HC wB IC","513":"gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b","545":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB JC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB","1025":"KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"1":"A B C K L H 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z LC 2B MC","164":"J","4644":"E F G NC OC PC"},F:{"2":"0 1 2 3 4 5 6 G B H M N O j k UC VC WC XC tB EC","545":"C YC uB","1025":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i"},G:{"1":"gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"2B ZC FC","4260":"aC bC","4644":"F cC dC eC fC"},H:{"2":"tC"},I:{"2":"wB I uC vC wC xC FC yC zC","1025":"D"},J:{"2":"E","4260":"A"},K:{"2":"A B tB EC","545":"C uB","1025":"l"},L:{"1025":"D"},M:{"1":"D"},N:{"2340":"A B"},O:{"1025":"0C"},P:{"1025":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1025":"4B"},R:{"1025":"ED"},S:{"1":"GD","4097":"FD"}},B:4,C:"Crisp edges/pixelated images"};
diff --git a/node_modules/caniuse-lite/data/features/css-cross-fade.js b/node_modules/caniuse-lite/data/features/css-cross-fade.js
new file mode 100644
index 0000000..5f30d25
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/css-cross-fade.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"2":"C K L H M N O","33":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC"},D:{"2":"I z J E F G A B C K L H M","33":"0 1 2 3 4 5 6 7 8 9 N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"1":"A B C K L H 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z LC 2B","33":"J E F G MC NC OC PC"},F:{"2":"G B C UC VC WC XC tB EC YC uB","33":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i"},G:{"1":"gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"2B ZC FC","33":"F aC bC cC dC eC fC"},H:{"2":"tC"},I:{"2":"wB I uC vC wC xC FC","33":"D yC zC"},J:{"2":"E A"},K:{"2":"A B C tB EC uB","33":"l"},L:{"33":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"33":"0C"},P:{"33":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"33":"4B"},R:{"33":"ED"},S:{"2":"FD GD"}},B:4,C:"CSS Cross-Fade Function"};
diff --git a/node_modules/caniuse-lite/data/features/css-default-pseudo.js b/node_modules/caniuse-lite/data/features/css-default-pseudo.js
new file mode 100644
index 0000000..16f69eb
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/css-default-pseudo.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L H M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","16":"HC wB IC JC"},D:{"1":"UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","16":"I z J E F G A B C K L","132":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB"},E:{"1":"B C K L H 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","16":"I z LC 2B","132":"J E F G A MC NC OC PC"},F:{"1":"HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","16":"G B UC VC WC XC tB EC","132":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB","260":"C YC uB"},G:{"1":"hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","16":"2B ZC FC aC bC","132":"F cC dC eC fC gC"},H:{"260":"tC"},I:{"1":"D","16":"wB uC vC wC","132":"I xC FC yC zC"},J:{"16":"E","132":"A"},K:{"1":"l","16":"A B C tB EC","260":"uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD","132":"I"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:5,C:":default CSS pseudo-class"};
diff --git a/node_modules/caniuse-lite/data/features/css-descendant-gtgt.js b/node_modules/caniuse-lite/data/features/css-descendant-gtgt.js
new file mode 100644
index 0000000..4e65de9
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/css-descendant-gtgt.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"2":"C K L H M N O Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","16":"P"},C:{"2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"1":"B","2":"I z J E F G A C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i UC VC WC XC tB EC YC uB"},G:{"2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"2":"wB I D uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"2":"A B C l tB EC uB"},L:{"2":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"2":"0C"},P:{"2":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"2":"4B"},R:{"2":"ED"},S:{"2":"FD GD"}},B:7,C:"Explicit descendant combinator >>"};
diff --git a/node_modules/caniuse-lite/data/features/css-deviceadaptation.js b/node_modules/caniuse-lite/data/features/css-deviceadaptation.js
new file mode 100644
index 0000000..70d8f57
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/css-deviceadaptation.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G GC","164":"A B"},B:{"66":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","164":"C K L H M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC"},D:{"2":"0 1 2 3 4 5 6 7 I z J E F G A B C K L H M N O j k","66":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"2":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB UC VC WC XC tB EC YC uB","66":"JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i"},G:{"2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"292":"tC"},I:{"2":"wB I D uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"2":"A l","292":"B C tB EC uB"},L:{"2":"D"},M:{"2":"D"},N:{"164":"A B"},O:{"2":"0C"},P:{"2":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"66":"4B"},R:{"2":"ED"},S:{"2":"FD GD"}},B:5,C:"CSS Device Adaptation"};
diff --git a/node_modules/caniuse-lite/data/features/css-dir-pseudo.js b/node_modules/caniuse-lite/data/features/css-dir-pseudo.js
new file mode 100644
index 0000000..7598fb4
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/css-dir-pseudo.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"2":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q","194":"r s t u v w x y D"},C:{"1":"SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"HC wB I z J E F G A B C K L H M IC JC","33":"0 1 2 3 4 5 6 7 8 9 N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z","194":"a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"1":"CC DC SC TC","2":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z UC VC WC XC tB EC YC uB","194":"a b c d e f g h i"},G:{"1":"CC DC","2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC"},H:{"2":"tC"},I:{"2":"wB I D uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"2":"A B C l tB EC uB"},L:{"2":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"2":"0C"},P:{"2":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"2":"4B"},R:{"2":"ED"},S:{"1":"GD","33":"FD"}},B:5,C:":dir() CSS pseudo-class"};
diff --git a/node_modules/caniuse-lite/data/features/css-display-contents.js b/node_modules/caniuse-lite/data/features/css-display-contents.js
new file mode 100644
index 0000000..21bd259
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/css-display-contents.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"2":"C K L H M N O","132":"P Q R S T U V W X","260":"Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB IC JC","132":"GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB","260":"dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB","132":"gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X","194":"bB xB cB yB dB eB fB","260":"Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"2":"I z J E F G A B LC 2B MC NC OC PC 3B","132":"C K L H tB uB 4B QC RC 5B 6B 7B 8B","516":"9B AC BC CC DC SC TC","772":"vB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB UC VC WC XC tB EC YC uB","132":"VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB","260":"qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i"},G:{"2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC","132":"jC kC lC mC nC oC","260":"pC qC rC sC 5B 6B 7B 8B","772":"vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"2":"wB I uC vC wC xC FC yC zC","260":"D"},J:{"2":"E A"},K:{"2":"A B C tB EC uB","260":"l"},L:{"260":"D"},M:{"260":"D"},N:{"2":"A B"},O:{"132":"0C"},P:{"2":"I 1C 2C 3C 4C","132":"5C 3B 6C 7C 8C 9C","260":"j k AD vB BD CD DD"},Q:{"132":"4B"},R:{"260":"ED"},S:{"132":"FD","260":"GD"}},B:4,C:"CSS display: contents"};
diff --git a/node_modules/caniuse-lite/data/features/css-element-function.js b/node_modules/caniuse-lite/data/features/css-element-function.js
new file mode 100644
index 0000000..6cbe2f3
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/css-element-function.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"2":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"33":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","164":"HC wB IC JC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"2":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i UC VC WC XC tB EC YC uB"},G:{"2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"2":"wB I D uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"2":"A B C l tB EC uB"},L:{"2":"D"},M:{"33":"D"},N:{"2":"A B"},O:{"2":"0C"},P:{"2":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"2":"4B"},R:{"2":"ED"},S:{"33":"FD GD"}},B:5,C:"CSS element() function"};
diff --git a/node_modules/caniuse-lite/data/features/css-env-function.js b/node_modules/caniuse-lite/data/features/css-env-function.js
new file mode 100644
index 0000000..a6315c7
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/css-env-function.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L H M N O"},C:{"1":"gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB IC JC"},D:{"1":"kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB"},E:{"1":"C K L H tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E F G A LC 2B MC NC OC PC 3B","132":"B"},F:{"1":"ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB UC VC WC XC tB EC YC uB"},G:{"1":"jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"F 2B ZC FC aC bC cC dC eC fC gC hC","132":"iC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"j k 3B 6C 7C 8C 9C AD vB BD CD DD","2":"I 1C 2C 3C 4C 5C"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"GD","2":"FD"}},B:7,C:"CSS Environment Variables env()"};
diff --git a/node_modules/caniuse-lite/data/features/css-exclusions.js b/node_modules/caniuse-lite/data/features/css-exclusions.js
new file mode 100644
index 0000000..366b838
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/css-exclusions.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G GC","33":"A B"},B:{"2":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","33":"C K L H M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"2":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i UC VC WC XC tB EC YC uB"},G:{"2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"2":"wB I D uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"2":"A B C l tB EC uB"},L:{"2":"D"},M:{"2":"D"},N:{"33":"A B"},O:{"2":"0C"},P:{"2":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"2":"4B"},R:{"2":"ED"},S:{"2":"FD GD"}},B:5,C:"CSS Exclusions Level 1"};
diff --git a/node_modules/caniuse-lite/data/features/css-featurequeries.js b/node_modules/caniuse-lite/data/features/css-featurequeries.js
new file mode 100644
index 0000000..63f710f
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/css-featurequeries.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 HC wB I z J E F G A B C K L H M N O j k IC JC"},D:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 I z J E F G A B C K L H M N O j k"},E:{"1":"G A B C K L H PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E F LC 2B MC NC OC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i uB","2":"G B C UC VC WC XC tB EC YC"},G:{"1":"eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"F 2B ZC FC aC bC cC dC"},H:{"1":"tC"},I:{"1":"D yC zC","2":"wB I uC vC wC xC FC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:4,C:"CSS Feature Queries"};
diff --git a/node_modules/caniuse-lite/data/features/css-file-selector-button.js b/node_modules/caniuse-lite/data/features/css-file-selector-button.js
new file mode 100644
index 0000000..227cc49
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/css-file-selector-button.js
@@ -0,0 +1 @@
+module.exports={A:{D:{"1":"Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","33":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X"},L:{"1":"D"},B:{"1":"Y Z a b c d e f g h i m n o p q r s t u v w x y D","33":"C K L H M N O P Q R S T U V W X"},C:{"1":"zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R IC JC"},M:{"1":"D"},A:{"2":"J E F G GC","33":"A B"},F:{"1":"pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"G B C UC VC WC XC tB EC YC uB","33":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB"},K:{"1":"l","2":"A B C tB EC uB"},E:{"1":"H QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC","2":"TC","33":"I z J E F G A B C K L LC 2B MC NC OC PC 3B tB uB 4B"},G:{"1":"rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","33":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC"},P:{"1":"j k AD vB BD CD DD","33":"I 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C"},I:{"1":"D","2":"wB I uC vC wC xC FC","33":"yC zC"}},B:6,C:"::file-selector-button CSS pseudo-element"};
diff --git a/node_modules/caniuse-lite/data/features/css-filter-function.js b/node_modules/caniuse-lite/data/features/css-filter-function.js
new file mode 100644
index 0000000..bbc54ce
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/css-filter-function.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"2":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"1":"A B C K L H PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E F LC 2B MC NC OC","33":"G"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i UC VC WC XC tB EC YC uB"},G:{"1":"gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"F 2B ZC FC aC bC cC dC","33":"eC fC"},H:{"2":"tC"},I:{"2":"wB I D uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"2":"A B C l tB EC uB"},L:{"2":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"2":"0C"},P:{"2":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"2":"4B"},R:{"2":"ED"},S:{"2":"FD GD"}},B:5,C:"CSS filter() function"};
diff --git a/node_modules/caniuse-lite/data/features/css-filters.js b/node_modules/caniuse-lite/data/features/css-filters.js
new file mode 100644
index 0000000..f1e3e42
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/css-filters.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","1028":"K L H M N O","1346":"C"},C:{"1":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"HC wB IC","196":"DB","516":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB JC"},D:{"1":"WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"I z J E F G A B C K L H M N","33":"0 1 2 3 4 5 6 7 8 9 O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB"},E:{"1":"A B C K L H PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z LC 2B MC","33":"J E F G NC OC"},F:{"1":"JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"G B C UC VC WC XC tB EC YC uB","33":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB"},G:{"1":"fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"2B ZC FC aC","33":"F bC cC dC eC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC","33":"yC zC"},J:{"2":"E","33":"A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"j k 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD","33":"I 1C 2C"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:5,C:"CSS Filter Effects"};
diff --git a/node_modules/caniuse-lite/data/features/css-first-letter.js b/node_modules/caniuse-lite/data/features/css-first-letter.js
new file mode 100644
index 0000000..a982f40
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/css-first-letter.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"G A B","16":"GC","516":"F","1540":"J E"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC","132":"wB","260":"HC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","16":"z J E F","132":"I"},E:{"1":"J E F G A B C K L H MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","16":"z LC","132":"I 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i YC uB","16":"G UC","260":"B VC WC XC tB EC"},G:{"1":"F aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","16":"2B ZC FC"},H:{"1":"tC"},I:{"1":"wB I D xC FC yC zC","16":"uC vC","132":"wC"},J:{"1":"E A"},K:{"1":"C l uB","260":"A B tB EC"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:2,C:"::first-letter CSS pseudo-element selector"};
diff --git a/node_modules/caniuse-lite/data/features/css-first-line.js b/node_modules/caniuse-lite/data/features/css-first-line.js
new file mode 100644
index 0000000..152dea4
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/css-first-line.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"G A B","132":"J E F GC"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"1":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i UC VC WC XC tB EC YC uB"},G:{"1":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"1":"tC"},I:{"1":"wB I D uC vC wC xC FC yC zC"},J:{"1":"E A"},K:{"1":"A B C l tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:2,C:"CSS first-line pseudo-element"};
diff --git a/node_modules/caniuse-lite/data/features/css-fixed.js b/node_modules/caniuse-lite/data/features/css-fixed.js
new file mode 100644
index 0000000..279fda2
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/css-fixed.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"E F G A B","2":"GC","8":"J"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"1":"I z J E F G A B C K L H LC 2B MC NC OC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","1025":"PC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i UC VC WC XC tB EC YC uB"},G:{"1":"F dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"2B ZC FC","132":"aC bC cC"},H:{"2":"tC"},I:{"1":"wB D yC zC","260":"uC vC wC","513":"I xC FC"},J:{"1":"E A"},K:{"1":"A B C l tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:2,C:"CSS position:fixed"};
diff --git a/node_modules/caniuse-lite/data/features/css-focus-visible.js b/node_modules/caniuse-lite/data/features/css-focus-visible.js
new file mode 100644
index 0000000..ff77b29
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/css-focus-visible.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L H M N O","328":"P Q R S T U"},C:{"1":"U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"HC wB IC JC","161":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T"},D:{"1":"V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB","328":"iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U"},E:{"1":"6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E F G A B C K L LC 2B MC NC OC PC 3B tB uB 4B QC","578":"H RC 5B"},F:{"1":"nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB UC VC WC XC tB EC YC uB","328":"hB iB jB kB lB mB"},G:{"1":"6B 7B 8B vB 9B AC BC CC DC","2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC","578":"sC 5B"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"2":"0C"},P:{"1":"j k 9C AD vB BD CD DD","2":"I 1C 2C 3C 4C 5C 3B 6C 7C 8C"},Q:{"2":"4B"},R:{"1":"ED"},S:{"161":"FD GD"}},B:5,C:":focus-visible CSS pseudo-class"};
diff --git a/node_modules/caniuse-lite/data/features/css-focus-within.js b/node_modules/caniuse-lite/data/features/css-focus-within.js
new file mode 100644
index 0000000..7bf405d
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/css-focus-within.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L H M N O"},C:{"1":"VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB IC JC"},D:{"1":"cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB","194":"xB"},E:{"1":"B C K L H 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E F G A LC 2B MC NC OC PC"},F:{"1":"QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB UC VC WC XC tB EC YC uB","194":"PB"},G:{"1":"hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"F 2B ZC FC aC bC cC dC eC fC gC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"j k 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD","2":"I 1C 2C 3C"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"GD","2":"FD"}},B:7,C:":focus-within CSS pseudo-class"};
diff --git a/node_modules/caniuse-lite/data/features/css-font-palette.js b/node_modules/caniuse-lite/data/features/css-font-palette.js
new file mode 100644
index 0000000..df33aaf
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/css-font-palette.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"r s t u v w x y D","2":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q"},C:{"1":"t u v w x y D 0B 1B","2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s IC JC"},D:{"1":"n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m"},E:{"1":"6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B"},F:{"1":"W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V UC VC WC XC tB EC YC uB"},G:{"1":"6B 7B 8B vB 9B AC BC CC DC","2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"2":"0C"},P:{"1":"j k DD","2":"I 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD"},Q:{"2":"4B"},R:{"2":"ED"},S:{"2":"FD GD"}},B:5,C:"CSS font-palette"};
diff --git a/node_modules/caniuse-lite/data/features/css-font-rendering-controls.js b/node_modules/caniuse-lite/data/features/css-font-rendering-controls.js
new file mode 100644
index 0000000..e9c896f
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/css-font-rendering-controls.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L H M N O"},C:{"1":"bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB IC JC","194":"PB QB RB SB TB UB VB WB XB YB ZB aB"},D:{"1":"cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB","66":"SB TB UB VB WB XB YB ZB aB bB xB"},E:{"1":"C K L H tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E F G A B LC 2B MC NC OC PC 3B"},F:{"1":"QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB UC VC WC XC tB EC YC uB","66":"FB GB HB IB JB KB LB MB NB OB PB"},G:{"1":"jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"j k 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD","2":"I","66":"1C 2C 3C"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"GD","194":"FD"}},B:5,C:"CSS font-display"};
diff --git a/node_modules/caniuse-lite/data/features/css-font-stretch.js b/node_modules/caniuse-lite/data/features/css-font-stretch.js
new file mode 100644
index 0000000..42c7abe
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/css-font-stretch.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"G A B","2":"J E F GC"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"HC wB I z J E F IC JC"},D:{"1":"RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB"},E:{"1":"B C K L H tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E F G A LC 2B MC NC OC PC 3B"},F:{"1":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB UC VC WC XC tB EC YC uB"},G:{"1":"hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"F 2B ZC FC aC bC cC dC eC fC gC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"0C"},P:{"1":"j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD","2":"I"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:2,C:"CSS font-stretch"};
diff --git a/node_modules/caniuse-lite/data/features/css-gencontent.js b/node_modules/caniuse-lite/data/features/css-gencontent.js
new file mode 100644
index 0000000..642f4bc
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/css-gencontent.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"G A B","2":"J E GC","132":"F"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"1":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i UC VC WC XC tB EC YC uB"},G:{"1":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"1":"tC"},I:{"1":"wB I D uC vC wC xC FC yC zC"},J:{"1":"E A"},K:{"1":"A B C l tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:2,C:"CSS Generated content for pseudo-elements"};
diff --git a/node_modules/caniuse-lite/data/features/css-gradients.js b/node_modules/caniuse-lite/data/features/css-gradients.js
new file mode 100644
index 0000000..3a7323b
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/css-gradients.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"A B","2":"J E F G GC"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"HC wB IC","260":"0 1 2 3 4 5 6 7 8 9 M N O j k AB BB CB DB EB","292":"I z J E F G A B C K L H JC"},D:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","33":"0 1 2 3 4 A B C K L H M N O j k","548":"I z J E F G"},E:{"1":"6B 7B 8B vB 9B AC BC CC DC SC TC","2":"LC 2B","260":"E F G A B C K L H NC OC PC 3B tB uB 4B QC RC 5B","292":"J MC","804":"I z"},F:{"1":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i uB","2":"G B UC VC WC XC","33":"C YC","164":"tB EC"},G:{"1":"6B 7B 8B vB 9B AC BC CC DC","260":"F cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B","292":"aC bC","804":"2B ZC FC"},H:{"2":"tC"},I:{"1":"D yC zC","33":"I xC FC","548":"wB uC vC wC"},J:{"1":"A","548":"E"},K:{"1":"l uB","2":"A B","33":"C","164":"tB EC"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:4,C:"CSS Gradients"};
diff --git a/node_modules/caniuse-lite/data/features/css-grid-animation.js b/node_modules/caniuse-lite/data/features/css-grid-animation.js
new file mode 100644
index 0000000..0040d92
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/css-grid-animation.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"2":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB IC JC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"1":"vB 9B AC BC CC DC SC TC","2":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i UC VC WC XC tB EC YC uB"},G:{"1":"vB 9B AC BC CC DC","2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B"},H:{"2":"tC"},I:{"2":"wB I D uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"2":"A B C l tB EC uB"},L:{"2":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"2":"0C"},P:{"2":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"2":"4B"},R:{"2":"ED"},S:{"1":"GD","2":"FD"}},B:4,C:"CSS Grid animation"};
diff --git a/node_modules/caniuse-lite/data/features/css-grid.js b/node_modules/caniuse-lite/data/features/css-grid.js
new file mode 100644
index 0000000..6cd800b
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/css-grid.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F GC","8":"G","292":"A B"},B:{"1":"M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","292":"C K L H"},C:{"1":"XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"HC wB I z J E F G A B C K L H M N O IC JC","8":"0 1 2 3 4 5 6 7 8 9 j k AB BB CB DB EB FB GB HB IB","584":"JB KB LB MB NB OB PB QB RB SB TB UB","1025":"VB WB"},D:{"1":"bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 I z J E F G A B C K L H M N O j k","8":"4 5 6 7","200":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB","1025":"aB"},E:{"1":"B C K L H 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z LC 2B MC","8":"J E F G A NC OC PC"},F:{"1":"NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 6 G B C H M N O j k UC VC WC XC tB EC YC uB","200":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB"},G:{"1":"hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"2B ZC FC aC","8":"F bC cC dC eC fC gC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC","8":"FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"292":"A B"},O:{"1":"0C"},P:{"1":"j k 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD","2":"1C","8":"I"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:4,C:"CSS Grid Layout (level 1)"};
diff --git a/node_modules/caniuse-lite/data/features/css-hanging-punctuation.js b/node_modules/caniuse-lite/data/features/css-hanging-punctuation.js
new file mode 100644
index 0000000..b4d6855
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/css-hanging-punctuation.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"2":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"1":"A B C K L H 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E F G LC 2B MC NC OC PC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i UC VC WC XC tB EC YC uB"},G:{"1":"gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"F 2B ZC FC aC bC cC dC eC fC"},H:{"2":"tC"},I:{"2":"wB I D uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"2":"A B C l tB EC uB"},L:{"2":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"2":"0C"},P:{"2":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"2":"4B"},R:{"2":"ED"},S:{"2":"FD GD"}},B:4,C:"CSS hanging-punctuation"};
diff --git a/node_modules/caniuse-lite/data/features/css-has.js b/node_modules/caniuse-lite/data/features/css-has.js
new file mode 100644
index 0000000..a1680d8
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/css-has.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"r s t u v w x y D","2":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q"},C:{"2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o IC JC","322":"p q r s t u v w x y D 0B 1B"},D:{"1":"r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m","194":"n o p q"},E:{"1":"6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B"},F:{"1":"a b c d e f g h i","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z UC VC WC XC tB EC YC uB"},G:{"1":"6B 7B 8B vB 9B AC BC CC DC","2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"2":"0C"},P:{"1":"j k","2":"I 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"2":"4B"},R:{"2":"ED"},S:{"2":"FD GD"}},B:5,C:":has() CSS relational pseudo-class"};
diff --git a/node_modules/caniuse-lite/data/features/css-hyphens.js b/node_modules/caniuse-lite/data/features/css-hyphens.js
new file mode 100644
index 0000000..0835042
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/css-hyphens.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G GC","33":"A B"},B:{"1":"r s t u v w x y D","33":"C K L H M N O","132":"P Q R S T U V W","260":"X Y Z a b c d e f g h i m n o p q"},C:{"1":"MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"HC wB I z IC JC","33":"0 1 2 3 4 5 6 7 8 9 J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB"},D:{"1":"X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB","132":"YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W"},E:{"2":"I z LC 2B","33":"J E F G A B C K L H MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"1":"a b c d e f g h i","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB UC VC WC XC tB EC YC uB","132":"LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z"},G:{"2":"2B ZC","33":"F FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"4":"0C"},P:{"1":"j k 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD","2":"I","132":"1C"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:4,C:"CSS Hyphenation"};
diff --git a/node_modules/caniuse-lite/data/features/css-image-orientation.js b/node_modules/caniuse-lite/data/features/css-image-orientation.js
new file mode 100644
index 0000000..9ebe76d
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/css-image-orientation.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L H M N O P Q","257":"R S T U V W X"},C:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 4 HC wB I z J E F G A B C K L H M N O j k IC JC"},D:{"1":"Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q","257":"R S T U V W X"},E:{"1":"L H 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E F G A B C K LC 2B MC NC OC PC 3B tB uB"},F:{"1":"rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB UC VC WC XC tB EC YC uB","257":"jB kB lB mB nB l oB pB qB"},G:{"1":"qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","132":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"2":"0C"},P:{"1":"j k AD vB BD CD DD","2":"I 1C 2C 3C 4C 5C 3B 6C 7C","257":"8C 9C"},Q:{"2":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:4,C:"CSS3 image-orientation"};
diff --git a/node_modules/caniuse-lite/data/features/css-image-set.js b/node_modules/caniuse-lite/data/features/css-image-set.js
new file mode 100644
index 0000000..4724a23
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/css-image-set.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"2":"C K L H M N O","164":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y","2049":"D"},C:{"1":"D 0B 1B","2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U IC JC","66":"V W","2305":"Y Z a b c d e f g h i m n o p q r s t u v w x y","2820":"X"},D:{"1":"0B 1B KC","2":"0 I z J E F G A B C K L H M N O j","164":"1 2 3 4 5 6 7 8 9 k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y","2049":"D"},E:{"1":"TC","2":"I z LC 2B MC","132":"A B C K 3B tB uB 4B","164":"J E F G NC OC PC","1540":"L H QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC"},F:{"2":"G B C UC VC WC XC tB EC YC uB","164":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i"},G:{"2":"2B ZC FC aC","132":"gC hC iC jC kC lC mC nC oC pC","164":"F bC cC dC eC fC","1540":"qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"2":"wB I uC vC wC xC FC","164":"D yC zC"},J:{"2":"E","164":"A"},K:{"2":"A B C tB EC uB","164":"l"},L:{"2049":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"164":"0C"},P:{"164":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"164":"4B"},R:{"164":"ED"},S:{"2":"FD GD"}},B:5,C:"CSS image-set"};
diff --git a/node_modules/caniuse-lite/data/features/css-in-out-of-range.js b/node_modules/caniuse-lite/data/features/css-in-out-of-range.js
new file mode 100644
index 0000000..90147d4
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/css-in-out-of-range.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C","260":"K L H M N O"},C:{"1":"TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 4 5 6 7 HC wB I z J E F G A B C K L H M N O j k IC JC","516":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB"},D:{"1":"WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"I","16":"z J E F G A B C K L","260":"VB","772":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB"},E:{"1":"B C K L H 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I LC 2B","16":"z","772":"J E F G A MC NC OC PC"},F:{"1":"JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","16":"G UC","260":"B C IB VC WC XC tB EC YC uB","772":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB"},G:{"1":"hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"2B ZC FC","772":"F aC bC cC dC eC fC gC"},H:{"132":"tC"},I:{"1":"D","2":"wB uC vC wC","260":"I xC FC yC zC"},J:{"2":"E","260":"A"},K:{"1":"l","260":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD","260":"I"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"GD","516":"FD"}},B:5,C:":in-range and :out-of-range CSS pseudo-classes"};
diff --git a/node_modules/caniuse-lite/data/features/css-indeterminate-pseudo.js b/node_modules/caniuse-lite/data/features/css-indeterminate-pseudo.js
new file mode 100644
index 0000000..7e4569e
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/css-indeterminate-pseudo.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F GC","132":"A B","388":"G"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","132":"C K L H M N O"},C:{"1":"UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","16":"HC wB IC JC","132":"0 1 2 3 4 5 6 7 8 9 J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB","388":"I z"},D:{"1":"IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","16":"I z J E F G A B C K L","132":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB"},E:{"1":"B C K L H 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","16":"I z J LC 2B","132":"E F G A NC OC PC","388":"MC"},F:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","16":"G B UC VC WC XC tB EC","132":"0 1 2 3 4 H M N O j k","516":"C YC uB"},G:{"1":"hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","16":"2B ZC FC aC bC","132":"F cC dC eC fC gC"},H:{"516":"tC"},I:{"1":"D","16":"wB uC vC wC zC","132":"yC","388":"I xC FC"},J:{"16":"E","132":"A"},K:{"1":"l","16":"A B C tB EC","516":"uB"},L:{"1":"D"},M:{"1":"D"},N:{"132":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"GD","132":"FD"}},B:5,C:":indeterminate CSS pseudo-class"};
diff --git a/node_modules/caniuse-lite/data/features/css-initial-letter.js b/node_modules/caniuse-lite/data/features/css-initial-letter.js
new file mode 100644
index 0000000..eedf0ac
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/css-initial-letter.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"2":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v","260":"w x y D"},C:{"2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v","260":"w x y D 0B 1B KC"},E:{"2":"I z J E F LC 2B MC NC OC","4":"G","164":"A B C K L H PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g UC VC WC XC tB EC YC uB","260":"h i"},G:{"2":"F 2B ZC FC aC bC cC dC","164":"eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"2":"wB I D uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"2":"A B C l tB EC uB"},L:{"260":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"2":"0C"},P:{"1":"k","2":"I j 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"2":"4B"},R:{"2":"ED"},S:{"2":"FD GD"}},B:5,C:"CSS Initial Letter"};
diff --git a/node_modules/caniuse-lite/data/features/css-initial-value.js b/node_modules/caniuse-lite/data/features/css-initial-value.js
new file mode 100644
index 0000000..44fb1cd
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/css-initial-value.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","33":"I z J E F G A B C K L H M N O IC JC","164":"HC wB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"1":"I z J E F G A B C K L H 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","16":"LC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"G B C UC VC WC XC tB EC YC uB"},G:{"1":"F ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","16":"2B"},H:{"2":"tC"},I:{"1":"wB I D wC xC FC yC zC","16":"uC vC"},J:{"1":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:4,C:"CSS initial value"};
diff --git a/node_modules/caniuse-lite/data/features/css-lch-lab.js b/node_modules/caniuse-lite/data/features/css-lch-lab.js
new file mode 100644
index 0000000..03f36b0
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/css-lch-lab.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"x y D","2":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v","322":"w"},C:{"1":"D 0B 1B","2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w IC JC","194":"x y"},D:{"1":"x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v","322":"w"},E:{"1":"H RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E F G A B C K L LC 2B MC NC OC PC 3B tB uB 4B QC"},F:{"1":"h i","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g UC VC WC XC tB EC YC uB"},G:{"1":"sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"2":"A B C l tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"2":"0C"},P:{"2":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"2":"4B"},R:{"2":"ED"},S:{"2":"FD GD"}},B:4,C:"LCH and Lab color values"};
diff --git a/node_modules/caniuse-lite/data/features/css-letter-spacing.js b/node_modules/caniuse-lite/data/features/css-letter-spacing.js
new file mode 100644
index 0000000..43ce2b4
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/css-letter-spacing.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"G A B","16":"GC","132":"J E F"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC"},D:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","132":"0 1 2 3 4 5 6 7 8 I z J E F G A B C K L H M N O j k"},E:{"1":"E F G A B C K L H NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","16":"LC","132":"I z J 2B MC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","16":"G UC","132":"B C H M VC WC XC tB EC YC uB"},G:{"1":"F ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","16":"2B"},H:{"2":"tC"},I:{"1":"D yC zC","16":"uC vC","132":"wB I wC xC FC"},J:{"132":"E A"},K:{"1":"l","132":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:2,C:"letter-spacing CSS property"};
diff --git a/node_modules/caniuse-lite/data/features/css-line-clamp.js b/node_modules/caniuse-lite/data/features/css-line-clamp.js
new file mode 100644
index 0000000..064b710
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/css-line-clamp.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"2":"C K L H M","33":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","129":"N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB IC JC","33":"jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B"},D:{"16":"I z J E F G A B C K","33":"0 1 2 3 4 5 6 7 8 9 L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"2":"I LC 2B","33":"z J E F G A B C K L H MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"2":"G B C UC VC WC XC tB EC YC uB","33":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i"},G:{"2":"2B ZC FC","33":"F aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"16":"uC vC","33":"wB I D wC xC FC yC zC"},J:{"33":"E A"},K:{"2":"A B C tB EC uB","33":"l"},L:{"33":"D"},M:{"33":"D"},N:{"2":"A B"},O:{"33":"0C"},P:{"33":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"33":"4B"},R:{"33":"ED"},S:{"2":"FD","33":"GD"}},B:5,C:"CSS line-clamp"};
diff --git a/node_modules/caniuse-lite/data/features/css-logical-props.js b/node_modules/caniuse-lite/data/features/css-logical-props.js
new file mode 100644
index 0000000..19c9413
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/css-logical-props.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L H M N O","1028":"W X","1540":"P Q R S T U V"},C:{"1":"hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"HC","164":"0 1 2 3 4 5 6 7 8 9 wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB IC JC","1540":"KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB"},D:{"1":"Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","292":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB","1028":"W X","1540":"kB lB mB nB l oB pB qB rB sB P Q R S T U V"},E:{"1":"H RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","292":"I z J E F G A B C LC 2B MC NC OC PC 3B tB","1540":"K L uB 4B","5124":"QC"},F:{"1":"qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"G B C UC VC WC XC tB EC YC uB","292":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB","1028":"oB pB","1540":"ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l"},G:{"1":"sC 5B 6B 7B 8B vB 9B AC BC CC DC","292":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC","1540":"lC mC nC oC pC qC","5124":"rC"},H:{"2":"tC"},I:{"1":"D","292":"wB I uC vC wC xC FC yC zC"},J:{"292":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"292":"0C"},P:{"1":"j k AD vB BD CD DD","292":"I 1C 2C 3C 4C 5C","1540":"3B 6C 7C 8C 9C"},Q:{"1540":"4B"},R:{"1":"ED"},S:{"1":"GD","1540":"FD"}},B:5,C:"CSS Logical Properties"};
diff --git a/node_modules/caniuse-lite/data/features/css-marker-pseudo.js b/node_modules/caniuse-lite/data/features/css-marker-pseudo.js
new file mode 100644
index 0000000..a50a7de
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/css-marker-pseudo.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L H M N O P Q R S T U"},C:{"1":"jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB IC JC"},D:{"1":"V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U"},E:{"1":"TC","2":"I z J E F G A B LC 2B MC NC OC PC 3B","129":"C K L H tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC"},F:{"1":"nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB UC VC WC XC tB EC YC uB"},G:{"1":"jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"2":"0C"},P:{"1":"j k 9C AD vB BD CD DD","2":"I 1C 2C 3C 4C 5C 3B 6C 7C 8C"},Q:{"2":"4B"},R:{"1":"ED"},S:{"1":"GD","2":"FD"}},B:5,C:"CSS ::marker pseudo-element"};
diff --git a/node_modules/caniuse-lite/data/features/css-masks.js b/node_modules/caniuse-lite/data/features/css-masks.js
new file mode 100644
index 0000000..41bae4f
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/css-masks.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"2":"C K L H M","164":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","3138":"N","12292":"O"},C:{"1":"WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"HC wB","260":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB IC JC"},D:{"164":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"1":"6B 7B 8B vB 9B AC BC CC DC SC TC","2":"LC 2B","164":"I z J E F G A B C K L H MC NC OC PC 3B tB uB 4B QC RC 5B"},F:{"2":"G B C UC VC WC XC tB EC YC uB","164":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i"},G:{"1":"6B 7B 8B vB 9B AC BC CC DC","164":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B"},H:{"2":"tC"},I:{"164":"D yC zC","676":"wB I uC vC wC xC FC"},J:{"164":"E A"},K:{"2":"A B C tB EC uB","164":"l"},L:{"164":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"164":"0C"},P:{"164":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"164":"4B"},R:{"164":"ED"},S:{"1":"GD","260":"FD"}},B:4,C:"CSS Masks"};
diff --git a/node_modules/caniuse-lite/data/features/css-matches-pseudo.js b/node_modules/caniuse-lite/data/features/css-matches-pseudo.js
new file mode 100644
index 0000000..99233f4
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/css-matches-pseudo.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L H M N O","1220":"P Q R S T U V W"},C:{"1":"sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","16":"HC wB IC JC","548":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB"},D:{"1":"X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","16":"I z J E F G A B C K L","164":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB","196":"gB hB iB","1220":"jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W"},E:{"1":"L H QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I LC 2B","16":"z","164":"J E F MC NC OC","260":"G A B C K PC 3B tB uB 4B"},F:{"1":"pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"G B C UC VC WC XC tB EC YC uB","164":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB","196":"VB WB XB","1220":"YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB"},G:{"1":"qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","16":"2B ZC FC aC bC","164":"F cC dC","260":"eC fC gC hC iC jC kC lC mC nC oC pC"},H:{"2":"tC"},I:{"1":"D","16":"wB uC vC wC","164":"I xC FC yC zC"},J:{"16":"E","164":"A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"164":"0C"},P:{"1":"j k AD vB BD CD DD","164":"I 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C"},Q:{"1220":"4B"},R:{"1":"ED"},S:{"1":"GD","548":"FD"}},B:5,C:":is() CSS pseudo-class"};
diff --git a/node_modules/caniuse-lite/data/features/css-math-functions.js b/node_modules/caniuse-lite/data/features/css-math-functions.js
new file mode 100644
index 0000000..0ab92e0
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/css-math-functions.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L H M N O"},C:{"1":"pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB IC JC"},D:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB"},E:{"1":"L H 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E F G A B LC 2B MC NC OC PC 3B","132":"C K tB uB"},F:{"1":"hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB UC VC WC XC tB EC YC uB"},G:{"1":"pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC","132":"jC kC lC mC nC oC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"2":"0C"},P:{"1":"j k 7C 8C 9C AD vB BD CD DD","2":"I 1C 2C 3C 4C 5C 3B 6C"},Q:{"2":"4B"},R:{"1":"ED"},S:{"1":"GD","2":"FD"}},B:5,C:"CSS math functions min(), max() and clamp()"};
diff --git a/node_modules/caniuse-lite/data/features/css-media-interaction.js b/node_modules/caniuse-lite/data/features/css-media-interaction.js
new file mode 100644
index 0000000..dc36371
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/css-media-interaction.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB IC JC"},D:{"1":"KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB"},E:{"1":"G A B C K L H PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E F LC 2B MC NC OC"},F:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 6 G B C H M N O j k UC VC WC XC tB EC YC uB"},G:{"1":"eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"F 2B ZC FC aC bC cC dC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD","2":"I"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"GD","2":"FD"}},B:4,C:"Media Queries: interaction media features"};
diff --git a/node_modules/caniuse-lite/data/features/css-media-range-syntax.js b/node_modules/caniuse-lite/data/features/css-media-range-syntax.js
new file mode 100644
index 0000000..3104fe2
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/css-media-range-syntax.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"q r s t u v w x y D","2":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p"},C:{"1":"eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB IC JC"},D:{"1":"q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p"},E:{"1":"CC DC SC TC","2":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC"},F:{"1":"a b c d e f g h i","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z UC VC WC XC tB EC YC uB"},G:{"1":"CC DC","2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"2":"0C"},P:{"1":"j k","2":"I 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"2":"4B"},R:{"2":"ED"},S:{"1":"GD","2":"FD"}},B:4,C:"Media Queries: Range Syntax"};
diff --git a/node_modules/caniuse-lite/data/features/css-media-resolution.js b/node_modules/caniuse-lite/data/features/css-media-resolution.js
new file mode 100644
index 0000000..a0ff6eb
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/css-media-resolution.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F GC","132":"G A B"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","1028":"C K L H M N O"},C:{"1":"dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"HC wB","260":"I z J E F G A B C K L H IC JC","1028":"0 1 2 3 4 5 6 7 8 9 M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB"},D:{"1":"jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","548":"0 1 2 3 4 5 6 7 I z J E F G A B C K L H M N O j k","1028":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB"},E:{"1":"vB 9B AC BC CC DC SC TC","2":"LC 2B","548":"I z J E F G A B C K L H MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B"},F:{"1":"YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i uB","2":"G","548":"B C UC VC WC XC tB EC YC","1028":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB"},G:{"1":"vB 9B AC BC CC DC","16":"2B","548":"F ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B"},H:{"132":"tC"},I:{"1":"D","16":"uC vC","548":"wB I wC xC FC","1028":"yC zC"},J:{"548":"E A"},K:{"1":"l uB","548":"A B C tB EC"},L:{"1":"D"},M:{"1":"D"},N:{"132":"A B"},O:{"1":"0C"},P:{"1":"j k 3B 6C 7C 8C 9C AD vB BD CD DD","1028":"I 1C 2C 3C 4C 5C"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:4,C:"Media Queries: resolution feature"};
diff --git a/node_modules/caniuse-lite/data/features/css-media-scripting.js b/node_modules/caniuse-lite/data/features/css-media-scripting.js
new file mode 100644
index 0000000..f36a9db
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/css-media-scripting.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"2":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"2":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i UC VC WC XC tB EC YC uB"},G:{"2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"2":"wB I D uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"2":"A B C l tB EC uB"},L:{"2":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"2":"0C"},P:{"2":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"2":"4B"},R:{"2":"ED"},S:{"2":"FD GD"}},B:5,C:"Media Queries: scripting media feature"};
diff --git a/node_modules/caniuse-lite/data/features/css-mediaqueries.js b/node_modules/caniuse-lite/data/features/css-mediaqueries.js
new file mode 100644
index 0000000..6085d51
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/css-mediaqueries.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"8":"J E F GC","129":"G A B"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC","2":"HC wB"},D:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","129":"0 1 2 3 4 I z J E F G A B C K L H M N O j k"},E:{"1":"E F G A B C K L H NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","129":"I z J MC","388":"LC 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i UC VC WC XC tB EC YC uB","2":"G"},G:{"1":"F cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","129":"2B ZC FC aC bC"},H:{"1":"tC"},I:{"1":"D yC zC","129":"wB I uC vC wC xC FC"},J:{"1":"E A"},K:{"1":"A B C l tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"129":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:2,C:"CSS3 Media Queries"};
diff --git a/node_modules/caniuse-lite/data/features/css-mixblendmode.js b/node_modules/caniuse-lite/data/features/css-mixblendmode.js
new file mode 100644
index 0000000..6e60244
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/css-mixblendmode.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L H M N O"},C:{"1":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB IC JC"},D:{"1":"KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 I z J E F G A B C K L H M N O j k","194":"8 9 AB BB CB DB EB FB GB HB IB JB"},E:{"2":"I z J E LC 2B MC NC","260":"F G A B C K L H OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 6 7 G B C H M N O j k UC VC WC XC tB EC YC uB"},G:{"2":"2B ZC FC aC bC cC","260":"F dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD","2":"I"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:4,C:"Blending of HTML/SVG elements"};
diff --git a/node_modules/caniuse-lite/data/features/css-motion-paths.js b/node_modules/caniuse-lite/data/features/css-motion-paths.js
new file mode 100644
index 0000000..51fcdb7
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/css-motion-paths.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L H M N O"},C:{"1":"nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB IC JC"},D:{"1":"PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB","194":"MB NB OB"},E:{"1":"vB 9B AC BC CC DC SC TC","2":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B"},F:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 6 7 8 G B C H M N O j k UC VC WC XC tB EC YC uB","194":"9 AB BB"},G:{"1":"vB 9B AC BC CC DC","2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD","2":"I"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"GD","2":"FD"}},B:5,C:"CSS Motion Path"};
diff --git a/node_modules/caniuse-lite/data/features/css-namespaces.js b/node_modules/caniuse-lite/data/features/css-namespaces.js
new file mode 100644
index 0000000..c9af3fd
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/css-namespaces.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"G A B","2":"J E F GC"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"1":"I z J E F G A B C K L H MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","16":"LC 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i UC VC WC XC tB EC YC uB"},G:{"1":"F FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","16":"2B ZC"},H:{"1":"tC"},I:{"1":"wB I D uC vC wC xC FC yC zC"},J:{"1":"E A"},K:{"1":"A B C l tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:2,C:"CSS namespaces"};
diff --git a/node_modules/caniuse-lite/data/features/css-nesting.js b/node_modules/caniuse-lite/data/features/css-nesting.js
new file mode 100644
index 0000000..9da9dcb
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/css-nesting.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"y D","2":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u","194":"v w x"},C:{"2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC"},D:{"1":"y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u","194":"v w x"},E:{"1":"DC SC TC","2":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC"},F:{"1":"h i","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d UC VC WC XC tB EC YC uB","194":"e f g"},G:{"1":"DC","2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"2":"A B C l tB EC uB"},L:{"1":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"2":"0C"},P:{"2":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"2":"4B"},R:{"2":"ED"},S:{"2":"FD GD"}},B:5,C:"CSS Nesting"};
diff --git a/node_modules/caniuse-lite/data/features/css-not-sel-list.js b/node_modules/caniuse-lite/data/features/css-not-sel-list.js
new file mode 100644
index 0000000..52ad06f
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/css-not-sel-list.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L H M N O Q R S T U V W","16":"P"},C:{"1":"T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S IC JC"},D:{"1":"X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W"},E:{"1":"G A B C K L H PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E F LC 2B MC NC OC"},F:{"1":"pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB UC VC WC XC tB EC YC uB"},G:{"1":"eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"F 2B ZC FC aC bC cC dC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"2":"0C"},P:{"1":"j k AD vB BD CD DD","2":"I 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C"},Q:{"2":"4B"},R:{"1":"ED"},S:{"1":"GD","2":"FD"}},B:5,C:"selector list argument of :not()"};
diff --git a/node_modules/caniuse-lite/data/features/css-nth-child-of.js b/node_modules/caniuse-lite/data/features/css-nth-child-of.js
new file mode 100644
index 0000000..863abc4
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/css-nth-child-of.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"x y D","2":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w"},C:{"1":"D 0B 1B","2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y IC JC"},D:{"1":"x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w"},E:{"1":"G A B C K L H PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E F LC 2B MC NC OC"},F:{"1":"h i","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g UC VC WC XC tB EC YC uB"},G:{"1":"eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"F 2B ZC FC aC bC cC dC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"2":"A B C l tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"2":"0C"},P:{"2":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"2":"4B"},R:{"2":"ED"},S:{"2":"FD GD"}},B:5,C:"selector list argument of :nth-child and :nth-last-child CSS pseudo-classes"};
diff --git a/node_modules/caniuse-lite/data/features/css-opacity.js b/node_modules/caniuse-lite/data/features/css-opacity.js
new file mode 100644
index 0000000..0f462a7
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/css-opacity.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"G A B","4":"J E F GC"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"1":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i UC VC WC XC tB EC YC uB"},G:{"1":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"1":"tC"},I:{"1":"wB I D uC vC wC xC FC yC zC"},J:{"1":"E A"},K:{"1":"A B C l tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:2,C:"CSS3 Opacity"};
diff --git a/node_modules/caniuse-lite/data/features/css-optional-pseudo.js b/node_modules/caniuse-lite/data/features/css-optional-pseudo.js
new file mode 100644
index 0000000..17b497a
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/css-optional-pseudo.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"A B","2":"J E F G GC"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"HC wB IC JC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","16":"I z J E F G A B C K L"},E:{"1":"z J E F G A B C K L H MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I LC 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","16":"G UC","132":"B C VC WC XC tB EC YC uB"},G:{"1":"F aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"2B ZC FC"},H:{"132":"tC"},I:{"1":"wB I D wC xC FC yC zC","16":"uC vC"},J:{"1":"E A"},K:{"1":"l","132":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:5,C:":optional CSS pseudo-class"};
diff --git a/node_modules/caniuse-lite/data/features/css-overflow-anchor.js b/node_modules/caniuse-lite/data/features/css-overflow-anchor.js
new file mode 100644
index 0000000..ee960e7
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/css-overflow-anchor.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L H M N O"},C:{"1":"hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB IC JC"},D:{"1":"ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB"},E:{"2":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"1":"MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB UC VC WC XC tB EC YC uB"},G:{"2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD","2":"I"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"GD","2":"FD"}},B:5,C:"CSS overflow-anchor (Scroll Anchoring)"};
diff --git a/node_modules/caniuse-lite/data/features/css-overflow-overlay.js b/node_modules/caniuse-lite/data/features/css-overflow-overlay.js
new file mode 100644
index 0000000..710d559
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/css-overflow-overlay.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L H M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","16":"I z J E F G A B C K L"},E:{"1":"I z J E F G A B MC NC OC PC 3B tB","16":"LC 2B","130":"C K L H uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"G B C UC VC WC XC tB EC YC uB"},G:{"1":"F ZC FC aC bC cC dC eC fC gC hC iC jC","16":"2B","130":"kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"1":"wB I D uC vC wC xC FC yC zC"},J:{"16":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"2":"FD GD"}},B:7,C:"CSS overflow: overlay"};
diff --git a/node_modules/caniuse-lite/data/features/css-overflow.js b/node_modules/caniuse-lite/data/features/css-overflow.js
new file mode 100644
index 0000000..b836c76
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/css-overflow.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"388":"J E F G A B GC"},B:{"1":"Z a b c d e f g h i m n o p q r s t u v w x y D","260":"P Q R S T U V W X Y","388":"C K L H M N O"},C:{"1":"R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","260":"yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q","388":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB IC JC"},D:{"1":"Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","260":"jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y","388":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB"},E:{"1":"vB 9B AC BC CC DC SC TC","260":"L H 4B QC RC 5B 6B 7B 8B","388":"I z J E F G A B C K LC 2B MC NC OC PC 3B tB uB"},F:{"1":"qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","260":"YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB","388":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB UC VC WC XC tB EC YC uB"},G:{"1":"vB 9B AC BC CC DC","260":"pC qC rC sC 5B 6B 7B 8B","388":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC"},H:{"388":"tC"},I:{"1":"D","388":"wB I uC vC wC xC FC yC zC"},J:{"388":"E A"},K:{"1":"l","388":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"388":"A B"},O:{"388":"0C"},P:{"1":"j k AD vB BD CD DD","388":"I 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C"},Q:{"388":"4B"},R:{"1":"ED"},S:{"1":"GD","388":"FD"}},B:5,C:"CSS overflow property"};
diff --git a/node_modules/caniuse-lite/data/features/css-overscroll-behavior.js b/node_modules/caniuse-lite/data/features/css-overscroll-behavior.js
new file mode 100644
index 0000000..4ebf173
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/css-overscroll-behavior.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G GC","132":"A B"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","132":"C K L H M N","516":"O"},C:{"1":"xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB IC JC"},D:{"1":"gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB","260":"eB fB"},E:{"1":"vB 9B AC BC CC DC SC TC","2":"I z J E F G A B C K L LC 2B MC NC OC PC 3B tB uB 4B","1090":"H QC RC 5B 6B 7B 8B"},F:{"1":"VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB UC VC WC XC tB EC YC uB","260":"TB UB"},G:{"1":"vB 9B AC BC CC DC","2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC","1090":"rC sC 5B 6B 7B 8B"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"132":"A B"},O:{"1":"0C"},P:{"1":"j k 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD","2":"I 1C 2C 3C"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"GD","2":"FD"}},B:5,C:"CSS overscroll-behavior"};
diff --git a/node_modules/caniuse-lite/data/features/css-page-break.js b/node_modules/caniuse-lite/data/features/css-page-break.js
new file mode 100644
index 0000000..41fdf34
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/css-page-break.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"388":"A B","900":"J E F G GC"},B:{"388":"C K L H M N O","900":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"772":"gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","900":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB IC JC"},D:{"900":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"772":"A","900":"I z J E F G B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"16":"G UC","129":"B C VC WC XC tB EC YC uB","900":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i"},G:{"900":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"129":"tC"},I:{"900":"wB I D uC vC wC xC FC yC zC"},J:{"900":"E A"},K:{"129":"A B C tB EC uB","900":"l"},L:{"900":"D"},M:{"772":"D"},N:{"388":"A B"},O:{"900":"0C"},P:{"900":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"900":"4B"},R:{"900":"ED"},S:{"772":"GD","900":"FD"}},B:2,C:"CSS page-break properties"};
diff --git a/node_modules/caniuse-lite/data/features/css-paged-media.js b/node_modules/caniuse-lite/data/features/css-paged-media.js
new file mode 100644
index 0000000..d824e7a
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/css-paged-media.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E GC","132":"F G A B"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","132":"C K L H M N O"},C:{"2":"HC wB I z J E F G A B C K L H M N O IC JC","132":"0 1 2 3 4 5 6 7 8 9 j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","16":"I z J E F G A B C K L"},E:{"2":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","132":"G B C UC VC WC XC tB EC YC uB"},G:{"2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"16":"tC"},I:{"16":"wB I D uC vC wC xC FC yC zC"},J:{"16":"E A"},K:{"1":"l","16":"A B C tB EC uB"},L:{"1":"D"},M:{"132":"D"},N:{"258":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"132":"FD GD"}},B:5,C:"CSS Paged Media (@page)"};
diff --git a/node_modules/caniuse-lite/data/features/css-paint-api.js b/node_modules/caniuse-lite/data/features/css-paint-api.js
new file mode 100644
index 0000000..fe2d946
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/css-paint-api.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L H M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC"},D:{"1":"gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB"},E:{"2":"I z J E F G A B C LC 2B MC NC OC PC 3B tB","194":"K L H uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"1":"VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB UC VC WC XC tB EC YC uB"},G:{"2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"2":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"2":"FD GD"}},B:4,C:"CSS Painting API"};
diff --git a/node_modules/caniuse-lite/data/features/css-placeholder-shown.js b/node_modules/caniuse-lite/data/features/css-placeholder-shown.js
new file mode 100644
index 0000000..6b7ba63
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/css-placeholder-shown.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G GC","292":"A B"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L H M N O"},C:{"1":"UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"HC wB IC JC","164":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB"},D:{"1":"QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB"},E:{"1":"G A B C K L H PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E F LC 2B MC NC OC"},F:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB UC VC WC XC tB EC YC uB"},G:{"1":"eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"F 2B ZC FC aC bC cC dC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD","2":"I"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"GD","164":"FD"}},B:5,C:":placeholder-shown CSS pseudo-class"};
diff --git a/node_modules/caniuse-lite/data/features/css-placeholder.js b/node_modules/caniuse-lite/data/features/css-placeholder.js
new file mode 100644
index 0000000..669c2b1
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/css-placeholder.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","36":"C K L H M N O"},C:{"1":"UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"HC wB I z J E F G A B C K L H M N O IC JC","33":"0 1 2 3 4 5 6 7 8 9 j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB"},D:{"1":"aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","36":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB"},E:{"1":"B C K L H 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I LC 2B","36":"z J E F G A MC NC OC PC"},F:{"1":"NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"G B C UC VC WC XC tB EC YC uB","36":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB"},G:{"1":"hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"2B ZC","36":"F FC aC bC cC dC eC fC gC"},H:{"2":"tC"},I:{"1":"D","36":"wB I uC vC wC xC FC yC zC"},J:{"36":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"36":"A B"},O:{"1":"0C"},P:{"1":"j k 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD","36":"I 1C 2C"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"GD","33":"FD"}},B:5,C:"::placeholder CSS pseudo-element"};
diff --git a/node_modules/caniuse-lite/data/features/css-print-color-adjust.js b/node_modules/caniuse-lite/data/features/css-print-color-adjust.js
new file mode 100644
index 0000000..3953ba7
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/css-print-color-adjust.js
@@ -0,0 +1 @@
+module.exports={A:{D:{"2":"I z J E F G A B C K L H M","33":"0 1 2 3 4 5 6 7 8 9 N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},L:{"33":"D"},B:{"2":"C K L H M N O","33":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB IC JC","33":"RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f"},M:{"1":"D"},A:{"2":"J E F G A B GC"},F:{"2":"G B C UC VC WC XC tB EC YC uB","33":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i"},K:{"2":"A B C tB EC uB","33":"l"},E:{"1":"6B 7B 8B vB 9B AC BC CC DC SC","2":"I z LC 2B MC TC","33":"J E F G A B C K L H NC OC PC 3B tB uB 4B QC RC 5B"},G:{"1":"6B 7B 8B vB 9B AC BC CC DC","2":"2B ZC FC aC","33":"F bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B"},P:{"33":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},I:{"2":"wB I uC vC wC xC FC","33":"D yC zC"}},B:6,C:"print-color-adjust property"};
diff --git a/node_modules/caniuse-lite/data/features/css-read-only-write.js b/node_modules/caniuse-lite/data/features/css-read-only-write.js
new file mode 100644
index 0000000..488e703
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/css-read-only-write.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C"},C:{"1":"sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","16":"HC","33":"0 1 2 3 4 5 6 7 8 9 wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB IC JC"},D:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","16":"I z J E F G A B C K L","132":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB"},E:{"1":"G A B C K L H PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","16":"LC 2B","132":"I z J E F MC NC OC"},F:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","16":"G B UC VC WC XC tB","132":"0 1 C H M N O j k EC YC uB"},G:{"1":"eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","16":"2B ZC","132":"F FC aC bC cC dC"},H:{"2":"tC"},I:{"1":"D","16":"uC vC","132":"wB I wC xC FC yC zC"},J:{"1":"A","132":"E"},K:{"1":"l","2":"A B tB","132":"C EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"GD","33":"FD"}},B:1,C:"CSS :read-only and :read-write selectors"};
diff --git a/node_modules/caniuse-lite/data/features/css-rebeccapurple.js b/node_modules/caniuse-lite/data/features/css-rebeccapurple.js
new file mode 100644
index 0000000..6a6ddea
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/css-rebeccapurple.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A GC","132":"B"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB IC JC"},D:{"1":"HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB"},E:{"1":"E F G A B C K L H OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J LC 2B MC","16":"NC"},F:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 G B C H M N O j k UC VC WC XC tB EC YC uB"},G:{"1":"F dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"2B ZC FC aC bC cC"},H:{"2":"tC"},I:{"1":"D yC zC","2":"wB I uC vC wC xC FC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:4,C:"Rebeccapurple color"};
diff --git a/node_modules/caniuse-lite/data/features/css-reflections.js b/node_modules/caniuse-lite/data/features/css-reflections.js
new file mode 100644
index 0000000..bdf52a6
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/css-reflections.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"2":"C K L H M N O","33":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC"},D:{"33":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"2":"LC 2B","33":"I z J E F G A B C K L H MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"2":"G B C UC VC WC XC tB EC YC uB","33":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i"},G:{"33":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"33":"wB I D uC vC wC xC FC yC zC"},J:{"33":"E A"},K:{"2":"A B C tB EC uB","33":"l"},L:{"33":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"33":"0C"},P:{"33":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"33":"4B"},R:{"33":"ED"},S:{"2":"FD GD"}},B:7,C:"CSS Reflections"};
diff --git a/node_modules/caniuse-lite/data/features/css-regions.js b/node_modules/caniuse-lite/data/features/css-regions.js
new file mode 100644
index 0000000..ff61c01
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/css-regions.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G GC","420":"A B"},B:{"2":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","420":"C K L H M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC"},D:{"2":"I z J E F G A B C K L EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","36":"H M N O","66":"0 1 2 3 4 5 6 7 8 9 j k AB BB CB DB"},E:{"2":"I z J C K L H LC 2B MC tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","33":"E F G A B NC OC PC 3B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i UC VC WC XC tB EC YC uB"},G:{"2":"2B ZC FC aC bC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","33":"F cC dC eC fC gC hC iC"},H:{"2":"tC"},I:{"2":"wB I D uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"2":"A B C l tB EC uB"},L:{"2":"D"},M:{"2":"D"},N:{"420":"A B"},O:{"2":"0C"},P:{"2":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"2":"4B"},R:{"2":"ED"},S:{"2":"FD GD"}},B:5,C:"CSS Regions"};
diff --git a/node_modules/caniuse-lite/data/features/css-relative-colors.js b/node_modules/caniuse-lite/data/features/css-relative-colors.js
new file mode 100644
index 0000000..826122f
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/css-relative-colors.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"2":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"1":"CC DC SC TC","2":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i UC VC WC XC tB EC YC uB"},G:{"1":"CC DC","2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC"},H:{"2":"tC"},I:{"2":"wB I D uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"2":"A B C l tB EC uB"},L:{"2":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"2":"0C"},P:{"2":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"2":"4B"},R:{"2":"ED"},S:{"2":"FD GD"}},B:5,C:"CSS Relative colors"};
diff --git a/node_modules/caniuse-lite/data/features/css-repeating-gradients.js b/node_modules/caniuse-lite/data/features/css-repeating-gradients.js
new file mode 100644
index 0000000..e1d417f
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/css-repeating-gradients.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"A B","2":"J E F G GC"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"HC wB IC","33":"I z J E F G A B C K L H JC"},D:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"I z J E F G","33":"0 1 2 3 4 A B C K L H M N O j k"},E:{"1":"E F G A B C K L H NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z LC 2B","33":"J MC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i uB","2":"G B UC VC WC XC","33":"C YC","36":"tB EC"},G:{"1":"F cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"2B ZC FC","33":"aC bC"},H:{"2":"tC"},I:{"1":"D yC zC","2":"wB uC vC wC","33":"I xC FC"},J:{"1":"A","2":"E"},K:{"1":"l uB","2":"A B","33":"C","36":"tB EC"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:4,C:"CSS Repeating Gradients"};
diff --git a/node_modules/caniuse-lite/data/features/css-resize.js b/node_modules/caniuse-lite/data/features/css-resize.js
new file mode 100644
index 0000000..2ebdb43
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/css-resize.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L H M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"HC wB IC JC","33":"I"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"1":"I z J E F G A B C K L H MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"LC 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"G B C UC VC WC XC tB EC YC","132":"uB"},G:{"2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD","2":"I"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"GD","2":"FD"}},B:2,C:"CSS resize property"};
diff --git a/node_modules/caniuse-lite/data/features/css-revert-value.js b/node_modules/caniuse-lite/data/features/css-revert-value.js
new file mode 100644
index 0000000..a8bdf28
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/css-revert-value.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L H M N O P Q R S"},C:{"1":"iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB IC JC"},D:{"1":"T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S"},E:{"1":"A B C K L H PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E F G LC 2B MC NC OC"},F:{"1":"l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB UC VC WC XC tB EC YC uB"},G:{"1":"fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"F 2B ZC FC aC bC cC dC eC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"2":"0C"},P:{"1":"j k 9C AD vB BD CD DD","2":"I 1C 2C 3C 4C 5C 3B 6C 7C 8C"},Q:{"2":"4B"},R:{"1":"ED"},S:{"1":"GD","2":"FD"}},B:4,C:"CSS revert value"};
diff --git a/node_modules/caniuse-lite/data/features/css-rrggbbaa.js b/node_modules/caniuse-lite/data/features/css-rrggbbaa.js
new file mode 100644
index 0000000..215703d
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/css-rrggbbaa.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L H M N O"},C:{"1":"SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB IC JC"},D:{"1":"dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB","194":"VB WB XB YB ZB aB bB xB cB yB"},E:{"1":"A B C K L H 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E F G LC 2B MC NC OC PC"},F:{"1":"VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB UC VC WC XC tB EC YC uB","194":"IB JB KB LB MB NB OB PB QB RB SB TB UB"},G:{"1":"gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"F 2B ZC FC aC bC cC dC eC fC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"j k 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD","2":"I","194":"1C 2C 3C"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"GD","2":"FD"}},B:4,C:"#rrggbbaa hex color notation"};
diff --git a/node_modules/caniuse-lite/data/features/css-scroll-behavior.js b/node_modules/caniuse-lite/data/features/css-scroll-behavior.js
new file mode 100644
index 0000000..7c01870
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/css-scroll-behavior.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"2":"C K L H M N O","129":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB IC JC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB","129":"yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","450":"KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB"},E:{"1":"6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E F G A B C K LC 2B MC NC OC PC 3B tB uB 4B","578":"L H QC RC 5B"},F:{"2":"0 1 2 3 4 5 6 G B C H M N O j k UC VC WC XC tB EC YC uB","129":"RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","450":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB"},G:{"1":"6B 7B 8B vB 9B AC BC CC DC","2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC","578":"rC sC 5B"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"129":"0C"},P:{"1":"j k 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD","2":"I 1C 2C 3C"},Q:{"129":"4B"},R:{"1":"ED"},S:{"1":"GD","2":"FD"}},B:5,C:"CSS Scroll-behavior"};
diff --git a/node_modules/caniuse-lite/data/features/css-scroll-timeline.js b/node_modules/caniuse-lite/data/features/css-scroll-timeline.js
new file mode 100644
index 0000000..b53c310
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/css-scroll-timeline.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"2":"C K L H M N O P Q R S T U V W X Y","194":"Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T","194":"X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","322":"U V W"},E:{"2":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB UC VC WC XC tB EC YC uB","194":"pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","322":"l oB"},G:{"2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"2":"wB I D uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"2":"A B C l tB EC uB"},L:{"2":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"2":"0C"},P:{"2":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"2":"4B"},R:{"2":"ED"},S:{"2":"FD GD"}},B:7,C:"CSS @scroll-timeline"};
diff --git a/node_modules/caniuse-lite/data/features/css-scrollbar.js b/node_modules/caniuse-lite/data/features/css-scrollbar.js
new file mode 100644
index 0000000..3eb5b07
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/css-scrollbar.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"132":"J E F G A B GC"},B:{"2":"C K L H M N O","292":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB IC JC","3074":"eB","4100":"fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B"},D:{"292":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"16":"I z LC 2B","292":"J E F G A B C K L H MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"2":"G B C UC VC WC XC tB EC YC uB","292":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i"},G:{"2":"qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","16":"2B ZC FC aC bC","292":"cC","804":"F dC eC fC gC hC iC jC kC lC mC nC oC pC"},H:{"2":"tC"},I:{"16":"uC vC","292":"wB I D wC xC FC yC zC"},J:{"292":"E A"},K:{"2":"A B C tB EC uB","292":"l"},L:{"292":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"292":"0C"},P:{"292":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"292":"4B"},R:{"292":"ED"},S:{"2":"FD GD"}},B:7,C:"CSS scrollbar styling"};
diff --git a/node_modules/caniuse-lite/data/features/css-sel2.js b/node_modules/caniuse-lite/data/features/css-sel2.js
new file mode 100644
index 0000000..c1c7438
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/css-sel2.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"E F G A B","2":"GC","8":"J"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"1":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i UC VC WC XC tB EC YC uB"},G:{"1":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"1":"tC"},I:{"1":"wB I D uC vC wC xC FC yC zC"},J:{"1":"E A"},K:{"1":"A B C l tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:2,C:"CSS 2.1 selectors"};
diff --git a/node_modules/caniuse-lite/data/features/css-sel3.js b/node_modules/caniuse-lite/data/features/css-sel3.js
new file mode 100644
index 0000000..ea27d94
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/css-sel3.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"G A B","2":"GC","8":"J","132":"E F"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC","2":"HC wB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"1":"I z J E F G A B C K L H 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"LC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i UC VC WC XC tB EC YC uB","2":"G"},G:{"1":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"1":"tC"},I:{"1":"wB I D uC vC wC xC FC yC zC"},J:{"1":"E A"},K:{"1":"A B C l tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:2,C:"CSS3 selectors"};
diff --git a/node_modules/caniuse-lite/data/features/css-selection.js b/node_modules/caniuse-lite/data/features/css-selection.js
new file mode 100644
index 0000000..23e6f45
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/css-selection.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"G A B","2":"J E F GC"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","33":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB IC JC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"1":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i UC VC WC XC tB EC YC uB","2":"G"},G:{"2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"1":"D yC zC","2":"wB I uC vC wC xC FC"},J:{"1":"A","2":"E"},K:{"1":"C l EC uB","16":"A B tB"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"GD","33":"FD"}},B:5,C:"::selection CSS pseudo-element"};
diff --git a/node_modules/caniuse-lite/data/features/css-shapes.js b/node_modules/caniuse-lite/data/features/css-shapes.js
new file mode 100644
index 0000000..144b6cc
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/css-shapes.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L H M N O"},C:{"1":"dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB IC JC","322":"UB VB WB XB YB ZB aB bB xB cB yB"},D:{"1":"GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB","194":"DB EB FB"},E:{"1":"B C K L H 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E LC 2B MC NC","33":"F G A OC PC"},F:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 G B C H M N O j k UC VC WC XC tB EC YC uB"},G:{"1":"hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"2B ZC FC aC bC cC","33":"F dC eC fC gC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"GD","2":"FD"}},B:4,C:"CSS Shapes Level 1"};
diff --git a/node_modules/caniuse-lite/data/features/css-snappoints.js b/node_modules/caniuse-lite/data/features/css-snappoints.js
new file mode 100644
index 0000000..37b56a2
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/css-snappoints.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G GC","6308":"A","6436":"B"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","6436":"C K L H M N O"},C:{"1":"jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IC JC","2052":"IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB"},D:{"1":"kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB","8258":"hB iB jB"},E:{"1":"B C K L H tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E F LC 2B MC NC OC","3108":"G A PC 3B"},F:{"1":"fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB UC VC WC XC tB EC YC uB","8258":"XB YB ZB aB bB cB dB eB"},G:{"1":"iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"F 2B ZC FC aC bC cC dC","3108":"eC fC gC hC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"j k 3B 6C 7C 8C 9C AD vB BD CD DD","2":"I 1C 2C 3C 4C 5C"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"GD","2052":"FD"}},B:4,C:"CSS Scroll Snap"};
diff --git a/node_modules/caniuse-lite/data/features/css-sticky.js b/node_modules/caniuse-lite/data/features/css-sticky.js
new file mode 100644
index 0000000..572fec9
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/css-sticky.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L H","1028":"P Q R S T U V W X Y Z","4100":"M N O"},C:{"1":"xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 4 HC wB I z J E F G A B C K L H M N O j k IC JC","194":"5 6 7 8 9 AB","516":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB"},D:{"1":"a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 I z J E F G A B C K L H M N O j k GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB","322":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB VB WB XB YB","1028":"ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z"},E:{"1":"K L H 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J LC 2B MC","33":"F G A B C OC PC 3B tB uB","2084":"E NC"},F:{"1":"sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB UC VC WC XC tB EC YC uB","322":"IB JB KB","1028":"LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB"},G:{"1":"mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"2B ZC FC aC","33":"F dC eC fC gC hC iC jC kC lC","2084":"bC cC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1028":"0C"},P:{"1":"j k 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD","2":"I 1C"},Q:{"1028":"4B"},R:{"1":"ED"},S:{"1":"GD","516":"FD"}},B:5,C:"CSS position:sticky"};
diff --git a/node_modules/caniuse-lite/data/features/css-subgrid.js b/node_modules/caniuse-lite/data/features/css-subgrid.js
new file mode 100644
index 0000000..82cb0ad
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/css-subgrid.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"2":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB IC JC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"1":"vB 9B AC BC CC DC SC TC","2":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i UC VC WC XC tB EC YC uB"},G:{"1":"vB 9B AC BC CC DC","2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B"},H:{"2":"tC"},I:{"2":"wB I D uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"2":"A B C l tB EC uB"},L:{"2":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"2":"0C"},P:{"2":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"2":"4B"},R:{"2":"ED"},S:{"1":"GD","2":"FD"}},B:4,C:"CSS Subgrid"};
diff --git a/node_modules/caniuse-lite/data/features/css-supports-api.js b/node_modules/caniuse-lite/data/features/css-supports-api.js
new file mode 100644
index 0000000..1e79e43
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/css-supports-api.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","260":"C K L H M N O"},C:{"1":"YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 HC wB I z J E F G A B C K L H M N O IC JC","66":"j k","260":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB"},D:{"1":"yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 I z J E F G A B C K L H M N O j k","260":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB"},E:{"1":"G A B C K L H PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E F LC 2B MC NC OC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"G B C UC VC WC XC tB EC YC","132":"uB"},G:{"1":"eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"F 2B ZC FC aC bC cC dC"},H:{"132":"tC"},I:{"1":"D yC zC","2":"wB I uC vC wC xC FC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC","132":"uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:4,C:"CSS.supports() API"};
diff --git a/node_modules/caniuse-lite/data/features/css-table.js b/node_modules/caniuse-lite/data/features/css-table.js
new file mode 100644
index 0000000..ba59cd0
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/css-table.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"F G A B","2":"J E GC"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC","132":"HC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"1":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i UC VC WC XC tB EC YC uB"},G:{"1":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"1":"tC"},I:{"1":"wB I D uC vC wC xC FC yC zC"},J:{"1":"E A"},K:{"1":"A B C l tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:2,C:"CSS Table display"};
diff --git a/node_modules/caniuse-lite/data/features/css-text-align-last.js b/node_modules/caniuse-lite/data/features/css-text-align-last.js
new file mode 100644
index 0000000..131b29c
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/css-text-align-last.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"132":"J E F G A B GC"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","4":"C K L H M N O"},C:{"1":"SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"HC wB I z J E F G A B IC JC","33":"0 1 2 3 4 5 6 7 8 9 C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB"},D:{"1":"QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB","322":"EB FB GB HB IB JB KB LB MB NB OB PB"},E:{"1":"vB 9B AC BC CC DC SC TC","2":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B"},F:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 G B C H M N O j k UC VC WC XC tB EC YC uB","578":"1 2 3 4 5 6 7 8 9 AB BB CB"},G:{"1":"vB 9B AC BC CC DC","2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"132":"A B"},O:{"1":"0C"},P:{"1":"j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD","2":"I"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"GD","33":"FD"}},B:4,C:"CSS3 text-align-last"};
diff --git a/node_modules/caniuse-lite/data/features/css-text-box-trim.js b/node_modules/caniuse-lite/data/features/css-text-box-trim.js
new file mode 100644
index 0000000..09a61df
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/css-text-box-trim.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"2":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"2":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC","129":"TC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i UC VC WC XC tB EC YC uB"},G:{"2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"2":"wB I D uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"2":"A B C l tB EC uB"},L:{"2":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"2":"0C"},P:{"2":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"2":"4B"},R:{"2":"ED"},S:{"2":"FD GD"}},B:5,C:"CSS text-box-trim & text-box-edge"};
diff --git a/node_modules/caniuse-lite/data/features/css-text-indent.js b/node_modules/caniuse-lite/data/features/css-text-indent.js
new file mode 100644
index 0000000..69e1b69
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/css-text-indent.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"132":"J E F G A B GC"},B:{"132":"C K L H M N O","388":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"132":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC"},D:{"132":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB","388":"HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"1":"vB 9B AC BC CC DC SC TC","132":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B"},F:{"132":"0 1 2 3 G B C H M N O j k UC VC WC XC tB EC YC uB","388":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i"},G:{"1":"vB 9B AC BC CC DC","132":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B"},H:{"132":"tC"},I:{"132":"wB I uC vC wC xC FC yC zC","388":"D"},J:{"132":"E A"},K:{"132":"A B C tB EC uB","388":"l"},L:{"388":"D"},M:{"132":"D"},N:{"132":"A B"},O:{"388":"0C"},P:{"132":"I","388":"j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"388":"4B"},R:{"388":"ED"},S:{"132":"FD GD"}},B:4,C:"CSS text-indent"};
diff --git a/node_modules/caniuse-lite/data/features/css-text-justify.js b/node_modules/caniuse-lite/data/features/css-text-justify.js
new file mode 100644
index 0000000..8a98140
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/css-text-justify.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"16":"J E GC","132":"F G A B"},B:{"132":"C K L H M N O","322":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB IC JC","1025":"YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","1602":"XB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB","322":"MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"2":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"2":"0 1 2 3 4 5 6 7 8 G B C H M N O j k UC VC WC XC tB EC YC uB","322":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i"},G:{"2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"2":"wB I uC vC wC xC FC yC zC","322":"D"},J:{"2":"E A"},K:{"2":"A B C tB EC uB","322":"l"},L:{"322":"D"},M:{"1025":"D"},N:{"132":"A B"},O:{"322":"0C"},P:{"2":"I","322":"j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"322":"4B"},R:{"322":"ED"},S:{"2":"FD","1025":"GD"}},B:4,C:"CSS text-justify"};
diff --git a/node_modules/caniuse-lite/data/features/css-text-orientation.js b/node_modules/caniuse-lite/data/features/css-text-orientation.js
new file mode 100644
index 0000000..2e88d73
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/css-text-orientation.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L H M N O"},C:{"1":"KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB IC JC","194":"HB IB JB"},D:{"1":"RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB"},E:{"1":"L H QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E F G LC 2B MC NC OC PC","16":"A","33":"B C K 3B tB uB 4B"},F:{"1":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB UC VC WC XC tB EC YC uB"},G:{"1":"gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"F 2B ZC FC aC bC cC dC eC fC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD","2":"I"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:2,C:"CSS text-orientation"};
diff --git a/node_modules/caniuse-lite/data/features/css-text-spacing.js b/node_modules/caniuse-lite/data/features/css-text-spacing.js
new file mode 100644
index 0000000..16a7a10
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/css-text-spacing.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E GC","161":"F G A B"},B:{"2":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","161":"C K L H M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"2":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i UC VC WC XC tB EC YC uB"},G:{"2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"2":"wB I D uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"2":"A B C l tB EC uB"},L:{"2":"D"},M:{"2":"D"},N:{"16":"A B"},O:{"2":"0C"},P:{"2":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"2":"4B"},R:{"2":"ED"},S:{"2":"FD GD"}},B:5,C:"CSS Text 4 text-spacing"};
diff --git a/node_modules/caniuse-lite/data/features/css-textshadow.js b/node_modules/caniuse-lite/data/features/css-textshadow.js
new file mode 100644
index 0000000..ce3b527
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/css-textshadow.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G GC","129":"A B"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","129":"C K L H M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC","2":"HC wB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"1":"I z J E F G A B C K L H MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","260":"LC 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i UC VC WC XC tB EC YC uB","2":"G"},G:{"1":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"4":"tC"},I:{"1":"wB I D uC vC wC xC FC yC zC"},J:{"1":"A","4":"E"},K:{"1":"A B C l tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"129":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:4,C:"CSS3 Text-shadow"};
diff --git a/node_modules/caniuse-lite/data/features/css-touch-action.js b/node_modules/caniuse-lite/data/features/css-touch-action.js
new file mode 100644
index 0000000..5fe2cb5
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/css-touch-action.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"B","2":"J E F G GC","289":"A"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 4 5 6 7 HC wB I z J E F G A B C K L H M N O j k IC JC","194":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB","1025":"VB WB XB YB ZB"},D:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB"},E:{"2":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 G B C H M N O j k UC VC WC XC tB EC YC uB"},G:{"1":"mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"F 2B ZC FC aC bC cC dC eC","516":"fC gC hC iC jC kC lC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"1":"B","289":"A"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"GD","194":"FD"}},B:2,C:"CSS touch-action property"};
diff --git a/node_modules/caniuse-lite/data/features/css-transitions.js b/node_modules/caniuse-lite/data/features/css-transitions.js
new file mode 100644
index 0000000..7825115
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/css-transitions.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"A B","2":"J E F G GC"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"HC wB IC JC","33":"z J E F G A B C K L H","164":"I"},D:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","33":"0 1 2 3 4 I z J E F G A B C K L H M N O j k"},E:{"1":"E F G A B C K L H NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","33":"J MC","164":"I z LC 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i uB","2":"G UC VC","33":"C","164":"B WC XC tB EC YC"},G:{"1":"F cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","33":"bC","164":"2B ZC FC aC"},H:{"2":"tC"},I:{"1":"D yC zC","33":"wB I uC vC wC xC FC"},J:{"1":"A","33":"E"},K:{"1":"l uB","33":"C","164":"A B tB EC"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:5,C:"CSS3 Transitions"};
diff --git a/node_modules/caniuse-lite/data/features/css-unicode-bidi.js b/node_modules/caniuse-lite/data/features/css-unicode-bidi.js
new file mode 100644
index 0000000..15c02d0
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/css-unicode-bidi.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"132":"J E F G A B GC"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","132":"C K L H M N O"},C:{"1":"TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","33":"0 1 2 3 4 5 6 7 8 9 N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB","132":"HC wB I z J E F G IC JC","292":"A B C K L H M"},D:{"1":"RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","132":"I z J E F G A B C K L H M","548":"0 1 2 3 4 5 6 7 8 9 N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB"},E:{"132":"I z J E F LC 2B MC NC OC","548":"G A B C K L H PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"132":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i UC VC WC XC tB EC YC uB"},G:{"132":"F 2B ZC FC aC bC cC dC","548":"eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"16":"tC"},I:{"1":"D","16":"wB I uC vC wC xC FC yC zC"},J:{"16":"E A"},K:{"1":"l","16":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"132":"A B"},O:{"1":"0C"},P:{"1":"j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD","16":"I"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"GD","33":"FD"}},B:4,C:"CSS unicode-bidi property"};
diff --git a/node_modules/caniuse-lite/data/features/css-unset-value.js b/node_modules/caniuse-lite/data/features/css-unset-value.js
new file mode 100644
index 0000000..7997ea0
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/css-unset-value.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C"},C:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 4 5 HC wB I z J E F G A B C K L H M N O j k IC JC"},D:{"1":"KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB"},E:{"1":"A B C K L H PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E F G LC 2B MC NC OC"},F:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 6 G B C H M N O j k UC VC WC XC tB EC YC uB"},G:{"1":"fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"F 2B ZC FC aC bC cC dC eC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:2,C:"CSS unset value"};
diff --git a/node_modules/caniuse-lite/data/features/css-variables.js b/node_modules/caniuse-lite/data/features/css-variables.js
new file mode 100644
index 0000000..649eec8
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/css-variables.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L","260":"H"},C:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k IC JC"},D:{"1":"SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB","194":"RB"},E:{"1":"A B C K L H 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E F G LC 2B MC NC OC","260":"PC"},F:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB UC VC WC XC tB EC YC uB","194":"EB"},G:{"1":"gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"F 2B ZC FC aC bC cC dC eC","260":"fC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD","2":"I"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:4,C:"CSS Variables (Custom Properties)"};
diff --git a/node_modules/caniuse-lite/data/features/css-when-else.js b/node_modules/caniuse-lite/data/features/css-when-else.js
new file mode 100644
index 0000000..154b72d
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/css-when-else.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"2":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"2":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i UC VC WC XC tB EC YC uB"},G:{"2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"2":"wB I D uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"2":"A B C l tB EC uB"},L:{"2":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"2":"0C"},P:{"2":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"2":"4B"},R:{"2":"ED"},S:{"2":"FD GD"}},B:5,C:"CSS @when / @else conditional rules"};
diff --git a/node_modules/caniuse-lite/data/features/css-widows-orphans.js b/node_modules/caniuse-lite/data/features/css-widows-orphans.js
new file mode 100644
index 0000000..425832f
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/css-widows-orphans.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"A B","2":"J E GC","129":"F G"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC"},D:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 I z J E F G A B C K L H M N O j k"},E:{"1":"E F G A B C K L H OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J LC 2B MC NC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i uB","129":"G B UC VC WC XC tB EC YC"},G:{"1":"F cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"2B ZC FC aC bC"},H:{"1":"tC"},I:{"1":"D yC zC","2":"wB I uC vC wC xC FC"},J:{"2":"E A"},K:{"1":"l uB","2":"A B C tB EC"},L:{"1":"D"},M:{"2":"D"},N:{"1":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"2":"FD GD"}},B:2,C:"CSS widows & orphans"};
diff --git a/node_modules/caniuse-lite/data/features/css-width-stretch.js b/node_modules/caniuse-lite/data/features/css-width-stretch.js
new file mode 100644
index 0000000..bb327b6
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/css-width-stretch.js
@@ -0,0 +1 @@
+module.exports={A:{D:{"2":"0 I z J E F G A B C K L H M N O j k","33":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},L:{"33":"D"},B:{"2":"C K L H M N O","33":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"2":"HC","33":"0 1 2 3 4 5 6 7 8 9 wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC"},M:{"33":"D"},A:{"2":"J E F G A B GC"},F:{"2":"G B C UC VC WC XC tB EC YC uB","33":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i"},K:{"2":"A B C tB EC uB","33":"l"},E:{"2":"I z J LC 2B MC NC TC","33":"E F G A B C K L H OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC"},G:{"2":"2B ZC FC aC bC","33":"F cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},P:{"2":"I","33":"j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},I:{"2":"wB I uC vC wC xC FC","33":"D yC zC"}},B:6,C:"width: stretch property"};
diff --git a/node_modules/caniuse-lite/data/features/css-writing-mode.js b/node_modules/caniuse-lite/data/features/css-writing-mode.js
new file mode 100644
index 0000000..874696f
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/css-writing-mode.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"132":"J E F G A B GC"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB IC JC","322":"FB GB HB IB JB"},D:{"1":"RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"I z J","16":"E","33":"0 1 2 3 4 5 6 7 8 9 F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB"},E:{"1":"B C K L H tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I LC 2B","16":"z","33":"J E F G A MC NC OC PC 3B"},F:{"1":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"G B C UC VC WC XC tB EC YC uB","33":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB"},G:{"1":"iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","16":"2B ZC FC","33":"F aC bC cC dC eC fC gC hC"},H:{"2":"tC"},I:{"1":"D","2":"uC vC wC","33":"wB I xC FC yC zC"},J:{"33":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"36":"A B"},O:{"1":"0C"},P:{"1":"j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD","33":"I"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:2,C:"CSS writing-mode property"};
diff --git a/node_modules/caniuse-lite/data/features/css-zoom.js b/node_modules/caniuse-lite/data/features/css-zoom.js
new file mode 100644
index 0000000..b938f13
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/css-zoom.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"J E GC","129":"F G A B"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"1":"I z J E F G A B C K L H MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"LC 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"G B C UC VC WC XC tB EC YC uB"},G:{"1":"F ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"2B"},H:{"2":"tC"},I:{"1":"wB I D uC vC wC xC FC yC zC"},J:{"1":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"2":"D"},N:{"129":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"2":"FD GD"}},B:7,C:"CSS zoom"};
diff --git a/node_modules/caniuse-lite/data/features/css3-attr.js b/node_modules/caniuse-lite/data/features/css3-attr.js
new file mode 100644
index 0000000..70a282f
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/css3-attr.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"2":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"2":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i UC VC WC XC tB EC YC uB"},G:{"2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"2":"wB I D uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"2":"A B C l tB EC uB"},L:{"2":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"2":"0C"},P:{"2":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"2":"4B"},R:{"2":"ED"},S:{"2":"FD GD"}},B:7,C:"CSS3 attr() function for all properties"};
diff --git a/node_modules/caniuse-lite/data/features/css3-boxsizing.js b/node_modules/caniuse-lite/data/features/css3-boxsizing.js
new file mode 100644
index 0000000..f65d901
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/css3-boxsizing.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"F G A B","8":"J E GC"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","33":"0 1 2 3 4 5 6 7 HC wB I z J E F G A B C K L H M N O j k IC JC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","33":"I z J E F G"},E:{"1":"J E F G A B C K L H MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","33":"I z LC 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i UC VC WC XC tB EC YC uB","2":"G"},G:{"1":"F aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","33":"2B ZC FC"},H:{"1":"tC"},I:{"1":"I D xC FC yC zC","33":"wB uC vC wC"},J:{"1":"A","33":"E"},K:{"1":"A B C l tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:5,C:"CSS3 Box-sizing"};
diff --git a/node_modules/caniuse-lite/data/features/css3-colors.js b/node_modules/caniuse-lite/data/features/css3-colors.js
new file mode 100644
index 0000000..abab10e
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/css3-colors.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"G A B","2":"J E F GC"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC","4":"HC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"1":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i VC WC XC tB EC YC uB","2":"G","4":"UC"},G:{"1":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"1":"tC"},I:{"1":"wB I D uC vC wC xC FC yC zC"},J:{"1":"E A"},K:{"1":"A B C l tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:2,C:"CSS3 Colors"};
diff --git a/node_modules/caniuse-lite/data/features/css3-cursors-grab.js b/node_modules/caniuse-lite/data/features/css3-cursors-grab.js
new file mode 100644
index 0000000..be7b072
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/css3-cursors-grab.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L"},C:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","33":"0 1 2 3 4 5 HC wB I z J E F G A B C K L H M N O j k IC JC"},D:{"1":"jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","33":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB"},E:{"1":"B C K L H tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","33":"I z J E F G A LC 2B MC NC OC PC 3B"},F:{"1":"C YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i YC uB","2":"G B UC VC WC XC tB EC","33":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB"},G:{"2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"33":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"2":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"2":"FD GD"}},B:2,C:"CSS grab & grabbing cursors"};
diff --git a/node_modules/caniuse-lite/data/features/css3-cursors-newer.js b/node_modules/caniuse-lite/data/features/css3-cursors-newer.js
new file mode 100644
index 0000000..b49b7da
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/css3-cursors-newer.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","33":"0 1 2 HC wB I z J E F G A B C K L H M N O j k IC JC"},D:{"1":"GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","33":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB"},E:{"1":"G A B C K L H PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","33":"I z J E F LC 2B MC NC OC"},F:{"1":"3 4 5 6 7 8 9 C AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i YC uB","2":"G B UC VC WC XC tB EC","33":"0 1 2 H M N O j k"},G:{"2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"33":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"2":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"2":"FD GD"}},B:2,C:"CSS3 Cursors: zoom-in & zoom-out"};
diff --git a/node_modules/caniuse-lite/data/features/css3-cursors.js b/node_modules/caniuse-lite/data/features/css3-cursors.js
new file mode 100644
index 0000000..68ebcbf
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/css3-cursors.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"G A B","132":"J E F GC"},B:{"1":"L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","260":"C K"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","4":"HC wB IC JC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","4":"I"},E:{"1":"z J E F G A B C K L H MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","4":"I LC 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","260":"G B C UC VC WC XC tB EC YC uB"},G:{"2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E","16":"A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"2":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"2":"FD GD"}},B:2,C:"CSS3 Cursors (original values)"};
diff --git a/node_modules/caniuse-lite/data/features/css3-tabsize.js b/node_modules/caniuse-lite/data/features/css3-tabsize.js
new file mode 100644
index 0000000..f146eee
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/css3-tabsize.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L H M N O"},C:{"1":"a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"HC wB IC JC","33":"WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z","164":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB"},D:{"1":"LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 I z J E F G A B C K L H M N O j","132":"1 2 3 4 5 6 7 8 9 k AB BB CB DB EB FB GB HB IB JB KB"},E:{"1":"L H 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J LC 2B MC","132":"E F G A B C K NC OC PC 3B tB uB"},F:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"G UC VC WC","132":"0 1 2 3 4 5 6 7 H M N O j k","164":"B C XC tB EC YC uB"},G:{"1":"pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"2B ZC FC aC bC","132":"F cC dC eC fC gC hC iC jC kC lC mC nC oC"},H:{"164":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC","132":"yC zC"},J:{"132":"E A"},K:{"1":"l","2":"A","164":"B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"164":"FD GD"}},B:4,C:"CSS3 tab-size"};
diff --git a/node_modules/caniuse-lite/data/features/currentcolor.js b/node_modules/caniuse-lite/data/features/currentcolor.js
new file mode 100644
index 0000000..303e892
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/currentcolor.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"G A B","2":"J E F GC"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"1":"I z J E F G A B C K L H MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"LC 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i UC VC WC XC tB EC YC uB","2":"G"},G:{"1":"F ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","16":"2B"},H:{"1":"tC"},I:{"1":"wB I D uC vC wC xC FC yC zC"},J:{"1":"E A"},K:{"1":"A B C l tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:2,C:"CSS currentColor value"};
diff --git a/node_modules/caniuse-lite/data/features/custom-elements.js b/node_modules/caniuse-lite/data/features/custom-elements.js
new file mode 100644
index 0000000..cf48b20
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/custom-elements.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G GC","8":"A B"},B:{"1":"P","2":"Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","8":"C K L H M N O"},C:{"2":"0 1 HC wB I z J E F G A B C K L H M N O j k xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC","66":"2 3 4 5 6 7 8","72":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB"},D:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P","2":"0 1 2 3 4 5 I z J E F G A B C K L H M N O j k Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","66":"6 7 8 9 AB BB"},E:{"2":"I z LC 2B MC","8":"J E F G A B C K L H NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"1":"1 2 3 4 5 6 7 8 9 j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB","2":"G B C iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i UC VC WC XC tB EC YC uB","66":"0 H M N O"},G:{"2":"2B ZC FC aC bC","8":"F cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"1":"zC","2":"wB I D uC vC wC xC FC yC"},J:{"2":"E A"},K:{"2":"A B C l tB EC uB"},L:{"2":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"I 1C 2C 3C 4C 5C 3B 6C 7C","2":"j k 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"2":"ED"},S:{"2":"GD","72":"FD"}},B:7,C:"Custom Elements (deprecated V0 spec)"};
diff --git a/node_modules/caniuse-lite/data/features/custom-elementsv1.js b/node_modules/caniuse-lite/data/features/custom-elementsv1.js
new file mode 100644
index 0000000..a523a3c
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/custom-elementsv1.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G GC","8":"A B"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","8":"C K L H M N O"},C:{"1":"eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 4 5 6 7 8 HC wB I z J E F G A B C K L H M N O j k IC JC","8":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB","456":"TB UB VB WB XB YB ZB aB bB","712":"xB cB yB dB"},D:{"1":"iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB","8":"VB WB","132":"XB YB ZB aB bB xB cB yB dB eB fB gB hB"},E:{"2":"I z J E LC 2B MC NC OC","8":"F G A PC","132":"B C K L H 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"1":"fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB UC VC WC XC tB EC YC uB","132":"KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB"},G:{"2":"F 2B ZC FC aC bC cC dC eC fC gC","132":"hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"j k 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD","2":"I","132":"1C"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"GD","8":"FD"}},B:1,C:"Custom Elements (V1)"};
diff --git a/node_modules/caniuse-lite/data/features/customevent.js b/node_modules/caniuse-lite/data/features/customevent.js
new file mode 100644
index 0000000..a93118f
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/customevent.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F GC","132":"G A B"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"HC wB I z IC JC","132":"J E F G A"},D:{"1":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"I","16":"z J E F K L","388":"G A B C"},E:{"1":"E F G A B C K L H NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I LC 2B","16":"z J","388":"MC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i YC uB","2":"G UC VC WC XC","132":"B tB EC"},G:{"1":"F bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"ZC","16":"2B FC","388":"aC"},H:{"1":"tC"},I:{"1":"D yC zC","2":"uC vC wC","388":"wB I xC FC"},J:{"1":"A","388":"E"},K:{"1":"C l uB","2":"A","132":"B tB EC"},L:{"1":"D"},M:{"1":"D"},N:{"132":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:1,C:"CustomEvent"};
diff --git a/node_modules/caniuse-lite/data/features/datalist.js b/node_modules/caniuse-lite/data/features/datalist.js
new file mode 100644
index 0000000..1f421ea
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/datalist.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"GC","8":"J E F G","260":"A B"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","260":"C K L H","1284":"M N O"},C:{"1":"w x y D 0B 1B","8":"HC wB IC JC","516":"o p q r s t u v","4612":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n"},D:{"1":"kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","8":"0 I z J E F G A B C K L H M N O","132":"1 2 3 4 5 6 7 8 9 j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB"},E:{"1":"K L H uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","8":"I z J E F G A B C LC 2B MC NC OC PC 3B tB"},F:{"1":"G B C fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i UC VC WC XC tB EC YC uB","132":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB"},G:{"8":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC","2049":"lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"1":"D zC","8":"wB I uC vC wC xC FC yC"},J:{"1":"A","8":"E"},K:{"1":"A B C l tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"8":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"2":"FD GD"}},B:1,C:"Datalist element"};
diff --git a/node_modules/caniuse-lite/data/features/dataset.js b/node_modules/caniuse-lite/data/features/dataset.js
new file mode 100644
index 0000000..8571664
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/dataset.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"B","4":"J E F G A GC"},B:{"1":"C K L H M","129":"N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB","4":"HC wB I z IC JC","129":"UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B"},D:{"1":"OB PB QB RB SB TB UB VB WB XB","4":"I z J","129":"0 1 2 3 4 5 6 7 8 9 E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"4":"I z LC 2B","129":"J E F G A B C K L H MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"1":"C BB CB DB EB FB GB HB IB JB KB tB EC YC uB","4":"G B UC VC WC XC","129":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i"},G:{"4":"2B ZC FC","129":"F aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"4":"tC"},I:{"4":"uC vC wC","129":"wB I D xC FC yC zC"},J:{"129":"E A"},K:{"1":"C tB EC uB","4":"A B","129":"l"},L:{"129":"D"},M:{"129":"D"},N:{"1":"B","4":"A"},O:{"129":"0C"},P:{"129":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"129":"4B"},R:{"129":"ED"},S:{"1":"FD","129":"GD"}},B:1,C:"dataset & data-* attributes"};
diff --git a/node_modules/caniuse-lite/data/features/datauri.js b/node_modules/caniuse-lite/data/features/datauri.js
new file mode 100644
index 0000000..20c3057
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/datauri.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E GC","132":"F","260":"G A B"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","260":"C K H M N O","772":"L"},C:{"1":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"1":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i UC VC WC XC tB EC YC uB"},G:{"1":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"1":"tC"},I:{"1":"wB I D uC vC wC xC FC yC zC"},J:{"1":"E A"},K:{"1":"A B C l tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"260":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:6,C:"Data URIs"};
diff --git a/node_modules/caniuse-lite/data/features/date-tolocaledatestring.js b/node_modules/caniuse-lite/data/features/date-tolocaledatestring.js
new file mode 100644
index 0000000..18c2323
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/date-tolocaledatestring.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"16":"GC","132":"J E F G A B"},B:{"1":"O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","132":"C K L H M N"},C:{"1":"ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","132":"0 1 2 3 4 5 6 7 HC wB I z J E F G A B C K L H M N O j k IC JC","260":"VB WB XB YB","772":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB"},D:{"1":"lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","132":"0 1 2 I z J E F G A B C K L H M N O j k","260":"HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB","772":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB"},E:{"1":"C K L H uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","16":"I z LC 2B","132":"J E F G A MC NC OC PC","260":"B 3B tB"},F:{"1":"aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","16":"G B C UC VC WC XC tB EC YC","132":"uB","260":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB","772":"0 1 2 3 H M N O j k"},G:{"1":"hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","16":"2B ZC FC aC","132":"F bC cC dC eC fC gC"},H:{"132":"tC"},I:{"1":"D","16":"wB uC vC wC","132":"I xC FC","772":"yC zC"},J:{"132":"E A"},K:{"1":"l","16":"A B C tB EC","132":"uB"},L:{"1":"D"},M:{"1":"D"},N:{"132":"A B"},O:{"1":"0C"},P:{"1":"j k 5C 3B 6C 7C 8C 9C AD vB BD CD DD","260":"I 1C 2C 3C 4C"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"GD","132":"FD"}},B:6,C:"Date.prototype.toLocaleDateString"};
diff --git a/node_modules/caniuse-lite/data/features/declarative-shadow-dom.js b/node_modules/caniuse-lite/data/features/declarative-shadow-dom.js
new file mode 100644
index 0000000..1dbd4b9
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/declarative-shadow-dom.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L H M N O P Q R S T U V W X Y"},C:{"2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC"},D:{"1":"Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T","66":"U V W X Y"},E:{"1":"CC DC SC TC","2":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC"},F:{"1":"rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB UC VC WC XC tB EC YC uB"},G:{"1":"CC DC","2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"2":"0C"},P:{"1":"j k AD vB BD CD DD","2":"I 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C"},Q:{"2":"4B"},R:{"1":"ED"},S:{"2":"FD GD"}},B:7,C:"Declarative Shadow DOM"};
diff --git a/node_modules/caniuse-lite/data/features/decorators.js b/node_modules/caniuse-lite/data/features/decorators.js
new file mode 100644
index 0000000..9c2e327
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/decorators.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"2":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"2":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i UC VC WC XC tB EC YC uB"},G:{"2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"2":"wB I D uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"2":"A B C l tB EC uB"},L:{"2":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"2":"0C"},P:{"2":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"2":"4B"},R:{"2":"ED"},S:{"2":"FD GD"}},B:7,C:"Decorators"};
diff --git a/node_modules/caniuse-lite/data/features/details.js b/node_modules/caniuse-lite/data/features/details.js
new file mode 100644
index 0000000..be5f17a
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/details.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"G A B GC","8":"J E F"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L H M N O"},C:{"1":"SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"HC","8":"0 1 2 3 4 5 6 7 8 9 wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB IC JC","194":"QB RB"},D:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","8":"I z J E F G A B","257":"0 1 2 3 4 5 6 7 8 9 j k AB BB CB DB EB","769":"C K L H M N O"},E:{"1":"C K L H uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","8":"I z LC 2B MC","257":"J E F G A NC OC PC","1025":"B 3B tB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"C tB EC YC uB","8":"G B UC VC WC XC"},G:{"1":"F bC cC dC eC fC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","8":"2B ZC FC aC","1025":"gC hC iC"},H:{"8":"tC"},I:{"1":"I D xC FC yC zC","8":"wB uC vC wC"},J:{"1":"A","8":"E"},K:{"1":"l","8":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:1,C:"Details & Summary elements"};
diff --git a/node_modules/caniuse-lite/data/features/deviceorientation.js b/node_modules/caniuse-lite/data/features/deviceorientation.js
new file mode 100644
index 0000000..8bd6844
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/deviceorientation.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A GC","132":"B"},B:{"1":"C K L H M N O","4":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"2":"HC wB IC","4":"0 1 2 3 4 5 6 7 8 9 J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","8":"I z JC"},D:{"2":"I z J","4":"0 1 2 3 4 5 6 7 8 9 E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"2":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"2":"G B C UC VC WC XC tB EC YC uB","4":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i"},G:{"2":"2B ZC","4":"F FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"2":"uC vC wC","4":"wB I D xC FC yC zC"},J:{"2":"E","4":"A"},K:{"1":"C uB","2":"A B tB EC","4":"l"},L:{"4":"D"},M:{"4":"D"},N:{"1":"B","2":"A"},O:{"4":"0C"},P:{"4":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"4":"4B"},R:{"4":"ED"},S:{"4":"FD GD"}},B:4,C:"DeviceOrientation & DeviceMotion events"};
diff --git a/node_modules/caniuse-lite/data/features/devicepixelratio.js b/node_modules/caniuse-lite/data/features/devicepixelratio.js
new file mode 100644
index 0000000..8b04d07
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/devicepixelratio.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"B","2":"J E F G A GC"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"HC wB I z J E F G A B C K L H M N IC JC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"1":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i YC uB","2":"G B UC VC WC XC tB EC"},G:{"1":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"1":"tC"},I:{"1":"wB I D uC vC wC xC FC yC zC"},J:{"1":"E A"},K:{"1":"C l uB","2":"A B tB EC"},L:{"1":"D"},M:{"1":"D"},N:{"1":"B","2":"A"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:5,C:"Window.devicePixelRatio"};
diff --git a/node_modules/caniuse-lite/data/features/dialog.js b/node_modules/caniuse-lite/data/features/dialog.js
new file mode 100644
index 0000000..f2f8b3a
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/dialog.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L H M N O"},C:{"1":"h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB IC JC","194":"WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P","1218":"Q R zB S T U V W X Y Z a b c d e f g"},D:{"1":"GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB","322":"BB CB DB EB FB"},E:{"1":"6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B"},F:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"G B C H M N O UC VC WC XC tB EC YC uB","578":"0 1 2 j k"},G:{"1":"6B 7B 8B vB 9B AC BC CC DC","2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"2":"FD GD"}},B:1,C:"Dialog element"};
diff --git a/node_modules/caniuse-lite/data/features/dispatchevent.js b/node_modules/caniuse-lite/data/features/dispatchevent.js
new file mode 100644
index 0000000..6db078b
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/dispatchevent.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"B","16":"GC","129":"G A","130":"J E F"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"1":"I z J E F G A B C K L H 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","16":"LC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i UC VC WC XC tB EC YC uB","16":"G"},G:{"1":"F ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","16":"2B"},H:{"1":"tC"},I:{"1":"wB I D wC xC FC yC zC","16":"uC vC"},J:{"1":"E A"},K:{"1":"A B C l tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"1":"B","129":"A"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:1,C:"EventTarget.dispatchEvent"};
diff --git a/node_modules/caniuse-lite/data/features/dnssec.js b/node_modules/caniuse-lite/data/features/dnssec.js
new file mode 100644
index 0000000..7599373
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/dnssec.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"132":"J E F G A B GC"},B:{"132":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"132":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC"},D:{"132":"I z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","388":"0 1 2 3 4 5 6 7 8 9 J E F G A B C K L H M N O j k"},E:{"132":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"132":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i UC VC WC XC tB EC YC uB"},G:{"132":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"132":"tC"},I:{"132":"wB I D uC vC wC xC FC yC zC"},J:{"132":"E A"},K:{"132":"A B C l tB EC uB"},L:{"132":"D"},M:{"132":"D"},N:{"132":"A B"},O:{"132":"0C"},P:{"132":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"132":"4B"},R:{"132":"ED"},S:{"132":"FD GD"}},B:6,C:"DNSSEC and DANE"};
diff --git a/node_modules/caniuse-lite/data/features/do-not-track.js b/node_modules/caniuse-lite/data/features/do-not-track.js
new file mode 100644
index 0000000..45e7169
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/do-not-track.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F GC","164":"G A","260":"B"},B:{"1":"N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","260":"C K L H M"},C:{"1":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"HC wB I z J E F IC JC","516":"0 1 2 3 4 5 6 7 8 9 G A B C K L H M N O j k AB"},D:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 I z J E F G A B C K L H M N O j k"},E:{"1":"J A B C MC PC 3B tB","2":"I z K L H LC 2B uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","1028":"E F G NC OC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i uB","2":"G B UC VC WC XC tB EC YC"},G:{"1":"eC fC gC hC iC jC kC","2":"2B ZC FC aC bC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","1028":"F cC dC"},H:{"1":"tC"},I:{"1":"D yC zC","2":"wB I uC vC wC xC FC"},J:{"16":"E","1028":"A"},K:{"1":"l uB","16":"A B C tB EC"},L:{"1":"D"},M:{"1":"D"},N:{"164":"A","260":"B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:7,C:"Do Not Track API"};
diff --git a/node_modules/caniuse-lite/data/features/document-currentscript.js b/node_modules/caniuse-lite/data/features/document-currentscript.js
new file mode 100644
index 0000000..a6d33ce
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/document-currentscript.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"HC wB IC JC"},D:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 I z J E F G A B C K L H M N O j k"},E:{"1":"F G A B C K L H PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E LC 2B MC NC OC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"G B C H UC VC WC XC tB EC YC uB"},G:{"1":"F dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"2B ZC FC aC bC cC"},H:{"2":"tC"},I:{"1":"D yC zC","2":"wB I uC vC wC xC FC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:1,C:"document.currentScript"};
diff --git a/node_modules/caniuse-lite/data/features/document-evaluate-xpath.js b/node_modules/caniuse-lite/data/features/document-evaluate-xpath.js
new file mode 100644
index 0000000..41ab649
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/document-evaluate-xpath.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC","16":"HC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"1":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i UC VC WC XC tB EC YC uB","16":"G"},G:{"1":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"1":"tC"},I:{"1":"wB I D uC vC wC xC FC yC zC"},J:{"1":"E A"},K:{"1":"A B C l tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:7,C:"document.evaluate & XPath"};
diff --git a/node_modules/caniuse-lite/data/features/document-execcommand.js b/node_modules/caniuse-lite/data/features/document-execcommand.js
new file mode 100644
index 0000000..5cd5114
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/document-execcommand.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"J E F G A B GC"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"HC wB I z J E F IC JC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"1":"J E F G A B C K L H NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","16":"I z LC 2B MC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i VC WC XC tB EC YC uB","16":"G UC"},G:{"1":"F cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"2B ZC","16":"FC aC bC"},H:{"2":"tC"},I:{"1":"D xC FC yC zC","2":"wB I uC vC wC"},J:{"1":"A","2":"E"},K:{"1":"A B C l tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"1":"B","2":"A"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:7,C:"Document.execCommand()"};
diff --git a/node_modules/caniuse-lite/data/features/document-policy.js b/node_modules/caniuse-lite/data/features/document-policy.js
new file mode 100644
index 0000000..a8d9b95
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/document-policy.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"2":"C K L H M N O P Q R S T","132":"U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T","132":"U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"2":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB UC VC WC XC tB EC YC uB","132":"mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i"},G:{"2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"2":"wB I uC vC wC xC FC yC zC","132":"D"},J:{"2":"E A"},K:{"2":"A B C tB EC uB","132":"l"},L:{"132":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"2":"0C"},P:{"2":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"2":"4B"},R:{"132":"ED"},S:{"2":"FD GD"}},B:7,C:"Document Policy"};
diff --git a/node_modules/caniuse-lite/data/features/document-scrollingelement.js b/node_modules/caniuse-lite/data/features/document-scrollingelement.js
new file mode 100644
index 0000000..61c6b71
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/document-scrollingelement.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","16":"C K"},C:{"1":"RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB IC JC"},D:{"1":"NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB"},E:{"1":"G A B C K L H PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E F LC 2B MC NC OC"},F:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k UC VC WC XC tB EC YC uB"},G:{"1":"eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"F 2B ZC FC aC bC cC dC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:5,C:"document.scrollingElement"};
diff --git a/node_modules/caniuse-lite/data/features/documenthead.js b/node_modules/caniuse-lite/data/features/documenthead.js
new file mode 100644
index 0000000..e74360d
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/documenthead.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"G A B","2":"J E F GC"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"HC wB IC JC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"1":"J E F G A B C K L H MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I LC 2B","16":"z"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i tB EC YC uB","2":"G UC VC WC XC"},G:{"1":"F ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","16":"2B"},H:{"1":"tC"},I:{"1":"wB I D wC xC FC yC zC","16":"uC vC"},J:{"1":"E A"},K:{"1":"B C l tB EC uB","2":"A"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:1,C:"document.head"};
diff --git a/node_modules/caniuse-lite/data/features/dom-manip-convenience.js b/node_modules/caniuse-lite/data/features/dom-manip-convenience.js
new file mode 100644
index 0000000..7c832f8
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/dom-manip-convenience.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L H M"},C:{"1":"SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB IC JC"},D:{"1":"XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB","194":"VB WB"},E:{"1":"A B C K L H 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E F G LC 2B MC NC OC PC"},F:{"1":"KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB UC VC WC XC tB EC YC uB","194":"JB"},G:{"1":"gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"F 2B ZC FC aC bC cC dC eC fC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"j k 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD","2":"I 1C"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"GD","2":"FD"}},B:1,C:"DOM manipulation convenience methods"};
diff --git a/node_modules/caniuse-lite/data/features/dom-range.js b/node_modules/caniuse-lite/data/features/dom-range.js
new file mode 100644
index 0000000..e2e9a23
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/dom-range.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"G A B","2":"GC","8":"J E F"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"1":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i UC VC WC XC tB EC YC uB"},G:{"1":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"1":"tC"},I:{"1":"wB I D uC vC wC xC FC yC zC"},J:{"1":"E A"},K:{"1":"A B C l tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:1,C:"Document Object Model Range"};
diff --git a/node_modules/caniuse-lite/data/features/domcontentloaded.js b/node_modules/caniuse-lite/data/features/domcontentloaded.js
new file mode 100644
index 0000000..008fffa
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/domcontentloaded.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"G A B","2":"J E F GC"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"1":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i UC VC WC XC tB EC YC uB"},G:{"1":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"1":"tC"},I:{"1":"wB I D uC vC wC xC FC yC zC"},J:{"1":"E A"},K:{"1":"A B C l tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:1,C:"DOMContentLoaded"};
diff --git a/node_modules/caniuse-lite/data/features/dommatrix.js b/node_modules/caniuse-lite/data/features/dommatrix.js
new file mode 100644
index 0000000..228a54d
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/dommatrix.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G GC","132":"A B"},B:{"132":"C K L H M N O","1028":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB IC JC","1028":"kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2564":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB","3076":"SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB"},D:{"16":"I z J E","132":"0 1 2 3 4 5 6 7 8 9 G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB","388":"F","1028":"yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"16":"I LC 2B","132":"z J E F G A MC NC OC PC 3B","1028":"B C K L H tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"2":"G B C UC VC WC XC tB EC YC uB","132":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB","1028":"RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i"},G:{"16":"2B ZC FC","132":"F aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"132":"I xC FC yC zC","292":"wB uC vC wC","1028":"D"},J:{"16":"E","132":"A"},K:{"2":"A B C tB EC uB","1028":"l"},L:{"1028":"D"},M:{"1028":"D"},N:{"132":"A B"},O:{"1028":"0C"},P:{"132":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1028":"4B"},R:{"1028":"ED"},S:{"1028":"GD","2564":"FD"}},B:4,C:"DOMMatrix"};
diff --git a/node_modules/caniuse-lite/data/features/download.js b/node_modules/caniuse-lite/data/features/download.js
new file mode 100644
index 0000000..1c57f88
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/download.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C"},C:{"1":"1 2 3 4 5 6 7 8 9 j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 HC wB I z J E F G A B C K L H M N O IC JC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"I z J E F G A B C K"},E:{"1":"B C K L H 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E F G A LC 2B MC NC OC PC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"G B C UC VC WC XC tB EC YC uB"},G:{"1":"mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC"},H:{"2":"tC"},I:{"1":"D yC zC","2":"wB I uC vC wC xC FC"},J:{"1":"A","2":"E"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:1,C:"Download attribute"};
diff --git a/node_modules/caniuse-lite/data/features/dragndrop.js b/node_modules/caniuse-lite/data/features/dragndrop.js
new file mode 100644
index 0000000..d4a9cd6
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/dragndrop.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"644":"J E F G GC","772":"A B"},B:{"1":"O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","260":"C K L H M N"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC","8":"HC wB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"1":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i uB","8":"G B UC VC WC XC tB EC YC"},G:{"1":"sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC"},H:{"2":"tC"},I:{"2":"wB I uC vC wC xC FC yC zC","1025":"D"},J:{"2":"E A"},K:{"1":"uB","8":"A B C tB EC","1025":"l"},L:{"1025":"D"},M:{"2":"D"},N:{"1":"A B"},O:{"1025":"0C"},P:{"2":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"2":"ED"},S:{"2":"FD GD"}},B:1,C:"Drag and Drop"};
diff --git a/node_modules/caniuse-lite/data/features/element-closest.js b/node_modules/caniuse-lite/data/features/element-closest.js
new file mode 100644
index 0000000..359d23d
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/element-closest.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L"},C:{"1":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB IC JC"},D:{"1":"KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB"},E:{"1":"G A B C K L H PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E F LC 2B MC NC OC"},F:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 6 G B C H M N O j k UC VC WC XC tB EC YC uB"},G:{"1":"eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"F 2B ZC FC aC bC cC dC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD","2":"I"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:1,C:"Element.closest()"};
diff --git a/node_modules/caniuse-lite/data/features/element-from-point.js b/node_modules/caniuse-lite/data/features/element-from-point.js
new file mode 100644
index 0000000..d30e08a
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/element-from-point.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"J E F G A B","16":"GC"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC","16":"HC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","16":"I z J E F G A B C K L"},E:{"1":"z J E F G A B C K L H MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","16":"I LC 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i tB EC YC uB","16":"G UC VC WC XC"},G:{"1":"F ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","16":"2B"},H:{"1":"tC"},I:{"1":"wB I D wC xC FC yC zC","16":"uC vC"},J:{"1":"E A"},K:{"1":"C l uB","16":"A B tB EC"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:5,C:"document.elementFromPoint()"};
diff --git a/node_modules/caniuse-lite/data/features/element-scroll-methods.js b/node_modules/caniuse-lite/data/features/element-scroll-methods.js
new file mode 100644
index 0000000..4548727
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/element-scroll-methods.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L H M N O"},C:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB IC JC"},D:{"1":"yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB"},E:{"1":"L H QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E F G LC 2B MC NC OC PC","132":"A B C K 3B tB uB 4B"},F:{"1":"RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB UC VC WC XC tB EC YC uB"},G:{"1":"rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"F 2B ZC FC aC bC cC dC eC fC","132":"gC hC iC jC kC lC mC nC oC pC qC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"j k 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD","2":"I 1C 2C 3C"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:5,C:"Scroll methods on elements (scroll, scrollTo, scrollBy)"};
diff --git a/node_modules/caniuse-lite/data/features/eme.js b/node_modules/caniuse-lite/data/features/eme.js
new file mode 100644
index 0000000..b3a8a73
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/eme.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A GC","164":"B"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB IC JC"},D:{"1":"LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB","132":"EB FB GB HB IB JB KB"},E:{"1":"C K L H uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J LC 2B MC NC","164":"E F G A B OC PC 3B tB"},F:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 G B C H M N O j k UC VC WC XC tB EC YC uB","132":"1 2 3 4 5 6 7"},G:{"1":"jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD","2":"I"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:2,C:"Encrypted Media Extensions"};
diff --git a/node_modules/caniuse-lite/data/features/eot.js b/node_modules/caniuse-lite/data/features/eot.js
new file mode 100644
index 0000000..24cb3d4
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/eot.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"J E F G A B","2":"GC"},B:{"2":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"2":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i UC VC WC XC tB EC YC uB"},G:{"2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"2":"wB I D uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"2":"A B C l tB EC uB"},L:{"2":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"2":"0C"},P:{"2":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"2":"4B"},R:{"2":"ED"},S:{"2":"FD GD"}},B:7,C:"EOT - Embedded OpenType fonts"};
diff --git a/node_modules/caniuse-lite/data/features/es5.js b/node_modules/caniuse-lite/data/features/es5.js
new file mode 100644
index 0000000..9d09b42
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/es5.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"A B","2":"J E GC","260":"G","1026":"F"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"1 2 3 4 5 6 7 8 9 k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","4":"HC wB IC JC","132":"0 I z J E F G A B C K L H M N O j"},D:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","4":"I z J E F G A B C K L H M N O","132":"0 1 j k"},E:{"1":"J E F G A B C K L H NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","4":"I z LC 2B MC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","4":"G B C UC VC WC XC tB EC YC","132":"uB"},G:{"1":"F bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","4":"2B ZC FC aC"},H:{"132":"tC"},I:{"1":"D yC zC","4":"wB uC vC wC","132":"xC FC","900":"I"},J:{"1":"A","4":"E"},K:{"1":"l","4":"A B C tB EC","132":"uB"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:6,C:"ECMAScript 5"};
diff --git a/node_modules/caniuse-lite/data/features/es6-class.js b/node_modules/caniuse-lite/data/features/es6-class.js
new file mode 100644
index 0000000..0907d98
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/es6-class.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C"},C:{"1":"OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB IC JC"},D:{"1":"SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB","132":"LB MB NB OB PB QB RB"},E:{"1":"G A B C K L H PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E F LC 2B MC NC OC"},F:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 6 7 G B C H M N O j k UC VC WC XC tB EC YC uB","132":"8 9 AB BB CB DB EB"},G:{"1":"eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"F 2B ZC FC aC bC cC dC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD","2":"I"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:6,C:"ES6 classes"};
diff --git a/node_modules/caniuse-lite/data/features/es6-generators.js b/node_modules/caniuse-lite/data/features/es6-generators.js
new file mode 100644
index 0000000..bb975ad
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/es6-generators.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C"},C:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 4 HC wB I z J E F G A B C K L H M N O j k IC JC"},D:{"1":"IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB"},E:{"1":"A B C K L H 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E F G LC 2B MC NC OC PC"},F:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 G B C H M N O j k UC VC WC XC tB EC YC uB"},G:{"1":"gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"F 2B ZC FC aC bC cC dC eC fC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:6,C:"ES6 Generators"};
diff --git a/node_modules/caniuse-lite/data/features/es6-module-dynamic-import.js b/node_modules/caniuse-lite/data/features/es6-module-dynamic-import.js
new file mode 100644
index 0000000..500dd72
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/es6-module-dynamic-import.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L H M N O"},C:{"1":"iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB IC JC","194":"hB"},D:{"1":"eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB"},E:{"1":"C K L H tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E F G A B LC 2B MC NC OC PC 3B"},F:{"1":"TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB UC VC WC XC tB EC YC uB"},G:{"1":"iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"F 2B ZC FC aC bC cC dC eC fC gC hC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"j k 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD","2":"I 1C 2C 3C"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"GD","2":"FD"}},B:6,C:"JavaScript modules: dynamic import()"};
diff --git a/node_modules/caniuse-lite/data/features/es6-module.js b/node_modules/caniuse-lite/data/features/es6-module.js
new file mode 100644
index 0000000..c658c24
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/es6-module.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L","4097":"M N O","4290":"H"},C:{"1":"cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB IC JC","322":"XB YB ZB aB bB xB"},D:{"1":"yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB","194":"cB"},E:{"1":"B C K L H tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E F G A LC 2B MC NC OC PC","3076":"3B"},F:{"1":"RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB UC VC WC XC tB EC YC uB","194":"QB"},G:{"1":"iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"F 2B ZC FC aC bC cC dC eC fC gC","3076":"hC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"j k 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD","2":"I 1C 2C 3C"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"GD","2":"FD"}},B:1,C:"JavaScript modules via script tag"};
diff --git a/node_modules/caniuse-lite/data/features/es6-number.js b/node_modules/caniuse-lite/data/features/es6-number.js
new file mode 100644
index 0000000..37149d5
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/es6-number.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"HC wB I z J E F G A B C K L H IC JC","132":"0 1 2 3 M N O j k","260":"4 5 6 7 8 9","516":"AB"},D:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"I z J E F G A B C K L H M N O","1028":"0 1 2 3 4 5 6 7 8 9 j k AB BB CB"},E:{"1":"G A B C K L H PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E F LC 2B MC NC OC"},F:{"1":"1 2 3 4 5 6 7 8 9 k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"G B C UC VC WC XC tB EC YC uB","1028":"0 H M N O j"},G:{"1":"eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"F 2B ZC FC aC bC cC dC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC","1028":"xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:6,C:"ES6 Number"};
diff --git a/node_modules/caniuse-lite/data/features/es6-string-includes.js b/node_modules/caniuse-lite/data/features/es6-string-includes.js
new file mode 100644
index 0000000..a827389
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/es6-string-includes.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB IC JC"},D:{"1":"KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB"},E:{"1":"G A B C K L H PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E F LC 2B MC NC OC"},F:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 6 G B C H M N O j k UC VC WC XC tB EC YC uB"},G:{"1":"eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"F 2B ZC FC aC bC cC dC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:6,C:"String.prototype.includes"};
diff --git a/node_modules/caniuse-lite/data/features/es6.js b/node_modules/caniuse-lite/data/features/es6.js
new file mode 100644
index 0000000..78ce700
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/es6.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A GC","388":"B"},B:{"257":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","260":"C K L","769":"H M N O"},C:{"2":"HC wB I z IC JC","4":"0 1 2 3 4 5 6 7 8 9 J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB","257":"XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B"},D:{"2":"0 I z J E F G A B C K L H M N O j","4":"1 2 3 4 5 6 7 8 9 k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB","257":"UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"1":"A B C K L H 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E LC 2B MC NC","4":"F G OC PC"},F:{"2":"G B C UC VC WC XC tB EC YC uB","4":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB","257":"HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i"},G:{"1":"gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"2B ZC FC aC bC","4":"F cC dC eC fC"},H:{"2":"tC"},I:{"2":"wB I uC vC wC xC FC","4":"yC zC","257":"D"},J:{"2":"E","4":"A"},K:{"2":"A B C tB EC uB","257":"l"},L:{"257":"D"},M:{"257":"D"},N:{"2":"A","388":"B"},O:{"257":"0C"},P:{"4":"I","257":"j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"257":"4B"},R:{"257":"ED"},S:{"4":"FD","257":"GD"}},B:6,C:"ECMAScript 2015 (ES6)"};
diff --git a/node_modules/caniuse-lite/data/features/eventsource.js b/node_modules/caniuse-lite/data/features/eventsource.js
new file mode 100644
index 0000000..6900b84
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/eventsource.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L H M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"HC wB I z IC JC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"I z"},E:{"1":"z J E F G A B C K L H MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I LC 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i tB EC YC uB","4":"G UC VC WC XC"},G:{"1":"F ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"2B"},H:{"2":"tC"},I:{"1":"D yC zC","2":"wB I uC vC wC xC FC"},J:{"1":"E A"},K:{"1":"C l tB EC uB","4":"A B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:1,C:"Server-sent events"};
diff --git a/node_modules/caniuse-lite/data/features/extended-system-fonts.js b/node_modules/caniuse-lite/data/features/extended-system-fonts.js
new file mode 100644
index 0000000..af2e35e
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/extended-system-fonts.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"2":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"1":"L H 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E F G A B C K LC 2B MC NC OC PC 3B tB uB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i UC VC WC XC tB EC YC uB"},G:{"1":"pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC"},H:{"2":"tC"},I:{"2":"wB I D uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"2":"A B C l tB EC uB"},L:{"2":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"2":"0C"},P:{"2":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"2":"4B"},R:{"2":"ED"},S:{"2":"FD GD"}},B:5,C:"ui-serif, ui-sans-serif, ui-monospace and ui-rounded values for font-family"};
diff --git a/node_modules/caniuse-lite/data/features/feature-policy.js b/node_modules/caniuse-lite/data/features/feature-policy.js
new file mode 100644
index 0000000..f869875
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/feature-policy.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"P Q R S T U V W","2":"C K L H M N O","1025":"X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l IC JC","260":"oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B"},D:{"1":"oB pB qB rB sB P Q R S T U V W","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB","132":"cB yB dB eB fB gB hB iB jB kB lB mB nB l","1025":"X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"2":"I z J E F G A B LC 2B MC NC OC PC 3B","772":"C K L H tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"1":"dB eB fB gB hB iB jB kB lB mB nB l oB","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB UC VC WC XC tB EC YC uB","132":"QB RB SB TB UB VB WB XB YB ZB aB bB cB","1025":"pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i"},G:{"2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC","772":"jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"2":"A B C tB EC uB","1025":"l"},L:{"1025":"D"},M:{"260":"D"},N:{"2":"A B"},O:{"2":"0C"},P:{"1":"j k 6C 7C 8C 9C AD vB BD CD DD","2":"I 1C 2C 3C","132":"4C 5C 3B"},Q:{"132":"4B"},R:{"1025":"ED"},S:{"2":"FD","260":"GD"}},B:7,C:"Feature Policy"};
diff --git a/node_modules/caniuse-lite/data/features/fetch.js b/node_modules/caniuse-lite/data/features/fetch.js
new file mode 100644
index 0000000..ded60a2
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/fetch.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K"},C:{"1":"JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB IC JC","1025":"IB","1218":"DB EB FB GB HB"},D:{"1":"LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB","260":"JB","772":"KB"},E:{"1":"B C K L H 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E F G A LC 2B MC NC OC PC"},F:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 G B C H M N O j k UC VC WC XC tB EC YC uB","260":"6","772":"7"},G:{"1":"hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"F 2B ZC FC aC bC cC dC eC fC gC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:1,C:"Fetch"};
diff --git a/node_modules/caniuse-lite/data/features/fieldset-disabled.js b/node_modules/caniuse-lite/data/features/fieldset-disabled.js
new file mode 100644
index 0000000..77083c3
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/fieldset-disabled.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"16":"GC","132":"F G","388":"J E A B"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"HC wB IC JC"},D:{"1":"1 2 3 4 5 6 7 8 9 j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"I z J E F G A B C K L H","16":"0 M N O"},E:{"1":"J E F G A B C K L H NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z LC 2B MC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i VC WC XC tB EC YC uB","16":"G UC"},G:{"1":"F bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"2B ZC FC aC"},H:{"388":"tC"},I:{"1":"D yC zC","2":"wB I uC vC wC xC FC"},J:{"1":"A","2":"E"},K:{"1":"A B C l tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A","260":"B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:1,C:"disabled attribute of the fieldset element"};
diff --git a/node_modules/caniuse-lite/data/features/fileapi.js b/node_modules/caniuse-lite/data/features/fileapi.js
new file mode 100644
index 0000000..0de059f
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/fileapi.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G GC","260":"A B"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","260":"C K L H M N O"},C:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"HC wB IC","260":"0 1 2 3 4 5 6 I z J E F G A B C K L H M N O j k JC"},D:{"1":"HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"I z","260":"0 1 2 3 4 5 6 7 8 9 K L H M N O j k AB BB CB DB EB FB GB","388":"J E F G A B C"},E:{"1":"A B C K L H 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z LC 2B","260":"J E F G NC OC PC","388":"MC"},F:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"G B UC VC WC XC","260":"0 1 2 3 C H M N O j k tB EC YC uB"},G:{"1":"gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"2B ZC FC aC","260":"F bC cC dC eC fC"},H:{"2":"tC"},I:{"1":"D zC","2":"uC vC wC","260":"yC","388":"wB I xC FC"},J:{"260":"A","388":"E"},K:{"1":"l","2":"A B","260":"C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A","260":"B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:5,C:"File API"};
diff --git a/node_modules/caniuse-lite/data/features/filereader.js b/node_modules/caniuse-lite/data/features/filereader.js
new file mode 100644
index 0000000..f98fde6
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/filereader.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G GC","132":"A B"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B JC","2":"HC wB IC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"I z"},E:{"1":"J E F G A B C K L H NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z LC 2B MC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i tB EC YC uB","2":"G B UC VC WC XC"},G:{"1":"F bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"2B ZC FC aC"},H:{"2":"tC"},I:{"1":"wB I D xC FC yC zC","2":"uC vC wC"},J:{"1":"A","2":"E"},K:{"1":"C l tB EC uB","2":"A B"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:5,C:"FileReader API"};
diff --git a/node_modules/caniuse-lite/data/features/filereadersync.js b/node_modules/caniuse-lite/data/features/filereadersync.js
new file mode 100644
index 0000000..3bd7c94
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/filereadersync.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"A B","2":"J E F G GC"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"HC wB I z J E IC JC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","16":"I z J E F G A B C K L"},E:{"1":"J E F G A B C K L H NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z LC 2B MC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i YC uB","2":"G UC VC","16":"B WC XC tB EC"},G:{"1":"F bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"2B ZC FC aC"},H:{"2":"tC"},I:{"1":"D yC zC","2":"wB I uC vC wC xC FC"},J:{"1":"A","2":"E"},K:{"1":"C l EC uB","2":"A","16":"B tB"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:5,C:"FileReaderSync"};
diff --git a/node_modules/caniuse-lite/data/features/filesystem.js b/node_modules/caniuse-lite/data/features/filesystem.js
new file mode 100644
index 0000000..4ec6e6e
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/filesystem.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"2":"C K L H M N O","33":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC"},D:{"2":"I z J E","33":"0 1 2 3 4 5 6 7 8 9 K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","36":"F G A B C"},E:{"2":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"2":"G B C UC VC WC XC tB EC YC uB","33":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i"},G:{"2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"2":"wB I D uC vC wC xC FC yC zC"},J:{"2":"E","33":"A"},K:{"2":"A B C tB EC uB","33":"l"},L:{"33":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"33":"0C"},P:{"2":"I","33":"j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"2":"4B"},R:{"33":"ED"},S:{"2":"FD GD"}},B:7,C:"Filesystem & FileWriter API"};
diff --git a/node_modules/caniuse-lite/data/features/flac.js b/node_modules/caniuse-lite/data/features/flac.js
new file mode 100644
index 0000000..3e73ad9
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/flac.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L H"},C:{"1":"UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB IC JC"},D:{"1":"ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB","16":"NB OB PB","388":"QB RB SB TB UB VB WB XB YB"},E:{"1":"K L H 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E F G A LC 2B MC NC OC PC 3B","516":"B C tB uB"},F:{"1":"LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB UC VC WC XC tB EC YC uB"},G:{"1":"iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"F 2B ZC FC aC bC cC dC eC fC gC hC"},H:{"2":"tC"},I:{"1":"D","2":"uC vC wC","16":"wB I xC FC yC zC"},J:{"1":"A","2":"E"},K:{"1":"l uB","16":"A B C tB EC"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD","129":"I"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"GD","2":"FD"}},B:6,C:"FLAC audio format"};
diff --git a/node_modules/caniuse-lite/data/features/flexbox-gap.js b/node_modules/caniuse-lite/data/features/flexbox-gap.js
new file mode 100644
index 0000000..95a98b6
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/flexbox-gap.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L H M N O P Q R S"},C:{"1":"eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB IC JC"},D:{"1":"T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S"},E:{"1":"H QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E F G A B C K L LC 2B MC NC OC PC 3B tB uB 4B"},F:{"1":"lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB UC VC WC XC tB EC YC uB"},G:{"1":"rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"2":"0C"},P:{"1":"j k 9C AD vB BD CD DD","2":"I 1C 2C 3C 4C 5C 3B 6C 7C 8C"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"GD","2":"FD"}},B:5,C:"gap property for Flexbox"};
diff --git a/node_modules/caniuse-lite/data/features/flexbox.js b/node_modules/caniuse-lite/data/features/flexbox.js
new file mode 100644
index 0000000..6ec47b6
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/flexbox.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G GC","1028":"B","1316":"A"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","164":"0 HC wB I z J E F G A B C K L H M N O j k IC JC","516":"1 2 3 4 5 6"},D:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","33":"1 2 3 4 5 6 7 k","164":"0 I z J E F G A B C K L H M N O j"},E:{"1":"G A B C K L H PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","33":"E F NC OC","164":"I z J LC 2B MC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i uB","2":"G B C UC VC WC XC tB EC YC","33":"H M"},G:{"1":"eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","33":"F cC dC","164":"2B ZC FC aC bC"},H:{"1":"tC"},I:{"1":"D yC zC","164":"wB I uC vC wC xC FC"},J:{"1":"A","164":"E"},K:{"1":"l uB","2":"A B C tB EC"},L:{"1":"D"},M:{"1":"D"},N:{"1":"B","292":"A"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:4,C:"CSS Flexible Box Layout Module"};
diff --git a/node_modules/caniuse-lite/data/features/flow-root.js b/node_modules/caniuse-lite/data/features/flow-root.js
new file mode 100644
index 0000000..2f040e4
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/flow-root.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L H M N O"},C:{"1":"WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB IC JC"},D:{"1":"bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB"},E:{"1":"K L H 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E F G A B C LC 2B MC NC OC PC 3B tB uB"},F:{"1":"OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB UC VC WC XC tB EC YC uB"},G:{"1":"mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"j k 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD","2":"I 1C 2C"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"GD","2":"FD"}},B:4,C:"display: flow-root"};
diff --git a/node_modules/caniuse-lite/data/features/focusin-focusout-events.js b/node_modules/caniuse-lite/data/features/focusin-focusout-events.js
new file mode 100644
index 0000000..adadd3f
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/focusin-focusout-events.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"J E F G A B","2":"GC"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB IC JC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","16":"I z J E F G A B C K L"},E:{"1":"J E F G A B C K L H MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","16":"I z LC 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i YC uB","2":"G UC VC WC XC","16":"B tB EC"},G:{"1":"F aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"2B ZC FC"},H:{"2":"tC"},I:{"1":"I D xC FC yC zC","2":"uC vC wC","16":"wB"},J:{"1":"E A"},K:{"1":"C l uB","2":"A","16":"B tB EC"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"GD","2":"FD"}},B:5,C:"focusin & focusout events"};
diff --git a/node_modules/caniuse-lite/data/features/font-family-system-ui.js b/node_modules/caniuse-lite/data/features/font-family-system-ui.js
new file mode 100644
index 0000000..af37034
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/font-family-system-ui.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L H M N O"},C:{"1":"b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB IC JC","132":"MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a"},D:{"1":"ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB","260":"WB XB YB"},E:{"1":"B C K L H tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E F LC 2B MC NC OC","16":"G","132":"A PC 3B"},F:{"1":"MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB UC VC WC XC tB EC YC uB"},G:{"1":"iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"F 2B ZC FC aC bC cC dC","132":"eC fC gC hC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"j k 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD","2":"I 1C"},Q:{"1":"4B"},R:{"1":"ED"},S:{"132":"FD GD"}},B:5,C:"system-ui value for font-family"};
diff --git a/node_modules/caniuse-lite/data/features/font-feature.js b/node_modules/caniuse-lite/data/features/font-feature.js
new file mode 100644
index 0000000..aa2eea6
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/font-feature.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"A B","2":"J E F G GC"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"HC wB IC JC","33":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB","164":"I z J E F G A B C K L"},D:{"1":"RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"I z J E F G A B C K L H","33":"1 2 3 4 5 6 7 8 9 k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB","292":"0 M N O j"},E:{"1":"A B C K L H PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"E F G LC 2B NC OC","4":"I z J MC"},F:{"1":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"G B C UC VC WC XC tB EC YC uB","33":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB"},G:{"1":"fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"F cC dC eC","4":"2B ZC FC aC bC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC","33":"yC zC"},J:{"2":"E","33":"A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD","33":"I"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:2,C:"CSS font-feature-settings"};
diff --git a/node_modules/caniuse-lite/data/features/font-kerning.js b/node_modules/caniuse-lite/data/features/font-kerning.js
new file mode 100644
index 0000000..a6cdc51
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/font-kerning.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L H M N O"},C:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 HC wB I z J E F G A B C K L H M N O j k IC JC","194":"3 4 5 6 7 8 9 AB BB CB"},D:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 I z J E F G A B C K L H M N O j k","33":"8 9 AB BB"},E:{"1":"A B C K L H PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J LC 2B MC NC","33":"E F G OC"},F:{"1":"1 2 3 4 5 6 7 8 9 j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"G B C H UC VC WC XC tB EC YC uB","33":"0 M N O"},G:{"1":"kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"2B ZC FC aC bC cC","33":"F dC eC fC gC hC iC jC"},H:{"2":"tC"},I:{"1":"D zC","2":"wB I uC vC wC xC FC","33":"yC"},J:{"2":"E","33":"A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:4,C:"CSS3 font-kerning"};
diff --git a/node_modules/caniuse-lite/data/features/font-loading.js b/node_modules/caniuse-lite/data/features/font-loading.js
new file mode 100644
index 0000000..b92d665
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/font-loading.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L H M N O"},C:{"1":"KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB IC JC","194":"EB FB GB HB IB JB"},D:{"1":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB"},E:{"1":"A B C K L H 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E F G LC 2B MC NC OC PC"},F:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 G B C H M N O j k UC VC WC XC tB EC YC uB"},G:{"1":"gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"F 2B ZC FC aC bC cC dC eC fC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:5,C:"CSS Font Loading"};
diff --git a/node_modules/caniuse-lite/data/features/font-size-adjust.js b/node_modules/caniuse-lite/data/features/font-size-adjust.js
new file mode 100644
index 0000000..27598f8
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/font-size-adjust.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"2":"C K L H M N O","194":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC","2":"HC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB","194":"MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"1":"CC DC SC TC","2":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC"},F:{"2":"0 1 2 3 4 5 6 7 8 G B C H M N O j k UC VC WC XC tB EC YC uB","194":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i"},G:{"1":"CC DC","2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC"},H:{"2":"tC"},I:{"2":"wB I D uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"2":"A B C l tB EC uB"},L:{"2":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"2":"0C"},P:{"2":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"194":"4B"},R:{"2":"ED"},S:{"1":"GD","2":"FD"}},B:2,C:"CSS font-size-adjust"};
diff --git a/node_modules/caniuse-lite/data/features/font-smooth.js b/node_modules/caniuse-lite/data/features/font-smooth.js
new file mode 100644
index 0000000..e2e0855
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/font-smooth.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"2":"C K L H M N O","676":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"2":"0 1 2 3 HC wB I z J E F G A B C K L H M N O j k IC JC","804":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B"},D:{"2":"I","676":"0 1 2 3 4 5 6 7 8 9 z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"2":"LC 2B","676":"I z J E F G A B C K L H MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"2":"G B C UC VC WC XC tB EC YC uB","676":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i"},G:{"2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"2":"wB I D uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"2":"A B C l tB EC uB"},L:{"2":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"2":"0C"},P:{"2":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"2":"4B"},R:{"2":"ED"},S:{"804":"FD GD"}},B:7,C:"CSS font-smooth"};
diff --git a/node_modules/caniuse-lite/data/features/font-unicode-range.js b/node_modules/caniuse-lite/data/features/font-unicode-range.js
new file mode 100644
index 0000000..447f440
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/font-unicode-range.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F GC","4":"G A B"},B:{"1":"N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","4":"C K L H M"},C:{"1":"NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB IC JC","194":"FB GB HB IB JB KB LB MB"},D:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","4":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB"},E:{"1":"A B C K L H 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","4":"I z J E F G LC 2B MC NC OC PC"},F:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"G B C UC VC WC XC tB EC YC uB","4":"0 1 H M N O j k"},G:{"1":"gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","4":"F 2B ZC FC aC bC cC dC eC fC"},H:{"2":"tC"},I:{"1":"D","4":"wB I uC vC wC xC FC yC zC"},J:{"2":"E","4":"A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"4":"A B"},O:{"1":"0C"},P:{"1":"j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD","4":"I"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:4,C:"Font unicode-range subsetting"};
diff --git a/node_modules/caniuse-lite/data/features/font-variant-alternates.js b/node_modules/caniuse-lite/data/features/font-variant-alternates.js
new file mode 100644
index 0000000..7f357eb
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/font-variant-alternates.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G GC","130":"A B"},B:{"1":"x y D","130":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w"},C:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"HC wB IC JC","130":"0 1 2 I z J E F G A B C K L H M N O j k","322":"3 4 5 6 7 8 9 AB BB CB"},D:{"1":"x y D 0B 1B KC","2":"I z J E F G A B C K L H","130":"0 1 2 3 4 5 6 7 8 9 M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w"},E:{"1":"A B C K L H PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"E F G LC 2B NC OC","130":"I z J MC"},F:{"1":"h i","2":"G B C UC VC WC XC tB EC YC uB","130":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g"},G:{"1":"fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"F 2B cC dC eC","130":"ZC FC aC bC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC","130":"yC zC"},J:{"2":"E","130":"A"},K:{"2":"A B C tB EC uB","130":"l"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"130":"0C"},P:{"130":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"130":"4B"},R:{"130":"ED"},S:{"1":"FD GD"}},B:5,C:"CSS font-variant-alternates"};
diff --git a/node_modules/caniuse-lite/data/features/font-variant-numeric.js b/node_modules/caniuse-lite/data/features/font-variant-numeric.js
new file mode 100644
index 0000000..f14c194
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/font-variant-numeric.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L H M N O"},C:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB IC JC"},D:{"1":"VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB"},E:{"1":"A B C K L H PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E F G LC 2B MC NC OC"},F:{"1":"IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB UC VC WC XC tB EC YC uB"},G:{"1":"fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"F 2B ZC FC aC bC cC dC eC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E","16":"A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"j k 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD","2":"I 1C"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:2,C:"CSS font-variant-numeric"};
diff --git a/node_modules/caniuse-lite/data/features/fontface.js b/node_modules/caniuse-lite/data/features/fontface.js
new file mode 100644
index 0000000..ee89477
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/fontface.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"G A B","132":"J E F GC"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC","2":"HC wB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"1":"I z J E F G A B C K L H 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"LC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i VC WC XC tB EC YC uB","2":"G UC"},G:{"1":"F FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","260":"2B ZC"},H:{"2":"tC"},I:{"1":"I D xC FC yC zC","2":"uC","4":"wB vC wC"},J:{"1":"A","4":"E"},K:{"1":"A B C l tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:2,C:"@font-face Web fonts"};
diff --git a/node_modules/caniuse-lite/data/features/form-attribute.js b/node_modules/caniuse-lite/data/features/form-attribute.js
new file mode 100644
index 0000000..2982d80
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/form-attribute.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"HC wB IC JC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"I z J E F G"},E:{"1":"J E F G A B C K L H MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I LC 2B","16":"z"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i UC VC WC XC tB EC YC uB","2":"G"},G:{"1":"F aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"2B ZC FC"},H:{"1":"tC"},I:{"1":"wB I D xC FC yC zC","2":"uC vC wC"},J:{"1":"E A"},K:{"1":"A B C l tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:1,C:"Form attribute"};
diff --git a/node_modules/caniuse-lite/data/features/form-submit-attributes.js b/node_modules/caniuse-lite/data/features/form-submit-attributes.js
new file mode 100644
index 0000000..8d5c4b4
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/form-submit-attributes.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"A B","2":"J E F G GC"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"HC wB IC JC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","16":"I z J E F G A B C K L"},E:{"1":"J E F G A B C K L H MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z LC 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i XC tB EC YC uB","2":"G UC","16":"VC WC"},G:{"1":"F aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"2B ZC FC"},H:{"1":"tC"},I:{"1":"I D xC FC yC zC","2":"uC vC wC","16":"wB"},J:{"1":"A","2":"E"},K:{"1":"B C l tB EC uB","16":"A"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:1,C:"Attributes for form submission"};
diff --git a/node_modules/caniuse-lite/data/features/form-validation.js b/node_modules/caniuse-lite/data/features/form-validation.js
new file mode 100644
index 0000000..6d7e530
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/form-validation.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"A B","2":"J E F G GC"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"HC wB IC JC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"I z J E F G"},E:{"1":"B C K L H 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I LC 2B","132":"z J E F G A MC NC OC PC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i VC WC XC tB EC YC uB","2":"G UC"},G:{"1":"hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"2B","132":"F ZC FC aC bC cC dC eC fC gC"},H:{"516":"tC"},I:{"1":"D zC","2":"wB uC vC wC","132":"I xC FC yC"},J:{"1":"A","132":"E"},K:{"1":"A B C l tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"260":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"GD","132":"FD"}},B:1,C:"Form validation"};
diff --git a/node_modules/caniuse-lite/data/features/forms.js b/node_modules/caniuse-lite/data/features/forms.js
new file mode 100644
index 0000000..a9951ee
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/forms.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"GC","4":"A B","8":"J E F G"},B:{"1":"M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","4":"C K L H"},C:{"4":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","8":"HC wB IC JC"},D:{"1":"yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","4":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB"},E:{"4":"I z J E F G A B C K L H MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","8":"LC 2B"},F:{"1":"G B C VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i UC VC WC XC tB EC YC uB","4":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB"},G:{"2":"2B","4":"F ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC","4":"yC zC"},J:{"2":"E","4":"A"},K:{"1":"A B C l tB EC uB"},L:{"1":"D"},M:{"4":"D"},N:{"4":"A B"},O:{"1":"0C"},P:{"1":"j k 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD","4":"I 1C 2C 3C"},Q:{"1":"4B"},R:{"1":"ED"},S:{"4":"FD GD"}},B:1,C:"HTML5 form features"};
diff --git a/node_modules/caniuse-lite/data/features/fullscreen.js b/node_modules/caniuse-lite/data/features/fullscreen.js
new file mode 100644
index 0000000..bcaf347
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/fullscreen.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A GC","548":"B"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","516":"C K L H M N O"},C:{"1":"fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"HC wB I z J E F G IC JC","676":"0 1 2 3 4 5 6 7 8 9 A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB","1700":"QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB"},D:{"1":"mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"I z J E F G A B C K L","676":"0 H M N O","804":"1 2 3 4 5 6 7 8 9 j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB"},E:{"1":"CC DC SC TC","2":"I z LC 2B","548":"6B 7B 8B vB 9B AC BC","676":"MC","804":"J E F G A B C K L H NC OC PC 3B tB uB 4B QC RC 5B"},F:{"1":"fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i uB","2":"G B C UC VC WC XC tB EC YC","804":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB"},G:{"2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC","2052":"kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"2":"wB I D uC vC wC xC FC yC zC"},J:{"2":"E","292":"A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A","548":"B"},O:{"1":"0C"},P:{"1":"j k 3B 6C 7C 8C 9C AD vB BD CD DD","804":"I 1C 2C 3C 4C 5C"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:1,C:"Full Screen API"};
diff --git a/node_modules/caniuse-lite/data/features/gamepad.js b/node_modules/caniuse-lite/data/features/gamepad.js
new file mode 100644
index 0000000..dc702c5
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/gamepad.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 4 5 6 7 HC wB I z J E F G A B C K L H M N O j k IC JC"},D:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 I z J E F G A B C K L H M N O j","33":"1 2 3 k"},E:{"1":"B C K L H 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E F G A LC 2B MC NC OC PC"},F:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 G B C H M N O j k UC VC WC XC tB EC YC uB"},G:{"1":"hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"F 2B ZC FC aC bC cC dC eC fC gC"},H:{"2":"tC"},I:{"2":"wB I D uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"GD","2":"FD"}},B:5,C:"Gamepad API"};
diff --git a/node_modules/caniuse-lite/data/features/geolocation.js b/node_modules/caniuse-lite/data/features/geolocation.js
new file mode 100644
index 0000000..cffe8e8
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/geolocation.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"G A B","2":"GC","8":"J E F"},B:{"1":"C K L H M N O","129":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB IC JC","8":"HC wB","129":"YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB","4":"I","129":"TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"1":"z J E F G B C K L H MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","8":"I LC 2B","129":"A"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C M N O j k AB BB CB DB EB FB GB HB XC tB EC YC uB","2":"G H UC","8":"VC WC","129":"IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i"},G:{"1":"F 2B ZC FC aC bC cC dC eC fC","129":"gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"1":"wB I uC vC wC xC FC yC zC","129":"D"},J:{"1":"E A"},K:{"1":"B C tB EC uB","8":"A","129":"l"},L:{"129":"D"},M:{"129":"D"},N:{"1":"A B"},O:{"129":"0C"},P:{"1":"I","129":"j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"129":"4B"},R:{"129":"ED"},S:{"1":"FD","129":"GD"}},B:2,C:"Geolocation"};
diff --git a/node_modules/caniuse-lite/data/features/getboundingclientrect.js b/node_modules/caniuse-lite/data/features/getboundingclientrect.js
new file mode 100644
index 0000000..3fc7c5e
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/getboundingclientrect.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"644":"J E GC","2049":"G A B","2692":"F"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2049":"C K L H M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"HC","260":"I z J E F G A B","1156":"wB","1284":"IC","1796":"JC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"1":"I z J E F G A B C K L H MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","16":"LC 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i XC tB EC YC uB","16":"G UC","132":"VC WC"},G:{"1":"F ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","16":"2B"},H:{"1":"tC"},I:{"1":"wB I D wC xC FC yC zC","16":"uC vC"},J:{"1":"E A"},K:{"1":"B C l tB EC uB","132":"A"},L:{"1":"D"},M:{"1":"D"},N:{"2049":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:5,C:"Element.getBoundingClientRect()"};
diff --git a/node_modules/caniuse-lite/data/features/getcomputedstyle.js b/node_modules/caniuse-lite/data/features/getcomputedstyle.js
new file mode 100644
index 0000000..d31730d
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/getcomputedstyle.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"G A B","2":"J E F GC"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"HC","132":"wB IC JC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","260":"I z J E F G A"},E:{"1":"z J E F G A B C K L H MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","260":"I LC 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i XC tB EC YC uB","260":"G UC VC WC"},G:{"1":"F aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","260":"2B ZC FC"},H:{"260":"tC"},I:{"1":"I D xC FC yC zC","260":"wB uC vC wC"},J:{"1":"A","260":"E"},K:{"1":"B C l tB EC uB","260":"A"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:2,C:"getComputedStyle"};
diff --git a/node_modules/caniuse-lite/data/features/getelementsbyclassname.js b/node_modules/caniuse-lite/data/features/getelementsbyclassname.js
new file mode 100644
index 0000000..a5e94e9
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/getelementsbyclassname.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"G A B","2":"GC","8":"J E F"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC","8":"HC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"1":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i UC VC WC XC tB EC YC uB","2":"G"},G:{"1":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"1":"tC"},I:{"1":"wB I D uC vC wC xC FC yC zC"},J:{"1":"E A"},K:{"1":"A B C l tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:1,C:"getElementsByClassName"};
diff --git a/node_modules/caniuse-lite/data/features/getrandomvalues.js b/node_modules/caniuse-lite/data/features/getrandomvalues.js
new file mode 100644
index 0000000..ce99509
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/getrandomvalues.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A GC","33":"B"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"1 2 3 4 5 6 7 8 9 k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 HC wB I z J E F G A B C K L H M N O j IC JC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"I z J E F G A"},E:{"1":"E F G A B C K L H NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J LC 2B MC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"G B C UC VC WC XC tB EC YC uB"},G:{"1":"F cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"2B ZC FC aC bC"},H:{"2":"tC"},I:{"1":"D yC zC","2":"wB I uC vC wC xC FC"},J:{"1":"A","2":"E"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A","33":"B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:2,C:"crypto.getRandomValues()"};
diff --git a/node_modules/caniuse-lite/data/features/gyroscope.js b/node_modules/caniuse-lite/data/features/gyroscope.js
new file mode 100644
index 0000000..f171ade
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/gyroscope.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L H M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC"},D:{"1":"iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB","194":"bB xB cB yB dB eB fB gB hB"},E:{"2":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"1":"XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB UC VC WC XC tB EC YC uB"},G:{"2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"2":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"2":"FD GD"}},B:4,C:"Gyroscope"};
diff --git a/node_modules/caniuse-lite/data/features/hardwareconcurrency.js b/node_modules/caniuse-lite/data/features/hardwareconcurrency.js
new file mode 100644
index 0000000..3f491ab
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/hardwareconcurrency.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L"},C:{"1":"RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB IC JC"},D:{"1":"GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB"},E:{"2":"I z J E LC 2B MC NC OC","129":"B C K L H 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","194":"F G A PC"},F:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 G B C H M N O j k UC VC WC XC tB EC YC uB"},G:{"2":"2B ZC FC aC bC cC","129":"hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","194":"F dC eC fC gC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:1,C:"navigator.hardwareConcurrency"};
diff --git a/node_modules/caniuse-lite/data/features/hashchange.js b/node_modules/caniuse-lite/data/features/hashchange.js
new file mode 100644
index 0000000..b4b55f2
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/hashchange.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"F G A B","8":"J E GC"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B JC","8":"HC wB IC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","8":"I"},E:{"1":"z J E F G A B C K L H MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","8":"I LC 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i XC tB EC YC uB","8":"G UC VC WC"},G:{"1":"F ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"2B"},H:{"2":"tC"},I:{"1":"wB I D vC wC xC FC yC zC","2":"uC"},J:{"1":"E A"},K:{"1":"B C l tB EC uB","8":"A"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:1,C:"Hashchange event"};
diff --git a/node_modules/caniuse-lite/data/features/heif.js b/node_modules/caniuse-lite/data/features/heif.js
new file mode 100644
index 0000000..93b23ca
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/heif.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"2":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"2":"I z J E F G A LC 2B MC NC OC PC 3B","130":"B C K L H tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i UC VC WC XC tB EC YC uB"},G:{"2":"F 2B ZC FC aC bC cC dC eC fC gC hC","130":"iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"2":"wB I D uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"2":"A B C l tB EC uB"},L:{"2":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"2":"0C"},P:{"2":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"2":"4B"},R:{"2":"ED"},S:{"2":"FD GD"}},B:6,C:"HEIF/ISO Base Media File Format"};
diff --git a/node_modules/caniuse-lite/data/features/hevc.js b/node_modules/caniuse-lite/data/features/hevc.js
new file mode 100644
index 0000000..cf801ea
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/hevc.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A GC","132":"B"},B:{"132":"C K L H M N O","1028":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s","2052":"t u v w x y D 0B 1B KC"},E:{"1":"K L H 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E F G A LC 2B MC NC OC PC 3B","516":"B C tB uB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c UC VC WC XC tB EC YC uB","2052":"d e f g h i"},G:{"1":"iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"F 2B ZC FC aC bC cC dC eC fC gC hC"},H:{"2":"tC"},I:{"2":"wB I uC vC wC xC FC yC zC","2052":"D"},J:{"2":"E A"},K:{"2":"A B C tB EC uB","258":"l"},L:{"2052":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"2":"0C"},P:{"1":"k","2":"I","258":"j 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"2":"4B"},R:{"1":"ED"},S:{"2":"FD GD"}},B:6,C:"HEVC/H.265 video format"};
diff --git a/node_modules/caniuse-lite/data/features/hidden.js b/node_modules/caniuse-lite/data/features/hidden.js
new file mode 100644
index 0000000..382f945
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/hidden.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"B","2":"J E F G A GC"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"HC wB IC JC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"I z"},E:{"1":"J E F G A B C K L H MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z LC 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i tB EC YC uB","2":"G B UC VC WC XC"},G:{"1":"F aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"2B ZC FC"},H:{"1":"tC"},I:{"1":"I D xC FC yC zC","2":"wB uC vC wC"},J:{"1":"A","2":"E"},K:{"1":"C l tB EC uB","2":"A B"},L:{"1":"D"},M:{"1":"D"},N:{"1":"B","2":"A"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:1,C:"hidden attribute"};
diff --git a/node_modules/caniuse-lite/data/features/high-resolution-time.js b/node_modules/caniuse-lite/data/features/high-resolution-time.js
new file mode 100644
index 0000000..e882d5b
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/high-resolution-time.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"A B","2":"J E F G GC"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"HC wB I z J E F G A B C K L IC JC"},D:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 I z J E F G A B C K L H M N O","33":"1 2 j k"},E:{"1":"F G A B C K L H PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E LC 2B MC NC OC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"G B C UC VC WC XC tB EC YC uB"},G:{"1":"F eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"2B ZC FC aC bC cC dC"},H:{"2":"tC"},I:{"1":"D yC zC","2":"wB I uC vC wC xC FC"},J:{"1":"A","2":"E"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:2,C:"High Resolution Time API"};
diff --git a/node_modules/caniuse-lite/data/features/history.js b/node_modules/caniuse-lite/data/features/history.js
new file mode 100644
index 0000000..2de3317
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/history.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"A B","2":"J E F G GC"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"HC wB IC JC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"I"},E:{"1":"J E F G A B C K L H NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I LC 2B","4":"z MC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i EC YC uB","2":"G B UC VC WC XC tB"},G:{"1":"F aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"2B ZC","4":"FC"},H:{"2":"tC"},I:{"1":"D vC wC FC yC zC","2":"wB I uC xC"},J:{"1":"E A"},K:{"1":"C l tB EC uB","2":"A B"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:1,C:"Session history management"};
diff --git a/node_modules/caniuse-lite/data/features/html-media-capture.js b/node_modules/caniuse-lite/data/features/html-media-capture.js
new file mode 100644
index 0000000..0ece900
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/html-media-capture.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"2":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"2":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i UC VC WC XC tB EC YC uB"},G:{"2":"2B ZC FC aC","129":"F bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"1":"wB I D xC FC yC zC","2":"uC","257":"vC wC"},J:{"1":"A","16":"E"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"516":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"16":"4B"},R:{"1":"ED"},S:{"2":"FD GD"}},B:2,C:"HTML Media Capture"};
diff --git a/node_modules/caniuse-lite/data/features/html5semantic.js b/node_modules/caniuse-lite/data/features/html5semantic.js
new file mode 100644
index 0000000..8de8d44
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/html5semantic.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"GC","8":"J E F","260":"G A B"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"1 2 3 4 5 6 7 8 9 k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"HC","132":"wB IC JC","260":"0 I z J E F G A B C K L H M N O j"},D:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","132":"I z","260":"0 1 2 3 4 J E F G A B C K L H M N O j k"},E:{"1":"E F G A B C K L H NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","132":"I LC 2B","260":"z J MC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","132":"G B UC VC WC XC","260":"C tB EC YC uB"},G:{"1":"F cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","132":"2B","260":"ZC FC aC bC"},H:{"132":"tC"},I:{"1":"D yC zC","132":"uC","260":"wB I vC wC xC FC"},J:{"260":"E A"},K:{"1":"l","132":"A","260":"B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"260":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:1,C:"HTML5 semantic elements"};
diff --git a/node_modules/caniuse-lite/data/features/http-live-streaming.js b/node_modules/caniuse-lite/data/features/http-live-streaming.js
new file mode 100644
index 0000000..8101c85
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/http-live-streaming.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"C K L H M N O","2":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"1":"J E F G A B C K L H NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z LC 2B MC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i UC VC WC XC tB EC YC uB"},G:{"1":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"1":"wB I D xC FC yC zC","2":"uC vC wC"},J:{"1":"A","2":"E"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"2":"FD GD"}},B:7,C:"HTTP Live Streaming (HLS)"};
diff --git a/node_modules/caniuse-lite/data/features/http2.js b/node_modules/caniuse-lite/data/features/http2.js
new file mode 100644
index 0000000..f17ebfe
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/http2.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A GC","132":"B"},B:{"1":"C K L H M N O","513":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB","2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB IC JC","513":"WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B"},D:{"1":"KB LB MB NB OB PB QB RB SB TB","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB","513":"UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"1":"B C K L H tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E F LC 2B MC NC OC","260":"G A PC 3B"},F:{"1":"7 8 9 AB BB CB DB EB FB GB","2":"0 1 2 3 4 5 6 G B C H M N O j k UC VC WC XC tB EC YC uB","513":"HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i"},G:{"1":"eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"F 2B ZC FC aC bC cC dC"},H:{"2":"tC"},I:{"2":"wB I uC vC wC xC FC yC zC","513":"D"},J:{"2":"E A"},K:{"2":"A B C tB EC uB","513":"l"},L:{"513":"D"},M:{"513":"D"},N:{"2":"A B"},O:{"513":"0C"},P:{"1":"I","513":"j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"513":"4B"},R:{"513":"ED"},S:{"1":"FD","513":"GD"}},B:6,C:"HTTP/2 protocol"};
diff --git a/node_modules/caniuse-lite/data/features/http3.js b/node_modules/caniuse-lite/data/features/http3.js
new file mode 100644
index 0000000..e3bfd8c
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/http3.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L H M N O","322":"P Q R S T","578":"U V"},C:{"1":"X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB IC JC","194":"nB l oB pB qB rB sB P Q R zB S T U V W"},D:{"1":"W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB","322":"P Q R S T","578":"U V"},E:{"2":"I z J E F G A B C K LC 2B MC NC OC PC 3B tB uB 4B","2052":"CC DC SC TC","2116":"vB 9B AC BC","3140":"L H QC RC 5B 6B 7B 8B"},F:{"1":"oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB UC VC WC XC tB EC YC uB","578":"l"},G:{"2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC","2052":"CC DC","2116":"qC rC sC 5B 6B 7B 8B vB 9B AC BC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"2":"0C"},P:{"1":"j k 9C AD vB BD CD DD","2":"I 1C 2C 3C 4C 5C 3B 6C 7C 8C"},Q:{"2":"4B"},R:{"1":"ED"},S:{"2":"FD GD"}},B:6,C:"HTTP/3 protocol"};
diff --git a/node_modules/caniuse-lite/data/features/iframe-sandbox.js b/node_modules/caniuse-lite/data/features/iframe-sandbox.js
new file mode 100644
index 0000000..7c2230b
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/iframe-sandbox.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"A B","2":"J E F G GC"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"HC wB I z J E F G A B C K L H M IC JC","4":"0 1 2 3 4 5 6 N O j k"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"1":"z J E F G A B C K L H MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I LC 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"G B C UC VC WC XC tB EC YC uB"},G:{"1":"F FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"2B ZC"},H:{"2":"tC"},I:{"1":"wB I D vC wC xC FC yC zC","2":"uC"},J:{"1":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:1,C:"sandbox attribute for iframes"};
diff --git a/node_modules/caniuse-lite/data/features/iframe-seamless.js b/node_modules/caniuse-lite/data/features/iframe-seamless.js
new file mode 100644
index 0000000..351d11a
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/iframe-seamless.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"2":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC"},D:{"2":"0 6 7 8 9 I z J E F G A B C K L H M N O AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","66":"1 2 3 4 5 j k"},E:{"2":"I z J F G A B C K L H LC 2B MC NC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","130":"E OC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i UC VC WC XC tB EC YC uB"},G:{"2":"F 2B ZC FC aC bC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","130":"cC"},H:{"2":"tC"},I:{"2":"wB I D uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"2":"A B C l tB EC uB"},L:{"2":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"2":"0C"},P:{"2":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"2":"4B"},R:{"2":"ED"},S:{"2":"FD GD"}},B:7,C:"seamless attribute for iframes"};
diff --git a/node_modules/caniuse-lite/data/features/iframe-srcdoc.js b/node_modules/caniuse-lite/data/features/iframe-srcdoc.js
new file mode 100644
index 0000000..abf75c4
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/iframe-srcdoc.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"GC","8":"J E F G A B"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","8":"C K L H M N O"},C:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"HC","8":"0 1 2 3 wB I z J E F G A B C K L H M N O j k IC JC"},D:{"1":"1 2 3 4 5 6 7 8 9 j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"I z J E F G A B C K","8":"0 L H M N O"},E:{"1":"J E F G A B C K L H NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"LC 2B","8":"I z MC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"G B UC VC WC XC","8":"C tB EC YC uB"},G:{"1":"F bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"2B","8":"ZC FC aC"},H:{"2":"tC"},I:{"1":"D yC zC","8":"wB I uC vC wC xC FC"},J:{"1":"A","8":"E"},K:{"1":"l","2":"A B","8":"C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"8":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:1,C:"srcdoc attribute for iframes"};
diff --git a/node_modules/caniuse-lite/data/features/imagecapture.js b/node_modules/caniuse-lite/data/features/imagecapture.js
new file mode 100644
index 0000000..4dc0870
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/imagecapture.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L H M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB IC JC","194":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B"},D:{"1":"xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB","322":"WB XB YB ZB aB bB"},E:{"2":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"1":"PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB UC VC WC XC tB EC YC uB","322":"JB KB LB MB NB OB"},G:{"2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD","2":"I"},Q:{"1":"4B"},R:{"1":"ED"},S:{"194":"FD GD"}},B:5,C:"ImageCapture API"};
diff --git a/node_modules/caniuse-lite/data/features/ime.js b/node_modules/caniuse-lite/data/features/ime.js
new file mode 100644
index 0000000..2f1be91
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/ime.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A GC","161":"B"},B:{"2":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","161":"C K L H M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"2":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i UC VC WC XC tB EC YC uB"},G:{"2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"2":"wB I D uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"2":"A B C l tB EC uB"},L:{"2":"D"},M:{"2":"D"},N:{"2":"A","161":"B"},O:{"2":"0C"},P:{"2":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"2":"4B"},R:{"2":"ED"},S:{"2":"FD GD"}},B:7,C:"Input Method Editor API"};
diff --git a/node_modules/caniuse-lite/data/features/img-naturalwidth-naturalheight.js b/node_modules/caniuse-lite/data/features/img-naturalwidth-naturalheight.js
new file mode 100644
index 0000000..a9c3acc
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/img-naturalwidth-naturalheight.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"G A B","2":"J E F GC"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"1":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i UC VC WC XC tB EC YC uB"},G:{"1":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"1":"tC"},I:{"1":"wB I D uC vC wC xC FC yC zC"},J:{"1":"E A"},K:{"1":"A B C l tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:1,C:"naturalWidth & naturalHeight image properties"};
diff --git a/node_modules/caniuse-lite/data/features/import-maps.js b/node_modules/caniuse-lite/data/features/import-maps.js
new file mode 100644
index 0000000..4540b57
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/import-maps.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L H M N O","194":"P Q R S T U V W X"},C:{"1":"u v w x y D 0B 1B","2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n IC JC","322":"o p q r s t"},D:{"1":"Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l","194":"oB pB qB rB sB P Q R S T U V W X"},E:{"1":"CC DC SC TC","2":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC"},F:{"1":"qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB UC VC WC XC tB EC YC uB","194":"dB eB fB gB hB iB jB kB lB mB nB l oB pB"},G:{"1":"CC DC","2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"2":"0C"},P:{"1":"j k AD vB BD CD DD","2":"I 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C"},Q:{"2":"4B"},R:{"1":"ED"},S:{"2":"FD GD"}},B:7,C:"Import maps"};
diff --git a/node_modules/caniuse-lite/data/features/imports.js b/node_modules/caniuse-lite/data/features/imports.js
new file mode 100644
index 0000000..fd5ec71
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/imports.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G GC","8":"A B"},B:{"1":"P","2":"Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","8":"C K L H M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 HC wB I z J E F G A B C K L H M N O j k IC JC","8":"9 AB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","72":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB"},D:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P","2":"0 1 2 3 4 5 6 7 8 I z J E F G A B C K L H M N O j k Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","66":"9 AB BB CB DB","72":"EB"},E:{"2":"I z LC 2B MC","8":"J E F G A B C K L H NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB","2":"G B C H M iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i UC VC WC XC tB EC YC uB","66":"0 N O j k","72":"1"},G:{"2":"2B ZC FC aC bC","8":"F cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"2":"wB I D uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"2":"A B C l tB EC uB"},L:{"2":"D"},M:{"8":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"I 1C 2C 3C 4C 5C 3B 6C 7C","2":"j k 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"2":"ED"},S:{"1":"FD","8":"GD"}},B:5,C:"HTML Imports"};
diff --git a/node_modules/caniuse-lite/data/features/indeterminate-checkbox.js b/node_modules/caniuse-lite/data/features/indeterminate-checkbox.js
new file mode 100644
index 0000000..f42bb9e
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/indeterminate-checkbox.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"J E F G A B","16":"GC"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B JC","2":"HC wB","16":"IC"},D:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 I z J E F G A B C K L H M N O j k"},E:{"1":"J E F G A B C K L H NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z LC 2B MC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i YC uB","2":"G B UC VC WC XC tB EC"},G:{"1":"lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC"},H:{"2":"tC"},I:{"1":"D yC zC","2":"wB I uC vC wC xC FC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:1,C:"indeterminate checkbox"};
diff --git a/node_modules/caniuse-lite/data/features/indexeddb.js b/node_modules/caniuse-lite/data/features/indexeddb.js
new file mode 100644
index 0000000..95a2991
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/indexeddb.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G GC","132":"A B"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","132":"C K L H M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"HC wB IC JC","33":"A B C K L H","36":"I z J E F G"},D:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"A","8":"I z J E F G","33":"2","36":"0 1 B C K L H M N O j k"},E:{"1":"A B C K L H 3B tB uB 4B RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","8":"I z J E LC 2B MC NC","260":"F G OC PC","516":"QC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"G UC VC","8":"B C WC XC tB EC YC uB"},G:{"1":"gC hC iC jC kC lC mC nC oC pC qC sC 5B 6B 7B 8B vB 9B AC BC CC DC","8":"2B ZC FC aC bC cC","260":"F dC eC fC","516":"rC"},H:{"2":"tC"},I:{"1":"D yC zC","8":"wB I uC vC wC xC FC"},J:{"1":"A","8":"E"},K:{"1":"l","2":"A","8":"B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"132":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:2,C:"IndexedDB"};
diff --git a/node_modules/caniuse-lite/data/features/indexeddb2.js b/node_modules/caniuse-lite/data/features/indexeddb2.js
new file mode 100644
index 0000000..784fcae
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/indexeddb2.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L H M N O"},C:{"1":"UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB IC JC","132":"NB OB PB","260":"QB RB SB TB"},D:{"1":"bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB","132":"RB SB TB UB","260":"VB WB XB YB ZB aB"},E:{"1":"B C K L H 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E F G A LC 2B MC NC OC PC"},F:{"1":"OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB UC VC WC XC tB EC YC uB","132":"EB FB GB HB","260":"IB JB KB LB MB NB"},G:{"1":"hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"F 2B ZC FC aC bC cC dC eC fC","16":"gC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"j k 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD","2":"I","260":"1C 2C"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"GD","260":"FD"}},B:2,C:"IndexedDB 2.0"};
diff --git a/node_modules/caniuse-lite/data/features/inline-block.js b/node_modules/caniuse-lite/data/features/inline-block.js
new file mode 100644
index 0000000..635a9ea
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/inline-block.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"F G A B","4":"GC","132":"J E"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC","36":"HC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"1":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i UC VC WC XC tB EC YC uB"},G:{"1":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"1":"tC"},I:{"1":"wB I D uC vC wC xC FC yC zC"},J:{"1":"E A"},K:{"1":"A B C l tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:2,C:"CSS inline-block"};
diff --git a/node_modules/caniuse-lite/data/features/innertext.js b/node_modules/caniuse-lite/data/features/innertext.js
new file mode 100644
index 0000000..2bc9f9c
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/innertext.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"J E F G A B","16":"GC"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB IC JC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"1":"I z J E F G A B C K L H 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","16":"LC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i UC VC WC XC tB EC YC uB","16":"G"},G:{"1":"F ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","16":"2B"},H:{"1":"tC"},I:{"1":"wB I D wC xC FC yC zC","16":"uC vC"},J:{"1":"E A"},K:{"1":"A B C l tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:1,C:"HTMLElement.innerText"};
diff --git a/node_modules/caniuse-lite/data/features/input-autocomplete-onoff.js b/node_modules/caniuse-lite/data/features/input-autocomplete-onoff.js
new file mode 100644
index 0000000..d952cd2
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/input-autocomplete-onoff.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"J E F G A GC","132":"B"},B:{"132":"C K L H M N O","260":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"0 1 2 3 4 5 6 7 8 HC wB I z J E F G A B C K L H M N O j k IC JC","516":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B"},D:{"1":"0 1 2 3 4 5 N O j k","2":"I z J E F G A B C K L H M","132":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB","260":"KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"1":"J MC NC","2":"I z LC 2B","2052":"E F G A B C K L H OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i UC VC WC XC tB EC YC uB"},G:{"2":"2B ZC FC","1025":"F aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"1025":"tC"},I:{"1":"wB I D uC vC wC xC FC yC zC"},J:{"1":"E A"},K:{"1":"A B C l tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2052":"A B"},O:{"1025":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"260":"4B"},R:{"1":"ED"},S:{"516":"FD GD"}},B:1,C:"autocomplete attribute: on & off values"};
diff --git a/node_modules/caniuse-lite/data/features/input-color.js b/node_modules/caniuse-lite/data/features/input-color.js
new file mode 100644
index 0000000..5086502
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/input-color.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K"},C:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 4 5 6 7 HC wB I z J E F G A B C K L H M N O j k IC JC"},D:{"1":"1 2 3 4 5 6 7 8 9 j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 I z J E F G A B C K L H M N O"},E:{"1":"K L H uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E F G A B C LC 2B MC NC OC PC 3B tB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i tB EC YC uB","2":"G H M UC VC WC XC"},G:{"2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC","129":"lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"1":"D yC zC","2":"wB I uC vC wC xC FC"},J:{"1":"E A"},K:{"1":"A B C l tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"GD","2":"FD"}},B:1,C:"Color input type"};
diff --git a/node_modules/caniuse-lite/data/features/input-datetime.js b/node_modules/caniuse-lite/data/features/input-datetime.js
new file mode 100644
index 0000000..9de4447
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/input-datetime.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","132":"C"},C:{"2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB IC JC","1090":"WB XB YB ZB","2052":"aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b","4100":"c d e f g h i m n o p q r s t u v w x y D 0B 1B"},D:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 I z J E F G A B C K L H M N O","2052":"1 2 3 j k"},E:{"2":"I z J E F G A B C K L LC 2B MC NC OC PC 3B tB uB 4B","4100":"H QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i UC VC WC XC tB EC YC uB"},G:{"2":"2B ZC FC","260":"F aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"1":"D yC zC","2":"wB uC vC wC","514":"I xC FC"},J:{"1":"A","2":"E"},K:{"1":"A B C l tB EC uB"},L:{"1":"D"},M:{"4100":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"2052":"FD GD"}},B:1,C:"Date and time input types"};
diff --git a/node_modules/caniuse-lite/data/features/input-email-tel-url.js b/node_modules/caniuse-lite/data/features/input-email-tel-url.js
new file mode 100644
index 0000000..9f4d934
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/input-email-tel-url.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"A B","2":"J E F G GC"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"HC wB IC JC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"I"},E:{"1":"z J E F G A B C K L H MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I LC 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i UC VC WC XC tB EC YC uB","2":"G"},G:{"1":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"1":"wB I D xC FC yC zC","132":"uC vC wC"},J:{"1":"A","132":"E"},K:{"1":"A B C l tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:1,C:"Email, telephone & URL input types"};
diff --git a/node_modules/caniuse-lite/data/features/input-event.js b/node_modules/caniuse-lite/data/features/input-event.js
new file mode 100644
index 0000000..f8e897a
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/input-event.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F GC","2561":"A B","2692":"G"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2561":"C K L H M N O"},C:{"1":"SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","16":"HC","1537":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB JC","1796":"wB IC"},D:{"1":"hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","16":"I z J E F G A B C K L","1025":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB","1537":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB"},E:{"1":"L H 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","16":"I z J LC 2B","1025":"E F G A B C NC OC PC 3B tB","1537":"MC","4097":"K uB"},F:{"1":"VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i uB","16":"G B C UC VC WC XC tB EC","260":"YC","1025":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB","1537":"0 H M N O j k"},G:{"1":"nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","16":"2B ZC FC","1025":"F dC eC fC gC hC iC jC kC","1537":"aC bC cC","4097":"lC mC"},H:{"2":"tC"},I:{"16":"uC vC","1025":"D zC","1537":"wB I wC xC FC yC"},J:{"1025":"A","1537":"E"},K:{"1":"A B C l tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2561":"A B"},O:{"1":"0C"},P:{"1025":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"GD","1537":"FD"}},B:1,C:"input event"};
diff --git a/node_modules/caniuse-lite/data/features/input-file-accept.js b/node_modules/caniuse-lite/data/features/input-file-accept.js
new file mode 100644
index 0000000..146df64
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/input-file-accept.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"A B","2":"J E F G GC"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L H M N O"},C:{"1":"GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"HC wB IC JC","132":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB"},D:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"I","16":"1 2 3 4 z J E F k","132":"0 G A B C K L H M N O j"},E:{"1":"C K L H tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z LC 2B MC","132":"J E F G A B NC OC PC 3B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"G B C UC VC WC XC tB EC YC uB"},G:{"2":"bC cC","132":"F dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","514":"2B ZC FC aC"},H:{"2":"tC"},I:{"2":"uC vC wC","260":"wB I xC FC","514":"D yC zC"},J:{"132":"A","260":"E"},K:{"2":"A B C tB EC uB","514":"l"},L:{"260":"D"},M:{"2":"D"},N:{"514":"A","1028":"B"},O:{"2":"0C"},P:{"260":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"260":"4B"},R:{"260":"ED"},S:{"1":"FD GD"}},B:1,C:"accept attribute for file input"};
diff --git a/node_modules/caniuse-lite/data/features/input-file-directory.js b/node_modules/caniuse-lite/data/features/input-file-directory.js
new file mode 100644
index 0000000..a98ce63
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/input-file-directory.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K"},C:{"1":"TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB IC JC"},D:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 I z J E F G A B C K L H M N O j k"},E:{"1":"C K L H tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E F G A B LC 2B MC NC OC PC 3B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"G B C H M UC VC WC XC tB EC YC uB"},G:{"2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"2":"wB I D uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"2":"A B C l tB EC uB"},L:{"2":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"2":"0C"},P:{"2":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"2":"ED"},S:{"2":"FD GD"}},B:7,C:"Directory selection from file input"};
diff --git a/node_modules/caniuse-lite/data/features/input-file-multiple.js b/node_modules/caniuse-lite/data/features/input-file-multiple.js
new file mode 100644
index 0000000..94b4d6d
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/input-file-multiple.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"A B","2":"J E F G GC"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B JC","2":"HC wB IC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"I"},E:{"1":"I z J E F G A B C K L H MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"LC 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i XC tB EC YC uB","2":"G UC VC WC"},G:{"1":"F bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"2B ZC FC aC"},H:{"130":"tC"},I:{"130":"wB I D uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"130":"A B C l tB EC uB"},L:{"132":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"130":"0C"},P:{"130":"I","132":"j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"132":"4B"},R:{"132":"ED"},S:{"1":"GD","2":"FD"}},B:1,C:"Multiple file selection"};
diff --git a/node_modules/caniuse-lite/data/features/input-inputmode.js b/node_modules/caniuse-lite/data/features/input-inputmode.js
new file mode 100644
index 0000000..526e37c
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/input-inputmode.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L H M N O"},C:{"1":"e f g h i m n o p q r s t u v w x y D 0B 1B","2":"HC wB I z J E F G A B C K L H M IC JC","4":"0 N O j","194":"1 2 3 4 5 6 7 8 9 k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d"},D:{"1":"hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB","66":"ZB aB bB xB cB yB dB eB fB gB"},E:{"2":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"1":"WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB UC VC WC XC tB EC YC uB","66":"MB NB OB PB QB RB SB TB UB VB"},G:{"1":"lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"j k 5C 3B 6C 7C 8C 9C AD vB BD CD DD","2":"I 1C 2C 3C 4C"},Q:{"1":"4B"},R:{"1":"ED"},S:{"194":"FD GD"}},B:1,C:"inputmode attribute"};
diff --git a/node_modules/caniuse-lite/data/features/input-minlength.js b/node_modules/caniuse-lite/data/features/input-minlength.js
new file mode 100644
index 0000000..7f26fcb
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/input-minlength.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L H M"},C:{"1":"UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB IC JC"},D:{"1":"JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB"},E:{"1":"B C K L H 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E F G A LC 2B MC NC OC PC"},F:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 G B C H M N O j k UC VC WC XC tB EC YC uB"},G:{"1":"hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"F 2B ZC FC aC bC cC dC eC fC gC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD","2":"I"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"GD","2":"FD"}},B:1,C:"Minimum length attribute for input fields"};
diff --git a/node_modules/caniuse-lite/data/features/input-number.js b/node_modules/caniuse-lite/data/features/input-number.js
new file mode 100644
index 0000000..e15aa7c
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/input-number.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G GC","129":"A B"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","129":"C K","1025":"L H M N O"},C:{"2":"0 1 2 3 4 5 6 7 HC wB I z J E F G A B C K L H M N O j k IC JC","513":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"I z"},E:{"1":"z J E F G A B C K L H MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I LC 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i UC VC WC XC tB EC YC uB"},G:{"388":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"2":"wB uC vC wC","388":"I D xC FC yC zC"},J:{"2":"E","388":"A"},K:{"1":"A B C tB EC uB","388":"l"},L:{"388":"D"},M:{"641":"D"},N:{"388":"A B"},O:{"388":"0C"},P:{"388":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"388":"4B"},R:{"388":"ED"},S:{"513":"FD GD"}},B:1,C:"Number input type"};
diff --git a/node_modules/caniuse-lite/data/features/input-pattern.js b/node_modules/caniuse-lite/data/features/input-pattern.js
new file mode 100644
index 0000000..97d142f
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/input-pattern.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"A B","2":"J E F G GC"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"HC wB IC JC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"I z J E F G"},E:{"1":"B C K L H 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I LC 2B","16":"z","388":"J E F G A MC NC OC PC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i UC VC WC XC tB EC YC uB","2":"G"},G:{"1":"hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","16":"2B ZC FC","388":"F aC bC cC dC eC fC gC"},H:{"2":"tC"},I:{"1":"D zC","2":"wB I uC vC wC xC FC yC"},J:{"1":"A","2":"E"},K:{"1":"A B C l tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"132":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:1,C:"Pattern attribute for input fields"};
diff --git a/node_modules/caniuse-lite/data/features/input-placeholder.js b/node_modules/caniuse-lite/data/features/input-placeholder.js
new file mode 100644
index 0000000..bad8085
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/input-placeholder.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"A B","2":"J E F G GC"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"HC wB IC JC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"1":"z J E F G A B C K L H MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","132":"I LC 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i EC YC uB","2":"G UC VC WC XC","132":"B tB"},G:{"1":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"1":"tC"},I:{"1":"wB D uC vC wC FC yC zC","4":"I xC"},J:{"1":"E A"},K:{"1":"B C l tB EC uB","2":"A"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:1,C:"input placeholder attribute"};
diff --git a/node_modules/caniuse-lite/data/features/input-range.js b/node_modules/caniuse-lite/data/features/input-range.js
new file mode 100644
index 0000000..538ee6c
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/input-range.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"A B","2":"J E F G GC"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 HC wB I z J E F G A B C K L H M N O j k IC JC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"1":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i UC VC WC XC tB EC YC uB"},G:{"1":"F aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"2B ZC FC"},H:{"2":"tC"},I:{"1":"D FC yC zC","4":"wB I uC vC wC xC"},J:{"1":"E A"},K:{"1":"A B C l tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:1,C:"Range input type"};
diff --git a/node_modules/caniuse-lite/data/features/input-search.js b/node_modules/caniuse-lite/data/features/input-search.js
new file mode 100644
index 0000000..7bd126f
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/input-search.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G GC","129":"A B"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","129":"C K L H M N O"},C:{"2":"HC wB IC JC","129":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B"},D:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","16":"1 2 3 4 I z J E F G A B C K L k","129":"0 H M N O j"},E:{"1":"J E F G A B C K L H MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","16":"I z LC 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i YC uB","2":"G UC VC WC XC","16":"B tB EC"},G:{"1":"F aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","16":"2B ZC FC"},H:{"129":"tC"},I:{"1":"D yC zC","16":"uC vC","129":"wB I wC xC FC"},J:{"1":"E","129":"A"},K:{"1":"C l","2":"A","16":"B tB EC","129":"uB"},L:{"1":"D"},M:{"129":"D"},N:{"129":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"129":"FD GD"}},B:1,C:"Search input type"};
diff --git a/node_modules/caniuse-lite/data/features/input-selection.js b/node_modules/caniuse-lite/data/features/input-selection.js
new file mode 100644
index 0000000..28aaa17
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/input-selection.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"G A B","2":"J E F GC"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"1":"I z J E F G A B C K L H MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","16":"LC 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i XC tB EC YC uB","16":"G UC VC WC"},G:{"1":"F ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","16":"2B"},H:{"2":"tC"},I:{"1":"wB I D uC vC wC xC FC yC zC"},J:{"1":"E A"},K:{"1":"A B C l tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:1,C:"Selection controls for input & textarea"};
diff --git a/node_modules/caniuse-lite/data/features/insert-adjacent.js b/node_modules/caniuse-lite/data/features/insert-adjacent.js
new file mode 100644
index 0000000..2ef3501
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/insert-adjacent.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"J E F G A B","16":"GC"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB IC JC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"1":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i UC VC WC XC tB EC YC uB","16":"G"},G:{"1":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"1":"tC"},I:{"1":"wB I D wC xC FC yC zC","16":"uC vC"},J:{"1":"E A"},K:{"1":"A B C l tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:1,C:"Element.insertAdjacentElement() & Element.insertAdjacentText()"};
diff --git a/node_modules/caniuse-lite/data/features/insertadjacenthtml.js b/node_modules/caniuse-lite/data/features/insertadjacenthtml.js
new file mode 100644
index 0000000..d37f8c2
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/insertadjacenthtml.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"A B","16":"GC","132":"J E F G"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"HC wB I z J E IC JC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"1":"I z J E F G A B C K L H MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"LC 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i VC WC XC tB EC YC uB","16":"G UC"},G:{"1":"F ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","16":"2B"},H:{"1":"tC"},I:{"1":"wB I D wC xC FC yC zC","16":"uC vC"},J:{"1":"E A"},K:{"1":"A B C l tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:4,C:"Element.insertAdjacentHTML()"};
diff --git a/node_modules/caniuse-lite/data/features/internationalization.js b/node_modules/caniuse-lite/data/features/internationalization.js
new file mode 100644
index 0000000..366268b
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/internationalization.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"B","2":"J E F G A GC"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 4 5 6 7 HC wB I z J E F G A B C K L H M N O j k IC JC"},D:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 I z J E F G A B C K L H M N O j k"},E:{"1":"A B C K L H 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E F G LC 2B MC NC OC PC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"G B C UC VC WC XC tB EC YC uB"},G:{"1":"gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"F 2B ZC FC aC bC cC dC eC fC"},H:{"2":"tC"},I:{"1":"D yC zC","2":"wB I uC vC wC xC FC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"1":"B","2":"A"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"GD","2":"FD"}},B:6,C:"Internationalization API"};
diff --git a/node_modules/caniuse-lite/data/features/intersectionobserver-v2.js b/node_modules/caniuse-lite/data/features/intersectionobserver-v2.js
new file mode 100644
index 0000000..9c1609b
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/intersectionobserver-v2.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L H M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC"},D:{"1":"oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l"},E:{"2":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"1":"dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB UC VC WC XC tB EC YC uB"},G:{"2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"j k 6C 7C 8C 9C AD vB BD CD DD","2":"I 1C 2C 3C 4C 5C 3B"},Q:{"1":"4B"},R:{"1":"ED"},S:{"2":"FD GD"}},B:7,C:"IntersectionObserver V2"};
diff --git a/node_modules/caniuse-lite/data/features/intersectionobserver.js b/node_modules/caniuse-lite/data/features/intersectionobserver.js
new file mode 100644
index 0000000..9830783
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/intersectionobserver.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"M N O","2":"C K L","516":"H","1025":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB IC JC","194":"VB WB XB"},D:{"1":"bB xB cB yB dB eB fB","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB","516":"UB VB WB XB YB ZB aB","1025":"gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"1":"K L H uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E F G A B C LC 2B MC NC OC PC 3B tB"},F:{"1":"OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB UC VC WC XC tB EC YC uB","516":"HB IB JB KB LB MB NB","1025":"fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i"},G:{"1":"lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC"},H:{"2":"tC"},I:{"2":"wB I uC vC wC xC FC yC zC","1025":"D"},J:{"2":"E A"},K:{"2":"A B C tB EC uB","1025":"l"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"j k 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD","2":"I","516":"1C 2C"},Q:{"1025":"4B"},R:{"1":"ED"},S:{"1":"GD","2":"FD"}},B:5,C:"IntersectionObserver"};
diff --git a/node_modules/caniuse-lite/data/features/intl-pluralrules.js b/node_modules/caniuse-lite/data/features/intl-pluralrules.js
new file mode 100644
index 0000000..26c79e3
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/intl-pluralrules.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L H M N","130":"O"},C:{"1":"bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB IC JC"},D:{"1":"eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB"},E:{"1":"K L H 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E F G A B C LC 2B MC NC OC PC 3B tB uB"},F:{"1":"TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB UC VC WC XC tB EC YC uB"},G:{"1":"mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"j k 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD","2":"I 1C 2C 3C"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"GD","2":"FD"}},B:6,C:"Intl.PluralRules API"};
diff --git a/node_modules/caniuse-lite/data/features/intrinsic-width.js b/node_modules/caniuse-lite/data/features/intrinsic-width.js
new file mode 100644
index 0000000..c225e4e
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/intrinsic-width.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"2":"C K L H M N O","1025":"d e f g h i m n o p q r s t u v w x y D","1537":"P Q R S T U V W X Y Z a b c"},C:{"2":"HC","932":"0 1 2 3 4 5 6 7 8 9 wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB IC JC","2308":"hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B"},D:{"2":"0 I z J E F G A B C K L H M N O j k","545":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB","1025":"d e f g h i m n o p q r s t u v w x y D 0B 1B KC","1537":"PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c"},E:{"1":"vB 9B AC BC CC DC SC TC","2":"I z J LC 2B MC","516":"B C K L H tB uB 4B QC RC 5B 6B 7B 8B","548":"G A PC 3B","676":"E F NC OC"},F:{"2":"G B C UC VC WC XC tB EC YC uB","513":"DB","545":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB","1025":"e f g h i","1537":"CB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d"},G:{"1":"vB 9B AC BC CC DC","2":"2B ZC FC aC bC","516":"qC rC sC 5B 6B 7B 8B","548":"eC fC gC hC iC jC kC lC mC nC oC pC","676":"F cC dC"},H:{"2":"tC"},I:{"2":"wB I uC vC wC xC FC","545":"yC zC","1025":"D"},J:{"2":"E","545":"A"},K:{"2":"A B C tB EC uB","1025":"l"},L:{"1025":"D"},M:{"2308":"D"},N:{"2":"A B"},O:{"1537":"0C"},P:{"545":"I","1025":"j k BD CD DD","1537":"1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB"},Q:{"1537":"4B"},R:{"1537":"ED"},S:{"932":"FD","2308":"GD"}},B:5,C:"Intrinsic & Extrinsic Sizing"};
diff --git a/node_modules/caniuse-lite/data/features/jpeg2000.js b/node_modules/caniuse-lite/data/features/jpeg2000.js
new file mode 100644
index 0000000..4ca2beb
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/jpeg2000.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"2":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"1":"J E F G A B C K L H NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I LC 2B","129":"z MC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i UC VC WC XC tB EC YC uB"},G:{"1":"F aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"2B ZC FC"},H:{"2":"tC"},I:{"2":"wB I D uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"2":"A B C l tB EC uB"},L:{"2":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"2":"0C"},P:{"2":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"2":"4B"},R:{"2":"ED"},S:{"2":"FD GD"}},B:6,C:"JPEG 2000 image format"};
diff --git a/node_modules/caniuse-lite/data/features/jpegxl.js b/node_modules/caniuse-lite/data/features/jpegxl.js
new file mode 100644
index 0000000..7d25a5b
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/jpegxl.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"2":"C K L H M N O P Q R S T U V W X Y Z w x y D","578":"a b c d e f g h i m n o p q r s t u v"},C:{"2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y IC JC","322":"Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z w x y D 0B 1B KC","194":"a b c d e f g h i m n o p q r s t u v"},E:{"2":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB UC VC WC XC tB EC YC uB","194":"rB sB P Q R zB S T U V W X Y Z a b c d e f g h i"},G:{"2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"2":"wB I D uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"2":"A B C l tB EC uB"},L:{"2":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"2":"0C"},P:{"2":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"2":"4B"},R:{"2":"ED"},S:{"2":"FD GD"}},B:6,C:"JPEG XL image format"};
diff --git a/node_modules/caniuse-lite/data/features/jpegxr.js b/node_modules/caniuse-lite/data/features/jpegxr.js
new file mode 100644
index 0000000..9138b18
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/jpegxr.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"G A B","2":"J E F GC"},B:{"1":"C K L H M N O","2":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"2":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i UC VC WC XC tB EC YC uB"},G:{"2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"2":"wB I D uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"2":"A B C l tB EC uB"},L:{"2":"D"},M:{"2":"D"},N:{"1":"A B"},O:{"2":"0C"},P:{"2":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"2":"4B"},R:{"2":"ED"},S:{"2":"FD GD"}},B:6,C:"JPEG XR image format"};
diff --git a/node_modules/caniuse-lite/data/features/js-regexp-lookbehind.js b/node_modules/caniuse-lite/data/features/js-regexp-lookbehind.js
new file mode 100644
index 0000000..696154f
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/js-regexp-lookbehind.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L H M N O"},C:{"1":"sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB IC JC"},D:{"1":"dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB"},E:{"1":"CC DC SC TC","2":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC"},F:{"1":"SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB UC VC WC XC tB EC YC uB"},G:{"1":"CC DC","2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"j k 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD","2":"I 1C 2C 3C"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"GD","2":"FD"}},B:6,C:"Lookbehind in JS regular expressions"};
diff --git a/node_modules/caniuse-lite/data/features/json.js b/node_modules/caniuse-lite/data/features/json.js
new file mode 100644
index 0000000..abf1924
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/json.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"G A B","2":"J E GC","129":"F"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC","2":"HC wB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"1":"I z J E F G A B C K L H MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"LC 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i WC XC tB EC YC uB","2":"G UC VC"},G:{"1":"F ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"2B"},H:{"1":"tC"},I:{"1":"wB I D uC vC wC xC FC yC zC"},J:{"1":"E A"},K:{"1":"A B C l tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:6,C:"JSON parsing"};
diff --git a/node_modules/caniuse-lite/data/features/justify-content-space-evenly.js b/node_modules/caniuse-lite/data/features/justify-content-space-evenly.js
new file mode 100644
index 0000000..0ed3149
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/justify-content-space-evenly.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L H","132":"M N O"},C:{"1":"VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB IC JC"},D:{"1":"cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB","132":"aB bB xB"},E:{"1":"B C K L H tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E F G A LC 2B MC NC OC PC","132":"3B"},F:{"1":"QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB UC VC WC XC tB EC YC uB","132":"NB OB PB"},G:{"1":"iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"F 2B ZC FC aC bC cC dC eC fC gC","132":"hC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"j k 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD","2":"I 1C 2C","132":"3C"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"GD","132":"FD"}},B:5,C:"CSS justify-content: space-evenly"};
diff --git a/node_modules/caniuse-lite/data/features/kerning-pairs-ligatures.js b/node_modules/caniuse-lite/data/features/kerning-pairs-ligatures.js
new file mode 100644
index 0000000..e59d925
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/kerning-pairs-ligatures.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L H M N"},C:{"1":"0 1 2 3 4 5 6 7 8 9 wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC","2":"HC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"1":"z J E F G A B C K L H MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I LC 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"G B C UC VC WC XC tB EC YC uB"},G:{"1":"F FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","16":"2B ZC"},H:{"2":"tC"},I:{"1":"D yC zC","2":"uC vC wC","132":"wB I xC FC"},J:{"1":"A","2":"E"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:7,C:"High-quality kerning pairs & ligatures"};
diff --git a/node_modules/caniuse-lite/data/features/keyboardevent-charcode.js b/node_modules/caniuse-lite/data/features/keyboardevent-charcode.js
new file mode 100644
index 0000000..b5c373e
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/keyboardevent-charcode.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"G A B","2":"J E F GC"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC","16":"HC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"1":"I z J E F G A B C K L H MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","16":"LC 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i uB","2":"G B UC VC WC XC tB EC YC","16":"C"},G:{"1":"F aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","16":"2B ZC FC"},H:{"2":"tC"},I:{"1":"wB I D wC xC FC yC zC","16":"uC vC"},J:{"1":"E A"},K:{"1":"l uB","2":"A B tB EC","16":"C"},L:{"1":"D"},M:{"130":"D"},N:{"130":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:7,C:"KeyboardEvent.charCode"};
diff --git a/node_modules/caniuse-lite/data/features/keyboardevent-code.js b/node_modules/caniuse-lite/data/features/keyboardevent-code.js
new file mode 100644
index 0000000..fae13c8
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/keyboardevent-code.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L H M N O"},C:{"1":"HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB IC JC"},D:{"1":"RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB","194":"LB MB NB OB PB QB"},E:{"1":"B C K L H 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E F G A LC 2B MC NC OC PC"},F:{"1":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 6 7 G B C H M N O j k UC VC WC XC tB EC YC uB","194":"8 9 AB BB CB DB"},G:{"1":"hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"F 2B ZC FC aC bC cC dC eC fC gC"},H:{"2":"tC"},I:{"2":"wB I D uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"2":"A B C l tB EC uB"},L:{"194":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"2":"0C"},P:{"2":"I","194":"j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"2":"4B"},R:{"194":"ED"},S:{"1":"FD GD"}},B:5,C:"KeyboardEvent.code"};
diff --git a/node_modules/caniuse-lite/data/features/keyboardevent-getmodifierstate.js b/node_modules/caniuse-lite/data/features/keyboardevent-getmodifierstate.js
new file mode 100644
index 0000000..a9c3460
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/keyboardevent-getmodifierstate.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"G A B","2":"J E F GC"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"HC wB I z J E F G A B C K L IC JC"},D:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 I z J E F G A B C K L H M N O j k"},E:{"1":"B C K L H 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E F G A LC 2B MC NC OC PC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i uB","2":"G B H M UC VC WC XC tB EC YC","16":"C"},G:{"1":"hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"F 2B ZC FC aC bC cC dC eC fC gC"},H:{"2":"tC"},I:{"1":"D yC zC","2":"wB I uC vC wC xC FC"},J:{"2":"E A"},K:{"1":"l uB","2":"A B tB EC","16":"C"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:5,C:"KeyboardEvent.getModifierState()"};
diff --git a/node_modules/caniuse-lite/data/features/keyboardevent-key.js b/node_modules/caniuse-lite/data/features/keyboardevent-key.js
new file mode 100644
index 0000000..d1098cc
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/keyboardevent-key.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F GC","260":"G A B"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","260":"C K L H M N O"},C:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 HC wB I z J E F G A B C K L H M N O j k IC JC","132":"2 3 4 5 6 7"},D:{"1":"UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB"},E:{"1":"B C K L H 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E F G A LC 2B MC NC OC PC"},F:{"1":"HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i uB","2":"0 1 2 3 4 5 6 7 8 9 G B H M N O j k AB BB CB DB EB FB GB UC VC WC XC tB EC YC","16":"C"},G:{"1":"hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"F 2B ZC FC aC bC cC dC eC fC gC"},H:{"1":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l uB","2":"A B tB EC","16":"C"},L:{"1":"D"},M:{"1":"D"},N:{"260":"A B"},O:{"1":"0C"},P:{"1":"j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD","2":"I"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:5,C:"KeyboardEvent.key"};
diff --git a/node_modules/caniuse-lite/data/features/keyboardevent-location.js b/node_modules/caniuse-lite/data/features/keyboardevent-location.js
new file mode 100644
index 0000000..4e3d804
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/keyboardevent-location.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"G A B","2":"J E F GC"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"HC wB I z J E F G A B C K L IC JC"},D:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","132":"0 1 2 3 4 5 6 7 8 I z J E F G A B C K L H M N O j k"},E:{"1":"E F G A B C K L H NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","16":"J LC 2B","132":"I z MC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i uB","2":"G B UC VC WC XC tB EC YC","16":"C","132":"H M"},G:{"1":"F dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","16":"2B ZC FC","132":"aC bC cC"},H:{"2":"tC"},I:{"1":"D yC zC","16":"uC vC","132":"wB I wC xC FC"},J:{"132":"E A"},K:{"1":"l uB","2":"A B tB EC","16":"C"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:5,C:"KeyboardEvent.location"};
diff --git a/node_modules/caniuse-lite/data/features/keyboardevent-which.js b/node_modules/caniuse-lite/data/features/keyboardevent-which.js
new file mode 100644
index 0000000..2c9f842
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/keyboardevent-which.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"G A B","2":"J E F GC"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"1":"J E F G A B C K L H MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I LC 2B","16":"z"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i VC WC XC tB EC YC uB","16":"G UC"},G:{"1":"F aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","16":"2B ZC FC"},H:{"2":"tC"},I:{"1":"wB I D wC xC FC","16":"uC vC","132":"yC zC"},J:{"1":"E A"},K:{"1":"A B C l tB EC uB"},L:{"132":"D"},M:{"132":"D"},N:{"1":"A B"},O:{"1":"0C"},P:{"2":"I","132":"j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"132":"ED"},S:{"1":"FD GD"}},B:7,C:"KeyboardEvent.which"};
diff --git a/node_modules/caniuse-lite/data/features/lazyload.js b/node_modules/caniuse-lite/data/features/lazyload.js
new file mode 100644
index 0000000..8ccbfd4
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/lazyload.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"B","2":"J E F G A GC"},B:{"1":"C K L H M N O","2":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"2":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i UC VC WC XC tB EC YC uB"},G:{"2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"2":"wB I D uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"2":"A B C l tB EC uB"},L:{"2":"D"},M:{"2":"D"},N:{"1":"B","2":"A"},O:{"2":"0C"},P:{"2":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"2":"4B"},R:{"2":"ED"},S:{"2":"FD GD"}},B:7,C:"Resource Hints: Lazyload"};
diff --git a/node_modules/caniuse-lite/data/features/let.js b/node_modules/caniuse-lite/data/features/let.js
new file mode 100644
index 0000000..acd5e60
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/let.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A GC","2052":"B"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","194":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB IC JC"},D:{"1":"SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"I z J E F G A B C K L H M N O","322":"0 1 2 3 4 5 6 7 8 9 j k AB BB CB DB EB FB GB HB IB JB","516":"KB LB MB NB OB PB QB RB"},E:{"1":"B C K L H tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E F G LC 2B MC NC OC PC","1028":"A 3B"},F:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"G B C UC VC WC XC tB EC YC uB","322":"0 1 2 3 4 5 6 H M N O j k","516":"7 8 9 AB BB CB DB EB"},G:{"1":"iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"F 2B ZC FC aC bC cC dC eC fC","1028":"gC hC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"1":"B","2":"A"},O:{"1":"0C"},P:{"1":"j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD","516":"I"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:6,C:"let"};
diff --git a/node_modules/caniuse-lite/data/features/link-icon-png.js b/node_modules/caniuse-lite/data/features/link-icon-png.js
new file mode 100644
index 0000000..08463bb
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/link-icon-png.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"B","2":"J E F G A GC"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"1":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i UC VC WC XC tB EC YC uB"},G:{"1":"kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","130":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC"},H:{"130":"tC"},I:{"1":"wB I D uC vC wC xC FC yC zC"},J:{"1":"E","130":"A"},K:{"1":"l","130":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"130":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:1,C:"PNG favicons"};
diff --git a/node_modules/caniuse-lite/data/features/link-icon-svg.js b/node_modules/caniuse-lite/data/features/link-icon-svg.js
new file mode 100644
index 0000000..a755ee0
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/link-icon-svg.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"2":"C K L H M N O P","1537":"Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"2":"HC wB IC JC","260":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB","513":"KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P","1537":"Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"2":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"1":"NB OB PB QB RB SB TB UB VB WB","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB XB YB ZB aB bB cB dB eB fB gB hB UC VC WC XC tB EC YC uB","1537":"iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i"},G:{"2":"kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","130":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC"},H:{"130":"tC"},I:{"2":"wB I D uC vC wC xC FC yC zC"},J:{"2":"E","130":"A"},K:{"130":"A B C tB EC uB","1537":"l"},L:{"1537":"D"},M:{"2":"D"},N:{"130":"A B"},O:{"2":"0C"},P:{"2":"I 1C 2C 3C 4C 5C 3B 6C 7C","1537":"j k 8C 9C AD vB BD CD DD"},Q:{"2":"4B"},R:{"1537":"ED"},S:{"513":"FD GD"}},B:1,C:"SVG favicons"};
diff --git a/node_modules/caniuse-lite/data/features/link-rel-dns-prefetch.js b/node_modules/caniuse-lite/data/features/link-rel-dns-prefetch.js
new file mode 100644
index 0000000..17ba70f
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/link-rel-dns-prefetch.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"A B","2":"J E F GC","132":"G"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"2":"HC wB","260":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"1":"z J E F G A B C K L H MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I LC 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"G B C UC VC WC XC tB EC YC uB"},G:{"16":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"16":"wB I D uC vC wC xC FC yC zC"},J:{"16":"E A"},K:{"1":"l","16":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"1":"B","2":"A"},O:{"1":"0C"},P:{"1":"j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD","16":"I"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:5,C:"Resource Hints: dns-prefetch"};
diff --git a/node_modules/caniuse-lite/data/features/link-rel-modulepreload.js b/node_modules/caniuse-lite/data/features/link-rel-modulepreload.js
new file mode 100644
index 0000000..86c85c3
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/link-rel-modulepreload.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L H M N O"},C:{"1":"1B","2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B IC JC"},D:{"1":"hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB"},E:{"1":"TC","2":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC"},F:{"1":"WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB UC VC WC XC tB EC YC uB"},G:{"2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"j k 5C 3B 6C 7C 8C 9C AD vB BD CD DD","2":"I 1C 2C 3C 4C"},Q:{"1":"4B"},R:{"1":"ED"},S:{"2":"FD GD"}},B:1,C:"Resource Hints: modulepreload"};
diff --git a/node_modules/caniuse-lite/data/features/link-rel-preconnect.js b/node_modules/caniuse-lite/data/features/link-rel-preconnect.js
new file mode 100644
index 0000000..11090df
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/link-rel-preconnect.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L","260":"H M N O"},C:{"1":"JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB","2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC","129":"IB"},D:{"1":"PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB"},E:{"1":"C K L H tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E F G A B LC 2B MC NC OC PC 3B"},F:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB UC VC WC XC tB EC YC uB"},G:{"1":"jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"16":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD","2":"I"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:5,C:"Resource Hints: preconnect"};
diff --git a/node_modules/caniuse-lite/data/features/link-rel-prefetch.js b/node_modules/caniuse-lite/data/features/link-rel-prefetch.js
new file mode 100644
index 0000000..980673b
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/link-rel-prefetch.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"B","2":"J E F G A GC"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"I z J E"},E:{"2":"I z J E F G A B C K LC 2B MC NC OC PC 3B tB uB","194":"L H 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"G B C UC VC WC XC tB EC YC uB"},G:{"2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC","194":"pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"1":"I D yC zC","2":"wB uC vC wC xC FC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"1":"B","2":"A"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:5,C:"Resource Hints: prefetch"};
diff --git a/node_modules/caniuse-lite/data/features/link-rel-preload.js b/node_modules/caniuse-lite/data/features/link-rel-preload.js
new file mode 100644
index 0000000..6eeabf3
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/link-rel-preload.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L H M","1028":"N O"},C:{"1":"U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB IC JC","132":"ZB","578":"aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T"},D:{"1":"TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB"},E:{"1":"C K L H tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E F G A LC 2B MC NC OC PC 3B","322":"B"},F:{"1":"GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB UC VC WC XC tB EC YC uB"},G:{"1":"jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"F 2B ZC FC aC bC cC dC eC fC gC hC","322":"iC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD","2":"I"},Q:{"1":"4B"},R:{"1":"ED"},S:{"2":"FD GD"}},B:4,C:"Resource Hints: preload"};
diff --git a/node_modules/caniuse-lite/data/features/link-rel-prerender.js b/node_modules/caniuse-lite/data/features/link-rel-prerender.js
new file mode 100644
index 0000000..f6daf24
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/link-rel-prerender.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"B","2":"J E F G A GC"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L H M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"I z J E F G A B C"},E:{"2":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"G B C UC VC WC XC tB EC YC uB"},G:{"2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"2":"wB I D uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"2":"D"},N:{"1":"B","2":"A"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"2":"FD GD"}},B:5,C:"Resource Hints: prerender"};
diff --git a/node_modules/caniuse-lite/data/features/loading-lazy-attr.js b/node_modules/caniuse-lite/data/features/loading-lazy-attr.js
new file mode 100644
index 0000000..344afde
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/loading-lazy-attr.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L H M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB IC JC","132":"pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B"},D:{"1":"rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB","66":"pB qB"},E:{"1":"CC DC SC TC","2":"I z J E F G A B C K LC 2B MC NC OC PC 3B tB uB","322":"L H 4B QC RC 5B","580":"6B 7B 8B vB 9B AC BC"},F:{"1":"fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB UC VC WC XC tB EC YC uB","66":"dB eB"},G:{"1":"CC DC","2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC","322":"pC qC rC sC 5B","580":"6B 7B 8B vB 9B AC BC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"132":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"j k 7C 8C 9C AD vB BD CD DD","2":"I 1C 2C 3C 4C 5C 3B 6C"},Q:{"1":"4B"},R:{"1":"ED"},S:{"2":"FD","132":"GD"}},B:1,C:"Lazy loading via attribute for images & iframes"};
diff --git a/node_modules/caniuse-lite/data/features/localecompare.js b/node_modules/caniuse-lite/data/features/localecompare.js
new file mode 100644
index 0000000..e8540e0
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/localecompare.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"B","16":"GC","132":"J E F G A"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","132":"0 1 2 3 4 5 6 7 HC wB I z J E F G A B C K L H M N O j k IC JC"},D:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","132":"0 1 2 I z J E F G A B C K L H M N O j k"},E:{"1":"A B C K L H 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","132":"I z J E F G LC 2B MC NC OC PC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","16":"G B C UC VC WC XC tB EC YC","132":"uB"},G:{"1":"gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","132":"F 2B ZC FC aC bC cC dC eC fC"},H:{"132":"tC"},I:{"1":"D yC zC","132":"wB I uC vC wC xC FC"},J:{"132":"E A"},K:{"1":"l","16":"A B C tB EC","132":"uB"},L:{"1":"D"},M:{"1":"D"},N:{"1":"B","132":"A"},O:{"1":"0C"},P:{"1":"j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD","132":"I"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"GD","4":"FD"}},B:6,C:"localeCompare()"};
diff --git a/node_modules/caniuse-lite/data/features/magnetometer.js b/node_modules/caniuse-lite/data/features/magnetometer.js
new file mode 100644
index 0000000..cd5a633
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/magnetometer.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L H M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC"},D:{"1":"iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB","194":"bB xB cB yB dB eB fB gB hB"},E:{"2":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"1":"XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB UC VC WC XC tB EC YC uB"},G:{"2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"2":"wB I D uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"2":"A B C l tB EC uB"},L:{"194":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"2":"0C"},P:{"2":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"2":"4B"},R:{"2":"ED"},S:{"2":"FD GD"}},B:4,C:"Magnetometer"};
diff --git a/node_modules/caniuse-lite/data/features/matchesselector.js b/node_modules/caniuse-lite/data/features/matchesselector.js
new file mode 100644
index 0000000..7960404
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/matchesselector.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F GC","36":"G A B"},B:{"1":"H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","36":"C K L"},C:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"HC wB IC","36":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB JC"},D:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","36":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB"},E:{"1":"F G A B C K L H OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I LC 2B","36":"z J E MC NC"},F:{"1":"1 2 3 4 5 6 7 8 9 k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"G B UC VC WC XC tB","36":"0 C H M N O j EC YC uB"},G:{"1":"F dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"2B","36":"ZC FC aC bC cC"},H:{"2":"tC"},I:{"1":"D","2":"uC","36":"wB I vC wC xC FC yC zC"},J:{"36":"E A"},K:{"1":"l","2":"A B","36":"C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"36":"A B"},O:{"1":"0C"},P:{"1":"j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD","36":"I"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:1,C:"matches() DOM method"};
diff --git a/node_modules/caniuse-lite/data/features/matchmedia.js b/node_modules/caniuse-lite/data/features/matchmedia.js
new file mode 100644
index 0000000..5f64918
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/matchmedia.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"A B","2":"J E F G GC"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"HC wB I z IC JC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"I z J E F"},E:{"1":"J E F G A B C K L H MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z LC 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i uB","2":"G B C UC VC WC XC tB EC YC"},G:{"1":"F aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"2B ZC FC"},H:{"1":"tC"},I:{"1":"wB I D xC FC yC zC","2":"uC vC wC"},J:{"1":"A","2":"E"},K:{"1":"l uB","2":"A B C tB EC"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:5,C:"matchMedia"};
diff --git a/node_modules/caniuse-lite/data/features/mathml.js b/node_modules/caniuse-lite/data/features/mathml.js
new file mode 100644
index 0000000..3cf7bab
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/mathml.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"G A B GC","8":"J E F"},B:{"2":"C K L H M N O","8":"P Q R S T U V W X Y Z a b c d e f","584":"g h i m n o p q r s t u","1025":"v w x y D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","129":"HC wB IC JC"},D:{"1":"3","8":"0 1 2 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f","584":"g h i m n o p q r s t u","1025":"v w x y D 0B 1B KC"},E:{"1":"A B C K L H 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","260":"I z J E F G LC 2B MC NC OC PC"},F:{"2":"G","8":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB","584":"S T U V W X Y Z a b c d","1025":"e f g h i","2052":"B C UC VC WC XC tB EC YC uB"},G:{"1":"F aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","8":"2B ZC FC"},H:{"8":"tC"},I:{"8":"wB I uC vC wC xC FC yC zC","1025":"D"},J:{"1":"A","8":"E"},K:{"8":"A B C l tB EC uB"},L:{"1025":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"8":"0C"},P:{"1":"k","8":"I j 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"8":"4B"},R:{"8":"ED"},S:{"1":"FD GD"}},B:2,C:"MathML"};
diff --git a/node_modules/caniuse-lite/data/features/maxlength.js b/node_modules/caniuse-lite/data/features/maxlength.js
new file mode 100644
index 0000000..348819c
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/maxlength.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"A B","16":"GC","900":"J E F G"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","1025":"C K L H M N O"},C:{"1":"UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","900":"HC wB IC JC","1025":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"1":"J E F G A B C K L H MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","16":"z LC","900":"I 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","16":"G","132":"B C UC VC WC XC tB EC YC uB"},G:{"1":"ZC FC aC bC cC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","16":"2B","2052":"F dC"},H:{"132":"tC"},I:{"1":"wB I wC xC FC yC zC","16":"uC vC","4097":"D"},J:{"1":"E A"},K:{"132":"A B C tB EC uB","4097":"l"},L:{"4097":"D"},M:{"4097":"D"},N:{"1":"A B"},O:{"1":"0C"},P:{"4097":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1025":"FD GD"}},B:1,C:"maxlength attribute for input and textarea elements"};
diff --git a/node_modules/caniuse-lite/data/features/mdn-css-unicode-bidi-isolate-override.js b/node_modules/caniuse-lite/data/features/mdn-css-unicode-bidi-isolate-override.js
new file mode 100644
index 0000000..2c20795
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/mdn-css-unicode-bidi-isolate-override.js
@@ -0,0 +1 @@
+module.exports={A:{D:{"1":"RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB"},L:{"1":"D"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L H M N O"},C:{"1":"TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"HC wB I z J E F G A B C K L H M IC JC","33":"0 1 2 3 4 5 6 7 8 9 N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB"},M:{"1":"D"},A:{"2":"J E F G A B GC"},F:{"1":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB UC VC WC XC tB EC YC uB"},K:{"1":"l","2":"A B C tB EC uB"},E:{"1":"B C K L H tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC","2":"I z J LC 2B MC NC TC","33":"E F G A OC PC 3B"},G:{"1":"iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"2B ZC FC aC bC","33":"F cC dC eC fC gC hC"},P:{"1":"j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD","2":"I"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"}},B:6,C:"isolate-override from unicode-bidi"};
diff --git a/node_modules/caniuse-lite/data/features/mdn-css-unicode-bidi-isolate.js b/node_modules/caniuse-lite/data/features/mdn-css-unicode-bidi-isolate.js
new file mode 100644
index 0000000..a43af1e
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/mdn-css-unicode-bidi-isolate.js
@@ -0,0 +1 @@
+module.exports={A:{D:{"1":"RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"I z J E F G A B C K L H","33":"0 1 2 3 4 5 6 7 8 9 M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB"},L:{"1":"D"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L H M N O"},C:{"1":"TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"HC wB I z J E F G IC JC","33":"0 1 2 3 4 5 6 7 8 9 A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB"},M:{"1":"D"},A:{"2":"J E F G A B GC"},F:{"1":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"G B C UC VC WC XC tB EC YC uB","33":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB"},K:{"1":"l","2":"A B C tB EC uB"},E:{"1":"B C K L H tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC","2":"I z LC 2B MC TC","33":"J E F G A NC OC PC 3B"},G:{"1":"iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"2B ZC FC aC","33":"F bC cC dC eC fC gC hC"},P:{"1":"j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD","2":"I"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"}},B:6,C:"isolate from unicode-bidi"};
diff --git a/node_modules/caniuse-lite/data/features/mdn-css-unicode-bidi-plaintext.js b/node_modules/caniuse-lite/data/features/mdn-css-unicode-bidi-plaintext.js
new file mode 100644
index 0000000..9d8955e
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/mdn-css-unicode-bidi-plaintext.js
@@ -0,0 +1 @@
+module.exports={A:{D:{"1":"RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB"},L:{"1":"D"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L H M N O"},C:{"1":"TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"HC wB I z J E F G IC JC","33":"0 1 2 3 4 5 6 7 8 9 A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB"},M:{"1":"D"},A:{"2":"J E F G A B GC"},F:{"1":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB UC VC WC XC tB EC YC uB"},K:{"1":"l","2":"A B C tB EC uB"},E:{"1":"B C K L H tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC","2":"I z LC 2B MC TC","33":"J E F G A NC OC PC 3B"},G:{"1":"iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"2B ZC FC aC","33":"F bC cC dC eC fC gC hC"},P:{"1":"j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD","2":"I"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"}},B:6,C:"plaintext from unicode-bidi"};
diff --git a/node_modules/caniuse-lite/data/features/mdn-text-decoration-color.js b/node_modules/caniuse-lite/data/features/mdn-text-decoration-color.js
new file mode 100644
index 0000000..4f5e0c5
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/mdn-text-decoration-color.js
@@ -0,0 +1 @@
+module.exports={A:{D:{"1":"aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB"},L:{"1":"D"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L H M N O"},C:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"HC wB I z IC JC","33":"0 1 2 3 4 5 6 7 8 9 J E F G A B C K L H M N O j k AB BB CB DB EB"},M:{"1":"D"},A:{"2":"J E F G A B GC"},F:{"1":"NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB UC VC WC XC tB EC YC uB"},K:{"1":"l","2":"A B C tB EC uB"},E:{"1":"K L H uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC","2":"I z J E LC 2B MC NC OC TC","33":"F G A B C PC 3B tB"},G:{"1":"lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"2B ZC FC aC bC cC","33":"F dC eC fC gC hC iC jC kC"},P:{"1":"j k 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD","2":"I 1C 2C"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"}},B:6,C:"text-decoration-color property"};
diff --git a/node_modules/caniuse-lite/data/features/mdn-text-decoration-line.js b/node_modules/caniuse-lite/data/features/mdn-text-decoration-line.js
new file mode 100644
index 0000000..26d2432
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/mdn-text-decoration-line.js
@@ -0,0 +1 @@
+module.exports={A:{D:{"1":"aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB"},L:{"1":"D"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L H M N O"},C:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"HC wB I z IC JC","33":"0 1 2 3 4 5 6 7 8 9 J E F G A B C K L H M N O j k AB BB CB DB EB"},M:{"1":"D"},A:{"2":"J E F G A B GC"},F:{"1":"NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB UC VC WC XC tB EC YC uB"},K:{"1":"l","2":"A B C tB EC uB"},E:{"1":"K L H uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC","2":"I z J E LC 2B MC NC OC TC","33":"F G A B C PC 3B tB"},G:{"1":"lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"2B ZC FC aC bC cC","33":"F dC eC fC gC hC iC jC kC"},P:{"1":"j k 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD","2":"I 1C 2C"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"}},B:6,C:"text-decoration-line property"};
diff --git a/node_modules/caniuse-lite/data/features/mdn-text-decoration-shorthand.js b/node_modules/caniuse-lite/data/features/mdn-text-decoration-shorthand.js
new file mode 100644
index 0000000..f7b3daa
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/mdn-text-decoration-shorthand.js
@@ -0,0 +1 @@
+module.exports={A:{D:{"1":"aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB"},L:{"1":"D"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L H M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"HC wB I z IC JC"},M:{"1":"D"},A:{"2":"J E F G A B GC"},F:{"1":"NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB UC VC WC XC tB EC YC uB"},K:{"1":"l","2":"A B C tB EC uB"},E:{"2":"I z J E LC 2B MC NC OC TC","33":"F G A B C K L H PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC"},G:{"2":"2B ZC FC aC bC cC","33":"F dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},P:{"1":"j k 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD","2":"I 1C 2C"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"}},B:6,C:"text-decoration shorthand property"};
diff --git a/node_modules/caniuse-lite/data/features/mdn-text-decoration-style.js b/node_modules/caniuse-lite/data/features/mdn-text-decoration-style.js
new file mode 100644
index 0000000..6d002db
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/mdn-text-decoration-style.js
@@ -0,0 +1 @@
+module.exports={A:{D:{"1":"aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB"},L:{"1":"D"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L H M N O"},C:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"HC wB I z IC JC","33":"0 1 2 3 4 5 6 7 8 9 J E F G A B C K L H M N O j k AB BB CB DB EB"},M:{"1":"D"},A:{"2":"J E F G A B GC"},F:{"1":"NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB UC VC WC XC tB EC YC uB"},K:{"1":"l","2":"A B C tB EC uB"},E:{"1":"K L H uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC","2":"I z J E LC 2B MC NC OC TC","33":"F G A B C PC 3B tB"},G:{"1":"lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"2B ZC FC aC bC cC","33":"F dC eC fC gC hC iC jC kC"},P:{"1":"j k 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD","2":"I 1C 2C"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"}},B:6,C:"text-decoration-style property"};
diff --git a/node_modules/caniuse-lite/data/features/media-fragments.js b/node_modules/caniuse-lite/data/features/media-fragments.js
new file mode 100644
index 0000000..c6b5954
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/media-fragments.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"2":"C K L H M N O","132":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB IC JC","132":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B"},D:{"2":"I z J E F G A B C K L H M N","132":"0 1 2 3 4 5 6 7 8 9 O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"2":"I z LC 2B MC","132":"J E F G A B C K L H NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"2":"G B C UC VC WC XC tB EC YC uB","132":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i"},G:{"2":"2B ZC FC aC bC cC","132":"F dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"2":"wB I uC vC wC xC FC","132":"D yC zC"},J:{"2":"E A"},K:{"2":"A B C tB EC uB","132":"l"},L:{"132":"D"},M:{"132":"D"},N:{"132":"A B"},O:{"132":"0C"},P:{"2":"I 1C","132":"j k 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"132":"4B"},R:{"132":"ED"},S:{"132":"FD GD"}},B:2,C:"Media Fragments"};
diff --git a/node_modules/caniuse-lite/data/features/mediacapture-fromelement.js b/node_modules/caniuse-lite/data/features/mediacapture-fromelement.js
new file mode 100644
index 0000000..4d2db51
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/mediacapture-fromelement.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L H M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB IC JC","260":"MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B"},D:{"1":"dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB","324":"UB VB WB XB YB ZB aB bB xB cB yB"},E:{"2":"I z J E F G A LC 2B MC NC OC PC 3B","132":"B C K L H tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"1":"RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB UC VC WC XC tB EC YC uB","324":"FB GB HB IB JB KB LB MB NB OB PB QB"},G:{"2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"260":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"j k 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD","2":"I","132":"1C 2C 3C"},Q:{"1":"4B"},R:{"1":"ED"},S:{"260":"FD GD"}},B:5,C:"Media Capture from DOM Elements API"};
diff --git a/node_modules/caniuse-lite/data/features/mediarecorder.js b/node_modules/caniuse-lite/data/features/mediarecorder.js
new file mode 100644
index 0000000..4804ca6
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/mediarecorder.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L H M N O"},C:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 4 5 6 7 HC wB I z J E F G A B C K L H M N O j k IC JC"},D:{"1":"SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB","194":"QB RB"},E:{"1":"H QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E F G A B C LC 2B MC NC OC PC 3B tB","322":"K L uB 4B"},F:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB UC VC WC XC tB EC YC uB","194":"DB EB"},G:{"1":"rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC","578":"kC lC mC nC oC pC qC"},H:{"2":"tC"},I:{"2":"wB I D uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD","2":"I"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:5,C:"MediaRecorder API"};
diff --git a/node_modules/caniuse-lite/data/features/mediasource.js b/node_modules/caniuse-lite/data/features/mediasource.js
new file mode 100644
index 0000000..cfb4364
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/mediasource.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A GC","132":"B"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 HC wB I z J E F G A B C K L H M N O j k IC JC","66":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB"},D:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"I z J E F G A B C K L H M","33":"2 3 4 5 6 7 8 9","66":"0 1 N O j k"},E:{"1":"F G A B C K L H PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E LC 2B MC NC OC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"G B C UC VC WC XC tB EC YC uB"},G:{"2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC","260":"mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"1":"D zC","2":"wB I uC vC wC xC FC yC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"1":"B","2":"A"},O:{"1":"0C"},P:{"1":"j k 5C 3B 6C 7C 8C 9C AD vB BD CD DD","2":"I 1C 2C 3C 4C"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:2,C:"Media Source Extensions"};
diff --git a/node_modules/caniuse-lite/data/features/menu.js b/node_modules/caniuse-lite/data/features/menu.js
new file mode 100644
index 0000000..5e92c99
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/menu.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"2":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"2":"HC wB I z J E IC JC","132":"0 1 2 3 4 5 6 7 8 9 F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T","450":"U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","66":"KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB"},E:{"2":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i UC VC WC XC tB EC YC uB","66":"EB FB GB HB IB JB KB LB MB NB OB PB"},G:{"2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"2":"wB I D uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"2":"A B C l tB EC uB"},L:{"2":"D"},M:{"450":"D"},N:{"2":"A B"},O:{"2":"0C"},P:{"2":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"2":"4B"},R:{"2":"ED"},S:{"2":"FD GD"}},B:7,C:"Context menu item (menuitem element)"};
diff --git a/node_modules/caniuse-lite/data/features/meta-theme-color.js b/node_modules/caniuse-lite/data/features/meta-theme-color.js
new file mode 100644
index 0000000..62cc86b
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/meta-theme-color.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"2":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB","132":"l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","258":"IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB"},E:{"1":"H RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E F G A B C K L LC 2B MC NC OC PC 3B tB uB 4B QC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i UC VC WC XC tB EC YC uB"},G:{"1":"sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC"},H:{"2":"tC"},I:{"2":"wB I D uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"2":"A B C l tB EC uB"},L:{"513":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"2":"0C"},P:{"1":"j k 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD","2":"I","16":"1C"},Q:{"2":"4B"},R:{"2":"ED"},S:{"2":"FD GD"}},B:1,C:"theme-color Meta Tag"};
diff --git a/node_modules/caniuse-lite/data/features/meter.js b/node_modules/caniuse-lite/data/features/meter.js
new file mode 100644
index 0000000..0d6b214
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/meter.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"HC wB I z J E F G A B C K L H IC JC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"I z J E"},E:{"1":"J E F G A B C K L H NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z LC 2B MC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i tB EC YC uB","2":"G UC VC WC XC"},G:{"1":"hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"F 2B ZC FC aC bC cC dC eC fC gC"},H:{"1":"tC"},I:{"1":"D yC zC","2":"wB I uC vC wC xC FC"},J:{"1":"E A"},K:{"1":"B C l tB EC uB","2":"A"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:1,C:"meter element"};
diff --git a/node_modules/caniuse-lite/data/features/midi.js b/node_modules/caniuse-lite/data/features/midi.js
new file mode 100644
index 0000000..3eb3af0
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/midi.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L H M N O"},C:{"1":"u v w x y D 0B 1B","2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t IC JC"},D:{"1":"MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB"},E:{"2":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 6 7 8 G B C H M N O j k UC VC WC XC tB EC YC uB"},G:{"2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"2":"FD GD"}},B:5,C:"Web MIDI API"};
diff --git a/node_modules/caniuse-lite/data/features/minmaxwh.js b/node_modules/caniuse-lite/data/features/minmaxwh.js
new file mode 100644
index 0000000..690c78a
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/minmaxwh.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"G A B","8":"J GC","129":"E","257":"F"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"1":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i UC VC WC XC tB EC YC uB"},G:{"1":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"1":"tC"},I:{"1":"wB I D uC vC wC xC FC yC zC"},J:{"1":"E A"},K:{"1":"A B C l tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:2,C:"CSS min/max-width/height"};
diff --git a/node_modules/caniuse-lite/data/features/mp3.js b/node_modules/caniuse-lite/data/features/mp3.js
new file mode 100644
index 0000000..3e6b2b2
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/mp3.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"G A B","2":"J E F GC"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"HC wB","132":"0 I z J E F G A B C K L H M N O j k IC JC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"1":"I z J E F G A B C K L H MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"LC 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"G B C UC VC WC XC tB EC YC uB"},G:{"1":"F ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"2B"},H:{"2":"tC"},I:{"1":"wB I D wC xC FC yC zC","2":"uC vC"},J:{"1":"E A"},K:{"1":"B C l tB EC uB","2":"A"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:6,C:"MP3 audio format"};
diff --git a/node_modules/caniuse-lite/data/features/mpeg-dash.js b/node_modules/caniuse-lite/data/features/mpeg-dash.js
new file mode 100644
index 0000000..a99c508
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/mpeg-dash.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"C K L H M N O","2":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"2":"0 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC","386":"1 k"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"2":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i UC VC WC XC tB EC YC uB"},G:{"2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"2":"wB I D uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"2":"A B C l tB EC uB"},L:{"2":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"2":"0C"},P:{"2":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"2":"4B"},R:{"2":"ED"},S:{"2":"FD GD"}},B:6,C:"Dynamic Adaptive Streaming over HTTP (MPEG-DASH)"};
diff --git a/node_modules/caniuse-lite/data/features/mpeg4.js b/node_modules/caniuse-lite/data/features/mpeg4.js
new file mode 100644
index 0000000..2633041
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/mpeg4.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"G A B","2":"J E F GC"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 HC wB I z J E F G A B C K L H M N O j IC JC","4":"1 2 3 4 5 6 7 8 9 k AB BB CB DB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"1":"I z J E F G A B C K L H 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"LC"},F:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 G B C H M N O j k UC VC WC XC tB EC YC uB"},G:{"1":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"1":"D yC zC","4":"wB I uC vC xC FC","132":"wC"},J:{"1":"E A"},K:{"1":"B C l tB EC uB","2":"A"},L:{"1":"D"},M:{"260":"D"},N:{"1":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:6,C:"MPEG-4/H.264 video format"};
diff --git a/node_modules/caniuse-lite/data/features/multibackgrounds.js b/node_modules/caniuse-lite/data/features/multibackgrounds.js
new file mode 100644
index 0000000..af1f5e1
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/multibackgrounds.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"G A B","2":"J E F GC"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B JC","2":"HC wB IC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"1":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i WC XC tB EC YC uB","2":"G UC VC"},G:{"1":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"1":"tC"},I:{"1":"wB I D uC vC wC xC FC yC zC"},J:{"1":"E A"},K:{"1":"A B C l tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:4,C:"CSS3 Multiple backgrounds"};
diff --git a/node_modules/caniuse-lite/data/features/multicolumn.js b/node_modules/caniuse-lite/data/features/multicolumn.js
new file mode 100644
index 0000000..ab602fe
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/multicolumn.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"A B","2":"J E F G GC"},B:{"1":"C K L H M N O","516":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"132":"VB WB XB YB ZB aB bB xB cB yB dB eB fB","164":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB IC JC","516":"gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a","1028":"b c d e f g h i m n o p q r s t u v w x y D 0B 1B"},D:{"420":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB","516":"TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"1":"A B C K L H 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","132":"G PC","164":"E F OC","420":"I z J LC 2B MC NC"},F:{"1":"C tB EC YC uB","2":"G B UC VC WC XC","420":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB","516":"GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i"},G:{"1":"gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","132":"eC fC","164":"F cC dC","420":"2B ZC FC aC bC"},H:{"1":"tC"},I:{"420":"wB I uC vC wC xC FC yC zC","516":"D"},J:{"420":"E A"},K:{"1":"C tB EC uB","2":"A B","516":"l"},L:{"516":"D"},M:{"1028":"D"},N:{"1":"A B"},O:{"516":"0C"},P:{"1":"j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD","420":"I"},Q:{"516":"4B"},R:{"516":"ED"},S:{"164":"FD GD"}},B:4,C:"CSS3 Multiple column layout"};
diff --git a/node_modules/caniuse-lite/data/features/mutation-events.js b/node_modules/caniuse-lite/data/features/mutation-events.js
new file mode 100644
index 0000000..7f09443
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/mutation-events.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F GC","260":"G A B"},B:{"132":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","260":"C K L H M N O"},C:{"2":"HC wB I z IC JC","260":"0 1 2 3 4 5 6 7 8 9 J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B"},D:{"16":"I z J E F G A B C K L","132":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"16":"LC 2B","132":"I z J E F G A B C K L H MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"1":"C YC uB","2":"G UC VC WC XC","16":"B tB EC","132":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i"},G:{"16":"2B ZC","132":"F FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"16":"uC vC","132":"wB I D wC xC FC yC zC"},J:{"132":"E A"},K:{"1":"C uB","2":"A","16":"B tB EC","132":"l"},L:{"132":"D"},M:{"260":"D"},N:{"260":"A B"},O:{"132":"0C"},P:{"132":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"132":"4B"},R:{"132":"ED"},S:{"260":"FD GD"}},B:5,C:"Mutation events"};
diff --git a/node_modules/caniuse-lite/data/features/mutationobserver.js b/node_modules/caniuse-lite/data/features/mutationobserver.js
new file mode 100644
index 0000000..91c92ca
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/mutationobserver.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"B","2":"J E F GC","8":"G A"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"HC wB I z J E F G A B C K IC JC"},D:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"I z J E F G A B C K L H M N","33":"0 1 2 3 4 5 O j k"},E:{"1":"E F G A B C K L H NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z LC 2B MC","33":"J"},F:{"1":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"G B C UC VC WC XC tB EC YC uB"},G:{"1":"F cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"2B ZC FC aC","33":"bC"},H:{"2":"tC"},I:{"1":"D yC zC","2":"wB uC vC wC","8":"I xC FC"},J:{"1":"A","2":"E"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"1":"B","8":"A"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:1,C:"Mutation Observer"};
diff --git a/node_modules/caniuse-lite/data/features/namevalue-storage.js b/node_modules/caniuse-lite/data/features/namevalue-storage.js
new file mode 100644
index 0000000..77fe468
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/namevalue-storage.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"F G A B","2":"GC","8":"J E"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC","4":"HC wB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"1":"I z J E F G A B C K L H MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"LC 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i WC XC tB EC YC uB","2":"G UC VC"},G:{"1":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"1":"wB I D uC vC wC xC FC yC zC"},J:{"1":"E A"},K:{"1":"B C l tB EC uB","2":"A"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:1,C:"Web Storage - name/value pairs"};
diff --git a/node_modules/caniuse-lite/data/features/native-filesystem-api.js b/node_modules/caniuse-lite/data/features/native-filesystem-api.js
new file mode 100644
index 0000000..ebad30b
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/native-filesystem-api.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"2":"C K L H M N O","194":"P Q R S T U","260":"V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w IC JC","516":"x y D 0B 1B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l","194":"oB pB qB rB sB P Q R S T U","260":"V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"2":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC","516":"5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB UC VC WC XC tB EC YC uB","194":"dB eB fB gB hB iB jB kB lB mB","260":"nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i"},G:{"2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC","516":"5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"2":"wB I uC vC wC xC FC yC zC","516":"D"},J:{"2":"E A"},K:{"2":"A B C l tB EC uB"},L:{"516":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"2":"0C"},P:{"2":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"2":"4B"},R:{"2":"ED"},S:{"2":"FD GD"}},B:7,C:"File System Access API"};
diff --git a/node_modules/caniuse-lite/data/features/nav-timing.js b/node_modules/caniuse-lite/data/features/nav-timing.js
new file mode 100644
index 0000000..d4b9d8c
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/nav-timing.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"G A B","2":"J E F GC"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"HC wB I z J IC JC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"I z","33":"J E F G A B C"},E:{"1":"F G A B C K L H PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E LC 2B MC NC OC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"G B C UC VC WC XC tB EC YC uB"},G:{"1":"F eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"2B ZC FC aC bC cC dC"},H:{"2":"tC"},I:{"1":"I D xC FC yC zC","2":"wB uC vC wC"},J:{"1":"A","2":"E"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:2,C:"Navigation Timing API"};
diff --git a/node_modules/caniuse-lite/data/features/netinfo.js b/node_modules/caniuse-lite/data/features/netinfo.js
new file mode 100644
index 0000000..9d7bbae
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/netinfo.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"2":"C K L H M N O","1028":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB","1028":"yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"2":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB UC VC WC XC tB EC YC uB","1028":"RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i"},G:{"2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"1":"D","2":"uC yC zC","132":"wB I vC wC xC FC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"j k 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD","132":"I","516":"1C 2C 3C"},Q:{"1":"4B"},R:{"1":"ED"},S:{"2":"GD","260":"FD"}},B:7,C:"Network Information API"};
diff --git a/node_modules/caniuse-lite/data/features/notifications.js b/node_modules/caniuse-lite/data/features/notifications.js
new file mode 100644
index 0000000..5017156
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/notifications.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K"},C:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 HC wB I z J E F G A B C K L H M N O j k IC JC"},D:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"I","36":"0 z J E F G A B C K L H M N O j k"},E:{"1":"J E F G A B C K L H NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z LC 2B MC"},F:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 G B C H M N O j k UC VC WC XC tB EC YC uB"},G:{"2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC","1028":"CC DC"},H:{"2":"tC"},I:{"2":"wB I uC vC wC xC FC","36":"D yC zC"},J:{"1":"A","2":"E"},K:{"2":"A B C tB EC uB","36":"l"},L:{"513":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"36":"I","258":"j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"2":"4B"},R:{"258":"ED"},S:{"1":"FD GD"}},B:1,C:"Web Notifications"};
diff --git a/node_modules/caniuse-lite/data/features/object-entries.js b/node_modules/caniuse-lite/data/features/object-entries.js
new file mode 100644
index 0000000..7030946
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/object-entries.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K"},C:{"1":"QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB IC JC"},D:{"1":"XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB"},E:{"1":"B C K L H 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E F G A LC 2B MC NC OC PC"},F:{"1":"KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB UC VC WC XC tB EC YC uB"},G:{"1":"hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"F 2B ZC FC aC bC cC dC eC fC gC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E","16":"A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"j k 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD","2":"I 1C"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:6,C:"Object.entries"};
diff --git a/node_modules/caniuse-lite/data/features/object-fit.js b/node_modules/caniuse-lite/data/features/object-fit.js
new file mode 100644
index 0000000..0acb50b
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/object-fit.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L H","260":"M N O"},C:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB IC JC"},D:{"1":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB"},E:{"1":"A B C K L H 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E LC 2B MC NC","132":"F G OC PC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"G H M N O UC VC WC","33":"B C XC tB EC YC uB"},G:{"1":"gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"2B ZC FC aC bC cC","132":"F dC eC fC"},H:{"33":"tC"},I:{"1":"D zC","2":"wB I uC vC wC xC FC yC"},J:{"2":"E A"},K:{"1":"l","2":"A","33":"B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:4,C:"CSS3 object-fit/object-position"};
diff --git a/node_modules/caniuse-lite/data/features/object-observe.js b/node_modules/caniuse-lite/data/features/object-observe.js
new file mode 100644
index 0000000..041856b
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/object-observe.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"2":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC"},D:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"2":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB","2":"0 1 G B C H M N O j k GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i UC VC WC XC tB EC YC uB"},G:{"2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"2":"wB I D uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"2":"A B C l tB EC uB"},L:{"2":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"2":"0C"},P:{"1":"I","2":"j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"2":"4B"},R:{"2":"ED"},S:{"2":"FD GD"}},B:7,C:"Object.observe data binding"};
diff --git a/node_modules/caniuse-lite/data/features/object-values.js b/node_modules/caniuse-lite/data/features/object-values.js
new file mode 100644
index 0000000..ed91d5c
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/object-values.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"8":"J E F G A B GC"},B:{"1":"L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K"},C:{"1":"QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","8":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB IC JC"},D:{"1":"XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","8":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB"},E:{"1":"B C K L H 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","8":"I z J E F G A LC 2B MC NC OC PC"},F:{"1":"KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","8":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB UC VC WC XC tB EC YC uB"},G:{"1":"hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","8":"F 2B ZC FC aC bC cC dC eC fC gC"},H:{"8":"tC"},I:{"1":"D","8":"wB I uC vC wC xC FC yC zC"},J:{"8":"E A"},K:{"1":"l","8":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"8":"A B"},O:{"1":"0C"},P:{"1":"j k 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD","8":"I 1C"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:6,C:"Object.values method"};
diff --git a/node_modules/caniuse-lite/data/features/objectrtc.js b/node_modules/caniuse-lite/data/features/objectrtc.js
new file mode 100644
index 0000000..0c3dda8
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/objectrtc.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"K L H M N O","2":"C P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"2":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i UC VC WC XC tB EC YC uB"},G:{"2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"2":"wB I D uC vC wC xC FC yC zC"},J:{"2":"E","130":"A"},K:{"2":"A B C l tB EC uB"},L:{"2":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"2":"0C"},P:{"2":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"2":"4B"},R:{"2":"ED"},S:{"2":"FD GD"}},B:6,C:"Object RTC (ORTC) API for WebRTC"};
diff --git a/node_modules/caniuse-lite/data/features/offline-apps.js b/node_modules/caniuse-lite/data/features/offline-apps.js
new file mode 100644
index 0000000..841e9e7
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/offline-apps.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"A B","2":"G GC","8":"J E F"},B:{"1":"C K L H M N O P Q R S T","2":"U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S IC JC","2":"T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","4":"wB","8":"HC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T","2":"U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"1":"I z J E F G A B C K L H MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","8":"LC 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB XC tB EC YC uB","2":"G l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i UC","8":"VC WC"},G:{"1":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"1":"wB I uC vC wC xC FC yC zC","2":"D"},J:{"1":"E A"},K:{"1":"B C tB EC uB","2":"A l"},L:{"2":"D"},M:{"2":"D"},N:{"1":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"2":"ED"},S:{"1":"FD","2":"GD"}},B:7,C:"Offline web applications"};
diff --git a/node_modules/caniuse-lite/data/features/offscreencanvas.js b/node_modules/caniuse-lite/data/features/offscreencanvas.js
new file mode 100644
index 0000000..66af97f
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/offscreencanvas.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L H M N O"},C:{"1":"r s t u v w x y D 0B 1B","2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB IC JC","194":"NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q"},D:{"1":"kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB","322":"bB xB cB yB dB eB fB gB hB iB jB"},E:{"1":"CC DC SC TC","2":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC"},F:{"1":"fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB UC VC WC XC tB EC YC uB","322":"OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB"},G:{"1":"CC DC","2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"j k 3B 6C 7C 8C 9C AD vB BD CD DD","2":"I 1C 2C 3C 4C 5C"},Q:{"1":"4B"},R:{"1":"ED"},S:{"194":"FD GD"}},B:1,C:"OffscreenCanvas"};
diff --git a/node_modules/caniuse-lite/data/features/ogg-vorbis.js b/node_modules/caniuse-lite/data/features/ogg-vorbis.js
new file mode 100644
index 0000000..14e74d3
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/ogg-vorbis.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L H M"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC","2":"HC wB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"2":"I z J E F G A B C K L LC 2B MC NC OC PC 3B tB uB 4B","132":"H QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i WC XC tB EC YC uB","2":"G UC VC"},G:{"2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"1":"wB I D wC xC FC yC zC","16":"uC vC"},J:{"1":"A","2":"E"},K:{"1":"B C l tB EC uB","2":"A"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:6,C:"Ogg Vorbis audio format"};
diff --git a/node_modules/caniuse-lite/data/features/ogv.js b/node_modules/caniuse-lite/data/features/ogv.js
new file mode 100644
index 0000000..1c8ab28
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/ogv.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F GC","8":"G A B"},B:{"1":"N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","8":"C K L H M"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC","2":"HC wB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"2":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i WC XC tB EC YC uB","2":"G UC VC"},G:{"2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"2":"wB I D uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"2":"A B C l tB EC uB"},L:{"2":"D"},M:{"1":"D"},N:{"8":"A B"},O:{"1":"0C"},P:{"2":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"2":"ED"},S:{"1":"FD GD"}},B:6,C:"Ogg/Theora video format"};
diff --git a/node_modules/caniuse-lite/data/features/ol-reversed.js b/node_modules/caniuse-lite/data/features/ol-reversed.js
new file mode 100644
index 0000000..f685e60
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/ol-reversed.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L H M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"HC wB I z J E F G A B C K L H M N IC JC"},D:{"1":"1 2 3 4 5 6 7 8 9 j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"I z J E F G A B C K L H","16":"0 M N O"},E:{"1":"E F G A B C K L H NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z LC 2B MC","16":"J"},F:{"1":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i uB","2":"G B UC VC WC XC tB EC YC","16":"C"},G:{"1":"F bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"2B ZC FC aC"},H:{"1":"tC"},I:{"1":"D yC zC","2":"wB I uC vC wC xC FC"},J:{"1":"A","2":"E"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:1,C:"Reversed attribute of ordered lists"};
diff --git a/node_modules/caniuse-lite/data/features/once-event-listener.js b/node_modules/caniuse-lite/data/features/once-event-listener.js
new file mode 100644
index 0000000..510828b
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/once-event-listener.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L H"},C:{"1":"TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB IC JC"},D:{"1":"YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB"},E:{"1":"A B C K L H 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E F G LC 2B MC NC OC PC"},F:{"1":"LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB UC VC WC XC tB EC YC uB"},G:{"1":"gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"F 2B ZC FC aC bC cC dC eC fC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"j k 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD","2":"I 1C"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"GD","2":"FD"}},B:1,C:"\"once\" event listener option"};
diff --git a/node_modules/caniuse-lite/data/features/online-status.js b/node_modules/caniuse-lite/data/features/online-status.js
new file mode 100644
index 0000000..af578f9
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/online-status.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"G A B","2":"J E GC","260":"F"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC","2":"HC wB","516":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"I z J E F G A B C K"},E:{"1":"z J E F G A B C K L H MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I LC 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"G B C UC VC WC XC tB EC YC","4":"uB"},G:{"1":"F FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","16":"2B ZC"},H:{"2":"tC"},I:{"1":"wB I D wC xC FC yC zC","16":"uC vC"},J:{"1":"A","132":"E"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:1,C:"Online/offline status"};
diff --git a/node_modules/caniuse-lite/data/features/opus.js b/node_modules/caniuse-lite/data/features/opus.js
new file mode 100644
index 0000000..35b0253
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/opus.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K"},C:{"1":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"HC wB I z J E F G A B C K L IC JC"},D:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB"},E:{"2":"I z J E F G A LC 2B MC NC OC PC 3B","132":"B C K L H tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"1":"1 2 3 4 5 6 7 8 9 j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 G B C H M N O UC VC WC XC tB EC YC uB"},G:{"2":"F 2B ZC FC aC bC cC dC eC fC gC hC","132":"iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD","2":"I"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:6,C:"Opus audio format"};
diff --git a/node_modules/caniuse-lite/data/features/orientation-sensor.js b/node_modules/caniuse-lite/data/features/orientation-sensor.js
new file mode 100644
index 0000000..06ce48a
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/orientation-sensor.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L H M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC"},D:{"1":"iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB","194":"bB xB cB yB dB eB fB gB hB"},E:{"2":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"1":"XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB UC VC WC XC tB EC YC uB"},G:{"2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"2":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"2":"FD GD"}},B:4,C:"Orientation Sensor"};
diff --git a/node_modules/caniuse-lite/data/features/outline.js b/node_modules/caniuse-lite/data/features/outline.js
new file mode 100644
index 0000000..bf3fee5
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/outline.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E GC","260":"F","388":"G A B"},B:{"1":"H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","388":"C K L"},C:{"1":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"1":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i YC","129":"uB","260":"G B UC VC WC XC tB EC"},G:{"1":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"1":"wB I D uC vC wC xC FC yC zC"},J:{"1":"E A"},K:{"1":"C l uB","260":"A B tB EC"},L:{"1":"D"},M:{"1":"D"},N:{"388":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:4,C:"CSS outline properties"};
diff --git a/node_modules/caniuse-lite/data/features/pad-start-end.js b/node_modules/caniuse-lite/data/features/pad-start-end.js
new file mode 100644
index 0000000..011498b
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/pad-start-end.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L"},C:{"1":"RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB IC JC"},D:{"1":"aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB"},E:{"1":"A B C K L H 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E F G LC 2B MC NC OC PC"},F:{"1":"NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB UC VC WC XC tB EC YC uB"},G:{"1":"gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"F 2B ZC FC aC bC cC dC eC fC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"j k 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD","2":"I 1C 2C"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:6,C:"String.prototype.padStart(), String.prototype.padEnd()"};
diff --git a/node_modules/caniuse-lite/data/features/page-transition-events.js b/node_modules/caniuse-lite/data/features/page-transition-events.js
new file mode 100644
index 0000000..b9fea93
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/page-transition-events.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"B","2":"J E F G A GC"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"1":"z J E F G A B C K L H MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I LC 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"G B C UC VC WC XC tB EC YC uB"},G:{"1":"F aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","16":"2B ZC FC"},H:{"2":"tC"},I:{"1":"wB I D wC xC FC yC zC","16":"uC vC"},J:{"1":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"1":"B","2":"A"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:1,C:"PageTransitionEvent"};
diff --git a/node_modules/caniuse-lite/data/features/pagevisibility.js b/node_modules/caniuse-lite/data/features/pagevisibility.js
new file mode 100644
index 0000000..ede1aab
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/pagevisibility.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"A B","2":"J E F G GC"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"HC wB I z J E F G IC JC","33":"A B C K L H M N"},D:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"I z J E F G A B C K","33":"0 1 2 3 4 5 6 7 8 9 L H M N O j k AB BB"},E:{"1":"E F G A B C K L H NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J LC 2B MC"},F:{"1":"1 2 3 4 5 6 7 8 9 j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i uB","2":"G B C UC VC WC XC tB EC YC","33":"0 H M N O"},G:{"1":"F cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"2B ZC FC aC bC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC","33":"yC zC"},J:{"1":"A","2":"E"},K:{"1":"l uB","2":"A B C tB EC"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"0C"},P:{"1":"j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD","33":"I"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:2,C:"Page Visibility"};
diff --git a/node_modules/caniuse-lite/data/features/passive-event-listener.js b/node_modules/caniuse-lite/data/features/passive-event-listener.js
new file mode 100644
index 0000000..c7e10cb
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/passive-event-listener.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L H"},C:{"1":"SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB IC JC"},D:{"1":"UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB"},E:{"1":"A B C K L H 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E F G LC 2B MC NC OC PC"},F:{"1":"HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB UC VC WC XC tB EC YC uB"},G:{"1":"gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"F 2B ZC FC aC bC cC dC eC fC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD","2":"I"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"GD","2":"FD"}},B:1,C:"Passive event listeners"};
diff --git a/node_modules/caniuse-lite/data/features/passwordrules.js b/node_modules/caniuse-lite/data/features/passwordrules.js
new file mode 100644
index 0000000..8c1a1ed
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/passwordrules.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"2":"C K L H M N O","16":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D IC JC","16":"0B 1B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","16":"0B 1B KC"},E:{"1":"C K uB","2":"I z J E F G A B LC 2B MC NC OC PC 3B tB","16":"L H 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB UC VC WC XC tB EC YC uB","16":"WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i"},G:{"2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"16":"tC"},I:{"2":"wB I uC vC wC xC FC yC zC","16":"D"},J:{"2":"E","16":"A"},K:{"2":"A B C tB EC uB","16":"l"},L:{"16":"D"},M:{"16":"D"},N:{"2":"A","16":"B"},O:{"16":"0C"},P:{"2":"I 1C 2C","16":"j k 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"16":"4B"},R:{"16":"ED"},S:{"2":"FD GD"}},B:1,C:"Password Rules"};
diff --git a/node_modules/caniuse-lite/data/features/path2d.js b/node_modules/caniuse-lite/data/features/path2d.js
new file mode 100644
index 0000000..fdf6679
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/path2d.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K","132":"L H M N O"},C:{"1":"RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k IC JC","132":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB"},D:{"1":"jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB","132":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB"},E:{"1":"A B C K L H PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E LC 2B MC NC","132":"F G OC"},F:{"1":"YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 G B C H M N O j k UC VC WC XC tB EC YC uB","132":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB"},G:{"1":"eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"2B ZC FC aC bC cC","16":"F","132":"dC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"1":"A","2":"E"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"j k 3B 6C 7C 8C 9C AD vB BD CD DD","132":"I 1C 2C 3C 4C 5C"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:1,C:"Path2D"};
diff --git a/node_modules/caniuse-lite/data/features/payment-request.js b/node_modules/caniuse-lite/data/features/payment-request.js
new file mode 100644
index 0000000..dc1eb61
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/payment-request.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K","322":"L","8196":"H M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB IC JC","4162":"YB ZB aB bB xB cB yB dB eB fB gB","16452":"hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B"},D:{"1":"sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB","194":"WB XB YB ZB aB bB","1090":"xB cB","8196":"yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB"},E:{"1":"K L H uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E F G LC 2B MC NC OC PC","514":"A B 3B","8196":"C tB"},F:{"1":"hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB UC VC WC XC tB EC YC uB","194":"JB KB LB MB NB OB PB QB","8196":"RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB"},G:{"1":"lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"F 2B ZC FC aC bC cC dC eC fC","514":"gC hC iC","8196":"jC kC"},H:{"2":"tC"},I:{"2":"wB I D uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"2049":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"2":"0C"},P:{"1":"j k 7C 8C 9C AD vB BD CD DD","2":"I","8196":"1C 2C 3C 4C 5C 3B 6C"},Q:{"8196":"4B"},R:{"2":"ED"},S:{"2":"FD GD"}},B:2,C:"Payment Request API"};
diff --git a/node_modules/caniuse-lite/data/features/pdf-viewer.js b/node_modules/caniuse-lite/data/features/pdf-viewer.js
new file mode 100644
index 0000000..3240d54
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/pdf-viewer.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A GC","132":"B"},B:{"1":"H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","16":"C K L"},C:{"1":"0 1 2 3 4 5 6 7 8 9 j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"HC wB I z J E F G A B C K L H M N O IC JC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","16":"I z J E F G A B C K L"},E:{"1":"I z J E F G A B C K L H MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","16":"LC 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i uB","2":"G B UC VC WC XC tB EC YC"},G:{"1":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"2":"wB I D uC vC wC xC FC yC zC"},J:{"16":"E A"},K:{"2":"A B C l tB EC uB"},L:{"2":"D"},M:{"2":"D"},N:{"16":"A B"},O:{"2":"0C"},P:{"2":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"2":"ED"},S:{"2":"FD GD"}},B:6,C:"Built-in PDF viewer"};
diff --git a/node_modules/caniuse-lite/data/features/permissions-api.js b/node_modules/caniuse-lite/data/features/permissions-api.js
new file mode 100644
index 0000000..73b0191
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/permissions-api.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L H M N O"},C:{"1":"PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB IC JC"},D:{"1":"MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB"},E:{"1":"vB 9B AC BC CC DC SC TC","2":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B"},F:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 6 7 8 G B C H M N O j k UC VC WC XC tB EC YC uB"},G:{"1":"vB 9B AC BC CC DC","2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B"},H:{"2":"tC"},I:{"2":"wB I D uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:5,C:"Permissions API"};
diff --git a/node_modules/caniuse-lite/data/features/permissions-policy.js b/node_modules/caniuse-lite/data/features/permissions-policy.js
new file mode 100644
index 0000000..ce11fbd
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/permissions-policy.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"2":"C K L H M N O","258":"P Q R S T U","322":"V W","388":"X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l IC JC","258":"oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB","258":"cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U","322":"V W","388":"X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"2":"I z J E F G A B LC 2B MC NC OC PC 3B","258":"C K L H tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB UC VC WC XC tB EC YC uB","258":"QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB","322":"nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d","388":"e f g h i"},G:{"2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC","258":"jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"2":"wB I uC vC wC xC FC yC zC","258":"D"},J:{"2":"E A"},K:{"2":"A B C tB EC uB","388":"l"},L:{"388":"D"},M:{"258":"D"},N:{"2":"A B"},O:{"2":"0C"},P:{"2":"I 1C 2C 3C","258":"j k 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"258":"4B"},R:{"388":"ED"},S:{"2":"FD","258":"GD"}},B:5,C:"Permissions Policy"};
diff --git a/node_modules/caniuse-lite/data/features/picture-in-picture.js b/node_modules/caniuse-lite/data/features/picture-in-picture.js
new file mode 100644
index 0000000..68f2a3a
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/picture-in-picture.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L H M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB IC JC","132":"nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","1090":"iB","1412":"mB","1668":"jB kB lB"},D:{"1":"lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB","2114":"kB"},E:{"1":"L H 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E F G LC 2B MC NC OC PC","4100":"A B C K 3B tB uB"},F:{"1":"l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB UC VC WC XC tB EC YC uB","8196":"GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB"},G:{"1":"qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"F 2B ZC FC aC bC cC dC","4100":"eC fC gC hC iC jC kC lC mC nC oC pC"},H:{"2":"tC"},I:{"2":"wB I D uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"2":"A B C l tB EC uB"},L:{"16388":"D"},M:{"16388":"D"},N:{"2":"A B"},O:{"2":"0C"},P:{"2":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"2":"4B"},R:{"2":"ED"},S:{"2":"FD GD"}},B:5,C:"Picture-in-Picture"};
diff --git a/node_modules/caniuse-lite/data/features/picture.js b/node_modules/caniuse-lite/data/features/picture.js
new file mode 100644
index 0000000..0d0eddb
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/picture.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C"},C:{"1":"HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB IC JC","578":"DB EB FB GB"},D:{"1":"HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB","194":"GB"},E:{"1":"A B C K L H PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E F G LC 2B MC NC OC"},F:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 G B C H M N O j k UC VC WC XC tB EC YC uB","322":"3"},G:{"1":"fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"F 2B ZC FC aC bC cC dC eC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:1,C:"Picture element"};
diff --git a/node_modules/caniuse-lite/data/features/ping.js b/node_modules/caniuse-lite/data/features/ping.js
new file mode 100644
index 0000000..0da6af4
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/ping.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L H M"},C:{"2":"HC","194":"0 1 2 3 4 5 6 7 8 9 wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","16":"I z J E F G A B C K L"},E:{"1":"J E F G A B C K L H NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z LC 2B MC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"G B C UC VC WC XC tB EC YC uB"},G:{"1":"F aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"2B ZC FC"},H:{"2":"tC"},I:{"1":"D yC zC","2":"wB I uC vC wC xC FC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"194":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"194":"FD GD"}},B:1,C:"Ping attribute"};
diff --git a/node_modules/caniuse-lite/data/features/png-alpha.js b/node_modules/caniuse-lite/data/features/png-alpha.js
new file mode 100644
index 0000000..6866ef9
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/png-alpha.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"E F G A B","2":"GC","8":"J"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"1":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i UC VC WC XC tB EC YC uB"},G:{"1":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"1":"tC"},I:{"1":"wB I D uC vC wC xC FC yC zC"},J:{"1":"E A"},K:{"1":"A B C l tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:2,C:"PNG alpha transparency"};
diff --git a/node_modules/caniuse-lite/data/features/pointer-events.js b/node_modules/caniuse-lite/data/features/pointer-events.js
new file mode 100644
index 0000000..5f1793a
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/pointer-events.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"B","2":"J E F G A GC"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B JC","2":"HC wB IC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"1":"I z J E F G A B C K L H MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"LC 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"G B C UC VC WC XC tB EC YC uB"},G:{"1":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"1":"wB I D uC vC wC xC FC yC zC"},J:{"1":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"1":"B","2":"A"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:7,C:"CSS pointer-events (for HTML)"};
diff --git a/node_modules/caniuse-lite/data/features/pointer.js b/node_modules/caniuse-lite/data/features/pointer.js
new file mode 100644
index 0000000..b437ce2
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/pointer.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"B","2":"J E F G GC","164":"A"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"HC wB I z IC JC","8":"0 1 2 3 4 5 6 7 8 9 J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB","328":"KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB"},D:{"1":"YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 I z J E F G A B C K L H M N O j k","8":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB","584":"VB WB XB"},E:{"1":"K L H 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J LC 2B MC","8":"E F G A B C NC OC PC 3B tB","1096":"uB"},F:{"1":"LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"G B C UC VC WC XC tB EC YC uB","8":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB","584":"IB JB KB"},G:{"1":"nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","8":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC","6148":"mC"},H:{"2":"tC"},I:{"1":"D","8":"wB I uC vC wC xC FC yC zC"},J:{"8":"E A"},K:{"1":"l","2":"A","8":"B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"1":"B","36":"A"},O:{"1":"0C"},P:{"1":"j k 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD","2":"1C","8":"I"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"GD","328":"FD"}},B:2,C:"Pointer events"};
diff --git a/node_modules/caniuse-lite/data/features/pointerlock.js b/node_modules/caniuse-lite/data/features/pointerlock.js
new file mode 100644
index 0000000..7dd7e2f
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/pointerlock.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C"},C:{"1":"KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"HC wB I z J E F G A B C K IC JC","33":"0 1 2 3 4 5 6 7 8 9 L H M N O j k AB BB CB DB EB FB GB HB IB JB"},D:{"1":"GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"I z J E F G A B C K L H","33":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB","66":"0 M N O j k"},E:{"1":"B C K L H 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E F G A LC 2B MC NC OC PC"},F:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"G B C UC VC WC XC tB EC YC uB","33":"0 1 2 H M N O j k"},G:{"2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"2":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:2,C:"Pointer Lock API"};
diff --git a/node_modules/caniuse-lite/data/features/portals.js b/node_modules/caniuse-lite/data/features/portals.js
new file mode 100644
index 0000000..f6c6852
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/portals.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"2":"C K L H M N O P Q R S T","322":"Z a b c d e f g h i m n o p q r s t u v w x y D","450":"U V W X Y"},C:{"2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB","194":"pB qB rB sB P Q R S T","322":"V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","450":"U"},E:{"2":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB UC VC WC XC tB EC YC uB","194":"dB eB fB gB hB iB jB kB lB mB nB","322":"l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i"},G:{"2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"2":"wB I D uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"2":"A B C l tB EC uB"},L:{"450":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"2":"0C"},P:{"2":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"2":"4B"},R:{"2":"ED"},S:{"2":"FD GD"}},B:7,C:"Portals"};
diff --git a/node_modules/caniuse-lite/data/features/prefers-color-scheme.js b/node_modules/caniuse-lite/data/features/prefers-color-scheme.js
new file mode 100644
index 0000000..783b893
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/prefers-color-scheme.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L H M N O"},C:{"1":"iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB IC JC"},D:{"1":"qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB"},E:{"1":"K L H uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E F G A B C LC 2B MC NC OC PC 3B tB"},F:{"1":"dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB UC VC WC XC tB EC YC uB"},G:{"1":"mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"j k 7C 8C 9C AD vB BD CD DD","2":"I 1C 2C 3C 4C 5C 3B 6C"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"GD","2":"FD"}},B:5,C:"prefers-color-scheme media query"};
diff --git a/node_modules/caniuse-lite/data/features/prefers-reduced-motion.js b/node_modules/caniuse-lite/data/features/prefers-reduced-motion.js
new file mode 100644
index 0000000..38174bf
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/prefers-reduced-motion.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L H M N O"},C:{"1":"eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB IC JC"},D:{"1":"oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l"},E:{"1":"B C K L H 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E F G A LC 2B MC NC OC PC"},F:{"1":"fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB UC VC WC XC tB EC YC uB"},G:{"1":"hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"F 2B ZC FC aC bC cC dC eC fC gC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"j k 6C 7C 8C 9C AD vB BD CD DD","2":"I 1C 2C 3C 4C 5C 3B"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"GD","2":"FD"}},B:5,C:"prefers-reduced-motion media query"};
diff --git a/node_modules/caniuse-lite/data/features/progress.js b/node_modules/caniuse-lite/data/features/progress.js
new file mode 100644
index 0000000..36fd070
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/progress.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"A B","2":"J E F G GC"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"HC wB I z IC JC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"I z J E"},E:{"1":"J E F G A B C K L H NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z LC 2B MC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i tB EC YC uB","2":"G UC VC WC XC"},G:{"1":"F dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"2B ZC FC aC bC","132":"cC"},H:{"1":"tC"},I:{"1":"D yC zC","2":"wB I uC vC wC xC FC"},J:{"1":"E A"},K:{"1":"B C l tB EC uB","2":"A"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:1,C:"progress element"};
diff --git a/node_modules/caniuse-lite/data/features/promise-finally.js b/node_modules/caniuse-lite/data/features/promise-finally.js
new file mode 100644
index 0000000..db23981
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/promise-finally.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L H M N"},C:{"1":"bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB IC JC"},D:{"1":"eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB"},E:{"1":"C K L H tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E F G A B LC 2B MC NC OC PC 3B"},F:{"1":"TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB UC VC WC XC tB EC YC uB"},G:{"1":"jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"j k 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD","2":"I 1C 2C 3C"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"GD","2":"FD"}},B:6,C:"Promise.prototype.finally"};
diff --git a/node_modules/caniuse-lite/data/features/promises.js b/node_modules/caniuse-lite/data/features/promises.js
new file mode 100644
index 0000000..67f544f
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/promises.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"8":"J E F G A B GC"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","4":"6 7","8":"0 1 2 3 4 5 HC wB I z J E F G A B C K L H M N O j k IC JC"},D:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","4":"BB","8":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB"},E:{"1":"F G A B C K L H OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","8":"I z J E LC 2B MC NC"},F:{"1":"1 2 3 4 5 6 7 8 9 j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","4":"0","8":"G B C H M N O UC VC WC XC tB EC YC uB"},G:{"1":"F dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","8":"2B ZC FC aC bC cC"},H:{"8":"tC"},I:{"1":"D zC","8":"wB I uC vC wC xC FC yC"},J:{"8":"E A"},K:{"1":"l","8":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"8":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:6,C:"Promises"};
diff --git a/node_modules/caniuse-lite/data/features/proximity.js b/node_modules/caniuse-lite/data/features/proximity.js
new file mode 100644
index 0000000..b33aa11
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/proximity.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"2":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"HC wB I z J E F G A B C K L IC JC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"2":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i UC VC WC XC tB EC YC uB"},G:{"2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"2":"wB I D uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"2":"A B C l tB EC uB"},L:{"2":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"2":"0C"},P:{"2":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"2":"4B"},R:{"2":"ED"},S:{"1":"FD GD"}},B:4,C:"Proximity API"};
diff --git a/node_modules/caniuse-lite/data/features/proxy.js b/node_modules/caniuse-lite/data/features/proxy.js
new file mode 100644
index 0000000..08de021
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/proxy.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"HC wB I z J E F G A B C K L H M N IC JC"},D:{"1":"SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"I z J E F G A B C K L H M N O HB IB JB KB LB MB NB OB PB QB RB","66":"0 1 2 3 4 5 6 7 8 9 j k AB BB CB DB EB FB GB"},E:{"1":"A B C K L H 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E F G LC 2B MC NC OC PC"},F:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"4 5 6 7 8 9 G B C AB BB CB DB EB UC VC WC XC tB EC YC uB","66":"0 1 2 3 H M N O j k"},G:{"1":"gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"F 2B ZC FC aC bC cC dC eC fC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD","2":"I"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:6,C:"Proxy object"};
diff --git a/node_modules/caniuse-lite/data/features/publickeypinning.js b/node_modules/caniuse-lite/data/features/publickeypinning.js
new file mode 100644
index 0000000..d7ccdba
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/publickeypinning.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"2":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB","2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC"},D:{"1":"HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"2":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB","2":"0 G B C H M N O hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i UC VC WC XC tB EC YC uB","4":"2","16":"1 3 j k"},G:{"2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"2":"wB I D uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"2":"A B C l tB EC uB"},L:{"2":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"2":"0C"},P:{"1":"I 1C 2C 3C 4C 5C 3B","2":"j k 6C 7C 8C 9C AD vB BD CD DD"},Q:{"2":"4B"},R:{"2":"ED"},S:{"1":"FD","2":"GD"}},B:6,C:"HTTP Public Key Pinning"};
diff --git a/node_modules/caniuse-lite/data/features/push-api.js b/node_modules/caniuse-lite/data/features/push-api.js
new file mode 100644
index 0000000..4d3ed0f
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/push-api.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"N O","2":"C K L H M","257":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB IC JC","257":"NB PB QB RB SB TB UB WB XB YB ZB aB bB xB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","1281":"OB VB cB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB","257":"TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","388":"NB OB PB QB RB SB"},E:{"2":"I z J LC 2B MC NC","514":"E F G A B C K L H OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB","4612":"9B AC BC CC DC SC TC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB UC VC WC XC tB EC YC uB","16":"GB HB IB JB KB","257":"LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i"},G:{"2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC","8196":"CC DC"},H:{"2":"tC"},I:{"2":"wB I D uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"2":"ED"},S:{"257":"FD GD"}},B:5,C:"Push API"};
diff --git a/node_modules/caniuse-lite/data/features/queryselector.js b/node_modules/caniuse-lite/data/features/queryselector.js
new file mode 100644
index 0000000..807af31
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/queryselector.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"G A B","2":"GC","8":"J E","132":"F"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC","8":"HC wB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"1":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i VC WC XC tB EC YC uB","8":"G UC"},G:{"1":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"1":"tC"},I:{"1":"wB I D uC vC wC xC FC yC zC"},J:{"1":"E A"},K:{"1":"A B C l tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:1,C:"querySelector/querySelectorAll"};
diff --git a/node_modules/caniuse-lite/data/features/readonly-attr.js b/node_modules/caniuse-lite/data/features/readonly-attr.js
new file mode 100644
index 0000000..2e5dfc8
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/readonly-attr.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"J E F G A B","16":"GC"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","16":"HC wB IC JC"},D:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","16":"0 1 2 3 4 I z J E F G A B C K L H M N O j k"},E:{"1":"J E F G A B C K L H MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","16":"I z LC 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","16":"G UC","132":"B C VC WC XC tB EC YC uB"},G:{"1":"F cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","16":"2B ZC FC aC bC"},H:{"1":"tC"},I:{"1":"wB I D wC xC FC yC zC","16":"uC vC"},J:{"1":"E A"},K:{"1":"l","132":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"257":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:1,C:"readonly attribute of input and textarea elements"};
diff --git a/node_modules/caniuse-lite/data/features/referrer-policy.js b/node_modules/caniuse-lite/data/features/referrer-policy.js
new file mode 100644
index 0000000..012c642
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/referrer-policy.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A GC","132":"B"},B:{"1":"P Q R S","132":"C K L H M N O","513":"T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V","2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB IC JC","513":"W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B"},D:{"1":"yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T","2":"0 I z J E F G A B C K L H M N O j","260":"1 2 3 4 5 6 7 8 9 k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB","513":"U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"1":"C tB uB","2":"I z J E LC 2B MC NC","132":"F G A B OC PC 3B","1025":"K L H 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB","2":"G B C UC VC WC XC tB EC YC uB","513":"l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i"},G:{"1":"kC lC mC nC","2":"2B ZC FC aC bC cC","132":"F dC eC fC gC hC iC jC","1025":"oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"2":"A B C tB EC uB","513":"l"},L:{"513":"D"},M:{"513":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD","2":"I"},Q:{"1":"4B"},R:{"513":"ED"},S:{"1":"FD GD"}},B:4,C:"Referrer Policy"};
diff --git a/node_modules/caniuse-lite/data/features/registerprotocolhandler.js b/node_modules/caniuse-lite/data/features/registerprotocolhandler.js
new file mode 100644
index 0000000..8519eb9
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/registerprotocolhandler.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"2":"C K L H M N O","129":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC","2":"HC"},D:{"2":"I z J E F G A B C","129":"0 1 2 3 4 5 6 7 8 9 K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"2":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"2":"G B UC VC WC XC tB EC","129":"0 1 2 3 4 5 6 7 8 9 C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i YC uB"},G:{"2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"2":"wB I D uC vC wC xC FC yC zC"},J:{"2":"E","129":"A"},K:{"2":"A B C l tB EC uB"},L:{"2":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"2":"0C"},P:{"2":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"2":"4B"},R:{"2":"ED"},S:{"2":"FD GD"}},B:1,C:"Custom protocol handling"};
diff --git a/node_modules/caniuse-lite/data/features/rel-noopener.js b/node_modules/caniuse-lite/data/features/rel-noopener.js
new file mode 100644
index 0000000..378bf5c
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/rel-noopener.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L H M N O"},C:{"1":"VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB IC JC"},D:{"1":"SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB"},E:{"1":"B C K L H 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E F G A LC 2B MC NC OC PC"},F:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB UC VC WC XC tB EC YC uB"},G:{"1":"hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"F 2B ZC FC aC bC cC dC eC fC gC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD","2":"I"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"GD","2":"FD"}},B:1,C:"rel=noopener"};
diff --git a/node_modules/caniuse-lite/data/features/rel-noreferrer.js b/node_modules/caniuse-lite/data/features/rel-noreferrer.js
new file mode 100644
index 0000000..ecf8bec
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/rel-noreferrer.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A GC","132":"B"},B:{"1":"K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","16":"C"},C:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB IC JC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","16":"I z J E F G A B C K L H"},E:{"1":"z J E F G A B C K L H MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I LC 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"G B C UC VC WC XC tB EC YC uB"},G:{"1":"F ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"2B"},H:{"2":"tC"},I:{"1":"wB I D wC xC FC yC zC","16":"uC vC"},J:{"1":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:1,C:"Link type \"noreferrer\""};
diff --git a/node_modules/caniuse-lite/data/features/rellist.js b/node_modules/caniuse-lite/data/features/rellist.js
new file mode 100644
index 0000000..655c951
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/rellist.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L H M","132":"N"},C:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 4 5 6 7 8 HC wB I z J E F G A B C K L H M N O j k IC JC"},D:{"1":"gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB","132":"TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB"},E:{"1":"G A B C K L H PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E F LC 2B MC NC OC"},F:{"1":"VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB UC VC WC XC tB EC YC uB","132":"GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB"},G:{"1":"eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"F 2B ZC FC aC bC cC dC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"j k 5C 3B 6C 7C 8C 9C AD vB BD CD DD","2":"I","132":"1C 2C 3C 4C"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:1,C:"relList (DOMTokenList)"};
diff --git a/node_modules/caniuse-lite/data/features/rem.js b/node_modules/caniuse-lite/data/features/rem.js
new file mode 100644
index 0000000..7137617
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/rem.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"B","2":"J E F GC","132":"G A"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B JC","2":"HC wB IC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"1":"z J E F G A B C K L H MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I LC 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i YC uB","2":"G B UC VC WC XC tB EC"},G:{"1":"F ZC FC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"2B","260":"aC"},H:{"1":"tC"},I:{"1":"wB I D uC vC wC xC FC yC zC"},J:{"1":"E A"},K:{"1":"C l uB","2":"A B tB EC"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:4,C:"rem (root em) units"};
diff --git a/node_modules/caniuse-lite/data/features/requestanimationframe.js b/node_modules/caniuse-lite/data/features/requestanimationframe.js
new file mode 100644
index 0000000..c79dc09
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/requestanimationframe.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"A B","2":"J E F G GC"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"HC wB IC JC","33":"0 1 B C K L H M N O j k","164":"I z J E F G A"},D:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"I z J E F G","33":"1 2","164":"0 O j k","420":"A B C K L H M N"},E:{"1":"E F G A B C K L H NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z LC 2B MC","33":"J"},F:{"1":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"G B C UC VC WC XC tB EC YC uB"},G:{"1":"F cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"2B ZC FC aC","33":"bC"},H:{"2":"tC"},I:{"1":"D yC zC","2":"wB I uC vC wC xC FC"},J:{"1":"A","2":"E"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:1,C:"requestAnimationFrame"};
diff --git a/node_modules/caniuse-lite/data/features/requestidlecallback.js b/node_modules/caniuse-lite/data/features/requestidlecallback.js
new file mode 100644
index 0000000..998452e
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/requestidlecallback.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L H M N O"},C:{"1":"YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB IC JC","194":"WB XB"},D:{"1":"QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB"},E:{"2":"I z J E F G A B C K LC 2B MC NC OC PC 3B tB uB","322":"L H 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB UC VC WC XC tB EC YC uB"},G:{"2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC","322":"pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD","2":"I"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"GD","2":"FD"}},B:5,C:"requestIdleCallback"};
diff --git a/node_modules/caniuse-lite/data/features/resizeobserver.js b/node_modules/caniuse-lite/data/features/resizeobserver.js
new file mode 100644
index 0000000..e290b6a
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/resizeobserver.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L H M N O"},C:{"1":"kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB IC JC"},D:{"1":"fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB","194":"XB YB ZB aB bB xB cB yB dB eB"},E:{"1":"L H 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E F G A B C LC 2B MC NC OC PC 3B tB uB","66":"K"},F:{"1":"VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB UC VC WC XC tB EC YC uB","194":"KB LB MB NB OB PB QB RB SB TB UB"},G:{"1":"pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"j k 5C 3B 6C 7C 8C 9C AD vB BD CD DD","2":"I 1C 2C 3C 4C"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"GD","2":"FD"}},B:5,C:"Resize Observer"};
diff --git a/node_modules/caniuse-lite/data/features/resource-timing.js b/node_modules/caniuse-lite/data/features/resource-timing.js
new file mode 100644
index 0000000..25b7fa8
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/resource-timing.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"A B","2":"J E F G GC"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k IC JC","194":"AB BB CB DB"},D:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 I z J E F G A B C K L H M N O j k"},E:{"1":"C K L H tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E F G A LC 2B MC NC OC PC 3B","260":"B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"G B C UC VC WC XC tB EC YC uB"},G:{"1":"iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"F 2B ZC FC aC bC cC dC eC fC gC hC"},H:{"2":"tC"},I:{"1":"D yC zC","2":"wB I uC vC wC xC FC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:4,C:"Resource Timing"};
diff --git a/node_modules/caniuse-lite/data/features/rest-parameters.js b/node_modules/caniuse-lite/data/features/rest-parameters.js
new file mode 100644
index 0000000..475a419
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/rest-parameters.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"HC wB I z J E F G A B C K L IC JC"},D:{"1":"QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB","194":"NB OB PB"},E:{"1":"A B C K L H 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E F G LC 2B MC NC OC PC"},F:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k UC VC WC XC tB EC YC uB","194":"AB BB CB"},G:{"1":"gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"F 2B ZC FC aC bC cC dC eC fC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD","2":"I"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:6,C:"Rest parameters"};
diff --git a/node_modules/caniuse-lite/data/features/rtcpeerconnection.js b/node_modules/caniuse-lite/data/features/rtcpeerconnection.js
new file mode 100644
index 0000000..cc3d5c2
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/rtcpeerconnection.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L","516":"H M N O"},C:{"1":"NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 HC wB I z J E F G A B C K L H M N O j k IC JC","33":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB"},D:{"1":"ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 I z J E F G A B C K L H M N O j k","33":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB"},E:{"1":"B C K L H tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E F G A LC 2B MC NC OC PC 3B"},F:{"1":"MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"G B C H M N UC VC WC XC tB EC YC uB","33":"0 1 2 3 4 5 6 7 8 9 O j k AB BB CB DB EB FB GB HB IB JB KB LB"},G:{"1":"iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"F 2B ZC FC aC bC cC dC eC fC gC hC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E","130":"A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"33":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:5,C:"WebRTC Peer-to-peer connections"};
diff --git a/node_modules/caniuse-lite/data/features/ruby.js b/node_modules/caniuse-lite/data/features/ruby.js
new file mode 100644
index 0000000..78f04cd
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/ruby.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"4":"J E F G A B GC"},B:{"4":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","8":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB IC JC"},D:{"4":"0 1 2 3 4 5 6 7 8 9 z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","8":"I"},E:{"4":"z J E F G A B C K L H MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","8":"I LC 2B"},F:{"4":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","8":"G B C UC VC WC XC tB EC YC uB"},G:{"4":"F aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","8":"2B ZC FC"},H:{"8":"tC"},I:{"4":"wB I D xC FC yC zC","8":"uC vC wC"},J:{"4":"A","8":"E"},K:{"4":"l","8":"A B C tB EC uB"},L:{"4":"D"},M:{"1":"D"},N:{"4":"A B"},O:{"4":"0C"},P:{"4":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"4":"4B"},R:{"4":"ED"},S:{"1":"FD GD"}},B:1,C:"Ruby annotation"};
diff --git a/node_modules/caniuse-lite/data/features/run-in.js b/node_modules/caniuse-lite/data/features/run-in.js
new file mode 100644
index 0000000..56fc5de
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/run-in.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"F G A B","2":"J E GC"},B:{"2":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB","2":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"1":"z J MC","2":"E F G A B C K L H OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","16":"NC","129":"I LC 2B"},F:{"1":"G B C H M N O UC VC WC XC tB EC YC uB","2":"0 1 2 3 4 5 6 7 8 9 j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i"},G:{"1":"ZC FC aC bC cC","2":"F dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","129":"2B"},H:{"1":"tC"},I:{"1":"wB I uC vC wC xC FC yC","2":"D zC"},J:{"1":"E A"},K:{"1":"A B C tB EC uB","2":"l"},L:{"2":"D"},M:{"2":"D"},N:{"1":"A B"},O:{"2":"0C"},P:{"2":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"2":"4B"},R:{"2":"ED"},S:{"2":"FD GD"}},B:4,C:"display: run-in"};
diff --git a/node_modules/caniuse-lite/data/features/same-site-cookie-attribute.js b/node_modules/caniuse-lite/data/features/same-site-cookie-attribute.js
new file mode 100644
index 0000000..14a9890
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/same-site-cookie-attribute.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A GC","388":"B"},B:{"1":"O P Q R S T U","2":"C K L H","129":"M N","513":"V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB IC JC"},D:{"1":"UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB","513":"Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"1":"H RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E F G A B LC 2B MC NC OC PC 3B tB","2052":"L QC","3076":"C K uB 4B"},F:{"1":"IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB UC VC WC XC tB EC YC uB","513":"mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i"},G:{"1":"mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC","2052":"kC lC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"2":"A B C tB EC uB","513":"l"},L:{"513":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"2":"0C"},P:{"1":"j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD","2":"I"},Q:{"16":"4B"},R:{"513":"ED"},S:{"1":"GD","2":"FD"}},B:6,C:"'SameSite' cookie attribute"};
diff --git a/node_modules/caniuse-lite/data/features/screen-orientation.js b/node_modules/caniuse-lite/data/features/screen-orientation.js
new file mode 100644
index 0000000..23fb253
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/screen-orientation.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A GC","164":"B"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","36":"C K L H M N O"},C:{"1":"NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"HC wB I z J E F G A B C K L H M N IC JC","36":"0 1 2 3 4 5 6 7 8 9 O j k AB BB CB DB EB FB GB HB IB JB KB LB MB"},D:{"1":"HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB"},E:{"1":"CC DC SC TC","2":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC"},F:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 G B C H M N O j k UC VC WC XC tB EC YC uB"},G:{"1":"CC DC","2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC"},H:{"2":"tC"},I:{"2":"wB I D uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A","36":"B"},O:{"1":"0C"},P:{"1":"j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD","16":"I"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:5,C:"Screen Orientation"};
diff --git a/node_modules/caniuse-lite/data/features/script-async.js b/node_modules/caniuse-lite/data/features/script-async.js
new file mode 100644
index 0000000..791294c
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/script-async.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"A B","2":"J E F G GC"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B JC","2":"HC wB IC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"I z J E"},E:{"1":"J E F G A B C K L H MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I LC 2B","132":"z"},F:{"1":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"G B C UC VC WC XC tB EC YC uB"},G:{"1":"F aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"2B ZC FC"},H:{"2":"tC"},I:{"1":"wB I D xC FC yC zC","2":"uC vC wC"},J:{"1":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:1,C:"async attribute for external scripts"};
diff --git a/node_modules/caniuse-lite/data/features/script-defer.js b/node_modules/caniuse-lite/data/features/script-defer.js
new file mode 100644
index 0000000..847b6c0
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/script-defer.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"A B","132":"J E F G GC"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"HC wB","257":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k IC JC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"I z J E"},E:{"1":"z J E F G A B C K L H MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I LC 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"G B C UC VC WC XC tB EC YC uB"},G:{"1":"F aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"2B ZC FC"},H:{"2":"tC"},I:{"1":"wB I D xC FC yC zC","2":"uC vC wC"},J:{"1":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:1,C:"defer attribute for external scripts"};
diff --git a/node_modules/caniuse-lite/data/features/scrollintoview.js b/node_modules/caniuse-lite/data/features/scrollintoview.js
new file mode 100644
index 0000000..9731895
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/scrollintoview.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E GC","132":"F G A B"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","132":"C K L H M N O"},C:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","132":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB IC JC"},D:{"1":"yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","132":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB"},E:{"1":"vB 9B AC BC CC DC SC TC","2":"I z LC 2B","132":"J E F G A B C K L H MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B"},F:{"1":"RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"G UC VC WC XC","16":"B tB EC","132":"0 1 2 3 4 5 6 7 8 9 C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB YC uB"},G:{"1":"vB 9B AC BC CC DC","16":"2B ZC FC","132":"F aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B"},H:{"2":"tC"},I:{"1":"D","16":"uC vC","132":"wB I wC xC FC yC zC"},J:{"132":"E A"},K:{"1":"l","132":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"132":"A B"},O:{"1":"0C"},P:{"132":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:5,C:"scrollIntoView"};
diff --git a/node_modules/caniuse-lite/data/features/scrollintoviewifneeded.js b/node_modules/caniuse-lite/data/features/scrollintoviewifneeded.js
new file mode 100644
index 0000000..4cf3a16
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/scrollintoviewifneeded.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L H M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","16":"I z J E F G A B C K L"},E:{"1":"J E F G A B C K L H MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","16":"I z LC 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"G B C UC VC WC XC tB EC YC uB"},G:{"1":"F aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","16":"2B ZC FC"},H:{"2":"tC"},I:{"1":"wB I D wC xC FC yC zC","16":"uC vC"},J:{"1":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"2":"FD GD"}},B:7,C:"Element.scrollIntoViewIfNeeded()"};
diff --git a/node_modules/caniuse-lite/data/features/sdch.js b/node_modules/caniuse-lite/data/features/sdch.js
new file mode 100644
index 0000000..0023314
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/sdch.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"2":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB","2":"xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"2":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB","2":"G B C l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i UC VC WC XC tB EC YC uB"},G:{"2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"2":"A B C l tB EC uB"},L:{"2":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"2":"0C"},P:{"1":"j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD","2":"I"},Q:{"2":"4B"},R:{"2":"ED"},S:{"2":"FD GD"}},B:6,C:"SDCH Accept-Encoding/Content-Encoding"};
diff --git a/node_modules/caniuse-lite/data/features/selection-api.js b/node_modules/caniuse-lite/data/features/selection-api.js
new file mode 100644
index 0000000..5a811eb
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/selection-api.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"G A B","16":"GC","260":"J E F"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","132":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB IC JC","2180":"MB NB OB PB QB RB SB TB UB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","16":"I z J E F G A B C K L"},E:{"1":"J E F G A B C K L H MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","16":"I z LC 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","132":"G B C UC VC WC XC tB EC YC uB"},G:{"16":"FC","132":"2B ZC","516":"F aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"1":"D yC zC","16":"wB I uC vC wC xC","1025":"FC"},J:{"1":"A","16":"E"},K:{"1":"l","16":"A B C tB EC","132":"uB"},L:{"1":"D"},M:{"1":"D"},N:{"1":"B","16":"A"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"GD","2180":"FD"}},B:5,C:"Selection API"};
diff --git a/node_modules/caniuse-lite/data/features/server-timing.js b/node_modules/caniuse-lite/data/features/server-timing.js
new file mode 100644
index 0000000..6130554
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/server-timing.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L H M N O"},C:{"1":"yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB IC JC"},D:{"1":"gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB","196":"cB yB dB eB","324":"fB"},E:{"2":"I z J E F G A B C LC 2B MC NC OC PC 3B tB","516":"K L H uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"1":"VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB UC VC WC XC tB EC YC uB"},G:{"2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"2":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"GD","2":"FD"}},B:5,C:"Server Timing"};
diff --git a/node_modules/caniuse-lite/data/features/serviceworkers.js b/node_modules/caniuse-lite/data/features/serviceworkers.js
new file mode 100644
index 0000000..2bc76cf
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/serviceworkers.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L","322":"H M"},C:{"1":"NB PB QB RB SB TB UB WB XB YB ZB aB bB xB yB dB eB fB gB hB iB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB IC JC","194":"CB DB EB FB GB HB IB JB KB LB MB","513":"OB VB cB jB"},D:{"1":"OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB","4":"JB KB LB MB NB"},E:{"1":"C K L H tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E F G A B LC 2B MC NC OC PC 3B"},F:{"1":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 G B C H M N O j k UC VC WC XC tB EC YC uB","4":"6 7 8 9 AB"},G:{"1":"jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC"},H:{"2":"tC"},I:{"2":"wB I uC vC wC xC FC yC zC","4":"D"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"GD","2":"FD"}},B:4,C:"Service Workers"};
diff --git a/node_modules/caniuse-lite/data/features/setimmediate.js b/node_modules/caniuse-lite/data/features/setimmediate.js
new file mode 100644
index 0000000..8aeb3c7
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/setimmediate.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"A B","2":"J E F G GC"},B:{"1":"C K L H M N O","2":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"2":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i UC VC WC XC tB EC YC uB"},G:{"2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"2":"wB I D uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"2":"A B C l tB EC uB"},L:{"2":"D"},M:{"2":"D"},N:{"1":"A B"},O:{"2":"0C"},P:{"2":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"2":"4B"},R:{"2":"ED"},S:{"2":"FD GD"}},B:7,C:"Efficient Script Yielding: setImmediate()"};
diff --git a/node_modules/caniuse-lite/data/features/shadowdom.js b/node_modules/caniuse-lite/data/features/shadowdom.js
new file mode 100644
index 0000000..8c8a3d9
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/shadowdom.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"P","2":"C K L H M N O Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"2":"0 1 2 3 4 5 6 7 HC wB I z J E F G A B C K L H M N O j k yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC","66":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB"},D:{"1":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P","2":"0 1 2 3 I z J E F G A B C K L H M N O j k Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","33":"4 5 6 7 8 9 AB BB CB DB"},E:{"2":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB","2":"G B C iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i UC VC WC XC tB EC YC uB","33":"0 H M N O j k"},G:{"2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"2":"wB I D uC vC wC xC FC","33":"yC zC"},J:{"2":"E A"},K:{"2":"A B C l tB EC uB"},L:{"2":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"1C 2C 3C 4C 5C 3B 6C 7C","2":"j k 8C 9C AD vB BD CD DD","33":"I"},Q:{"1":"4B"},R:{"2":"ED"},S:{"1":"FD","2":"GD"}},B:7,C:"Shadow DOM (deprecated V0 spec)"};
diff --git a/node_modules/caniuse-lite/data/features/shadowdomv1.js b/node_modules/caniuse-lite/data/features/shadowdomv1.js
new file mode 100644
index 0000000..f095180
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/shadowdomv1.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L H M N O"},C:{"1":"eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB IC JC","322":"bB","578":"xB cB yB dB"},D:{"1":"WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB"},E:{"1":"A B C K L H 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E F G LC 2B MC NC OC PC"},F:{"1":"JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB UC VC WC XC tB EC YC uB"},G:{"1":"iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"F 2B ZC FC aC bC cC dC eC fC","132":"gC hC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"j k 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD","2":"I","4":"1C"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"GD","2":"FD"}},B:5,C:"Shadow DOM (V1)"};
diff --git a/node_modules/caniuse-lite/data/features/sharedarraybuffer.js b/node_modules/caniuse-lite/data/features/sharedarraybuffer.js
new file mode 100644
index 0000000..9b59055
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/sharedarraybuffer.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"P Q R S T U V W X Y Z","2":"C K L H","194":"M N O","513":"a b c d e f g h i m n o p q r s t u v w x y D"},C:{"2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB IC JC","194":"aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l","450":"oB pB qB rB sB","513":"P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B"},D:{"1":"jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB","194":"cB yB dB eB fB gB hB iB","513":"a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"2":"I z J E F G A LC 2B MC NC OC PC","194":"B C K L H 3B tB uB 4B QC RC","513":"5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"1":"fB gB hB iB jB kB lB mB nB l oB pB qB rB","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB UC VC WC XC tB EC YC uB","194":"QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB","513":"sB P Q R zB S T U V W X Y Z a b c d e f g h i"},G:{"2":"F 2B ZC FC aC bC cC dC eC fC gC","194":"hC iC jC kC lC mC nC oC pC qC rC sC","513":"5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"2":"wB I D uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"2":"A B C tB EC uB","513":"l"},L:{"513":"D"},M:{"513":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"2":"I 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C","513":"j k AD vB BD CD DD"},Q:{"2":"4B"},R:{"513":"ED"},S:{"2":"FD","513":"GD"}},B:6,C:"Shared Array Buffer"};
diff --git a/node_modules/caniuse-lite/data/features/sharedworkers.js b/node_modules/caniuse-lite/data/features/sharedworkers.js
new file mode 100644
index 0000000..8395667
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/sharedworkers.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L H M N O"},C:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 4 5 6 7 HC wB I z J E F G A B C K L H M N O j k IC JC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"1":"z J MC vB 9B AC BC CC DC SC TC","2":"I E F G A B C K L H LC 2B NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i XC tB EC YC uB","2":"G UC VC WC"},G:{"1":"aC bC vB 9B AC BC CC DC","2":"F 2B ZC FC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B"},H:{"2":"tC"},I:{"2":"wB I D uC vC wC xC FC yC zC"},J:{"1":"E A"},K:{"1":"B C tB EC uB","2":"l","16":"A"},L:{"2":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"2":"0C"},P:{"1":"I","2":"j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"2":"4B"},R:{"2":"ED"},S:{"1":"FD GD"}},B:1,C:"Shared Web Workers"};
diff --git a/node_modules/caniuse-lite/data/features/sni.js b/node_modules/caniuse-lite/data/features/sni.js
new file mode 100644
index 0000000..de432cb
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/sni.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"G A B","2":"J GC","132":"E F"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"I z"},E:{"1":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i UC VC WC XC tB EC YC uB"},G:{"1":"F ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"2B"},H:{"1":"tC"},I:{"1":"wB I D xC FC yC zC","2":"uC vC wC"},J:{"1":"A","2":"E"},K:{"1":"A B C l tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:6,C:"Server Name Indication"};
diff --git a/node_modules/caniuse-lite/data/features/spdy.js b/node_modules/caniuse-lite/data/features/spdy.js
new file mode 100644
index 0000000..e329823
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/spdy.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"B","2":"J E F G A GC"},B:{"2":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB","2":"HC wB I z J E F G A B C UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB","2":"UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"1":"F G A B C PC 3B tB","2":"I z J E LC 2B MC NC OC","129":"K L H uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB LB NB uB","2":"G B C JB KB MB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i UC VC WC XC tB EC YC"},G:{"1":"F dC eC fC gC hC iC jC kC","2":"2B ZC FC aC bC cC","257":"lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"1":"wB I xC FC yC zC","2":"D uC vC wC"},J:{"2":"E A"},K:{"1":"uB","2":"A B C l tB EC"},L:{"2":"D"},M:{"2":"D"},N:{"1":"B","2":"A"},O:{"2":"0C"},P:{"1":"I","2":"j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"2":"4B"},R:{"2":"ED"},S:{"1":"FD","2":"GD"}},B:7,C:"SPDY protocol"};
diff --git a/node_modules/caniuse-lite/data/features/speech-recognition.js b/node_modules/caniuse-lite/data/features/speech-recognition.js
new file mode 100644
index 0000000..63e6e0c
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/speech-recognition.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"2":"C K L H M N O","1026":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"2":"0 HC wB I z J E F G A B C K L H M N O j k IC JC","322":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B"},D:{"2":"0 1 2 3 I z J E F G A B C K L H M N O j k","164":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"2":"I z J E F G A B C K L LC 2B MC NC OC PC 3B tB uB 4B","2084":"H QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"2":"0 1 2 3 4 5 G B C H M N O j k UC VC WC XC tB EC YC uB","1026":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i"},G:{"2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC","2084":"rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"2":"wB I D uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"2":"A B C tB EC uB","164":"l"},L:{"164":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"164":"0C"},P:{"164":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"164":"4B"},R:{"164":"ED"},S:{"322":"FD GD"}},B:7,C:"Speech Recognition API"};
diff --git a/node_modules/caniuse-lite/data/features/speech-synthesis.js b/node_modules/caniuse-lite/data/features/speech-synthesis.js
new file mode 100644
index 0000000..809050f
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/speech-synthesis.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"L H M N O","2":"C K","257":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k IC JC","194":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB"},D:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB","257":"YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"1":"E F G A B C K L H OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J LC 2B MC NC"},F:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB","2":"0 1 2 3 4 5 G B C H M N O j k UC VC WC XC tB EC YC uB","257":"fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i"},G:{"1":"F cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"2B ZC FC aC bC"},H:{"2":"tC"},I:{"2":"wB I D uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"2":"A B C l tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"2":"0C"},P:{"1":"j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD","2":"I"},Q:{"1":"4B"},R:{"2":"ED"},S:{"1":"FD GD"}},B:7,C:"Speech Synthesis API"};
diff --git a/node_modules/caniuse-lite/data/features/spellcheck-attribute.js b/node_modules/caniuse-lite/data/features/spellcheck-attribute.js
new file mode 100644
index 0000000..b473c8c
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/spellcheck-attribute.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"A B","2":"J E F G GC"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"I z J E F"},E:{"1":"J E F G A B C K L H MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z LC 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i WC XC tB EC YC uB","2":"G UC VC"},G:{"4":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"4":"tC"},I:{"4":"wB I D uC vC wC xC FC yC zC"},J:{"1":"A","4":"E"},K:{"4":"A B C l tB EC uB"},L:{"4":"D"},M:{"4":"D"},N:{"4":"A B"},O:{"4":"0C"},P:{"4":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"4":"ED"},S:{"2":"FD GD"}},B:1,C:"Spellcheck attribute"};
diff --git a/node_modules/caniuse-lite/data/features/sql-storage.js b/node_modules/caniuse-lite/data/features/sql-storage.js
new file mode 100644
index 0000000..b12e913
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/sql-storage.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q","2":"C K L H M N O","129":"r s t u v w x y D"},C:{"2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q","129":"r s t u v w x y D 0B 1B KC"},E:{"1":"I z J E F G A B C LC 2B MC NC OC PC 3B tB uB","2":"K L H 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z WC XC tB EC YC uB","2":"G UC VC","129":"a b c d e f g h i"},G:{"1":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC","2":"mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"1":"wB I uC vC wC xC FC yC zC","129":"D"},J:{"1":"E A"},K:{"1":"B C tB EC uB","2":"A","129":"l"},L:{"129":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"2":"FD GD"}},B:7,C:"Web SQL Database"};
diff --git a/node_modules/caniuse-lite/data/features/srcset.js b/node_modules/caniuse-lite/data/features/srcset.js
new file mode 100644
index 0000000..60f34c1
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/srcset.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","260":"C","514":"K L H"},C:{"1":"HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB IC JC","194":"BB CB DB EB FB GB"},D:{"1":"HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB","260":"DB EB FB GB"},E:{"1":"G A B C K L H PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E LC 2B MC NC","260":"F OC"},F:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 G B C H M N O j UC VC WC XC tB EC YC uB","260":"1 2 3 k"},G:{"1":"eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"2B ZC FC aC bC cC","260":"F dC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:1,C:"Srcset and sizes attributes"};
diff --git a/node_modules/caniuse-lite/data/features/stream.js b/node_modules/caniuse-lite/data/features/stream.js
new file mode 100644
index 0000000..013f31e
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/stream.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"HC wB I z J E F G A B C K L H M IC JC","129":"FB GB HB IB JB KB","420":"0 1 2 3 4 5 6 7 8 9 N O j k AB BB CB DB EB"},D:{"1":"WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 I z J E F G A B C K L H M N O j","420":"1 2 3 4 5 6 7 8 9 k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB"},E:{"1":"B C K L H tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E F G A LC 2B MC NC OC PC 3B"},F:{"1":"JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"G B H M N UC VC WC XC tB EC YC","420":"0 1 2 3 4 5 6 7 8 9 C O j k AB BB CB DB EB FB GB HB IB uB"},G:{"2":"F 2B ZC FC aC bC cC dC eC fC gC hC","513":"pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","1537":"iC jC kC lC mC nC oC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E","420":"A"},K:{"1":"l","2":"A B tB EC","420":"C uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"j k 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD","420":"I 1C"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"GD","2":"FD"}},B:4,C:"getUserMedia/Stream API"};
diff --git a/node_modules/caniuse-lite/data/features/streams.js b/node_modules/caniuse-lite/data/features/streams.js
new file mode 100644
index 0000000..0f8dbd7
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/streams.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A GC","130":"B"},B:{"1":"Y Z a b c d e f g h i m n o p q r s t u v w x y D","16":"C K","260":"L H","1028":"P Q R S T U V W X","5124":"M N O"},C:{"1":"o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB IC JC","5124":"m n","7172":"gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","7746":"aB bB xB cB yB dB eB fB"},D:{"1":"Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB","260":"VB WB XB YB ZB aB bB","1028":"xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X"},E:{"2":"I z J E F G LC 2B MC NC OC PC","1028":"H QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","3076":"A B C K L 3B tB uB 4B"},F:{"1":"qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB UC VC WC XC tB EC YC uB","260":"IB JB KB LB MB NB OB","1028":"PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB"},G:{"2":"F 2B ZC FC aC bC cC dC eC fC","16":"gC","1028":"hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1028":"0C"},P:{"1":"j k AD vB BD CD DD","2":"I 1C 2C","1028":"3C 4C 5C 3B 6C 7C 8C 9C"},Q:{"1028":"4B"},R:{"1":"ED"},S:{"2":"FD GD"}},B:1,C:"Streams"};
diff --git a/node_modules/caniuse-lite/data/features/stricttransportsecurity.js b/node_modules/caniuse-lite/data/features/stricttransportsecurity.js
new file mode 100644
index 0000000..9746eb7
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/stricttransportsecurity.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A GC","129":"B"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"HC wB IC JC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"1":"E F G A B C K L H OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J LC 2B MC NC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i uB","2":"G B UC VC WC XC tB EC YC"},G:{"1":"F cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"2B ZC FC aC bC"},H:{"2":"tC"},I:{"1":"D yC zC","2":"wB I uC vC wC xC FC"},J:{"1":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:6,C:"Strict Transport Security"};
diff --git a/node_modules/caniuse-lite/data/features/style-scoped.js b/node_modules/caniuse-lite/data/features/style-scoped.js
new file mode 100644
index 0000000..9cd4cf9
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/style-scoped.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"2":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"1 2 3 4 5 6 7 8 9 k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"0 HC wB I z J E F G A B C K L H M N O j yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC","322":"YB ZB aB bB xB cB"},D:{"2":"0 I z J E F G A B C K L H M N O GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","194":"1 2 3 4 5 6 7 8 9 j k AB BB CB DB EB FB"},E:{"2":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i UC VC WC XC tB EC YC uB"},G:{"2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"2":"wB I D uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"2":"A B C l tB EC uB"},L:{"2":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"2":"0C"},P:{"2":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"2":"4B"},R:{"2":"ED"},S:{"1":"FD","2":"GD"}},B:7,C:"Scoped CSS"};
diff --git a/node_modules/caniuse-lite/data/features/subresource-bundling.js b/node_modules/caniuse-lite/data/features/subresource-bundling.js
new file mode 100644
index 0000000..569421d
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/subresource-bundling.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"q r s t u v w x y D","2":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p"},C:{"2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC"},D:{"1":"q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p"},E:{"2":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"1":"Z a b c d e f g h i","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y UC VC WC XC tB EC YC uB"},G:{"2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"2":"0C"},P:{"2":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"2":"4B"},R:{"2":"ED"},S:{"2":"FD GD"}},B:7,C:"Subresource Loading with Web Bundles"};
diff --git a/node_modules/caniuse-lite/data/features/subresource-integrity.js b/node_modules/caniuse-lite/data/features/subresource-integrity.js
new file mode 100644
index 0000000..0b1809b
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/subresource-integrity.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L H M"},C:{"1":"MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB IC JC"},D:{"1":"OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB"},E:{"1":"B C K L H tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E F G A LC 2B MC NC OC PC 3B"},F:{"1":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB UC VC WC XC tB EC YC uB"},G:{"1":"jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"F 2B ZC FC aC bC cC dC eC fC gC hC","194":"iC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD","2":"I"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:2,C:"Subresource Integrity"};
diff --git a/node_modules/caniuse-lite/data/features/svg-css.js b/node_modules/caniuse-lite/data/features/svg-css.js
new file mode 100644
index 0000000..89ca52e
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/svg-css.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"G A B","2":"J E F GC"},B:{"1":"M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","516":"C K L H"},C:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"HC wB IC JC","260":"0 1 2 I z J E F G A B C K L H M N O j k"},D:{"1":"0 1 2 3 4 5 6 7 8 9 z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","4":"I"},E:{"1":"z J E F G A B C K L H MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"LC","132":"I 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i UC VC WC XC tB EC YC uB","2":"G"},G:{"1":"F FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","132":"2B ZC"},H:{"260":"tC"},I:{"1":"wB I D xC FC yC zC","2":"uC vC wC"},J:{"1":"E A"},K:{"1":"l","260":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:4,C:"SVG in CSS backgrounds"};
diff --git a/node_modules/caniuse-lite/data/features/svg-filters.js b/node_modules/caniuse-lite/data/features/svg-filters.js
new file mode 100644
index 0000000..da25cdb
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/svg-filters.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"A B","2":"J E F G GC"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC","2":"HC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"I","4":"z J E"},E:{"1":"J E F G A B C K L H NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z LC 2B MC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i UC VC WC XC tB EC YC uB"},G:{"1":"F bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"2B ZC FC aC"},H:{"1":"tC"},I:{"1":"D yC zC","2":"wB I uC vC wC xC FC"},J:{"1":"A","2":"E"},K:{"1":"A B C l tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:2,C:"SVG filters"};
diff --git a/node_modules/caniuse-lite/data/features/svg-fonts.js b/node_modules/caniuse-lite/data/features/svg-fonts.js
new file mode 100644
index 0000000..584e775
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/svg-fonts.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"G A B GC","8":"J E F"},B:{"2":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB","2":"UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","130":"HB IB JB KB LB MB NB OB PB QB RB SB TB"},E:{"1":"I z J E F G A B C K L H 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"LC"},F:{"1":"0 1 2 3 G B C H M N O j k UC VC WC XC tB EC YC uB","2":"GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","130":"4 5 6 7 8 9 AB BB CB DB EB FB"},G:{"1":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"258":"tC"},I:{"1":"wB I xC FC yC zC","2":"D uC vC wC"},J:{"1":"E A"},K:{"1":"A B C tB EC uB","2":"l"},L:{"130":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"2":"0C"},P:{"1":"I","130":"j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"2":"4B"},R:{"130":"ED"},S:{"2":"FD GD"}},B:2,C:"SVG fonts"};
diff --git a/node_modules/caniuse-lite/data/features/svg-fragment.js b/node_modules/caniuse-lite/data/features/svg-fragment.js
new file mode 100644
index 0000000..dfd4625
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/svg-fragment.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F GC","260":"G A B"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"HC wB I z J E F G A B C K L IC JC"},D:{"1":"TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB","132":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB"},E:{"1":"C K L H tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E G A B LC 2B MC NC PC 3B","132":"F OC"},F:{"1":"GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i uB","2":"0 1 H M N O j k","4":"B C VC WC XC tB EC YC","16":"G UC","132":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB"},G:{"1":"jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"2B ZC FC aC bC cC eC fC gC hC iC","132":"F dC"},H:{"1":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E","132":"A"},K:{"1":"l uB","4":"A B C tB EC"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"0C"},P:{"1":"j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD","132":"I"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:4,C:"SVG fragment identifiers"};
diff --git a/node_modules/caniuse-lite/data/features/svg-html.js b/node_modules/caniuse-lite/data/features/svg-html.js
new file mode 100644
index 0000000..225d62c
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/svg-html.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F GC","388":"G A B"},B:{"4":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","260":"C K L H M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC","2":"HC","4":"wB"},D:{"4":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"2":"LC 2B","4":"I z J E F G A B C K L H MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"4":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i UC VC WC XC tB EC YC uB"},G:{"4":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"2":"wB I uC vC wC xC FC","4":"D yC zC"},J:{"1":"A","2":"E"},K:{"4":"A B C l tB EC uB"},L:{"4":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"4":"0C"},P:{"4":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"4":"4B"},R:{"4":"ED"},S:{"1":"FD GD"}},B:2,C:"SVG effects for HTML"};
diff --git a/node_modules/caniuse-lite/data/features/svg-html5.js b/node_modules/caniuse-lite/data/features/svg-html5.js
new file mode 100644
index 0000000..fac982a
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/svg-html5.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"GC","8":"J E F","129":"G A B"},B:{"1":"N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","129":"C K L H M"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","8":"HC wB IC JC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","8":"I z J"},E:{"1":"G A B C K L H PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","8":"I z LC 2B","129":"J E F MC NC OC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i YC uB","2":"B XC tB EC","8":"G UC VC WC"},G:{"1":"eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","8":"2B ZC FC","129":"F aC bC cC dC"},H:{"1":"tC"},I:{"1":"D yC zC","2":"uC vC wC","129":"wB I xC FC"},J:{"1":"A","129":"E"},K:{"1":"C l uB","8":"A B tB EC"},L:{"1":"D"},M:{"1":"D"},N:{"129":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:1,C:"Inline SVG in HTML5"};
diff --git a/node_modules/caniuse-lite/data/features/svg-img.js b/node_modules/caniuse-lite/data/features/svg-img.js
new file mode 100644
index 0000000..91100a0
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/svg-img.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"G A B","2":"J E F GC"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"HC wB IC JC"},D:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","132":"0 1 2 3 4 5 6 I z J E F G A B C K L H M N O j k"},E:{"1":"G A B C K L H PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"LC","4":"2B","132":"I z J E F MC NC OC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i UC VC WC XC tB EC YC uB"},G:{"1":"eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","132":"F 2B ZC FC aC bC cC dC"},H:{"1":"tC"},I:{"1":"D yC zC","2":"uC vC wC","132":"wB I xC FC"},J:{"1":"E A"},K:{"1":"A B C l tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:1,C:"SVG in HTML img element"};
diff --git a/node_modules/caniuse-lite/data/features/svg-smil.js b/node_modules/caniuse-lite/data/features/svg-smil.js
new file mode 100644
index 0000000..0366ba2
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/svg-smil.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"GC","8":"J E F G A B"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","8":"C K L H M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","8":"HC wB IC JC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","4":"I"},E:{"1":"J E F G A B C K L H NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","8":"LC 2B","132":"I z MC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i UC VC WC XC tB EC YC uB"},G:{"1":"F bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","132":"2B ZC FC aC"},H:{"2":"tC"},I:{"1":"wB I D xC FC yC zC","2":"uC vC wC"},J:{"1":"E A"},K:{"1":"A B C l tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"8":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:2,C:"SVG SMIL animation"};
diff --git a/node_modules/caniuse-lite/data/features/svg.js b/node_modules/caniuse-lite/data/features/svg.js
new file mode 100644
index 0000000..e6da632
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/svg.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"GC","8":"J E F","772":"G A B"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","513":"C K L H M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC","4":"HC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"1":"I z J E F G A B C K L H 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","4":"LC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i UC VC WC XC tB EC YC uB"},G:{"1":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"1":"tC"},I:{"1":"D yC zC","2":"uC vC wC","132":"wB I xC FC"},J:{"1":"E A"},K:{"1":"A B C l tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"257":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:4,C:"SVG (basic support)"};
diff --git a/node_modules/caniuse-lite/data/features/sxg.js b/node_modules/caniuse-lite/data/features/sxg.js
new file mode 100644
index 0000000..42fa7f7
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/sxg.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L H M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC"},D:{"1":"l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB","132":"mB nB"},E:{"2":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"1":"fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB UC VC WC XC tB EC YC uB"},G:{"2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"j k 6C 7C 8C 9C AD vB BD CD DD","2":"I 1C 2C 3C 4C 5C 3B"},Q:{"1":"4B"},R:{"1":"ED"},S:{"2":"FD GD"}},B:6,C:"Signed HTTP Exchanges (SXG)"};
diff --git a/node_modules/caniuse-lite/data/features/tabindex-attr.js b/node_modules/caniuse-lite/data/features/tabindex-attr.js
new file mode 100644
index 0000000..833ba5e
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/tabindex-attr.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"E F G A B","16":"J GC"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"16":"HC wB IC JC","129":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","16":"I z J E F G A B C K L"},E:{"16":"I z LC 2B","257":"J E F G A B C K L H MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i UC VC WC XC tB EC YC uB","16":"G"},G:{"769":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"16":"tC"},I:{"16":"wB I D uC vC wC xC FC yC zC"},J:{"16":"E A"},K:{"1":"l","16":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"16":"A B"},O:{"1":"0C"},P:{"16":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"129":"FD GD"}},B:1,C:"tabindex global attribute"};
diff --git a/node_modules/caniuse-lite/data/features/template-literals.js b/node_modules/caniuse-lite/data/features/template-literals.js
new file mode 100644
index 0000000..348bf34
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/template-literals.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","16":"C"},C:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB IC JC"},D:{"1":"KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB"},E:{"1":"A B K L H PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E F G LC 2B MC NC OC","129":"C"},F:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 6 7 G B C H M N O j k UC VC WC XC tB EC YC uB"},G:{"1":"eC fC gC hC iC jC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"F 2B ZC FC aC bC cC dC","129":"kC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:6,C:"ES6 Template Literals (Template Strings)"};
diff --git a/node_modules/caniuse-lite/data/features/template.js b/node_modules/caniuse-lite/data/features/template.js
new file mode 100644
index 0000000..b9ee364
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/template.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C","388":"K L"},C:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 HC wB I z J E F G A B C K L H M N O j k IC JC"},D:{"1":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 I z J E F G A B C K L H M N O j k","132":"5 6 7 8 9 AB BB CB DB"},E:{"1":"G A B C K L H PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E LC 2B MC","388":"F OC","514":"NC"},F:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"G B C UC VC WC XC tB EC YC uB","132":"0 H M N O j k"},G:{"1":"eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"2B ZC FC aC bC cC","388":"F dC"},H:{"2":"tC"},I:{"1":"D yC zC","2":"wB I uC vC wC xC FC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:1,C:"HTML templates"};
diff --git a/node_modules/caniuse-lite/data/features/temporal.js b/node_modules/caniuse-lite/data/features/temporal.js
new file mode 100644
index 0000000..1e20fbf
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/temporal.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"2":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"2":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i UC VC WC XC tB EC YC uB"},G:{"2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"2":"wB I D uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"2":"A B C l tB EC uB"},L:{"2":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"2":"0C"},P:{"2":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"2":"4B"},R:{"2":"ED"},S:{"2":"FD GD"}},B:6,C:"Temporal"};
diff --git a/node_modules/caniuse-lite/data/features/testfeat.js b/node_modules/caniuse-lite/data/features/testfeat.js
new file mode 100644
index 0000000..72e5495
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/testfeat.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F A B GC","16":"G"},B:{"2":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"2":"0 1 2 3 4 5 6 7 8 9 HC wB J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC","16":"I z"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","16":"B C"},E:{"2":"I J LC 2B MC","16":"z E F G A B C K L H NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i UC VC WC XC EC YC uB","16":"tB"},G:{"2":"2B ZC FC aC bC","16":"F cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"2":"wB I D uC vC xC FC yC zC","16":"wC"},J:{"2":"A","16":"E"},K:{"2":"A B C l tB EC uB"},L:{"2":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"2":"0C"},P:{"2":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"2":"4B"},R:{"2":"ED"},S:{"2":"FD GD"}},B:7,C:"Test feature - updated"};
diff --git a/node_modules/caniuse-lite/data/features/text-decoration.js b/node_modules/caniuse-lite/data/features/text-decoration.js
new file mode 100644
index 0000000..1ae2881
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/text-decoration.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"2":"C K L H M N O","2052":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"2":"HC wB I z IC JC","1028":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","1060":"0 1 2 3 4 5 6 7 8 9 J E F G A B C K L H M N O j k AB BB CB DB EB"},D:{"2":"0 1 2 3 4 I z J E F G A B C K L H M N O j k","226":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB","2052":"aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"2":"I z J E LC 2B MC NC","772":"K L H uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","804":"F G A B C PC 3B tB","1316":"OC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB UC VC WC XC tB EC YC uB","226":"EB FB GB HB IB JB KB LB MB","2052":"NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i"},G:{"2":"2B ZC FC aC bC cC","292":"F dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"2":"A B C tB EC uB","2052":"l"},L:{"2052":"D"},M:{"1028":"D"},N:{"2":"A B"},O:{"2052":"0C"},P:{"2":"I 1C 2C","2052":"j k 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"2052":"4B"},R:{"2052":"ED"},S:{"1028":"FD GD"}},B:4,C:"text-decoration styling"};
diff --git a/node_modules/caniuse-lite/data/features/text-emphasis.js b/node_modules/caniuse-lite/data/features/text-emphasis.js
new file mode 100644
index 0000000..2513b1f
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/text-emphasis.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"i m n o p q r s t u v w x y D","2":"C K L H M N O","164":"P Q R S T U V W X Y Z a b c d e f g h"},C:{"1":"PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB IC JC","322":"OB"},D:{"1":"i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 I z J E F G A B C K L H M N O j k","164":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h"},E:{"1":"F G A B C K L H OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J LC 2B MC","164":"E NC"},F:{"1":"V W X Y Z a b c d e f g h i","2":"G B C UC VC WC XC tB EC YC uB","164":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U"},G:{"1":"F cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"2B ZC FC aC bC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC","164":"yC zC"},J:{"2":"E","164":"A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"164":"0C"},P:{"1":"j k CD DD","164":"I 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD"},Q:{"164":"4B"},R:{"164":"ED"},S:{"1":"FD GD"}},B:4,C:"text-emphasis styling"};
diff --git a/node_modules/caniuse-lite/data/features/text-overflow.js b/node_modules/caniuse-lite/data/features/text-overflow.js
new file mode 100644
index 0000000..c7c5917
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/text-overflow.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"J E F G A B","2":"GC"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","8":"HC wB I z J IC JC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"1":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i tB EC YC uB","33":"G UC VC WC XC"},G:{"1":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"1":"tC"},I:{"1":"wB I D uC vC wC xC FC yC zC"},J:{"1":"E A"},K:{"1":"l uB","33":"A B C tB EC"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:2,C:"CSS3 Text-overflow"};
diff --git a/node_modules/caniuse-lite/data/features/text-size-adjust.js b/node_modules/caniuse-lite/data/features/text-size-adjust.js
new file mode 100644
index 0000000..8e24435
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/text-size-adjust.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","33":"C K L H M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC"},D:{"1":"XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB","258":"5"},E:{"2":"I z J E F G A B C K L H LC 2B NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","258":"MC"},F:{"1":"MB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB NB UC VC WC XC tB EC YC uB"},G:{"2":"2B ZC FC","33":"F aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"33":"D"},N:{"161":"A B"},O:{"1":"0C"},P:{"1":"j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD","2":"I"},Q:{"1":"4B"},R:{"1":"ED"},S:{"2":"FD GD"}},B:7,C:"CSS text-size-adjust"};
diff --git a/node_modules/caniuse-lite/data/features/text-stroke.js b/node_modules/caniuse-lite/data/features/text-stroke.js
new file mode 100644
index 0000000..a25bbc1
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/text-stroke.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"2":"C K L","33":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","161":"H M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB IC JC","161":"SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","450":"RB"},D:{"33":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"33":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"2":"G B C UC VC WC XC tB EC YC uB","33":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i"},G:{"33":"F ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","36":"2B"},H:{"2":"tC"},I:{"2":"wB","33":"I D uC vC wC xC FC yC zC"},J:{"33":"E A"},K:{"2":"A B C tB EC uB","33":"l"},L:{"33":"D"},M:{"161":"D"},N:{"2":"A B"},O:{"33":"0C"},P:{"33":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"33":"4B"},R:{"33":"ED"},S:{"161":"FD GD"}},B:7,C:"CSS text-stroke and text-fill"};
diff --git a/node_modules/caniuse-lite/data/features/textcontent.js b/node_modules/caniuse-lite/data/features/textcontent.js
new file mode 100644
index 0000000..728a6f0
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/textcontent.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"G A B","2":"J E F GC"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"1":"I z J E F G A B C K L H 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","16":"LC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i UC VC WC XC tB EC YC uB","16":"G"},G:{"1":"F ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","16":"2B"},H:{"1":"tC"},I:{"1":"wB I D wC xC FC yC zC","16":"uC vC"},J:{"1":"E A"},K:{"1":"A B C l tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:1,C:"Node.textContent"};
diff --git a/node_modules/caniuse-lite/data/features/textencoder.js b/node_modules/caniuse-lite/data/features/textencoder.js
new file mode 100644
index 0000000..79c3aeb
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/textencoder.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L H M N O"},C:{"1":"1 2 3 4 5 6 7 8 9 j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"HC wB I z J E F G A B C K L H M N O IC JC","132":"0"},D:{"1":"HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB"},E:{"1":"B C K L H 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E F G A LC 2B MC NC OC PC"},F:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 G B C H M N O j k UC VC WC XC tB EC YC uB"},G:{"1":"hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"F 2B ZC FC aC bC cC dC eC fC gC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:1,C:"TextEncoder & TextDecoder"};
diff --git a/node_modules/caniuse-lite/data/features/tls1-1.js b/node_modules/caniuse-lite/data/features/tls1-1.js
new file mode 100644
index 0000000..bd4f578
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/tls1-1.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"B","2":"J E GC","66":"F G A"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB","2":"0 1 HC wB I z J E F G A B C K L H M N O j k IC JC","66":"2","129":"jB kB lB mB nB l oB pB qB rB","388":"sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B"},D:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T","2":"0 I z J E F G A B C K L H M N O j k","1540":"U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"1":"E F G A B C K OC PC 3B tB uB","2":"I z J LC 2B MC NC","513":"L H 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB uB","2":"G B C UC VC WC XC tB EC YC","1540":"l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i"},G:{"1":"F aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"2B ZC FC"},H:{"1":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"1":"A","2":"E"},K:{"1":"l uB","2":"A B C tB EC"},L:{"1":"D"},M:{"129":"D"},N:{"1":"B","66":"A"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:6,C:"TLS 1.1"};
diff --git a/node_modules/caniuse-lite/data/features/tls1-2.js b/node_modules/caniuse-lite/data/features/tls1-2.js
new file mode 100644
index 0000000..7cc29b4
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/tls1-2.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"B","2":"J E GC","66":"F G A"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 HC wB I z J E F G A B C K L H M N O j k IC JC","66":"3 4 5"},D:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 I z J E F G A B C K L H M N O j k"},E:{"1":"E F G A B C K L H OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J LC 2B MC NC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"G H UC","66":"B C VC WC XC tB EC YC uB"},G:{"1":"F aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"2B ZC FC"},H:{"1":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"1":"A","2":"E"},K:{"1":"l uB","2":"A B C tB EC"},L:{"1":"D"},M:{"1":"D"},N:{"1":"B","66":"A"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:6,C:"TLS 1.2"};
diff --git a/node_modules/caniuse-lite/data/features/tls1-3.js b/node_modules/caniuse-lite/data/features/tls1-3.js
new file mode 100644
index 0000000..e8b7339
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/tls1-3.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L H M N O"},C:{"1":"eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB IC JC","132":"cB yB dB","450":"UB VB WB XB YB ZB aB bB xB"},D:{"1":"lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB","706":"XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB"},E:{"1":"L H QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E F G A B C LC 2B MC NC OC PC 3B tB","1028":"K uB 4B"},F:{"1":"aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB UC VC WC XC tB EC YC uB","706":"XB YB ZB"},G:{"1":"lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"j k 3B 6C 7C 8C 9C AD vB BD CD DD","2":"I 1C 2C 3C 4C 5C"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"GD","2":"FD"}},B:6,C:"TLS 1.3"};
diff --git a/node_modules/caniuse-lite/data/features/touch.js b/node_modules/caniuse-lite/data/features/touch.js
new file mode 100644
index 0000000..7136fb2
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/touch.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G GC","8":"A B"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","578":"C K L H M N O"},C:{"1":"0 1 2 3 O j k VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"HC wB IC JC","4":"I z J E F G A B C K L H M N","194":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB"},D:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 I z J E F G A B C K L H M N O j k"},E:{"2":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"G B C UC VC WC XC tB EC YC uB"},G:{"1":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"1":"wB I D uC vC wC xC FC yC zC"},J:{"1":"E A"},K:{"1":"B C l tB EC uB","2":"A"},L:{"1":"D"},M:{"1":"D"},N:{"8":"A","260":"B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"GD","2":"FD"}},B:2,C:"Touch events"};
diff --git a/node_modules/caniuse-lite/data/features/transforms2d.js b/node_modules/caniuse-lite/data/features/transforms2d.js
new file mode 100644
index 0000000..0f5d25a
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/transforms2d.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"GC","8":"J E F","129":"A B","161":"G"},B:{"1":"N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","129":"C K L H M"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"HC wB","33":"I z J E F G A B C K L H IC JC"},D:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","33":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB"},E:{"1":"G A B C K L H PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","33":"I z J E F LC 2B MC NC OC"},F:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i uB","2":"G UC VC","33":"0 1 B C H M N O j k WC XC tB EC YC"},G:{"1":"eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","33":"F 2B ZC FC aC bC cC dC"},H:{"2":"tC"},I:{"1":"D","33":"wB I uC vC wC xC FC yC zC"},J:{"33":"E A"},K:{"1":"B C l tB EC uB","2":"A"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:4,C:"CSS3 2D Transforms"};
diff --git a/node_modules/caniuse-lite/data/features/transforms3d.js b/node_modules/caniuse-lite/data/features/transforms3d.js
new file mode 100644
index 0000000..2db51f3
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/transforms3d.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G GC","132":"A B"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"HC wB I z J E F G IC JC","33":"A B C K L H"},D:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"I z J E F G A B","33":"0 1 2 3 4 5 6 7 8 9 C K L H M N O j k AB BB CB DB EB"},E:{"1":"6B 7B 8B vB 9B AC BC CC DC SC TC","2":"LC 2B","33":"I z J E F MC NC OC","257":"G A B C K L H PC 3B tB uB 4B QC RC 5B"},F:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"G B C UC VC WC XC tB EC YC uB","33":"0 1 H M N O j k"},G:{"1":"6B 7B 8B vB 9B AC BC CC DC","33":"F 2B ZC FC aC bC cC dC","257":"eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B"},H:{"2":"tC"},I:{"1":"D","2":"uC vC wC","33":"wB I xC FC yC zC"},J:{"33":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"132":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:5,C:"CSS3 3D Transforms"};
diff --git a/node_modules/caniuse-lite/data/features/trusted-types.js b/node_modules/caniuse-lite/data/features/trusted-types.js
new file mode 100644
index 0000000..ce479ea
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/trusted-types.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L H M N O P Q R"},C:{"2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC"},D:{"1":"S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R"},E:{"2":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"1":"kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB UC VC WC XC tB EC YC uB"},G:{"2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"2":"0C"},P:{"1":"j k 8C 9C AD vB BD CD DD","2":"I 1C 2C 3C 4C 5C 3B 6C 7C"},Q:{"2":"4B"},R:{"1":"ED"},S:{"2":"FD GD"}},B:7,C:"Trusted Types for DOM manipulation"};
diff --git a/node_modules/caniuse-lite/data/features/ttf.js b/node_modules/caniuse-lite/data/features/ttf.js
new file mode 100644
index 0000000..37be790
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/ttf.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F GC","132":"G A B"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC","2":"HC wB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"1":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i VC WC XC tB EC YC uB","2":"G UC"},G:{"1":"F FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"2B ZC"},H:{"2":"tC"},I:{"1":"wB I D vC wC xC FC yC zC","2":"uC"},J:{"1":"E A"},K:{"1":"A B C l tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"132":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:6,C:"TTF/OTF - TrueType and OpenType font support"};
diff --git a/node_modules/caniuse-lite/data/features/typedarrays.js b/node_modules/caniuse-lite/data/features/typedarrays.js
new file mode 100644
index 0000000..572355a
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/typedarrays.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"B","2":"J E F G GC","132":"A"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"HC wB IC JC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"I z J"},E:{"1":"J E F G A B C K L H NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z LC 2B","260":"MC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i YC uB","2":"G B UC VC WC XC tB EC"},G:{"1":"F aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"2B ZC","260":"FC"},H:{"1":"tC"},I:{"1":"I D xC FC yC zC","2":"wB uC vC wC"},J:{"1":"A","2":"E"},K:{"1":"C l uB","2":"A B tB EC"},L:{"1":"D"},M:{"1":"D"},N:{"132":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:6,C:"Typed Arrays"};
diff --git a/node_modules/caniuse-lite/data/features/u2f.js b/node_modules/caniuse-lite/data/features/u2f.js
new file mode 100644
index 0000000..9f21009
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/u2f.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"2":"C K L H M N O s t u v w x y D","513":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r"},C:{"1":"iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x","2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB 0B 1B IC JC","322":"QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB y D"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB s t u v w x y D 0B 1B KC","130":"HB IB JB","513":"KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g","578":"h i m n o p q r"},E:{"1":"K L H 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E F G A B C LC 2B MC NC OC PC 3B tB uB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB KB UC VC WC XC tB EC YC uB","513":"JB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i"},G:{"1":"oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC"},H:{"2":"tC"},I:{"2":"wB I D uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"2":"A B C l tB EC uB"},L:{"2":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"2":"0C"},P:{"2":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"2":"4B"},R:{"2":"ED"},S:{"1":"GD","322":"FD"}},B:7,C:"FIDO U2F API"};
diff --git a/node_modules/caniuse-lite/data/features/unhandledrejection.js b/node_modules/caniuse-lite/data/features/unhandledrejection.js
new file mode 100644
index 0000000..6a87138
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/unhandledrejection.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L H M N O"},C:{"1":"kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB IC JC"},D:{"1":"SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB"},E:{"1":"B C K L H tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E F G A LC 2B MC NC OC PC 3B"},F:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB UC VC WC XC tB EC YC uB"},G:{"1":"jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"F 2B ZC FC aC bC cC dC eC fC gC hC","16":"iC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD","2":"I"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"GD","2":"FD"}},B:1,C:"unhandledrejection/rejectionhandled events"};
diff --git a/node_modules/caniuse-lite/data/features/upgradeinsecurerequests.js b/node_modules/caniuse-lite/data/features/upgradeinsecurerequests.js
new file mode 100644
index 0000000..a1743d5
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/upgradeinsecurerequests.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L H M"},C:{"1":"LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB IC JC"},D:{"1":"MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB"},E:{"1":"B C K L H 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E F G A LC 2B MC NC OC PC"},F:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 6 7 8 G B C H M N O j k UC VC WC XC tB EC YC uB"},G:{"1":"hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"F 2B ZC FC aC bC cC dC eC fC gC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:4,C:"Upgrade Insecure Requests"};
diff --git a/node_modules/caniuse-lite/data/features/url-scroll-to-text-fragment.js b/node_modules/caniuse-lite/data/features/url-scroll-to-text-fragment.js
new file mode 100644
index 0000000..a7e0713
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/url-scroll-to-text-fragment.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L H M N O","66":"P Q R"},C:{"2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC"},D:{"1":"R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l","66":"oB pB qB rB sB P Q"},E:{"1":"9B AC BC CC DC SC TC","2":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB"},F:{"1":"jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB UC VC WC XC tB EC YC uB","66":"hB iB"},G:{"1":"9B AC BC CC DC","2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"2":"0C"},P:{"1":"j k 8C 9C AD vB BD CD DD","2":"I 1C 2C 3C 4C 5C 3B 6C 7C"},Q:{"2":"4B"},R:{"1":"ED"},S:{"2":"FD GD"}},B:7,C:"URL Scroll-To-Text Fragment"};
diff --git a/node_modules/caniuse-lite/data/features/url.js b/node_modules/caniuse-lite/data/features/url.js
new file mode 100644
index 0000000..f6357ce
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/url.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 4 HC wB I z J E F G A B C K L H M N O j k IC JC"},D:{"1":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 I z J E F G A B C K L H M N O j k","130":"2 3 4 5 6 7 8 9 AB"},E:{"1":"F G A B C K L H OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J LC 2B MC NC","130":"E"},F:{"1":"0 1 2 3 4 5 6 7 8 9 j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"G B C UC VC WC XC tB EC YC uB","130":"H M N O"},G:{"1":"F dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"2B ZC FC aC bC","130":"cC"},H:{"2":"tC"},I:{"1":"D zC","2":"wB I uC vC wC xC FC","130":"yC"},J:{"2":"E","130":"A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:1,C:"URL API"};
diff --git a/node_modules/caniuse-lite/data/features/urlsearchparams.js b/node_modules/caniuse-lite/data/features/urlsearchparams.js
new file mode 100644
index 0000000..5a21adb
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/urlsearchparams.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L H M"},C:{"1":"NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 4 5 6 7 HC wB I z J E F G A B C K L H M N O j k IC JC","132":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB"},D:{"1":"SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB"},E:{"1":"B C K L H 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E F G A LC 2B MC NC OC PC"},F:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB UC VC WC XC tB EC YC uB"},G:{"1":"hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"F 2B ZC FC aC bC cC dC eC fC gC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD","2":"I"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:1,C:"URLSearchParams"};
diff --git a/node_modules/caniuse-lite/data/features/use-strict.js b/node_modules/caniuse-lite/data/features/use-strict.js
new file mode 100644
index 0000000..826948a
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/use-strict.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"A B","2":"J E F G GC"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"HC wB IC JC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"I z J E F G A B C"},E:{"1":"J E F G A B C K L H NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I LC 2B","132":"z MC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i YC uB","2":"G B UC VC WC XC tB EC"},G:{"1":"F aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"2B ZC FC"},H:{"1":"tC"},I:{"1":"wB I D xC FC yC zC","2":"uC vC wC"},J:{"1":"E A"},K:{"1":"C l EC uB","2":"A B tB"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:6,C:"ECMAScript 5 Strict Mode"};
diff --git a/node_modules/caniuse-lite/data/features/user-select-none.js b/node_modules/caniuse-lite/data/features/user-select-none.js
new file mode 100644
index 0000000..2aae6ee
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/user-select-none.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G GC","33":"A B"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","33":"C K L H M N O"},C:{"1":"kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","33":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB IC JC"},D:{"1":"XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","33":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB"},E:{"1":"TC","33":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC"},F:{"1":"KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"G B C UC VC WC XC tB EC YC uB","33":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB JB"},G:{"33":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"1":"D","33":"wB I uC vC wC xC FC yC zC"},J:{"33":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"33":"A B"},O:{"1":"0C"},P:{"1":"j k 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD","33":"I 1C"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"GD","33":"FD"}},B:5,C:"CSS user-select: none"};
diff --git a/node_modules/caniuse-lite/data/features/user-timing.js b/node_modules/caniuse-lite/data/features/user-timing.js
new file mode 100644
index 0000000..4ad21f8
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/user-timing.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"A B","2":"J E F G GC"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB IC JC"},D:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 I z J E F G A B C K L H M N O j k"},E:{"1":"B C K L H tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E F G A LC 2B MC NC OC PC 3B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"G B C UC VC WC XC tB EC YC uB"},G:{"1":"iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"F 2B ZC FC aC bC cC dC eC fC gC hC"},H:{"2":"tC"},I:{"1":"D yC zC","2":"wB I uC vC wC xC FC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:2,C:"User Timing API"};
diff --git a/node_modules/caniuse-lite/data/features/variable-fonts.js b/node_modules/caniuse-lite/data/features/variable-fonts.js
new file mode 100644
index 0000000..1fca43d
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/variable-fonts.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L H M"},C:{"2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB IC JC","4609":"dB eB fB gB hB iB jB kB lB","4674":"yB","5698":"cB","7490":"WB XB YB ZB aB","7746":"bB xB","8705":"mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B"},D:{"1":"iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB","4097":"hB","4290":"xB cB yB","6148":"dB eB fB gB"},E:{"1":"H RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E F G A LC 2B MC NC OC PC 3B","4609":"B C tB uB","8193":"K L 4B QC"},F:{"1":"XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB UC VC WC XC tB EC YC uB","4097":"WB","6148":"SB TB UB VB"},G:{"1":"mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"F 2B ZC FC aC bC cC dC eC fC gC hC","4097":"iC jC kC lC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"4097":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"2":"I 1C 2C 3C","4097":"j k 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"GD","2":"FD"}},B:5,C:"Variable fonts"};
diff --git a/node_modules/caniuse-lite/data/features/vector-effect.js b/node_modules/caniuse-lite/data/features/vector-effect.js
new file mode 100644
index 0000000..942ebed
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/vector-effect.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L H M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"HC wB I z J E F G A B C K L IC JC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","16":"I z J E F G A B C K L"},E:{"1":"J E F G A B C K L H MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z LC 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i YC uB","2":"G B UC VC WC XC tB EC"},G:{"1":"F aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","16":"2B ZC FC"},H:{"1":"tC"},I:{"1":"D yC zC","16":"wB I uC vC wC xC FC"},J:{"16":"E A"},K:{"1":"C l uB","2":"A B tB EC"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:4,C:"SVG vector-effect: non-scaling-stroke"};
diff --git a/node_modules/caniuse-lite/data/features/vibration.js b/node_modules/caniuse-lite/data/features/vibration.js
new file mode 100644
index 0000000..3efd470
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/vibration.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L H M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"HC wB I z J E F G A IC JC","33":"B C K L H"},D:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 I z J E F G A B C K L H M N O j k"},E:{"2":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"G B C H M UC VC WC XC tB EC YC uB"},G:{"2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"1":"D yC zC","2":"wB I uC vC wC xC FC"},J:{"1":"A","2":"E"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:2,C:"Vibration API"};
diff --git a/node_modules/caniuse-lite/data/features/video.js b/node_modules/caniuse-lite/data/features/video.js
new file mode 100644
index 0000000..a69ea63
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/video.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"G A B","2":"J E F GC"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"1 2 3 4 5 6 7 8 9 j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"HC wB","260":"0 I z J E F G A B C K L H M N O IC JC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"1":"I z J E F G A MC NC OC PC 3B","2":"LC 2B","513":"B C K L H tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i WC XC tB EC YC uB","2":"G UC VC"},G:{"1":"F 2B ZC FC aC bC cC dC eC fC gC hC","513":"iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"1":"wB I D wC xC FC yC zC","132":"uC vC"},J:{"1":"E A"},K:{"1":"B C l tB EC uB","2":"A"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:1,C:"Video element"};
diff --git a/node_modules/caniuse-lite/data/features/videotracks.js b/node_modules/caniuse-lite/data/features/videotracks.js
new file mode 100644
index 0000000..913d78c
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/videotracks.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"C K L H M N O","322":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB IC JC","194":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB","322":"OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"1":"E F G A B C K L H NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J LC 2B MC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB UC VC WC XC tB EC YC uB","322":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i"},G:{"1":"F cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"2B ZC FC aC bC"},H:{"2":"tC"},I:{"2":"wB I D uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"2":"A B C tB EC uB","322":"l"},L:{"322":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"322":"0C"},P:{"2":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"322":"4B"},R:{"322":"ED"},S:{"194":"FD GD"}},B:1,C:"Video Tracks"};
diff --git a/node_modules/caniuse-lite/data/features/viewport-unit-variants.js b/node_modules/caniuse-lite/data/features/viewport-unit-variants.js
new file mode 100644
index 0000000..38e083c
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/viewport-unit-variants.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"u v w x y D","2":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q","194":"r s t"},C:{"1":"n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m IC JC"},D:{"1":"u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i","194":"m n o p q r s t"},E:{"1":"6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B"},F:{"1":"d e f g h i","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z UC VC WC XC tB EC YC uB","194":"a b c"},G:{"1":"6B 7B 8B vB 9B AC BC CC DC","2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"2":"A B C l tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"2":"0C"},P:{"1":"k","2":"I j 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"2":"4B"},R:{"2":"ED"},S:{"2":"FD GD"}},B:5,C:"Small, Large, and Dynamic viewport units"};
diff --git a/node_modules/caniuse-lite/data/features/viewport-units.js b/node_modules/caniuse-lite/data/features/viewport-units.js
new file mode 100644
index 0000000..b8f609a
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/viewport-units.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F GC","132":"G","260":"A B"},B:{"1":"M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","260":"C K L H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"HC wB I z J E F G A B C K L H M N O IC JC"},D:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 I z J E F G A B C K L H M N O","260":"1 2 3 4 j k"},E:{"1":"E F G A B C K L H NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z LC 2B MC","260":"J"},F:{"1":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"G B C UC VC WC XC tB EC YC uB"},G:{"1":"F dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"2B ZC FC aC","516":"cC","772":"bC"},H:{"2":"tC"},I:{"1":"D yC zC","2":"wB I uC vC wC xC FC"},J:{"1":"A","2":"E"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"260":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:4,C:"Viewport units: vw, vh, vmin, vmax"};
diff --git a/node_modules/caniuse-lite/data/features/wai-aria.js b/node_modules/caniuse-lite/data/features/wai-aria.js
new file mode 100644
index 0000000..a5cbd66
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/wai-aria.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E GC","4":"F G A B"},B:{"4":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"4":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC"},D:{"4":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"2":"LC 2B","4":"I z J E F G A B C K L H MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"2":"G","4":"0 1 2 3 4 5 6 7 8 9 B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i UC VC WC XC tB EC YC uB"},G:{"4":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"4":"tC"},I:{"2":"wB I uC vC wC xC FC","4":"D yC zC"},J:{"2":"E A"},K:{"4":"A B C l tB EC uB"},L:{"4":"D"},M:{"4":"D"},N:{"4":"A B"},O:{"4":"0C"},P:{"4":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"4":"4B"},R:{"4":"ED"},S:{"4":"FD GD"}},B:2,C:"WAI-ARIA Accessibility features"};
diff --git a/node_modules/caniuse-lite/data/features/wake-lock.js b/node_modules/caniuse-lite/data/features/wake-lock.js
new file mode 100644
index 0000000..0730a0f
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/wake-lock.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L H M N O","194":"P Q R S T U V W X Y"},C:{"2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC"},D:{"1":"U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB","194":"mB nB l oB pB qB rB sB P Q R S T"},E:{"1":"CC DC SC TC","2":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC"},F:{"1":"l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB UC VC WC XC tB EC YC uB","194":"bB cB dB eB fB gB hB iB jB kB lB mB nB"},G:{"1":"CC DC","2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"2":"0C"},P:{"1":"j k 9C AD vB BD CD DD","2":"I 1C 2C 3C 4C 5C 3B 6C 7C 8C"},Q:{"2":"4B"},R:{"1":"ED"},S:{"2":"FD GD"}},B:4,C:"Screen Wake Lock API"};
diff --git a/node_modules/caniuse-lite/data/features/wasm.js b/node_modules/caniuse-lite/data/features/wasm.js
new file mode 100644
index 0000000..0e88a43
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/wasm.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L","578":"H"},C:{"1":"WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB IC JC","194":"QB RB SB TB UB","1025":"VB"},D:{"1":"aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB","322":"UB VB WB XB YB ZB"},E:{"1":"B C K L H tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E F G A LC 2B MC NC OC PC 3B"},F:{"1":"NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB UC VC WC XC tB EC YC uB","322":"HB IB JB KB LB MB"},G:{"1":"iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"F 2B ZC FC aC bC cC dC eC fC gC hC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"j k 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD","2":"I 1C 2C"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"GD","194":"FD"}},B:6,C:"WebAssembly"};
diff --git a/node_modules/caniuse-lite/data/features/wav.js b/node_modules/caniuse-lite/data/features/wav.js
new file mode 100644
index 0000000..cc76794
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/wav.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC","2":"HC wB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"I z J E"},E:{"1":"I z J E F G A B C K L H MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"LC 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i WC XC tB EC YC uB","2":"G UC VC"},G:{"1":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"1":"wB I D wC xC FC yC zC","16":"uC vC"},J:{"1":"E A"},K:{"1":"B C l tB EC uB","16":"A"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:6,C:"Wav audio format"};
diff --git a/node_modules/caniuse-lite/data/features/wbr-element.js b/node_modules/caniuse-lite/data/features/wbr-element.js
new file mode 100644
index 0000000..e59bcc8
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/wbr-element.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"J E GC","2":"F G A B"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"1":"I z J E F G A B C K L H 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","16":"LC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i UC VC WC XC tB EC YC uB","16":"G"},G:{"1":"F aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","16":"2B ZC FC"},H:{"1":"tC"},I:{"1":"wB I D wC xC FC yC zC","16":"uC vC"},J:{"1":"E A"},K:{"1":"B C l tB EC uB","2":"A"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:1,C:"wbr (word break opportunity) element"};
diff --git a/node_modules/caniuse-lite/data/features/web-animation.js b/node_modules/caniuse-lite/data/features/web-animation.js
new file mode 100644
index 0000000..dd53ddb
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/web-animation.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L H M N O","260":"P Q R S"},C:{"1":"R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB IC JC","260":"xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB","516":"QB RB SB TB UB VB WB XB YB ZB aB bB","580":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB","2049":"pB qB rB sB P Q"},D:{"1":"T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB","132":"FB GB HB","260":"IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S"},E:{"1":"H RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E F G A LC 2B MC NC OC PC 3B","1090":"B C K tB uB","2049":"L 4B QC"},F:{"1":"mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 G B C H M N O j k UC VC WC XC tB EC YC uB","132":"2 3 4","260":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB"},G:{"2":"F 2B ZC FC aC bC cC dC eC fC gC hC","1090":"iC jC kC lC mC nC oC","2049":"pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"260":"0C"},P:{"260":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"260":"4B"},R:{"1":"ED"},S:{"1":"GD","516":"FD"}},B:5,C:"Web Animations API"};
diff --git a/node_modules/caniuse-lite/data/features/web-app-manifest.js b/node_modules/caniuse-lite/data/features/web-app-manifest.js
new file mode 100644
index 0000000..f255e85
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/web-app-manifest.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L H M","130":"N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC","578":"qB rB sB P Q R zB S T U"},D:{"1":"IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB"},E:{"2":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i UC VC WC XC tB EC YC uB"},G:{"2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC","4":"CC DC","260":"jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"2":"FD GD"}},B:5,C:"Add to home screen (A2HS)"};
diff --git a/node_modules/caniuse-lite/data/features/web-bluetooth.js b/node_modules/caniuse-lite/data/features/web-bluetooth.js
new file mode 100644
index 0000000..48b8a1a
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/web-bluetooth.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"2":"C K L H M N O","1025":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB","194":"OB PB QB RB SB TB UB VB","706":"WB XB YB","1025":"ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"2":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB UC VC WC XC tB EC YC uB","450":"FB GB HB IB","706":"JB KB LB","1025":"MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i"},G:{"2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"2":"wB I uC vC wC xC FC yC zC","1025":"D"},J:{"2":"E A"},K:{"2":"A B C tB EC uB","1025":"l"},L:{"1025":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"1025":"0C"},P:{"1":"j k 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD","2":"I 1C"},Q:{"2":"4B"},R:{"1025":"ED"},S:{"2":"FD GD"}},B:7,C:"Web Bluetooth"};
diff --git a/node_modules/caniuse-lite/data/features/web-serial.js b/node_modules/caniuse-lite/data/features/web-serial.js
new file mode 100644
index 0000000..503e18d
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/web-serial.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L H M N O","66":"P Q R S T U V W X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC"},D:{"1":"Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB","66":"sB P Q R S T U V W X"},E:{"2":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"1":"qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB UC VC WC XC tB EC YC uB","66":"gB hB iB jB kB lB mB nB l oB pB"},G:{"2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"2":"wB I D uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"2":"A B C l tB EC uB"},L:{"2":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"2":"0C"},P:{"2":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"2":"4B"},R:{"2":"ED"},S:{"2":"FD GD"}},B:7,C:"Web Serial API"};
diff --git a/node_modules/caniuse-lite/data/features/web-share.js b/node_modules/caniuse-lite/data/features/web-share.js
new file mode 100644
index 0000000..317c203
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/web-share.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"e f g h i m n o p q r s t u v w x y D","2":"C K L H M N O P Q","516":"R S T U V W X Y Z a b c d"},C:{"2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC"},D:{"2":"4 5 6 7 8 9 I z J E F G A B C K L H M N AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X","130":"0 1 2 3 O j k","1028":"Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"1":"L H QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E F G A B C LC 2B MC NC OC PC 3B tB","2049":"K uB 4B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i UC VC WC XC tB EC YC uB"},G:{"1":"qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC","2049":"lC mC nC oC pC"},H:{"2":"tC"},I:{"2":"wB I uC vC wC xC FC yC","258":"D zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"2":"0C"},P:{"1":"j k 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD","2":"I","258":"1C 2C 3C"},Q:{"2":"4B"},R:{"2":"ED"},S:{"2":"FD GD"}},B:4,C:"Web Share API"};
diff --git a/node_modules/caniuse-lite/data/features/webauthn.js b/node_modules/caniuse-lite/data/features/webauthn.js
new file mode 100644
index 0000000..d3efde4
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/webauthn.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C","226":"K L H M N"},C:{"2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB IC JC","5124":"cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B"},D:{"1":"iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB"},E:{"1":"K L H 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E F G A B C LC 2B MC NC OC PC 3B tB","322":"uB"},F:{"1":"XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB UC VC WC XC tB EC YC uB"},G:{"1":"rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC","578":"nC","2052":"qC","3076":"oC pC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1028":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"j k BD CD DD","2":"I 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"GD","2":"FD"}},B:2,C:"Web Authentication API"};
diff --git a/node_modules/caniuse-lite/data/features/webcodecs.js b/node_modules/caniuse-lite/data/features/webcodecs.js
new file mode 100644
index 0000000..772db73
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/webcodecs.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"d e f g h i m n o p q r s t u v w x y D","2":"C K L H M N O P Q R S T U V W X Y Z a b c"},C:{"2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC"},D:{"1":"d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c"},E:{"2":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC","260":"CC DC SC TC"},F:{"1":"Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P UC VC WC XC tB EC YC uB"},G:{"2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC","260":"CC DC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"2":"0C"},P:{"1":"j k BD CD DD","2":"I 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB"},Q:{"2":"4B"},R:{"1":"ED"},S:{"2":"FD GD"}},B:5,C:"WebCodecs API"};
diff --git a/node_modules/caniuse-lite/data/features/webgl.js b/node_modules/caniuse-lite/data/features/webgl.js
new file mode 100644
index 0000000..fd05a31
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/webgl.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"GC","8":"J E F G A","129":"B"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","129":"C K L H M N O"},C:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"HC wB IC JC","129":"0 1 2 I z J E F G A B C K L H M N O j k"},D:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"I z J E","129":"0 1 2 3 4 5 6 7 8 9 F G A B C K L H M N O j k AB BB"},E:{"1":"F G A B C K L H PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z LC 2B","129":"J E MC NC OC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"G B UC VC WC XC tB EC YC","129":"C H M N O uB"},G:{"1":"F dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"2B ZC FC aC bC cC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"1":"A","2":"E"},K:{"1":"C l uB","2":"A B tB EC"},L:{"1":"D"},M:{"1":"D"},N:{"8":"A","129":"B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"GD","129":"FD"}},B:6,C:"WebGL - 3D Canvas graphics"};
diff --git a/node_modules/caniuse-lite/data/features/webgl2.js b/node_modules/caniuse-lite/data/features/webgl2.js
new file mode 100644
index 0000000..cd85de8
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/webgl2.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L H M N O"},C:{"1":"UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 HC wB I z J E F G A B C K L H M N O j k IC JC","194":"LB MB NB","450":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB","2242":"OB PB QB RB SB TB"},D:{"1":"ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB","578":"MB NB OB PB QB RB SB TB UB VB WB XB YB"},E:{"1":"H RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E F G A LC 2B MC NC OC PC","1090":"B C K L 3B tB uB 4B QC"},F:{"1":"MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB UC VC WC XC tB EC YC uB"},G:{"1":"sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC","1090":"kC lC mC nC oC pC qC rC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"j k 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD","2":"I 1C 2C"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"GD","2242":"FD"}},B:6,C:"WebGL 2.0"};
diff --git a/node_modules/caniuse-lite/data/features/webgpu.js b/node_modules/caniuse-lite/data/features/webgpu.js
new file mode 100644
index 0000000..147830e
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/webgpu.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"D","2":"C K L H M N O P","578":"Q R S T U V W X Y Z a b c","1602":"d e f g h i m n o p q r s t u v w x y"},C:{"2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB IC JC","194":"eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P","578":"Q R S T U V W X Y Z a b c","1602":"d e f g h i m n o p q r s t u v w x y","2049":"D 0B 1B KC"},E:{"2":"I z J E F G A B H LC 2B MC NC OC PC 3B RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","322":"C K L tB uB 4B QC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB UC VC WC XC tB EC YC uB","578":"l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i"},G:{"2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"2":"wB I D uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"2":"A B C l tB EC uB"},L:{"2":"D"},M:{"194":"D"},N:{"2":"A B"},O:{"2":"0C"},P:{"2":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"2":"4B"},R:{"2":"ED"},S:{"2":"FD","194":"GD"}},B:5,C:"WebGPU"};
diff --git a/node_modules/caniuse-lite/data/features/webhid.js b/node_modules/caniuse-lite/data/features/webhid.js
new file mode 100644
index 0000000..dd94329
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/webhid.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L H M N O","66":"P Q R S T U V W X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC"},D:{"1":"Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB","66":"sB P Q R S T U V W X"},E:{"2":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"1":"qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB UC VC WC XC tB EC YC uB","66":"hB iB jB kB lB mB nB l oB pB"},G:{"2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"2":"wB I D uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"2":"A B C l tB EC uB"},L:{"2":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"2":"0C"},P:{"2":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"2":"4B"},R:{"2":"ED"},S:{"2":"FD GD"}},B:7,C:"WebHID API"};
diff --git a/node_modules/caniuse-lite/data/features/webkit-user-drag.js b/node_modules/caniuse-lite/data/features/webkit-user-drag.js
new file mode 100644
index 0000000..48415aa
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/webkit-user-drag.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"2":"C K L H M N O","132":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC"},D:{"16":"I z J E F G A B C K L H","132":"0 1 2 3 4 5 6 7 8 9 M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"1":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"2":"G B C UC VC WC XC tB EC YC uB","132":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i"},G:{"2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"2":"wB I D uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"2":"A B C l tB EC uB"},L:{"2":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"2":"0C"},P:{"2":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"2":"4B"},R:{"2":"ED"},S:{"2":"FD GD"}},B:7,C:"CSS -webkit-user-drag property"};
diff --git a/node_modules/caniuse-lite/data/features/webm.js b/node_modules/caniuse-lite/data/features/webm.js
new file mode 100644
index 0000000..5ab961b
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/webm.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F GC","520":"G A B"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","8":"C K","388":"L H M N O"},C:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"HC wB IC JC","132":"0 1 2 3 4 5 6 I z J E F G A B C K L H M N O j k"},D:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"I z","132":"0 1 2 3 J E F G A B C K L H M N O j k"},E:{"1":"vB 9B AC BC CC DC SC TC","2":"LC","8":"I z 2B MC","520":"J E F G A B C NC OC PC 3B tB","1028":"K uB 4B","7172":"L","8196":"H QC RC 5B 6B 7B 8B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"G UC VC WC","132":"B C H XC tB EC YC uB"},G:{"2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC","1028":"lC mC nC oC pC","3076":"qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"1":"D","2":"uC vC","132":"wB I wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"8":"A B"},O:{"1":"0C"},P:{"1":"j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD","132":"I"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:6,C:"WebM video format"};
diff --git a/node_modules/caniuse-lite/data/features/webnfc.js b/node_modules/caniuse-lite/data/features/webnfc.js
new file mode 100644
index 0000000..09ad0c5
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/webnfc.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"2":"C K L H M N O P Y Z a b c d e f g h i m n o p q r s t u v w x y D","450":"Q R S T U V W X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","450":"Q R S T U V W X"},E:{"2":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i UC VC WC XC tB EC YC uB","450":"iB jB kB lB mB nB l oB pB"},G:{"2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"2":"wB I D uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"2":"A B C l tB EC uB"},L:{"257":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"2":"0C"},P:{"2":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"2":"4B"},R:{"1":"ED"},S:{"2":"FD GD"}},B:7,C:"Web NFC"};
diff --git a/node_modules/caniuse-lite/data/features/webp.js b/node_modules/caniuse-lite/data/features/webp.js
new file mode 100644
index 0000000..0f5b094
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/webp.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L H M N"},C:{"1":"gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"HC wB IC JC","8":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB"},D:{"1":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"I z","8":"J E F","132":"0 1 G A B C K L H M N O j k","260":"2 3 4 5 6 7 8 9 AB"},E:{"1":"vB 9B AC BC CC DC SC TC","2":"I z J E F G A B C K LC 2B MC NC OC PC 3B tB uB 4B","516":"L H QC RC 5B 6B 7B 8B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"G UC VC WC","8":"B XC","132":"tB EC YC","260":"C H M N O uB"},G:{"1":"qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC"},H:{"1":"tC"},I:{"1":"D FC yC zC","2":"wB uC vC wC","132":"I xC"},J:{"2":"E A"},K:{"1":"C l tB EC uB","2":"A","132":"B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"GD","8":"FD"}},B:6,C:"WebP image format"};
diff --git a/node_modules/caniuse-lite/data/features/websockets.js b/node_modules/caniuse-lite/data/features/websockets.js
new file mode 100644
index 0000000..edfbd9e
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/websockets.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"A B","2":"J E F G GC"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"HC wB IC JC","132":"I z","292":"J E F G A"},D:{"1":"0 1 2 3 4 5 6 7 8 9 M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","132":"I z J E F G A B C K L","260":"H"},E:{"1":"E F G A B C K L H OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I LC 2B","132":"z MC","260":"J NC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i uB","2":"G UC VC WC XC","132":"B C tB EC YC"},G:{"1":"F bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"2B ZC","132":"FC aC"},H:{"2":"tC"},I:{"1":"D yC zC","2":"wB I uC vC wC xC FC"},J:{"1":"A","129":"E"},K:{"1":"l uB","2":"A","132":"B C tB EC"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:1,C:"Web Sockets"};
diff --git a/node_modules/caniuse-lite/data/features/webtransport.js b/node_modules/caniuse-lite/data/features/webtransport.js
new file mode 100644
index 0000000..b0a9743
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/webtransport.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"h i m n o p q r s t u v w x y D","2":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g"},C:{"1":"0B 1B","2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D IC JC"},D:{"1":"g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z e f","66":"a b c d"},E:{"2":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"1":"S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB UC VC WC XC tB EC YC uB"},G:{"2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"2":"0C"},P:{"1":"j k CD DD","2":"I 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD"},Q:{"2":"4B"},R:{"1":"ED"},S:{"2":"FD GD"}},B:5,C:"WebTransport"};
diff --git a/node_modules/caniuse-lite/data/features/webusb.js b/node_modules/caniuse-lite/data/features/webusb.js
new file mode 100644
index 0000000..50383f7
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/webusb.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L H M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC"},D:{"1":"yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB","66":"XB YB ZB aB bB xB cB"},E:{"2":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"1":"RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB UC VC WC XC tB EC YC uB","66":"KB LB MB NB OB PB QB"},G:{"2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"2":"wB I D uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"j k 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD","2":"I 1C 2C 3C"},Q:{"2":"4B"},R:{"1":"ED"},S:{"2":"FD GD"}},B:7,C:"WebUSB"};
diff --git a/node_modules/caniuse-lite/data/features/webvr.js b/node_modules/caniuse-lite/data/features/webvr.js
new file mode 100644
index 0000000..867b0a0
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/webvr.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"2":"C K L Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","66":"P","257":"H M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB IC JC","129":"YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","194":"XB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","66":"aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P"},E:{"2":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i UC VC WC XC tB EC YC uB","66":"NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB"},G:{"2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"2":"wB I D uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"2":"A B C l tB EC uB"},L:{"2":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"2":"0C"},P:{"513":"I","516":"j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"2":"4B"},R:{"2":"ED"},S:{"2":"FD GD"}},B:7,C:"WebVR API"};
diff --git a/node_modules/caniuse-lite/data/features/webvtt.js b/node_modules/caniuse-lite/data/features/webvtt.js
new file mode 100644
index 0000000..d7d9001
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/webvtt.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"A B","2":"J E F G GC"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"2":"0 1 2 HC wB I z J E F G A B C K L H M N O j k IC JC","66":"3 4 5 6 7 8 9","129":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB","257":"YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"I z J E F G A B C K L H M N"},E:{"1":"J E F G A B C K L H NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z LC 2B MC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"G B C UC VC WC XC tB EC YC uB"},G:{"1":"F cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"2B ZC FC aC bC"},H:{"2":"tC"},I:{"1":"D yC zC","2":"wB I uC vC wC xC FC"},J:{"1":"A","2":"E"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"1":"B","2":"A"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"129":"FD GD"}},B:4,C:"WebVTT - Web Video Text Tracks"};
diff --git a/node_modules/caniuse-lite/data/features/webworkers.js b/node_modules/caniuse-lite/data/features/webworkers.js
new file mode 100644
index 0000000..1b62094
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/webworkers.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"A B","2":"GC","8":"J E F G"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC","8":"HC wB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"1":"I z J E F G A B C K L H MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","8":"LC 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i XC tB EC YC uB","2":"G UC","8":"VC WC"},G:{"1":"F aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"2B ZC FC"},H:{"2":"tC"},I:{"1":"D uC yC zC","2":"wB I vC wC xC FC"},J:{"1":"E A"},K:{"1":"B C l tB EC uB","8":"A"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:1,C:"Web Workers"};
diff --git a/node_modules/caniuse-lite/data/features/webxr.js b/node_modules/caniuse-lite/data/features/webxr.js
new file mode 100644
index 0000000..d2edd2b
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/webxr.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"2":"C K L H M N O","132":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB IC JC","322":"rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB","66":"gB hB iB jB kB lB mB nB l oB pB qB rB sB","132":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"2":"I z J E F G A B C LC 2B MC NC OC PC 3B tB uB","578":"K L H 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB UC VC WC XC tB EC YC uB","66":"VB WB XB YB ZB aB bB cB dB eB fB gB","132":"hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i"},G:{"2":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"2":"tC"},I:{"2":"wB I D uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"2":"A B C tB EC uB","132":"l"},L:{"132":"D"},M:{"322":"D"},N:{"2":"A B"},O:{"2":"0C"},P:{"2":"I 1C 2C 3C 4C 5C 3B 6C","132":"j k 7C 8C 9C AD vB BD CD DD"},Q:{"2":"4B"},R:{"2":"ED"},S:{"2":"FD","322":"GD"}},B:4,C:"WebXR Device API"};
diff --git a/node_modules/caniuse-lite/data/features/will-change.js b/node_modules/caniuse-lite/data/features/will-change.js
new file mode 100644
index 0000000..5748649
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/will-change.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K L H M N O"},C:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 4 5 6 7 HC wB I z J E F G A B C K L H M N O j k IC JC","194":"8 9 AB BB CB DB EB"},D:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB"},E:{"1":"A B C K L H PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E F G LC 2B MC NC OC"},F:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 2 G B C H M N O j k UC VC WC XC tB EC YC uB"},G:{"1":"fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"F 2B ZC FC aC bC cC dC eC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:4,C:"CSS will-change property"};
diff --git a/node_modules/caniuse-lite/data/features/woff.js b/node_modules/caniuse-lite/data/features/woff.js
new file mode 100644
index 0000000..cab74ab
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/woff.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"G A B","2":"J E F GC"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B JC","2":"HC wB IC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"I"},E:{"1":"J E F G A B C K L H MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z LC 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i tB EC YC uB","2":"G B UC VC WC XC"},G:{"1":"F aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"2B ZC FC"},H:{"2":"tC"},I:{"1":"D yC zC","2":"wB uC vC wC xC FC","130":"I"},J:{"1":"E A"},K:{"1":"B C l tB EC uB","2":"A"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:2,C:"WOFF - Web Open Font Format"};
diff --git a/node_modules/caniuse-lite/data/features/woff2.js b/node_modules/caniuse-lite/data/features/woff2.js
new file mode 100644
index 0000000..f12fc1a
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/woff2.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G A B GC"},B:{"1":"L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","2":"C K"},C:{"1":"IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IC JC"},D:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","2":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB"},E:{"1":"C K L H uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I z J E F G LC 2B MC NC OC PC","132":"A B 3B tB"},F:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"0 1 G B C H M N O j k UC VC WC XC tB EC YC uB"},G:{"1":"gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"F 2B ZC FC aC bC cC dC eC fC"},H:{"2":"tC"},I:{"1":"D","2":"wB I uC vC wC xC FC yC zC"},J:{"2":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:2,C:"WOFF 2.0 - Web Open Font Format"};
diff --git a/node_modules/caniuse-lite/data/features/word-break.js b/node_modules/caniuse-lite/data/features/word-break.js
new file mode 100644
index 0000000..8fd2429
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/word-break.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"J E F G A B GC"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"HC wB I z J E F G A B C K L IC JC"},D:{"1":"NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","4":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB"},E:{"1":"G A B C K L H PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","4":"I z J E F LC 2B MC NC OC"},F:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","2":"G B C UC VC WC XC tB EC YC uB","4":"0 1 2 3 4 5 6 7 8 9 H M N O j k"},G:{"1":"eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","4":"F 2B ZC FC aC bC cC dC"},H:{"2":"tC"},I:{"1":"D","4":"wB I uC vC wC xC FC yC zC"},J:{"4":"E A"},K:{"1":"l","2":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:4,C:"CSS3 word-break"};
diff --git a/node_modules/caniuse-lite/data/features/wordwrap.js b/node_modules/caniuse-lite/data/features/wordwrap.js
new file mode 100644
index 0000000..653c53d
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/wordwrap.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"4":"J E F G A B GC"},B:{"1":"O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D","4":"C K L H M N"},C:{"1":"SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"HC wB","4":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB IC JC"},D:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","4":"0 1 I z J E F G A B C K L H M N O j k"},E:{"1":"E F G A B C K L H NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","4":"I z J LC 2B MC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i uB","2":"G UC VC","4":"B C WC XC tB EC YC"},G:{"1":"F cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","4":"2B ZC FC aC bC"},H:{"4":"tC"},I:{"1":"D yC zC","4":"wB I uC vC wC xC FC"},J:{"1":"A","4":"E"},K:{"1":"l","4":"A B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"4":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"GD","4":"FD"}},B:4,C:"CSS3 Overflow-wrap"};
diff --git a/node_modules/caniuse-lite/data/features/x-doc-messaging.js b/node_modules/caniuse-lite/data/features/x-doc-messaging.js
new file mode 100644
index 0000000..9d5325d
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/x-doc-messaging.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E GC","132":"F G","260":"A B"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC","2":"HC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"1":"I z J E F G A B C K L H MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"LC 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i UC VC WC XC tB EC YC uB","2":"G"},G:{"1":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"1":"tC"},I:{"1":"wB I D uC vC wC xC FC yC zC"},J:{"1":"E A"},K:{"1":"A B C l tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"4":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:1,C:"Cross-document messaging"};
diff --git a/node_modules/caniuse-lite/data/features/x-frame-options.js b/node_modules/caniuse-lite/data/features/x-frame-options.js
new file mode 100644
index 0000000..654b50f
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/x-frame-options.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"F G A B","2":"J E GC"},B:{"1":"C K L H M N O","4":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB","4":"I z J E F G A B C K L H M N lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","16":"HC wB IC JC"},D:{"4":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","16":"0 1 2 3 4 I z J E F G A B C K L H M N O j k"},E:{"4":"J E F G A B C K L H MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","16":"I z LC 2B"},F:{"4":"0 1 2 3 4 5 6 7 8 9 C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i YC uB","16":"G B UC VC WC XC tB EC"},G:{"4":"F cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","16":"2B ZC FC aC bC"},H:{"2":"tC"},I:{"4":"I D xC FC yC zC","16":"wB uC vC wC"},J:{"4":"E A"},K:{"4":"l uB","16":"A B C tB EC"},L:{"4":"D"},M:{"4":"D"},N:{"1":"A B"},O:{"4":"0C"},P:{"4":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"4":"4B"},R:{"4":"ED"},S:{"1":"FD","4":"GD"}},B:6,C:"X-Frame-Options HTTP header"};
diff --git a/node_modules/caniuse-lite/data/features/xhr2.js b/node_modules/caniuse-lite/data/features/xhr2.js
new file mode 100644
index 0000000..a785d9a
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/xhr2.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"J E F G GC","132":"A B"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","2":"HC wB","260":"A B","388":"J E F G","900":"I z IC JC"},D:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","16":"I z J","132":"8 9","388":"0 1 2 3 4 5 6 7 E F G A B C K L H M N O j k"},E:{"1":"F G A B C K L H OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","2":"I LC 2B","132":"E NC","388":"z J MC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i uB","2":"G B UC VC WC XC tB EC YC","132":"H M N"},G:{"1":"F dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","2":"2B ZC FC","132":"cC","388":"aC bC"},H:{"2":"tC"},I:{"1":"D zC","2":"uC vC wC","388":"yC","900":"wB I xC FC"},J:{"132":"A","388":"E"},K:{"1":"C l uB","2":"A B tB EC"},L:{"1":"D"},M:{"1":"D"},N:{"132":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:1,C:"XMLHttpRequest advanced features"};
diff --git a/node_modules/caniuse-lite/data/features/xhtml.js b/node_modules/caniuse-lite/data/features/xhtml.js
new file mode 100644
index 0000000..eca22be
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/xhtml.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"G A B","2":"J E F GC"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"1":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i UC VC WC XC tB EC YC uB"},G:{"1":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"1":"tC"},I:{"1":"wB I D uC vC wC xC FC yC zC"},J:{"1":"E A"},K:{"1":"A B C l tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:1,C:"XHTML served as application/xhtml+xml"};
diff --git a/node_modules/caniuse-lite/data/features/xhtmlsmil.js b/node_modules/caniuse-lite/data/features/xhtmlsmil.js
new file mode 100644
index 0000000..e9a277f
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/xhtmlsmil.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"2":"G A B GC","4":"J E F"},B:{"2":"C K L H M N O","8":"P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"8":"0 1 2 3 4 5 6 7 8 9 HC wB I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B IC JC"},D:{"8":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC"},E:{"8":"I z J E F G A B C K L H LC 2B MC NC OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC"},F:{"8":"0 1 2 3 4 5 6 7 8 9 G B C H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i UC VC WC XC tB EC YC uB"},G:{"8":"F 2B ZC FC aC bC cC dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC"},H:{"8":"tC"},I:{"8":"wB I D uC vC wC xC FC yC zC"},J:{"8":"E A"},K:{"8":"A B C l tB EC uB"},L:{"8":"D"},M:{"8":"D"},N:{"2":"A B"},O:{"8":"0C"},P:{"8":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"8":"4B"},R:{"8":"ED"},S:{"8":"FD GD"}},B:7,C:"XHTML+SMIL animation"};
diff --git a/node_modules/caniuse-lite/data/features/xml-serializer.js b/node_modules/caniuse-lite/data/features/xml-serializer.js
new file mode 100644
index 0000000..f1a2d24
--- /dev/null
+++ b/node_modules/caniuse-lite/data/features/xml-serializer.js
@@ -0,0 +1 @@
+module.exports={A:{A:{"1":"A B","260":"J E F G GC"},B:{"1":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 C K L H M N O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B","132":"B","260":"HC wB I z J E IC JC","516":"F G A"},D:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB xB cB yB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R S T U V W X Y Z a b c d e f g h i m n o p q r s t u v w x y D 0B 1B KC","132":"0 1 2 3 4 5 6 7 8 9 I z J E F G A B C K L H M N O j k"},E:{"1":"F G A B C K L H OC PC 3B tB uB 4B QC RC 5B 6B 7B 8B vB 9B AC BC CC DC SC TC","132":"I z J E LC 2B MC NC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 O j k AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB l oB pB qB rB sB P Q R zB S T U V W X Y Z a b c d e f g h i","16":"G UC","132":"B C H M N VC WC XC tB EC YC uB"},G:{"1":"F dC eC fC gC hC iC jC kC lC mC nC oC pC qC rC sC 5B 6B 7B 8B vB 9B AC BC CC DC","132":"2B ZC FC aC bC cC"},H:{"132":"tC"},I:{"1":"D yC zC","132":"wB I uC vC wC xC FC"},J:{"132":"E A"},K:{"1":"l","16":"A","132":"B C tB EC uB"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"0C"},P:{"1":"I j k 1C 2C 3C 4C 5C 3B 6C 7C 8C 9C AD vB BD CD DD"},Q:{"1":"4B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:4,C:"DOM Parsing and Serialization"};
diff --git a/node_modules/caniuse-lite/data/regions/AD.js b/node_modules/caniuse-lite/data/regions/AD.js
new file mode 100644
index 0000000..38b4c2d
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/AD.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00394,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0.00394,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00394,"103":0.00394,"104":0.00394,"105":0.00394,"106":0,"107":0.00394,"108":0,"109":0.00787,"110":0.01181,"111":0.34646,"112":0.35433,"113":0,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0.00394,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.01575,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.02756,"68":0,"69":0,"70":0.00394,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0.00394,"78":0,"79":0.04331,"80":0,"81":0,"83":0,"84":0.00394,"85":0,"86":0,"87":0.01181,"88":0,"89":0,"90":0.00787,"91":0.00394,"92":0,"93":0,"94":0,"95":0.00787,"96":0.00394,"97":0.00394,"98":0,"99":0.00394,"100":0.0315,"101":0,"102":0.00394,"103":0.05512,"104":0.00394,"105":0.10236,"106":0.00787,"107":0.00394,"108":0.02362,"109":0.49606,"110":0.3189,"111":2.17716,"112":2.52362,"113":0,"114":0,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00394,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.00394,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.00394,"96":0.08661,"97":0.22441,"98":0.00787,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0.00394,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0.00394,"108":0,"109":0.02362,"110":0.01181,"111":0.32283,"112":1,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.02756,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00394,"13.1":0.05512,"14.1":0.08268,"15.1":0.04331,"15.2-15.3":0.08661,"15.4":0.13386,"15.5":0.18504,"15.6":0.73228,"16.0":0.17323,"16.1":0.32677,"16.2":0.44882,"16.3":2.12598,"16.4":1.27165,"16.5":0.02362},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00652,"8.1-8.4":0.02607,"9.0-9.2":0,"9.3":0.05865,"10.0-10.2":0,"10.3":0.05865,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":0.19551,"13.0-13.1":0,"13.2":0,"13.3":0.01303,"13.4-13.7":0.05214,"14.0-14.4":0.20203,"14.5-14.8":0.46271,"15.0-15.1":0.21506,"15.2-15.3":1.28387,"15.4":0.58002,"15.5":1.2578,"15.6":3.05,"16.0":4.92041,"16.1":9.43024,"16.2":4.50983,"16.3":23.09008,"16.4":11.71774,"16.5":0.20855},P:{"4":0.03154,"20":1.06176,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0.04205,"10.1":0,"11.1-11.2":0.01051,"12.0":0,"13.0":0.09461,"14.0":0,"15.0":0,"16.0":0,"17.0":0.04205,"18.0":0.01051,"19.0":0.01051},I:{"0":0,"3":0.00521,"4":0.02259,"2.1":0.00348,"2.2":0.00869,"2.3":0.01217,"4.1":0.01912,"4.2-4.3":0.0365,"4.4":0,"4.4.3-4.4.4":0.10949},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0.00807,"8":0.06856,"9":0.01613,"10":0.0121,"11":0.05243,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0.01213},N:{"10":0.01617,"11":0.03234},R:{_:"0"},M:{"0":0.21827},Q:{"13.1":0},O:{"0":0.07276},H:{"0":0.21238},L:{"0":21.1556}};
diff --git a/node_modules/caniuse-lite/data/regions/AE.js b/node_modules/caniuse-lite/data/regions/AE.js
new file mode 100644
index 0000000..f7d373a
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/AE.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0.00353,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00353,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00353,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.01058,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.00353,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00353,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0.00353,"109":0.00353,"110":0.00705,"111":0.1692,"112":0.1128,"113":0.00353,"114":0.00353,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0.00353,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0.00353,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0.16215,"36":0,"37":0,"38":0.00705,"39":0,"40":0.00353,"41":0,"42":0,"43":0.00353,"44":0.00353,"45":0.00705,"46":0,"47":0.00353,"48":0,"49":0.00353,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00353,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00353,"66":0,"67":0,"68":0.00353,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0.00353,"75":0.00353,"76":0.01058,"77":0,"78":0.00353,"79":0.01763,"80":0.00353,"81":0.00353,"83":0.00705,"84":0.00705,"85":0.01058,"86":0.00705,"87":0.01058,"88":0.00353,"89":0.00353,"90":0.00353,"91":0.0141,"92":0.00353,"93":0.03525,"94":0.07403,"95":0.00353,"96":0.00353,"97":0.00353,"98":0.00705,"99":0.0141,"100":0.00705,"101":0.00705,"102":0.00705,"103":0.08813,"104":0.01058,"105":0.01058,"106":0.0141,"107":0.0141,"108":0.03173,"109":0.66623,"110":0.12338,"111":2.9469,"112":3.42983,"113":0.00705,"114":0.00353,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00705,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00353,"37":0.00353,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00353,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00353,"69":0.02115,"70":0,"71":0,"72":0,"73":0,"74":0.01058,"75":0.01058,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0.00353,"95":0.01058,"96":0.07755,"97":0.17273,"98":0.00705,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00353,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0.00353,"108":0.00353,"109":0.0141,"110":0.0141,"111":0.25028,"112":0.5499,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00705,"14":0.02115,"15":0.00353,_:"0","3.1":0,"3.2":0,"5.1":0.00353,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00705,"13.1":0.01763,"14.1":0.07403,"15.1":0.01058,"15.2-15.3":0.00705,"15.4":0.02468,"15.5":0.04935,"15.6":0.17625,"16.0":0.02115,"16.1":0.07755,"16.2":0.08108,"16.3":0.3384,"16.4":0.1551,"16.5":0.00353},G:{"8":0.00454,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00454,"6.0-6.1":0,"7.0-7.1":0.03179,"8.1-8.4":0.04087,"9.0-9.2":0.00227,"9.3":0.13623,"10.0-10.2":0,"10.3":0.07038,"11.0-11.2":0.00908,"11.3-11.4":0.00908,"12.0-12.1":0.00908,"12.2-12.5":0.35419,"13.0-13.1":0.00681,"13.2":0.00908,"13.3":0.01362,"13.4-13.7":0.07493,"14.0-14.4":0.19072,"14.5-14.8":0.41323,"15.0-15.1":0.15439,"15.2-15.3":0.14758,"15.4":0.18391,"15.5":0.37236,"15.6":1.00128,"16.0":1.60749,"16.1":2.37718,"16.2":1.58933,"16.3":8.13509,"16.4":4.32297,"16.5":0.12261},P:{"4":0.14306,"20":1.76786,"5.0-5.4":0.01022,"6.2-6.4":0,"7.2-7.4":0.03066,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.01022,"12.0":0,"13.0":0.01022,"14.0":0.01022,"15.0":0.01022,"16.0":0.03066,"17.0":0.02044,"18.0":0.03066,"19.0":0.07153},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.08468},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00405,"9":0,"10":0,"11":0.07702,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.1295},Q:{"13.1":0},O:{"0":3.7555},H:{"0":0.76013},L:{"0":58.59505}};
diff --git a/node_modules/caniuse-lite/data/regions/AF.js b/node_modules/caniuse-lite/data/regions/AF.js
new file mode 100644
index 0000000..6380a07
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/AF.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00221,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00221,"48":0.00221,"49":0,"50":0.00221,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00221,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00221,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0.00221,"95":0,"96":0,"97":0,"98":0,"99":0.00221,"100":0,"101":0,"102":0.00221,"103":0.00441,"104":0,"105":0,"106":0,"107":0.00221,"108":0.00221,"109":0.00221,"110":0.00662,"111":0.11918,"112":0.07062,"113":0.01104,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0.00221,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0.00221,"42":0,"43":0.00221,"44":0,"45":0,"46":0,"47":0.00221,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0.00221,"55":0,"56":0,"57":0.00221,"58":0,"59":0,"60":0,"61":0,"62":0.00441,"63":0.00221,"64":0.00221,"65":0.00221,"66":0.00221,"67":0.00221,"68":0,"69":0.01104,"70":0.00221,"71":0.00883,"72":0.00221,"73":0.00441,"74":0.00221,"75":0.00221,"76":0,"77":0.00221,"78":0.01324,"79":0.00441,"80":0.00662,"81":0.00441,"83":0.00441,"84":0.00221,"85":0.00883,"86":0.01545,"87":0.00883,"88":0.00441,"89":0.00441,"90":0.00221,"91":0.00662,"92":0.00441,"93":0.00221,"94":0.00662,"95":0.00221,"96":0.00441,"97":0.00221,"98":0.00441,"99":0.00883,"100":0.00221,"101":0.00221,"102":0.00662,"103":0.01104,"104":0.00441,"105":0.00662,"106":0.01104,"107":0.01545,"108":0.02869,"109":0.57823,"110":0.03973,"111":0.74817,"112":0.72831,"113":0,"114":0.00221,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00221,"60":0.00221,"62":0,"63":0,"64":0,"65":0.00221,"66":0,"67":0.00221,"68":0.00662,"69":0.01986,"70":0.00221,"71":0,"72":0,"73":0,"74":0.00441,"75":0,"76":0,"77":0,"78":0,"79":0.00221,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.08387,"96":0.00662,"97":0.07283,"98":0.00441,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00441,"13":0.00221,"14":0.00221,"15":0.00221,"16":0.00883,"17":0.00221,"18":0.01986,"79":0,"80":0,"81":0.00221,"83":0,"84":0.00441,"85":0,"86":0,"87":0,"88":0,"89":0.00662,"90":0.00662,"91":0,"92":0.02207,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00221,"101":0,"102":0,"103":0.00221,"104":0,"105":0.00221,"106":0.00221,"107":0.00221,"108":0.00441,"109":0.01766,"110":0.00883,"111":0.12359,"112":0.16111,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00662,"14":0,"15":0.00221,_:"0","3.1":0,"3.2":0,"5.1":0.00662,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00441,"14.1":0.00441,"15.1":0.01766,"15.2-15.3":0.00883,"15.4":0.03531,"15.5":0.01986,"15.6":0.07945,"16.0":0.00883,"16.1":0.04414,"16.2":0.05297,"16.3":0.18539,"16.4":0.17877,"16.5":0.00441},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00263,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.07619,"10.0-10.2":0,"10.3":0.02627,"11.0-11.2":0.00525,"11.3-11.4":0.00525,"12.0-12.1":0.01314,"12.2-12.5":0.57797,"13.0-13.1":0.12085,"13.2":0.00788,"13.3":0.06831,"13.4-13.7":0.07619,"14.0-14.4":0.37042,"14.5-14.8":0.26797,"15.0-15.1":0.24169,"15.2-15.3":0.39932,"15.4":0.40195,"15.5":0.61212,"15.6":0.99568,"16.0":1.90203,"16.1":2.49051,"16.2":2.45898,"16.3":7.14838,"16.4":4.85491,"16.5":0.14712},P:{"4":0.36781,"20":1.15452,"5.0-5.4":0.11239,"6.2-6.4":0.09195,"7.2-7.4":0.35759,"8.2":0.02043,"9.2":0.18391,"10.1":0.01022,"11.1-11.2":0.1226,"12.0":0.02043,"13.0":0.07152,"14.0":0.08174,"15.0":0.04087,"16.0":0.22477,"17.0":0.10217,"18.0":0.15325,"19.0":0.39846},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00653,"4.4":0,"4.4.3-4.4.4":0.09892},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.07283,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.09352},Q:{"13.1":0},O:{"0":1.16116},H:{"0":0.64926},L:{"0":65.71291}};
diff --git a/node_modules/caniuse-lite/data/regions/AG.js b/node_modules/caniuse-lite/data/regions/AG.js
new file mode 100644
index 0000000..e5129f6
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/AG.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.01773,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00443,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0.00443,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0.00443,"109":0.0266,"110":0.00887,"111":0.20835,"112":0.15072,"113":0,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00443,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0.0133,"77":0,"78":0,"79":0.00443,"80":0,"81":0.00443,"83":0.00443,"84":0,"85":0,"86":0,"87":0.00887,"88":0,"89":0,"90":0,"91":0.00443,"92":0,"93":0.0266,"94":0.00887,"95":0.00443,"96":0,"97":0,"98":0.00443,"99":0.00443,"100":0.00443,"101":0,"102":0.00887,"103":0.07536,"104":0,"105":0.00887,"106":0.0399,"107":0.00887,"108":0.03546,"109":0.44773,"110":0.12856,"111":5.72744,"112":4.35764,"113":0.00443,"114":0.00443,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00443,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0.06206,"97":0.19505,"98":0.00443,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0.00443,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.00443,"91":0,"92":0.0133,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.00887,"102":0.01773,"103":0,"104":0,"105":0,"106":0,"107":0.00887,"108":0.00443,"109":0.03546,"110":0.04433,"111":1.26784,"112":1.46289,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.0266,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00887,"13.1":0.0399,"14.1":0.05763,"15.1":0.0133,"15.2-15.3":0.00887,"15.4":0.03546,"15.5":0.35907,"15.6":0.31474,"16.0":0.0133,"16.1":0.04433,"16.2":0.15516,"16.3":0.57186,"16.4":0.22608,"16.5":0.00443},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00302,"6.0-6.1":0,"7.0-7.1":0.01812,"8.1-8.4":0.01208,"9.0-9.2":0,"9.3":0.08152,"10.0-10.2":0.00302,"10.3":0.02113,"11.0-11.2":0.00302,"11.3-11.4":0.00604,"12.0-12.1":0.05133,"12.2-12.5":0.24455,"13.0-13.1":0.00604,"13.2":0,"13.3":0.00302,"13.4-13.7":0.16907,"14.0-14.4":0.18719,"14.5-14.8":0.23852,"15.0-15.1":0.12379,"15.2-15.3":0.27173,"15.4":0.15096,"15.5":0.7246,"15.6":1.36467,"16.0":2.14966,"16.1":3.17618,"16.2":1.87491,"16.3":12.0224,"16.4":5.81495,"16.5":0.24455},P:{"4":0.18015,"20":3.35927,"5.0-5.4":0.0106,"6.2-6.4":0,"7.2-7.4":0.13776,"8.2":0,"9.2":0.0106,"10.1":0,"11.1-11.2":0.05299,"12.0":0,"13.0":0.03179,"14.0":0.03179,"15.0":0.03179,"16.0":0.06358,"17.0":0.0106,"18.0":0.04239,"19.0":0.21194},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.12705,"4.4":0,"4.4.3-4.4.4":1.48223},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0.01773,"11":0.00887,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.22268},Q:{"13.1":0},O:{"0":0.07237},H:{"0":0.06852},L:{"0":46.41936}};
diff --git a/node_modules/caniuse-lite/data/regions/AI.js b/node_modules/caniuse-lite/data/regions/AI.js
new file mode 100644
index 0000000..b5fc481
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/AI.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0.00666,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0.00666,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.01999,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0.00666,"107":0,"108":0,"109":0.05998,"110":0,"111":0.45315,"112":0.5731,"113":0,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0.0733,"77":0,"78":0,"79":0.00666,"80":0.03998,"81":0,"83":0.00666,"84":0,"85":0,"86":0,"87":0.01333,"88":0,"89":0.01333,"90":0.00666,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.0933,"99":0,"100":0,"101":0,"102":0,"103":0.02666,"104":0,"105":0.00666,"106":0.01999,"107":0.01999,"108":0.13994,"109":0.31321,"110":0.27989,"111":3.37865,"112":4.70478,"113":0,"114":0,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":6.43076,"97":14.63414,"98":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0.01333,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00666,"90":0,"91":0,"92":0.00666,"93":0,"94":0,"95":0,"96":0.00666,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0.00666,"109":0.02666,"110":0.01999,"111":1.0729,"112":4.26496,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.04665,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00666,"12.1":0.00666,"13.1":0.3332,"14.1":0.37985,"15.1":0.00666,"15.2-15.3":0.0733,"15.4":0.01333,"15.5":0.14661,"15.6":0.45315,"16.0":0.03332,"16.1":0.13328,"16.2":0.24657,"16.3":1.0929,"16.4":1.14621,"16.5":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.0223,"10.0-10.2":0,"10.3":0.03902,"11.0-11.2":0.0223,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":0.30661,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0,"14.0-14.4":0.0669,"14.5-14.8":0.05575,"15.0-15.1":0.86128,"15.2-15.3":0.28431,"15.4":0.27873,"15.5":0.08641,"15.6":0.90309,"16.0":1.20413,"16.1":4.25625,"16.2":2.48072,"16.3":10.39115,"16.4":6.25197,"16.5":0.05017},P:{"4":0.57411,"20":1.30481,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.1357,"8.2":0,"9.2":0.01044,"10.1":0,"11.1-11.2":0,"12.0":0,"13.0":0.02088,"14.0":0.03132,"15.0":0,"16.0":0,"17.0":0.37578,"18.0":0.03132,"19.0":0.10438},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":1.03296},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0.00666,"11":0,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.5004},Q:{"13.1":0},O:{"0":0},H:{"0":0.01263},L:{"0":25.1607}};
diff --git a/node_modules/caniuse-lite/data/regions/AL.js b/node_modules/caniuse-lite/data/regions/AL.js
new file mode 100644
index 0000000..11244dd
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/AL.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00472,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00236,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.00236,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00236,"103":0,"104":0.00236,"105":0,"106":0,"107":0,"108":0.00236,"109":0.00236,"110":0.01653,"111":0.17243,"112":0.32832,"113":0,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00236,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.02126,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00236,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0.00236,"75":0,"76":0.00236,"77":0,"78":0,"79":0.0189,"80":0.00472,"81":0.00236,"83":0.00472,"84":0,"85":0.00236,"86":0.00472,"87":0.00709,"88":0.00236,"89":0.00236,"90":0.00236,"91":0.00236,"92":0.00236,"93":0.00236,"94":0.07558,"95":0.00236,"96":0.00236,"97":0.00945,"98":0.00236,"99":0.00472,"100":0.00472,"101":0.00236,"102":0.00236,"103":0.01181,"104":0.00236,"105":0.00472,"106":0.00472,"107":0.00709,"108":0.01417,"109":0.55271,"110":0.0496,"111":1.14557,"112":1.08652,"113":0.00236,"114":0,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00236,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00236,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.00236,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.00709,"96":0.02362,"97":0.12282,"98":0.00236,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00472,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0.00236,"109":0.00236,"110":0.00709,"111":0.10157,"112":0.14408,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00472,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00236,"13.1":0.01417,"14.1":0.00945,"15.1":0.00709,"15.2-15.3":0.00472,"15.4":0.00945,"15.5":0.02126,"15.6":0.08267,"16.0":0.00709,"16.1":0.03071,"16.2":0.05669,"16.3":0.15117,"16.4":0.13936,"16.5":0.00236},G:{"8":0.00973,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.11188,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.02432,"10.0-10.2":0,"10.3":0.06324,"11.0-11.2":0.03892,"11.3-11.4":0.00973,"12.0-12.1":0.01459,"12.2-12.5":0.86588,"13.0-13.1":0.00973,"13.2":0.00973,"13.3":0.04864,"13.4-13.7":0.14593,"14.0-14.4":0.53023,"14.5-14.8":1.45934,"15.0-15.1":0.28214,"15.2-15.3":0.36484,"15.4":0.51563,"15.5":0.99235,"15.6":3.07921,"16.0":3.30297,"16.1":5.22444,"16.2":3.30297,"16.3":16.38839,"16.4":7.10212,"16.5":0.17999},P:{"4":0.1935,"20":2.83115,"5.0-5.4":0.01018,"6.2-6.4":0,"7.2-7.4":0.11202,"8.2":0,"9.2":0.01018,"10.1":0,"11.1-11.2":0.04074,"12.0":0.01018,"13.0":0.07129,"14.0":0.03055,"15.0":0.07129,"16.0":0.08147,"17.0":0.32589,"18.0":0.05092,"19.0":0.27497},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01313,"4.2-4.3":0.01021,"4.4":0,"4.4.3-4.4.4":0.03792},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00472,"9":0.00236,"10":0,"11":0.00709,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.14512},Q:{"13.1":0},O:{"0":0.11457},H:{"0":0.1157},L:{"0":45.57478}};
diff --git a/node_modules/caniuse-lite/data/regions/AM.js b/node_modules/caniuse-lite/data/regions/AM.js
new file mode 100644
index 0000000..7100396
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/AM.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0.00701,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":25.12026,"53":0,"54":0,"55":0,"56":0.00701,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00701,"79":0,"80":0,"81":0,"82":0.00701,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0.00701,"98":0,"99":0,"100":0,"101":0,"102":0.00701,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0.01402,"109":0.00701,"110":0.01402,"111":0.28036,"112":0.23831,"113":0,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.00701,"49":0.06308,"50":0,"51":0.00701,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00701,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.00701,"70":0,"71":0,"72":0,"73":0,"74":0.00701,"75":0,"76":0,"77":0,"78":0,"79":0.02103,"80":0.02103,"81":0.00701,"83":0,"84":0.01402,"85":0.00701,"86":0.00701,"87":0.01402,"88":0.00701,"89":0.00701,"90":0.00701,"91":0,"92":0,"93":0.00701,"94":0.37849,"95":0.00701,"96":0.00701,"97":0.02103,"98":0.09112,"99":0.03505,"100":0.01402,"101":0.02103,"102":0.02103,"103":0.37148,"104":0.00701,"105":0.05607,"106":0.05607,"107":0.59577,"108":0.07009,"109":4.37362,"110":0.14719,"111":5.19367,"112":5.97868,"113":0.00701,"114":0.00701,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00701,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.01402,"69":0.00701,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00701,"80":0,"81":0.00701,"82":0,"83":0.00701,"84":0,"85":0.00701,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.06308,"96":0.08411,"97":0.28036,"98":0.00701,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0.00701,"86":0,"87":0,"88":0,"89":0.00701,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00701,"99":0.00701,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0.00701,"108":0.00701,"109":0.00701,"110":0.00701,"111":0.2313,"112":0.51867,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00701,"14":0.01402,"15":0.02103,_:"0","3.1":0,"3.2":0,"5.1":0.02103,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.03505,"14.1":0.27335,"15.1":0.00701,"15.2-15.3":0.00701,"15.4":0.01402,"15.5":0.02103,"15.6":0.07009,"16.0":0.00701,"16.1":0.07009,"16.2":0.05607,"16.3":0.22429,"16.4":0.18924,"16.5":0.01402},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00559,"6.0-6.1":0.00372,"7.0-7.1":0.00745,"8.1-8.4":0.00559,"9.0-9.2":0.01303,"9.3":0.12103,"10.0-10.2":0,"10.3":0.03165,"11.0-11.2":0.00745,"11.3-11.4":0.00745,"12.0-12.1":0.01676,"12.2-12.5":0.45061,"13.0-13.1":0.00372,"13.2":0.00559,"13.3":0.02607,"13.4-13.7":0.07448,"14.0-14.4":0.44875,"14.5-14.8":0.50461,"15.0-15.1":0.1322,"15.2-15.3":0.20482,"15.4":0.17317,"15.5":0.30723,"15.6":0.63867,"16.0":1.76333,"16.1":1.73354,"16.2":1.62927,"16.3":5.03304,"16.4":3.80039,"16.5":0.11172},P:{"4":0.04059,"20":1.0148,"5.0-5.4":0.01015,"6.2-6.4":0,"7.2-7.4":0.12178,"8.2":0.03044,"9.2":0,"10.1":0,"11.1-11.2":0.0203,"12.0":0,"13.0":0.01015,"14.0":0.01015,"15.0":0,"16.0":0.0203,"17.0":0.04059,"18.0":0.0203,"19.0":0.08118},I:{"0":0,"3":0,"4":0.01188,"2.1":0,"2.2":0,"2.3":0.00198,"4.1":0.00792,"4.2-4.3":0.01584,"4.4":0,"4.4.3-4.4.4":0.05939},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0.0072,"8":0.02879,"9":0.0072,"10":0.0072,"11":0.21595,"5.5":0},S:{"2.5":0.00598,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0.01496,"11":0},R:{_:"0"},M:{"0":0.06879},Q:{"13.1":0},O:{"0":0.0658},H:{"0":0.12176},L:{"0":32.55559}};
diff --git a/node_modules/caniuse-lite/data/regions/AO.js b/node_modules/caniuse-lite/data/regions/AO.js
new file mode 100644
index 0000000..4f4b7eb
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/AO.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00437,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00437,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00437,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00873,"100":0,"101":0,"102":0.00873,"103":0,"104":0,"105":0,"106":0,"107":0.00873,"108":0.00873,"109":0.00437,"110":0.00437,"111":0.18333,"112":0.13095,"113":0,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.0131,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0.00437,"36":0,"37":0,"38":0,"39":0,"40":0.0131,"41":0,"42":0.00873,"43":0.01746,"44":0,"45":0,"46":0.01746,"47":0,"48":0,"49":0.00437,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.00437,"56":0.00437,"57":0,"58":0.00437,"59":0,"60":0,"61":0,"62":0,"63":0.00873,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.00437,"70":0.0131,"71":0,"72":0,"73":0.00437,"74":0.01746,"75":0.02183,"76":0,"77":0,"78":0,"79":0.0131,"80":0.00437,"81":0.02619,"83":0.00873,"84":0.00437,"85":0,"86":0.00873,"87":0.02183,"88":0.00437,"89":0.00437,"90":0.00437,"91":0.00437,"92":0.00437,"93":0.00437,"94":0.00873,"95":0.0131,"96":0.00437,"97":0.03492,"98":0.00437,"99":0.00873,"100":0.01746,"101":0.0131,"102":0.02619,"103":0.03492,"104":0.0131,"105":0.02183,"106":0.0131,"107":0.03929,"108":0.06548,"109":1.40117,"110":0.06984,"111":1.70235,"112":2.31345,"113":0.0131,"114":0.00437,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.00437,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0.00437,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00437,"60":0.01746,"62":0,"63":0.0131,"64":0.00873,"65":0,"66":0.00437,"67":0.0131,"68":0.02183,"69":0.03056,"70":0,"71":0,"72":0,"73":0,"74":0.00437,"75":0,"76":0,"77":0,"78":0,"79":0.00873,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00873,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.12659,"96":0.03492,"97":0.2619,"98":0.03492,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00437,"13":0.00437,"14":0.00437,"15":0.0131,"16":0,"17":0,"18":0.02619,"79":0,"80":0,"81":0,"83":0,"84":0.00437,"85":0,"86":0,"87":0,"88":0,"89":0.0131,"90":0.00437,"91":0,"92":0.0131,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.00873,"102":0,"103":0,"104":0,"105":0.00437,"106":0.00873,"107":0.01746,"108":0.02183,"109":0.05675,"110":0.03492,"111":0.37103,"112":0.91665,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00437,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00873,"14.1":0.00873,"15.1":0,"15.2-15.3":0,"15.4":0.00437,"15.5":0.00437,"15.6":0.02619,"16.0":0,"16.1":0,"16.2":0.00437,"16.3":0.01746,"16.4":0.01746,"16.5":0.00437},G:{"8":0.00163,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00326,"7.0-7.1":0.15143,"8.1-8.4":0.0114,"9.0-9.2":0,"9.3":0.26378,"10.0-10.2":0.00488,"10.3":0.5243,"11.0-11.2":0.02768,"11.3-11.4":0.01465,"12.0-12.1":0.06839,"12.2-12.5":3.57728,"13.0-13.1":0.02768,"13.2":0.00651,"13.3":0.06676,"13.4-13.7":0.39241,"14.0-14.4":0.44614,"14.5-14.8":0.51941,"15.0-15.1":0.39404,"15.2-15.3":0.31914,"15.4":0.33379,"15.5":0.62688,"15.6":0.85483,"16.0":0.69364,"16.1":0.95253,"16.2":0.56175,"16.3":1.89203,"16.4":1.04046,"16.5":0.0114},P:{"4":0.36815,"20":0.49087,"5.0-5.4":0.04091,"6.2-6.4":0.02045,"7.2-7.4":0.1943,"8.2":0.01023,"9.2":0.02045,"10.1":0.02045,"11.1-11.2":0.01023,"12.0":0,"13.0":0.08181,"14.0":0.06136,"15.0":0.03068,"16.0":0.09204,"17.0":0.20453,"18.0":0.13294,"19.0":0.1534},I:{"0":0,"3":0,"4":0.0008,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01074,"4.2-4.3":0.04189,"4.4":0,"4.4.3-4.4.4":0.1453},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00873,"5.5":0},S:{"2.5":0.29302,_:"3.0-3.1"},J:{"7":0,"10":0.00564},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.12397},Q:{"13.1":0.00564},O:{"0":0.45644},H:{"0":1.15233},L:{"0":71.31223}};
diff --git a/node_modules/caniuse-lite/data/regions/AR.js b/node_modules/caniuse-lite/data/regions/AR.js
new file mode 100644
index 0000000..9d7935d
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/AR.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.02164,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0.00865,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00433,"67":0,"68":0.00433,"69":0,"70":0,"71":0,"72":0,"73":0.00433,"74":0,"75":0,"76":0.00433,"77":0,"78":0.00433,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0.00865,"87":0,"88":0.01298,"89":0,"90":0,"91":0.04327,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00865,"100":0.00433,"101":0,"102":0.00865,"103":0.00433,"104":0.01731,"105":0.00433,"106":0.00433,"107":0.00433,"108":0.00433,"109":0.01298,"110":0.03029,"111":0.32453,"112":0.34183,"113":0.00433,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00433,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00433,"48":0,"49":0.06058,"50":0,"51":0.00433,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00433,"59":0,"60":0,"61":0,"62":0,"63":0.00433,"64":0,"65":0,"66":0.02596,"67":0,"68":0,"69":0,"70":0.00433,"71":0,"72":0,"73":0,"74":0.00433,"75":0.00433,"76":0.00433,"77":0.00433,"78":0.00433,"79":0.02164,"80":0.00433,"81":0.00865,"83":0.01298,"84":0.00433,"85":0.02164,"86":0.00865,"87":0.01298,"88":0.00433,"89":0.00865,"90":0.00433,"91":0.01298,"92":0.00865,"93":0.00865,"94":0.02164,"95":0.00865,"96":0.02164,"97":0.01298,"98":0.01298,"99":0.02164,"100":0.01298,"101":0.01298,"102":0.01298,"103":0.0476,"104":0.03029,"105":0.03462,"106":0.02596,"107":0.03462,"108":0.06058,"109":2.1159,"110":0.09952,"111":4.28373,"112":5.3525,"113":0.00433,"114":0,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00433,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00433,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00433,"69":0.00865,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00433,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.03462,"96":0.21635,"97":0.49328,"98":0.01298,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.00433,"16":0,"17":0.00433,"18":0.00433,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00433,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0.00433,"108":0.00433,"109":0.02596,"110":0.01731,"111":0.28558,"112":0.62309,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00865,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00433,"12.1":0.00433,"13.1":0.01298,"14.1":0.02164,"15.1":0,"15.2-15.3":0,"15.4":0.00433,"15.5":0.00865,"15.6":0.0476,"16.0":0.00433,"16.1":0.01298,"16.2":0.01731,"16.3":0.09519,"16.4":0.04327,"16.5":0},G:{"8":0,"3.2":0.0008,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.0152,"6.0-6.1":0.0016,"7.0-7.1":0.0016,"8.1-8.4":0.004,"9.0-9.2":0,"9.3":0.03199,"10.0-10.2":0,"10.3":0.0152,"11.0-11.2":0.0032,"11.3-11.4":0.08558,"12.0-12.1":0.0024,"12.2-12.5":0.14237,"13.0-13.1":0.004,"13.2":0.0024,"13.3":0.0072,"13.4-13.7":0.0224,"14.0-14.4":0.05999,"14.5-14.8":0.13997,"15.0-15.1":0.02719,"15.2-15.3":0.03519,"15.4":0.05519,"15.5":0.09518,"15.6":0.30954,"16.0":0.35513,"16.1":0.88463,"16.2":0.44072,"16.3":3.1538,"16.4":1.25576,"16.5":0.03119},P:{"4":0.14159,"20":2.10363,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.21239,"8.2":0.01011,"9.2":0.01011,"10.1":0,"11.1-11.2":0.02023,"12.0":0.01011,"13.0":0.04045,"14.0":0.03034,"15.0":0.02023,"16.0":0.05057,"17.0":0.14159,"18.0":0.04045,"19.0":0.10114},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0046,"4.2-4.3":0.00921,"4.4":0,"4.4.3-4.4.4":0.06215},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.0476,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.11913},Q:{"13.1":0},O:{"0":0.02837},H:{"0":0.17187},L:{"0":72.11092}};
diff --git a/node_modules/caniuse-lite/data/regions/AS.js b/node_modules/caniuse-lite/data/regions/AS.js
new file mode 100644
index 0000000..7e2e135
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/AS.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0,"111":0.2346,"112":0.05213,"113":0,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0.22591,"75":0,"76":1.21646,"77":0,"78":0,"79":0.5561,"80":0.26067,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0.00869,"88":0,"89":0,"90":0,"91":0.01738,"92":0.01738,"93":5.09175,"94":0,"95":0.00869,"96":0.08689,"97":0,"98":0,"99":0,"100":0.08689,"101":0.03476,"102":0,"103":5.81294,"104":0,"105":0.06951,"106":0,"107":0.17378,"108":0.01738,"109":0.80808,"110":1.59009,"111":10.93076,"112":10.36598,"113":0.04345,"114":0,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0.00869,"97":0.00869,"98":0.01738,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0.00869,"85":0,"86":0,"87":0,"88":0,"89":0.01738,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0.03476,"107":0,"108":0.00869,"109":0.11296,"110":0.00869,"111":0.73857,"112":1.22515,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.16509,"14":0.03476,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.25198,"14.1":0.60823,"15.1":1.45975,"15.2-15.3":0.99055,"15.4":1.15564,"15.5":0.50396,"15.6":6.7166,"16.0":0.12165,"16.1":0.93841,"16.2":2.38079,"16.3":5.63047,"16.4":3.38002,"16.5":0.01738},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01217,"10.0-10.2":0,"10.3":0,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":0.0633,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0.0073,"14.0-14.4":0.02435,"14.5-14.8":0.01704,"15.0-15.1":0.03165,"15.2-15.3":0.13877,"15.4":0.2532,"15.5":0.40415,"15.6":1.70667,"16.0":1.46077,"16.1":3.90269,"16.2":1.93065,"16.3":9.38302,"16.4":3.44742,"16.5":0.07304},P:{"4":0,"20":0.07866,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.01311,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0,"12.0":0,"13.0":0,"14.0":0,"15.0":0,"16.0":0,"17.0":0,"18.0":0,"19.0":0},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01223,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.01515},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"5.5":0},S:{"2.5":0.00131,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.00131},Q:{"13.1":0},O:{"0":0.01311},H:{"0":0.06206},L:{"0":1.88517}};
diff --git a/node_modules/caniuse-lite/data/regions/AT.js b/node_modules/caniuse-lite/data/regions/AT.js
new file mode 100644
index 0000000..52ddd14
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/AT.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00534,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.00534,"46":0,"47":0.00534,"48":0.00534,"49":0,"50":0,"51":0,"52":0.02137,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.04808,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.01603,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.03205,"79":0,"80":0,"81":0,"82":0,"83":0.00534,"84":0,"85":0.00534,"86":0,"87":0,"88":0.00534,"89":0,"90":0,"91":0.0641,"92":0,"93":0.00534,"94":0.00534,"95":0.00534,"96":0,"97":0,"98":0.00534,"99":0.01068,"100":0,"101":0,"102":0.43804,"103":0.00534,"104":0.00534,"105":0.01068,"106":0.01068,"107":0.01068,"108":0.02137,"109":0.04808,"110":0.0641,"111":2.00325,"112":1.73081,"113":0.01068,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00534,"35":0,"36":0,"37":0,"38":0.00534,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.01603,"50":0,"51":0,"52":0,"53":0.00534,"54":0,"55":0.01068,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00534,"66":0,"67":0,"68":0.00534,"69":0,"70":0.00534,"71":0.00534,"72":0.00534,"73":0.00534,"74":0.00534,"75":0.00534,"76":0.00534,"77":0.00534,"78":0.00534,"79":0.08547,"80":0.01068,"81":0.01068,"83":0.00534,"84":0.00534,"85":0.01068,"86":0.05342,"87":0.02137,"88":0.01068,"89":0.03739,"90":0.01068,"91":0.00534,"92":0.00534,"93":0.00534,"94":0.03205,"95":0.00534,"96":0.01068,"97":0.00534,"98":0.00534,"99":0.01603,"100":0.0641,"101":0.09616,"102":0.09081,"103":0.09081,"104":0.05876,"105":0.01603,"106":0.03205,"107":0.3312,"108":0.08013,"109":0.58228,"110":0.17094,"111":4.58344,"112":5.59842,"113":0.00534,"114":0,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00534,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00534,"69":0.00534,"70":0,"71":0,"72":0,"73":0,"74":0.00534,"75":0.00534,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.01068,"86":0,"87":0,"88":0,"89":0.00534,"90":0,"91":0,"92":0,"93":0,"94":0.01068,"95":0.03739,"96":0.40065,"97":1.04703,"98":0.03205,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00534,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00534,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.00534,"102":0,"103":0.00534,"104":0.00534,"105":0.00534,"106":0.00534,"107":0.01603,"108":0.03205,"109":0.1015,"110":0.06945,"111":1.3355,"112":3.21588,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.01603,"14":0.06945,"15":0.01603,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.01603,"10.1":0,"11.1":0.01603,"12.1":0.01603,"13.1":0.11218,"14.1":0.1656,"15.1":0.02671,"15.2-15.3":0.03739,"15.4":0.05876,"15.5":0.07479,"15.6":0.38462,"16.0":0.06945,"16.1":0.13889,"16.2":0.19765,"16.3":1.07908,"16.4":0.56625,"16.5":0.01068},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00317,"6.0-6.1":0.00633,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0.00317,"9.3":0.06647,"10.0-10.2":0,"10.3":0.1361,"11.0-11.2":0.01899,"11.3-11.4":0.0095,"12.0-12.1":0.03482,"12.2-12.5":0.34184,"13.0-13.1":0.01266,"13.2":0.02216,"13.3":0.02532,"13.4-13.7":0.0633,"14.0-14.4":0.23739,"14.5-14.8":0.52226,"15.0-15.1":0.17725,"15.2-15.3":0.19941,"15.4":0.24689,"15.5":0.50643,"15.6":1.56044,"16.0":2.30743,"16.1":4.16856,"16.2":2.4372,"16.3":11.5308,"16.4":5.77015,"16.5":0.13294},P:{"4":0.16497,"20":4.03137,"5.0-5.4":0.02062,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.01031,"12.0":0,"13.0":0.03093,"14.0":0.02062,"15.0":0.01031,"16.0":0.03093,"17.0":0.04124,"18.0":0.05155,"19.0":0.17528},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.03942,"4.2-4.3":0.0219,"4.4":0,"4.4.3-4.4.4":0.14017},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00534,"9":0,"10":0,"11":0.05342,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.84776},Q:{"13.1":0},O:{"0":0.03726},H:{"0":0.32192},L:{"0":33.93183}};
diff --git a/node_modules/caniuse-lite/data/regions/AU.js b/node_modules/caniuse-lite/data/regions/AU.js
new file mode 100644
index 0000000..5ec543c
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/AU.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00551,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.00551,"49":0,"50":0,"51":0,"52":0.01652,"53":0,"54":0.00551,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.01101,"67":0,"68":0.00551,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.02754,"79":0.01101,"80":0.00551,"81":0.01101,"82":0.00551,"83":0.01101,"84":0,"85":0,"86":0,"87":0.01101,"88":0.00551,"89":0,"90":0,"91":0.00551,"92":0,"93":0.00551,"94":0.03855,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.02754,"103":0.00551,"104":0.00551,"105":0.00551,"106":0.01101,"107":0.01101,"108":0.01101,"109":0.02203,"110":0.03855,"111":0.77649,"112":0.64983,"113":0.01101,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0.01652,"26":0.00551,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.02203,"35":0,"36":0,"37":0,"38":0.05507,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00551,"48":0,"49":0.02203,"50":0,"51":0,"52":0.00551,"53":0.00551,"54":0,"55":0,"56":0.00551,"57":0,"58":0.00551,"59":0.00551,"60":0.01652,"61":0,"62":0,"63":0,"64":0,"65":0.00551,"66":0.01652,"67":0.02203,"68":0.00551,"69":0.16521,"70":0.00551,"71":0.00551,"72":0.00551,"73":0.00551,"74":0.01101,"75":0.00551,"76":0.00551,"77":0.00551,"78":0.01101,"79":0.06608,"80":0.01652,"81":0.04406,"83":0.04406,"84":0.06058,"85":0.08261,"86":0.09362,"87":0.09913,"88":0.01101,"89":0.00551,"90":0.00551,"91":0.01101,"92":0.01101,"93":0.01101,"94":0.01652,"95":0.01101,"96":0.02754,"97":0.03304,"98":0.02203,"99":0.02754,"100":0.02754,"101":0.03304,"102":0.02754,"103":0.1542,"104":0.04406,"105":0.04956,"106":0.07159,"107":0.09362,"108":0.18724,"109":0.71591,"110":0.38549,"111":6.4542,"112":6.97737,"113":0.01101,"114":0.00551,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00551,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.02203,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00551,"69":0.00551,"70":0,"71":0.00551,"72":0.00551,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0.00551,"95":0.01652,"96":0.13768,"97":0.30839,"98":0.00551,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.00551,"16":0,"17":0,"18":0.01101,"79":0,"80":0,"81":0,"83":0.00551,"84":0.00551,"85":0.01101,"86":0.00551,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00551,"93":0,"94":0,"95":0.00551,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0.00551,"104":0.00551,"105":0.00551,"106":0.00551,"107":0.01652,"108":0.03855,"109":0.06058,"110":0.0771,"111":1.09039,"112":2.31294,"113":0.00551},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0.00551,"13":0.02754,"14":0.11014,"15":0.03304,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00551,"12.1":0.03855,"13.1":0.1542,"14.1":0.3139,"15.1":0.04406,"15.2-15.3":0.04406,"15.4":0.09362,"15.5":0.1597,"15.6":0.83706,"16.0":0.08261,"16.1":0.23129,"16.2":0.35245,"16.3":1.83934,"16.4":0.63331,"16.5":0.01101},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.02561,"6.0-6.1":0.01708,"7.0-7.1":0.01708,"8.1-8.4":0.02134,"9.0-9.2":0.02561,"9.3":0.23905,"10.0-10.2":0.00427,"10.3":0.30736,"11.0-11.2":0.05976,"11.3-11.4":0.10672,"12.0-12.1":0.06403,"12.2-12.5":1.22089,"13.0-13.1":0.03415,"13.2":0.01708,"13.3":0.07684,"13.4-13.7":0.23479,"14.0-14.4":0.52507,"14.5-14.8":0.93487,"15.0-15.1":0.2604,"15.2-15.3":0.30309,"15.4":0.397,"15.5":0.64032,"15.6":2.18991,"16.0":2.29236,"16.1":5.75012,"16.2":3.26139,"16.3":16.08923,"16.4":5.45984,"16.5":0.10245},P:{"4":0.22269,"20":2.64041,"5.0-5.4":0.05302,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.0106,"12.0":0.0106,"13.0":0.03181,"14.0":0.03181,"15.0":0.0106,"16.0":0.04242,"17.0":0.04242,"18.0":0.05302,"19.0":0.14846},I:{"0":0,"3":0,"4":0.0122,"2.1":0,"2.2":0.0061,"2.3":0.00813,"4.1":0.01423,"4.2-4.3":0.03252,"4.4":0,"4.4.3-4.4.4":0.08334},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.03671,"9":0.02754,"10":0.00918,"11":0.11932,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0.00449},N:{"10":0.01348,"11":0},R:{_:"0"},M:{"0":0.49872},Q:{"13.1":0.00449},O:{"0":0.0674},H:{"0":0.14463},L:{"0":25.00745}};
diff --git a/node_modules/caniuse-lite/data/regions/AW.js b/node_modules/caniuse-lite/data/regions/AW.js
new file mode 100644
index 0000000..5329950
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/AW.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00324,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00324,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.00324,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0.00324,"111":0.13949,"112":0.12327,"113":0,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00649,"50":0,"51":0,"52":0,"53":0.00324,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.02271,"80":0,"81":0.01298,"83":0,"84":0.00649,"85":0,"86":0,"87":0.00324,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.00324,"94":0,"95":0,"96":0,"97":0,"98":0.00324,"99":0,"100":0,"101":0,"102":0,"103":0.03568,"104":0.00324,"105":0.00324,"106":0.00649,"107":0.00649,"108":0.01622,"109":0.41848,"110":0.10056,"111":2.05994,"112":2.2708,"113":0.0292,"114":0,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.00324,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.00649,"96":0.08434,"97":0.12976,"98":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00324,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00324,"103":0,"104":0,"105":0,"106":0,"107":0.00324,"108":0.00324,"109":0.01946,"110":0.02271,"111":0.5385,"112":1.32355,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00973,"15":0.00649,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00649,"13.1":0.02271,"14.1":0.09408,"15.1":0.00973,"15.2-15.3":0.02271,"15.4":0.08759,"15.5":0.0811,"15.6":0.23681,"16.0":0.0292,"16.1":0.03893,"16.2":0.09408,"16.3":0.44443,"16.4":0.24654,"16.5":0.00324},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.02162,"10.0-10.2":0.01729,"10.3":0.03891,"11.0-11.2":0.00432,"11.3-11.4":0.03459,"12.0-12.1":0.01297,"12.2-12.5":0.40209,"13.0-13.1":0,"13.2":0,"13.3":0.01297,"13.4-13.7":0.04324,"14.0-14.4":0.13403,"14.5-14.8":0.77824,"15.0-15.1":0.13403,"15.2-15.3":0.13403,"15.4":0.20321,"15.5":0.62259,"15.6":1.84616,"16.0":3.98199,"16.1":5.2142,"16.2":3.33346,"16.3":16.55056,"16.4":7.69592,"16.5":0.12538},P:{"4":0.15453,"20":7.25265,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.20604,"8.2":0,"9.2":0.0103,"10.1":0,"11.1-11.2":0.08242,"12.0":0,"13.0":0.06181,"14.0":0.0206,"15.0":0.0206,"16.0":0.05151,"17.0":0.04121,"18.0":0.11332,"19.0":0.26785},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.01078,"4.4":0,"4.4.3-4.4.4":0.16169},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00649,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.18917},Q:{"13.1":0},O:{"0":0.03378},H:{"0":0.23666},L:{"0":37.75154}};
diff --git a/node_modules/caniuse-lite/data/regions/AX.js b/node_modules/caniuse-lite/data/regions/AX.js
new file mode 100644
index 0000000..e49f6d8
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/AX.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00624,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00624,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0.04367,"109":0.2246,"110":0.1435,"111":1.29771,"112":1.24156,"113":0,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.01248,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0.20589,"77":0,"78":0,"79":0.13102,"80":0,"81":0,"83":0,"84":0,"85":0.00624,"86":0.00624,"87":0,"88":0,"89":0,"90":0.03743,"91":0.00624,"92":0.00624,"93":0,"94":0,"95":0.00624,"96":0.00624,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0.01872,"104":0,"105":0,"106":0.00624,"107":0.01872,"108":0.03743,"109":2.39578,"110":0.3681,"111":8.37898,"112":9.73284,"113":0,"114":0,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.03743,"96":0.2246,"97":0.63638,"98":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.01248,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0.01248,"108":0.00624,"109":0.0312,"110":0.00624,"111":1.60966,"112":4.5108,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.44297,"15":0.01872,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00624,"12.1":0.01248,"13.1":0.26204,"14.1":0.36186,"15.1":0.01872,"15.2-15.3":0.03743,"15.4":0.03743,"15.5":0.04991,"15.6":0.23708,"16.0":0.2246,"16.1":0.07487,"16.2":0.34315,"16.3":0.8485,"16.4":0.41801,"16.5":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.05809,"10.0-10.2":0,"10.3":0.49474,"11.0-11.2":0.00401,"11.3-11.4":0.13019,"12.0-12.1":0.01001,"12.2-12.5":2.14321,"13.0-13.1":0.01001,"13.2":0,"13.3":0.00401,"13.4-13.7":0.05408,"14.0-14.4":0.16625,"14.5-14.8":0.71707,"15.0-15.1":0.08813,"15.2-15.3":0.20431,"15.4":0.30646,"15.5":0.21833,"15.6":0.70706,"16.0":0.4647,"16.1":1.38407,"16.2":1.02954,"16.3":6.76813,"16.4":3.16474,"16.5":0.03405},P:{"4":0.0107,"20":4.10808,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0,"12.0":0.0107,"13.0":0,"14.0":0,"15.0":0.0214,"16.0":0.25676,"17.0":0.0214,"18.0":0.40653,"19.0":0.11768},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.04376},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00624,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":2.5462},Q:{"13.1":0},O:{"0":0.07522},H:{"0":0.10682},L:{"0":34.9864}};
diff --git a/node_modules/caniuse-lite/data/regions/AZ.js b/node_modules/caniuse-lite/data/regions/AZ.js
new file mode 100644
index 0000000..c347f14
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/AZ.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.02489,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.11379,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.00356,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00356,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0.00356,"109":0.01422,"110":0.06045,"111":0.09957,"112":0.08534,"113":0.00356,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0.00711,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.00356,"44":0.00356,"45":0.00356,"46":0.00356,"47":0,"48":0,"49":0.01422,"50":0,"51":0,"52":0,"53":0.00711,"54":0,"55":0,"56":0.00356,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00356,"66":0,"67":0,"68":0,"69":0.00356,"70":0.00356,"71":0.00356,"72":0.00356,"73":0,"74":0.00711,"75":0,"76":0.00356,"77":0.00356,"78":0.00356,"79":0.1209,"80":0.01067,"81":0.01778,"83":0.00711,"84":0.00356,"85":0.00356,"86":0.00356,"87":0.03556,"88":0.00711,"89":0.00356,"90":0.00356,"91":0.00711,"92":0.00356,"93":0,"94":0.22758,"95":0,"96":0.01422,"97":0.00711,"98":0.00711,"99":0.02134,"100":0.01422,"101":0.01067,"102":0.01067,"103":0.01422,"104":0.00711,"105":0.01067,"106":0.03556,"107":0.01778,"108":0.02845,"109":1.48285,"110":0.07823,"111":2.35763,"112":2.75234,"113":0.00356,"114":0,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00356,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00356,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.00356,"68":0.01422,"69":0.04267,"70":0,"71":0,"72":0,"73":0,"74":0.00356,"75":0.00356,"76":0,"77":0,"78":0,"79":0.00711,"80":0,"81":0,"82":0.00711,"83":0,"84":0.00356,"85":0.01778,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.16002,"96":0.0889,"97":0.40183,"98":0.01422,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00356,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00356,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00356,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0.00356,"109":0.01778,"110":0.01778,"111":0.11379,"112":0.24181,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00711,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.11735,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00356,"12.1":0,"13.1":0.02134,"14.1":0.01778,"15.1":0.00356,"15.2-15.3":0.00356,"15.4":0.01422,"15.5":0.01067,"15.6":0.04978,"16.0":0.00711,"16.1":0.02845,"16.2":0.02845,"16.3":0.0889,"16.4":0.07468,"16.5":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00316,"6.0-6.1":0,"7.0-7.1":0.0253,"8.1-8.4":0.01423,"9.0-9.2":0.00158,"9.3":0.01739,"10.0-10.2":0,"10.3":0.04744,"11.0-11.2":0.00474,"11.3-11.4":0,"12.0-12.1":0.00633,"12.2-12.5":0.4396,"13.0-13.1":0.00949,"13.2":0,"13.3":0.01107,"13.4-13.7":0.06325,"14.0-14.4":0.16604,"14.5-14.8":0.36686,"15.0-15.1":0.10753,"15.2-15.3":0.10278,"15.4":0.15022,"15.5":0.40007,"15.6":0.70684,"16.0":1.09584,"16.1":1.81058,"16.2":0.91873,"16.3":4.80556,"16.4":3.39504,"16.5":0.10753},P:{"4":0.3162,"20":4.06974,"5.0-5.4":0,"6.2-6.4":0.0102,"7.2-7.4":0.0918,"8.2":0,"9.2":0,"10.1":0.0102,"11.1-11.2":0.0306,"12.0":0.0102,"13.0":0.0612,"14.0":0.0306,"15.0":0.051,"16.0":0.0816,"17.0":0.1428,"18.0":0.0816,"19.0":0.2346},I:{"0":0,"3":0,"4":0.00713,"2.1":0,"2.2":0.00475,"2.3":0.00475,"4.1":0.0095,"4.2-4.3":0.02376,"4.4":0,"4.4.3-4.4.4":0.08078},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0.00356,"8":0.032,"9":0.00711,"10":0.00356,"11":0.03912,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0.00644},N:{"10":0,"11":0.01289},R:{_:"0"},M:{"0":0.2642},Q:{"13.1":0},O:{"0":0.23843},H:{"0":0.63448},L:{"0":66.11197}};
diff --git a/node_modules/caniuse-lite/data/regions/BA.js b/node_modules/caniuse-lite/data/regions/BA.js
new file mode 100644
index 0000000..f2f6c96
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/BA.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.29415,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.04557,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00414,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00414,"79":0,"80":0,"81":0,"82":0,"83":0.00829,"84":0,"85":0,"86":0,"87":0,"88":0.00414,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0.00414,"98":0,"99":0.00829,"100":0,"101":0,"102":0.00829,"103":0.00414,"104":0.00414,"105":0,"106":0.00414,"107":0,"108":0.00414,"109":0.01243,"110":0.06215,"111":0.61731,"112":0.49302,"113":0.00414,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.00414,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00414,"35":0,"36":0,"37":0,"38":0.00414,"39":0,"40":0.00414,"41":0,"42":0,"43":0.00414,"44":0.00414,"45":0.00414,"46":0,"47":0.00414,"48":0,"49":0.03314,"50":0,"51":0,"52":0,"53":0.01243,"54":0,"55":0.00414,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00414,"64":0,"65":0.00414,"66":0,"67":0,"68":0.01243,"69":0,"70":0.00414,"71":0.00414,"72":0,"73":0,"74":0.00414,"75":0,"76":0.00414,"77":0.00414,"78":0,"79":0.09529,"80":0,"81":0.00829,"83":0.00829,"84":0.00414,"85":0.00829,"86":0.01243,"87":0.02486,"88":0.00829,"89":0.01243,"90":0.00829,"91":0.02486,"92":0.00829,"93":0.00829,"94":0.01243,"95":0.00829,"96":0.00829,"97":0.01243,"98":0.00414,"99":0.02072,"100":0.00829,"101":0.00414,"102":0.03729,"103":0.02486,"104":0.00829,"105":0.02486,"106":0.02486,"107":0.029,"108":0.04972,"109":1.86849,"110":0.09529,"111":3.84885,"112":4.085,"113":0.00414,"114":0,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.029,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00414,"37":0,"38":0,"39":0,"40":0.00829,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.02486,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.00414,"68":0.00414,"69":0.00414,"70":0,"71":0,"72":0.00414,"73":0,"74":0.00414,"75":0,"76":0,"77":0,"78":0,"79":0.00414,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00414,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.058,"96":0.13672,"97":0.41016,"98":0.01243,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00414,"13":0,"14":0.00414,"15":0,"16":0,"17":0,"18":0.00414,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0.00829,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00829,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0.00414,"107":0.00414,"108":0.01657,"109":0.02072,"110":0.01657,"111":0.24858,"112":0.48473,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00414,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00414,"13.1":0.01243,"14.1":0.02072,"15.1":0.00414,"15.2-15.3":0.00414,"15.4":0.00414,"15.5":0.00829,"15.6":0.05386,"16.0":0.00829,"16.1":0.01243,"16.2":0.029,"16.3":0.12015,"16.4":0.07043,"16.5":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.0034,"6.0-6.1":0,"7.0-7.1":0.01475,"8.1-8.4":0.01134,"9.0-9.2":0.00113,"9.3":0.09188,"10.0-10.2":0,"10.3":0.11569,"11.0-11.2":0.00227,"11.3-11.4":0.00454,"12.0-12.1":0.00227,"12.2-12.5":0.27336,"13.0-13.1":0.00454,"13.2":0,"13.3":0.00907,"13.4-13.7":0.03063,"14.0-14.4":0.07146,"14.5-14.8":0.26088,"15.0-15.1":0.03063,"15.2-15.3":0.06352,"15.4":0.07713,"15.5":0.14178,"15.6":0.49567,"16.0":0.68623,"16.1":1.18303,"16.2":0.93463,"16.3":3.9994,"16.4":1.95433,"16.5":0.06125},P:{"4":0.45732,"20":3.89226,"5.0-5.4":0.02033,"6.2-6.4":0,"7.2-7.4":0.07114,"8.2":0,"9.2":0.01016,"10.1":0,"11.1-11.2":0.04065,"12.0":0.01016,"13.0":0.05081,"14.0":0.03049,"15.0":0.02033,"16.0":0.07114,"17.0":0.04065,"18.0":0.07114,"19.0":0.1626},I:{"0":0,"3":0,"4":0.0122,"2.1":0,"2.2":0.0122,"2.3":0.00813,"4.1":0.04066,"4.2-4.3":0.03659,"4.4":0,"4.4.3-4.4.4":0.16264},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0.00414,"8":0.03314,"9":0.00829,"10":0.00414,"11":0.03729,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0.00586},N:{"10":0.01757,"11":0},R:{_:"0"},M:{"0":0.205},Q:{"13.1":0},O:{"0":0.02929},H:{"0":0.30498},L:{"0":67.06576}};
diff --git a/node_modules/caniuse-lite/data/regions/BB.js b/node_modules/caniuse-lite/data/regions/BB.js
new file mode 100644
index 0000000..9dd10c5
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/BB.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.0052,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0.02601,"106":0.0104,"107":0,"108":0,"109":0,"110":0.0052,"111":0.56691,"112":0.5357,"113":0.0104,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.0052,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.0052,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0.0156,"77":0.0052,"78":0,"79":0.17683,"80":0.03121,"81":0.0104,"83":0.03121,"84":0.0052,"85":0.0052,"86":0,"87":0.0104,"88":0,"89":0.0104,"90":0,"91":0.02601,"92":0,"93":0.0208,"94":0,"95":0.0052,"96":0.0052,"97":0.0052,"98":0.0052,"99":0.0052,"100":0.0156,"101":0,"102":0.0052,"103":0.15083,"104":0.0052,"105":0.0104,"106":0.0208,"107":0.0104,"108":0.04161,"109":0.5201,"110":0.23925,"111":6.17879,"112":6.61567,"113":0.0156,"114":0.0052,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.0052,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.0052,"68":0.03641,"69":0.02601,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0.13523,"97":0.65533,"98":0.03641,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0.08842,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.0052,"99":0,"100":0.0052,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0.0052,"107":0,"108":0.0052,"109":0.03641,"110":0.03641,"111":1.41987,"112":3.29223,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.0052,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.0052,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.06241,"14.1":0.07281,"15.1":0.0052,"15.2-15.3":0.0052,"15.4":0.0156,"15.5":0.02601,"15.6":0.24965,"16.0":0.05201,"16.1":0.14043,"16.2":0.18204,"16.3":0.80095,"16.4":0.39528,"16.5":0.0052},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.0048,"6.0-6.1":0,"7.0-7.1":0.0072,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.29765,"10.0-10.2":0,"10.3":0.09361,"11.0-11.2":0.012,"11.3-11.4":0.012,"12.0-12.1":0.0048,"12.2-12.5":0.31685,"13.0-13.1":0,"13.2":0,"13.3":0.0024,"13.4-13.7":0.03361,"14.0-14.4":0.04081,"14.5-14.8":0.21363,"15.0-15.1":0.0264,"15.2-15.3":0.10322,"15.4":0.06001,"15.5":0.13682,"15.6":0.82813,"16.0":1.45942,"16.1":2.70761,"16.2":1.49783,"16.3":9.98312,"16.4":4.78393,"16.5":0.09841},P:{"4":0.09789,"20":4.17677,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.17403,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.02175,"12.0":0,"13.0":0.02175,"14.0":0.02175,"15.0":0.01088,"16.0":0.01088,"17.0":0.06526,"18.0":0.04351,"19.0":0.13052},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.09385,"4.2-4.3":0.09385,"4.4":0,"4.4.3-4.4.4":1.45462},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0.0052,"11":0.0104,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.39352},Q:{"13.1":0},O:{"0":0.10558},H:{"0":0.26352},L:{"0":43.96728}};
diff --git a/node_modules/caniuse-lite/data/regions/BD.js b/node_modules/caniuse-lite/data/regions/BD.js
new file mode 100644
index 0000000..f145a98
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/BD.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.0061,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.0061,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0.00305,"81":0.00305,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.0061,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.01219,"103":0,"104":0,"105":0.00305,"106":0.00305,"107":0.00305,"108":0.0061,"109":0.0061,"110":0.02743,"111":0.35966,"112":0.34138,"113":0.02134,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00305,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.00305,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00305,"57":0,"58":0.00305,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.00305,"68":0,"69":0.00305,"70":0.00305,"71":0.00305,"72":0.0061,"73":0.00305,"74":0.00914,"75":0.00305,"76":0,"77":0,"78":0.0061,"79":0.00914,"80":0.00305,"81":0.00914,"83":0.0061,"84":0.00914,"85":0.02134,"86":0.01524,"87":0.01219,"88":0.00305,"89":0.00305,"90":0.00305,"91":0.00305,"92":0.00305,"93":0.00305,"94":0.01524,"95":0.0061,"96":0.01219,"97":0.00305,"98":0.00305,"99":0.0061,"100":0.0061,"101":0.0061,"102":0.00914,"103":0.01219,"104":0.0061,"105":0.01219,"106":0.01829,"107":0.01829,"108":0.03048,"109":0.49682,"110":0.05486,"111":1.90195,"112":2.20675,"113":0.01219,"114":0.0061,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00305,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.00305,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00305,"60":0.00305,"62":0,"63":0.00305,"64":0.00305,"65":0.00305,"66":0.00305,"67":0.02134,"68":0.08534,"69":0.24079,"70":0.00305,"71":0,"72":0.00305,"73":0.00305,"74":0.01219,"75":0.01219,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00305,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.01219,"96":0.02743,"97":0.11278,"98":0.0061,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0.00305,"15":0,"16":0,"17":0,"18":0.00305,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00305,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0.00305,"109":0.0061,"110":0.01219,"111":0.10058,"112":0.19812,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00305,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00305,"14.1":0.0061,"15.1":0,"15.2-15.3":0,"15.4":0.00305,"15.5":0.00305,"15.6":0.01829,"16.0":0,"16.1":0.0061,"16.2":0.0061,"16.3":0.02743,"16.4":0.01829,"16.5":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.0028,"6.0-6.1":0,"7.0-7.1":0.0575,"8.1-8.4":0.0028,"9.0-9.2":0.00386,"9.3":0.0305,"10.0-10.2":0.00245,"10.3":0.02104,"11.0-11.2":0.00526,"11.3-11.4":0.0021,"12.0-12.1":0.00421,"12.2-12.5":0.17214,"13.0-13.1":0.00316,"13.2":0.00316,"13.3":0.00736,"13.4-13.7":0.03471,"14.0-14.4":0.05925,"14.5-14.8":0.07713,"15.0-15.1":0.027,"15.2-15.3":0.04908,"15.4":0.05715,"15.5":0.08589,"15.6":0.16022,"16.0":0.16197,"16.1":0.30571,"16.2":0.20755,"16.3":0.87892,"16.4":0.61072,"16.5":0.01893},P:{"4":0.26452,"20":0.64094,"5.0-5.4":0.01017,"6.2-6.4":0.01017,"7.2-7.4":0.07122,"8.2":0,"9.2":0.01017,"10.1":0,"11.1-11.2":0.02035,"12.0":0.01017,"13.0":0.02035,"14.0":0.01017,"15.0":0.01017,"16.0":0.04069,"17.0":0.05087,"18.0":0.02035,"19.0":0.06104},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.01301,"4.4":0,"4.4.3-4.4.4":0.13442},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00965,"9":0.00322,"10":0.00322,"11":0.04183,"5.5":0},S:{"2.5":0.0139,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.11123},Q:{"13.1":0},O:{"0":2.32197},H:{"0":2.1588},L:{"0":82.11986}};
diff --git a/node_modules/caniuse-lite/data/regions/BE.js b/node_modules/caniuse-lite/data/regions/BE.js
new file mode 100644
index 0000000..0e95142
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/BE.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.01383,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.02767,"79":0,"80":0,"81":0,"82":0,"83":0.00692,"84":0,"85":0,"86":0,"87":0.0415,"88":0,"89":0,"90":0,"91":0.00692,"92":0,"93":0,"94":0.34585,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.06917,"103":0,"104":0.00692,"105":0,"106":0.00692,"107":0.00692,"108":0.01383,"109":0.01383,"110":0.02767,"111":0.98221,"112":0.88538,"113":0.00692,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.02767,"50":0,"51":0,"52":0,"53":0.00692,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.00692,"65":0,"66":0.02075,"67":0.00692,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0.0415,"75":0.0415,"76":0.0415,"77":0.0415,"78":0.62945,"79":0.85079,"80":0.02075,"81":0.01383,"83":0.08992,"84":0.01383,"85":0.02075,"86":0.00692,"87":0.0415,"88":0.00692,"89":0.01383,"90":0.00692,"91":0.00692,"92":0.02075,"93":0.03459,"94":0.02075,"95":0.05534,"96":0.00692,"97":0.01383,"98":0.00692,"99":0.01383,"100":0.01383,"101":0.01383,"102":0.02075,"103":0.22134,"104":0.02075,"105":0.06917,"106":0.0415,"107":0.05534,"108":0.22134,"109":1.18281,"110":0.56028,"111":11.29546,"112":15.71542,"113":0.02767,"114":0,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.00692,"96":0.15909,"97":0.39427,"98":0.01383,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0.00692,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00692,"93":0,"94":0,"95":0.00692,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.00692,"102":0,"103":0.00692,"104":0.00692,"105":0.00692,"106":0.00692,"107":0.01383,"108":0.04842,"109":0.15909,"110":0.11759,"111":1.63241,"112":5.42985,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00692,"14":0.05534,"15":0.01383,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.02075,"13.1":0.13142,"14.1":0.15217,"15.1":0.02767,"15.2-15.3":0.02767,"15.4":0.05534,"15.5":0.09684,"15.6":0.51186,"16.0":0.04842,"16.1":0.14526,"16.2":0.24901,"16.3":1.18972,"16.4":0.51878,"16.5":0.01383},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00271,"8.1-8.4":0.00271,"9.0-9.2":0,"9.3":0.05152,"10.0-10.2":0.00271,"10.3":0.11389,"11.0-11.2":0.01085,"11.3-11.4":0.04067,"12.0-12.1":0.01356,"12.2-12.5":0.31996,"13.0-13.1":0.00271,"13.2":0,"13.3":0.01085,"13.4-13.7":0.0461,"14.0-14.4":0.20608,"14.5-14.8":0.38233,"15.0-15.1":0.11931,"15.2-15.3":0.16812,"15.4":0.23048,"15.5":0.37691,"15.6":1.43984,"16.0":2.00655,"16.1":3.91278,"16.2":2.15569,"16.3":10.13039,"16.4":4.0348,"16.5":0.08677},P:{"4":0.05157,"20":2.33082,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.05157,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0,"12.0":0,"13.0":0.01031,"14.0":0.01031,"15.0":0,"16.0":0.01031,"17.0":0.02063,"18.0":0.02063,"19.0":0.08251},I:{"0":0,"3":0,"4":0.00659,"2.1":0,"2.2":0.00989,"2.3":0.00659,"4.1":0.01318,"4.2-4.3":0.13839,"4.4":0,"4.4.3-4.4.4":0.10544},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.01383,"9":0.00692,"10":0.00692,"11":0.18676,"5.5":0},S:{"2.5":0.00308,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.25281},Q:{"13.1":0},O:{"0":0.02158},H:{"0":0.09048},L:{"0":22.72576}};
diff --git a/node_modules/caniuse-lite/data/regions/BF.js b/node_modules/caniuse-lite/data/regions/BF.js
new file mode 100644
index 0000000..e57f6d3
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/BF.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00273,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00273,"48":0,"49":0,"50":0,"51":0,"52":0.00546,"53":0,"54":0,"55":0,"56":0.00273,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00546,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00546,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00819,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00273,"100":0.00546,"101":0,"102":0.03275,"103":0,"104":0.00273,"105":0,"106":0,"107":0,"108":0.00273,"109":0.03002,"110":0.00546,"111":0.3575,"112":0.36842,"113":0,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01637,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00273,"29":0,"30":0,"31":0,"32":0.00273,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.00273,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.00546,"71":0,"72":0,"73":0,"74":0.00273,"75":0,"76":0.00273,"77":0,"78":0.00273,"79":0.01637,"80":0,"81":0.00273,"83":0.00819,"84":0,"85":0,"86":0.02729,"87":0.02183,"88":0,"89":0.01092,"90":0.03275,"91":0,"92":0,"93":0,"94":0,"95":0.00273,"96":0.00273,"97":0.00273,"98":0,"99":0.00546,"100":0,"101":0.00273,"102":0.00819,"103":0.0191,"104":0.01092,"105":0.00546,"106":0.00273,"107":0.00273,"108":0.0191,"109":0.38206,"110":0.0191,"111":0.86782,"112":1.04794,"113":0,"114":0,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.00273,"38":0,"39":0,"40":0,"41":0,"42":0.00273,"43":0,"44":0,"45":0.00819,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0.00273,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00273,"60":0.04639,"62":0,"63":0.02456,"64":0.00819,"65":0.00273,"66":0.03821,"67":0.06277,"68":0.14191,"69":0.27836,"70":0,"71":0,"72":0,"73":0,"74":0.00546,"75":0.00273,"76":0,"77":0,"78":0,"79":0.00273,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.01092,"96":0.03821,"97":0.18557,"98":0.01092,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00546},B:{"12":0.00273,"13":0.00273,"14":0.00273,"15":0.00273,"16":0,"17":0.00273,"18":0.01365,"79":0,"80":0,"81":0,"83":0,"84":0.00273,"85":0,"86":0,"87":0,"88":0,"89":0.00273,"90":0.00273,"91":0,"92":0.00819,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0.00273,"108":0.00273,"109":0.04639,"110":0.04639,"111":0.26471,"112":0.5267,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.00273,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.01637,"14.1":0.00273,"15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0,"15.6":0.01365,"16.0":0,"16.1":0.00273,"16.2":0.00546,"16.3":0.02456,"16.4":0.01365,"16.5":0},G:{"8":0.00144,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00144,"7.0-7.1":0.00215,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00718,"10.0-10.2":0,"10.3":0.27426,"11.0-11.2":0.00862,"11.3-11.4":0,"12.0-12.1":0.24411,"12.2-12.5":0.63899,"13.0-13.1":0.00431,"13.2":0,"13.3":0.01364,"13.4-13.7":0.02585,"14.0-14.4":0.22257,"14.5-14.8":0.12923,"15.0-15.1":0.19026,"15.2-15.3":0.12062,"15.4":0.06246,"15.5":0.11918,"15.6":0.26708,"16.0":0.86874,"16.1":0.50616,"16.2":0.38842,"16.3":1.47613,"16.4":0.98433,"16.5":0.03805},P:{"4":0,"20":0.66238,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.05175,"8.2":0,"9.2":0.0207,"10.1":0,"11.1-11.2":0.01035,"12.0":0,"13.0":0,"14.0":0.01035,"15.0":0.01035,"16.0":0.1035,"17.0":0.13455,"18.0":0.0828,"19.0":0.05175},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00725,"4.2-4.3":0.00339,"4.4":0,"4.4.3-4.4.4":0.17846},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.02456,"5.5":0},S:{"2.5":0.01454,_:"3.0-3.1"},J:{"7":0,"10":0.02181},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.10179},Q:{"13.1":0.03636},O:{"0":0.43626},H:{"0":6.43627},L:{"0":77.39236}};
diff --git a/node_modules/caniuse-lite/data/regions/BG.js b/node_modules/caniuse-lite/data/regions/BG.js
new file mode 100644
index 0000000..e8fb8c9
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/BG.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.00443,"49":0,"50":0,"51":0,"52":0.0487,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.00443,"65":0,"66":0.02214,"67":0,"68":0.00443,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.02214,"79":0,"80":0.00885,"81":0,"82":0,"83":0.00885,"84":0.00885,"85":0,"86":0,"87":0,"88":0.00885,"89":0.00443,"90":0.00443,"91":0.00443,"92":0,"93":0,"94":0.00443,"95":0,"96":0.00443,"97":0.00443,"98":0.00443,"99":0.00885,"100":0.00443,"101":0,"102":0.10182,"103":0.00885,"104":0.00443,"105":0.00443,"106":0.00885,"107":0.00885,"108":0.02656,"109":0.01771,"110":0.03099,"111":1.10232,"112":1.01378,"113":0.00885,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0.00443,"34":0.00443,"35":0,"36":0,"37":0,"38":0.00885,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00443,"48":0,"49":0.05755,"50":0,"51":0,"52":0,"53":0.00443,"54":0,"55":0,"56":0.00443,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00443,"64":0,"65":0.00443,"66":0,"67":0.00443,"68":0,"69":0.00443,"70":0.00443,"71":0.00443,"72":0,"73":0,"74":0.00443,"75":0.00443,"76":0.00443,"77":0.00443,"78":0.00443,"79":0.07083,"80":0.00443,"81":0.02214,"83":0.00885,"84":0.00443,"85":0.00443,"86":0.00443,"87":0.01771,"88":0.00885,"89":0.00443,"90":0.00443,"91":0.00443,"92":0.00443,"93":0.03542,"94":0.02214,"95":0.01328,"96":0.00443,"97":0.00885,"98":0.00885,"99":0.02214,"100":0.01328,"101":0.00443,"102":0.00885,"103":0.03984,"104":0.01328,"105":0.01328,"106":0.03984,"107":0.02214,"108":0.06198,"109":1.85934,"110":0.07969,"111":4.30747,"112":4.92282,"113":0.00443,"114":0.00443,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.02656,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00885,"37":0,"38":0,"39":0,"40":0.00443,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.01328,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.00885,"70":0,"71":0,"72":0,"73":0,"74":0.00443,"75":0.00443,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0.00443,"83":0,"84":0,"85":0.00443,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0.01771,"95":0.06641,"96":0.12396,"97":0.41171,"98":0.01771,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00443,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00443,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0.00443,"104":0,"105":0,"106":0,"107":0.00443,"108":0.00443,"109":0.05312,"110":0.02656,"111":0.394,"112":0.98722,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00885,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00443,"13.1":0.01328,"14.1":0.02214,"15.1":0.00443,"15.2-15.3":0.00443,"15.4":0.00885,"15.5":0.00885,"15.6":0.05755,"16.0":0.00443,"16.1":0.01771,"16.2":0.02656,"16.3":0.12396,"16.4":0.06198,"16.5":0.00443},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00596,"6.0-6.1":0,"7.0-7.1":0.01342,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.02832,"10.0-10.2":0.00149,"10.3":0.05814,"11.0-11.2":0.01491,"11.3-11.4":0.00596,"12.0-12.1":0.00596,"12.2-12.5":0.20124,"13.0-13.1":0.00745,"13.2":0.00149,"13.3":0.01491,"13.4-13.7":0.05515,"14.0-14.4":0.11776,"14.5-14.8":0.32496,"15.0-15.1":0.06559,"15.2-15.3":0.09391,"15.4":0.11776,"15.5":0.19975,"15.6":0.55303,"16.0":1.13885,"16.1":1.87672,"16.2":1.08519,"16.3":5.36335,"16.4":2.66229,"16.5":0.06857},P:{"4":0.25565,"20":2.58714,"5.0-5.4":0.02045,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.02045,"12.0":0.01023,"13.0":0.02045,"14.0":0.03068,"15.0":0.01023,"16.0":0.0409,"17.0":0.0409,"18.0":0.06136,"19.0":0.18407},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01531,"4.2-4.3":0.04082,"4.4":0,"4.4.3-4.4.4":0.18371},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00443,"9":0,"10":0,"11":0.08854,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.20063},Q:{"13.1":0},O:{"0":0.02787},H:{"0":0.27964},L:{"0":62.92399}};
diff --git a/node_modules/caniuse-lite/data/regions/BH.js b/node_modules/caniuse-lite/data/regions/BH.js
new file mode 100644
index 0000000..0e0e070
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/BH.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00324,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00324,"53":0.00324,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00324,"67":0,"68":0.00324,"69":0,"70":0,"71":0,"72":0.00324,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.04856,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0.00324,"110":0.00971,"111":0.42081,"112":0.12624,"113":0,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00647,"48":0,"49":0.00647,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.00324,"56":0.00324,"57":0,"58":0.00647,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.01295,"66":0,"67":0,"68":0.00324,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0.00971,"77":0.00324,"78":0.00324,"79":0.03561,"80":0.00324,"81":0.01942,"83":0.00324,"84":0.00324,"85":0,"86":0.00324,"87":0.02266,"88":0.00647,"89":0.00324,"90":0.00324,"91":0.00324,"92":0.00324,"93":0.00324,"94":0.00324,"95":0.00647,"96":0.00324,"97":0.00647,"98":0.00647,"99":0.0259,"100":0.00324,"101":0.00647,"102":0.01295,"103":0.03884,"104":0.00324,"105":0.01295,"106":0.00971,"107":0.01619,"108":0.03884,"109":0.41757,"110":0.08416,"111":2.67376,"112":2.87446,"113":0.00324,"114":0,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00971,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00324,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00647,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.00324,"70":0,"71":0,"72":0,"73":0.00324,"74":0.01619,"75":0.01619,"76":0.00324,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0.00324,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.00324,"94":0.00324,"95":0.01619,"96":0.04532,"97":0.04856,"98":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00324,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00324,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0.00324,"107":0.00324,"108":0.00971,"109":0.00971,"110":0.03237,"111":0.28486,"112":0.61827,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00324,"14":0.01942,"15":0.00324,_:"0","3.1":0,"3.2":0,"5.1":0.00324,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00324,"13.1":0.01295,"14.1":0.08093,"15.1":0.00971,"15.2-15.3":0.00324,"15.4":0.01619,"15.5":0.0259,"15.6":0.11977,"16.0":0.00971,"16.1":0.05179,"16.2":0.07445,"16.3":0.23306,"16.4":0.10358,"16.5":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.02197,"8.1-8.4":0,"9.0-9.2":0.00275,"9.3":0.13458,"10.0-10.2":0,"10.3":0.03845,"11.0-11.2":0.01923,"11.3-11.4":0.00275,"12.0-12.1":0.01373,"12.2-12.5":0.4422,"13.0-13.1":0.03845,"13.2":0,"13.3":0.03021,"13.4-13.7":0.06043,"14.0-14.4":0.26367,"14.5-14.8":0.50538,"15.0-15.1":0.19226,"15.2-15.3":0.19501,"15.4":0.26367,"15.5":0.49439,"15.6":1.42,"16.0":2.28793,"16.1":2.92514,"16.2":1.78255,"16.3":8.87155,"16.4":5.96015,"16.5":0.10712},P:{"4":0.13225,"20":2.69591,"5.0-5.4":0,"6.2-6.4":0.02035,"7.2-7.4":0.08139,"8.2":0,"9.2":0.01017,"10.1":0,"11.1-11.2":0.14243,"12.0":0,"13.0":0.03052,"14.0":0.03052,"15.0":0.02035,"16.0":0.07121,"17.0":0.06104,"18.0":0.10173,"19.0":0.18312},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01239,"4.2-4.3":0.00929,"4.4":0,"4.4.3-4.4.4":0.07126},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01619,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.55457},Q:{"13.1":0},O:{"0":4.28774},H:{"0":0.94761},L:{"0":52.02785}};
diff --git a/node_modules/caniuse-lite/data/regions/BI.js b/node_modules/caniuse-lite/data/regions/BI.js
new file mode 100644
index 0000000..9c382b9
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/BI.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.01807,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.00516,"46":0,"47":0.00258,"48":0,"49":0,"50":0,"51":0,"52":0.00258,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00258,"69":0,"70":0,"71":0,"72":0.01032,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0.00258,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00516,"92":0.00258,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00516,"103":0,"104":0,"105":0,"106":0.00258,"107":0.00258,"108":0.00258,"109":0.00774,"110":0.01291,"111":0.22197,"112":0.24261,"113":0.00774,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00258,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.00258,"56":0,"57":0,"58":0,"59":0.00516,"60":0,"61":0,"62":0,"63":0.00258,"64":0.00516,"65":0,"66":0.01549,"67":0,"68":0.07485,"69":0,"70":0,"71":0,"72":0,"73":0.02323,"74":0,"75":0.00258,"76":0.00258,"77":0,"78":0.00258,"79":0.00516,"80":0.01549,"81":0.01032,"83":0,"84":0.00258,"85":0,"86":0.00516,"87":0.00258,"88":0.00258,"89":0,"90":0.00258,"91":0,"92":0.00258,"93":0.00258,"94":0.00516,"95":0.00258,"96":0,"97":0,"98":0,"99":0.00774,"100":0.00258,"101":0.01032,"102":0.00774,"103":0.04904,"104":0.03097,"105":0.01032,"106":0.03613,"107":0.01032,"108":0.01032,"109":0.5033,"110":0.02065,"111":0.96013,"112":1.01691,"113":0.02323,"114":0.01291,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0.00258,"24":0.00774,"25":0,"26":0.00258,"27":0.00258,"28":0.00258,"29":0,"30":0.00258,"31":0,"32":0.01549,"33":0,"34":0,"35":0,"36":0,"37":0.17809,"38":0.00258,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00258,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00516,"60":0.02581,"62":0,"63":0.0955,"64":0.14454,"65":0.00516,"66":0.06194,"67":0.09034,"68":0.07485,"69":0.25552,"70":0.00258,"71":0,"72":0.00516,"73":0,"74":0.02581,"75":0.00258,"76":0,"77":0,"78":0,"79":0.00774,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0.00516,"95":0.00516,"96":0.01807,"97":0.18067,"98":0.01291,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00258},B:{"12":0.00516,"13":0,"14":0,"15":0.00258,"16":0,"17":0.00258,"18":0.01291,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0.00258,"86":0,"87":0,"88":0,"89":0.00516,"90":0.02581,"91":0,"92":0.00516,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00258,"101":0,"102":0,"103":0,"104":0,"105":0.00516,"106":0,"107":0.00258,"108":0.00516,"109":0.01032,"110":0.01549,"111":0.14196,"112":0.2994,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00258,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.07485,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0,"14.1":0.00774,"15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0.00258,"15.6":0.00516,"16.0":0,"16.1":0,"16.2":0.00258,"16.3":0.00774,"16.4":0.00516,"16.5":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00358,"6.0-6.1":0,"7.0-7.1":0.00748,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.07837,"10.0-10.2":0.00293,"10.3":0.02439,"11.0-11.2":0.00976,"11.3-11.4":0.00065,"12.0-12.1":0.10471,"12.2-12.5":0.45333,"13.0-13.1":0.00325,"13.2":0.00585,"13.3":0.01398,"13.4-13.7":0.09528,"14.0-14.4":0.13008,"14.5-14.8":0.06504,"15.0-15.1":0.12618,"15.2-15.3":0.11447,"15.4":0.04358,"15.5":0.2413,"15.6":0.07219,"16.0":0.16032,"16.1":0.3278,"16.2":0.31805,"16.3":0.45398,"16.4":0.18146,"16.5":0.0052},P:{"4":0.40868,"20":0.43933,"5.0-5.4":0.03065,"6.2-6.4":0.27586,"7.2-7.4":0.07152,"8.2":0,"9.2":0.01022,"10.1":0,"11.1-11.2":0.04087,"12.0":0,"13.0":0.0613,"14.0":0.01022,"15.0":0.05109,"16.0":0.21456,"17.0":0.01022,"18.0":0.03065,"19.0":0.13282},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00014,"4.2-4.3":0.0086,"4.4":0,"4.4.3-4.4.4":0.02191},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.02581,"5.5":0},S:{"2.5":0.17064,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.0371},Q:{"13.1":0.00742},O:{"0":0.39321},H:{"0":15.94409},L:{"0":68.19319}};
diff --git a/node_modules/caniuse-lite/data/regions/BJ.js b/node_modules/caniuse-lite/data/regions/BJ.js
new file mode 100644
index 0000000..f59e8e8
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/BJ.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00274,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00549,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00274,"92":0,"93":0,"94":0,"95":0.00274,"96":0.00549,"97":0,"98":0.00274,"99":0.00274,"100":0.00274,"101":0.00274,"102":0.01646,"103":0,"104":0,"105":0,"106":0,"107":0.01921,"108":0,"109":0.00274,"110":0.01098,"111":0.17562,"112":0.16738,"113":0.00549,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0.00274,"43":0,"44":0,"45":0,"46":0.00274,"47":0.00274,"48":0,"49":0,"50":0.00274,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00274,"57":0,"58":0,"59":0,"60":0,"61":0.01372,"62":0,"63":0.00274,"64":0,"65":0,"66":0.00274,"67":0,"68":0.00274,"69":0,"70":0.00549,"71":0,"72":0,"73":0.00274,"74":0.02744,"75":0,"76":0.00549,"77":0.00274,"78":0.00274,"79":0.00274,"80":0.01098,"81":0.01372,"83":0.00549,"84":0,"85":0.00274,"86":0.00823,"87":0.01098,"88":0.00549,"89":0.00274,"90":0.00274,"91":0.00823,"92":0.00274,"93":0.00274,"94":0.01098,"95":0.01098,"96":0.00274,"97":0.00274,"98":0.01098,"99":0.00823,"100":0.00274,"101":0.00274,"102":0.01098,"103":0.0247,"104":0.01098,"105":0.01372,"106":0.00549,"107":0.01372,"108":0.03567,"109":0.50215,"110":0.06037,"111":1.08662,"112":1.28145,"113":0,"114":0,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0.00274,"23":0,"24":0.00823,"25":0,"26":0,"27":0.00274,"28":0,"29":0,"30":0,"31":0,"32":0.00274,"33":0,"34":0,"35":0,"36":0,"37":0.00274,"38":0,"39":0,"40":0,"41":0,"42":0.00274,"43":0,"44":0,"45":0,"46":0.00823,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00274,"57":0.00549,"58":0.00274,"60":0.02744,"62":0,"63":0.31007,"64":0.00549,"65":0.00274,"66":0.0247,"67":0.06037,"68":0.05214,"69":0.07134,"70":0.00549,"71":0,"72":0,"73":0,"74":0.00274,"75":0.00549,"76":0,"77":0,"78":0,"79":0.00549,"80":0,"81":0,"82":0.00823,"83":0.00549,"84":0,"85":0.00549,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.03293,"96":0.0247,"97":0.09604,"98":0.00823,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00549},B:{"12":0.00274,"13":0,"14":0.00274,"15":0.05214,"16":0,"17":0,"18":0.00549,"79":0,"80":0,"81":0,"83":0,"84":0.00274,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00549,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00274,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0.00549,"108":0.00274,"109":0.00549,"110":0.03567,"111":0.13171,"112":0.23873,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.00823,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00274,"14.1":0.00274,"15.1":0.00549,"15.2-15.3":0.00823,"15.4":0,"15.5":0.01372,"15.6":0.01921,"16.0":0.00274,"16.1":0.00549,"16.2":0.01921,"16.3":0.07683,"16.4":0.04116,"16.5":0.00274},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00117,"7.0-7.1":0.07623,"8.1-8.4":0,"9.0-9.2":0.00117,"9.3":0.02463,"10.0-10.2":0,"10.3":0.01876,"11.0-11.2":0.00352,"11.3-11.4":0.00235,"12.0-12.1":0.06919,"12.2-12.5":0.94058,"13.0-13.1":0.08796,"13.2":0.08913,"13.3":0.03518,"13.4-13.7":0.03987,"14.0-14.4":0.40696,"14.5-14.8":0.36943,"15.0-15.1":0.12549,"15.2-15.3":0.17709,"15.4":0.30375,"15.5":0.48319,"15.6":0.74355,"16.0":1.03557,"16.1":1.05786,"16.2":0.68139,"16.3":2.81,"16.4":0.95934,"16.5":0.03284},P:{"4":0.4126,"20":0.2785,"5.0-5.4":0,"6.2-6.4":0.09283,"7.2-7.4":0.02063,"8.2":0,"9.2":0.02063,"10.1":0,"11.1-11.2":0.01031,"12.0":0,"13.0":0.02063,"14.0":0,"15.0":0.03094,"16.0":0.01031,"17.0":0.01031,"18.0":0.11346,"19.0":0.03094},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.001,"4.2-4.3":0.01099,"4.4":0,"4.4.3-4.4.4":0.05996},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00823,"5.5":0},S:{"2.5":0.10884,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.07256},Q:{"13.1":0.01451},O:{"0":0.55146},H:{"0":7.19925},L:{"0":72.34738}};
diff --git a/node_modules/caniuse-lite/data/regions/BM.js b/node_modules/caniuse-lite/data/regions/BM.js
new file mode 100644
index 0000000..25198d9
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/BM.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0,"111":0.0178,"112":0.01526,"113":0,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0.00254,"78":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00254,"101":0,"102":0,"103":0.00254,"104":0,"105":0,"106":0,"107":0.01017,"108":0.01017,"109":0.0356,"110":0.04323,"111":0.38399,"112":0.34585,"113":0,"114":0,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0.00763,"95":0,"96":0.00509,"97":0.01272,"98":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0.01017,"111":0.07883,"112":0.16784,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00254,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.0356,"14.1":0.0534,"15.1":0.02034,"15.2-15.3":0.0356,"15.4":0.07629,"15.5":0.13987,"15.6":0.7807,"16.0":0.04323,"16.1":0.21361,"16.2":0.40688,"16.3":2.12849,"16.4":1.04772,"16.5":0.01526},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.03777,"10.0-10.2":0,"10.3":0,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0.00944,"12.2-12.5":0.18883,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0,"14.0-14.4":0,"14.5-14.8":0.05665,"15.0-15.1":0.1605,"15.2-15.3":0.33989,"15.4":0.50984,"15.5":1.69002,"15.6":6.61846,"16.0":5.36275,"16.1":12.84983,"16.2":7.49652,"16.3":38.81385,"16.4":16.29596,"16.5":0.31157},P:{"4":0.03221,"20":0.50469,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0,"12.0":0,"13.0":0,"14.0":0,"15.0":0,"16.0":0,"17.0":0,"18.0":0,"19.0":0},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.04069},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.02237},Q:{"13.1":0},O:{"0":0},H:{"0":0.00706},L:{"0":2.14199}};
diff --git a/node_modules/caniuse-lite/data/regions/BN.js b/node_modules/caniuse-lite/data/regions/BN.js
new file mode 100644
index 0000000..50f844f
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/BN.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.0048,"49":0,"50":0,"51":0,"52":0.0096,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0.0048,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.0096,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.0048,"100":0.0048,"101":0,"102":0,"103":0,"104":0.0096,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0.0096,"111":0.54743,"112":0.45139,"113":0.0048,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.01921,"39":0,"40":0,"41":0,"42":0,"43":0.0048,"44":0.0096,"45":0.0048,"46":0,"47":0.02881,"48":0,"49":0.26891,"50":0.0048,"51":0,"52":0,"53":0.0048,"54":0,"55":0.0096,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0.02401,"63":0,"64":0,"65":0.0048,"66":0.0048,"67":0,"68":0.0048,"69":0.0096,"70":0.0048,"71":0.02401,"72":0.0048,"73":0.01441,"74":0,"75":0.0048,"76":0,"77":0,"78":0,"79":0.08644,"80":0.0048,"81":0.0096,"83":0.0048,"84":0,"85":0.0096,"86":0,"87":0.01921,"88":0.02401,"89":0.0048,"90":0,"91":0.01441,"92":0.0096,"93":0,"94":0.0048,"95":0.01441,"96":0.0096,"97":0.01441,"98":0.02881,"99":0.05282,"100":0.0048,"101":0.0048,"102":0.01441,"103":0.13446,"104":0.0048,"105":0.0048,"106":0.01921,"107":0.01441,"108":0.03842,"109":1.06124,"110":0.07203,"111":5.82963,"112":5.38304,"113":0.0096,"114":0,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.01921,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.0096,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.01441,"56":0,"57":0,"58":0,"60":0.0048,"62":0,"63":0.0048,"64":0.0096,"65":0,"66":0.0048,"67":0.01441,"68":0.06723,"69":0.2353,"70":0,"71":0,"72":0,"73":0,"74":0.01921,"75":0.0048,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.02881,"96":0.11525,"97":0.33614,"98":0.0048,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.0048},B:{"12":0.0048,"13":0,"14":0.0048,"15":0,"16":0,"17":0,"18":0.0048,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.0048,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0.0048,"107":0.0048,"108":0.07683,"109":0.01441,"110":0.02401,"111":0.43218,"112":0.7107,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0.0048,"13":0.03361,"14":0.07683,"15":0.0096,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.02401,"13.1":0.04802,"14.1":0.43218,"15.1":0.04322,"15.2-15.3":0.0096,"15.4":0.05282,"15.5":0.04802,"15.6":0.40337,"16.0":0.04322,"16.1":0.13446,"16.2":0.26411,"16.3":0.85476,"16.4":0.44659,"16.5":0.0048},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00501,"7.0-7.1":0.04756,"8.1-8.4":0.07259,"9.0-9.2":0.01502,"9.3":0.1577,"10.0-10.2":0.0025,"10.3":0.54069,"11.0-11.2":0.01502,"11.3-11.4":0.0025,"12.0-12.1":0.1577,"12.2-12.5":0.72844,"13.0-13.1":0.03755,"13.2":0,"13.3":0.01001,"13.4-13.7":0.04506,"14.0-14.4":0.29788,"14.5-14.8":0.35295,"15.0-15.1":0.18273,"15.2-15.3":0.19525,"15.4":0.24532,"15.5":0.36797,"15.6":1.04634,"16.0":1.82485,"16.1":2.8787,"16.2":1.6321,"16.3":7.75246,"16.4":4.70104,"16.5":0.05006},P:{"4":0.66646,"20":1.55508,"5.0-5.4":0.01058,"6.2-6.4":0.01058,"7.2-7.4":0.10579,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.02116,"12.0":0,"13.0":0.05289,"14.0":0.02116,"15.0":0.01058,"16.0":0.05289,"17.0":0.11637,"18.0":0.03174,"19.0":0.05289},I:{"0":0,"3":0.00281,"4":0.03652,"2.1":0.00562,"2.2":0.01967,"2.3":0.02528,"4.1":0.03933,"4.2-4.3":0.059,"4.4":0,"4.4.3-4.4.4":0.17137},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.0048,"7":0.0096,"8":0.09604,"9":0.01441,"10":0.01921,"11":0.06243,"5.5":0},S:{"2.5":0.0052,_:"3.0-3.1"},J:{"7":0,"10":0.02079},N:{"10":0.02426,"11":0.01213},R:{_:"0"},M:{"0":0.21312},Q:{"13.1":0.0104},O:{"0":1.47103},H:{"0":1.87495},L:{"0":47.10931}};
diff --git a/node_modules/caniuse-lite/data/regions/BO.js b/node_modules/caniuse-lite/data/regions/BO.js
new file mode 100644
index 0000000..d69e0aa
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/BO.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.01388,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.00463,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00463,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00463,"79":0.00463,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00463,"89":0.00463,"90":0,"91":0.00463,"92":0,"93":0.00463,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00463,"100":0.00463,"101":0.00463,"102":0.01388,"103":0.00463,"104":0.00463,"105":0,"106":0.00925,"107":0.00463,"108":0.01388,"109":0.00925,"110":0.01851,"111":0.55061,"112":0.49972,"113":0.00463,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00463,"35":0,"36":0,"37":0,"38":0.00463,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00463,"48":0,"49":0.00925,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00463,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0.00463,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.01851,"69":0.00925,"70":0.00925,"71":0,"72":0.00463,"73":0.00463,"74":0.00463,"75":0.00463,"76":0.00463,"77":0.00463,"78":0.00463,"79":0.07866,"80":0.00925,"81":0.00925,"83":0.00925,"84":0.00925,"85":0.00463,"86":0.00925,"87":0.03239,"88":0.00925,"89":0.00463,"90":0.00463,"91":0.04164,"92":0.00925,"93":0.00463,"94":0.39792,"95":0.00925,"96":0.01388,"97":0.01851,"98":0.00925,"99":0.01851,"100":0.01851,"101":0.01851,"102":0.01851,"103":0.06015,"104":0.02314,"105":0.02776,"106":0.02776,"107":0.05552,"108":0.27762,"109":2.10529,"110":0.12493,"111":4.49282,"112":5.84853,"113":0.00463,"114":0.00463,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.01851,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00463,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00925,"69":0.02776,"70":0,"71":0,"72":0.01388,"73":0,"74":0.00925,"75":0.00463,"76":0,"77":0,"78":0,"79":0.00463,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.06015,"96":0.18508,"97":0.59226,"98":0.01851,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00463},B:{"12":0,"13":0,"14":0.00463,"15":0,"16":0,"17":0,"18":0.00925,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00925,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0.00463,"106":0,"107":0.00463,"108":0.00463,"109":0.05552,"110":0.01388,"111":0.25449,"112":0.70793,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00463,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.00463,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.01388,"14.1":0.03239,"15.1":0,"15.2-15.3":0,"15.4":0.00463,"15.5":0.01851,"15.6":0.02314,"16.0":0.00463,"16.1":0.00925,"16.2":0.01851,"16.3":0.05552,"16.4":0.03239,"16.5":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00372,"6.0-6.1":0.00159,"7.0-7.1":0.0186,"8.1-8.4":0.00903,"9.0-9.2":0.00159,"9.3":0.02125,"10.0-10.2":0,"10.3":0.00744,"11.0-11.2":0.01222,"11.3-11.4":0.00372,"12.0-12.1":0.00106,"12.2-12.5":0.14027,"13.0-13.1":0.00159,"13.2":0.00159,"13.3":0.00478,"13.4-13.7":0.02178,"14.0-14.4":0.08448,"14.5-14.8":0.0882,"15.0-15.1":0.02869,"15.2-15.3":0.05845,"15.4":0.03613,"15.5":0.08076,"15.6":0.18437,"16.0":0.34324,"16.1":0.75342,"16.2":0.35386,"16.3":1.73744,"16.4":0.8209,"16.5":0.01381},P:{"4":0.4287,"20":1.95978,"5.0-5.4":0.01021,"6.2-6.4":0.01021,"7.2-7.4":0.44912,"8.2":0,"9.2":0.02041,"10.1":0,"11.1-11.2":0.05104,"12.0":0.01021,"13.0":0.05104,"14.0":0.05104,"15.0":0.03062,"16.0":0.10207,"17.0":0.12249,"18.0":0.08166,"19.0":0.23477},I:{"0":0,"3":0,"4":0.00664,"2.1":0,"2.2":0.00995,"2.3":0.00664,"4.1":0.00995,"4.2-4.3":0.02322,"4.4":0,"4.4.3-4.4.4":0.14599},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.02776,"9":0.00463,"10":0.00463,"11":0.03239,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0.01075},N:{"10":0.00537,"11":0.00537},R:{_:"0"},M:{"0":0.12358},Q:{"13.1":0},O:{"0":0.1988},H:{"0":0.38151},L:{"0":70.56554}};
diff --git a/node_modules/caniuse-lite/data/regions/BR.js b/node_modules/caniuse-lite/data/regions/BR.js
new file mode 100644
index 0000000..6aecaa0
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/BR.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00466,"48":0,"49":0,"50":0,"51":0,"52":0.00932,"53":0,"54":0.03728,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00466,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0.00466,"76":0,"77":0,"78":0.00466,"79":0.00466,"80":0.00466,"81":0.00466,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.00466,"88":0.00466,"89":0,"90":0,"91":0.00466,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.02796,"103":0.00466,"104":0.00466,"105":0.00466,"106":0.00932,"107":0.00466,"108":0.00466,"109":0.00932,"110":0.01398,"111":0.3728,"112":0.35416,"113":0.00466,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00466,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00466,"48":0,"49":0.00932,"50":0,"51":0.00466,"52":0,"53":0,"54":0,"55":0.00466,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00466,"64":0,"65":0.00466,"66":0,"67":0,"68":0,"69":0,"70":0.00466,"71":0,"72":0.00466,"73":0,"74":0.00466,"75":0.00466,"76":0.00466,"77":0.01864,"78":0.00466,"79":0.06058,"80":0.00466,"81":0.02796,"83":0.01398,"84":0.01864,"85":0.03728,"86":0.0233,"87":0.03728,"88":0.00466,"89":0.00466,"90":0.04194,"91":0.45202,"92":0.03262,"93":0.03262,"94":0.0466,"95":0.00932,"96":0.00932,"97":0.00932,"98":0.00932,"99":0.00932,"100":0.01398,"101":0.00466,"102":0.01398,"103":0.0466,"104":0.01398,"105":0.0233,"106":0.02796,"107":0.0466,"108":0.0699,"109":1.39334,"110":0.11184,"111":4.88368,"112":6.09062,"113":0.01864,"114":0.00466,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00466,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00466,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00466,"69":0.00932,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00466,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.05126,"96":0.6524,"97":1.36072,"98":0.03262,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.03262,"16":0,"17":0,"18":0.00932,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00932,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0.00466,"108":0.00466,"109":0.03728,"110":0.01864,"111":0.50794,"112":1.19296,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00932,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.00466,"10.1":0,"11.1":0,"12.1":0.00466,"13.1":0.01398,"14.1":0.01398,"15.1":0,"15.2-15.3":0.00466,"15.4":0.00466,"15.5":0.00932,"15.6":0.03728,"16.0":0.00466,"16.1":0.01398,"16.2":0.01864,"16.3":0.0932,"16.4":0.05126,"16.5":0},G:{"8":0.0016,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.0032,"8.1-8.4":0.0016,"9.0-9.2":0,"9.3":0.03359,"10.0-10.2":0.0016,"10.3":0.03519,"11.0-11.2":0.0128,"11.3-11.4":0.03199,"12.0-12.1":0.016,"12.2-12.5":0.17595,"13.0-13.1":0.0048,"13.2":0.0032,"13.3":0.0144,"13.4-13.7":0.06398,"14.0-14.4":0.11676,"14.5-14.8":0.3087,"15.0-15.1":0.06238,"15.2-15.3":0.07518,"15.4":0.10237,"15.5":0.19674,"15.6":0.67339,"16.0":1.08287,"16.1":1.96419,"16.2":1.07167,"16.3":5.96936,"16.4":2.47764,"16.5":0.08317},P:{"4":0.15189,"20":2.03537,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.1924,"8.2":0,"9.2":0.01013,"10.1":0,"11.1-11.2":0.03038,"12.0":0.01013,"13.0":0.02025,"14.0":0.02025,"15.0":0.01013,"16.0":0.03038,"17.0":0.09114,"18.0":0.03038,"19.0":0.10126},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01161,"4.2-4.3":0.04064,"4.4":0,"4.4.3-4.4.4":0.08708},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00499,"9":0.00999,"10":0,"11":0.05492,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.12816},Q:{"13.1":0},O:{"0":0.0801},H:{"0":0.24267},L:{"0":60.35914}};
diff --git a/node_modules/caniuse-lite/data/regions/BS.js b/node_modules/caniuse-lite/data/regions/BS.js
new file mode 100644
index 0000000..5c25901
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/BS.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.04727,"49":0,"50":0,"51":0,"52":0.0043,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.0043,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00859,"103":0,"104":0,"105":0,"106":0,"107":0.0043,"108":0.03008,"109":0.00859,"110":0.03438,"111":0.24063,"112":0.24063,"113":0,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.00859,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.0043,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.0043,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0.0043,"72":0,"73":0,"74":0,"75":0.00859,"76":0.05586,"77":0.0043,"78":0,"79":0.0043,"80":0,"81":0,"83":0.00859,"84":0,"85":0.00859,"86":0.0043,"87":0.02578,"88":0,"89":0,"90":0.01289,"91":0.01289,"92":0,"93":0.03438,"94":0.01289,"95":0.0043,"96":0,"97":0.00859,"98":0.01289,"99":0.01289,"100":0.0043,"101":0.0043,"102":0.01719,"103":0.10313,"104":0.0043,"105":0.03008,"106":0.01289,"107":0.01719,"108":0.05156,"109":0.5672,"110":0.1418,"111":3.12392,"112":3.4333,"113":0.0043,"114":0.0043,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.0043,"69":0.0043,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.0043,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0.02578,"97":0.09024,"98":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.0043,"13":0.00859,"14":0.03008,"15":0.00859,"16":0.0043,"17":0.0043,"18":0.00859,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0.0043,"106":0,"107":0.00859,"108":0.0043,"109":0.03008,"110":0.03438,"111":0.92386,"112":2.01959,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.0043,"14":0.04297,"15":0.00859,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.0043,"12.1":0.01719,"13.1":0.09024,"14.1":0.12461,"15.1":0.01719,"15.2-15.3":0.03008,"15.4":0.08594,"15.5":0.12032,"15.6":0.5758,"16.0":0.05156,"16.1":0.20196,"16.2":0.33517,"16.3":1.39653,"16.4":0.55002,"16.5":0.02149},G:{"8":0.01028,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0.01028,"9.0-9.2":0,"9.3":0.06683,"10.0-10.2":0,"10.3":0.07197,"11.0-11.2":0.00514,"11.3-11.4":0.0257,"12.0-12.1":0.01542,"12.2-12.5":0.42156,"13.0-13.1":0.00514,"13.2":0,"13.3":0.01028,"13.4-13.7":0.04627,"14.0-14.4":0.28789,"14.5-14.8":1.16185,"15.0-15.1":0.15937,"15.2-15.3":0.39071,"15.4":0.41128,"15.5":0.70945,"15.6":2.62702,"16.0":3.19767,"16.1":7.07394,"16.2":4.02536,"16.3":20.3273,"16.4":7.85022,"16.5":0.15423},P:{"4":0.02078,"20":3.53333,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.17667,"8.2":0,"9.2":0.02078,"10.1":0,"11.1-11.2":0.04157,"12.0":0,"13.0":0.05196,"14.0":0.06235,"15.0":0.01039,"16.0":0.05196,"17.0":0.02078,"18.0":0.04157,"19.0":0.17667},I:{"0":0,"3":0,"4":0.04984,"2.1":0.02215,"2.2":0.02215,"2.3":0.05538,"4.1":0.0443,"4.2-4.3":0.05538,"4.4":0,"4.4.3-4.4.4":0.26027},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0.0043,"8":0.03867,"9":0.00859,"10":0.00859,"11":0.04727,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0.0057},N:{"10":0.00855,"11":0.00855},R:{_:"0"},M:{"0":0.23382},Q:{"13.1":0},O:{"0":0.02281},H:{"0":0.03779},L:{"0":28.17308}};
diff --git a/node_modules/caniuse-lite/data/regions/BT.js b/node_modules/caniuse-lite/data/regions/BT.js
new file mode 100644
index 0000000..99e4b4f
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/BT.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00373,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00373,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00373,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0.00746,"110":0,"111":0.14924,"112":0.14178,"113":0.00746,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.00746,"44":0.00373,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.00373,"71":0.00373,"72":0.00373,"73":0,"74":0,"75":0.01119,"76":0,"77":0,"78":0,"79":0.03731,"80":0.00746,"81":0.01492,"83":0.00373,"84":0,"85":0,"86":0.00373,"87":0.01866,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.00373,"94":0.00373,"95":0.00373,"96":0.01492,"97":0,"98":0,"99":0.01492,"100":0.00746,"101":0.00373,"102":0,"103":0.02985,"104":0.00746,"105":0.04104,"106":0.00373,"107":0.00746,"108":0.02239,"109":0.65666,"110":0.0597,"111":3.08181,"112":4.60405,"113":0.00746,"114":0.00373,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00373,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.00373,"68":0.01866,"69":0.01866,"70":0,"71":0,"72":0,"73":0,"74":0.00373,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.01119,"96":0.00373,"97":0.0485,"98":0.00373,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00373,"13":0,"14":0.00373,"15":0,"16":0,"17":0,"18":0.00373,"79":0,"80":0,"81":0,"83":0,"84":0.00373,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00373,"93":0,"94":0,"95":0.00373,"96":0.00373,"97":0,"98":0,"99":0,"100":0,"101":0.00373,"102":0.00373,"103":0.01492,"104":0.00746,"105":0.01119,"106":0.00746,"107":0.01492,"108":0.00373,"109":0.00746,"110":0.03358,"111":0.26117,"112":0.48876,"113":0.00373},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.01866,"14":0.00373,"15":0.00373,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00373,"13.1":0.00746,"14.1":0.02239,"15.1":0,"15.2-15.3":0,"15.4":0.00746,"15.5":0.02239,"15.6":0.11566,"16.0":0.01492,"16.1":0.00746,"16.2":0.01492,"16.3":0.07835,"16.4":0.05223,"16.5":0},G:{"8":0.00568,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00189,"6.0-6.1":0,"7.0-7.1":0.01608,"8.1-8.4":0.04731,"9.0-9.2":0.00473,"9.3":0.00946,"10.0-10.2":0,"10.3":0.01419,"11.0-11.2":0.00852,"11.3-11.4":0,"12.0-12.1":0.03501,"12.2-12.5":0.12206,"13.0-13.1":0.00473,"13.2":0.00473,"13.3":0.00757,"13.4-13.7":0.02271,"14.0-14.4":0.29331,"14.5-14.8":0.16747,"15.0-15.1":0.07191,"15.2-15.3":0.15233,"15.4":0.12679,"15.5":0.25074,"15.6":0.32832,"16.0":0.74937,"16.1":0.81371,"16.2":0.48066,"16.3":3.0145,"16.4":1.64161,"16.5":0.01514},P:{"4":0.23839,"20":0.96392,"5.0-5.4":0,"6.2-6.4":0.01036,"7.2-7.4":0.03109,"8.2":0,"9.2":0.01036,"10.1":0,"11.1-11.2":0.01036,"12.0":0,"13.0":0.02073,"14.0":0,"15.0":0.01036,"16.0":0.04146,"17.0":0.03109,"18.0":0.04146,"19.0":0.11401},I:{"0":0,"3":0,"4":0.03723,"2.1":0.01064,"2.2":0.02127,"2.3":0.04255,"4.1":0.03723,"4.2-4.3":0.06382,"4.4":0,"4.4.3-4.4.4":0.12233},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0.00746,"8":0.08954,"9":0.01492,"10":0.01492,"11":0.05597,"5.5":0},S:{"2.5":0.01254,_:"3.0-3.1"},J:{"7":0,"10":0.01254},N:{"10":0.02194,"11":0.02194},R:{_:"0"},M:{"0":0.01254},Q:{"13.1":0},O:{"0":2.28192},H:{"0":0.73002},L:{"0":74.07334}};
diff --git a/node_modules/caniuse-lite/data/regions/BW.js b/node_modules/caniuse-lite/data/regions/BW.js
new file mode 100644
index 0000000..efe9b5e
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/BW.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.0046,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00921,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.0046,"50":0,"51":0,"52":0.00921,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0.0046,"63":0,"64":0,"65":0.0046,"66":0,"67":0,"68":0.0046,"69":0,"70":0.0046,"71":0,"72":0.0046,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00921,"79":0,"80":0.0046,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.0046,"89":0,"90":0,"91":0.00921,"92":0,"93":0,"94":0.0046,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00921,"103":0,"104":0,"105":0,"106":0.0046,"107":0,"108":0.0046,"109":0.01381,"110":0.00921,"111":0.3499,"112":0.31307,"113":0.00921,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.0046,"41":0,"42":0,"43":0.0046,"44":0,"45":0,"46":0.0046,"47":0,"48":0,"49":0.00921,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.0046,"57":0.0046,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00921,"64":0,"65":0,"66":0.0046,"67":0.0046,"68":0,"69":0,"70":0.0046,"71":0,"72":0,"73":0,"74":0.00921,"75":0.0046,"76":0,"77":0.00921,"78":0.0046,"79":0.03223,"80":0.0046,"81":0.05064,"83":0.00921,"84":0.0046,"85":0.00921,"86":0.03223,"87":0.01842,"88":0.00921,"89":0.0046,"90":0.01381,"91":0.01381,"92":0.0046,"93":0.0046,"94":0.0046,"95":0.02302,"96":0.0046,"97":0.0046,"98":0.00921,"99":0.01381,"100":0.01842,"101":0.00921,"102":0.01842,"103":0.07366,"104":0.05985,"105":0.01381,"106":0.01842,"107":0.03223,"108":0.05064,"109":1.32135,"110":0.14272,"111":4.9539,"112":5.24856,"113":0.00921,"114":0.0046,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.00921,"27":0,"28":0.0046,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.0046,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0.0046,"62":0,"63":0,"64":0.0046,"65":0,"66":0.02302,"67":0.03683,"68":0.06906,"69":0.15193,"70":0.0046,"71":0,"72":0.00921,"73":0,"74":0.0046,"75":0.0046,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.0046,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.03223,"96":0.08287,"97":0.27164,"98":0.02302,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00921,"13":0.00921,"14":0.00921,"15":0.0046,"16":0.0046,"17":0.0046,"18":0.01842,"79":0,"80":0.01381,"81":0,"83":0,"84":0.0046,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.0046,"91":0,"92":0.07827,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.0046,"100":0,"101":0,"102":0,"103":0.0046,"104":0.0046,"105":0.0046,"106":0,"107":0.01381,"108":0.01842,"109":0.05525,"110":0.08748,"111":0.8011,"112":1.41803,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.0046,"15":0.0046,_:"0","3.1":0,"3.2":0,"5.1":0.0046,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.0046,"13.1":0.01842,"14.1":0.01842,"15.1":0.0046,"15.2-15.3":0.0046,"15.4":0.0046,"15.5":0.02302,"15.6":0.03683,"16.0":0.0046,"16.1":0.02302,"16.2":0.01842,"16.3":0.09208,"16.4":0.03683,"16.5":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00486,"6.0-6.1":0.00486,"7.0-7.1":0.04209,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.05747,"10.0-10.2":0,"10.3":0.04857,"11.0-11.2":0.0089,"11.3-11.4":0.02347,"12.0-12.1":0.00243,"12.2-12.5":0.43064,"13.0-13.1":0.00243,"13.2":0.00162,"13.3":0.00243,"13.4-13.7":0.15947,"14.0-14.4":0.05504,"14.5-14.8":0.09876,"15.0-15.1":0.04614,"15.2-15.3":0.03643,"15.4":0.06395,"15.5":0.18861,"15.6":0.44117,"16.0":0.30194,"16.1":0.8451,"16.2":0.32379,"16.3":2.70367,"16.4":1.16727,"16.5":0.02186},P:{"4":0.3909,"20":1.20356,"5.0-5.4":0.02057,"6.2-6.4":0,"7.2-7.4":0.25717,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.02057,"12.0":0.01029,"13.0":0.02057,"14.0":0.02057,"15.0":0.12344,"16.0":0.05143,"17.0":0.07201,"18.0":0.03086,"19.0":0.19545},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00188,"4.2-4.3":0.00375,"4.4":0,"4.4.3-4.4.4":0.07502},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.03683,"5.5":0},S:{"2.5":0.07015,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.08634},Q:{"13.1":0.0054},O:{"0":0.9497},H:{"0":0.9502},L:{"0":69.10186}};
diff --git a/node_modules/caniuse-lite/data/regions/BY.js b/node_modules/caniuse-lite/data/regions/BY.js
new file mode 100644
index 0000000..1e2cf09
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/BY.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.1082,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.00492,"61":0,"62":0,"63":0.00492,"64":0,"65":0,"66":0,"67":0,"68":0.00492,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00492,"79":0.00492,"80":0.00492,"81":0.00492,"82":0,"83":0.00492,"84":0,"85":0,"86":0,"87":0,"88":0.00492,"89":0,"90":0,"91":0.00492,"92":0,"93":0,"94":0,"95":0,"96":0.00492,"97":0,"98":0,"99":0.00492,"100":0,"101":0.00492,"102":0.02459,"103":0,"104":0.00492,"105":0.00984,"106":0.00984,"107":0.00492,"108":0.00984,"109":0.01967,"110":0.04918,"111":0.86557,"112":0.64426,"113":0,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.00492,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.02951,"50":0,"51":0.00492,"52":0,"53":0.00492,"54":0,"55":0.00492,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.00492,"65":0.05902,"66":0,"67":0.00492,"68":0,"69":0.00492,"70":0.00492,"71":0.00492,"72":0.00492,"73":0,"74":0,"75":0,"76":0.02459,"77":0.00492,"78":0.00492,"79":0.02951,"80":0.00492,"81":0.01475,"83":0.02459,"84":0.02459,"85":0.03443,"86":0.02951,"87":0.01967,"88":0.02459,"89":0.00492,"90":0.00984,"91":0.00492,"92":0.00984,"93":0.08361,"94":0.0541,"95":0.00492,"96":0.00492,"97":0.00984,"98":0.00984,"99":0.04918,"100":0.03443,"101":0.02951,"102":0.02951,"103":0.02459,"104":0.04426,"105":0.02459,"106":0.11803,"107":0.03934,"108":0.07869,"109":2.01638,"110":0.14754,"111":3.60981,"112":4.05243,"113":0.00492,"114":0.00492,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00492,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.02951,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00492,"57":0,"58":0,"60":0.00492,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.01475,"68":0.00984,"69":0.02951,"70":0.00492,"71":0.00492,"72":0.00492,"73":0,"74":0.01967,"75":0.00492,"76":0,"77":0,"78":0,"79":0.02459,"80":0.00492,"81":0.00492,"82":0.01475,"83":0.01475,"84":0.00984,"85":0.08361,"86":0.00984,"87":0.00492,"88":0,"89":0.02951,"90":0,"91":0,"92":0.00492,"93":0.00492,"94":0.01967,"95":0.65409,"96":0.29016,"97":1.51474,"98":0.09344,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00984},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00492,"79":0,"80":0,"81":0,"83":0.00492,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00492,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0.00492,"109":0.02459,"110":0.01967,"111":0.33442,"112":0.73278,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00984,"14":0.01967,"15":0.00492,_:"0","3.1":0,"3.2":0,"5.1":0.00492,"6.1":0,"7.1":0,"9.1":0.00492,"10.1":0,"11.1":0.00492,"12.1":0.00984,"13.1":0.01967,"14.1":0.03443,"15.1":0.00984,"15.2-15.3":0.00984,"15.4":0.02951,"15.5":0.05902,"15.6":0.34918,"16.0":0.01967,"16.1":0.09344,"16.2":0.15246,"16.3":0.82622,"16.4":0.60983,"16.5":0.00984},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0.00942,"9.3":0.02827,"10.0-10.2":0.00314,"10.3":0.03455,"11.0-11.2":0.04397,"11.3-11.4":0.00314,"12.0-12.1":0.00942,"12.2-12.5":0.27009,"13.0-13.1":0,"13.2":0.00628,"13.3":0.04711,"13.4-13.7":0.06909,"14.0-14.4":0.23555,"14.5-14.8":0.47423,"15.0-15.1":0.13505,"15.2-15.3":0.32348,"15.4":0.22298,"15.5":0.52448,"15.6":1.47922,"16.0":2.39314,"16.1":4.26808,"16.2":2.27065,"16.3":10.4739,"16.4":5.70647,"16.5":0.09736},P:{"4":0.06075,"20":0.84042,"5.0-5.4":0.01013,"6.2-6.4":0.18226,"7.2-7.4":0.01013,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0,"12.0":0,"13.0":0.01013,"14.0":0.02025,"15.0":0,"16.0":0.03038,"17.0":0.01013,"18.0":0.01013,"19.0":0.15188},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00624,"4.2-4.3":0.00873,"4.4":0,"4.4.3-4.4.4":0.02995},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.01475,"9":0,"10":0,"11":0.06393,"5.5":0},S:{"2.5":0.00508,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.09656},Q:{"13.1":0.00508},O:{"0":0.1982},H:{"0":0.90934},L:{"0":41.69056}};
diff --git a/node_modules/caniuse-lite/data/regions/BZ.js b/node_modules/caniuse-lite/data/regions/BZ.js
new file mode 100644
index 0000000..8e9515a
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/BZ.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0.00522,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0.01043,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00522,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00522,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00522,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.01043,"88":0,"89":0,"90":0,"91":0.00522,"92":0,"93":0.00522,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.0313,"103":0,"104":0.00522,"105":0.00522,"106":0,"107":0,"108":0.00522,"109":0.01043,"110":0.31824,"111":0.78255,"112":0.46431,"113":0.00522,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.03652,"41":0.00522,"42":0,"43":0,"44":0,"45":0.00522,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00522,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00522,"69":0,"70":0.03652,"71":0,"72":0.00522,"73":0,"74":0,"75":0.01043,"76":0.04174,"77":0.00522,"78":0,"79":0.01043,"80":0,"81":0,"83":0.01565,"84":0.00522,"85":0,"86":0,"87":0,"88":0.01043,"89":0,"90":0,"91":0.00522,"92":0.02087,"93":0.05739,"94":0,"95":0,"96":0,"97":0.00522,"98":0,"99":0.00522,"100":0,"101":0,"102":0.00522,"103":0.12521,"104":0.00522,"105":0.01043,"106":0.01043,"107":0.02609,"108":2.66589,"109":0.78777,"110":0.88167,"111":3.57886,"112":7.39771,"113":0.01043,"114":0.01043,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.03652,"29":0,"30":0.00522,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.01565,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.00522,"96":0.14086,"97":0.87124,"98":0.02087,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.01043,"13":0,"14":0.00522,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00522,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0.04174,"110":0.01565,"111":0.43823,"112":1.106,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0.00522,"13":0,"14":0.06782,"15":0.00522,_:"0","3.1":0,"3.2":0,"5.1":0.00522,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00522,"13.1":0.0313,"14.1":0.04695,"15.1":0.02087,"15.2-15.3":0.04695,"15.4":0.09391,"15.5":0.0626,"15.6":0.45388,"16.0":0.0313,"16.1":0.19303,"16.2":0.16694,"16.3":0.87646,"16.4":0.59474,"16.5":0.00522},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01311,"6.0-6.1":0,"7.0-7.1":0.03278,"8.1-8.4":0.0885,"9.0-9.2":0.00983,"9.3":0.06556,"10.0-10.2":0,"10.3":0.059,"11.0-11.2":0.00983,"11.3-11.4":0.19012,"12.0-12.1":0,"12.2-12.5":0.36385,"13.0-13.1":0,"13.2":0.00983,"13.3":0,"13.4-13.7":0.02295,"14.0-14.4":0.09178,"14.5-14.8":0.42285,"15.0-15.1":0.31796,"15.2-15.3":0.91454,"15.4":0.66542,"15.5":0.87849,"15.6":1.04566,"16.0":2.00937,"16.1":3.74668,"16.2":2.27489,"16.3":11.55472,"16.4":5.41187,"16.5":0.13767},P:{"4":0.2078,"20":2.26503,"5.0-5.4":0.01039,"6.2-6.4":0.02078,"7.2-7.4":0.07273,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.01039,"12.0":0,"13.0":0.01039,"14.0":0.01039,"15.0":0.01039,"16.0":0.05195,"17.0":0.04156,"18.0":0.02078,"19.0":0.04156},I:{"0":0,"3":0.01855,"4":0.15458,"2.1":0.02473,"2.2":0.0742,"2.3":0.15458,"4.1":0.19786,"4.2-4.3":0.27206,"4.4":0,"4.4.3-4.4.4":0.69251},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.00522,"7":0.02087,"8":0.25563,"9":0.04174,"10":0.04695,"11":0.15129,"5.5":0},S:{"2.5":0.00478,_:"3.0-3.1"},J:{"7":0,"10":0.02392},N:{"10":0.0246,"11":0.0615},R:{_:"0"},M:{"0":0.21045},Q:{"13.1":0},O:{"0":0.2248},H:{"0":0.12679},L:{"0":38.71742}};
diff --git a/node_modules/caniuse-lite/data/regions/CA.js b/node_modules/caniuse-lite/data/regions/CA.js
new file mode 100644
index 0000000..5dead16
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/CA.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.01156,"39":0,"40":0,"41":0,"42":0,"43":0.01156,"44":0.04047,"45":0.01156,"46":0,"47":0,"48":0.00578,"49":0,"50":0,"51":0,"52":0.01735,"53":0,"54":0,"55":0.02891,"56":0,"57":0.00578,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.02891,"66":0,"67":0,"68":0.00578,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0.00578,"78":0.02891,"79":0.00578,"80":0.00578,"81":0.00578,"82":0.00578,"83":0.00578,"84":0,"85":0,"86":0,"87":0.00578,"88":0.00578,"89":0.00578,"90":0,"91":0.01156,"92":0,"93":0,"94":0,"95":0.00578,"96":0,"97":0.00578,"98":0,"99":0.01156,"100":0,"101":0,"102":0.05204,"103":0.00578,"104":0.01156,"105":0.02891,"106":0.01156,"107":0.00578,"108":0.01735,"109":0.02313,"110":0.04047,"111":0.97138,"112":0.86152,"113":0.00578,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00578,"39":0,"40":0,"41":0,"42":0,"43":0.00578,"44":0,"45":0,"46":0,"47":0.00578,"48":0.10408,"49":0.05204,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.01735,"61":0,"62":0,"63":0,"64":0,"65":0.00578,"66":0.01735,"67":0.00578,"68":0.00578,"69":0,"70":0.00578,"71":0,"72":0.00578,"73":0,"74":0.00578,"75":0.00578,"76":0.01156,"77":0.00578,"78":0.00578,"79":0.03469,"80":0.01735,"81":0.02891,"83":0.21393,"84":0.03469,"85":0.03469,"86":0.04626,"87":0.05782,"88":0.04047,"89":0.00578,"90":0.00578,"91":0.01156,"92":0.00578,"93":0.05782,"94":0.01735,"95":0.00578,"96":0.01735,"97":0.01156,"98":0.01156,"99":0.01156,"100":0.01735,"101":0.01735,"102":0.01735,"103":0.25441,"104":0.02313,"105":0.10408,"106":0.0636,"107":0.07517,"108":0.20237,"109":0.98294,"110":0.39318,"111":6.97887,"112":8.05433,"113":0.01156,"114":0.00578,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00578,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00578,"69":0.01156,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00578,"90":0,"91":0,"92":0,"93":0,"94":0.00578,"95":0.03469,"96":0.1272,"97":0.30645,"98":0.01156,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00578,"13":0.00578,"14":0,"15":0,"16":0,"17":0.00578,"18":0.00578,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0.00578,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00578,"101":0,"102":0,"103":0.00578,"104":0,"105":0.00578,"106":0.01156,"107":0.01156,"108":0.01735,"109":0.08673,"110":0.0636,"111":1.25469,"112":2.85631,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0.00578,"9":0.01156,"10":0,"11":0,"12":0,"13":0.01735,"14":0.08095,"15":0.01735,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.00578,"10.1":0,"11.1":0.00578,"12.1":0.04626,"13.1":0.19659,"14.1":0.28332,"15.1":0.03469,"15.2-15.3":0.03469,"15.4":0.08673,"15.5":0.1272,"15.6":0.74588,"16.0":0.07517,"16.1":0.18502,"16.2":0.32957,"16.3":1.75195,"16.4":0.81526,"16.5":0.01156},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00838,"8.1-8.4":0.01675,"9.0-9.2":0.02094,"9.3":0.20101,"10.0-10.2":0.00419,"10.3":0.21776,"11.0-11.2":0.02513,"11.3-11.4":0.05863,"12.0-12.1":0.02931,"12.2-12.5":0.95477,"13.0-13.1":0.01675,"13.2":0.01675,"13.3":0.05444,"13.4-13.7":0.17169,"14.0-14.4":0.34338,"14.5-14.8":0.88777,"15.0-15.1":0.24288,"15.2-15.3":0.28057,"15.4":0.32245,"15.5":0.62814,"15.6":2.40787,"16.0":2.0938,"16.1":5.79984,"16.2":2.9397,"16.3":15.85009,"16.4":6.30654,"16.5":0.15913},P:{"4":0.12745,"20":2.63397,"5.0-5.4":0.02124,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0.02124,"11.1-11.2":0,"12.0":0,"13.0":0.01062,"14.0":0,"15.0":0.01062,"16.0":0.03186,"17.0":0.02124,"18.0":0.02124,"19.0":0.0531},I:{"0":0,"3":0,"4":0.01816,"2.1":0,"2.2":0,"2.3":0.00605,"4.1":0.01211,"4.2-4.3":0.03632,"4.4":0,"4.4.3-4.4.4":0.19974},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.01272,"9":0.01272,"10":0,"11":0.10176,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0.00422},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.48507},Q:{"13.1":0.00422},O:{"0":0.07592},H:{"0":0.13977},L:{"0":23.0778}};
diff --git a/node_modules/caniuse-lite/data/regions/CD.js b/node_modules/caniuse-lite/data/regions/CD.js
new file mode 100644
index 0000000..c6d823e
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/CD.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00342,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0.00342,"111":0.05127,"112":0.03247,"113":0,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00171,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0.00171,"77":0,"78":0,"79":0.00171,"80":0,"81":0.00342,"83":0.00171,"84":0,"85":0.00171,"86":0,"87":0.00171,"88":0.00171,"89":0,"90":0,"91":0.00171,"92":0.00342,"93":0,"94":0.00171,"95":0.00342,"96":0,"97":0,"98":0,"99":0,"100":0.00171,"101":0,"102":0.00171,"103":0.00342,"104":0.00171,"105":0.00171,"106":0.00171,"107":0.00342,"108":0.00513,"109":0.04102,"110":0.00513,"111":0.14014,"112":0.17261,"113":0,"114":0,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0.00171,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0.00684,"25":0.00171,"26":0.00855,"27":0.00855,"28":0.01025,"29":0.00171,"30":0.02222,"31":0.00342,"32":0.00342,"33":0.00513,"34":0,"35":0,"36":0,"37":0.01196,"38":0.00855,"39":0,"40":0,"41":0,"42":0.01538,"43":0,"44":0,"45":0.00171,"46":0.00171,"47":0.00342,"48":0,"49":0,"50":0.00342,"51":0.00684,"52":0,"53":0,"54":0.00342,"55":0.01025,"56":0.00342,"57":0.00513,"58":0.01196,"60":0.14527,"62":0.00171,"63":0.25122,"64":0.03247,"65":0.02393,"66":0.2273,"67":0.19312,"68":0.14868,"69":0.15723,"70":0,"71":0.00171,"72":0.01025,"73":0.01367,"74":0.05298,"75":0.00171,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.00684,"96":0.00342,"97":0.04614,"98":0.00171,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00513},B:{"12":0.00171,"13":0.00171,"14":0,"15":0.00171,"16":0,"17":0,"18":0.00342,"79":0,"80":0,"81":0,"83":0,"84":0.00171,"85":0,"86":0,"87":0,"88":0,"89":0.00171,"90":0,"91":0,"92":0.00171,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0.00171,"109":0.00171,"110":0.00684,"111":0.03418,"112":0.06836,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00342,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.00342,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00171,"14.1":0.00171,"15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0.00171,"15.6":0.00171,"16.0":0,"16.1":0.01367,"16.2":0.00171,"16.3":0.00513,"16.4":0.00171,"16.5":0.01367},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00241,"8.1-8.4":0.0016,"9.0-9.2":0.0008,"9.3":0.02407,"10.0-10.2":0.0016,"10.3":0.06419,"11.0-11.2":0.0016,"11.3-11.4":0.01123,"12.0-12.1":0.02808,"12.2-12.5":1.36004,"13.0-13.1":0.02006,"13.2":0.02648,"13.3":0.02808,"13.4-13.7":0.09789,"14.0-14.4":0.41483,"14.5-14.8":0.69968,"15.0-15.1":0.23991,"15.2-15.3":0.22627,"15.4":0.17652,"15.5":0.44934,"15.6":0.38755,"16.0":0.32095,"16.1":0.5368,"16.2":0.4381,"16.3":0.93799,"16.4":0.69326,"16.5":0.01525},P:{"4":0.15445,"20":0.19564,"5.0-5.4":0.03089,"6.2-6.4":0.0103,"7.2-7.4":0.05148,"8.2":0,"9.2":0.05148,"10.1":0,"11.1-11.2":0.02059,"12.0":0,"13.0":0.0103,"14.0":0.0103,"15.0":0,"16.0":0.02059,"17.0":0.02059,"18.0":0.02059,"19.0":0.04119},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00162,"4.2-4.3":0.00682,"4.4":0,"4.4.3-4.4.4":0.07181},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00342,"5.5":0},S:{"2.5":0.14095,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.04975},Q:{"13.1":0.01658},O:{"0":0.22386},H:{"0":30.27507},L:{"0":53.07573}};
diff --git a/node_modules/caniuse-lite/data/regions/CF.js b/node_modules/caniuse-lite/data/regions/CF.js
new file mode 100644
index 0000000..d6edb84
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/CF.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.00185,"38":0.00185,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00185,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.0074,"103":0,"104":0,"105":0,"106":0.0074,"107":0,"108":0,"109":0,"110":0.00185,"111":0.16465,"112":0.037,"113":0,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.0037,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.0037,"50":0,"51":0,"52":0.00185,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.0111,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00185,"80":0,"81":0.0037,"83":0,"84":0,"85":0,"86":0.0074,"87":0.00185,"88":0.00185,"89":0,"90":0,"91":0,"92":0.0037,"93":0,"94":0,"95":0,"96":0.00185,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00185,"103":0.00185,"104":0,"105":0.0037,"106":0,"107":0.00185,"108":0.00555,"109":0.0296,"110":0.0111,"111":0.30895,"112":0.4551,"113":0,"114":0,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.0074,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0.00185,"58":0.00185,"60":0.0074,"62":0,"63":0.0074,"64":0,"65":0.00185,"66":0.00555,"67":0.01295,"68":0.00555,"69":0.0148,"70":0,"71":0,"72":0,"73":0.00185,"74":0.00185,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.0074,"96":0,"97":0.0185,"98":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00185},B:{"12":0.00555,"13":0.00185,"14":0.00555,"15":0,"16":0,"17":0,"18":0.01295,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00185,"90":0.00185,"91":0,"92":0.00185,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0.0074,"108":0,"109":0.0037,"110":0.00925,"111":0.05735,"112":0.12025,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.0185,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.00185,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00185,"13.1":0.00925,"14.1":0.00925,"15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0,"15.6":0.0074,"16.0":0,"16.1":0,"16.2":0.00185,"16.3":0.0111,"16.4":0,"16.5":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0,"10.0-10.2":0,"10.3":0,"11.0-11.2":0.00369,"11.3-11.4":0.00369,"12.0-12.1":0.00185,"12.2-12.5":0.64621,"13.0-13.1":0.00185,"13.2":0,"13.3":0,"13.4-13.7":0.06496,"14.0-14.4":0.28755,"14.5-14.8":0.15332,"15.0-15.1":0.02124,"15.2-15.3":0.03633,"15.4":0.20904,"15.5":0.02863,"15.6":0.10344,"16.0":0.18041,"16.1":0.26846,"16.2":0.16101,"16.3":0.57356,"16.4":0.18811,"16.5":0.00185},P:{"4":0.08693,"20":0.17387,"5.0-5.4":0,"6.2-6.4":0.02173,"7.2-7.4":0,"8.2":0.01087,"9.2":0.04347,"10.1":0,"11.1-11.2":0,"12.0":0,"13.0":0,"14.0":0,"15.0":0,"16.0":0.0326,"17.0":0.01087,"18.0":0.02173,"19.0":0.05433},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00454,"4.2-4.3":0.00324,"4.4":0,"4.4.3-4.4.4":0.05702},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00185,"5.5":0},S:{"2.5":0.4564,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.04075},Q:{"13.1":0},O:{"0":0.13855},H:{"0":16.18023},L:{"0":73.88805}};
diff --git a/node_modules/caniuse-lite/data/regions/CG.js b/node_modules/caniuse-lite/data/regions/CG.js
new file mode 100644
index 0000000..210867a
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/CG.js
@@ -0,0 +1 @@
+module.exports={C:{"48":0.00475,"60":0.01899,"110":0.00475,"111":1.38167,"112":1.34368,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 52 53 54 55 56 57 58 59 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 113 114 3.5 3.6"},D:{"49":0.02374,"63":0.03324,"64":0.0095,"69":0.02849,"73":0.03324,"76":0.0095,"79":0.75968,"81":0.1187,"83":0.01424,"84":0.0095,"85":0.00475,"86":0.05223,"87":0.03798,"88":0.01899,"89":0.01424,"92":0.0095,"93":0.17568,"95":0.08546,"97":0.12345,"98":0.0095,"99":0.02849,"101":0.0095,"102":0.0095,"103":0.02849,"104":0.01424,"105":0.02374,"106":0.07122,"107":0.09021,"108":0.13294,"109":1.3152,"110":0.09496,"111":6.93208,"112":10.40287,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 65 66 67 68 70 71 72 74 75 77 78 80 90 91 94 96 100 113 114 115 116"},F:{"28":0.01424,"79":0.04273,"85":0.00475,"95":0.23265,"96":0.14719,"97":0.91636,"98":0.04748,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 84 86 87 88 89 90 91 92 93 94 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.02374,"13":0.00475,"18":0.01424,"92":0.01424,"101":0.00475,"105":0.03324,"108":0.00475,"109":0.08546,"110":0.07597,"111":1.80899,"112":4.95216,_:"14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 102 103 104 106 107 113"},E:{"4":0,_:"0 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 14.1 15.1 15.2-15.3 15.4 15.5 16.0 16.5","13.1":0.66947,"15.6":0.03798,"16.1":0.00475,"16.2":0.00475,"16.3":0.03324,"16.4":0.0095},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00234,"6.0-6.1":0,"7.0-7.1":0.13586,"8.1-8.4":0.00234,"9.0-9.2":0.0082,"9.3":0.11595,"10.0-10.2":0,"10.3":0.2237,"11.0-11.2":0.00703,"11.3-11.4":0.05973,"12.0-12.1":0.05739,"12.2-12.5":4.09563,"13.0-13.1":0.00117,"13.2":0,"13.3":0.00586,"13.4-13.7":0.04919,"14.0-14.4":0.23307,"14.5-14.8":0.17216,"15.0-15.1":0.23892,"15.2-15.3":0.39,"15.4":0.11478,"15.5":0.30685,"15.6":0.58325,"16.0":0.15108,"16.1":0.22018,"16.2":0.17802,"16.3":1.28127,"16.4":0.88776,"16.5":0.02459},P:{"4":0.25957,"20":0.25957,"5.0-5.4":0.03089,"6.2-6.4":0.0103,"7.2-7.4":0.079,"8.2":0,"9.2":0.05148,"10.1":0,"11.1-11.2":0.01129,"12.0":0,"13.0":0.0103,"14.0":0.01129,"15.0":0,"16.0":0.02059,"17.0":0.02257,"18.0":0.03386,"19.0":0.079},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00577,"4.2-4.3":0.00694,"4.4":0,"4.4.3-4.4.4":0.10282},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.0095,_:"6 7 8 9 10 5.5"},S:{"2.5":0.32556,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.04201},Q:{"13.1":0.02626},O:{"0":0.19429},H:{"0":0.9694},L:{"0":54.74233}};
diff --git a/node_modules/caniuse-lite/data/regions/CH.js b/node_modules/caniuse-lite/data/regions/CH.js
new file mode 100644
index 0000000..8320945
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/CH.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.00639,"49":0,"50":0,"51":0,"52":0.01278,"53":0,"54":0,"55":0.00639,"56":0,"57":0.00639,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00639,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.05112,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.00639,"85":0,"86":0,"87":0,"88":0.00639,"89":0.00639,"90":0,"91":0.01278,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00639,"99":0.00639,"100":0,"101":0.00639,"102":0.21087,"103":0.00639,"104":0.00639,"105":0.01278,"106":0.00639,"107":0.01917,"108":0.02556,"109":0.04473,"110":0.0639,"111":2.01285,"112":1.82115,"113":0.01278,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00639,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.02556,"50":0,"51":0,"52":0.14058,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00639,"66":0.03195,"67":0.00639,"68":0.00639,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0.00639,"75":0,"76":0,"77":0.00639,"78":0.00639,"79":0.07029,"80":0.01278,"81":0.01278,"83":0.00639,"84":0.01917,"85":0.01278,"86":0.01917,"87":0.07668,"88":0.01917,"89":0.01278,"90":0.01278,"91":0.01278,"92":0.01278,"93":0.01278,"94":0.08307,"95":0.00639,"96":0.01278,"97":0.01278,"98":0.01278,"99":0.02556,"100":0.01917,"101":0.02556,"102":0.02556,"103":0.15336,"104":0.02556,"105":0.05751,"106":0.02556,"107":0.04473,"108":0.21726,"109":0.90099,"110":0.35145,"111":9.2655,"112":7.46352,"113":0.00639,"114":0.00639,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00639,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.00639,"70":0,"71":0,"72":0,"73":0,"74":0.00639,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0.00639,"95":0.01917,"96":0.21726,"97":0.65817,"98":0.02556,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00639,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.00639,"91":0,"92":0.01278,"93":0.00639,"94":0,"95":0,"96":0.00639,"97":0,"98":0.01278,"99":0.00639,"100":0.00639,"101":0,"102":0.01917,"103":0.00639,"104":0,"105":0.01278,"106":0.01278,"107":0.03195,"108":0.05112,"109":0.19809,"110":0.18531,"111":3.195,"112":5.24619,"113":0.00639},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.01917,"14":0.08946,"15":0.01917,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.01278,"10.1":0,"11.1":0.00639,"12.1":0.09585,"13.1":0.23643,"14.1":0.32589,"15.1":0.04473,"15.2-15.3":0.05112,"15.4":0.08946,"15.5":0.15975,"15.6":0.71568,"16.0":0.10863,"16.1":0.23004,"16.2":0.34506,"16.3":1.54638,"16.4":0.87543,"16.5":0.01278},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0.00697,"9.0-9.2":0.38707,"9.3":0.11508,"10.0-10.2":0,"10.3":0.10461,"11.0-11.2":0,"11.3-11.4":0.07323,"12.0-12.1":0.01046,"12.2-12.5":0.4603,"13.0-13.1":0.00697,"13.2":0.00349,"13.3":0.02441,"13.4-13.7":0.07323,"14.0-14.4":0.272,"14.5-14.8":0.60676,"15.0-15.1":0.16738,"15.2-15.3":0.25805,"15.4":0.26851,"15.5":0.60327,"15.6":1.71218,"16.0":2.53863,"16.1":4.66578,"16.2":2.69904,"16.3":12.38977,"16.4":5.98391,"16.5":0.13251},P:{"4":0.10275,"20":3.06184,"5.0-5.4":0.02055,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0.02055,"10.1":0,"11.1-11.2":0.01027,"12.0":0,"13.0":0.01027,"14.0":0.02055,"15.0":0.01027,"16.0":0.01027,"17.0":0.02055,"18.0":0.0411,"19.0":0.13357},I:{"0":0,"3":0,"4":0.00467,"2.1":0,"2.2":0.00935,"2.3":0.00234,"4.1":0.01636,"4.2-4.3":0.01402,"4.4":0,"4.4.3-4.4.4":0.07244},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00639,"9":0,"10":0,"11":0.09585,"5.5":0},S:{"2.5":0.00361,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.62092},Q:{"13.1":0},O:{"0":0.05054},H:{"0":0.19139},L:{"0":20.11639}};
diff --git a/node_modules/caniuse-lite/data/regions/CI.js b/node_modules/caniuse-lite/data/regions/CI.js
new file mode 100644
index 0000000..a0a8d22
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/CI.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00299,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0.00299,"52":0.00299,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00299,"67":0,"68":0.00597,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0.00299,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00299,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0.00597,"95":0,"96":0,"97":0.00299,"98":0,"99":0,"100":0.00597,"101":0,"102":0.01494,"103":0.00299,"104":0,"105":0.00299,"106":0.00299,"107":0.04182,"108":0,"109":0.00299,"110":0.00896,"111":0.25688,"112":0.20909,"113":0.00597,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00597,"50":0.00299,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.02688,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00299,"64":0.00597,"65":0,"66":0,"67":0.00299,"68":0,"69":0.00597,"70":0.00299,"71":0,"72":0.00299,"73":0,"74":0.00597,"75":0,"76":0,"77":0,"78":0,"79":0.02091,"80":0.00299,"81":0.02091,"83":0.00299,"84":0.00299,"85":0.00299,"86":0.00597,"87":0.08662,"88":0.00896,"89":0.00299,"90":0.00597,"91":0.00299,"92":0.01494,"93":0.00896,"94":0.00299,"95":0.02091,"96":0.00597,"97":0.00597,"98":0.00299,"99":0.00597,"100":0.01195,"101":0.01792,"102":0.00896,"103":0.04182,"104":0.02688,"105":0.0239,"106":0.03286,"107":0.0239,"108":0.03584,"109":0.94389,"110":0.05078,"111":1.35909,"112":1.67571,"113":0.00299,"114":0.00597,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0.00299,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.00299,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0.01494,"62":0,"63":0.00896,"64":0,"65":0.00299,"66":0.00597,"67":0.00896,"68":0.01195,"69":0.02688,"70":0,"71":0,"72":0,"73":0,"74":0.00299,"75":0,"76":0,"77":0,"78":0,"79":0.00299,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.03883,"96":0.02091,"97":0.11649,"98":0.00597,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.00299,"16":0,"17":0,"18":0.00597,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00597,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0.00299,"106":0,"107":0,"108":0.00299,"109":0.03286,"110":0.01195,"111":0.23896,"112":0.60039,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0.00299,_:"0","3.1":0,"3.2":0,"5.1":0.00299,"6.1":0,"7.1":0.00896,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.01195,"14.1":0.00597,"15.1":0.00299,"15.2-15.3":0,"15.4":0.00299,"15.5":0.00299,"15.6":0.0239,"16.0":0.00299,"16.1":0.00299,"16.2":0.01792,"16.3":0.02688,"16.4":0.02091,"16.5":0.00299},G:{"8":0.00259,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00776,"6.0-6.1":0.00259,"7.0-7.1":0.02845,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.07242,"10.0-10.2":0,"10.3":0.21983,"11.0-11.2":0.04655,"11.3-11.4":0.02586,"12.0-12.1":0.32328,"12.2-12.5":5.25015,"13.0-13.1":0.02069,"13.2":0.01293,"13.3":0.13707,"13.4-13.7":0.18621,"14.0-14.4":0.77847,"14.5-14.8":0.89485,"15.0-15.1":0.72416,"15.2-15.3":0.80692,"15.4":0.3776,"15.5":0.55605,"15.6":0.89485,"16.0":1.58539,"16.1":1.73022,"16.2":1.35521,"16.3":4.25701,"16.4":2.78542,"16.5":0.16552},P:{"4":0.12168,"20":0.79091,"5.0-5.4":0.01014,"6.2-6.4":0,"7.2-7.4":0.1521,"8.2":0,"9.2":0.04056,"10.1":0,"11.1-11.2":0.02028,"12.0":0,"13.0":0.02028,"14.0":0.03042,"15.0":0.06084,"16.0":0.11154,"17.0":0.03042,"18.0":0.08112,"19.0":0.12168},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00383,"4.4":0,"4.4.3-4.4.4":0.08202},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00597,"5.5":0},S:{"2.5":0.03507,_:"3.0-3.1"},J:{"7":0,"10":0.01403},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.29455},Q:{"13.1":0.01403},O:{"0":0.15429},H:{"0":1.70634},L:{"0":64.95158}};
diff --git a/node_modules/caniuse-lite/data/regions/CK.js b/node_modules/caniuse-lite/data/regions/CK.js
new file mode 100644
index 0000000..a1bb088
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/CK.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00857,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0.00428,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0.00857,"109":0.00857,"110":0.01285,"111":0.37271,"112":0.35129,"113":0,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00857,"50":0,"51":0,"52":0,"53":0.15422,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00428,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"83":0.00857,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00428,"99":0.01285,"100":0.00857,"101":0.00428,"102":0,"103":0.01714,"104":0,"105":0.05141,"106":0.02999,"107":0.01714,"108":0.05569,"109":0.23134,"110":0.22277,"111":6.57166,"112":6.76872,"113":0,"114":0,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0.00857,"98":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00857,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0.00428,"109":0,"110":0.00428,"111":0.29988,"112":0.62118,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.0257,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.01714,"13.1":0.01285,"14.1":0.03427,"15.1":0.00428,"15.2-15.3":0.00428,"15.4":0.00428,"15.5":0.03427,"15.6":0.14994,"16.0":0.00428,"16.1":0.08568,"16.2":0.07283,"16.3":0.17564,"16.4":0.06426,"16.5":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0,"10.0-10.2":0,"10.3":0.01443,"11.0-11.2":0,"11.3-11.4":0.00721,"12.0-12.1":0,"12.2-12.5":0.32106,"13.0-13.1":0.02886,"13.2":0,"13.3":0.00721,"13.4-13.7":0.0469,"14.0-14.4":1.29867,"14.5-14.8":1.33475,"15.0-15.1":0.55194,"15.2-15.3":0.8766,"15.4":0.15873,"15.5":0.98843,"15.6":2.51437,"16.0":2.19331,"16.1":4.89888,"16.2":3.55331,"16.3":11.21547,"16.4":4.14493,"16.5":0.01443},P:{"4":0.02022,"20":4.32659,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.09098,"8.2":0,"9.2":0.01011,"10.1":0.09098,"11.1-11.2":0.1112,"12.0":0,"13.0":0.05054,"14.0":0.08087,"15.0":0.06065,"16.0":0.08087,"17.0":0.06065,"18.0":0.19207,"19.0":0.28305},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0.05141,"11":0.05569,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.31438},Q:{"13.1":0},O:{"0":0.13147},H:{"0":0.02706},L:{"0":40.60355}};
diff --git a/node_modules/caniuse-lite/data/regions/CL.js b/node_modules/caniuse-lite/data/regions/CL.js
new file mode 100644
index 0000000..6062d44
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/CL.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00475,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.00475,"74":0,"75":0,"76":0,"77":0,"78":0.00475,"79":0,"80":0,"81":0,"82":0.00475,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00475,"103":0.00475,"104":0.01899,"105":0.00475,"106":0.00475,"107":0,"108":0.00475,"109":0.01424,"110":0.02849,"111":0.38459,"112":0.33711,"113":0,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.0095,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.02374,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00475,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.00475,"68":0.00475,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0.00475,"75":0,"76":0.00475,"77":0,"78":0,"79":0.07122,"80":0.00475,"81":0.00475,"83":0.00475,"84":0.01424,"85":0.0095,"86":0.01899,"87":0.02374,"88":0.00475,"89":0.00475,"90":0.00475,"91":0.02849,"92":0.00475,"93":0.00475,"94":0.09021,"95":0.00475,"96":0.0095,"97":0.0095,"98":0.0095,"99":0.02374,"100":0.01424,"101":0.0095,"102":0.01899,"103":0.05698,"104":0.01424,"105":0.02374,"106":0.02374,"107":0.05223,"108":0.09971,"109":1.0683,"110":0.16143,"111":5.43171,"112":6.58548,"113":0.00475,"114":0,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00475,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.00475,"70":0,"71":0,"72":0,"73":0,"74":0.00475,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00475,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0.0095,"95":0.03324,"96":0.69796,"97":1.40541,"98":0.03324,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00475,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00475,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0.00475,"105":0,"106":0,"107":0.00475,"108":0.00475,"109":0.01899,"110":0.02849,"111":0.47005,"112":1.06355,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.01424,"15":0.00475,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00475,"13.1":0.02849,"14.1":0.05698,"15.1":0.0095,"15.2-15.3":0.0095,"15.4":0.01424,"15.5":0.02374,"15.6":0.08546,"16.0":0.01424,"16.1":0.04273,"16.2":0.03798,"16.3":0.21366,"16.4":0.1092,"16.5":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00645,"6.0-6.1":0.00161,"7.0-7.1":0.00483,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.07735,"10.0-10.2":0,"10.3":0.01611,"11.0-11.2":0.00806,"11.3-11.4":0.00645,"12.0-12.1":0.00645,"12.2-12.5":0.2675,"13.0-13.1":0.00322,"13.2":0.00161,"13.3":0.01934,"13.4-13.7":0.06768,"14.0-14.4":0.1547,"14.5-14.8":0.40447,"15.0-15.1":0.05962,"15.2-15.3":0.12891,"15.4":0.14825,"15.5":0.28845,"15.6":0.88628,"16.0":0.92174,"16.1":2.01428,"16.2":1.157,"16.3":5.93811,"16.4":2.57989,"16.5":0.07574},P:{"4":0.14261,"20":1.60946,"5.0-5.4":0.01019,"6.2-6.4":0,"7.2-7.4":0.05093,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.03056,"12.0":0.01019,"13.0":0.04075,"14.0":0.03056,"15.0":0.01019,"16.0":0.07131,"17.0":0.03056,"18.0":0.04075,"19.0":0.11205},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.02022,"4.2-4.3":0.00809,"4.4":0,"4.4.3-4.4.4":0.08493},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.01023,"9":0.00511,"10":0,"11":0.05113,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.18382},Q:{"13.1":0},O:{"0":0.02626},H:{"0":0.18397},L:{"0":61.18682}};
diff --git a/node_modules/caniuse-lite/data/regions/CM.js b/node_modules/caniuse-lite/data/regions/CM.js
new file mode 100644
index 0000000..a6ea06b
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/CM.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00726,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00726,"48":0,"49":0,"50":0,"51":0.00242,"52":0.01935,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00242,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00242,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0.00242,"97":0,"98":0,"99":0,"100":0,"101":0.00242,"102":0.02177,"103":0.00242,"104":0.00242,"105":0.00242,"106":0.00242,"107":0.00242,"108":0.01935,"109":0.0121,"110":0.02177,"111":0.21771,"112":0.15724,"113":0.00726,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0.00242,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00484,"39":0.00726,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00242,"47":0,"48":0,"49":0.00242,"50":0.00242,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00968,"57":0,"58":0.00242,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.00484,"65":0,"66":0,"67":0.00242,"68":0.01451,"69":0.00242,"70":0.00484,"71":0,"72":0.00484,"73":0,"74":0.00484,"75":0.00242,"76":0.00242,"77":0.00242,"78":0,"79":0.01451,"80":0.00242,"81":0.00968,"83":0,"84":0,"85":0.01935,"86":0.00242,"87":0.00484,"88":0.00242,"89":0,"90":0,"91":0.00242,"92":0.00242,"93":0.00242,"94":0.00242,"95":0.00484,"96":0.00242,"97":0.00726,"98":0.00242,"99":0.00484,"100":0.00484,"101":0.00484,"102":0.00484,"103":0.00968,"104":0.00484,"105":0.0121,"106":0.00968,"107":0.0121,"108":0.01693,"109":0.35317,"110":0.03629,"111":0.55637,"112":0.58056,"113":0.00242,"114":0.00242,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00242,"37":0.00484,"38":0.00484,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0.00484,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00242,"60":0.02419,"62":0,"63":0.01693,"64":0.00726,"65":0.01451,"66":0.01935,"67":0.05564,"68":0.03145,"69":0.04838,"70":0.00242,"71":0,"72":0.00242,"73":0,"74":0.00242,"75":0.03145,"76":0,"77":0,"78":0,"79":0.00242,"80":0,"81":0,"82":0,"83":0,"84":0.00242,"85":0.00242,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0.00242,"95":0.02419,"96":0.01451,"97":0.11127,"98":0.00484,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00242},B:{"12":0.00484,"13":0.00242,"14":0.00484,"15":0.00484,"16":0.00242,"17":0.00242,"18":0.00968,"79":0,"80":0,"81":0,"83":0,"84":0.00242,"85":0,"86":0,"87":0,"88":0,"89":0.00242,"90":0,"91":0,"92":0.00726,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00242,"101":0,"102":0,"103":0.00484,"104":0,"105":0.00242,"106":0,"107":0.00242,"108":0.00484,"109":0.01693,"110":0.03387,"111":0.09434,"112":0.18384,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0.00242,"11":0,"12":0,"13":0,"14":0.00242,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.00484,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00242,"14.1":0.00242,"15.1":0,"15.2-15.3":0.00242,"15.4":0,"15.5":0.00242,"15.6":0.00484,"16.0":0,"16.1":0.00242,"16.2":0,"16.3":0.00484,"16.4":0.00242,"16.5":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00554,"7.0-7.1":0.02218,"8.1-8.4":0.00416,"9.0-9.2":0,"9.3":0.0693,"10.0-10.2":0.01109,"10.3":0.32986,"11.0-11.2":0.02079,"11.3-11.4":0.01802,"12.0-12.1":0.37421,"12.2-12.5":2.88141,"13.0-13.1":0.03881,"13.2":0.12474,"13.3":0.158,"13.4-13.7":0.26472,"14.0-14.4":0.89533,"14.5-14.8":0.84405,"15.0-15.1":0.54607,"15.2-15.3":0.63338,"15.4":0.36451,"15.5":0.60012,"15.6":0.60012,"16.0":0.43242,"16.1":0.70545,"16.2":0.70545,"16.3":1.16559,"16.4":0.46291,"16.5":0.00554},P:{"4":0.21811,"20":0.27004,"5.0-5.4":0.02077,"6.2-6.4":0,"7.2-7.4":0.15579,"8.2":0,"9.2":0.05193,"10.1":0,"11.1-11.2":0.03116,"12.0":0,"13.0":0.01039,"14.0":0.03116,"15.0":0.02077,"16.0":0.03116,"17.0":0.02077,"18.0":0.0727,"19.0":0.10386},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00154,"4.2-4.3":0.01055,"4.4":0,"4.4.3-4.4.4":0.06693},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.0508,"5.5":0},S:{"2.5":0.20469,_:"3.0-3.1"},J:{"7":0,"10":0.01516},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.21227},Q:{"13.1":0.00758},O:{"0":0.40937},H:{"0":6.50254},L:{"0":73.5969}};
diff --git a/node_modules/caniuse-lite/data/regions/CN.js b/node_modules/caniuse-lite/data/regions/CN.js
new file mode 100644
index 0000000..fdb294f
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/CN.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.20597,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00349,"53":0,"54":0,"55":0.03491,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00349,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00349,"79":0,"80":0,"81":0,"82":0.00349,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00349,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.01396,"103":0,"104":0.00349,"105":0,"106":0.00349,"107":0.00349,"108":0.00349,"109":0.00698,"110":0.05237,"111":0.16408,"112":0.15011,"113":0,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00349,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0.00349,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0.00698,"40":0.00698,"41":0.00698,"42":0.00698,"43":0.00698,"44":0.00698,"45":0.00698,"46":0.00698,"47":0.00698,"48":0.03142,"49":0.02444,"50":0.03142,"51":0.00698,"52":0.00698,"53":0.01746,"54":0.00698,"55":0.01746,"56":0.00698,"57":0.02095,"58":0.01396,"59":0.01047,"60":0.02793,"61":0.05935,"62":0.00698,"63":0.01047,"64":0,"65":0.00349,"66":0.00349,"67":0.00698,"68":0.00349,"69":0.26532,"70":0.11171,"71":0.00349,"72":0.15011,"73":0.01746,"74":0.13964,"75":0.01746,"76":0.00698,"77":0.02095,"78":0.09077,"79":0.06284,"80":0.02095,"81":0.02793,"83":0.06633,"84":0.01047,"85":0.01047,"86":0.09775,"87":0.03142,"88":0.00698,"89":0.01396,"90":0.04189,"91":0.06982,"92":0.0768,"93":0.01047,"94":0.03142,"95":0.01396,"96":0.02793,"97":0.05935,"98":0.06633,"99":0.13266,"100":0.05586,"101":0.04189,"102":0.03491,"103":0.09775,"104":0.03142,"105":0.04189,"106":0.04538,"107":0.07331,"108":0.09077,"109":0.1955,"110":0.08728,"111":0.583,"112":0.47129,"113":0.00698,"114":0.00349,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0.01047,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00349,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.00349,"96":0.00349,"97":0.01396,"98":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.00349,"16":0.00349,"17":0.00349,"18":0.02444,"79":0,"80":0,"81":0,"83":0,"84":0.00349,"85":0,"86":0.00349,"87":0,"88":0,"89":0.00349,"90":0,"91":0,"92":0.01746,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00349,"100":0.00349,"101":0.01396,"102":0.00349,"103":0.00698,"104":0.00349,"105":0.00698,"106":0.01746,"107":0.05237,"108":0.15011,"109":0.09077,"110":0.19201,"111":0.64933,"112":1.65823,"113":0.00349},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0.00349,"10":0,"11":0,"12":0,"13":0.00349,"14":0.02095,"15":0.00349,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00349,"13.1":0.02095,"14.1":0.02444,"15.1":0.00698,"15.2-15.3":0.00349,"15.4":0.01396,"15.5":0.02444,"15.6":0.05586,"16.0":0.01047,"16.1":0.0384,"16.2":0.03491,"16.3":0.12219,"16.4":0.04887,"16.5":0.00349},G:{"8":0,"3.2":0,"4.0-4.1":0.00533,"4.2-4.3":0.08259,"5.0-5.1":0.03197,"6.0-6.1":0.04529,"7.0-7.1":0.00533,"8.1-8.4":0.01332,"9.0-9.2":0.08259,"9.3":0.03463,"10.0-10.2":0.0293,"10.3":0.2078,"11.0-11.2":0.30903,"11.3-11.4":0.10656,"12.0-12.1":0.1412,"12.2-12.5":0.53015,"13.0-13.1":0.05861,"13.2":0.1332,"13.3":0.22378,"13.4-13.7":0.78591,"14.0-14.4":1.26811,"14.5-14.8":1.17486,"15.0-15.1":0.75394,"15.2-15.3":0.7193,"15.4":1.07096,"15.5":0.96174,"15.6":1.35336,"16.0":1.63309,"16.1":3.33277,"16.2":2.16324,"16.3":5.89296,"16.4":2.42166,"16.5":0.03996},P:{"4":0,"20":0.31159,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0,"12.0":0.01113,"13.0":0,"14.0":0,"15.0":0,"16.0":0,"17.0":0.01113,"18.0":0,"19.0":0.01113},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0.09533,"4.1":0.1271,"4.2-4.3":0.03178,"4.4":0,"4.4.3-4.4.4":0.44485},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.02126,"7":0.02126,"8":0.06378,"9":0.70153,"10":0.02126,"11":2.01957,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0.00651,"11":0},R:{_:"0"},M:{"0":0.16273},Q:{"13.1":3.70362},O:{"0":10.1215},H:{"0":0.08627},L:{"0":41.47618}};
diff --git a/node_modules/caniuse-lite/data/regions/CO.js b/node_modules/caniuse-lite/data/regions/CO.js
new file mode 100644
index 0000000..cd6cc4d
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/CO.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00431,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.00431,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.00431,"74":0,"75":0,"76":0,"77":0,"78":0.00431,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0.00862,"98":0,"99":0.00431,"100":0,"101":0,"102":0.00862,"103":0,"104":0.01293,"105":0.00431,"106":0.00431,"107":0.00431,"108":0.00431,"109":0.00862,"110":0.01724,"111":0.20693,"112":0.20693,"113":0.00431,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00862,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0.00431,"45":0,"46":0,"47":0.00431,"48":0,"49":0.01293,"50":0,"51":0,"52":0,"53":0.00431,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0.00431,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00862,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0.00431,"75":0.00431,"76":0.00431,"77":0.00431,"78":0,"79":0.09484,"80":0.00431,"81":0.00862,"83":0.00431,"84":0.00431,"85":0.00862,"86":0.00862,"87":0.02156,"88":0.01293,"89":0.01293,"90":0.00431,"91":0.02156,"92":0.00431,"93":0.00862,"94":0.00431,"95":0.00862,"96":0.01293,"97":0.01724,"98":0.01724,"99":0.02156,"100":0.01724,"101":0.01293,"102":0.01724,"103":0.05604,"104":0.02587,"105":0.03018,"106":0.03018,"107":0.03449,"108":0.05173,"109":1.06913,"110":0.12502,"111":4.53086,"112":6.13455,"113":0.00862,"114":0.00431,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00431,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.00431,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.02156,"96":0.25004,"97":0.61647,"98":0.01293,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00431,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00431,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0.00431,"108":0.00431,"109":0.02156,"110":0.03449,"111":0.33626,"112":0.81478,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00862,"15":0.00431,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.01724,"14.1":0.03449,"15.1":0.00431,"15.2-15.3":0.00431,"15.4":0.00862,"15.5":0.00862,"15.6":0.06035,"16.0":0.00862,"16.1":0.02156,"16.2":0.03018,"16.3":0.1164,"16.4":0.07329,"16.5":0},G:{"8":0.00127,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00254,"6.0-6.1":0,"7.0-7.1":0.01018,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.05088,"10.0-10.2":0,"10.3":0.05851,"11.0-11.2":0.00763,"11.3-11.4":0.01272,"12.0-12.1":0.00254,"12.2-12.5":0.25185,"13.0-13.1":0.00127,"13.2":0.00382,"13.3":0.00763,"13.4-13.7":0.04197,"14.0-14.4":0.08522,"14.5-14.8":0.22641,"15.0-15.1":0.06105,"15.2-15.3":0.11193,"15.4":0.08395,"15.5":0.18443,"15.6":0.53804,"16.0":0.89546,"16.1":1.60904,"16.2":0.91582,"16.3":4.56636,"16.4":2.1051,"16.5":0.03943},P:{"4":0.21096,"20":1.01462,"5.0-5.4":0.02009,"6.2-6.4":0,"7.2-7.4":0.10046,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.02009,"12.0":0,"13.0":0.01005,"14.0":0.02009,"15.0":0.01005,"16.0":0.03014,"17.0":0.05023,"18.0":0.02009,"19.0":0.07032},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00707,"4.2-4.3":0.01414,"4.4":0,"4.4.3-4.4.4":0.0919},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00431,"9":0,"10":0,"11":0.02587,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.12516},Q:{"13.1":0},O:{"0":0.03413},H:{"0":0.12388},L:{"0":69.16785}};
diff --git a/node_modules/caniuse-lite/data/regions/CR.js b/node_modules/caniuse-lite/data/regions/CR.js
new file mode 100644
index 0000000..a35751f
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/CR.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.0046,"53":0,"54":0,"55":0,"56":0.0092,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.0184,"74":0,"75":0,"76":0,"77":0,"78":0.0046,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.0138,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.0138,"103":0,"104":0.0184,"105":0,"106":0.0046,"107":0,"108":0.0046,"109":0.02761,"110":0.0184,"111":0.43249,"112":0.40489,"113":0.02301,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.0046,"48":0,"49":0.0092,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.0046,"68":0.0092,"69":0,"70":0,"71":0,"72":0,"73":0.0046,"74":0,"75":0,"76":0.0046,"77":0.0046,"78":0.0046,"79":0.0138,"80":0.0046,"81":0.0046,"83":0.0046,"84":0,"85":0.0046,"86":0,"87":0.0138,"88":0.0046,"89":0,"90":0.0046,"91":0.0046,"92":0.0046,"93":0.0092,"94":0.02301,"95":0,"96":0.0138,"97":0.0092,"98":0.0092,"99":0.0184,"100":0.0046,"101":0.0046,"102":0.0092,"103":0.04141,"104":0.0092,"105":0.0092,"106":0.0138,"107":0.02301,"108":0.04141,"109":0.4601,"110":0.12423,"111":5.42458,"112":6.21595,"113":0.0092,"114":0,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.0092,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.0046,"69":0.0092,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.02301,"96":0.33127,"97":0.72696,"98":0.0138,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.0046,"16":0,"17":0.0138,"18":0.0046,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.0046,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0.0046,"106":0.0046,"107":0,"108":0.0092,"109":0.02301,"110":0.03221,"111":0.48311,"112":1.25147,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.0138,"14":0.0184,"15":0.0046,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.0138,"13.1":0.11042,"14.1":0.04601,"15.1":0.0184,"15.2-15.3":0.0092,"15.4":0.0138,"15.5":0.08282,"15.6":0.16564,"16.0":0.04141,"16.1":0.08282,"16.2":0.08742,"16.3":0.50611,"16.4":0.24385,"16.5":0.0046},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.0106,"6.0-6.1":0.01272,"7.0-7.1":0.03393,"8.1-8.4":0.00636,"9.0-9.2":0,"9.3":0.07846,"10.0-10.2":0,"10.3":0.02757,"11.0-11.2":0.00636,"11.3-11.4":0.04241,"12.0-12.1":0,"12.2-12.5":0.32869,"13.0-13.1":0,"13.2":0.00212,"13.3":0.01909,"13.4-13.7":0.02969,"14.0-14.4":0.0827,"14.5-14.8":0.3499,"15.0-15.1":0.04665,"15.2-15.3":0.10603,"15.4":0.12936,"15.5":0.25659,"15.6":0.92033,"16.0":1.03484,"16.1":2.61892,"16.2":1.21933,"16.3":8.67953,"16.4":4.12453,"16.5":0.12299},P:{"4":0.15273,"20":2.73905,"5.0-5.4":0,"6.2-6.4":0.01018,"7.2-7.4":0.11201,"8.2":0,"9.2":0.05091,"10.1":0,"11.1-11.2":0.04073,"12.0":0.01018,"13.0":0.02036,"14.0":0.02036,"15.0":0.01018,"16.0":0.04073,"17.0":0.13237,"18.0":0.03055,"19.0":0.11201},I:{"0":0,"3":0,"4":0.00966,"2.1":0,"2.2":0.01932,"2.3":0.00966,"4.1":0.01449,"4.2-4.3":0.02415,"4.4":0,"4.4.3-4.4.4":0.12555},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.0184,"9":0.0046,"10":0.0046,"11":0.02761,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0.0054},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.38873},Q:{"13.1":0},O:{"0":0.03779},H:{"0":0.21979},L:{"0":55.15772}};
diff --git a/node_modules/caniuse-lite/data/regions/CU.js b/node_modules/caniuse-lite/data/regions/CU.js
new file mode 100644
index 0000000..d66f2a6
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/CU.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0.00264,"34":0.00264,"35":0.00264,"36":0,"37":0,"38":0.00264,"39":0,"40":0.00264,"41":0,"42":0,"43":0,"44":0,"45":0.00264,"46":0.00264,"47":0.00528,"48":0,"49":0,"50":0.00791,"51":0,"52":0.0211,"53":0,"54":0.02638,"55":0,"56":0.00264,"57":0.01055,"58":0.00264,"59":0.00264,"60":0.00264,"61":0.00264,"62":0.00264,"63":0.00528,"64":0.00791,"65":0.00264,"66":0.00264,"67":0.00528,"68":0.01319,"69":0,"70":0.00264,"71":0.00528,"72":0.02902,"73":0.00264,"74":0,"75":0.00264,"76":0,"77":0.00264,"78":0.00264,"79":0.00264,"80":0.00528,"81":0.00264,"82":0.00264,"83":0.00264,"84":0.00528,"85":0.00264,"86":0.00264,"87":0.00264,"88":0.00791,"89":0.00528,"90":0.00528,"91":0.01055,"92":0.00264,"93":0.00528,"94":0.01055,"95":0.01319,"96":0.01055,"97":0.01583,"98":0.01055,"99":0.03693,"100":0.01847,"101":0.02638,"102":0.04748,"103":0.00528,"104":0.08442,"105":0.01319,"106":0.02374,"107":0.02638,"108":0.03429,"109":0.03957,"110":0.06859,"111":0.97606,"112":0.60674,"113":0.01319,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0.00791,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00264,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00264,"69":0,"70":0,"71":0.00264,"72":0.00264,"73":0.00264,"74":0.00264,"75":0.00791,"76":0.02638,"77":0.00791,"78":0.00264,"79":0.00791,"80":0.00264,"81":0.01055,"83":0.00264,"84":0.00264,"85":0.00264,"86":0.00528,"87":0.00791,"88":0.02902,"89":0.01055,"90":0.0211,"91":0.00791,"92":0.00528,"93":0.00264,"94":0.00264,"95":0.01055,"96":0.00791,"97":0.00791,"98":0.00264,"99":0.00264,"100":0.01055,"101":0.00528,"102":0.00791,"103":0.01055,"104":0.00791,"105":0.00791,"106":0.01319,"107":0.0211,"108":0.02902,"109":0.18994,"110":0.06595,"111":0.51969,"112":0.53288,"113":0,"114":0,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0.00264,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0.00264,"32":0,"33":0,"34":0,"35":0,"36":0.00264,"37":0.00264,"38":0.00528,"39":0,"40":0,"41":0,"42":0.00264,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0.00264,"51":0,"52":0,"53":0,"54":0.00264,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00264,"64":0.00264,"65":0,"66":0,"67":0.00264,"68":0.00791,"69":0.01319,"70":0,"71":0,"72":0,"73":0.00264,"74":0.00791,"75":0,"76":0,"77":0,"78":0,"79":0.00791,"80":0,"81":0,"82":0,"83":0,"84":0.00264,"85":0.00264,"86":0.00264,"87":0,"88":0,"89":0.00264,"90":0,"91":0,"92":0.00264,"93":0,"94":0.00528,"95":0.01847,"96":0.03166,"97":0.13454,"98":0.00528,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00264,"13":0.00264,"14":0.00264,"15":0.00264,"16":0.00264,"17":0.00528,"18":0.01583,"79":0,"80":0,"81":0,"83":0,"84":0.00791,"85":0.00264,"86":0,"87":0,"88":0,"89":0.00528,"90":0.00528,"91":0,"92":0.02638,"93":0,"94":0,"95":0,"96":0.00264,"97":0,"98":0,"99":0,"100":0.01055,"101":0,"102":0,"103":0,"104":0.00264,"105":0.00264,"106":0.00264,"107":0.00528,"108":0.01055,"109":0.01319,"110":0.02638,"111":0.12399,"112":0.20313,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00264,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.00528,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00264,"14.1":0.00264,"15.1":0,"15.2-15.3":0,"15.4":0.00264,"15.5":0.04221,"15.6":0.02374,"16.0":0,"16.1":0.00264,"16.2":0.08705,"16.3":0.08178,"16.4":0.02902,"16.5":0.00264},G:{"8":0.00189,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00284,"7.0-7.1":0.02368,"8.1-8.4":0.02462,"9.0-9.2":0.00189,"9.3":0.03883,"10.0-10.2":0.00189,"10.3":0.12123,"11.0-11.2":0.02652,"11.3-11.4":0.00663,"12.0-12.1":0.01231,"12.2-12.5":1.05698,"13.0-13.1":0.02557,"13.2":0.03694,"13.3":0.15343,"13.4-13.7":0.15438,"14.0-14.4":0.71696,"14.5-14.8":0.36748,"15.0-15.1":0.26803,"15.2-15.3":0.38926,"15.4":0.20173,"15.5":0.35422,"15.6":0.42809,"16.0":0.31728,"16.1":0.80505,"16.2":0.54459,"16.3":1.558,"16.4":0.97458,"16.5":0.01231},P:{"4":0.28399,"20":0.86211,"5.0-5.4":0.02028,"6.2-6.4":0.02028,"7.2-7.4":0.23328,"8.2":0.01014,"9.2":0.06085,"10.1":0,"11.1-11.2":0.06085,"12.0":0.01014,"13.0":0.04057,"14.0":0.06085,"15.0":0.071,"16.0":0.15214,"17.0":0.13185,"18.0":0.08114,"19.0":0.2637},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00533,"4.2-4.3":0.02663,"4.4":0,"4.4.3-4.4.4":0.17928},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0.00264,"10":0,"11":0.01319,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.65522},Q:{"13.1":0.00736},O:{"0":0.16196},H:{"0":0.82244},L:{"0":81.01957}};
diff --git a/node_modules/caniuse-lite/data/regions/CV.js b/node_modules/caniuse-lite/data/regions/CV.js
new file mode 100644
index 0000000..00a771a
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/CV.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00529,"53":0,"54":0,"55":0,"56":0.01058,"57":0,"58":0,"59":0,"60":0,"61":0.00529,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.02117,"103":0,"104":0.07938,"105":0,"106":0.00529,"107":0,"108":0,"109":0,"110":0.14818,"111":0.598,"112":0.35456,"113":0,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00529,"47":0,"48":0,"49":0.00529,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.00529,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.01588,"71":0.00529,"72":0,"73":0,"74":0.01058,"75":0,"76":0.01058,"77":0,"78":0.01058,"79":0.01588,"80":0,"81":0.43394,"83":0.00529,"84":0,"85":0,"86":0.00529,"87":0.0688,"88":0,"89":0.00529,"90":0.01058,"91":0.04234,"92":0,"93":0.42865,"94":0.01058,"95":0.01058,"96":0.00529,"97":0.02646,"98":0.05292,"99":0.02646,"100":0.01588,"101":0.00529,"102":0.01588,"103":0.19051,"104":0.02646,"105":0.21168,"106":0.05821,"107":0.4657,"108":0.04234,"109":1.16424,"110":0.12701,"111":6.66263,"112":10.17122,"113":0.00529,"114":0,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.01058,"70":0,"71":0,"72":0,"73":0,"74":0.08996,"75":0,"76":0,"77":0,"78":0,"79":0.0635,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.00529,"96":0.0635,"97":0.22226,"98":0.01588,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0.00529,"14":0,"15":0.00529,"16":0,"17":0,"18":0.00529,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0.00529,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.01588,"93":0,"94":0,"95":0,"96":0.02646,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00529,"103":0,"104":0,"105":0.08467,"106":0,"107":0.01588,"108":0.03175,"109":0.03175,"110":0.03704,"111":0.80438,"112":1.60348,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00529,"14":0.00529,"15":0.00529,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.03175,"13.1":0.07409,"14.1":0.03704,"15.1":0,"15.2-15.3":0.01058,"15.4":0.01588,"15.5":0.00529,"15.6":0.07938,"16.0":0.00529,"16.1":0.03175,"16.2":0.02646,"16.3":0.14288,"16.4":0.10055,"16.5":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00154,"6.0-6.1":0,"7.0-7.1":0.06167,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.12796,"10.0-10.2":0,"10.3":0.09096,"11.0-11.2":0.0555,"11.3-11.4":0.04008,"12.0-12.1":0.03546,"12.2-12.5":1.94256,"13.0-13.1":0.00617,"13.2":0.00617,"13.3":0.1958,"13.4-13.7":0.04163,"14.0-14.4":1.22412,"14.5-14.8":0.20659,"15.0-15.1":0.08479,"15.2-15.3":0.31605,"15.4":0.43785,"15.5":0.44556,"15.6":1.1532,"16.0":0.79707,"16.1":1.4415,"16.2":0.59664,"16.3":3.27614,"16.4":1.05145,"16.5":0.10946},P:{"4":0.23934,"20":1.10304,"5.0-5.4":0.02081,"6.2-6.4":0.01041,"7.2-7.4":0.14568,"8.2":0,"9.2":0.02081,"10.1":0.01041,"11.1-11.2":0.02081,"12.0":0,"13.0":0.10406,"14.0":0.02081,"15.0":0.04162,"16.0":0.14568,"17.0":0.10406,"18.0":0.10406,"19.0":0.13528},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00858,"4.2-4.3":0.00643,"4.4":0,"4.4.3-4.4.4":0.32488},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01058,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.39076},Q:{"13.1":0},O:{"0":0.10828},H:{"0":0.22732},L:{"0":56.09464}};
diff --git a/node_modules/caniuse-lite/data/regions/CX.js b/node_modules/caniuse-lite/data/regions/CX.js
new file mode 100644
index 0000000..c3134ad
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/CX.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0,"111":6.52,"112":63.04,"113":0,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0,"111":4.35,"112":26.09,"113":0,"114":0,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0,"111":0,"112":0,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0,"14.1":0,"15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0,"15.6":0,"16.0":0,"16.1":0,"16.2":0,"16.3":0,"16.4":0,"16.5":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0,"10.0-10.2":0,"10.3":0,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":0,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0,"14.0-14.4":0,"14.5-14.8":0,"15.0-15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0,"15.6":0,"16.0":0,"16.1":0,"16.2":0,"16.3":0,"16.4":0,"16.5":0},P:{"4":0,"20":0,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0,"12.0":0,"13.0":0,"14.0":0,"15.0":0,"16.0":0,"17.0":0,"18.0":0,"19.0":0},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0},Q:{"13.1":0},O:{"0":0},H:{"0":0},L:{"0":0}};
diff --git a/node_modules/caniuse-lite/data/regions/CY.js b/node_modules/caniuse-lite/data/regions/CY.js
new file mode 100644
index 0000000..7a32b02
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/CY.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.05939,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.0099,"89":0.00495,"90":0,"91":0,"92":0,"93":0,"94":0.00495,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.0099,"103":0.00495,"104":0,"105":0.00495,"106":0,"107":0,"108":0,"109":0.02475,"110":0.0198,"111":0.58893,"112":0.47016,"113":0,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.01485,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.01485,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00495,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00495,"66":0.00495,"67":0,"68":0.0099,"69":0.00495,"70":0,"71":0,"72":0,"73":0,"74":0.00495,"75":0,"76":0,"77":0.00495,"78":0.00495,"79":0.07424,"80":0,"81":0.0099,"83":0.0099,"84":0.00495,"85":0.00495,"86":0.00495,"87":0.0198,"88":0,"89":0.00495,"90":0.00495,"91":0.02475,"92":0,"93":0.12867,"94":0.07424,"95":0.00495,"96":0.00495,"97":0,"98":0.02969,"99":0.0099,"100":0.01485,"101":0.0099,"102":0.00495,"103":0.03959,"104":0.0198,"105":0.0198,"106":0.02475,"107":0.01485,"108":0.06434,"109":1.55894,"110":0.15837,"111":6.00809,"112":7.49774,"113":0.00495,"114":0,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.01485,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00495,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.0099,"68":0.02969,"69":0.03464,"70":0,"71":0,"72":0,"73":0,"74":0.00495,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0.00495,"95":0.0198,"96":0.13362,"97":0.42067,"98":0.01485,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.00495,"16":0,"17":0,"18":0.00495,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.01485,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.0099,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0.04454,"110":0.0198,"111":0.7374,"112":1.57873,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00495,"14":0.03959,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00495,"13.1":0.18311,"14.1":0.07918,"15.1":0.03959,"15.2-15.3":0.0198,"15.4":0.0198,"15.5":0.02969,"15.6":0.18806,"16.0":0.02475,"16.1":0.06434,"16.2":0.10393,"16.3":0.40582,"16.4":0.2326,"16.5":0.02475},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00206,"7.0-7.1":0.00412,"8.1-8.4":0.00412,"9.0-9.2":0,"9.3":0.07207,"10.0-10.2":0.00412,"10.3":0.08237,"11.0-11.2":0.00412,"11.3-11.4":0.00824,"12.0-12.1":0.0103,"12.2-12.5":0.32124,"13.0-13.1":0.00412,"13.2":0.00206,"13.3":0.04736,"13.4-13.7":0.0556,"14.0-14.4":0.14415,"14.5-14.8":0.52922,"15.0-15.1":0.16474,"15.2-15.3":0.17503,"15.4":0.13179,"15.5":0.27182,"15.6":0.94724,"16.0":1.29936,"16.1":2.27131,"16.2":1.55883,"16.3":7.85591,"16.4":3.44919,"16.5":0.04942},P:{"4":0.12236,"20":4.24191,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.02039,"8.2":0,"9.2":0.0102,"10.1":0,"11.1-11.2":0.02039,"12.0":0,"13.0":0.03059,"14.0":0.03059,"15.0":0.0102,"16.0":0.05098,"17.0":0.05098,"18.0":0.05098,"19.0":0.24473},I:{"0":0,"3":0,"4":0.01159,"2.1":0,"2.2":0.01739,"2.3":0.01159,"4.1":0.01159,"4.2-4.3":0.02898,"4.4":0,"4.4.3-4.4.4":0.09854},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.0198,"9":0.00495,"10":0.00495,"11":0.12373,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0.00505},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.18689},Q:{"13.1":0},O:{"0":0.28286},H:{"0":0.35865},L:{"0":49.26443}};
diff --git a/node_modules/caniuse-lite/data/regions/CZ.js b/node_modules/caniuse-lite/data/regions/CZ.js
new file mode 100644
index 0000000..da50b66
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/CZ.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.07748,"53":0,"54":0,"55":0,"56":0.01107,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00553,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.0166,"79":0,"80":0,"81":0.00553,"82":0,"83":0.00553,"84":0,"85":0,"86":0.00553,"87":0,"88":0.00553,"89":0.00553,"90":0,"91":0.02214,"92":0,"93":0,"94":0,"95":0,"96":0.00553,"97":0.00553,"98":0,"99":0.00553,"100":0.00553,"101":0,"102":0.09961,"103":0.00553,"104":0.00553,"105":0.00553,"106":0.00553,"107":0.01107,"108":0.02214,"109":0.0332,"110":0.04427,"111":1.70447,"112":1.47204,"113":0.00553,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00553,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.00553,"49":0.0166,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00553,"67":0,"68":0.00553,"69":0,"70":0.00553,"71":0.00553,"72":0.00553,"73":0.00553,"74":0.00553,"75":0.00553,"76":0.00553,"77":0.00553,"78":0.00553,"79":0.05534,"80":0.01107,"81":0.02214,"83":0.0166,"84":0.0166,"85":0.0332,"86":0.0166,"87":0.02767,"88":0.01107,"89":0.02214,"90":0.01107,"91":0.00553,"92":0.01107,"93":0.0166,"94":0.06641,"95":0.02767,"96":0.02214,"97":0.00553,"98":0.00553,"99":0.01107,"100":0.02214,"101":0.01107,"102":0.14942,"103":0.06641,"104":0.0166,"105":0.03874,"106":0.07194,"107":0.03874,"108":0.07194,"109":0.94078,"110":0.22689,"111":7.07799,"112":7.35469,"113":0.00553,"114":0,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00553,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.00553,"68":0.00553,"69":0.01107,"70":0,"71":0,"72":0,"73":0,"74":0.01107,"75":0.01107,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.02214,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0.00553,"95":0.08854,"96":0.36524,"97":1.18981,"98":0.04427,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.01107},B:{"12":0,"13":0,"14":0,"15":0.00553,"16":0,"17":0,"18":0.00553,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0.00553,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00553,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0.00553,"105":0.00553,"106":0.0166,"107":0.01107,"108":0.01107,"109":0.09961,"110":0.06641,"111":1.20641,"112":2.74486,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00553,"14":0.0332,"15":0.00553,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.0166,"10.1":0,"11.1":0,"12.1":0.00553,"13.1":0.04981,"14.1":0.07194,"15.1":0.01107,"15.2-15.3":0.01107,"15.4":0.0332,"15.5":0.03874,"15.6":0.16602,"16.0":0.02767,"16.1":0.08854,"16.2":0.11621,"16.3":0.49253,"16.4":0.29884,"16.5":0.01107},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00375,"8.1-8.4":0.00938,"9.0-9.2":0.00375,"9.3":0.03191,"10.0-10.2":0.00188,"10.3":0.10135,"11.0-11.2":0.01126,"11.3-11.4":0.01126,"12.0-12.1":0.02065,"12.2-12.5":0.23648,"13.0-13.1":0.00375,"13.2":0.00375,"13.3":0.01501,"13.4-13.7":0.04504,"14.0-14.4":0.09947,"14.5-14.8":0.24962,"15.0-15.1":0.06194,"15.2-15.3":0.08633,"15.4":0.11449,"15.5":0.24399,"15.6":0.57431,"16.0":1.18052,"16.1":2.55623,"16.2":1.34193,"16.3":6.93109,"16.4":3.4008,"16.5":0.14452},P:{"4":0.10336,"20":2.60468,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.02067,"12.0":0,"13.0":0.02067,"14.0":0.03101,"15.0":0.01034,"16.0":0.04134,"17.0":0.05168,"18.0":0.03101,"19.0":0.17571},I:{"0":0,"3":0,"4":0.00985,"2.1":0,"2.2":0.01478,"2.3":0.00985,"4.1":0.01971,"4.2-4.3":0.03942,"4.4":0,"4.4.3-4.4.4":0.28085},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.04533,"9":0.00567,"10":0.06232,"11":0.12465,"5.5":0},S:{"2.5":0.00447,_:"3.0-3.1"},J:{"7":0,"10":0.00447},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.35281},Q:{"13.1":0},O:{"0":0.18311},H:{"0":0.48201},L:{"0":47.13285}};
diff --git a/node_modules/caniuse-lite/data/regions/DE.js b/node_modules/caniuse-lite/data/regions/DE.js
new file mode 100644
index 0000000..2851b3b
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/DE.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00548,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00548,"35":0,"36":0,"37":0,"38":0.00548,"39":0,"40":0.01096,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.00548,"49":0,"50":0,"51":0,"52":0.04933,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0.01096,"60":0.00548,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00548,"67":0,"68":0.01096,"69":0,"70":0,"71":0,"72":0.00548,"73":0,"74":0,"75":0,"76":0,"77":0.00548,"78":0.02741,"79":0.00548,"80":0.00548,"81":0.00548,"82":0.00548,"83":0.00548,"84":0.00548,"85":0,"86":0.01096,"87":0.00548,"88":0.00548,"89":0.00548,"90":0,"91":0.02192,"92":0,"93":0,"94":0.00548,"95":0.00548,"96":0.01096,"97":0.00548,"98":0.01096,"99":0.00548,"100":0.00548,"101":0.00548,"102":0.2302,"103":0.01096,"104":0.01096,"105":0.01644,"106":0.01644,"107":0.01644,"108":0.02741,"109":0.04385,"110":0.0877,"111":2.53222,"112":2.2801,"113":0.00548,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00548,"35":0.01096,"36":0,"37":0,"38":0.00548,"39":0.00548,"40":0.00548,"41":0.00548,"42":0.00548,"43":0.03289,"44":0.01644,"45":0.02192,"46":0,"47":0.00548,"48":0,"49":0.01096,"50":0,"51":0,"52":0.01096,"53":0,"54":0,"55":0,"56":0.00548,"57":0,"58":0,"59":0,"60":0.01644,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.04933,"67":0.00548,"68":0,"69":0.00548,"70":0.00548,"71":0.01096,"72":0.01096,"73":0,"74":0.00548,"75":0.77282,"76":0.00548,"77":0.00548,"78":0.00548,"79":0.04385,"80":0.03837,"81":0.03289,"83":0.01644,"84":0.03289,"85":0.03837,"86":0.03289,"87":0.03289,"88":0.01096,"89":0.01644,"90":0.01644,"91":0.07673,"92":0.01096,"93":0.10962,"94":0.01644,"95":0.00548,"96":0.03837,"97":0.00548,"98":0.00548,"99":0.07673,"100":0.08222,"101":0.01096,"102":0.01644,"103":0.05481,"104":0.02192,"105":0.05481,"106":0.06577,"107":0.04933,"108":0.12606,"109":0.78926,"110":0.21376,"111":4.3848,"112":5.05896,"113":0.01096,"114":0.00548,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00548,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00548,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00548,"69":0.02192,"70":0,"71":0,"72":0,"73":0,"74":0.01096,"75":0.00548,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00548,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0.00548,"95":0.04933,"96":0.48781,"97":1.24419,"98":0.04385,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0.00548,"18":0.01096,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0.00548,"86":0.00548,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00548,"93":0,"94":0,"95":0,"96":0.00548,"97":0.00548,"98":0,"99":0.00548,"100":0,"101":0.00548,"102":0,"103":0.01096,"104":0.00548,"105":0.00548,"106":0.00548,"107":0.01644,"108":0.02741,"109":0.10414,"110":0.07125,"111":1.26063,"112":2.9707,"113":0},E:{"4":0,"5":0,"6":0,"7":0.00548,"8":0.00548,"9":0,"10":0,"11":0,"12":0,"13":0.00548,"14":0.03837,"15":0.01096,_:"0","3.1":0,"3.2":0,"5.1":0.00548,"6.1":0,"7.1":0,"9.1":0.00548,"10.1":0,"11.1":0.01096,"12.1":0.01644,"13.1":0.07125,"14.1":0.10962,"15.1":0.01644,"15.2-15.3":0.01644,"15.4":0.04933,"15.5":0.07125,"15.6":0.36175,"16.0":0.07125,"16.1":0.15895,"16.2":0.21376,"16.3":1.05235,"16.4":0.59195,"16.5":0.00548},G:{"8":0.01723,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01149,"6.0-6.1":0.00862,"7.0-7.1":0.03159,"8.1-8.4":0.11774,"9.0-9.2":0.02585,"9.3":0.07754,"10.0-10.2":0.00287,"10.3":0.08615,"11.0-11.2":0.01436,"11.3-11.4":0.07179,"12.0-12.1":0.00862,"12.2-12.5":0.36471,"13.0-13.1":0.00862,"13.2":0.00574,"13.3":0.02297,"13.4-13.7":0.07467,"14.0-14.4":0.18092,"14.5-14.8":0.40779,"15.0-15.1":0.12061,"15.2-15.3":0.16369,"15.4":0.19241,"15.5":0.36471,"15.6":1.12572,"16.0":1.9614,"16.1":3.51214,"16.2":2.02171,"16.3":10.68289,"16.4":5.70616,"16.5":0.12636},P:{"4":0.17548,"20":4.15982,"5.0-5.4":0.01032,"6.2-6.4":0,"7.2-7.4":0.02064,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.01032,"12.0":0.01032,"13.0":0.04129,"14.0":0.03097,"15.0":0.01032,"16.0":0.03097,"17.0":0.05161,"18.0":0.04129,"19.0":0.15483},I:{"0":0,"3":0,"4":0.01203,"2.1":0,"2.2":0,"2.3":0,"4.1":0.02004,"4.2-4.3":0.10021,"4.4":0,"4.4.3-4.4.4":0.17638},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00568,"9":0.00568,"10":0.00568,"11":0.13642,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":1.02129},Q:{"13.1":0.00452},O:{"0":0.15365},H:{"0":0.50912},L:{"0":34.23592}};
diff --git a/node_modules/caniuse-lite/data/regions/DJ.js b/node_modules/caniuse-lite/data/regions/DJ.js
new file mode 100644
index 0000000..270243e
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/DJ.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0.00411,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00411,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0.00823,"108":0,"109":0.01234,"110":0.00411,"111":0.45254,"112":0.5883,"113":0.00411,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00411,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.01646,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00823,"66":0,"67":0.06582,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00823,"80":0,"81":0.01234,"83":0.00411,"84":0,"85":0.00411,"86":0.00823,"87":0.00823,"88":0,"89":0.00411,"90":0,"91":0,"92":0,"93":0.00411,"94":0.05348,"95":0.00411,"96":0,"97":0.00823,"98":0,"99":0.01646,"100":0,"101":0,"102":0.00411,"103":0.01646,"104":0.00823,"105":0.00411,"106":0.00823,"107":0.01234,"108":0.04114,"109":0.97913,"110":0.02057,"111":3.02379,"112":3.93298,"113":0.00411,"114":0.00411,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0.00411,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00823,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00411,"69":0.09462,"70":0,"71":0,"72":0,"73":0,"74":0.00823,"75":0,"76":0,"77":0.03291,"78":0,"79":0.00411,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0.00411,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.19747,"96":0.00823,"97":0.10285,"98":0.00823,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0.01646,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0.01234,"15":0,"16":0,"17":0.00411,"18":0.01234,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00411,"90":0,"91":0,"92":0.00411,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.00411,"102":0,"103":0,"104":0,"105":0.01646,"106":0,"107":0.00411,"108":0.05348,"109":0.01234,"110":0.04937,"111":0.35792,"112":0.74052,"113":0.00411},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00823,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.04525,"14.1":0.01234,"15.1":0.00823,"15.2-15.3":0,"15.4":0,"15.5":0.00411,"15.6":0.05348,"16.0":0,"16.1":0.00823,"16.2":0.00823,"16.3":0.01646,"16.4":0.0288,"16.5":0.00411},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.01493,"8.1-8.4":0,"9.0-9.2":0.00498,"9.3":0.00871,"10.0-10.2":0,"10.3":0.61585,"11.0-11.2":0.00124,"11.3-11.4":0,"12.0-12.1":0.00124,"12.2-12.5":0.12566,"13.0-13.1":0.04977,"13.2":0,"13.3":0,"13.4-13.7":0.01369,"14.0-14.4":0.1692,"14.5-14.8":0.32099,"15.0-15.1":0.07962,"15.2-15.3":0.05723,"15.4":0.09829,"15.5":0.45038,"15.6":0.7104,"16.0":0.902,"16.1":1.34118,"16.2":1.1135,"16.3":2.80552,"16.4":2.37505,"16.5":0.0112},P:{"4":0.10099,"20":2.13079,"5.0-5.4":0.0101,"6.2-6.4":0.0101,"7.2-7.4":0.61601,"8.2":0,"9.2":0.05049,"10.1":0,"11.1-11.2":0.20197,"12.0":0.0101,"13.0":0.30296,"14.0":0.30296,"15.0":0.0101,"16.0":0.26256,"17.0":0.04039,"18.0":0.05049,"19.0":1.00985},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.10405},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00411,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0.00589},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.09418},Q:{"13.1":0},O:{"0":0.94765},H:{"0":0.62969},L:{"0":67.59935}};
diff --git a/node_modules/caniuse-lite/data/regions/DK.js b/node_modules/caniuse-lite/data/regions/DK.js
new file mode 100644
index 0000000..b5df2f7
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/DK.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.02796,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.01398,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.02097,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.04892,"103":0,"104":0,"105":0,"106":0.00699,"107":0,"108":0.00699,"109":0.02796,"110":0.01398,"111":0.8247,"112":0.67094,"113":0,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00699,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.02097,"50":0,"51":0,"52":0.01398,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.01398,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0.01398,"77":0,"78":0,"79":0.02796,"80":0,"81":0,"83":0,"84":0.00699,"85":0.01398,"86":0.00699,"87":0.02796,"88":0.02796,"89":0.02097,"90":0.23763,"91":0.02796,"92":0.03495,"93":0.08387,"94":0.06989,"95":0.00699,"96":0.01398,"97":0.02097,"98":0.01398,"99":0.02097,"100":0.02796,"101":0.01398,"102":0.01398,"103":0.25859,"104":0.02796,"105":0.05591,"106":0.03495,"107":0.09785,"108":0.16075,"109":1.07631,"110":0.60105,"111":13.64253,"112":16.61285,"113":0.01398,"114":0,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00699,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.02097,"96":0.26558,"97":0.62202,"98":0.01398,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00699,"93":0,"94":0,"95":0,"96":0,"97":0.00699,"98":0,"99":0,"100":0.00699,"101":0.00699,"102":0.01398,"103":0.00699,"104":0,"105":0.02097,"106":0.00699,"107":0.05591,"108":0.05591,"109":0.09086,"110":0.06989,"111":1.79617,"112":4.50092,"113":0},E:{"4":0,"5":0.00699,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00699,"14":0.09086,"15":0.02097,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.02097,"13.1":0.09785,"14.1":0.29354,"15.1":0.04193,"15.2-15.3":0.03495,"15.4":0.07688,"15.5":0.1258,"15.6":0.60105,"16.0":0.07688,"16.1":0.18171,"16.2":0.27257,"16.3":1.57951,"16.4":0.67094,"16.5":0.00699},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0.03475,"9.3":0.09384,"10.0-10.2":0,"10.3":0.12164,"11.0-11.2":0,"11.3-11.4":0.0278,"12.0-12.1":0.00348,"12.2-12.5":0.39272,"13.0-13.1":0,"13.2":0,"13.3":0.0139,"13.4-13.7":0.05213,"14.0-14.4":0.15292,"14.5-14.8":0.57691,"15.0-15.1":0.13206,"15.2-15.3":0.1981,"15.4":0.21895,"15.5":0.49698,"15.6":1.74464,"16.0":2.16864,"16.1":4.60836,"16.2":2.26595,"16.3":14.52364,"16.4":5.45288,"16.5":0.09384},P:{"4":0.02079,"20":1.424,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0,"12.0":0,"13.0":0,"14.0":0.01039,"15.0":0,"16.0":0,"17.0":0.01039,"18.0":0.01039,"19.0":0.04158},I:{"0":0,"3":0,"4":0.01014,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00507,"4.2-4.3":0.01522,"4.4":0,"4.4.3-4.4.4":0.12172},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.03661,"9":0.00732,"10":0.00732,"11":0.10251,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.29207},Q:{"13.1":0},O:{"0":0.00903},H:{"0":0.09692},L:{"0":15.89257}};
diff --git a/node_modules/caniuse-lite/data/regions/DM.js b/node_modules/caniuse-lite/data/regions/DM.js
new file mode 100644
index 0000000..2c1bbd6
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/DM.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.0104,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0.0104,"107":0,"108":0,"109":0,"110":0.01561,"111":0.23409,"112":0.21328,"113":0,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0.0052,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.0052,"50":0,"51":0,"52":0.0052,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.0052,"70":0,"71":0,"72":0.0052,"73":0,"74":0.04682,"75":0.02601,"76":0.5254,"77":0.06242,"78":0,"79":0,"80":0,"81":0.01561,"83":0.0052,"84":0,"85":0,"86":0.07283,"87":0,"88":0.03121,"89":0,"90":0,"91":0,"92":0,"93":0.03121,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.0052,"100":0.02081,"101":0,"102":0.0052,"103":0.20808,"104":0.01561,"105":0.16126,"106":0.0104,"107":0.0052,"108":0.02601,"109":0.89474,"110":0.15606,"111":5.78983,"112":6.22679,"113":0,"114":0.0052,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.08843,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.01561,"70":0,"71":0,"72":0,"73":0,"74":0.01561,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.01561,"86":0,"87":0.0052,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.0052,"96":0.09884,"97":0.79591,"98":0.0104,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0.0104,"106":0,"107":0.0052,"108":0.0104,"109":0.02601,"110":0.0052,"111":1.20166,"112":2.41373,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.0052,"14":0.02081,"15":0.01561,_:"0","3.1":0,"3.2":0,"5.1":0.0052,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.0052,"13.1":0.02601,"14.1":0.06242,"15.1":0,"15.2-15.3":0.0052,"15.4":0,"15.5":0.0052,"15.6":0.2653,"16.0":0.02081,"16.1":0.05722,"16.2":0.06763,"16.3":0.65025,"16.4":0.04162,"16.5":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.02823,"10.0-10.2":0,"10.3":0.02118,"11.0-11.2":0.00282,"11.3-11.4":0.00424,"12.0-12.1":0.00565,"12.2-12.5":0.44469,"13.0-13.1":0,"13.2":0.00706,"13.3":0.00706,"13.4-13.7":0.072,"14.0-14.4":0.05223,"14.5-14.8":0.15529,"15.0-15.1":0.02259,"15.2-15.3":0.06917,"15.4":0.05788,"15.5":0.6635,"15.6":0.46022,"16.0":1.03478,"16.1":0.87244,"16.2":0.67762,"16.3":5.63273,"16.4":2.56367,"16.5":0.10164},P:{"4":0.08343,"20":4.69296,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.09386,"8.2":0,"9.2":0.01043,"10.1":0,"11.1-11.2":0,"12.0":0.01043,"13.0":0.02086,"14.0":0,"15.0":0.01043,"16.0":0.02086,"17.0":0.04172,"18.0":0.04172,"19.0":0.26072},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.10361,"4.4":0,"4.4.3-4.4.4":0.68386},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.0104,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.19672},Q:{"13.1":0},O:{"0":0.36465},H:{"0":0.268},L:{"0":56.20485}};
diff --git a/node_modules/caniuse-lite/data/regions/DO.js b/node_modules/caniuse-lite/data/regions/DO.js
new file mode 100644
index 0000000..e178b03
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/DO.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00516,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.03096,"74":0,"75":0,"76":0,"77":0,"78":0.01032,"79":0,"80":0.01032,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.00516,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.00516,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00516,"103":0,"104":0.11868,"105":0,"106":0.01548,"107":0,"108":0,"109":0.00516,"110":0.01548,"111":0.27348,"112":0.30444,"113":0,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.00516,"44":0,"45":0,"46":0,"47":0.00516,"48":0.00516,"49":0.02064,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.00516,"65":0.01032,"66":0,"67":0,"68":0.01032,"69":0.774,"70":0.00516,"71":0,"72":0.00516,"73":0.04644,"74":0.00516,"75":0.00516,"76":0.2322,"77":0.01032,"78":0,"79":0.04128,"80":0.00516,"81":0.02064,"83":0.01032,"84":0.04128,"85":0.13416,"86":0.02064,"87":0.03612,"88":0.01032,"89":0.01032,"90":0.01032,"91":0.10836,"92":0.01548,"93":0.2064,"94":0.3354,"95":0.01032,"96":0.01032,"97":0.03096,"98":0.01548,"99":0.03096,"100":0.01032,"101":0.01032,"102":0.01548,"103":0.23736,"104":0.01548,"105":0.03096,"106":0.03612,"107":0.0516,"108":0.08256,"109":1.09908,"110":0.17028,"111":5.5212,"112":8.62236,"113":0.01032,"114":0.00516,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00516,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00516,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.00516,"68":0.00516,"69":0.01032,"70":0.00516,"71":0,"72":0,"73":0,"74":0,"75":0.00516,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00516,"86":0,"87":0,"88":0,"89":0,"90":0.00516,"91":0,"92":0,"93":0,"94":0,"95":0.03096,"96":0.21672,"97":0.57792,"98":0.02064,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0.00516,"18":0.04128,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0.00516,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.01548,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0.00516,"105":0.00516,"106":0,"107":0.00516,"108":0.01032,"109":0.04644,"110":0.03096,"111":0.52116,"112":1.55316,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.04128,"15":0.00516,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.01032,"13.1":0.03612,"14.1":0.06192,"15.1":0.01032,"15.2-15.3":0.00516,"15.4":0.02064,"15.5":0.0516,"15.6":0.18576,"16.0":0.01548,"16.1":0.06708,"16.2":0.08256,"16.3":0.40248,"16.4":0.17028,"16.5":0.02064},G:{"8":0,"3.2":0.00287,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00573,"6.0-6.1":0,"7.0-7.1":0.0602,"8.1-8.4":0,"9.0-9.2":0.00573,"9.3":0.05733,"10.0-10.2":0,"10.3":0.05446,"11.0-11.2":0.01147,"11.3-11.4":0.0172,"12.0-12.1":0.06593,"12.2-12.5":0.58191,"13.0-13.1":0.0172,"13.2":0.00573,"13.3":0.04587,"13.4-13.7":0.129,"14.0-14.4":0.39272,"14.5-14.8":0.71951,"15.0-15.1":0.19779,"15.2-15.3":0.29526,"15.4":0.26372,"15.5":0.51885,"15.6":1.59668,"16.0":1.79161,"16.1":3.21916,"16.2":1.88047,"16.3":9.48835,"16.4":3.84407,"16.5":0.18346},P:{"4":0.13555,"20":1.0844,"5.0-5.4":0.02085,"6.2-6.4":0.01043,"7.2-7.4":0.08342,"8.2":0,"9.2":0.01043,"10.1":0,"11.1-11.2":0.05213,"12.0":0,"13.0":0.01043,"14.0":0.02085,"15.0":0.01043,"16.0":0.06256,"17.0":0.03128,"18.0":0.04171,"19.0":0.1147},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.2512,"4.4":0,"4.4.3-4.4.4":0.44484},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00631,"9":0.00631,"10":0.00631,"11":0.03784,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.35332},Q:{"13.1":0},O:{"0":0.06776},H:{"0":0.16496},L:{"0":46.74136}};
diff --git a/node_modules/caniuse-lite/data/regions/DZ.js b/node_modules/caniuse-lite/data/regions/DZ.js
new file mode 100644
index 0000000..48ce76c
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/DZ.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0.00382,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00382,"39":0,"40":0,"41":0.00382,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00765,"48":0.00765,"49":0,"50":0,"51":0,"52":0.04205,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00382,"69":0,"70":0,"71":0,"72":0.00382,"73":0,"74":0,"75":0.00382,"76":0,"77":0,"78":0.00382,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00382,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00765,"100":0.00382,"101":0.00382,"102":0.01529,"103":0.00765,"104":0.00382,"105":0.00382,"106":0.00765,"107":0.00382,"108":0.00765,"109":0.01147,"110":0.02294,"111":0.45876,"112":0.39759,"113":0.00765,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0.00382,"30":0,"31":0,"32":0.01147,"33":0.00765,"34":0,"35":0,"36":0,"37":0,"38":0.00382,"39":0,"40":0.00765,"41":0,"42":0,"43":0.03823,"44":0,"45":0,"46":0,"47":0.00382,"48":0,"49":0.03823,"50":0.00382,"51":0,"52":0,"53":0,"54":0,"55":0.00382,"56":0.00765,"57":0,"58":0.00382,"59":0,"60":0.00382,"61":0.00382,"62":0,"63":0.01147,"64":0.00382,"65":0.00382,"66":0.00382,"67":0.00382,"68":0.01529,"69":0.00765,"70":0.00765,"71":0.00765,"72":0.00765,"73":0.00382,"74":0.01147,"75":0.00382,"76":0.00765,"77":0.00382,"78":0.00382,"79":0.02676,"80":0.00765,"81":0.02294,"83":0.01147,"84":0.00765,"85":0.02294,"86":0.00765,"87":0.01912,"88":0.00765,"89":0.00765,"90":0.00382,"91":0.01147,"92":0.00765,"93":0.00382,"94":0.00765,"95":0.02294,"96":0.01147,"97":0.01147,"98":0.02676,"99":0.01147,"100":0.01529,"101":0.01147,"102":0.02676,"103":0.03058,"104":0.01529,"105":0.03058,"106":0.02676,"107":0.04205,"108":0.08793,"109":3.52481,"110":0.07646,"111":1.90768,"112":2.27086,"113":0.00765,"114":0.00382,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00382,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.00382,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0.00382,"62":0,"63":0.00382,"64":0.00382,"65":0,"66":0,"67":0.00382,"68":0.00765,"69":0.03441,"70":0.00382,"71":0,"72":0,"73":0,"74":0.00382,"75":0.00765,"76":0,"77":0,"78":0,"79":0.01529,"80":0,"81":0,"82":0,"83":0,"84":0.00382,"85":0.01912,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.14145,"96":0.11087,"97":0.32113,"98":0.01147,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00382,"13":0,"14":0.00382,"15":0,"16":0,"17":0,"18":0.00382,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.01147,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0.00382,"107":0.00382,"108":0.00382,"109":0.04205,"110":0.02294,"111":0.23703,"112":0.45876,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00765,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.00382,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00382,"14.1":0.01147,"15.1":0.00382,"15.2-15.3":0.00382,"15.4":0.00382,"15.5":0.00765,"15.6":0.02676,"16.0":0.00382,"16.1":0.01147,"16.2":0.01147,"16.3":0.0497,"16.4":0.03823,"16.5":0},G:{"8":0.00081,"3.2":0.00162,"4.0-4.1":0,"4.2-4.3":0.00081,"5.0-5.1":0.00728,"6.0-6.1":0.00728,"7.0-7.1":0.07203,"8.1-8.4":0.00566,"9.0-9.2":0.00162,"9.3":0.08416,"10.0-10.2":0,"10.3":0.06151,"11.0-11.2":0.02832,"11.3-11.4":0.00566,"12.0-12.1":0.00647,"12.2-12.5":0.22498,"13.0-13.1":0.00486,"13.2":0.00486,"13.3":0.01699,"13.4-13.7":0.05341,"14.0-14.4":0.12706,"14.5-14.8":0.16671,"15.0-15.1":0.09307,"15.2-15.3":0.14567,"15.4":0.15376,"15.5":0.22255,"15.6":0.33504,"16.0":0.76396,"16.1":0.75182,"16.2":0.50661,"16.3":1.92204,"16.4":1.31589,"16.5":0.02994},P:{"4":0.13148,"20":1.06197,"5.0-5.4":0.01011,"6.2-6.4":0.02023,"7.2-7.4":0.10114,"8.2":0,"9.2":0.02023,"10.1":0.01011,"11.1-11.2":0.02023,"12.0":0.01011,"13.0":0.04046,"14.0":0.03034,"15.0":0.02023,"16.0":0.08091,"17.0":0.06068,"18.0":0.0708,"19.0":0.1416},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01105,"4.2-4.3":0.03038,"4.4":0,"4.4.3-4.4.4":0.22091},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.01997,"9":0.00799,"10":0.00399,"11":0.22767,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.12972},Q:{"13.1":0},O:{"0":0.4571},H:{"0":0.59065},L:{"0":76.54553}};
diff --git a/node_modules/caniuse-lite/data/regions/EC.js b/node_modules/caniuse-lite/data/regions/EC.js
new file mode 100644
index 0000000..186e470
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/EC.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.01134,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00567,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00567,"73":0.01134,"74":0,"75":0.00567,"76":0,"77":0,"78":0.01701,"79":0.00567,"80":0,"81":0,"82":0.00567,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.02836,"89":0.01134,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.00567,"96":0.00567,"97":0,"98":0,"99":0.00567,"100":0.00567,"101":0,"102":0.03403,"103":0.00567,"104":0.02268,"105":0.00567,"106":0.01134,"107":0.01134,"108":0.01134,"109":0.03403,"110":0.04537,"111":0.90736,"112":0.92437,"113":0.00567,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.01701,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.01701,"48":0,"49":0.01134,"50":0,"51":0,"52":0,"53":0.00567,"54":0,"55":0.01134,"56":0.00567,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.00567,"65":0.00567,"66":0,"67":0,"68":0.01134,"69":0.00567,"70":0.00567,"71":0.00567,"72":0,"73":0.00567,"74":0.01134,"75":0.00567,"76":0.00567,"77":0,"78":0.00567,"79":0.1758,"80":0.00567,"81":0.01134,"83":0.00567,"84":0.01134,"85":0.01701,"86":0.01134,"87":0.03403,"88":0.00567,"89":0.00567,"90":0.00567,"91":0.08507,"92":0.01701,"93":0.00567,"94":0.11909,"95":0.00567,"96":0.05104,"97":0.03403,"98":0.02268,"99":0.02836,"100":0.03403,"101":0.01701,"102":0.0397,"103":0.10775,"104":0.05671,"105":0.03403,"106":0.03403,"107":0.05671,"108":0.11342,"109":1.62191,"110":0.16446,"111":8.1152,"112":10.65581,"113":0.02268,"114":0.00567,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.01134,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00567,"69":0.01134,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.00567,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.04537,"96":0.33459,"97":0.90169,"98":0.02268,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00567,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00567,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0.00567,"104":0.00567,"105":0.00567,"106":0.00567,"107":0.05104,"108":0.01134,"109":0.0397,"110":0.03403,"111":0.55576,"112":1.38372,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.01701,"15":0.00567,_:"0","3.1":0,"3.2":0,"5.1":0.01134,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00567,"13.1":0.03403,"14.1":0.04537,"15.1":0.00567,"15.2-15.3":0.01134,"15.4":0.01134,"15.5":0.02836,"15.6":0.10775,"16.0":0.02268,"16.1":0.06805,"16.2":0.05671,"16.3":0.28355,"16.4":0.1361,"16.5":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.02089,"6.0-6.1":0.00522,"7.0-7.1":0.01175,"8.1-8.4":0.00131,"9.0-9.2":0.00261,"9.3":0.02742,"10.0-10.2":0,"10.3":0.0248,"11.0-11.2":0.00653,"11.3-11.4":0.00522,"12.0-12.1":0.00522,"12.2-12.5":0.29374,"13.0-13.1":0.00522,"13.2":0,"13.3":0.00914,"13.4-13.7":0.03917,"14.0-14.4":0.0705,"14.5-14.8":0.20366,"15.0-15.1":0.07833,"15.2-15.3":0.05222,"15.4":0.06005,"15.5":0.13838,"15.6":0.48696,"16.0":1.07444,"16.1":1.34468,"16.2":0.83161,"16.3":4.61631,"16.4":2.59537,"16.5":0.0705},P:{"4":0.22551,"20":1.28132,"5.0-5.4":0.01025,"6.2-6.4":0,"7.2-7.4":0.11276,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.01025,"12.0":0.01025,"13.0":0.0205,"14.0":0.03075,"15.0":0.01025,"16.0":0.03075,"17.0":0.10251,"18.0":0.041,"19.0":0.09225},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.03096,"4.2-4.3":0.03096,"4.4":0,"4.4.3-4.4.4":0.16717},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00567,"9":0,"10":0,"11":0.0397,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.17316},Q:{"13.1":0},O:{"0":0.03463},H:{"0":0.13935},L:{"0":55.13786}};
diff --git a/node_modules/caniuse-lite/data/regions/EE.js b/node_modules/caniuse-lite/data/regions/EE.js
new file mode 100644
index 0000000..a4d1140
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/EE.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.01531,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00766,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.09186,"88":0,"89":0,"90":0,"91":0,"92":0.02297,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.5282,"103":0.00766,"104":0.01531,"105":0.00766,"106":0,"107":0.00766,"108":0.02297,"109":0.01531,"110":0.05359,"111":2.41133,"112":1.79127,"113":0.00766,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00766,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.02297,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0.00766,"78":0.04593,"79":0.01531,"80":0.00766,"81":0.02297,"83":0.00766,"84":0,"85":0.01531,"86":0.00766,"87":0.02297,"88":0.01531,"89":0.00766,"90":0.00766,"91":0.00766,"92":0,"93":0.14545,"94":0.39041,"95":0.05359,"96":0.01531,"97":0.00766,"98":0.00766,"99":0.02297,"100":0.00766,"101":0.00766,"102":0.03828,"103":0.08421,"104":0.01531,"105":0.04593,"106":0.13779,"107":0.08421,"108":0.23731,"109":1.78362,"110":0.39041,"111":19.27529,"112":17.95863,"113":0.01531,"114":0,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0.00766,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.11483,"96":0.57413,"97":2.81704,"98":0.14545,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0.00766,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0.03828,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00766,"93":0,"94":0,"95":0,"96":0.01531,"97":0.00766,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0.00766,"105":0,"106":0,"107":0.00766,"108":0.00766,"109":0.08421,"110":0.03828,"111":1.57693,"112":2.99311,"113":0.00766},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00766,"14":0.03828,"15":0.00766,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.00766,"10.1":0,"11.1":0,"12.1":0.01531,"13.1":0.05359,"14.1":0.13014,"15.1":0.01531,"15.2-15.3":0.02297,"15.4":0.05359,"15.5":0.05359,"15.6":0.26793,"16.0":0.03828,"16.1":0.12248,"16.2":0.16076,"16.3":0.56647,"16.4":0.28324,"16.5":0.00766},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00666,"6.0-6.1":0,"7.0-7.1":0.00166,"8.1-8.4":0.00499,"9.0-9.2":0,"9.3":0.01664,"10.0-10.2":0.01997,"10.3":0.26955,"11.0-11.2":0.00832,"11.3-11.4":0.00499,"12.0-12.1":0.00166,"12.2-12.5":0.16639,"13.0-13.1":0.00333,"13.2":0.00499,"13.3":0.02163,"13.4-13.7":0.11315,"14.0-14.4":0.12147,"14.5-14.8":0.2812,"15.0-15.1":0.0782,"15.2-15.3":0.10982,"15.4":0.12313,"15.5":0.26623,"15.6":0.64726,"16.0":1.41266,"16.1":2.41433,"16.2":1.20301,"16.3":5.91519,"16.4":2.6739,"16.5":0.1015},P:{"4":0.02054,"20":1.38652,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.01027,"12.0":0.01027,"13.0":0.01027,"14.0":0.01027,"15.0":0.02054,"16.0":0.02054,"17.0":0.02054,"18.0":0.03081,"19.0":0.08216},I:{"0":0,"3":0,"4":0.00935,"2.1":0.00156,"2.2":0.00623,"2.3":0.00935,"4.1":0.00935,"4.2-4.3":0.0296,"4.4":0,"4.4.3-4.4.4":0.09504},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.03317,"9":0.00829,"10":0.00829,"11":0.04976,"5.5":0},S:{"2.5":0.00235,_:"3.0-3.1"},J:{"7":0,"10":0.00469},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.17119},Q:{"13.1":0},O:{"0":0.02345},H:{"0":0.17095},L:{"0":23.31968}};
diff --git a/node_modules/caniuse-lite/data/regions/EG.js b/node_modules/caniuse-lite/data/regions/EG.js
new file mode 100644
index 0000000..7a46864
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/EG.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.02234,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00319,"69":0,"70":0,"71":0,"72":0.00319,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00319,"79":0,"80":0.00319,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.00319,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0.00319,"97":0,"98":0,"99":0.00319,"100":0,"101":0,"102":0.00958,"103":0.00319,"104":0,"105":0.00319,"106":0.00319,"107":0.00319,"108":0.00319,"109":0.00638,"110":0.01596,"111":0.28409,"112":0.2809,"113":0.00638,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.00319,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0.00319,"34":0.00319,"35":0,"36":0,"37":0,"38":0.00319,"39":0,"40":0.00638,"41":0,"42":0,"43":0.04788,"44":0,"45":0,"46":0.00319,"47":0.00319,"48":0.00319,"49":0.00958,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.00319,"61":0,"62":0.00319,"63":0.00319,"64":0.00319,"65":0,"66":0.00319,"67":0,"68":0.00319,"69":0.00638,"70":0.00319,"71":0.00319,"72":0.00319,"73":0,"74":0.00638,"75":0.00319,"76":0.00638,"77":0.00319,"78":0.00319,"79":0.0383,"80":0.00958,"81":0.01596,"83":0.00319,"84":0.00638,"85":0.00958,"86":0.01277,"87":0.00958,"88":0.00958,"89":0.00638,"90":0.02234,"91":0.02873,"92":0.02554,"93":0.02234,"94":0.03192,"95":0.00638,"96":0.00638,"97":0.00958,"98":0.01915,"99":0.01596,"100":0.01277,"101":0.00638,"102":0.01915,"103":0.02234,"104":0.01277,"105":0.01596,"106":0.01277,"107":0.02234,"108":0.05107,"109":1.33426,"110":0.05426,"111":1.8737,"112":2.29824,"113":0.00638,"114":0.00319,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0.00319,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0.00638,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.00319,"71":0,"72":0.00319,"73":0.00958,"74":0.00958,"75":0.00319,"76":0.00319,"77":0,"78":0,"79":0.01277,"80":0,"81":0.00319,"82":0.00319,"83":0.00319,"84":0.00319,"85":0.00319,"86":0,"87":0,"88":0,"89":0.00319,"90":0.00319,"91":0.00319,"92":0.00319,"93":0.00958,"94":0.00958,"95":0.01915,"96":0.01596,"97":0.01596,"98":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0.00319,"15":0,"16":0,"17":0,"18":0.00319,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00638,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0.00319,"108":0.00638,"109":0.02234,"110":0.01596,"111":0.21067,"112":0.49157,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00319,"15":0.00319,_:"0","3.1":0,"3.2":0,"5.1":0.0798,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00319,"13.1":0.00638,"14.1":0.01277,"15.1":0.00319,"15.2-15.3":0,"15.4":0.00319,"15.5":0.00319,"15.6":0.02554,"16.0":0.00319,"16.1":0.00958,"16.2":0.00958,"16.3":0.05426,"16.4":0.02554,"16.5":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00127,"7.0-7.1":0.02154,"8.1-8.4":0.00127,"9.0-9.2":0.00634,"9.3":0.05069,"10.0-10.2":0.00634,"10.3":0.05196,"11.0-11.2":0.00634,"11.3-11.4":0.00507,"12.0-12.1":0.01774,"12.2-12.5":0.62223,"13.0-13.1":0.01014,"13.2":0.0038,"13.3":0.03168,"13.4-13.7":0.0735,"14.0-14.4":0.2712,"14.5-14.8":0.29654,"15.0-15.1":0.08364,"15.2-15.3":0.10772,"15.4":0.13687,"15.5":0.23825,"15.6":0.51832,"16.0":1.00748,"16.1":1.18997,"16.2":0.67419,"16.3":3.34434,"16.4":2.69803,"16.5":0.05323},P:{"4":0.205,"20":1.88605,"5.0-5.4":0,"6.2-6.4":0.01025,"7.2-7.4":0.1025,"8.2":0,"9.2":0.01025,"10.1":0,"11.1-11.2":0.041,"12.0":0.01025,"13.0":0.05125,"14.0":0.041,"15.0":0.0205,"16.0":0.07175,"17.0":0.09225,"18.0":0.05125,"19.0":0.13325},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01902,"4.2-4.3":0.01902,"4.4":0,"4.4.3-4.4.4":0.23964},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00676,"9":0,"10":0.00338,"11":0.04732,"5.5":0},S:{"2.5":0.00681,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.21105},Q:{"13.1":0},O:{"0":0.54464},H:{"0":0.44473},L:{"0":74.30401}};
diff --git a/node_modules/caniuse-lite/data/regions/ER.js b/node_modules/caniuse-lite/data/regions/ER.js
new file mode 100644
index 0000000..ca97303
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/ER.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0.01306,"34":0,"35":0,"36":0.09792,"37":0,"38":0,"39":0,"40":0,"41":0.01306,"42":0,"43":0,"44":0,"45":0.01306,"46":0.08486,"47":0.00653,"48":0,"49":0,"50":0,"51":0,"52":0.01306,"53":0,"54":0,"55":0.15667,"56":0.9792,"57":0.07181,"58":0,"59":0.00653,"60":0.00653,"61":0,"62":0.00653,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0.01958,"95":0,"96":0,"97":0.00653,"98":0.00653,"99":0.00653,"100":0.00653,"101":0,"102":0.0457,"103":0,"104":0.01306,"105":0,"106":0.02611,"107":0,"108":0.03264,"109":0.1632,"110":0.00653,"111":1.0967,"112":0.85517,"113":0,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0.03917,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.05222,"44":0,"45":0,"46":0,"47":0.00653,"48":0,"49":0,"50":0.01306,"51":0,"52":0,"53":0.02611,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0.00653,"62":0,"63":0,"64":0,"65":0.01306,"66":0.01958,"67":0.00653,"68":0,"69":0.05222,"70":0,"71":0.01306,"72":0,"73":0.02611,"74":0.05875,"75":0.00653,"76":0,"77":0.01306,"78":0.05222,"79":0,"80":0.16973,"81":0,"83":0.01958,"84":0,"85":0.08486,"86":0.0457,"87":0.03264,"88":0.10445,"89":0,"90":0.01306,"91":0.02611,"92":0.16973,"93":0,"94":0,"95":0,"96":0.01306,"97":0.03264,"98":0.38515,"99":0.01306,"100":0.07834,"101":0.01958,"102":0.02611,"103":0.03264,"104":0.00653,"105":0.25459,"106":0.07181,"107":0.12403,"108":0.88128,"109":6.95232,"110":0.2089,"111":8.32973,"112":9.23059,"113":0.01306,"114":0,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0.01306,"28":0,"29":0,"30":0,"31":0,"32":0.00653,"33":0,"34":0.01306,"35":0,"36":0,"37":0,"38":0.05222,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.01306,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0.00653,"63":0,"64":0.01306,"65":0,"66":0,"67":0.03264,"68":0.02611,"69":0.02611,"70":0,"71":0.00653,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.03264,"80":0,"81":0,"82":0.07834,"83":0,"84":0.01958,"85":0.00653,"86":0.01958,"87":0,"88":0.00653,"89":0,"90":0.01306,"91":0,"92":0,"93":0.00653,"94":0,"95":0.15014,"96":0.01958,"97":0.4439,"98":0.02611,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00653,"13":0.01306,"14":0,"15":0.20237,"16":0.02611,"17":0.03264,"18":0.14362,"79":0,"80":0.00653,"81":0,"83":0,"84":0.01306,"85":0,"86":0,"87":0,"88":0,"89":0.05222,"90":0.02611,"91":0,"92":0.07834,"93":0,"94":0,"95":0,"96":0,"97":0.00653,"98":0,"99":0,"100":0.00653,"101":0,"102":0,"103":0,"104":0,"105":0.00653,"106":0,"107":0,"108":0.05222,"109":0.33293,"110":0.09139,"111":1.91923,"112":5.47699,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0,"14.1":0,"15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0,"15.6":0,"16.0":0,"16.1":0,"16.2":0.00653,"16.3":0,"16.4":0.00653,"16.5":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0,"10.0-10.2":0,"10.3":0,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":0.09536,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0,"14.0-14.4":0,"14.5-14.8":0.04085,"15.0-15.1":0.01362,"15.2-15.3":0.05447,"15.4":0,"15.5":0.04085,"15.6":0,"16.0":0.01362,"16.1":0.02723,"16.2":0.06813,"16.3":0.04085,"16.4":0.04085,"16.5":0},P:{"4":0.16038,"20":0,"5.0-5.4":6.7261,"6.2-6.4":0,"7.2-7.4":0.02005,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0,"12.0":0,"13.0":0.01002,"14.0":0.01002,"15.0":0,"16.0":0.44106,"17.0":0.02005,"18.0":0.02005,"19.0":0.02005},I:{"0":0,"3":0,"4":0.00133,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.07867},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.2807,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.01042},Q:{"13.1":0.01042},O:{"0":4.69067},H:{"0":1.09131},L:{"0":35.35459}};
diff --git a/node_modules/caniuse-lite/data/regions/ES.js b/node_modules/caniuse-lite/data/regions/ES.js
new file mode 100644
index 0000000..dd9432e
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/ES.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.01665,"53":0,"54":0,"55":0,"56":0.00416,"57":0,"58":0,"59":0.00416,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.00416,"68":0.00416,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.01665,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00416,"89":0,"90":0,"91":0.00416,"92":0,"93":0,"94":0.02081,"95":0.00416,"96":0,"97":0,"98":0,"99":0,"100":0.00416,"101":0.00416,"102":0.0333,"103":0,"104":0.00416,"105":0.00416,"106":0.00416,"107":0.00416,"108":0.00416,"109":0.02497,"110":0.01665,"111":0.54522,"112":0.47863,"113":0,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00416,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.02913,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.00416,"61":0,"62":0,"63":0.00416,"64":0.00416,"65":0.00416,"66":0.02081,"67":0.00416,"68":0.00416,"69":0,"70":0,"71":0,"72":0,"73":0.00416,"74":0.00416,"75":0.00832,"76":0.00416,"77":0,"78":0.00416,"79":0.04994,"80":0.00832,"81":0.00832,"83":0.00416,"84":0.00832,"85":0.00832,"86":0.00832,"87":0.02497,"88":0.00416,"89":0.00832,"90":0.00832,"91":0.01665,"92":0.01249,"93":0.02497,"94":0.01665,"95":0.00832,"96":0.00832,"97":0.00832,"98":0.00832,"99":0.02081,"100":0.01665,"101":0.00832,"102":0.01249,"103":0.07492,"104":0.00832,"105":0.02497,"106":0.02081,"107":0.03746,"108":0.06243,"109":0.64927,"110":0.12486,"111":3.6251,"112":4.67393,"113":0.00416,"114":0.00416,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00416,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00416,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00416,"69":0.00832,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00416,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.01665,"96":0.14567,"97":0.3829,"98":0.01249,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0.00416,"18":0.00416,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00416,"93":0,"94":0,"95":0,"96":0,"97":0.00416,"98":0,"99":0,"100":0.00416,"101":0,"102":0,"103":0.00416,"104":0.00416,"105":0,"106":0,"107":0.00416,"108":0.00832,"109":0.02913,"110":0.02497,"111":0.37458,"112":0.9531,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00832,"14":0.0333,"15":0.00832,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00416,"12.1":0.01249,"13.1":0.04578,"14.1":0.07908,"15.1":0.01249,"15.2-15.3":0.01249,"15.4":0.02497,"15.5":0.03746,"15.6":0.16648,"16.0":0.02081,"16.1":0.05827,"16.2":0.09156,"16.3":0.37874,"16.4":0.17064,"16.5":0.00416},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00189,"6.0-6.1":0,"7.0-7.1":0.00757,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.07376,"10.0-10.2":0,"10.3":0.10213,"11.0-11.2":0.00757,"11.3-11.4":0.04917,"12.0-12.1":0.01135,"12.2-12.5":0.38016,"13.0-13.1":0.00757,"13.2":0.00378,"13.3":0.02459,"13.4-13.7":0.07187,"14.0-14.4":0.17968,"14.5-14.8":0.41042,"15.0-15.1":0.10591,"15.2-15.3":0.13996,"15.4":0.17589,"15.5":0.33098,"15.6":0.86622,"16.0":1.16505,"16.1":2.6138,"16.2":1.37499,"16.3":6.91088,"16.4":2.93533,"16.5":0.05863},P:{"4":0.11377,"20":2.45123,"5.0-5.4":0.01034,"6.2-6.4":0,"7.2-7.4":0.01034,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.02069,"12.0":0.01034,"13.0":0.04137,"14.0":0.03103,"15.0":0.01034,"16.0":0.04137,"17.0":0.04137,"18.0":0.05171,"19.0":0.15514},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.02413,"4.2-4.3":0.01448,"4.4":0,"4.4.3-4.4.4":0.10134},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00416,"9":0,"10":0,"11":0.06243,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.2919},Q:{"13.1":0},O:{"0":0.02919},H:{"0":0.21555},L:{"0":62.25547}};
diff --git a/node_modules/caniuse-lite/data/regions/ET.js b/node_modules/caniuse-lite/data/regions/ET.js
new file mode 100644
index 0000000..0b2f620
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/ET.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00411,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00822,"48":0,"49":0,"50":0,"51":0,"52":0.02056,"53":0,"54":0,"55":0,"56":0.00411,"57":0.00411,"58":0,"59":0,"60":0.00411,"61":0,"62":0,"63":0,"64":0,"65":0.00411,"66":0,"67":0,"68":0.00411,"69":0,"70":0.00411,"71":0,"72":0.00822,"73":0,"74":0,"75":0,"76":0,"77":0.07402,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.0329,"85":0,"86":0,"87":0,"88":0.02467,"89":0.03701,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.06168,"96":0,"97":0.00411,"98":0,"99":0,"100":0,"101":0,"102":0.0329,"103":0.01234,"104":0.00411,"105":0.00822,"106":0.00411,"107":0.02056,"108":0.02467,"109":0.00822,"110":0.0329,"111":0.62914,"112":0.65381,"113":0.14803,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00822,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0.00411,"34":0,"35":0.00411,"36":0.00411,"37":0.00411,"38":0.02467,"39":0,"40":0.00822,"41":0,"42":0,"43":0.04112,"44":0,"45":0,"46":0.00411,"47":0,"48":0,"49":0.00411,"50":0.00411,"51":0,"52":0,"53":0.00822,"54":0,"55":0.00411,"56":0.00411,"57":0,"58":0.01234,"59":0,"60":0,"61":0,"62":0,"63":0.00822,"64":0.00411,"65":0.01645,"66":0.00411,"67":0,"68":0.00822,"69":0.01234,"70":0.00822,"71":0.00822,"72":0.01645,"73":0.00822,"74":0.01234,"75":0.01645,"76":0.00411,"77":0.01234,"78":0.00822,"79":0.47288,"80":0.00822,"81":0.06579,"83":0.01234,"84":0,"85":0.00411,"86":0.01234,"87":0.01234,"88":0.01234,"89":0.00822,"90":0.02878,"91":0.04112,"92":0.01234,"93":0.02878,"94":0.01234,"95":0.02056,"96":0.02467,"97":0.00822,"98":0.14392,"99":0.00822,"100":0.01645,"101":0.00822,"102":0.01645,"103":0.05346,"104":0.02056,"105":0.01234,"106":0.02467,"107":0.02878,"108":0.0699,"109":1.79694,"110":0.08224,"111":2.69336,"112":3.49109,"113":0.00822,"114":0.00411,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0.00411,"20":0,"21":0,"22":0,"23":0,"24":0.00411,"25":0,"26":0,"27":0.00411,"28":0.00822,"29":0,"30":0.00822,"31":0,"32":0.01234,"33":0.00411,"34":0,"35":0,"36":0.00411,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0.00822,"43":0,"44":0,"45":0,"46":0.02056,"47":0,"48":0,"49":0,"50":0.01645,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00411,"60":0.02467,"62":0,"63":0.00822,"64":0.00411,"65":0,"66":0.00411,"67":0.02878,"68":0.06579,"69":0.11514,"70":0.00411,"71":0,"72":0,"73":0,"74":0.00411,"75":0.00411,"76":0,"77":0,"78":0,"79":0.00822,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00411,"86":0.00411,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.02878,"93":0,"94":0.00411,"95":0.13981,"96":0.06579,"97":0.40298,"98":0.02467,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.01234},B:{"12":0.00822,"13":0.00822,"14":0.00411,"15":0.00411,"16":0.00411,"17":0.00411,"18":0.0329,"79":0,"80":0,"81":0,"83":0,"84":0.00411,"85":0,"86":0,"87":0,"88":0,"89":0.00411,"90":0.00411,"91":0,"92":0.01234,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.02056,"103":0.00411,"104":0.00411,"105":0,"106":0.00411,"107":0.00411,"108":0.01645,"109":0.04112,"110":0.04112,"111":0.42765,"112":0.91286,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00411,"14":0.00411,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00822,"14.1":0.00822,"15.1":0.00411,"15.2-15.3":0,"15.4":0,"15.5":0.00411,"15.6":0.04523,"16.0":0,"16.1":0,"16.2":0,"16.3":0.00411,"16.4":0.00411,"16.5":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00106,"5.0-5.1":0.00884,"6.0-6.1":0.01697,"7.0-7.1":0.39522,"8.1-8.4":0.0198,"9.0-9.2":0.15837,"9.3":0.47829,"10.0-10.2":0.00318,"10.3":0.18559,"11.0-11.2":0.0152,"11.3-11.4":0.02828,"12.0-12.1":0.06186,"12.2-12.5":0.39133,"13.0-13.1":0.01909,"13.2":0.01768,"13.3":0.08802,"13.4-13.7":0.04489,"14.0-14.4":0.12938,"14.5-14.8":0.15059,"15.0-15.1":0.05444,"15.2-15.3":0.06469,"15.4":0.12125,"15.5":0.076,"15.6":0.12267,"16.0":0.0958,"16.1":0.10959,"16.2":0.08378,"16.3":0.2114,"16.4":0.15483,"16.5":0.00566},P:{"4":0.89069,"20":0.49713,"5.0-5.4":0.02071,"6.2-6.4":0.04143,"7.2-7.4":0.23821,"8.2":0.02071,"9.2":0.02071,"10.1":0,"11.1-11.2":0.01036,"12.0":0,"13.0":0.02071,"14.0":0.01036,"15.0":0.01036,"16.0":0.06214,"17.0":0.05178,"18.0":0.04143,"19.0":0.08285},I:{"0":0,"3":0,"4":0.0007,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0042,"4.2-4.3":0.09199,"4.4":0,"4.4.3-4.4.4":0.44282},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.02056,"5.5":0},S:{"2.5":0.45338,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.05888},Q:{"13.1":0.00589},O:{"0":0.54758},H:{"0":5.66357},L:{"0":66.3359}};
diff --git a/node_modules/caniuse-lite/data/regions/FI.js b/node_modules/caniuse-lite/data/regions/FI.js
new file mode 100644
index 0000000..e74b586
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/FI.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0.00659,"51":0,"52":0.01978,"53":0.00659,"54":0,"55":0.01319,"56":0.00659,"57":0,"58":0,"59":0.01319,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00659,"69":0,"70":0,"71":0,"72":0.00659,"73":0,"74":0,"75":0.00659,"76":0,"77":0,"78":0.02637,"79":0.00659,"80":0.00659,"81":0.00659,"82":0.00659,"83":0.01319,"84":0.00659,"85":0,"86":0,"87":0,"88":0.00659,"89":0,"90":0,"91":0.00659,"92":0,"93":0,"94":0,"95":0.00659,"96":0.00659,"97":0,"98":0,"99":0,"100":0.00659,"101":0.00659,"102":0.15823,"103":0.00659,"104":0.01978,"105":0.01978,"106":0.01319,"107":0.02637,"108":0.03956,"109":0.05274,"110":0.06593,"111":1.48343,"112":1.24608,"113":0.01978,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0.00659,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00659,"39":0,"40":0,"41":0,"42":0.01978,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.00659,"49":0.00659,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.00659,"56":0.00659,"57":0.00659,"58":0,"59":0,"60":0.01978,"61":0,"62":0,"63":0,"64":0.00659,"65":0,"66":0.0923,"67":0,"68":0.01319,"69":0.00659,"70":0.01319,"71":0.01978,"72":0.01978,"73":0.00659,"74":0.01319,"75":0.01319,"76":0.01978,"77":0.01319,"78":0.01978,"79":0.05934,"80":0.01978,"81":0.02637,"83":0.03956,"84":0.04615,"85":0.08571,"86":0.16483,"87":0.08571,"88":0.01978,"89":0.03297,"90":0.02637,"91":0.54063,"92":0.00659,"93":0.04615,"94":0.10549,"95":0.01319,"96":0.02637,"97":0.00659,"98":0.01319,"99":0.13186,"100":1.18015,"101":0.22416,"102":0.15164,"103":0.43514,"104":0.13186,"105":0.15823,"106":0.05934,"107":0.08571,"108":0.64611,"109":0.91643,"110":0.46151,"111":11.24766,"112":12.85635,"113":0.01978,"114":0,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00659,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00659,"69":0.01978,"70":0,"71":0,"72":0.00659,"73":0,"74":0.00659,"75":0.00659,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00659,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0.00659,"95":0.02637,"96":0.29009,"97":0.63293,"98":0.01978,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00659},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0.01319,"18":0.00659,"79":0,"80":0.00659,"81":0,"83":0,"84":0.00659,"85":0.00659,"86":0.00659,"87":0.00659,"88":0,"89":0,"90":0,"91":0,"92":0.02637,"93":0,"94":0,"95":0.00659,"96":0,"97":0,"98":0.00659,"99":0,"100":0,"101":0,"102":0.01978,"103":0.00659,"104":0,"105":0.01319,"106":0.01319,"107":0.01978,"108":0.01978,"109":0.06593,"110":0.05274,"111":1.10762,"112":2.94048,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.01319,"14":0.03297,"15":0.00659,_:"0","3.1":0,"3.2":0,"5.1":0.01319,"6.1":0,"7.1":0,"9.1":0.06593,"10.1":0,"11.1":0.01319,"12.1":0.00659,"13.1":0.06593,"14.1":0.08571,"15.1":0.01978,"15.2-15.3":0.01319,"15.4":0.03956,"15.5":0.03956,"15.6":0.27691,"16.0":0.05274,"16.1":0.06593,"16.2":0.13186,"16.3":0.64611,"16.4":0.45492,"16.5":0.00659},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0.00809,"9.0-9.2":0.00809,"9.3":0.03035,"10.0-10.2":0.00405,"10.3":0.05261,"11.0-11.2":0.01619,"11.3-11.4":0.13153,"12.0-12.1":0.01821,"12.2-12.5":0.27317,"13.0-13.1":0.00809,"13.2":0.01012,"13.3":0.02024,"13.4-13.7":0.07689,"14.0-14.4":0.20235,"14.5-14.8":0.43505,"15.0-15.1":0.20437,"15.2-15.3":0.19426,"15.4":0.26913,"15.5":0.39054,"15.6":0.99557,"16.0":1.52168,"16.1":2.83696,"16.2":1.43467,"16.3":6.69579,"16.4":3.51281,"16.5":0.05261},P:{"4":0.0515,"20":1.63786,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.0103,"8.2":0,"9.2":0.0103,"10.1":0,"11.1-11.2":0.0103,"12.0":0.0103,"13.0":0.0206,"14.0":0.0309,"15.0":0.0206,"16.0":0.07211,"17.0":0.0412,"18.0":0.09271,"19.0":0.17512},I:{"0":0,"3":0,"4":0.01804,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00722,"4.2-4.3":0.01444,"4.4":0,"4.4.3-4.4.4":0.05052},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.02776,"9":0.00694,"10":0.00694,"11":0.09022,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.62348},Q:{"13.1":0},O:{"0":0.21123},H:{"0":0.34513},L:{"0":33.39179}};
diff --git a/node_modules/caniuse-lite/data/regions/FJ.js b/node_modules/caniuse-lite/data/regions/FJ.js
new file mode 100644
index 0000000..0fa9f78
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/FJ.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00369,"53":0,"54":0,"55":0,"56":0.00369,"57":0,"58":0,"59":0,"60":0.00369,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00739,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.01108,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00739,"103":0,"104":0,"105":0,"106":0.01847,"107":0,"108":0.00369,"109":0.00369,"110":0.00739,"111":0.27336,"112":0.29183,"113":0.00369,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.00369,"46":0,"47":0,"48":0,"49":0.00739,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00369,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.00369,"68":0.01478,"69":0.02955,"70":0,"71":0,"72":0.00369,"73":0.00739,"74":0.00739,"75":0.00369,"76":0.00739,"77":0.00369,"78":0,"79":0.01847,"80":0,"81":0.02955,"83":0.00369,"84":0,"85":0,"86":0.01847,"87":0.01478,"88":0.01108,"89":0,"90":0.00739,"91":0.00369,"92":0.02586,"93":0.00739,"94":0.00369,"95":0.00369,"96":0.00369,"97":0.00369,"98":0.00369,"99":0.00369,"100":0.00369,"101":0.04063,"102":0.00739,"103":0.04063,"104":0.02216,"105":0.02955,"106":0.02216,"107":0.01847,"108":0.06649,"109":0.36571,"110":0.08866,"111":3.13251,"112":3.16945,"113":0,"114":0.00369,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00369,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00369,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0.00369,"65":0,"66":0,"67":0.01108,"68":0.00739,"69":0.05541,"70":0.00369,"71":0,"72":0,"73":0,"74":0.00739,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.02586,"96":0.00739,"97":0.0591,"98":0.00739,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0.00369,"14":0,"15":0.00739,"16":0,"17":0.00369,"18":0.01478,"79":0,"80":0,"81":0,"83":0,"84":0.00369,"85":0.00369,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00739,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0.00369,"104":0,"105":0.01108,"106":0,"107":0.00369,"108":0.01108,"109":0.01478,"110":0.02216,"111":0.4285,"112":0.96044,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00369,"14":0.00369,"15":0.00369,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.02586,"14.1":0.01847,"15.1":0.00369,"15.2-15.3":0,"15.4":0,"15.5":0.01478,"15.6":0.10343,"16.0":0.00369,"16.1":0.02216,"16.2":0.04433,"16.3":0.1847,"16.4":0.08127,"16.5":0},G:{"8":0.00118,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00473,"6.0-6.1":0,"7.0-7.1":0.04727,"8.1-8.4":0.00236,"9.0-9.2":0,"9.3":0.09455,"10.0-10.2":0,"10.3":0.08864,"11.0-11.2":0.00236,"11.3-11.4":0.01418,"12.0-12.1":0.00118,"12.2-12.5":0.39473,"13.0-13.1":0.00236,"13.2":0.00236,"13.3":0.19737,"13.4-13.7":0.03309,"14.0-14.4":0.25646,"14.5-14.8":0.22691,"15.0-15.1":0.12527,"15.2-15.3":0.18909,"15.4":0.14182,"15.5":0.35573,"15.6":0.40419,"16.0":0.4621,"16.1":1.30947,"16.2":0.68428,"16.3":3.67549,"16.4":2.02211,"16.5":0.01064},P:{"4":0.2974,"20":3.60983,"5.0-5.4":0.02051,"6.2-6.4":0.01026,"7.2-7.4":0.70761,"8.2":0,"9.2":0.03077,"10.1":0.01026,"11.1-11.2":0.25638,"12.0":0.04102,"13.0":0.22561,"14.0":0.10255,"15.0":0.13332,"16.0":0.52302,"17.0":0.21536,"18.0":0.26664,"19.0":0.64608},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.05063},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00739,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.08828},Q:{"13.1":0},O:{"0":0.9459},H:{"0":0.56716},L:{"0":67.08543}};
diff --git a/node_modules/caniuse-lite/data/regions/FK.js b/node_modules/caniuse-lite/data/regions/FK.js
new file mode 100644
index 0000000..c9f96e7
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/FK.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00778,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.00778,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0.00778,"98":0,"99":0,"100":0.04668,"101":0,"102":0,"103":0.07002,"104":0,"105":0,"106":26.49868,"107":0,"108":0.28786,"109":0.01556,"110":0.02334,"111":0.45902,"112":0.49014,"113":0,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00778,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0.01556,"104":0,"105":0,"106":26.48312,"107":0,"108":0.00778,"109":0.21784,"110":0.05446,"111":1.3615,"112":1.13588,"113":0,"114":0,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0.00778,"97":0.05446,"98":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00778,"90":0,"91":0.01556,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0.01556,"106":0,"107":0.0778,"108":0.01556,"109":0.14782,"110":0.00778,"111":0.43568,"112":1.07364,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.05446,"14":0.00778,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0,"14.1":0.00778,"15.1":0.00778,"15.2-15.3":0,"15.4":0.0389,"15.5":0.00778,"15.6":0.09336,"16.0":0.01556,"16.1":0,"16.2":0.0389,"16.3":0.1167,"16.4":0.08558,"16.5":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.0102,"10.0-10.2":0,"10.3":0.0102,"11.0-11.2":0,"11.3-11.4":0.0102,"12.0-12.1":0,"12.2-12.5":0.09098,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0.21258,"14.0-14.4":0.09183,"14.5-14.8":0.07143,"15.0-15.1":0.08078,"15.2-15.3":0.08163,"15.4":0.02041,"15.5":0.04081,"15.6":1.24655,"16.0":0.11139,"16.1":0.70915,"16.2":0.26359,"16.3":3.74984,"16.4":1.58072,"16.5":0},P:{"4":0,"20":6.40727,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0,"12.0":0.01009,"13.0":0,"14.0":2.0584,"15.0":0,"16.0":0,"17.0":0,"18.0":0,"19.0":0.02018},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01556,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.15318},Q:{"13.1":0},O:{"0":0.0555},H:{"0":0},L:{"0":16.61192}};
diff --git a/node_modules/caniuse-lite/data/regions/FM.js b/node_modules/caniuse-lite/data/regions/FM.js
new file mode 100644
index 0000000..bec3839
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/FM.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.00589,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.00589,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00589,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0.00589,"106":0,"107":0.01766,"108":0,"109":0,"110":0.02354,"111":1.38321,"112":1.48327,"113":0.01766,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.02943,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.01177,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0.00589,"88":0.08829,"89":0,"90":0,"91":0,"92":0,"93":0.00589,"94":0.01766,"95":0,"96":0,"97":0.00589,"98":0,"99":0.01766,"100":0,"101":0,"102":0.00589,"103":0.52385,"104":0,"105":0.13538,"106":0.01766,"107":0.01177,"108":0.01177,"109":2.99597,"110":0.08829,"111":5.43278,"112":6.1803,"113":0,"114":0.00589,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00589,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0.08829,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0.02354,"97":0.3767,"98":0.00589,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0.00589,"14":0,"15":0.01766,"16":0,"17":0.00589,"18":0,"79":0,"80":0.00589,"81":0,"83":0,"84":0,"85":0,"86":0.03532,"87":0,"88":0,"89":0.00589,"90":0,"91":0,"92":0,"93":0.00589,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0.02354,"105":0.00589,"106":0,"107":0.07652,"108":0.02943,"109":0.05886,"110":0.01177,"111":2.60161,"112":7.8637,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.03532,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00589,"13.1":0.05297,"14.1":0.01177,"15.1":0.00589,"15.2-15.3":0.17069,"15.4":0.02943,"15.5":0.03532,"15.6":0.03532,"16.0":0,"16.1":0.03532,"16.2":0.05297,"16.3":0.0412,"16.4":0.15892,"16.5":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.0566,"10.0-10.2":0,"10.3":0.68594,"11.0-11.2":0,"11.3-11.4":0.03622,"12.0-12.1":0,"12.2-12.5":0.30562,"13.0-13.1":0,"13.2":0,"13.3":0.35316,"13.4-13.7":0.90779,"14.0-14.4":0.05433,"14.5-14.8":0.80818,"15.0-15.1":0.50936,"15.2-15.3":0.12904,"15.4":0.25128,"15.5":1.8835,"15.6":0.41654,"16.0":0.70405,"16.1":1.38093,"16.2":0.60218,"16.3":5.45355,"16.4":3.35725,"16.5":0.23091},P:{"4":0,"20":0.2343,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.10187,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.02037,"12.0":0.01019,"13.0":0,"14.0":0,"15.0":0,"16.0":0.02037,"17.0":0.02037,"18.0":0.01019,"19.0":0.01019},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.31696,"4.4":0,"4.4.3-4.4.4":0.31696},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01766,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.03291},Q:{"13.1":0.00411},O:{"0":0.24273},H:{"0":0.22201},L:{"0":48.36104}};
diff --git a/node_modules/caniuse-lite/data/regions/FO.js b/node_modules/caniuse-lite/data/regions/FO.js
new file mode 100644
index 0000000..9be9658
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/FO.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.0477,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0,"111":0.14607,"112":0.09539,"113":0,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00298,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0.00298,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0.02087,"104":0,"105":0.00298,"106":0.00298,"107":0.00298,"108":0.01192,"109":0.07453,"110":0.05366,"111":0.90324,"112":1.01056,"113":0,"114":0,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0.0477,"97":0.08943,"98":0.00298,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00298,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0.00596,"110":0.00894,"111":0.16992,"112":0.35474,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.04472,"15":0.00596,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00596,"14.1":0.02683,"15.1":0.01491,"15.2-15.3":0.03577,"15.4":0.07453,"15.5":0.18482,"15.6":1.07614,"16.0":0.04472,"16.1":0.21761,"16.2":0.54552,"16.3":2.26556,"16.4":0.8943,"16.5":0.00894},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01842,"10.0-10.2":0,"10.3":0.00921,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":0.19341,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0,"14.0-14.4":0.21183,"14.5-14.8":0.25789,"15.0-15.1":0.17499,"15.2-15.3":0.34078,"15.4":0.59866,"15.5":1.63942,"15.6":6.90766,"16.0":5.62744,"16.1":14.34951,"16.2":7.28528,"16.3":36.42638,"16.4":11.88117,"16.5":0.16578},P:{"4":0.01036,"20":1.06722,"5.0-5.4":0.01036,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0,"12.0":0,"13.0":0,"14.0":0,"15.0":0,"16.0":0,"17.0":0,"18.0":0,"19.0":0},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.03},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00298,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.04913},Q:{"13.1":0},O:{"0":0},H:{"0":0.00665},L:{"0":3.75719}};
diff --git a/node_modules/caniuse-lite/data/regions/FR.js b/node_modules/caniuse-lite/data/regions/FR.js
new file mode 100644
index 0000000..2907fc0
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/FR.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0.0049,"45":0.0049,"46":0,"47":0.00979,"48":0.0049,"49":0,"50":0,"51":0,"52":0.02448,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0.02937,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00979,"69":0,"70":0,"71":0,"72":0.0049,"73":0,"74":0,"75":0.0049,"76":0,"77":0.0049,"78":0.06364,"79":0.00979,"80":0.00979,"81":0.00979,"82":0.00979,"83":0.0049,"84":0,"85":0,"86":0,"87":0,"88":0.0049,"89":0.0049,"90":0.0049,"91":0.03427,"92":0,"93":0.00979,"94":0.01469,"95":0,"96":0,"97":0,"98":0,"99":0.0049,"100":0.00979,"101":0.0049,"102":0.15664,"103":0.27412,"104":0.00979,"105":0.01469,"106":0.00979,"107":0.01469,"108":0.01958,"109":0.03427,"110":0.05874,"111":1.36571,"112":1.21886,"113":0.0049,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0.02448,"45":0,"46":0,"47":0,"48":0.0049,"49":0.02937,"50":0,"51":0.00979,"52":0.0049,"53":0,"54":0,"55":0,"56":0.05385,"57":0,"58":0,"59":0,"60":0.04895,"61":0,"62":0,"63":0.0049,"64":0,"65":0.0049,"66":0.11748,"67":0.00979,"68":0,"69":0,"70":0.0049,"71":0.00979,"72":0.0049,"73":0,"74":0.0049,"75":0.0049,"76":0.0049,"77":0.00979,"78":0.00979,"79":0.02937,"80":0.00979,"81":0.02937,"83":0.04406,"84":0.08322,"85":0.0979,"86":0.10769,"87":0.11748,"88":0.1028,"89":0.0049,"90":0.00979,"91":0.00979,"92":0.00979,"93":0.01958,"94":0.12727,"95":0.02448,"96":0.01958,"97":0.01469,"98":0.00979,"99":0.01958,"100":0.01958,"101":0.02937,"102":0.02448,"103":0.09301,"104":0.02448,"105":0.08322,"106":0.13706,"107":0.08811,"108":0.13217,"109":0.86642,"110":0.20559,"111":4.13628,"112":4.82647,"113":0.0049,"114":0,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.0049,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.0049,"68":0.01469,"69":0.02937,"70":0.0049,"71":0.0049,"72":0.0049,"73":0,"74":0.0049,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.0049,"90":0,"91":0.0049,"92":0.0049,"93":0.0049,"94":0.0049,"95":0.02448,"96":0.15664,"97":0.44055,"98":0.01958,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0.0049,"15":0,"16":0,"17":0.01469,"18":0.01469,"79":0,"80":0,"81":0,"83":0,"84":0.0049,"85":0.0049,"86":0.0049,"87":0.0049,"88":0,"89":0,"90":0,"91":0,"92":0.0049,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.0049,"100":0,"101":0,"102":0,"103":0.0049,"104":0.0049,"105":0.0049,"106":0.00979,"107":0.01958,"108":0.04406,"109":0.07343,"110":0.05385,"111":0.82236,"112":1.84052,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00979,"14":0.04895,"15":0.01469,_:"0","3.1":0,"3.2":0,"5.1":0.0049,"6.1":0,"7.1":0,"9.1":0.0049,"10.1":0,"11.1":0.02937,"12.1":0.02937,"13.1":0.1028,"14.1":0.15664,"15.1":0.02448,"15.2-15.3":0.01958,"15.4":0.03916,"15.5":0.06853,"15.6":0.32307,"16.0":0.04895,"16.1":0.0979,"16.2":0.14196,"16.3":0.61677,"16.4":0.28391,"16.5":0.0049},G:{"8":0.00586,"3.2":0,"4.0-4.1":0.00586,"4.2-4.3":0,"5.0-5.1":0.01466,"6.0-6.1":0,"7.0-7.1":0.0088,"8.1-8.4":0,"9.0-9.2":0.03225,"9.3":0.1202,"10.0-10.2":0.01759,"10.3":0.12314,"11.0-11.2":0.0645,"11.3-11.4":0.04984,"12.0-12.1":0.03225,"12.2-12.5":0.63327,"13.0-13.1":0.03518,"13.2":0.01173,"13.3":0.05864,"13.4-13.7":0.24041,"14.0-14.4":0.43391,"14.5-14.8":0.70657,"15.0-15.1":0.20816,"15.2-15.3":0.23748,"15.4":0.26386,"15.5":0.49548,"15.6":1.43366,"16.0":2.28682,"16.1":3.76445,"16.2":2.40409,"16.3":9.93006,"16.4":4.05763,"16.5":0.129},P:{"4":0.07281,"20":2.69397,"5.0-5.4":0.0208,"6.2-6.4":0,"7.2-7.4":0.0104,"8.2":0,"9.2":0.0312,"10.1":0,"11.1-11.2":0.04161,"12.0":0.0208,"13.0":0.0312,"14.0":0.0312,"15.0":0.0208,"16.0":0.06241,"17.0":0.05201,"18.0":0.06241,"19.0":0.17682},I:{"0":0,"3":0,"4":0.02527,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01516,"4.2-4.3":0.10614,"4.4":0,"4.4.3-4.4.4":0.18196},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.01018,"9":0.02036,"10":0,"11":0.09673,"5.5":0},S:{"2.5":0.01021,_:"3.0-3.1"},J:{"7":0,"10":0.00511},N:{"10":0.01021,"11":0},R:{_:"0"},M:{"0":0.59218},Q:{"13.1":0.00511},O:{"0":0.39309},H:{"0":0.43498},L:{"0":42.79976}};
diff --git a/node_modules/caniuse-lite/data/regions/GA.js b/node_modules/caniuse-lite/data/regions/GA.js
new file mode 100644
index 0000000..34db7cb
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/GA.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00382,"35":0,"36":0,"37":0.00382,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.00382,"49":0,"50":0,"51":0.09553,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.00382,"88":0.01528,"89":0,"90":0,"91":0.00382,"92":0.00382,"93":0,"94":0,"95":0,"96":0,"97":0.00382,"98":0,"99":0,"100":0,"101":0,"102":0.00764,"103":0,"104":0,"105":0,"106":0,"107":0.00764,"108":0.00382,"109":0,"110":0.00382,"111":0.49673,"112":0.38592,"113":0,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00382,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00382,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.00382,"56":0.00764,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.02293,"70":0,"71":0,"72":0.00382,"73":0.00382,"74":0.00764,"75":0.00382,"76":0,"77":0,"78":0,"79":0.08788,"80":0,"81":0.27511,"83":0.01528,"84":0.01911,"85":0,"86":0,"87":0.11845,"88":0.01528,"89":0.00382,"90":0,"91":0,"92":0,"93":0.00382,"94":0,"95":0.04203,"96":0,"97":0,"98":0.00764,"99":0.00382,"100":0.00382,"101":0,"102":0.01528,"103":0.02675,"104":0.01146,"105":0.02293,"106":0.06114,"107":0.00764,"108":0.03821,"109":1.33353,"110":0.08406,"111":2.41869,"112":3.03005,"113":0,"114":0,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.01528,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.00382,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00382,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0.02293,"62":0,"63":0.02675,"64":0.00764,"65":0,"66":0.00764,"67":0.25219,"68":0.12609,"69":0.30186,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0.00764,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.01528,"86":0,"87":0,"88":0,"89":0.01146,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.04203,"96":0.04967,"97":0.55405,"98":0.01528,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00382},B:{"12":0.00382,"13":0.00382,"14":0,"15":0,"16":0,"17":0,"18":0.00382,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0.00764,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.01146,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0.00382,"106":0.00382,"107":0,"108":0.01911,"109":0.05349,"110":0.01146,"111":0.49291,"112":1.12337,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00382,"15":0.00382,_:"0","3.1":0,"3.2":0,"5.1":0.00382,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.01146,"14.1":0.00764,"15.1":0,"15.2-15.3":0,"15.4":0.00382,"15.5":0.00382,"15.6":0.06878,"16.0":0,"16.1":0.00764,"16.2":0.01528,"16.3":0.03057,"16.4":0.00764,"16.5":0},G:{"8":0.00165,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00494,"6.0-6.1":0,"7.0-7.1":0.03948,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.04771,"10.0-10.2":0,"10.3":0.10199,"11.0-11.2":0.07567,"11.3-11.4":0,"12.0-12.1":0.22372,"12.2-12.5":4.57319,"13.0-13.1":0.01316,"13.2":0,"13.3":0.00658,"13.4-13.7":0.04113,"14.0-14.4":0.16121,"14.5-14.8":0.36026,"15.0-15.1":0.45732,"15.2-15.3":0.06251,"15.4":0.20563,"15.5":0.34546,"15.6":0.40139,"16.0":0.3652,"16.1":1.1252,"16.2":0.45238,"16.3":2.20105,"16.4":1.56278,"16.5":0.03948},P:{"4":0.34639,"20":1.41613,"5.0-5.4":0.01019,"6.2-6.4":0.01019,"7.2-7.4":0.40752,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.06113,"12.0":0,"13.0":0.14263,"14.0":0.02038,"15.0":0.16301,"16.0":0.37696,"17.0":0.09169,"18.0":0.23432,"19.0":0.14263},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.01389,"4.4":0,"4.4.3-4.4.4":0.23806},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01528,"5.5":0},S:{"2.5":0.0309,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.51904},Q:{"13.1":0},O:{"0":0.30277},H:{"0":2.45695},L:{"0":65.82939}};
diff --git a/node_modules/caniuse-lite/data/regions/GB.js b/node_modules/caniuse-lite/data/regions/GB.js
new file mode 100644
index 0000000..9e91fcd
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/GB.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00517,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00517,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00517,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.00517,"49":0,"50":0,"51":0,"52":0.01034,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0.01034,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00517,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.0155,"79":0,"80":0,"81":0,"82":0,"83":0.00517,"84":0,"85":0,"86":0,"87":0.00517,"88":0,"89":0.00517,"90":0.00517,"91":0,"92":0,"93":0.00517,"94":0.00517,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.02067,"103":0,"104":0.00517,"105":0.00517,"106":0.00517,"107":0,"108":0.00517,"109":0.02067,"110":0.02067,"111":0.55814,"112":0.42378,"113":0.00517,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00517,"39":0,"40":0.10853,"41":0.00517,"42":0.00517,"43":0.00517,"44":0.01034,"45":0.0155,"46":0,"47":0,"48":0,"49":0.0155,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.05168,"57":0,"58":0.02584,"59":0,"60":0.01034,"61":0,"62":0,"63":0,"64":0,"65":0.00517,"66":0.04134,"67":0.00517,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0.00517,"75":0.00517,"76":0.01034,"77":0.01034,"78":0.00517,"79":0.04651,"80":0.02067,"81":0.02067,"83":0.03101,"84":0.0155,"85":0.0155,"86":0.0155,"87":0.03618,"88":0.00517,"89":0.01034,"90":0.01034,"91":0.02584,"92":0.0155,"93":0.06718,"94":0.0155,"95":0.01034,"96":0.04651,"97":0.01034,"98":0.01034,"99":0.01034,"100":0.01034,"101":0.02067,"102":0.02067,"103":0.21189,"104":0.04134,"105":0.04651,"106":0.04134,"107":0.04134,"108":0.12403,"109":0.62533,"110":0.28424,"111":5.25069,"112":6.64605,"113":0.01034,"114":0,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00517,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00517,"69":0.01034,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00517,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.02067,"96":0.13437,"97":0.32042,"98":0.01034,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0.00517,"18":0.02067,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00517,"93":0,"94":0,"95":0.00517,"96":0.00517,"97":0,"98":0,"99":0,"100":0,"101":0.00517,"102":0,"103":0,"104":0,"105":0.00517,"106":0.00517,"107":0.00517,"108":0.0155,"109":0.06202,"110":0.05685,"111":1.24032,"112":2.88374,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0.00517,"9":0,"10":0,"11":0,"12":0,"13":0.01034,"14":0.07235,"15":0.0155,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.01034,"12.1":0.02067,"13.1":0.09302,"14.1":0.19122,"15.1":0.02584,"15.2-15.3":0.02067,"15.4":0.05685,"15.5":0.08786,"15.6":0.5323,"16.0":0.05168,"16.1":0.13437,"16.2":0.30491,"16.3":1.31267,"16.4":0.53747,"16.5":0.00517},G:{"8":0.0083,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.0083,"7.0-7.1":0.03318,"8.1-8.4":0.1037,"9.0-9.2":0.00415,"9.3":0.28207,"10.0-10.2":0,"10.3":0.24473,"11.0-11.2":0.01659,"11.3-11.4":0.07466,"12.0-12.1":0.03318,"12.2-12.5":1.17804,"13.0-13.1":0.01244,"13.2":0.00415,"13.3":0.02904,"13.4-13.7":0.09955,"14.0-14.4":0.26547,"14.5-14.8":0.80057,"15.0-15.1":0.15763,"15.2-15.3":0.23644,"15.4":0.24473,"15.5":0.51436,"15.6":2.1155,"16.0":2.45564,"16.1":5.55837,"16.2":3.01148,"16.3":15.37263,"16.4":5.96073,"16.5":0.112},P:{"4":0.1274,"20":3.29114,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.01062,"12.0":0.01062,"13.0":0.02123,"14.0":0.02123,"15.0":0.01062,"16.0":0.02123,"17.0":0.03185,"18.0":0.03185,"19.0":0.13802},I:{"0":0,"3":0,"4":0.21479,"2.1":0,"2.2":0,"2.3":0,"4.1":0.02148,"4.2-4.3":0.18043,"4.4":0,"4.4.3-4.4.4":0.24057},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.01034,"9":0.01034,"10":0.00517,"11":0.08269,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.3624},Q:{"13.1":0},O:{"0":0.09664},H:{"0":0.18299},L:{"0":29.6463}};
diff --git a/node_modules/caniuse-lite/data/regions/GD.js b/node_modules/caniuse-lite/data/regions/GD.js
new file mode 100644
index 0000000..ec732c5
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/GD.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00514,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.01541,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.03597,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.01541,"103":0.00514,"104":0.00514,"105":0.00514,"106":0,"107":0,"108":0.01028,"109":0.00514,"110":0.0411,"111":0.43159,"112":0.33911,"113":0,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00514,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.01028,"71":0,"72":0,"73":0.01028,"74":0,"75":0,"76":0.03083,"77":0,"78":0,"79":0.03083,"80":0,"81":0,"83":0.00514,"84":0,"85":0,"86":0.01028,"87":0.07193,"88":0.02569,"89":0.01028,"90":0.02055,"91":0,"92":0.01028,"93":0.03083,"94":0.00514,"95":0.02569,"96":0.03083,"97":0.00514,"98":0.00514,"99":0.00514,"100":0.00514,"101":0.00514,"102":0.01541,"103":0.13873,"104":0.00514,"105":0.00514,"106":0.02569,"107":0.02569,"108":0.11304,"109":0.53949,"110":0.16442,"111":6.19643,"112":6.62802,"113":0.01028,"114":0,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00514,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.00514,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0.00514,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0.15928,"97":0.23635,"98":0.01028,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0.00514,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00514,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0.01028,"108":0,"109":0.02055,"110":0.02569,"111":1.25881,"112":2.24531,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.11304,"15":0.01028,_:"0","3.1":0,"3.2":0,"5.1":0.00514,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00514,"13.1":0.05652,"14.1":0.15414,"15.1":0.01028,"15.2-15.3":0.01028,"15.4":0.07193,"15.5":0.04624,"15.6":0.33911,"16.0":0.01541,"16.1":0.28259,"16.2":0.53435,"16.3":1.19715,"16.4":0.33911,"16.5":0.00514},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.0978,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.03954,"10.0-10.2":0.01457,"10.3":0.0437,"11.0-11.2":0.02081,"11.3-11.4":0.01665,"12.0-12.1":0,"12.2-12.5":0.40162,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0.00624,"14.0-14.4":0.12278,"14.5-14.8":0.49735,"15.0-15.1":0.0541,"15.2-15.3":0.08948,"15.4":0.13318,"15.5":0.29341,"15.6":0.51608,"16.0":0.97389,"16.1":2.3265,"16.2":1.71679,"16.3":8.02831,"16.4":3.53554,"16.5":0.09364},P:{"4":0.2081,"20":2.79893,"5.0-5.4":0,"6.2-6.4":0.02081,"7.2-7.4":0.14567,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.08324,"12.0":0,"13.0":0.03121,"14.0":0.0104,"15.0":0,"16.0":0.07283,"17.0":0.02081,"18.0":0.02081,"19.0":0.23931},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.84667},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00514,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.13614},Q:{"13.1":0},O:{"0":0.12641},H:{"0":0.21174},L:{"0":51.09498}};
diff --git a/node_modules/caniuse-lite/data/regions/GE.js b/node_modules/caniuse-lite/data/regions/GE.js
new file mode 100644
index 0000000..c66ffc8
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/GE.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00474,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00474,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.01898,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.06642,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00949,"100":0,"101":0,"102":0.00474,"103":0,"104":0.00474,"105":0.00474,"106":0.00474,"107":0,"108":0.00474,"109":0.00474,"110":0.0427,"111":0.3131,"112":0.32259,"113":0,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00474,"39":0,"40":0.00474,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00949,"48":0,"49":0.02846,"50":0.00474,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00474,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00949,"64":0,"65":0,"66":0.00949,"67":0.00474,"68":0.01423,"69":0,"70":0.00474,"71":0.00474,"72":0,"73":0.00949,"74":0.00949,"75":0,"76":0,"77":0.00474,"78":0.00474,"79":0.09014,"80":0.00474,"81":0.01423,"83":0.07116,"84":0.00474,"85":0.00949,"86":0.00949,"87":0.05218,"88":0.01423,"89":0.00474,"90":0.00949,"91":0.00949,"92":0.00949,"93":0.00474,"94":0.14232,"95":0.01898,"96":0.01898,"97":0.00949,"98":0.03795,"99":0.00949,"100":0.00949,"101":0.00949,"102":0.02372,"103":0.06642,"104":0.00949,"105":0.02372,"106":0.03321,"107":0.02846,"108":0.09488,"109":2.82742,"110":0.15181,"111":4.85786,"112":5.98693,"113":0.00949,"114":0.00474,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.01423,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.01423,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00474,"64":0,"65":0,"66":0,"67":0,"68":0.00474,"69":0.01423,"70":0,"71":0,"72":0,"73":0,"74":0.00474,"75":0,"76":0,"77":0,"78":0,"79":0.00474,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.02372,"86":0.00474,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0.00474,"95":0.36054,"96":0.22771,"97":0.83969,"98":0.03795,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00474,"13":0.00949,"14":0.04744,"15":0.00474,"16":0.02846,"17":0,"18":0.02372,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00949,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00474,"100":0,"101":0.00949,"102":0,"103":0,"104":0,"105":0.00474,"106":0.00474,"107":0.00949,"108":0.01423,"109":0.02846,"110":0.03795,"111":0.45068,"112":0.86815,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.05693,"15":0.00474,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00474,"13.1":0.02372,"14.1":0.04744,"15.1":0.00474,"15.2-15.3":0.00474,"15.4":0.01423,"15.5":0.01898,"15.6":0.10911,"16.0":0.00949,"16.1":0.0759,"16.2":0.05693,"16.3":0.20874,"16.4":0.11386,"16.5":0.00474},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.03592,"6.0-6.1":0,"7.0-7.1":0.13571,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.05588,"10.0-10.2":0.00599,"10.3":0.10578,"11.0-11.2":0.03992,"11.3-11.4":0.01796,"12.0-12.1":0.01796,"12.2-12.5":0.70051,"13.0-13.1":0.00998,"13.2":0.00399,"13.3":0.03992,"13.4-13.7":0.12972,"14.0-14.4":0.24548,"14.5-14.8":0.65261,"15.0-15.1":0.1417,"15.2-15.3":0.18561,"15.4":0.25745,"15.5":0.40913,"15.6":0.87614,"16.0":1.84608,"16.1":1.92591,"16.2":1.12561,"16.3":5.23688,"16.4":3.66821,"16.5":0.07384},P:{"4":0.56237,"20":1.22888,"5.0-5.4":0.01041,"6.2-6.4":0,"7.2-7.4":0.0729,"8.2":0,"9.2":0.01041,"10.1":0,"11.1-11.2":0.02083,"12.0":0.01041,"13.0":0.04166,"14.0":0,"15.0":0.01041,"16.0":0.05207,"17.0":0.04166,"18.0":0.03124,"19.0":0.13538},I:{"0":0,"3":0,"4":0.04484,"2.1":0,"2.2":0,"2.3":0.01495,"4.1":0.04484,"4.2-4.3":0.13451,"4.4":0,"4.4.3-4.4.4":0.70246},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00949,"9":0,"10":0,"11":0.02372,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0.00526},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.12614},Q:{"13.1":0},O:{"0":0.05782},H:{"0":0.34832},L:{"0":56.69224}};
diff --git a/node_modules/caniuse-lite/data/regions/GF.js b/node_modules/caniuse-lite/data/regions/GF.js
new file mode 100644
index 0000000..ce6af0f
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/GF.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00427,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.01282,"79":0,"80":0,"81":0,"82":0.00427,"83":0,"84":0,"85":0,"86":0.00854,"87":0.00427,"88":0,"89":0,"90":0,"91":0.00427,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00427,"101":0,"102":0.05554,"103":0,"104":0.02563,"105":0.00427,"106":0,"107":0,"108":0.00427,"109":0.00427,"110":0.00854,"111":1.02101,"112":0.91421,"113":0,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00427,"48":0,"49":0.00854,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00427,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0.00854,"77":0.00427,"78":0,"79":0.00427,"80":0,"81":0.00427,"83":0,"84":0,"85":0.00427,"86":0,"87":0.00427,"88":0,"89":0.00427,"90":0.00427,"91":0,"92":0,"93":0,"94":0.01282,"95":0.00427,"96":0,"97":0,"98":0.02136,"99":0.17515,"100":0,"101":0,"102":0.00427,"103":0.01709,"104":0.05981,"105":0.00854,"106":0.00854,"107":0.00854,"108":0.03418,"109":0.34176,"110":0.08544,"111":2.97758,"112":4.54541,"113":0,"114":0,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.01282,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00427,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00427,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.02136,"96":0.20078,"97":0.23496,"98":0.00854,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.00854,"16":0,"17":0,"18":0.00427,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00427,"92":0.00427,"93":0.00427,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00854,"103":0,"104":0,"105":0,"106":0,"107":0.01282,"108":0.00427,"109":0.01709,"110":0.03845,"111":1.05946,"112":2.61874,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.01282,"14":0.01282,"15":0.00427,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00427,"13.1":0.02563,"14.1":0.06408,"15.1":0.00427,"15.2-15.3":0.00854,"15.4":0.01282,"15.5":0.02563,"15.6":0.10253,"16.0":0.0299,"16.1":0.14098,"16.2":0.22642,"16.3":0.55963,"16.4":0.14952,"16.5":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.29413,"10.0-10.2":0,"10.3":0.01337,"11.0-11.2":0.00891,"11.3-11.4":0.01114,"12.0-12.1":0.00668,"12.2-12.5":0.15152,"13.0-13.1":0.02451,"13.2":0.0156,"13.3":0.01114,"13.4-13.7":0.03342,"14.0-14.4":0.56153,"14.5-14.8":0.27631,"15.0-15.1":0.26739,"15.2-15.3":0.17826,"15.4":0.205,"15.5":0.24065,"15.6":0.79327,"16.0":2.66057,"16.1":2.91013,"16.2":1.57762,"16.3":8.09534,"16.4":2.93019,"16.5":0.06016},P:{"4":0.05104,"20":3.33816,"5.0-5.4":0.02042,"6.2-6.4":0.01021,"7.2-7.4":0.09188,"8.2":0,"9.2":0.09188,"10.1":0,"11.1-11.2":0.04083,"12.0":0.01021,"13.0":0.01021,"14.0":0.09188,"15.0":0.01021,"16.0":0.245,"17.0":0.05104,"18.0":0.05104,"19.0":0.23479},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.14534},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00854,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.37805},Q:{"13.1":0},O:{"0":0.03437},H:{"0":0.09761},L:{"0":55.36989}};
diff --git a/node_modules/caniuse-lite/data/regions/GG.js b/node_modules/caniuse-lite/data/regions/GG.js
new file mode 100644
index 0000000..31dddb6
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/GG.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.01471,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.02452,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00981,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.09806,"103":0.0049,"104":0,"105":0,"106":0.0049,"107":0,"108":0,"109":0.0049,"110":0.0049,"111":0.42656,"112":0.37263,"113":0,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.0049,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0.03922,"77":0.00981,"78":0,"79":0.0049,"80":0,"81":0,"83":0,"84":0.28928,"85":0,"86":0.0049,"87":0,"88":0,"89":0.0049,"90":0,"91":0.0049,"92":0.0049,"93":0.01471,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00981,"100":0.0049,"101":0,"102":0,"103":0.04903,"104":0.0049,"105":0.0049,"106":0.01471,"107":0.00981,"108":0.00981,"109":0.44127,"110":0.26967,"111":4.03517,"112":4.27542,"113":0.0049,"114":0,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.12258,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.0049,"91":0,"92":0,"93":0,"94":0,"95":0.00981,"96":0.04413,"97":0.19122,"98":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0.0049,"104":0,"105":0,"106":0,"107":0.0049,"108":0,"109":0.01471,"110":0.05393,"111":1.02963,"112":2.15732,"113":0.0049},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.0049,"14":0.04903,"15":0.00981,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.02452,"12.1":0.01471,"13.1":0.21573,"14.1":0.26967,"15.1":0.00981,"15.2-15.3":0.03432,"15.4":0.17161,"15.5":0.12258,"15.6":0.9806,"16.0":0.05884,"16.1":0.17651,"16.2":0.59817,"16.3":3.79002,"16.4":1.00512,"16.5":0.0049},G:{"8":0.05732,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00521,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.33352,"10.0-10.2":0,"10.3":0.42211,"11.0-11.2":0.17197,"11.3-11.4":0.01563,"12.0-12.1":0.03127,"12.2-12.5":1.47479,"13.0-13.1":0,"13.2":0,"13.3":0.01042,"13.4-13.7":0.07817,"14.0-14.4":0.21366,"14.5-14.8":1.54775,"15.0-15.1":0.11465,"15.2-15.3":0.06775,"15.4":0.26577,"15.5":0.77648,"15.6":2.89225,"16.0":2.70986,"16.1":5.8731,"16.2":3.77817,"16.3":21.12126,"16.4":7.48338,"16.5":0.04169},P:{"4":0.05346,"20":4.61863,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.01069,"12.0":0,"13.0":0.04277,"14.0":0.01069,"15.0":0,"16.0":0.01069,"17.0":0.02138,"18.0":0.01069,"19.0":0.04277},I:{"0":0,"3":0,"4":0.06541,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.32703},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.09806,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.70848},Q:{"13.1":0},O:{"0":0.0051},H:{"0":0.43912},L:{"0":19.38848}};
diff --git a/node_modules/caniuse-lite/data/regions/GH.js b/node_modules/caniuse-lite/data/regions/GH.js
new file mode 100644
index 0000000..727301b
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/GH.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00276,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00276,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00276,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.00553,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00553,"103":0,"104":0.00276,"105":0.00276,"106":0,"107":0.00276,"108":0.00276,"109":0.01106,"110":0.01935,"111":0.24323,"112":0.18242,"113":0.01382,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00276,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00276,"41":0,"42":0,"43":0.00276,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00276,"50":0.00276,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.00276,"65":0.00276,"66":0,"67":0,"68":0.00276,"69":0.00276,"70":0.00276,"71":0.00276,"72":0,"73":0.00276,"74":0.00829,"75":0.00276,"76":0.00276,"77":0.00276,"78":0.00276,"79":0.01658,"80":0.00829,"81":0.01106,"83":0.00276,"84":0.00276,"85":0.00829,"86":0.00553,"87":0.00829,"88":0.00553,"89":0.00276,"90":0.00276,"91":0.00553,"92":0.00276,"93":0.00829,"94":0.00276,"95":0.01106,"96":0.00276,"97":0.00276,"98":0.00553,"99":0.01106,"100":0.00553,"101":0.00553,"102":0.01106,"103":0.03593,"104":0.01382,"105":0.01658,"106":0.01382,"107":0.01382,"108":0.03593,"109":0.61914,"110":0.05528,"111":1.41517,"112":1.56442,"113":0.00553,"114":0.00276,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0.00276,"25":0,"26":0.00276,"27":0.00553,"28":0.00276,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0.00276,"43":0,"44":0,"45":0,"46":0.00276,"47":0,"48":0,"49":0,"50":0.00276,"51":0,"52":0,"53":0,"54":0.00553,"55":0.00276,"56":0,"57":0.00276,"58":0.01382,"60":0.05252,"62":0,"63":0.07463,"64":0.02764,"65":0.02211,"66":0.35379,"67":0.445,"68":0.50305,"69":0.61084,"70":0.00276,"71":0,"72":0.00276,"73":0.00829,"74":0.06634,"75":0.00829,"76":0,"77":0,"78":0,"79":0.00553,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00276,"86":0.00276,"87":0,"88":0,"89":0.00276,"90":0,"91":0,"92":0,"93":0,"94":0.00276,"95":0.03593,"96":0.04146,"97":0.19901,"98":0.00553,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00829},B:{"12":0.00553,"13":0.00276,"14":0.00553,"15":0.00553,"16":0.00276,"17":0.00276,"18":0.01658,"79":0,"80":0,"81":0,"83":0,"84":0.00553,"85":0,"86":0,"87":0,"88":0,"89":0.00829,"90":0.00829,"91":0,"92":0.02211,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00276,"101":0,"102":0,"103":0.00276,"104":0.00276,"105":0.00276,"106":0.00276,"107":0.00553,"108":0.01106,"109":0.01935,"110":0.02764,"111":0.27087,"112":0.40631,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00276,"14":0.00553,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.00553,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00276,"12.1":0.00276,"13.1":0.01382,"14.1":0.01106,"15.1":0.00276,"15.2-15.3":0.00276,"15.4":0.00276,"15.5":0.01106,"15.6":0.02488,"16.0":0.00553,"16.1":0.01382,"16.2":0.01382,"16.3":0.06081,"16.4":0.02764,"16.5":0},G:{"8":0.00513,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00256,"6.0-6.1":0,"7.0-7.1":0.03333,"8.1-8.4":0.00513,"9.0-9.2":0,"9.3":0.11025,"10.0-10.2":0.01538,"10.3":0.24613,"11.0-11.2":0.0282,"11.3-11.4":0.00769,"12.0-12.1":0.11537,"12.2-12.5":1.76395,"13.0-13.1":0.05897,"13.2":0.03333,"13.3":0.09743,"13.4-13.7":0.21024,"14.0-14.4":1.42296,"14.5-14.8":1.41527,"15.0-15.1":0.93069,"15.2-15.3":0.83839,"15.4":0.63841,"15.5":1.05119,"15.6":1.03325,"16.0":1.91522,"16.1":1.86651,"16.2":1.43065,"16.3":3.97146,"16.4":2.65619,"16.5":0.05128},P:{"4":0.15294,"20":0.91766,"5.0-5.4":0.02039,"6.2-6.4":0,"7.2-7.4":0.18353,"8.2":0,"9.2":0.04078,"10.1":0,"11.1-11.2":0.03059,"12.0":0.0102,"13.0":0.02039,"14.0":0.02039,"15.0":0.02039,"16.0":0.09177,"17.0":0.04078,"18.0":0.07137,"19.0":0.17334},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00492,"4.2-4.3":0.01182,"4.4":0,"4.4.3-4.4.4":0.09748},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00553,"9":0,"10":0.00276,"11":0.01106,"5.5":0},S:{"2.5":0.00724,_:"3.0-3.1"},J:{"7":0,"10":0.00724},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.21708},Q:{"13.1":0.01447},O:{"0":1.21565},H:{"0":13.23532},L:{"0":49.57733}};
diff --git a/node_modules/caniuse-lite/data/regions/GI.js b/node_modules/caniuse-lite/data/regions/GI.js
new file mode 100644
index 0000000..981889b
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/GI.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.01212,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.01818,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.01212,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00606,"103":0,"104":0.00606,"105":0,"106":0.00606,"107":0.00606,"108":0.01212,"109":0.01212,"110":0.82416,"111":1.1514,"112":0.3636,"113":0,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.02424,"66":0,"67":0,"68":0,"69":0.00606,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.01212,"80":0.00606,"81":0.01212,"83":0,"84":0,"85":0,"86":0.00606,"87":0.00606,"88":0,"89":0,"90":0.01818,"91":0.00606,"92":0.10908,"93":0,"94":0,"95":0,"96":0,"97":0.01818,"98":0.00606,"99":0,"100":0.00606,"101":0.00606,"102":0,"103":0.08484,"104":0.00606,"105":0.00606,"106":0.08484,"107":0.12726,"108":6.68418,"109":1.55136,"110":0.50298,"111":6.47814,"112":7.3629,"113":0,"114":0.00606,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.08484,"69":0.03636,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0.00606,"95":0.00606,"96":0.23028,"97":0.49086,"98":0.00606,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00606,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0.00606,"108":0.01212,"109":0.04242,"110":0.09696,"111":1.35744,"112":2.69064,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0.00606,"9":0,"10":0,"11":0,"12":0,"13":0.06666,"14":0.12726,"15":0.02424,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.05454,"13.1":0.08484,"14.1":0.1515,"15.1":0.01212,"15.2-15.3":0.03636,"15.4":0.01212,"15.5":0.11514,"15.6":0.58176,"16.0":0.02424,"16.1":0.2424,"16.2":0.22422,"16.3":1.4241,"16.4":0.76962,"16.5":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.01654,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.04962,"10.0-10.2":0.00331,"10.3":0.05955,"11.0-11.2":0.01323,"11.3-11.4":0,"12.0-12.1":0.00992,"12.2-12.5":0.54586,"13.0-13.1":0.00662,"13.2":0,"13.3":0.01323,"13.4-13.7":0.02316,"14.0-14.4":0.08601,"14.5-14.8":0.53263,"15.0-15.1":0.06616,"15.2-15.3":0.41022,"15.4":0.19849,"15.5":0.44992,"15.6":1.63758,"16.0":2.44148,"16.1":4.77378,"16.2":3.58944,"16.3":12.90874,"16.4":3.735,"16.5":0.05955},P:{"4":0.12396,"20":2.48943,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0,"12.0":0,"13.0":0,"14.0":0,"15.0":0,"16.0":0.01033,"17.0":0.02066,"18.0":0.01033,"19.0":0.07231},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.11878},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01818,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.30338},Q:{"13.1":0.00394},O:{"0":0.03546},H:{"0":0.39166},L:{"0":27.84398}};
diff --git a/node_modules/caniuse-lite/data/regions/GL.js b/node_modules/caniuse-lite/data/regions/GL.js
new file mode 100644
index 0000000..707c54b
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/GL.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0.01641,"3":0,"4":0.01094,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00547,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0.00547,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0.00547,"32":0,"33":0,"34":0,"35":0,"36":0.00547,"37":0.00547,"38":0.00547,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.00547,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00547,"99":0,"100":0,"101":0.00547,"102":0.00547,"103":0,"104":0,"105":0.00547,"106":0,"107":0,"108":0.00547,"109":0,"110":0,"111":0.40485,"112":0.61822,"113":0,"114":0,"3.5":0,"3.6":0.01094},D:{"4":0.00547,"5":0,"6":0.00547,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.01094,"27":0,"28":0.00547,"29":0,"30":0,"31":0.00547,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0.02736,"40":0.02736,"41":0.02736,"42":0.00547,"43":0.04377,"44":0.07659,"45":0.09848,"46":0.02188,"47":0.03283,"48":0,"49":0.00547,"50":0,"51":0.02188,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0.00547,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.01094,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00547,"80":0.43221,"81":0.00547,"83":0,"84":0,"85":0,"86":0,"87":0.09848,"88":0.01641,"89":0.00547,"90":0.00547,"91":0,"92":0,"93":0,"94":0.01094,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.01094,"101":0,"102":0,"103":0.02188,"104":0,"105":0.59087,"106":0.00547,"107":0.03283,"108":0.0383,"109":0.2462,"110":0.18601,"111":4.85825,"112":4.38774,"113":0,"114":0,"115":0,"116":0},F:{"9":0,"11":0.01641,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0.00547,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.00547,"27":0.00547,"28":0.01094,"29":0.01641,"30":0.0383,"31":0.01641,"32":0.03283,"33":0,"34":0,"35":0,"36":0.01641,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00547,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.01094,"70":0,"71":0,"72":0,"73":0,"74":0.01641,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0.00547,"95":0,"96":0.77141,"97":3.23336,"98":0.01641,"9.5-9.6":0.00547,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0.00547,"11.5":0,"11.6":0.00547,"12.1":0.05471},B:{"12":0.05471,"13":0,"14":0.0383,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00547,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0.01641,"108":0.00547,"109":0.01641,"110":0.05471,"111":0.68935,"112":2.42365,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.07659,"15":0.00547,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.01094,"13.1":0.09301,"14.1":0.19149,"15.1":0.01641,"15.2-15.3":0.01094,"15.4":0.02736,"15.5":0.20243,"15.6":0.43768,"16.0":0.02736,"16.1":0.12583,"16.2":0.21884,"16.3":1.61395,"16.4":0.74406,"16.5":0.01094},G:{"8":0.02309,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01649,"6.0-6.1":0,"7.0-7.1":0.22097,"8.1-8.4":0.36938,"9.0-9.2":0.03628,"9.3":0.09234,"10.0-10.2":0,"10.3":0.04287,"11.0-11.2":0,"11.3-11.4":0.00989,"12.0-12.1":0,"12.2-12.5":0.21767,"13.0-13.1":0,"13.2":0,"13.3":0.00989,"13.4-13.7":0.0066,"14.0-14.4":0.05607,"14.5-14.8":0.37268,"15.0-15.1":0.04617,"15.2-15.3":0.19458,"15.4":0.1715,"15.5":0.11213,"15.6":1.3357,"16.0":4.62714,"16.1":3.73007,"16.2":1.72157,"16.3":9.54451,"16.4":7.09407,"16.5":0.08575},P:{"4":0.45391,"20":3.63125,"5.0-5.4":0,"6.2-6.4":0.08253,"7.2-7.4":0.01032,"8.2":0,"9.2":0,"10.1":0.05158,"11.1-11.2":0,"12.0":0,"13.0":0,"14.0":0,"15.0":0.01032,"16.0":0,"17.0":0,"18.0":0,"19.0":0.02063},I:{"0":0,"3":0.02517,"4":0.26428,"2.1":0.04877,"2.2":0.10383,"2.3":0.21866,"4.1":0.37755,"4.2-4.3":0.62452,"4.4":0,"4.4.3-4.4.4":1.63603},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.0723,"7":0.12791,"8":1.36809,"9":0.22245,"10":0.27251,"11":0.78415,"5.5":0.01112},S:{"2.5":0.05888,_:"3.0-3.1"},J:{"7":0,"10":0.10417},N:{"10":0.17172,"11":0.12266},R:{_:"0"},M:{"0":0.2491},Q:{"13.1":0},O:{"0":0.58877},H:{"0":0.61315},L:{"0":28.19119}};
diff --git a/node_modules/caniuse-lite/data/regions/GM.js b/node_modules/caniuse-lite/data/regions/GM.js
new file mode 100644
index 0000000..184bb10
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/GM.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0.00213,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00213,"59":0.00213,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00213,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00213,"80":0.00213,"81":0,"82":0,"83":0.00213,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0.01067,"98":0,"99":0,"100":0,"101":0,"102":0.02988,"103":0,"104":0,"105":0.00213,"106":0,"107":0.00213,"108":0,"109":0,"110":0.0064,"111":0.08963,"112":0.09816,"113":0.00213,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0.00854,"34":0.00213,"35":0,"36":0.00427,"37":0,"38":0,"39":0,"40":0.00427,"41":0,"42":0,"43":0.00213,"44":0,"45":0.00213,"46":0,"47":0,"48":0,"49":0.01067,"50":0.00213,"51":0,"52":0,"53":0.00213,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.00213,"61":0.00213,"62":0,"63":0.00213,"64":0.00213,"65":0,"66":0.00213,"67":0.00213,"68":0.00213,"69":0.00427,"70":0.00213,"71":0.00213,"72":0.00213,"73":0.00213,"74":0.00213,"75":0.0064,"76":0.00213,"77":0.00213,"78":0.00427,"79":0.01921,"80":0.0128,"81":0.03414,"83":0.00427,"84":0.0064,"85":0.00427,"86":0.00427,"87":0.00427,"88":0.00213,"89":0.00427,"90":0.00427,"91":0.00213,"92":0,"93":0.02134,"94":0,"95":0.00854,"96":0,"97":0,"98":0.00213,"99":0.00213,"100":0,"101":0.00213,"102":0,"103":0.00427,"104":0.00213,"105":0,"106":0.0064,"107":0.03841,"108":0.00427,"109":0.37345,"110":0.06189,"111":0.29022,"112":0.40119,"113":0,"114":0,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0.00427,"62":0,"63":0.00427,"64":0,"65":0,"66":0.00427,"67":0.0064,"68":0.0128,"69":0.02561,"70":0,"71":0,"72":0,"73":0,"74":0.00427,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.0064,"96":0.00213,"97":0.03414,"98":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00213},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.0064,"79":0.00213,"80":0.00213,"81":0.00213,"83":0.00213,"84":0.00213,"85":0.00854,"86":0.00427,"87":0.0064,"88":0,"89":0,"90":0.00213,"91":0,"92":0.0064,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0.01494,"111":0.10243,"112":0.14938,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0.00213,"13":0.00213,"14":0.00213,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.00213,"6.1":0,"7.1":0,"9.1":0.0064,"10.1":0,"11.1":0,"12.1":0.00213,"13.1":0.00427,"14.1":0.00427,"15.1":0,"15.2-15.3":0,"15.4":0.00213,"15.5":0,"15.6":0.03628,"16.0":0.00213,"16.1":0.00427,"16.2":0.00213,"16.3":0.02134,"16.4":0.0064,"16.5":0},G:{"8":0.00499,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.369,"8.1-8.4":0,"9.0-9.2":0.00499,"9.3":0.47123,"10.0-10.2":0,"10.3":0.40889,"11.0-11.2":0.00997,"11.3-11.4":0.01247,"12.0-12.1":0.21442,"12.2-12.5":4.22108,"13.0-13.1":0.58342,"13.2":0.06981,"13.3":0.4064,"13.4-13.7":0.26428,"14.0-14.4":1.53834,"14.5-14.8":1.61563,"15.0-15.1":0.50364,"15.2-15.3":0.31914,"15.4":0.60586,"15.5":0.9624,"15.6":1.26408,"16.0":0.87763,"16.1":1.72533,"16.2":0.94993,"16.3":2.82735,"16.4":1.25161,"16.5":0.02244},P:{"4":1.2869,"20":1.33838,"5.0-5.4":0.29856,"6.2-6.4":0.0103,"7.2-7.4":0.07207,"8.2":0,"9.2":0.02059,"10.1":0,"11.1-11.2":0.08236,"12.0":0,"13.0":0.07207,"14.0":0,"15.0":0,"16.0":0.11325,"17.0":0.05148,"18.0":0.04118,"19.0":0.11325},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00553,"4.2-4.3":0.01561,"4.4":0,"4.4.3-4.4.4":0.11342},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00213,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.03146},Q:{"13.1":0},O:{"0":0.61355},H:{"0":0.7447},L:{"0":70.04454}};
diff --git a/node_modules/caniuse-lite/data/regions/GN.js b/node_modules/caniuse-lite/data/regions/GN.js
new file mode 100644
index 0000000..28f38ab
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/GN.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0.00113,"109":0,"110":0.00226,"111":0.02375,"112":0.0147,"113":0,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00566,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0.00113,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.00226,"70":0,"71":0,"72":0.00113,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0.00452,"83":0,"84":0,"85":0,"86":0,"87":0.00452,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00226,"100":0,"101":0,"102":0.00113,"103":0.00113,"104":0,"105":0.00113,"106":0,"107":0,"108":0.00226,"109":0.01583,"110":0.00226,"111":0.08596,"112":0.08822,"113":0,"114":0,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0.00113,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0.01244,"55":0,"56":0,"57":0,"58":0,"60":0.00792,"62":0,"63":0.00452,"64":0.02714,"65":0.00113,"66":0.00566,"67":0.00905,"68":0.00452,"69":0.00792,"70":0,"71":0,"72":0.00226,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.00113,"96":0.00113,"97":0.01018,"98":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00113,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00452,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0.00226,"86":0,"87":0,"88":0,"89":0.00226,"90":0,"91":0,"92":0.00113,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0.00113,"106":0,"107":0.00113,"108":0,"109":0,"110":0.00226,"111":0.02262,"112":0.04185,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00113,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00113,"13.1":0,"14.1":0,"15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0,"15.6":0.00452,"16.0":0,"16.1":0,"16.2":0,"16.3":0.00113,"16.4":0.00113,"16.5":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.04115,"8.1-8.4":0.02305,"9.0-9.2":0,"9.3":0.05268,"10.0-10.2":0.03622,"10.3":0.45599,"11.0-11.2":0.06091,"11.3-11.4":0.22388,"12.0-12.1":0.22552,"12.2-12.5":2.4429,"13.0-13.1":0.33252,"13.2":0.07902,"13.3":0.29137,"13.4-13.7":0.49056,"14.0-14.4":1.35808,"14.5-14.8":0.6848,"15.0-15.1":0.90045,"15.2-15.3":0.57616,"15.4":0.39837,"15.5":0.75723,"15.6":0.72266,"16.0":0.9202,"16.1":0.97947,"16.2":0.53829,"16.3":1.92436,"16.4":0.80991,"16.5":0.00823},P:{"4":0.31166,"20":0.59315,"5.0-5.4":0.12064,"6.2-6.4":0.10053,"7.2-7.4":0.2815,"8.2":0.08043,"9.2":0.1508,"10.1":0.03016,"11.1-11.2":0.10053,"12.0":0.04021,"13.0":0.02011,"14.0":0.21112,"15.0":0.04021,"16.0":0.50267,"17.0":0.08043,"18.0":0.18096,"19.0":0.24128},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00251,"4.4":0,"4.4.3-4.4.4":0.09541},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00226,"5.5":0},S:{"2.5":0.23059,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.01774},Q:{"13.1":0.00887},O:{"0":0.08869},H:{"0":8.07753},L:{"0":70.79339}};
diff --git a/node_modules/caniuse-lite/data/regions/GP.js b/node_modules/caniuse-lite/data/regions/GP.js
new file mode 100644
index 0000000..982f4a9
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/GP.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.0046,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.0046,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.0184,"79":0,"80":0.0046,"81":0,"82":0,"83":0.0046,"84":0.0138,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.0092,"92":0,"93":0,"94":0,"95":0,"96":0.0046,"97":0.0046,"98":0,"99":0,"100":0.0092,"101":0,"102":0.0184,"103":0,"104":0,"105":0,"106":0,"107":0.0046,"108":0.0046,"109":0.03221,"110":0.05521,"111":0.80518,"112":0.78677,"113":0,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.0046,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.05521,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.0046,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0.0046,"76":0,"77":0,"78":0,"79":0.0092,"80":0.0046,"81":0.0046,"83":0,"84":0,"85":0,"86":0,"87":0.0092,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.0046,"96":0,"97":0,"98":0.0046,"99":0.0046,"100":0.0046,"101":0,"102":0.0092,"103":0.09202,"104":0.0046,"105":0.0046,"106":0.0092,"107":0.0138,"108":0.02761,"109":0.4785,"110":0.12883,"111":4.1593,"112":4.78504,"113":0.03681,"114":0,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.02301,"96":0.30367,"97":0.60273,"98":0.0092,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0.0046,"18":0.0046,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.0046,"91":0,"92":0.0046,"93":0,"94":0,"95":0,"96":0,"97":0.05521,"98":0,"99":0.0046,"100":0.0046,"101":0,"102":0.0092,"103":0,"104":0,"105":0.0092,"106":0.0092,"107":0.0046,"108":0.0138,"109":0.11042,"110":0.06441,"111":0.96621,"112":2.52595,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.0046,"14":0.04141,"15":0.03221,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.02301,"13.1":0.22545,"14.1":0.10122,"15.1":0.0184,"15.2-15.3":0.0138,"15.4":0.07822,"15.5":0.03681,"15.6":0.24385,"16.0":0.0184,"16.1":0.10122,"16.2":0.17944,"16.3":0.51991,"16.4":0.33127,"16.5":0.0046},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01814,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0.00302,"9.0-9.2":0,"9.3":0.03628,"10.0-10.2":0,"10.3":0.04233,"11.0-11.2":0,"11.3-11.4":0.00605,"12.0-12.1":0.02117,"12.2-12.5":0.34772,"13.0-13.1":0.00907,"13.2":0,"13.3":0.02419,"13.4-13.7":0.02721,"14.0-14.4":0.39006,"14.5-14.8":0.7529,"15.0-15.1":0.20863,"15.2-15.3":0.19654,"15.4":0.22678,"15.5":1.79607,"15.6":1.74769,"16.0":2.39174,"16.1":3.83403,"16.2":2.04401,"16.3":9.66068,"16.4":4.89232,"16.5":0.58962},P:{"4":0.02073,"20":3.88635,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.05182,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.02073,"12.0":0.01036,"13.0":0.03109,"14.0":0.02073,"15.0":0.02073,"16.0":0.07255,"17.0":0.02073,"18.0":0.09327,"19.0":0.25909},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.02235,"4.4":0,"4.4.3-4.4.4":0.15967},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.02761,"5.5":0},S:{"2.5":0.0054,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.30774},Q:{"13.1":0},O:{"0":0},H:{"0":0.13801},L:{"0":44.63216}};
diff --git a/node_modules/caniuse-lite/data/regions/GQ.js b/node_modules/caniuse-lite/data/regions/GQ.js
new file mode 100644
index 0000000..9fdc186
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/GQ.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00812,"53":0,"54":0,"55":0,"56":0.01624,"57":0.01624,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00812,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0.00812,"72":0.00812,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.00812,"94":0,"95":0,"96":0,"97":0.00812,"98":0,"99":0.00812,"100":0.01624,"101":0,"102":0.03249,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0,"111":0.32488,"112":0.28427,"113":0,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00812,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.01624,"53":0.00812,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.00812,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":1.2914,"75":0,"76":0.00812,"77":0,"78":0,"79":0.03249,"80":0,"81":0,"83":0,"84":0.01624,"85":0,"86":0,"87":0.00812,"88":0.06498,"89":0.00812,"90":0,"91":0,"92":0.00812,"93":0,"94":0.01624,"95":0,"96":0,"97":0.00812,"98":0,"99":0.02437,"100":0.22742,"101":0,"102":0.00812,"103":0.02437,"104":0,"105":0,"106":0,"107":0.02437,"108":0.00812,"109":3.11073,"110":0.04873,"111":6.37577,"112":8.34942,"113":0,"114":0,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.00812,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.01624,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0.12995,"98":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00812,"13":0.00812,"14":0,"15":0,"16":0,"17":0,"18":0.04873,"79":0,"80":0,"81":0,"83":0,"84":0.00812,"85":0,"86":0,"87":0,"88":0,"89":0.03249,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.01624,"101":0,"102":0,"103":0,"104":0.00812,"105":0.00812,"106":0,"107":0,"108":0.01624,"109":0.91779,"110":1.06398,"111":11.45202,"112":30.02703,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00812,"15":0.00812,_:"0","3.1":0,"3.2":0,"5.1":0.00812,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00812,"13.1":0,"14.1":0.00812,"15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0,"15.6":0.04873,"16.0":0.00812,"16.1":0,"16.2":0,"16.3":0.02437,"16.4":0.00812,"16.5":0},G:{"8":0.00322,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.34082,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.07395,"10.0-10.2":0,"10.3":0.00322,"11.0-11.2":0.04073,"11.3-11.4":0,"12.0-12.1":1.14893,"12.2-12.5":3.18312,"13.0-13.1":0.02894,"13.2":0.00429,"13.3":0.06966,"13.4-13.7":0.0836,"14.0-14.4":0.66342,"14.5-14.8":1.59692,"15.0-15.1":0.10396,"15.2-15.3":0.10503,"15.4":0.06538,"15.5":0.08145,"15.6":0.29152,"16.0":0.24007,"16.1":0.31938,"16.2":0.28402,"16.3":0.43406,"16.4":0.27759,"16.5":0.00322},P:{"4":0.31667,"20":0.15833,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.02111,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.06333,"12.0":0,"13.0":0,"14.0":0,"15.0":0,"16.0":0,"17.0":0.03167,"18.0":0,"19.0":0.02111},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00718,"4.4":0,"4.4.3-4.4.4":0.19353},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01624,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.02254},Q:{"13.1":0.00188},O:{"0":0.07888},H:{"0":0.06756},L:{"0":24.40308}};
diff --git a/node_modules/caniuse-lite/data/regions/GR.js b/node_modules/caniuse-lite/data/regions/GR.js
new file mode 100644
index 0000000..685476b
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/GR.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.07023,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00468,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00468,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0.00468,"87":0.00468,"88":0.01405,"89":0,"90":0,"91":0.00468,"92":0,"93":0,"94":0.00468,"95":0,"96":0,"97":0,"98":0,"99":0.00468,"100":0,"101":0,"102":0.01405,"103":0.00468,"104":0,"105":0.04682,"106":0.00468,"107":0.00936,"108":0.00936,"109":0.01405,"110":0.03277,"111":1.10027,"112":1.03472,"113":0.00468,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.04682,"35":0,"36":0,"37":0,"38":0.0515,"39":0.03746,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.0515,"48":0,"49":0.05618,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.01405,"57":0,"58":0.01405,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0.00468,"77":0,"78":0,"79":0.12173,"80":0,"81":0.01873,"83":0.00468,"84":0.00468,"85":0.00468,"86":0.00936,"87":0.00936,"88":0.06087,"89":0.01873,"90":0.00468,"91":0.05618,"92":0.15451,"93":0.00936,"94":0.01405,"95":0.01405,"96":0.00468,"97":0.00468,"98":0.00468,"99":0.01405,"100":0.01405,"101":0.00936,"102":0.06555,"103":0.03277,"104":0.00936,"105":0.01873,"106":0.0515,"107":0.01405,"108":0.02809,"109":2.82325,"110":0.103,"111":3.99843,"112":4.682,"113":0.00468,"114":0,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0.03277,"26":0,"27":0,"28":0.00468,"29":0,"30":0,"31":0.21069,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.19196,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.1311,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.00468,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0.00468,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.02341,"96":0.07491,"97":0.27624,"98":0.01405,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.0515,"16":0,"17":0,"18":0.00468,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0.00468,"108":0.01405,"109":0.03746,"110":0.00936,"111":0.35583,"112":0.76785,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00936,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00468,"13.1":0.01405,"14.1":0.03277,"15.1":0.00468,"15.2-15.3":0.00468,"15.4":0.00936,"15.5":0.00936,"15.6":0.06087,"16.0":0.00936,"16.1":0.01873,"16.2":0.02809,"16.3":0.15919,"16.4":0.08428,"16.5":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00096,"6.0-6.1":0,"7.0-7.1":0.24502,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.03747,"10.0-10.2":0.00096,"10.3":0.049,"11.0-11.2":0.00288,"11.3-11.4":0.00577,"12.0-12.1":0.0048,"12.2-12.5":0.26135,"13.0-13.1":0.00192,"13.2":0.00096,"13.3":0.00769,"13.4-13.7":0.03459,"14.0-14.4":0.07591,"14.5-14.8":0.18929,"15.0-15.1":0.04324,"15.2-15.3":0.06438,"15.4":0.0711,"15.5":0.13068,"15.6":0.39875,"16.0":0.40644,"16.1":0.97238,"16.2":0.56498,"16.3":3.33512,"16.4":1.85349,"16.5":0.03747},P:{"4":0.17765,"20":1.88104,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.0209,"12.0":0,"13.0":0.0209,"14.0":0.03135,"15.0":0.01045,"16.0":0.0418,"17.0":0.03135,"18.0":0.0418,"19.0":0.13585},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.06473,"4.2-4.3":0.23303,"4.4":0,"4.4.3-4.4.4":0.56964},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01405,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.20208},Q:{"13.1":0},O:{"0":0.0585},H:{"0":0.19132},L:{"0":67.692}};
diff --git a/node_modules/caniuse-lite/data/regions/GT.js b/node_modules/caniuse-lite/data/regions/GT.js
new file mode 100644
index 0000000..76dc50a
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/GT.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00405,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.07697,"74":0,"75":0,"76":0,"77":0,"78":0.00405,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.0081,"103":0,"104":0.01215,"105":0.00405,"106":0,"107":0,"108":0.00405,"109":0.0081,"110":0.02431,"111":0.26332,"112":0.27547,"113":0.00405,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00405,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00405,"50":0.00405,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0.00405,"77":0,"78":0.00405,"79":0.04051,"80":0,"81":0.0081,"83":0,"84":0.00405,"85":0,"86":0,"87":0.0081,"88":0.00405,"89":0.00405,"90":0.00405,"91":0.0162,"92":0.00405,"93":0.02026,"94":0.00405,"95":0.00405,"96":0.00405,"97":0.0081,"98":0.0081,"99":0.01215,"100":0.0081,"101":0.01215,"102":0.0081,"103":0.03241,"104":0.01215,"105":0.0162,"106":0.0162,"107":0.0162,"108":0.03241,"109":0.74538,"110":0.08912,"111":3.18004,"112":4.75182,"113":0.00405,"114":0,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00405,"69":0.01215,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.0162,"96":0.22686,"97":0.54689,"98":0.01215,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00405,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.0081,"99":0,"100":0.00405,"101":0,"102":0,"103":0,"104":0,"105":0.00405,"106":0,"107":0.00405,"108":0.00405,"109":0.02026,"110":0.02836,"111":0.33218,"112":0.84666,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.0081,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.0162,"14.1":0.02836,"15.1":0.00405,"15.2-15.3":0.0081,"15.4":0.0081,"15.5":0.0162,"15.6":0.08912,"16.0":0.01215,"16.1":0.03646,"16.2":0.05266,"16.3":0.22686,"16.4":0.13773,"16.5":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00162,"6.0-6.1":0.01938,"7.0-7.1":0.00646,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01777,"10.0-10.2":0,"10.3":0.02261,"11.0-11.2":0.00323,"11.3-11.4":0,"12.0-12.1":0.00323,"12.2-12.5":0.15666,"13.0-13.1":0,"13.2":0,"13.3":0.00646,"13.4-13.7":0.03715,"14.0-14.4":0.08075,"14.5-14.8":0.21157,"15.0-15.1":0.04038,"15.2-15.3":0.10013,"15.4":0.09206,"15.5":0.1502,"15.6":0.53458,"16.0":0.90766,"16.1":1.75395,"16.2":1.14507,"16.3":5.88202,"16.4":4.1523,"16.5":0.12597},P:{"4":0.12124,"20":2.63689,"5.0-5.4":0.0101,"6.2-6.4":0,"7.2-7.4":0.16165,"8.2":0,"9.2":0.02021,"10.1":0,"11.1-11.2":0.04041,"12.0":0.0101,"13.0":0.03031,"14.0":0.05052,"15.0":0.03031,"16.0":0.10103,"17.0":0.05052,"18.0":0.06062,"19.0":0.18185},I:{"0":0,"3":0,"4":0.02036,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.08825},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.0081,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.24986},Q:{"13.1":0},O:{"0":0.06544},H:{"0":0.28724},L:{"0":65.87536}};
diff --git a/node_modules/caniuse-lite/data/regions/GU.js b/node_modules/caniuse-lite/data/regions/GU.js
new file mode 100644
index 0000000..7519205
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/GU.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0.00475,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.05229,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.00475,"85":0,"86":0,"87":0.00475,"88":0.00475,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00475,"99":0,"100":0,"101":0,"102":0.00951,"103":0,"104":0,"105":0,"106":0,"107":0.00475,"108":0,"109":0.05229,"110":0.01902,"111":0.52769,"112":0.43737,"113":0.00475,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.01902,"50":0,"51":0,"52":0,"53":0.00475,"54":0,"55":0.00475,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.00475,"74":0,"75":0.00475,"76":0,"77":0,"78":0,"79":0.08082,"80":0,"81":0,"83":0.00951,"84":0.01426,"85":0,"86":0,"87":0.02377,"88":0.00475,"89":0,"90":0,"91":0.00951,"92":0.01902,"93":0.00951,"94":0,"95":0,"96":0.00475,"97":0.00475,"98":0.00951,"99":0.05229,"100":0,"101":0.00951,"102":0.00475,"103":0.1759,"104":0.01426,"105":0.01426,"106":0.00951,"107":0.01426,"108":0.03803,"109":0.56097,"110":0.24721,"111":4.83006,"112":5.83316,"113":0.04279,"114":0,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.00475,"96":0.09983,"97":0.2377,"98":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00475,"79":0,"80":0,"81":0,"83":0,"84":0.00475,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0.00475,"98":0,"99":0,"100":0,"101":0.00475,"102":0,"103":0,"104":0,"105":0,"106":0.02377,"107":0.01426,"108":0.00475,"109":0.03328,"110":0.07606,"111":1.28358,"112":1.54505,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00475,"14":0.07131,"15":0.01902,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.07131,"13.1":0.09033,"14.1":0.19491,"15.1":0.01426,"15.2-15.3":0.03328,"15.4":0.04279,"15.5":0.09983,"15.6":0.59425,"16.0":0.04279,"16.1":0.14737,"16.2":0.42786,"16.3":1.31686,"16.4":0.35655,"16.5":0.00475},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.48394,"10.0-10.2":0,"10.3":0.03618,"11.0-11.2":0,"11.3-11.4":0.14925,"12.0-12.1":0.02261,"12.2-12.5":0.6332,"13.0-13.1":0.02261,"13.2":0,"13.3":0.03618,"13.4-13.7":0.04071,"14.0-14.4":0.43419,"14.5-14.8":0.80054,"15.0-15.1":0.46585,"15.2-15.3":0.50656,"15.4":0.29398,"15.5":1.06739,"15.6":3.45092,"16.0":3.37855,"16.1":5.63545,"16.2":3.67706,"16.3":15.52687,"16.4":6.57167,"16.5":0.04975},P:{"4":0.26098,"20":3.3718,"5.0-5.4":0.04176,"6.2-6.4":0,"7.2-7.4":0.01044,"8.2":0.01044,"9.2":0,"10.1":0,"11.1-11.2":0.01044,"12.0":0,"13.0":0,"14.0":0.01044,"15.0":0.02088,"16.0":0.06263,"17.0":0.08351,"18.0":0.04176,"19.0":0.19834},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.16688},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.02377,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.58755},Q:{"13.1":0},O:{"0":0.01049},H:{"0":0.15893},L:{"0":27.92752}};
diff --git a/node_modules/caniuse-lite/data/regions/GW.js b/node_modules/caniuse-lite/data/regions/GW.js
new file mode 100644
index 0000000..1ea8dcc
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/GW.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00357,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.01786,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00357,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0,"111":0.01786,"112":0.00714,"113":0,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0.00357,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00357,"41":0,"42":0,"43":0.00357,"44":0,"45":0,"46":0.00357,"47":0,"48":0,"49":0.01786,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.01071,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.00357,"65":0,"66":0,"67":0,"68":0.01428,"69":0,"70":0,"71":0,"72":0,"73":0.00714,"74":0,"75":0,"76":0,"77":0,"78":0.02143,"79":0.01071,"80":0,"81":0.02143,"83":0,"84":0,"85":0,"86":0,"87":0.00357,"88":0.00714,"89":0,"90":0.11784,"91":0,"92":0.01786,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.01071,"100":0,"101":0,"102":0.01071,"103":0.00357,"104":0,"105":0.04642,"106":0,"107":0,"108":0.03571,"109":3.46387,"110":0.01071,"111":1.33913,"112":2.65682,"113":0,"114":0,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00714,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00357,"64":0,"65":0,"66":0,"67":0,"68":0.01071,"69":0.00357,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.00357,"96":0.00714,"97":0.09285,"98":0.00714,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00357,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00357,"79":0,"80":0,"81":0,"83":0,"84":0.02143,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00357,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0.00357,"108":0.00357,"109":0.03214,"110":0.34282,"111":0.25711,"112":0.96417,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00714,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0,"14.1":0,"15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0,"15.6":0,"16.0":0,"16.1":0,"16.2":0.00357,"16.3":0.01786,"16.4":0.00357,"16.5":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.05809,"6.0-6.1":0,"7.0-7.1":3.28262,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.26342,"10.0-10.2":0,"10.3":0.06079,"11.0-11.2":0.08916,"11.3-11.4":0,"12.0-12.1":0.04998,"12.2-12.5":0.9321,"13.0-13.1":0.22695,"13.2":0.00135,"13.3":0.04188,"13.4-13.7":0.36609,"14.0-14.4":0.6241,"14.5-14.8":0.88212,"15.0-15.1":0.28774,"15.2-15.3":0.10402,"15.4":0.44579,"15.5":0.22154,"15.6":0.83754,"16.0":0.96452,"16.1":0.32826,"16.2":0.21884,"16.3":1.001,"16.4":0.18507,"16.5":0},P:{"4":0.904,"20":0.72117,"5.0-5.4":0.01016,"6.2-6.4":0.02031,"7.2-7.4":0.6196,"8.2":0,"9.2":0.05079,"10.1":0.19299,"11.1-11.2":0.02031,"12.0":0,"13.0":0,"14.0":0.01016,"15.0":0.01016,"16.0":0.04063,"17.0":0.01016,"18.0":0.03047,"19.0":0.09142},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00117,"4.4":0,"4.4.3-4.4.4":0.06454},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00357,"5.5":0},S:{"2.5":1.57511,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0},Q:{"13.1":0},O:{"0":0.01286},H:{"0":0.5417},L:{"0":72.07309}};
diff --git a/node_modules/caniuse-lite/data/regions/GY.js b/node_modules/caniuse-lite/data/regions/GY.js
new file mode 100644
index 0000000..42dded8
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/GY.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00427,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0.0171,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00427,"103":0,"104":0,"105":0,"106":0,"107":0.01282,"108":0,"109":0,"110":0.00427,"111":0.50861,"112":0.3291,"113":0,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00855,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00427,"59":0,"60":0,"61":0.00427,"62":0,"63":0,"64":0,"65":0.00427,"66":0,"67":0,"68":0,"69":0.00427,"70":0,"71":0,"72":0,"73":0.00855,"74":0,"75":0,"76":0.02564,"77":0,"78":0,"79":0.06411,"80":0,"81":0.00427,"83":0.00855,"84":0.00427,"85":0,"86":0.00855,"87":0.02137,"88":0.00427,"89":0.00427,"90":0.00427,"91":0.01282,"92":0.00427,"93":0.02564,"94":0,"95":0,"96":0.01282,"97":0.00427,"98":0.00427,"99":0.00427,"100":0.00427,"101":0.00427,"102":0.00427,"103":0.24789,"104":0.00427,"105":0.02992,"106":0.01282,"107":0.01282,"108":0.06838,"109":0.32055,"110":0.07693,"111":3.31235,"112":4.90228,"113":0.00427,"114":0.00427,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00855,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0.02137,"65":0,"66":0,"67":0,"68":0.00427,"69":0.03419,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00427,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.00855,"96":0.08121,"97":0.22225,"98":0.0171,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0.00427,"14":0,"15":0.00427,"16":0,"17":0,"18":0.00855,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00427,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0.00427,"104":0,"105":0.00427,"106":0,"107":0.00427,"108":0.00427,"109":0.03419,"110":0.08121,"111":0.62828,"112":1.31212,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.01282,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.01282,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.0171,"14.1":0.03847,"15.1":0,"15.2-15.3":0,"15.4":0.02564,"15.5":0.03847,"15.6":0.07693,"16.0":0.0171,"16.1":0.0171,"16.2":0.02564,"16.3":0.28208,"16.4":0.12395,"16.5":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01843,"6.0-6.1":0.00154,"7.0-7.1":0.09831,"8.1-8.4":0,"9.0-9.2":0.00768,"9.3":0.12597,"10.0-10.2":0,"10.3":0.02151,"11.0-11.2":0.03687,"11.3-11.4":0,"12.0-12.1":0.01075,"12.2-12.5":0.34871,"13.0-13.1":0.00461,"13.2":0.00922,"13.3":0.01229,"13.4-13.7":0.04455,"14.0-14.4":0.09985,"14.5-14.8":0.2719,"15.0-15.1":0.05991,"15.2-15.3":0.1275,"15.4":0.09524,"15.5":0.30723,"15.6":0.73736,"16.0":0.73122,"16.1":1.50698,"16.2":0.87715,"16.3":5.32128,"16.4":2.82347,"16.5":0.09831},P:{"4":0.39289,"20":3.71654,"5.0-5.4":0.02124,"6.2-6.4":0,"7.2-7.4":0.19114,"8.2":0,"9.2":0.01062,"10.1":0,"11.1-11.2":0.05309,"12.0":0,"13.0":0.02124,"14.0":0.03186,"15.0":0.04247,"16.0":0.15928,"17.0":0.11681,"18.0":0.07433,"19.0":0.27609},I:{"0":0,"3":0,"4":0.08035,"2.1":0,"2.2":0,"2.3":0,"4.1":0.12052,"4.2-4.3":0.08035,"4.4":0,"4.4.3-4.4.4":1.16502},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0.00427,"11":0.00427,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.12025},Q:{"13.1":0},O:{"0":0.37219},H:{"0":0.309},L:{"0":62.90829}};
diff --git a/node_modules/caniuse-lite/data/regions/HK.js b/node_modules/caniuse-lite/data/regions/HK.js
new file mode 100644
index 0000000..3bbad82
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/HK.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.02796,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00559,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00559,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00559,"69":0,"70":0,"71":0,"72":0.08388,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.01118,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00559,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.02237,"103":0,"104":0,"105":0.00559,"106":0.00559,"107":0.00559,"108":0.00559,"109":0.01118,"110":0.01678,"111":0.40822,"112":0.36907,"113":0,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0.00559,"23":0,"24":0,"25":0,"26":0.01118,"27":0,"28":0,"29":0,"30":0.00559,"31":0,"32":0,"33":0,"34":0.06151,"35":0,"36":0,"37":0,"38":0.12862,"39":0,"40":0,"41":0,"42":0.00559,"43":0.00559,"44":0.01118,"45":0.01678,"46":0,"47":0,"48":0,"49":0.03914,"50":0.00559,"51":0,"52":0,"53":0.03355,"54":0,"55":0.01678,"56":0.00559,"57":0.00559,"58":0.00559,"59":0,"60":0,"61":0.02796,"62":0.00559,"63":0.00559,"64":0,"65":0.00559,"66":0.00559,"67":0.01118,"68":0.00559,"69":0.01678,"70":0.01118,"71":0.00559,"72":0.00559,"73":0.04474,"74":0.02237,"75":0.01118,"76":0.00559,"77":0.00559,"78":0.02796,"79":0.60953,"80":0.01678,"81":0.02796,"83":0.05592,"84":0.01118,"85":0.01678,"86":0.03914,"87":0.13421,"88":0.01118,"89":0.10066,"90":0.01678,"91":0.02796,"92":0.02237,"93":0.00559,"94":0.08388,"95":0.02796,"96":0.02796,"97":0.06151,"98":0.03914,"99":0.12862,"100":0.05592,"101":0.03914,"102":0.03914,"103":0.18454,"104":0.04474,"105":0.0727,"106":0.08388,"107":0.08947,"108":0.19013,"109":1.35326,"110":0.30756,"111":5.51371,"112":7.10184,"113":0.01678,"114":0.01118,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.01118,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.02796,"37":0,"38":0,"39":0,"40":0.00559,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.07829,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.01118,"96":0.02237,"97":0.07829,"98":0.00559,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.01118,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00559,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0.00559,"106":0.00559,"107":0.01678,"108":0.03355,"109":0.06151,"110":0.0727,"111":0.80525,"112":1.89569,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0.00559,"9":0,"10":0,"11":0,"12":0.00559,"13":0.03914,"14":0.15658,"15":0.03914,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.00559,"10.1":0,"11.1":0.00559,"12.1":0.02796,"13.1":0.11184,"14.1":0.32993,"15.1":0.03914,"15.2-15.3":0.04474,"15.4":0.17335,"15.5":0.24605,"15.6":0.96182,"16.0":0.0671,"16.1":0.18454,"16.2":0.36907,"16.3":1.84536,"16.4":0.57598,"16.5":0.00559},G:{"8":0.00964,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00321,"5.0-5.1":0.02893,"6.0-6.1":0.0225,"7.0-7.1":0.06751,"8.1-8.4":0.12859,"9.0-9.2":0.0225,"9.3":0.31504,"10.0-10.2":0.01286,"10.3":0.1961,"11.0-11.2":0.03536,"11.3-11.4":0.03536,"12.0-12.1":0.05465,"12.2-12.5":1.12516,"13.0-13.1":0.03215,"13.2":0.01607,"13.3":0.07394,"13.4-13.7":0.16717,"14.0-14.4":0.5015,"14.5-14.8":0.83905,"15.0-15.1":0.32469,"15.2-15.3":0.36005,"15.4":0.59794,"15.5":0.75225,"15.6":2.07029,"16.0":1.60737,"16.1":3.54264,"16.2":2.16673,"16.3":10.9944,"16.4":4.33989,"16.5":0.05787},P:{"4":1.55251,"20":5.23295,"5.0-5.4":0.13028,"6.2-6.4":0.01086,"7.2-7.4":0.01086,"8.2":0,"9.2":0.04343,"10.1":0,"11.1-11.2":0.02171,"12.0":0.01086,"13.0":0.076,"14.0":0.03257,"15.0":0.02171,"16.0":0.05428,"17.0":0.11942,"18.0":0.09771,"19.0":0.19542},I:{"0":0,"3":0,"4":0.01403,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00561,"4.2-4.3":0.01403,"4.4":0,"4.4.3-4.4.4":0.10665},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0.09605,"10":0,"11":0.31217,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.19836},Q:{"13.1":0.07934},O:{"0":0.33942},H:{"0":0.08764},L:{"0":29.20483}};
diff --git a/node_modules/caniuse-lite/data/regions/HN.js b/node_modules/caniuse-lite/data/regions/HN.js
new file mode 100644
index 0000000..cb6b230
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/HN.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00451,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.04061,"74":0,"75":0,"76":0,"77":0,"78":0.01805,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.02707,"103":0,"104":0,"105":0.01354,"106":0.01354,"107":0.00451,"108":0.00451,"109":0.00451,"110":0.09475,"111":0.38803,"112":0.25718,"113":0,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00451,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00451,"48":0,"49":0.01354,"50":0,"51":0,"52":0,"53":0.00451,"54":0,"55":0,"56":0.00451,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00451,"64":0,"65":0.00451,"66":0.00451,"67":0,"68":0.00451,"69":0,"70":0.00451,"71":0,"72":0,"73":0,"74":0.00451,"75":0.00451,"76":0.01354,"77":0.00451,"78":0,"79":0.19402,"80":0.00451,"81":0.00902,"83":0.00451,"84":0,"85":0.00902,"86":0.00902,"87":0.02256,"88":0.01354,"89":0.00451,"90":0.00451,"91":0.0361,"92":0.01354,"93":0.05414,"94":0.00451,"95":0.00451,"96":0.00451,"97":0.01354,"98":0.00902,"99":0.03158,"100":0.01354,"101":0.00902,"102":0.01354,"103":0.08573,"104":0.00902,"105":0.01354,"106":0.03158,"107":0.04061,"108":0.72643,"109":0.90691,"110":0.31584,"111":4.13299,"112":5.43696,"113":0.00451,"114":0,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00451,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00451,"69":0.01354,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0.00902,"95":0.0361,"96":0.20755,"97":0.56851,"98":0.01805,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00451,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00902,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00451,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0.00451,"108":0.00451,"109":0.03158,"110":0.03158,"111":0.50986,"112":1.34006,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00902,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.00451,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.02707,"14.1":0.02707,"15.1":0,"15.2-15.3":0.01354,"15.4":0.01354,"15.5":0.01805,"15.6":0.07219,"16.0":0.01805,"16.1":0.03158,"16.2":0.05414,"16.3":0.40157,"16.4":0.10829,"16.5":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00955,"6.0-6.1":0.04011,"7.0-7.1":0.01719,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.1127,"10.0-10.2":0,"10.3":0.0764,"11.0-11.2":0.00955,"11.3-11.4":0.00764,"12.0-12.1":0.00382,"12.2-12.5":0.45842,"13.0-13.1":0.03056,"13.2":0.00955,"13.3":0.05921,"13.4-13.7":0.37056,"14.0-14.4":0.09742,"14.5-14.8":0.33427,"15.0-15.1":0.06685,"15.2-15.3":0.18146,"15.4":0.13562,"15.5":0.21011,"15.6":0.64561,"16.0":1.21482,"16.1":1.82605,"16.2":1.36954,"16.3":6.45613,"16.4":3.51076,"16.5":0.10124},P:{"4":0.47216,"20":2.26841,"5.0-5.4":0.04106,"6.2-6.4":0,"7.2-7.4":0.1437,"8.2":0,"9.2":0.01026,"10.1":0,"11.1-11.2":0.09238,"12.0":0.02053,"13.0":0.04106,"14.0":0.02053,"15.0":0.02053,"16.0":0.08211,"17.0":0.06159,"18.0":0.08211,"19.0":0.20529},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.04069,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.22784},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01805,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.15366},Q:{"13.1":0},O:{"0":0.12074},H:{"0":0.22341},L:{"0":59.43698}};
diff --git a/node_modules/caniuse-lite/data/regions/HR.js b/node_modules/caniuse-lite/data/regions/HR.js
new file mode 100644
index 0000000..1bf86c7
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/HR.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.00499,"49":0,"50":0,"51":0,"52":0.01497,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00998,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00998,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00499,"89":0.01497,"90":0,"91":0,"92":0.00499,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00499,"100":0,"101":0,"102":0.02496,"103":0.00499,"104":0.00499,"105":0.00499,"106":0.00499,"107":0.01996,"108":0.00998,"109":0.01497,"110":0.03993,"111":1.35256,"112":1.13296,"113":0.00499,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00499,"48":0,"49":0.01996,"50":0,"51":0,"52":0,"53":0.00499,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00499,"64":0,"65":0,"66":0.00499,"67":0.00499,"68":0,"69":0.00499,"70":0.00499,"71":0,"72":0,"73":0,"74":0,"75":0.00998,"76":0,"77":0.03993,"78":0,"79":0.07986,"80":0.00499,"81":0.0549,"83":0,"84":0.00998,"85":0.00499,"86":0.00998,"87":0.02496,"88":0.00499,"89":0.00499,"90":0.00499,"91":0.00998,"92":0.00499,"93":0.00998,"94":0.02995,"95":0.01497,"96":0.05989,"97":0.01996,"98":0.00499,"99":0.01497,"100":0.01497,"101":0.01497,"102":0.00499,"103":0.0549,"104":0.01996,"105":0.02496,"106":0.02995,"107":0.03993,"108":0.06488,"109":1.21281,"110":0.15472,"111":5.92432,"112":7.18704,"113":0.00499,"114":0,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00499,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.01497,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.00499,"68":0.00499,"69":0.01996,"70":0,"71":0,"72":0,"73":0,"74":0.00499,"75":0.00499,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.03494,"92":0.00998,"93":0,"94":0,"95":0.0549,"96":0.2246,"97":0.74366,"98":0.02496,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0.09483,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00499,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0.00499,"106":0,"107":0.00499,"108":0.01497,"109":0.03993,"110":0.02496,"111":0.42424,"112":1.01317,"113":0.00499},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.01497,"15":0.00499,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00499,"13.1":0.02995,"14.1":0.0549,"15.1":0.00499,"15.2-15.3":0.00499,"15.4":0.01497,"15.5":0.01497,"15.6":0.10481,"16.0":0.02496,"16.1":0.03494,"16.2":0.04492,"16.3":0.24955,"16.4":0.14474,"16.5":0.00499},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00859,"6.0-6.1":0,"7.0-7.1":0.00286,"8.1-8.4":0.00572,"9.0-9.2":0,"9.3":0.15312,"10.0-10.2":0,"10.3":0.04293,"11.0-11.2":0.00429,"11.3-11.4":0.00572,"12.0-12.1":0.00429,"12.2-12.5":0.22896,"13.0-13.1":0.00286,"13.2":0,"13.3":0.01002,"13.4-13.7":0.04722,"14.0-14.4":0.12307,"14.5-14.8":0.41785,"15.0-15.1":0.11734,"15.2-15.3":0.08157,"15.4":0.13022,"15.5":0.3091,"15.6":0.75557,"16.0":0.95734,"16.1":1.90322,"16.2":1.09328,"16.3":4.8568,"16.4":2.42411,"16.5":0.05581},P:{"4":0.21413,"20":3.57911,"5.0-5.4":0.0102,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0.0102,"11.1-11.2":0.03059,"12.0":0,"13.0":0.02039,"14.0":0.03059,"15.0":0.0102,"16.0":0.05098,"17.0":0.05098,"18.0":0.06118,"19.0":0.21413},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0237,"4.2-4.3":0.02963,"4.4":0,"4.4.3-4.4.4":0.10667},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.01098,"9":0,"10":0,"11":0.04392,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.33059},Q:{"13.1":0},O:{"0":0.0551},H:{"0":0.46474},L:{"0":56.58201}};
diff --git a/node_modules/caniuse-lite/data/regions/HT.js b/node_modules/caniuse-lite/data/regions/HT.js
new file mode 100644
index 0000000..63ac2bf
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/HT.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.00146,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0.00146,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00146,"100":0,"101":0.00146,"102":0.00146,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0.00146,"110":0.00146,"111":0.02187,"112":0.01895,"113":0,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00146,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00146,"39":0,"40":0,"41":0,"42":0.00437,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00146,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00292,"57":0,"58":0.00292,"59":0,"60":0,"61":0,"62":0,"63":0.00146,"64":0.00729,"65":0,"66":0,"67":0,"68":0.00583,"69":0.00146,"70":0.00146,"71":0,"72":0,"73":0,"74":0.00292,"75":0.01312,"76":0.01895,"77":0.00146,"78":0,"79":0.00146,"80":0.00146,"81":0.00729,"83":0,"84":0,"85":0,"86":0.00146,"87":0.00146,"88":0.00146,"89":0.00146,"90":0,"91":0.00146,"92":0.01458,"93":0.01021,"94":0.00292,"95":0.00292,"96":0.00146,"97":0.00146,"98":0,"99":0.00146,"100":0.00729,"101":0.00146,"102":0.00146,"103":0.01604,"104":0.00292,"105":0.01021,"106":0.00437,"107":0.00146,"108":0.00583,"109":0.0554,"110":0.00875,"111":0.2362,"112":0.35575,"113":0,"114":0,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0.00146,"65":0,"66":0,"67":0.00146,"68":0.00583,"69":0.00875,"70":0,"71":0,"72":0,"73":0,"74":0.00146,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.00146,"96":0.00583,"97":0.03645,"98":0.00146,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00146,"13":0.00146,"14":0,"15":0.00146,"16":0.00146,"17":0,"18":0.00146,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00146,"90":0,"91":0,"92":0.00146,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0.00146,"104":0,"105":0.00146,"106":0.01458,"107":0.00146,"108":0.00146,"109":0.01021,"110":0.00437,"111":0.05249,"112":0.10352,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00146,"14":0.00583,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.00146,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00146,"13.1":0.00437,"14.1":0.00292,"15.1":0,"15.2-15.3":0,"15.4":0.00146,"15.5":0.00146,"15.6":0.00875,"16.0":0.00146,"16.1":0,"16.2":0.01166,"16.3":0.01021,"16.4":0.00583,"16.5":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.02035,"8.1-8.4":0.00678,"9.0-9.2":0,"9.3":0.25776,"10.0-10.2":0,"10.3":0.21435,"11.0-11.2":0.00678,"11.3-11.4":0.00678,"12.0-12.1":0.33644,"12.2-12.5":2.31305,"13.0-13.1":0.12888,"13.2":0.01221,"13.3":0.2659,"13.4-13.7":0.51281,"14.0-14.4":1.16127,"14.5-14.8":1.14092,"15.0-15.1":0.28489,"15.2-15.3":0.67967,"15.4":0.47482,"15.5":0.89809,"15.6":0.40292,"16.0":0.29168,"16.1":0.48974,"16.2":0.4816,"16.3":1.26031,"16.4":0.46125,"16.5":0.01492},P:{"4":0.32858,"20":0.55449,"5.0-5.4":0.07188,"6.2-6.4":0.02054,"7.2-7.4":0.28751,"8.2":0.0308,"9.2":0.25671,"10.1":0.01027,"11.1-11.2":0.39019,"12.0":0.02054,"13.0":0.14376,"14.0":0.17456,"15.0":0.0308,"16.0":0.18483,"17.0":0.08215,"18.0":0.08215,"19.0":0.27724},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00502,"4.2-4.3":0.0067,"4.4":0,"4.4.3-4.4.4":0.13701},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00292,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.08542},Q:{"13.1":0},O:{"0":0.11959},H:{"0":0.34774},L:{"0":82.37816}};
diff --git a/node_modules/caniuse-lite/data/regions/HU.js b/node_modules/caniuse-lite/data/regions/HU.js
new file mode 100644
index 0000000..cc1a72b
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/HU.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.02611,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00373,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0.00373,"76":0,"77":0,"78":0.00746,"79":0,"80":0,"81":0,"82":0,"83":0.00373,"84":0,"85":0,"86":0,"87":0,"88":0.00373,"89":0.00373,"90":0,"91":0.00373,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00373,"99":0.00373,"100":0,"101":0,"102":0.02238,"103":0.00373,"104":0.00746,"105":0.00373,"106":0.00373,"107":0.00373,"108":0.02984,"109":0.05968,"110":0.18277,"111":0.66021,"112":0.62664,"113":0.00373,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00373,"35":0,"36":0,"37":0,"38":0.00746,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.01119,"50":0,"51":0,"52":0,"53":0.00373,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.00373,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00373,"79":0.10817,"80":0,"81":0.00746,"83":0.00373,"84":0.00373,"85":0.00746,"86":0.00746,"87":0.01492,"88":0.00373,"89":0.00373,"90":0.00373,"91":0.00373,"92":0.00373,"93":0,"94":0.02238,"95":0.01119,"96":0.00373,"97":0.00373,"98":0.00373,"99":0.01119,"100":0.00746,"101":0.00373,"102":0.00373,"103":0.01865,"104":0.00373,"105":0.00746,"106":0.01865,"107":0.01119,"108":0.02984,"109":0.71989,"110":0.06341,"111":2.6483,"112":3.17796,"113":0.00373,"114":0.00373,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00373,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00373,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00373,"69":0.01119,"70":0,"71":0,"72":0,"73":0,"74":0.00373,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00373,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.04849,"96":0.14174,"97":0.373,"98":0.01492,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0.00373,"108":0.00373,"109":0.10444,"110":0.05968,"111":0.32824,"112":0.56696,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00746,"15":0.00373,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00373,"13.1":0.01119,"14.1":0.01865,"15.1":0.00373,"15.2-15.3":0.00373,"15.4":0.00746,"15.5":0.01119,"15.6":0.05222,"16.0":0.00746,"16.1":0.02238,"16.2":0.02611,"16.3":0.13428,"16.4":0.08579,"16.5":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00141,"6.0-6.1":0,"7.0-7.1":0.00282,"8.1-8.4":0,"9.0-9.2":0.00141,"9.3":0.02393,"10.0-10.2":0,"10.3":0.038,"11.0-11.2":0.00563,"11.3-11.4":0.00422,"12.0-12.1":0.00563,"12.2-12.5":0.18579,"13.0-13.1":0.00563,"13.2":0.00141,"13.3":0.00845,"13.4-13.7":0.038,"14.0-14.4":0.09008,"14.5-14.8":0.27447,"15.0-15.1":0.05208,"15.2-15.3":0.0746,"15.4":0.10134,"15.5":0.16468,"15.6":0.46026,"16.0":0.89941,"16.1":1.57502,"16.2":0.85859,"16.3":4.97981,"16.4":3.10921,"16.5":0.07319},P:{"4":0.25705,"20":3.07435,"5.0-5.4":0.01028,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.01028,"12.0":0,"13.0":0.02056,"14.0":0.03085,"15.0":0.01028,"16.0":0.03085,"17.0":0.03085,"18.0":0.05141,"19.0":0.18508},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.02455,"4.4":0,"4.4.3-4.4.4":0.11664},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01119,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.23826},Q:{"13.1":0},O:{"0":0.01881},H:{"0":0.30867},L:{"0":70.06219}};
diff --git a/node_modules/caniuse-lite/data/regions/ID.js b/node_modules/caniuse-lite/data/regions/ID.js
new file mode 100644
index 0000000..91c2fcf
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/ID.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.0367,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00367,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.00367,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00367,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00367,"89":0,"90":0,"91":0.00367,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00367,"100":0.00367,"101":0,"102":0.00734,"103":0,"104":0.00367,"105":0.00367,"106":0.00367,"107":0.00734,"108":0.00734,"109":0.00734,"110":0.02202,"111":0.5872,"112":0.28993,"113":0.00734,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0.00367,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00367,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.00367,"70":0.00367,"71":0.00367,"72":0.00367,"73":0,"74":0.01101,"75":0.00367,"76":0.00367,"77":0.00367,"78":0.00367,"79":0.01101,"80":0.0367,"81":0.01468,"83":0.01101,"84":0.01101,"85":0.00734,"86":0.00734,"87":0.01101,"88":0.00367,"89":0.00734,"90":0.00367,"91":0.00734,"92":0.00367,"93":0.00367,"94":0.00367,"95":0.00367,"96":0.00734,"97":0.00734,"98":0.00367,"99":0.01468,"100":0.02202,"101":0.00734,"102":0.01101,"103":0.02569,"104":0.00734,"105":0.01101,"106":0.01468,"107":0.01835,"108":0.04404,"109":0.72299,"110":0.12478,"111":4.15077,"112":2.91031,"113":0.00367,"114":0,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.01101,"37":0.01468,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00367,"60":0.00367,"62":0,"63":0.00367,"64":0.00367,"65":0,"66":0.00367,"67":0.01101,"68":0.0367,"69":0.09909,"70":0,"71":0,"72":0,"73":0,"74":0.00734,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.01101,"96":0.03303,"97":0.1101,"98":0.00367,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00367,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00367,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0.00367,"108":0.00367,"109":0.01101,"110":0.01468,"111":0.37067,"112":0.55784,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00367,"14":0.01101,"15":0.00367,_:"0","3.1":0,"3.2":0,"5.1":0.02202,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00367,"13.1":0.01468,"14.1":0.02569,"15.1":0.00734,"15.2-15.3":0.00367,"15.4":0.00734,"15.5":0.01101,"15.6":0.04037,"16.0":0.00734,"16.1":0.02202,"16.2":0.02202,"16.3":0.07707,"16.4":0.03303,"16.5":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01231,"10.0-10.2":0,"10.3":0.01007,"11.0-11.2":0.00224,"11.3-11.4":0,"12.0-12.1":0.00783,"12.2-12.5":0.20817,"13.0-13.1":0.00783,"13.2":0.00783,"13.3":0.0235,"13.4-13.7":0.05596,"14.0-14.4":0.2216,"14.5-14.8":0.35591,"15.0-15.1":0.16117,"15.2-15.3":0.18691,"15.4":0.29547,"15.5":0.40963,"15.6":0.62228,"16.0":1.17069,"16.1":1.23113,"16.2":0.82486,"16.3":2.88308,"16.4":1.4393,"16.5":0.01791},P:{"4":0.15436,"20":1.14226,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.05145,"8.2":0,"9.2":0.01029,"10.1":0,"11.1-11.2":0.03087,"12.0":0.01029,"13.0":0.03087,"14.0":0.03087,"15.0":0.02058,"16.0":0.07203,"17.0":0.07203,"18.0":0.06174,"19.0":0.15436},I:{"0":0,"3":0.01092,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.03275},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01468,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.08862},Q:{"13.1":0},O:{"0":1.3293},H:{"0":0.92889},L:{"0":72.82732}};
diff --git a/node_modules/caniuse-lite/data/regions/IE.js b/node_modules/caniuse-lite/data/regions/IE.js
new file mode 100644
index 0000000..f2a5e25
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/IE.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.0039,"39":0,"40":0,"41":0,"42":0,"43":0.0039,"44":0.0117,"45":0.0039,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.0039,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.0156,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.0078,"85":0,"86":0,"87":0.02731,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.0039,"94":0,"95":0.0078,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.0039,"102":0.02731,"103":0,"104":0,"105":0.0039,"106":0.0078,"107":0.0078,"108":0.0078,"109":0.0156,"110":0.0156,"111":0.3901,"112":0.30818,"113":0.0039,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0.0039,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.0039,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.0039,"48":0.03121,"49":0.0117,"50":0,"51":0,"52":0,"53":0.0039,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.0039,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0.03121,"75":0,"76":0.0039,"77":0,"78":0.0039,"79":0.02731,"80":0,"81":0.09753,"83":0.0039,"84":0.0039,"85":0.0039,"86":0.0039,"87":0.0117,"88":0.0039,"89":0.0117,"90":0.0039,"91":0.0039,"92":0.0039,"93":0.0078,"94":0.10923,"95":0.0039,"96":0.15994,"97":0.0039,"98":0.0039,"99":0.0039,"100":0.0078,"101":0.03121,"102":0.0117,"103":0.04681,"104":0.0117,"105":0.0156,"106":0.21846,"107":0.05852,"108":0.08582,"109":0.47982,"110":0.27307,"111":2.94916,"112":3.56551,"113":0.0039,"114":0.0039,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.0039,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.0039,"69":0.0078,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.0117,"96":0.08582,"97":0.19895,"98":0.0039,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0.0039,"104":0,"105":0,"106":0.0039,"107":0.0078,"108":0.0078,"109":0.01951,"110":0.06632,"111":0.48763,"112":1.01816,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0.0039,"9":0.0039,"10":0,"11":0,"12":0,"13":0.0078,"14":0.05461,"15":0.0078,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.0117,"13.1":0.05071,"14.1":0.10533,"15.1":0.01951,"15.2-15.3":0.0156,"15.4":0.03121,"15.5":0.05852,"15.6":0.30818,"16.0":0.02731,"16.1":0.06632,"16.2":0.13654,"16.3":0.64367,"16.4":0.19895,"16.5":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00792,"8.1-8.4":0.0396,"9.0-9.2":0,"9.3":0.09503,"10.0-10.2":0.00792,"10.3":0.21382,"11.0-11.2":0.00792,"11.3-11.4":0.13463,"12.0-12.1":0.00792,"12.2-12.5":0.79984,"13.0-13.1":0.00792,"13.2":0.00792,"13.3":0.03564,"13.4-13.7":0.10691,"14.0-14.4":0.33261,"14.5-14.8":0.9899,"15.0-15.1":0.23362,"15.2-15.3":0.34449,"15.4":0.33261,"15.5":0.76024,"15.6":2.6569,"16.0":2.6569,"16.1":6.60858,"16.2":3.7933,"16.3":13.26072,"16.4":4.14175,"16.5":0.06731},P:{"4":0.06261,"20":3.86099,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.03131,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.02087,"12.0":0,"13.0":0.03131,"14.0":0.04174,"15.0":0.02087,"16.0":0.06261,"17.0":0.04174,"18.0":0.06261,"19.0":0.24001},I:{"0":0,"3":0,"4":0.03571,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.05356,"4.4":0,"4.4.3-4.4.4":0.16068},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.0039,"9":0.09362,"10":0,"11":0.02731,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0.0061},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.5855},Q:{"13.1":0},O:{"0":0.03659},H:{"0":0.21364},L:{"0":41.54484}};
diff --git a/node_modules/caniuse-lite/data/regions/IL.js b/node_modules/caniuse-lite/data/regions/IL.js
new file mode 100644
index 0000000..9471258
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/IL.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0.00434,"26":0.00867,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00867,"53":0,"54":0,"55":0,"56":0.00867,"57":0,"58":0,"59":0.00434,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00434,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00434,"79":0.04771,"80":0.01301,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0.00434,"98":0,"99":0,"100":0,"101":0,"102":0.00867,"103":0,"104":0,"105":0.00434,"106":0,"107":0.00434,"108":0.00434,"109":0.00434,"110":0.01735,"111":0.28191,"112":0.22552,"113":0,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0.01301,"32":0.00434,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00867,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00434,"50":0,"51":0,"52":0.00867,"53":0.00434,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0.00434,"62":0,"63":0.00434,"64":0,"65":0.00434,"66":0.02169,"67":0,"68":0.00434,"69":0,"70":0,"71":0.00434,"72":0,"73":0.00867,"74":0.00434,"75":0.00434,"76":0.00434,"77":0,"78":0.00434,"79":0.04337,"80":0.03903,"81":0.00867,"83":0.00867,"84":0.00434,"85":0.00867,"86":0.00867,"87":0.01735,"88":0.00434,"89":0.00867,"90":0.20384,"91":0.20384,"92":0.20384,"93":0.20384,"94":0.26456,"95":0.00867,"96":0.00867,"97":0.00434,"98":0.00867,"99":0.00434,"100":0.01301,"101":0.00434,"102":0.01301,"103":0.03036,"104":0.02169,"105":0.01735,"106":0.02602,"107":0.03036,"108":0.0824,"109":0.68525,"110":0.54213,"111":4.63625,"112":5.55136,"113":0.00867,"114":0,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00434,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.00434,"70":0,"71":0,"72":0,"73":0,"74":0.00434,"75":0.00434,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0.00434,"95":0.01301,"96":0.06939,"97":0.20818,"98":0.00867,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0.00434,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0.00434,"104":0,"105":0.00434,"106":0,"107":0.00434,"108":0.00867,"109":0.02602,"110":0.02169,"111":0.32528,"112":0.75898,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0.06939,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.01735,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0.00434,"7.1":0,"9.1":0.00434,"10.1":0,"11.1":0.00434,"12.1":0.00434,"13.1":0.02602,"14.1":0.06072,"15.1":0.00434,"15.2-15.3":0.00434,"15.4":0.00867,"15.5":0.02169,"15.6":0.09541,"16.0":0.01301,"16.1":0.02602,"16.2":0.04337,"16.3":0.20818,"16.4":0.09541,"16.5":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.01432,"8.1-8.4":0.00477,"9.0-9.2":0,"9.3":0.08116,"10.0-10.2":0.00716,"10.3":0.06922,"11.0-11.2":0.00955,"11.3-11.4":0.02148,"12.0-12.1":0.02864,"12.2-12.5":0.28406,"13.0-13.1":0.00955,"13.2":0.00955,"13.3":0.03581,"13.4-13.7":0.07639,"14.0-14.4":0.31987,"14.5-14.8":0.69702,"15.0-15.1":0.12174,"15.2-15.3":0.17187,"15.4":0.21245,"15.5":0.41296,"15.6":1.48475,"16.0":1.79507,"16.1":2.97667,"16.2":1.72824,"16.3":8.30699,"16.4":3.92911,"16.5":0.0931},P:{"4":0.06127,"20":5.1876,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.01021,"8.2":0,"9.2":0.03064,"10.1":0.01021,"11.1-11.2":0.07148,"12.0":0.02042,"13.0":0.06127,"14.0":0.06127,"15.0":0.03064,"16.0":0.13275,"17.0":0.07148,"18.0":0.14297,"19.0":0.36763},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.02452,"4.4":0,"4.4.3-4.4.4":0.05885},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00434,"9":0.00434,"10":0.00434,"11":0.04771,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.17555},Q:{"13.1":0},O:{"0":0.02832},H:{"0":0.2359},L:{"0":50.91203}};
diff --git a/node_modules/caniuse-lite/data/regions/IM.js b/node_modules/caniuse-lite/data/regions/IM.js
new file mode 100644
index 0000000..7ae9fcd
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/IM.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0.00491,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.22082,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.01472,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00491,"79":0,"80":0,"81":0,"82":0,"83":0.00981,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0.00491,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00491,"103":0,"104":0.00491,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0.00491,"111":0.69679,"112":0.47107,"113":0.00491,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0.00491,"40":0,"41":0.00491,"42":0.00491,"43":0,"44":0.00491,"45":0.00981,"46":0,"47":0.00491,"48":0,"49":0.03926,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.01472,"66":0,"67":0.0687,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0.00491,"77":0,"78":0,"79":0.00491,"80":0.06379,"81":0,"83":0,"84":0,"85":0.00491,"86":0.00491,"87":0.01963,"88":0,"89":0,"90":0,"91":0.00491,"92":0,"93":0.00981,"94":0.28461,"95":0,"96":0,"97":0,"98":0.01472,"99":0.00491,"100":0.00491,"101":0,"102":0.00491,"103":0.11286,"104":0.00491,"105":0.11286,"106":0.00981,"107":0.01472,"108":0.0687,"109":0.52505,"110":0.10305,"111":3.24843,"112":4.21021,"113":0.00491,"114":0,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.00491,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.00491,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0.00981,"95":0.00491,"96":0.07361,"97":0.33858,"98":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00491,"13":0,"14":0.00491,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00981,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0.03926,"108":0.00491,"109":0.03435,"110":0.03435,"111":1.57515,"112":3.06688,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00491,"14":0.11777,"15":0.01472,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.19137,"13.1":0.28461,"14.1":0.18156,"15.1":0.02454,"15.2-15.3":0.01963,"15.4":0.02454,"15.5":0.09323,"15.6":1.01084,"16.0":0.01963,"16.1":0.26498,"16.2":0.24535,"16.3":2.11492,"16.4":0.7704,"16.5":0},G:{"8":0.00972,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00972,"8.1-8.4":0.04375,"9.0-9.2":0,"9.3":0.71456,"10.0-10.2":0,"10.3":0.73887,"11.0-11.2":0.00972,"11.3-11.4":0.00972,"12.0-12.1":0.00486,"12.2-12.5":1.32704,"13.0-13.1":0,"13.2":0,"13.3":0.01944,"13.4-13.7":0.16041,"14.0-14.4":0.37429,"14.5-14.8":0.69026,"15.0-15.1":0.48124,"15.2-15.3":0.27707,"15.4":0.17013,"15.5":0.81664,"15.6":2.03188,"16.0":1.84717,"16.1":7.14561,"16.2":2.69783,"16.3":17.83487,"16.4":8.41919,"16.5":0.07778},P:{"4":0.11984,"20":3.63875,"5.0-5.4":0,"6.2-6.4":0.01089,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0.02179,"11.1-11.2":0,"12.0":0,"13.0":0.14163,"14.0":0,"15.0":0,"16.0":0,"17.0":0.01089,"18.0":0.08716,"19.0":0.11984},I:{"0":0,"3":0.00892,"4":0.22587,"2.1":0.01189,"2.2":0.04161,"2.3":0.05944,"4.1":0.09808,"4.2-4.3":0.21398,"4.4":0,"4.4.3-4.4.4":0.45471},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.00981,"7":0.01472,"8":0.13249,"9":0.02454,"10":0.01963,"11":0.08342,"5.5":0.00491},S:{"2.5":0.01019,_:"3.0-3.1"},J:{"7":0,"10":0.01528},N:{"10":0.01358,"11":0.02716},R:{_:"0"},M:{"0":0.56532},Q:{"13.1":0},O:{"0":0.04584},H:{"0":0.05786},L:{"0":24.20222}};
diff --git a/node_modules/caniuse-lite/data/regions/IN.js b/node_modules/caniuse-lite/data/regions/IN.js
new file mode 100644
index 0000000..d88c182
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/IN.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00267,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00267,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00533,"103":0,"104":0.00267,"105":0,"106":0,"107":0.00267,"108":0.00267,"109":0.00267,"110":0.00533,"111":0.12264,"112":0.11464,"113":0.00533,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00267,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00267,"67":0,"68":0,"69":0.00267,"70":0.00267,"71":0.00267,"72":0,"73":0,"74":0.008,"75":0,"76":0,"77":0,"78":0,"79":0.00267,"80":0.00533,"81":0.00533,"83":0.00533,"84":0.00267,"85":0.00267,"86":0.00533,"87":0.01066,"88":0.00267,"89":0.00267,"90":0.00267,"91":0.00533,"92":0.00533,"93":0.00267,"94":0.008,"95":0.00267,"96":0.00533,"97":0.00533,"98":0.01866,"99":0.008,"100":0.00533,"101":0.008,"102":0.00533,"103":0.02133,"104":0.01333,"105":0.01333,"106":0.01333,"107":0.01866,"108":0.03466,"109":0.76514,"110":0.06132,"111":1.30634,"112":1.57294,"113":0.00267,"114":0.00267,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.00267,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.00267,"56":0,"57":0,"58":0,"60":0.00267,"62":0,"63":0.00533,"64":0.00533,"65":0.00267,"66":0.00267,"67":0.016,"68":0.07465,"69":0.17862,"70":0,"71":0,"72":0.00267,"73":0.00267,"74":0.03199,"75":0.01066,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.008,"96":0.008,"97":0.03199,"98":0.00267,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00267,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00267,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00267,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0.00267,"109":0.00533,"110":0.008,"111":0.07465,"112":0.15463,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00267,"14.1":0.00267,"15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0.00267,"15.6":0.008,"16.0":0.00267,"16.1":0.00533,"16.2":0.00533,"16.3":0.02133,"16.4":0.01333,"16.5":0},G:{"8":0.00101,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00268,"7.0-7.1":0.00771,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00603,"10.0-10.2":0,"10.3":0.00469,"11.0-11.2":0.00402,"11.3-11.4":0.00603,"12.0-12.1":0.00402,"12.2-12.5":0.06672,"13.0-13.1":0.00268,"13.2":0.00201,"13.3":0.00436,"13.4-13.7":0.01173,"14.0-14.4":0.04057,"14.5-14.8":0.06538,"15.0-15.1":0.04224,"15.2-15.3":0.03353,"15.4":0.02649,"15.5":0.05063,"15.6":0.0875,"16.0":0.15724,"16.1":0.2434,"16.2":0.22765,"16.3":1.05642,"16.4":0.94042,"16.5":0.02816},P:{"4":0.09212,"20":0.51177,"5.0-5.4":0,"6.2-6.4":0.01024,"7.2-7.4":0.06141,"8.2":0,"9.2":0.01024,"10.1":0,"11.1-11.2":0.01024,"12.0":0.01024,"13.0":0.01024,"14.0":0.02047,"15.0":0.01024,"16.0":0.03071,"17.0":0.03071,"18.0":0.03071,"19.0":0.09212},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.04533},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.008,"5.5":0},S:{"2.5":0.48404,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.15401},Q:{"13.1":0},O:{"0":1.95084},H:{"0":2.65236},L:{"0":84.07035}};
diff --git a/node_modules/caniuse-lite/data/regions/IQ.js b/node_modules/caniuse-lite/data/regions/IQ.js
new file mode 100644
index 0000000..4a4d922
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/IQ.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.05492,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.00366,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00366,"100":0,"101":0,"102":0.00732,"103":0,"104":0,"105":0,"106":0,"107":0.00366,"108":0.00366,"109":0.00366,"110":0.01831,"111":0.12081,"112":0.10983,"113":0,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00366,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00732,"39":0,"40":0,"41":0,"42":0,"43":0.01831,"44":0,"45":0,"46":0,"47":0.00366,"48":0,"49":0.00366,"50":0,"51":0.00366,"52":0,"53":0,"54":0,"55":0,"56":0.00732,"57":0,"58":0,"59":0,"60":0.00366,"61":0,"62":0,"63":0.00366,"64":0.00366,"65":0.00366,"66":0,"67":0,"68":0.00366,"69":0.00366,"70":0.00366,"71":0.01098,"72":0.00366,"73":0.00366,"74":0.01098,"75":0,"76":0,"77":0.00366,"78":0.00366,"79":0.04027,"80":0.00732,"81":0.01831,"83":0.01098,"84":0.00366,"85":0.00366,"86":0.00366,"87":0.01098,"88":0.01098,"89":0.00366,"90":0.00366,"91":0.00366,"92":0.00366,"93":0.00366,"94":0.00366,"95":0.01098,"96":0.00732,"97":0.00732,"98":0.00732,"99":0.01831,"100":0.00732,"101":0.00366,"102":0.01464,"103":0.03295,"104":0.00366,"105":0.1501,"106":0.01098,"107":0.01098,"108":0.02929,"109":0.98115,"110":0.04027,"111":1.63647,"112":2.74575,"113":0.00366,"114":0.00366,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.00366,"68":0.00732,"69":0.04027,"70":0,"71":0,"72":0,"73":0,"74":0.00732,"75":0.00732,"76":0,"77":0,"78":0,"79":0.00366,"80":0,"81":0,"82":0,"83":0,"84":0.00366,"85":0.00366,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.03661,"96":0.04759,"97":0.15742,"98":0.00732,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00366,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00732,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00366,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0.00366,"108":0.00366,"109":0.01831,"110":0.01464,"111":0.20502,"112":0.41003,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00366,"14":0.03295,"15":0.00732,_:"0","3.1":0,"3.2":0,"5.1":0.09519,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.01098,"14.1":0.11349,"15.1":0.00732,"15.2-15.3":0.01098,"15.4":0.04759,"15.5":0.10251,"15.6":0.4503,"16.0":0.01098,"16.1":0.16475,"16.2":0.2819,"16.3":1.65111,"16.4":0.57112,"16.5":0.00732},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00264,"6.0-6.1":0,"7.0-7.1":0.10021,"8.1-8.4":0,"9.0-9.2":0.00527,"9.3":0.06593,"10.0-10.2":0,"10.3":0.07911,"11.0-11.2":0.02373,"11.3-11.4":0.01319,"12.0-12.1":0.0211,"12.2-12.5":0.6461,"13.0-13.1":0.00791,"13.2":0.00527,"13.3":0.03428,"13.4-13.7":0.10285,"14.0-14.4":0.29272,"14.5-14.8":0.52479,"15.0-15.1":0.13186,"15.2-15.3":0.19779,"15.4":0.23471,"15.5":0.46941,"15.6":0.93883,"16.0":2.13082,"16.1":2.17037,"16.2":1.39769,"16.3":7.69521,"16.4":5.74899,"16.5":0.15295},P:{"4":0.10357,"20":2.16455,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.09321,"8.2":0,"9.2":0.01036,"10.1":0,"11.1-11.2":0.06214,"12.0":0.01036,"13.0":0.06214,"14.0":0.04143,"15.0":0.02071,"16.0":0.0725,"17.0":0.08285,"18.0":0.05178,"19.0":0.15535},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0026,"4.2-4.3":0.0078,"4.4":0,"4.4.3-4.4.4":0.10916},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00407,"9":0,"10":0,"11":0.03254,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.08241},Q:{"13.1":0},O:{"0":0.44373},H:{"0":0.47411},L:{"0":59.87048}};
diff --git a/node_modules/caniuse-lite/data/regions/IR.js b/node_modules/caniuse-lite/data/regions/IR.js
new file mode 100644
index 0000000..1395982
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/IR.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00244,"48":0,"49":0,"50":0,"51":0,"52":0.01221,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.01221,"69":0,"70":0,"71":0,"72":0.00244,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0.00244,"83":0.00244,"84":0.00244,"85":0,"86":0.00244,"87":0,"88":0.00244,"89":0.00244,"90":0.00244,"91":0.00244,"92":0.00244,"93":0.00244,"94":0.00732,"95":0.00244,"96":0.00244,"97":0.00244,"98":0.00244,"99":0.00488,"100":0.00488,"101":0.00488,"102":0.02197,"103":0.00732,"104":0.00976,"105":0.01221,"106":0.01221,"107":0.01221,"108":0.02197,"109":0.02685,"110":0.0415,"111":0.47111,"112":0.3808,"113":0.00244,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00244,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00488,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00244,"59":0,"60":0,"61":0,"62":0.00244,"63":0.00244,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.00244,"70":0.00244,"71":0.00488,"72":0.00244,"73":0,"74":0.00244,"75":0.00244,"76":0,"77":0.00244,"78":0.00488,"79":0.00488,"80":0.00488,"81":0.00732,"83":0.00488,"84":0.00488,"85":0.00488,"86":0.00976,"87":0.00732,"88":0.00488,"89":0.00488,"90":0.00244,"91":0.00732,"92":0.00488,"93":0.00244,"94":0.00488,"95":0.00488,"96":0.00732,"97":0.00488,"98":0.00488,"99":0.00488,"100":0.00976,"101":0.00488,"102":0.00976,"103":0.01709,"104":0.01465,"105":0.01465,"106":0.01709,"107":0.01953,"108":0.03417,"109":0.92514,"110":0.03906,"111":0.9642,"112":1.09357,"113":0.00244,"114":0,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0.00244,"65":0,"66":0,"67":0,"68":0,"69":0.00244,"70":0,"71":0,"72":0.00244,"73":0.00244,"74":0.00976,"75":0.00244,"76":0,"77":0,"78":0,"79":0.00244,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0.00732,"95":0.02197,"96":0.01465,"97":0.03173,"98":0.00244,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00244,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00488,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00244,"90":0.00244,"91":0,"92":0.01221,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00244,"101":0,"102":0,"103":0,"104":0,"105":0.00244,"106":0,"107":0.00244,"108":0.00244,"109":0.01953,"110":0.01221,"111":0.04882,"112":0.09764,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.00244,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00244,"14.1":0,"15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0,"15.6":0.00488,"16.0":0,"16.1":0.00244,"16.2":0.00244,"16.3":0.00732,"16.4":0.00488,"16.5":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00222,"8.1-8.4":0,"9.0-9.2":0.00074,"9.3":0.00444,"10.0-10.2":0.00222,"10.3":0.02144,"11.0-11.2":0.00665,"11.3-11.4":0.00961,"12.0-12.1":0.02662,"12.2-12.5":0.49832,"13.0-13.1":0.01331,"13.2":0.01183,"13.3":0.04436,"13.4-13.7":0.08355,"14.0-14.4":0.25582,"14.5-14.8":0.25951,"15.0-15.1":0.17818,"15.2-15.3":0.20628,"15.4":0.19519,"15.5":0.28391,"15.6":0.34454,"16.0":0.48871,"16.1":0.55304,"16.2":0.50941,"16.3":1.10681,"16.4":1.23398,"16.5":0.00961},P:{"4":0.35264,"20":3.02266,"5.0-5.4":0.0403,"6.2-6.4":0.03023,"7.2-7.4":0.38287,"8.2":0.05038,"9.2":0.13098,"10.1":0.05038,"11.1-11.2":0.22166,"12.0":0.10076,"13.0":0.30227,"14.0":0.29219,"15.0":0.16121,"16.0":0.58438,"17.0":0.61461,"18.0":0.65491,"19.0":1.10831},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00464,"4.4":0,"4.4.3-4.4.4":0.02024},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00739,"9":0.00246,"10":0.00246,"11":0.55888,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.94488},Q:{"13.1":0},O:{"0":0.07559},H:{"0":0.43654},L:{"0":76.48786}};
diff --git a/node_modules/caniuse-lite/data/regions/IS.js b/node_modules/caniuse-lite/data/regions/IS.js
new file mode 100644
index 0000000..e2f5daa
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/IS.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.01129,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.03386,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00564,"92":0,"93":0,"94":0,"95":0.02822,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.10159,"103":0,"104":0.02822,"105":0.00564,"106":0.00564,"107":0.00564,"108":0.00564,"109":0.02258,"110":0.01693,"111":1.18524,"112":0.7563,"113":0,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00564,"50":0,"51":0,"52":0,"53":0.00564,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00564,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.00564,"74":0,"75":0,"76":0,"77":0.00564,"78":0,"79":0.01129,"80":0,"81":0.00564,"83":0,"84":0,"85":0.01693,"86":0,"87":0.04515,"88":0.01129,"89":0,"90":0.00564,"91":0.01693,"92":0.00564,"93":0.00564,"94":0,"95":0.00564,"96":0.01693,"97":0.00564,"98":0.00564,"99":0,"100":0.00564,"101":0.00564,"102":0.00564,"103":0.15239,"104":0.00564,"105":0.01693,"106":0.01693,"107":0.05644,"108":0.09595,"109":0.42894,"110":0.32735,"111":8.03706,"112":8.37005,"113":0.01129,"114":0,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00564,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.00564,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00564,"86":0,"87":0,"88":0,"89":0.00564,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.02822,"96":0.41766,"97":0.90304,"98":0.0508,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0.00564,"105":0,"106":0,"107":0.01129,"108":0.00564,"109":0.01693,"110":0.03951,"111":0.99899,"112":2.04877,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.01693,"14":0.07337,"15":0.01693,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.03951,"13.1":0.22576,"14.1":0.34993,"15.1":0.03951,"15.2-15.3":0.03951,"15.4":0.08466,"15.5":0.14674,"15.6":0.79016,"16.0":0.12981,"16.1":0.18061,"16.2":0.39508,"16.3":1.52388,"16.4":0.68292,"16.5":0.00564},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0.00346,"9.0-9.2":0,"9.3":0.01383,"10.0-10.2":0,"10.3":0.05879,"11.0-11.2":0.01383,"11.3-11.4":0,"12.0-12.1":0.00692,"12.2-12.5":0.31124,"13.0-13.1":0.00346,"13.2":0,"13.3":0.01037,"13.4-13.7":0.02421,"14.0-14.4":0.13141,"14.5-14.8":0.57753,"15.0-15.1":0.09337,"15.2-15.3":0.13833,"15.4":0.25591,"15.5":0.55678,"15.6":2.33779,"16.0":2.85653,"16.1":5.00757,"16.2":2.87036,"16.3":13.95756,"16.4":4.42658,"16.5":0.11758},P:{"4":0.03082,"20":3.58511,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0.01027,"11.1-11.2":0,"12.0":0.01027,"13.0":0.14382,"14.0":0.01027,"15.0":0,"16.0":0.01027,"17.0":0.08218,"18.0":0.02055,"19.0":0.08218},I:{"0":0,"3":0,"4":0.00826,"2.1":0,"2.2":0,"2.3":0.00275,"4.1":0.01101,"4.2-4.3":0.01376,"4.4":0,"4.4.3-4.4.4":0.04679},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.01129,"9":0,"10":0,"11":0.0508,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.50094},Q:{"13.1":0},O:{"0":0.00871},H:{"0":0.22269},L:{"0":28.77386}};
diff --git a/node_modules/caniuse-lite/data/regions/IT.js b/node_modules/caniuse-lite/data/regions/IT.js
new file mode 100644
index 0000000..003daca
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/IT.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00452,"48":0.00452,"49":0,"50":0,"51":0,"52":0.0271,"53":0,"54":0.00452,"55":0,"56":0,"57":0,"58":0,"59":0.01355,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00452,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.0271,"79":0.00452,"80":0.00452,"81":0.00452,"82":0,"83":0.00452,"84":0,"85":0,"86":0,"87":0.00903,"88":0.00452,"89":0,"90":0,"91":0.00452,"92":0,"93":0.00452,"94":0.00452,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.00452,"102":0.04065,"103":0.00452,"104":0.00452,"105":0.00452,"106":0.00452,"107":0.00452,"108":0.01355,"109":0.02259,"110":0.0271,"111":0.79951,"112":0.73175,"113":0.00903,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00452,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.03162,"50":0,"51":0,"52":0.00452,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.00903,"61":0,"62":0,"63":0.09486,"64":0,"65":0.00452,"66":0.07227,"67":0.00452,"68":0,"69":0.00452,"70":0,"71":0,"72":0,"73":0,"74":0.00452,"75":0,"76":0,"77":0.00452,"78":0.00452,"79":0.0271,"80":0.00452,"81":0.01807,"83":0.01807,"84":0.0271,"85":0.04065,"86":0.03614,"87":0.04517,"88":0.00452,"89":0.00903,"90":0.00452,"91":0.00452,"92":0.04969,"93":0.00903,"94":0.02259,"95":0.00903,"96":0.00903,"97":0.00903,"98":0.02259,"99":0.01807,"100":0.01355,"101":0.00903,"102":0.00903,"103":0.06776,"104":0.01355,"105":0.02259,"106":0.03162,"107":0.03614,"108":0.09486,"109":0.91695,"110":0.13099,"111":4.39504,"112":5.48816,"113":0.00903,"114":0,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00452,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00452,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00452,"69":0.00903,"70":0,"71":0,"72":0,"73":0,"74":0.00452,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0.00452,"95":0.01807,"96":0.09486,"97":0.31167,"98":0.01355,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0.00903,"18":0.00452,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0.00452,"86":0,"87":0,"88":0,"89":0,"90":0.00452,"91":0,"92":0.00452,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0.00452,"105":0,"106":0,"107":0.00903,"108":0.01355,"109":0.04969,"110":0.03162,"111":0.52849,"112":1.22411,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00903,"14":0.04517,"15":0.01355,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.01355,"12.1":0.01807,"13.1":0.08131,"14.1":0.10389,"15.1":0.01807,"15.2-15.3":0.01355,"15.4":0.03614,"15.5":0.04969,"15.6":0.22133,"16.0":0.03162,"16.1":0.09034,"16.2":0.12196,"16.3":0.54204,"16.4":0.32071,"16.5":0.00452},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.0051,"6.0-6.1":0.04083,"7.0-7.1":0.0051,"8.1-8.4":0.00255,"9.0-9.2":0.00766,"9.3":0.08166,"10.0-10.2":0,"10.3":0.10207,"11.0-11.2":0.02041,"11.3-11.4":0.09187,"12.0-12.1":0.02552,"12.2-12.5":0.38533,"13.0-13.1":0.01786,"13.2":0.01276,"13.3":0.03828,"13.4-13.7":0.13525,"14.0-14.4":0.30112,"14.5-14.8":0.57161,"15.0-15.1":0.17353,"15.2-15.3":0.20415,"15.4":0.20925,"15.5":0.4134,"15.6":1.05391,"16.0":1.74036,"16.1":2.93207,"16.2":1.6638,"16.3":8.74518,"16.4":5.36398,"16.5":0.09697},P:{"4":0.11284,"20":3.0056,"5.0-5.4":0.01026,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0.02052,"10.1":0.01026,"11.1-11.2":0.05129,"12.0":0.01026,"13.0":0.04103,"14.0":0.03077,"15.0":0.02052,"16.0":0.07181,"17.0":0.05129,"18.0":0.06155,"19.0":0.22568},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.02429,"4.2-4.3":0.01215,"4.4":0,"4.4.3-4.4.4":0.10325},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00473,"9":0.00473,"10":0,"11":0.08991,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.37284},Q:{"13.1":0},O:{"0":0.13159},H:{"0":0.26474},L:{"0":50.59562}};
diff --git a/node_modules/caniuse-lite/data/regions/JE.js b/node_modules/caniuse-lite/data/regions/JE.js
new file mode 100644
index 0000000..5ba7d8a
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/JE.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.00986,"74":0,"75":0,"76":0,"77":0,"78":0.01972,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.02959,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.01479,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0.00493,"110":0.00493,"111":0.51776,"112":0.46351,"113":0,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00986,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.00493,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.02466,"80":0.03945,"81":0.00493,"83":0,"84":0,"85":0,"86":0,"87":0.00493,"88":0,"89":0,"90":0.00493,"91":0,"92":0.00986,"93":0.00493,"94":0.01479,"95":0,"96":0.00986,"97":0,"98":0,"99":0,"100":0,"101":0.00493,"102":0,"103":0.14793,"104":0.00493,"105":0.00493,"106":0,"107":0.01479,"108":0.04438,"109":0.34517,"110":0.16272,"111":3.74756,"112":4.63514,"113":0,"114":0,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00493,"69":0.01479,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.00493,"96":0.11341,"97":0.31065,"98":0.00986,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0.00493,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00493,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.01972,"101":0,"102":0,"103":0.00493,"104":0,"105":0.00986,"106":0,"107":0.00493,"108":0.00986,"109":0.01479,"110":0.02466,"111":1.23275,"112":3.21008,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.01479,"14":0.08876,"15":0.02959,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.03452,"13.1":0.07397,"14.1":0.23669,"15.1":0.01972,"15.2-15.3":0.07397,"15.4":0.09369,"15.5":0.11834,"15.6":0.78896,"16.0":0.15286,"16.1":0.14793,"16.2":0.52269,"16.3":2.20909,"16.4":0.94182,"16.5":0.01479},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01128,"6.0-6.1":0.07899,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.36674,"10.0-10.2":0,"10.3":0.40624,"11.0-11.2":0.01128,"11.3-11.4":0.18055,"12.0-12.1":0,"12.2-12.5":2.36971,"13.0-13.1":0,"13.2":0.02257,"13.3":0.06206,"13.4-13.7":0.07899,"14.0-14.4":0.65449,"14.5-14.8":0.93096,"15.0-15.1":0.10156,"15.2-15.3":0.15798,"15.4":0.4683,"15.5":0.84068,"15.6":2.03682,"16.0":3.93823,"16.1":5.46726,"16.2":4.23162,"16.3":22.10036,"16.4":8.16421,"16.5":0.1072},P:{"4":0.3612,"20":3.07567,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0.01095,"10.1":0,"11.1-11.2":0,"12.0":0,"13.0":0,"14.0":0,"15.0":0,"16.0":0.01095,"17.0":0.01095,"18.0":0.07662,"19.0":0.16418},I:{"0":0,"3":0,"4":0.04316,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.24818},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.72979,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.20783},Q:{"13.1":0},O:{"0":0.00507},H:{"0":0.06719},L:{"0":19.12353}};
diff --git a/node_modules/caniuse-lite/data/regions/JM.js b/node_modules/caniuse-lite/data/regions/JM.js
new file mode 100644
index 0000000..1a3f19c
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/JM.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.00891,"74":0,"75":0,"76":0,"77":0,"78":0.00446,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.00446,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0.00446,"98":0,"99":0,"100":0,"101":0,"102":0.00446,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0.00446,"109":0.00446,"110":0.00446,"111":0.21839,"112":0.19165,"113":0.00446,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00446,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00446,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00446,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0.00446,"63":0,"64":0,"65":0,"66":0.01783,"67":0,"68":0.00446,"69":0.00446,"70":0,"71":0,"72":0,"73":0.02229,"74":0.00446,"75":0.01337,"76":0.0312,"77":0,"78":0,"79":0.04457,"80":0.00446,"81":0.00891,"83":0.12925,"84":0.00891,"85":0,"86":0.00446,"87":0.02229,"88":0.00446,"89":0.00446,"90":0,"91":0.00891,"92":0.01337,"93":0.12034,"94":0.17828,"95":0.00891,"96":0.00891,"97":0.01337,"98":0.01337,"99":0.00891,"100":0.00891,"101":0.00891,"102":0.01337,"103":0.26296,"104":0.00891,"105":0.0312,"106":0.02229,"107":0.01783,"108":0.05348,"109":0.45016,"110":0.18719,"111":4.74671,"112":4.91161,"113":0.01783,"114":0.01337,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.00446,"68":0.00446,"69":0.00891,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.00891,"96":0.11588,"97":0.29416,"98":0.00891,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00446,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00446,"93":0,"94":0.00446,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0.00446,"104":0,"105":0,"106":0,"107":0.00446,"108":0.00446,"109":0.01337,"110":0.04457,"111":0.70421,"112":1.33264,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00446,"14":0.00891,"15":0.00446,_:"0","3.1":0,"3.2":0,"5.1":0.00446,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.01337,"13.1":0.0312,"14.1":0.03566,"15.1":0.00446,"15.2-15.3":0.01783,"15.4":0.01783,"15.5":0.0312,"15.6":0.17828,"16.0":0.02229,"16.1":0.48136,"16.2":0.10697,"16.3":0.30753,"16.4":0.16045,"16.5":0},G:{"8":0.00528,"3.2":0,"4.0-4.1":0.00528,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.15303,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.10818,"10.0-10.2":0,"10.3":0.04749,"11.0-11.2":0.0686,"11.3-11.4":0.01055,"12.0-12.1":0.01319,"12.2-12.5":0.49867,"13.0-13.1":0,"13.2":0.00528,"13.3":0.01319,"13.4-13.7":0.09498,"14.0-14.4":0.17942,"14.5-14.8":0.38785,"15.0-15.1":0.1029,"15.2-15.3":0.17414,"15.4":0.21108,"15.5":0.25857,"15.6":0.86805,"16.0":1.89178,"16.1":2.74664,"16.2":1.9208,"16.3":9.08686,"16.4":4.40095,"16.5":0.15567},P:{"4":0.31579,"20":3.17892,"5.0-5.4":0.02105,"6.2-6.4":0,"7.2-7.4":0.25263,"8.2":0,"9.2":0.01053,"10.1":0,"11.1-11.2":0.03158,"12.0":0,"13.0":0.0421,"14.0":0.03158,"15.0":0.01053,"16.0":0.07368,"17.0":0.05263,"18.0":0.06316,"19.0":0.18947},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.09664,"4.4":0,"4.4.3-4.4.4":0.67648},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0.00446,"11":0.00891,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.10532},Q:{"13.1":0},O:{"0":0.29932},H:{"0":0.15743},L:{"0":52.75073}};
diff --git a/node_modules/caniuse-lite/data/regions/JO.js b/node_modules/caniuse-lite/data/regions/JO.js
new file mode 100644
index 0000000..822c1f9
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/JO.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00296,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00296,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.01481,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0.00296,"81":0.00296,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00592,"103":0,"104":0.00296,"105":0,"106":0,"107":0.00296,"108":0.00296,"109":0.00296,"110":0.01777,"111":0.15101,"112":0.11844,"113":0.00296,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00592,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0.00592,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.00296,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00296,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00296,"64":0,"65":0.00296,"66":0.00296,"67":0,"68":0,"69":0,"70":0,"71":0.00296,"72":0,"73":0,"74":0.00296,"75":0,"76":0,"77":0,"78":0.00592,"79":0.00592,"80":0.00296,"81":0.00296,"83":0.00592,"84":0.00296,"85":0.01481,"86":0.00592,"87":0.00592,"88":0.01481,"89":0.00592,"90":0.00296,"91":0.00296,"92":0.00592,"93":0.00296,"94":0.0533,"95":0.00296,"96":0.00592,"97":0.00296,"98":0.00592,"99":0.03257,"100":0.00592,"101":0.00296,"102":0.00592,"103":0.00888,"104":0.00592,"105":0.01184,"106":0.00888,"107":0.01481,"108":0.02369,"109":0.60701,"110":0.06218,"111":1.90392,"112":2.20595,"113":0.00592,"114":0.00296,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.00296,"68":0,"69":0.00296,"70":0.00296,"71":0,"72":0,"73":0.00296,"74":0.00592,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0.00296,"83":0.00296,"84":0.00296,"85":0,"86":0.00592,"87":0,"88":0,"89":0,"90":0.00296,"91":0.00296,"92":0.00296,"93":0.01481,"94":0.00888,"95":0.00888,"96":0.06218,"97":0.0681,"98":0.00296,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00296,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0.00296,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00296,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0.00296,"108":0.00296,"109":0.00888,"110":0.01777,"111":0.20135,"112":0.4175,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00888,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.02369,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.01481,"14.1":0.03553,"15.1":0,"15.2-15.3":0.00296,"15.4":0.00592,"15.5":0.02665,"15.6":0.05626,"16.0":0.00888,"16.1":0.02369,"16.2":0.04145,"16.3":0.11548,"16.4":0.06514,"16.5":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.002,"6.0-6.1":0,"7.0-7.1":0.02203,"8.1-8.4":0.002,"9.0-9.2":0,"9.3":0.05206,"10.0-10.2":0,"10.3":0.0821,"11.0-11.2":0.00601,"11.3-11.4":0.004,"12.0-12.1":0.01001,"12.2-12.5":0.48456,"13.0-13.1":0.004,"13.2":0,"13.3":0.03003,"13.4-13.7":0.07809,"14.0-14.4":0.36442,"14.5-14.8":0.4285,"15.0-15.1":0.09811,"15.2-15.3":0.1742,"15.4":0.17621,"15.5":0.36042,"15.6":0.88303,"16.0":1.62589,"16.1":1.83614,"16.2":1.15334,"16.3":6.32737,"16.4":3.91857,"16.5":0.08009},P:{"4":0.04089,"20":2.63724,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.11244,"8.2":0,"9.2":0.01022,"10.1":0,"11.1-11.2":0.06133,"12.0":0.01022,"13.0":0.05111,"14.0":0.05111,"15.0":0.08177,"16.0":0.10222,"17.0":0.08177,"18.0":0.07155,"19.0":0.20444},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.04682,"4.4":0,"4.4.3-4.4.4":0.14983},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.02073,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.21821},Q:{"13.1":0},O:{"0":0.26044},H:{"0":0.18659},L:{"0":69.20093}};
diff --git a/node_modules/caniuse-lite/data/regions/JP.js b/node_modules/caniuse-lite/data/regions/JP.js
new file mode 100644
index 0000000..3ec4da8
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/JP.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.00604,"49":0,"50":0,"51":0,"52":0.01812,"53":0,"54":0,"55":0,"56":0.00604,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00604,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.01812,"79":0,"80":0,"81":0,"82":0,"83":0.00604,"84":0,"85":0,"86":0,"87":0,"88":0.00604,"89":0,"90":0,"91":0.00604,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.00604,"102":0.04831,"103":0.00604,"104":0.00604,"105":0.00604,"106":0.01208,"107":0.00604,"108":0.01208,"109":0.01208,"110":0.02416,"111":0.86358,"112":0.80319,"113":0.00604,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0.01208,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.00604,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.04831,"50":0,"51":0,"52":0.00604,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00604,"66":0,"67":0.00604,"68":0,"69":0.00604,"70":0.00604,"71":0.00604,"72":0,"73":0.02416,"74":0.00604,"75":0.00604,"76":0,"77":0,"78":0.01208,"79":0.01208,"80":0.01208,"81":0.10266,"83":0.04227,"84":0.01208,"85":0.01208,"86":0.02416,"87":0.02416,"88":0.00604,"89":0.01812,"90":0.00604,"91":0.01208,"92":0.01208,"93":0.00604,"94":0.02416,"95":0.02416,"96":0.01812,"97":0.01812,"98":0.02416,"99":0.02416,"100":0.01812,"101":0.01812,"102":0.0302,"103":0.07851,"104":0.01812,"105":0.0302,"106":0.05435,"107":0.04227,"108":0.11474,"109":0.79111,"110":0.2476,"111":6.31076,"112":8.87733,"113":0.01812,"114":0.00604,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00604,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.00604,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.01208,"96":0.02416,"97":0.12682,"98":0.00604,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0.00604,"18":0.00604,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00604,"92":0.00604,"93":0,"94":0,"95":0,"96":0,"97":0.00604,"98":0.00604,"99":0.00604,"100":0.00604,"101":0.00604,"102":0.00604,"103":0.00604,"104":0.00604,"105":0.00604,"106":0.01208,"107":0.01208,"108":0.03623,"109":0.2476,"110":0.1087,"111":2.18008,"112":5.53172,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.01208,"14":0.04831,"15":0.01208,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.01208,"13.1":0.06643,"14.1":0.12682,"15.1":0.01812,"15.2-15.3":0.01208,"15.4":0.04227,"15.5":0.06039,"15.6":0.31403,"16.0":0.04227,"16.1":0.09059,"16.2":0.15701,"16.3":0.78507,"16.4":0.36838,"16.5":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.07579,"8.1-8.4":0.08917,"9.0-9.2":0.04012,"9.3":0.17387,"10.0-10.2":0.01783,"10.3":0.09808,"11.0-11.2":0.08025,"11.3-11.4":0.04458,"12.0-12.1":0.04904,"12.2-12.5":0.49041,"13.0-13.1":0.07133,"13.2":0.01783,"13.3":0.0535,"13.4-13.7":0.18725,"14.0-14.4":0.63754,"14.5-14.8":1.34195,"15.0-15.1":0.32546,"15.2-15.3":0.42354,"15.4":0.54391,"15.5":0.84262,"15.6":2.51448,"16.0":1.7967,"16.1":5.43467,"16.2":3.12081,"16.3":16.81227,"16.4":6.97725,"16.5":0.04458},P:{"4":0,"20":0.84042,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.01051,"12.0":0,"13.0":0.02101,"14.0":0.01051,"15.0":0,"16.0":0.02101,"17.0":0.01051,"18.0":0.01051,"19.0":0.04202},I:{"0":0,"3":0,"4":0.04977,"2.1":0,"2.2":0,"2.3":0,"4.1":0.02489,"4.2-4.3":0.1742,"4.4":0,"4.4.3-4.4.4":0.21568},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00815,"9":0.02446,"10":0,"11":0.2935,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.35649},Q:{"13.1":0.02377},O:{"0":0.2535},H:{"0":0.105},L:{"0":23.87313}};
diff --git a/node_modules/caniuse-lite/data/regions/KE.js b/node_modules/caniuse-lite/data/regions/KE.js
new file mode 100644
index 0000000..7f94b31
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/KE.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00281,"48":0,"49":0,"50":0,"51":0,"52":0.00281,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00281,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00281,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.00281,"102":0.00561,"103":0.00281,"104":0,"105":0,"106":0,"107":0.00281,"108":0.00281,"109":0.00561,"110":0.01403,"111":0.20477,"112":0.20196,"113":0.01403,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00281,"50":0,"51":0,"52":0,"53":0,"54":0.00281,"55":0,"56":0.00281,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0.00281,"63":0,"64":0,"65":0,"66":0.00281,"67":0,"68":0,"69":0.00281,"70":0.00281,"71":0,"72":0.00561,"73":0.00281,"74":0.00842,"75":0,"76":0,"77":0,"78":0.00281,"79":0.01403,"80":0.00281,"81":0.00281,"83":0.01122,"84":0,"85":0.00281,"86":0.00281,"87":0.00561,"88":0.00281,"89":0.00561,"90":0.00281,"91":0.00281,"92":0.00281,"93":0.0561,"94":0.00281,"95":0.00842,"96":0.00561,"97":0.00281,"98":0.00561,"99":0.00842,"100":0.00281,"101":0.00561,"102":0.00561,"103":0.02525,"104":0.00561,"105":0.00561,"106":0.00842,"107":0.01403,"108":0.0561,"109":0.43197,"110":0.0561,"111":1.47263,"112":1.79801,"113":0.00842,"114":0.00281,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0.00281,"25":0,"26":0.00561,"27":0.00842,"28":0.01122,"29":0,"30":0.02244,"31":0.00281,"32":0.00561,"33":0.00561,"34":0,"35":0,"36":0,"37":0.00561,"38":0.00281,"39":0,"40":0,"41":0,"42":0.00281,"43":0,"44":0,"45":0.00281,"46":0.00561,"47":0.00281,"48":0,"49":0,"50":0.00281,"51":0.00561,"52":0,"53":0,"54":0.01122,"55":0.00561,"56":0.00281,"57":0.00281,"58":0.01683,"60":0.07854,"62":0.00281,"63":0.14867,"64":0.19074,"65":0.1094,"66":0.35063,"67":0.7826,"68":1.04066,"69":1.35762,"70":0.00561,"71":0,"72":0.01683,"73":0.00842,"74":0.07574,"75":0.02244,"76":0,"77":0,"78":0,"79":0.00281,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0.00561,"95":0.00842,"96":0.01683,"97":0.10379,"98":0.00561,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.01964},B:{"12":0.00281,"13":0.00281,"14":0,"15":0,"16":0,"17":0,"18":0.00281,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00561,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00561,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0.00281,"108":0.00281,"109":0.00842,"110":0.01403,"111":0.11781,"112":0.25245,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00281,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.00281,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00281,"13.1":0.00842,"14.1":0.00842,"15.1":0.00281,"15.2-15.3":0,"15.4":0.00281,"15.5":0.00281,"15.6":0.01683,"16.0":0.00281,"16.1":0.00561,"16.2":0.00842,"16.3":0.03086,"16.4":0.01403,"16.5":0},G:{"8":0.00223,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00382,"6.0-6.1":0.00286,"7.0-7.1":0.03561,"8.1-8.4":0.00032,"9.0-9.2":0.00191,"9.3":0.02512,"10.0-10.2":0.00032,"10.3":0.01717,"11.0-11.2":0.00286,"11.3-11.4":0.00191,"12.0-12.1":0.00477,"12.2-12.5":0.18284,"13.0-13.1":0.00318,"13.2":0.00064,"13.3":0.01018,"13.4-13.7":0.0353,"14.0-14.4":0.05406,"14.5-14.8":0.06614,"15.0-15.1":0.02608,"15.2-15.3":0.03784,"15.4":0.03975,"15.5":0.08013,"15.6":0.13483,"16.0":0.17458,"16.1":0.33612,"16.2":0.21115,"16.3":0.86366,"16.4":0.41275,"16.5":0.01177},P:{"4":0.17439,"20":0.55394,"5.0-5.4":0.01026,"6.2-6.4":0,"7.2-7.4":0.09232,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.05129,"12.0":0,"13.0":0.01026,"14.0":0.01026,"15.0":0.01026,"16.0":0.03077,"17.0":0.01026,"18.0":0.02052,"19.0":0.06155},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00792,"4.4":0,"4.4.3-4.4.4":0.08452},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01403,"5.5":0},S:{"2.5":0.02159,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.10793},Q:{"13.1":0.0072},O:{"0":0.18707},H:{"0":32.61471},L:{"0":45.63018}};
diff --git a/node_modules/caniuse-lite/data/regions/KG.js b/node_modules/caniuse-lite/data/regions/KG.js
new file mode 100644
index 0000000..89e8b72
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/KG.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00525,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00525,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00525,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00525,"99":0,"100":0,"101":0,"102":0.03148,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0.02098,"111":0.17836,"112":0.1364,"113":0,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.01049,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.00525,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00525,"80":0.00525,"81":0.01049,"83":0.00525,"84":0.00525,"85":0.00525,"86":0,"87":0.01574,"88":0.00525,"89":0.01049,"90":0.00525,"91":0,"92":0.01574,"93":0,"94":3.23678,"95":0.01574,"96":0.00525,"97":0.01574,"98":0.00525,"99":0.00525,"100":0.02623,"101":0.03148,"102":0.01574,"103":0.02098,"104":0.01574,"105":0.00525,"106":0.02098,"107":0.01574,"108":0.05771,"109":1.0492,"110":0.09443,"111":15.87964,"112":2.2348,"113":0,"114":0,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.02098,"69":0.04197,"70":0,"71":0,"72":0,"73":0,"74":0.00525,"75":0,"76":0,"77":0,"78":0,"79":0.01049,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.0682,"86":0,"87":0,"88":0,"89":0,"90":0.01049,"91":0,"92":0,"93":0,"94":0,"95":0.10492,"96":0.05771,"97":0.35673,"98":0.01574,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.01049,"16":0,"17":0,"18":0.00525,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00525,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0.00525,"110":0.01574,"111":0.11541,"112":0.29902,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.04197,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00525,"14.1":0.01049,"15.1":0.00525,"15.2-15.3":0,"15.4":0.00525,"15.5":0.01049,"15.6":0.05246,"16.0":0.01574,"16.1":0.02623,"16.2":0.03148,"16.3":0.09443,"16.4":0.06295,"16.5":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00283,"8.1-8.4":0.00283,"9.0-9.2":0.00425,"9.3":0.02123,"10.0-10.2":0,"10.3":0.01274,"11.0-11.2":0.00991,"11.3-11.4":0,"12.0-12.1":0.00566,"12.2-12.5":0.2194,"13.0-13.1":0.00283,"13.2":0.00849,"13.3":0.01982,"13.4-13.7":0.03397,"14.0-14.4":0.2378,"14.5-14.8":0.46852,"15.0-15.1":0.19675,"15.2-15.3":0.2378,"15.4":0.20241,"15.5":0.50532,"15.6":0.59025,"16.0":1.72262,"16.1":1.88256,"16.2":1.24277,"16.3":3.45655,"16.4":2.03543,"16.5":0.03539},P:{"4":0.1236,"20":0.84463,"5.0-5.4":0.0103,"6.2-6.4":0.0309,"7.2-7.4":0.15451,"8.2":0,"9.2":0.0206,"10.1":0,"11.1-11.2":0.0309,"12.0":0.0103,"13.0":0.0309,"14.0":0.0309,"15.0":0.0206,"16.0":0.0721,"17.0":0.0515,"18.0":0.0824,"19.0":0.21631},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00794,"4.4":0,"4.4.3-4.4.4":0.0278},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0.00734,"11":0.02938,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.02852},Q:{"13.1":0.00475},O:{"0":0.42786},H:{"0":0.37807},L:{"0":56.40783}};
diff --git a/node_modules/caniuse-lite/data/regions/KH.js b/node_modules/caniuse-lite/data/regions/KH.js
new file mode 100644
index 0000000..b1bc2ec
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/KH.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0.00397,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0.00397,"51":0.00397,"52":0.00794,"53":0,"54":0,"55":0,"56":0.00397,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0.00397,"76":0,"77":0,"78":0.00794,"79":0.00397,"80":0.00794,"81":0.00794,"82":0.00397,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00397,"90":0,"91":0.01589,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00397,"103":0.00397,"104":0.00397,"105":0.00397,"106":0.00397,"107":0.00794,"108":0.00794,"109":0.00794,"110":0.01589,"111":0.30584,"112":0.30982,"113":0.00794,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.00397,"38":0.00397,"39":0.00794,"40":0,"41":0.00397,"42":0.00397,"43":0,"44":0,"45":0,"46":0,"47":0.00397,"48":0,"49":0.00397,"50":0,"51":0,"52":0,"53":0.00397,"54":0,"55":0,"56":0.02383,"57":0.00397,"58":0.00397,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00397,"66":0,"67":0,"68":0,"69":0,"70":0.00397,"71":0,"72":0.00397,"73":0.00397,"74":0.00397,"75":0.04766,"76":0.00397,"77":0,"78":0.01192,"79":0.03178,"80":0.00794,"81":0.00397,"83":0.02383,"84":0.03575,"85":0.06752,"86":0.03575,"87":0.03178,"88":0.00397,"89":0.00397,"90":0.00397,"91":0.00794,"92":0.00397,"93":0,"94":0.03575,"95":0.00397,"96":0.01589,"97":0.00794,"98":0.00397,"99":0.03972,"100":0.01192,"101":0.00794,"102":0.00794,"103":0.06355,"104":0.01192,"105":0.0278,"106":0.04766,"107":0.04369,"108":0.07944,"109":0.40912,"110":0.08738,"111":3.66616,"112":5.06033,"113":0.01192,"114":0.01192,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0.00397,"33":0,"34":0,"35":0,"36":0,"37":0.01192,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0.00397,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0.00397,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.01986,"69":0.0278,"70":0.00397,"71":0.00794,"72":0.00397,"73":0,"74":0.00794,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.00794,"96":0.06355,"97":0.44884,"98":0.00794,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00397,"13":0,"14":0.00397,"15":0,"16":0,"17":0,"18":0.00794,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0.00397,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00397,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00397,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0.00397,"107":0,"108":0.00794,"109":0.00397,"110":0.01589,"111":0.20654,"112":0.425,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0.00397,"11":0,"12":0,"13":0.01192,"14":0.03575,"15":0.01192,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00397,"13.1":0.03575,"14.1":0.06752,"15.1":0.01589,"15.2-15.3":0.01192,"15.4":0.03178,"15.5":0.05561,"15.6":0.18271,"16.0":0.01986,"16.1":0.06752,"16.2":0.0715,"16.3":0.35748,"16.4":0.11519,"16.5":0.00397},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.01937,"8.1-8.4":0.00387,"9.0-9.2":0.01162,"9.3":0.12395,"10.0-10.2":0.06972,"10.3":0.06585,"11.0-11.2":0.01549,"11.3-11.4":0.07359,"12.0-12.1":0.03486,"12.2-12.5":1.52998,"13.0-13.1":0.06972,"13.2":0.01937,"13.3":0.1162,"13.4-13.7":0.33698,"14.0-14.4":1.13877,"14.5-14.8":1.91731,"15.0-15.1":0.61974,"15.2-15.3":0.5965,"15.4":0.90249,"15.5":1.21236,"15.6":2.89727,"16.0":3.23813,"16.1":3.90822,"16.2":2.74621,"16.3":9.88481,"16.4":3.83462,"16.5":0.13557},P:{"4":0.14332,"20":1.38206,"5.0-5.4":0.02047,"6.2-6.4":0,"7.2-7.4":0.01024,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0,"12.0":0.01024,"13.0":0.02047,"14.0":0,"15.0":0.01024,"16.0":0.02047,"17.0":0.02047,"18.0":0.03071,"19.0":0.11261},I:{"0":0,"3":0,"4":0.00339,"2.1":0,"2.2":0,"2.3":0.00339,"4.1":0,"4.2-4.3":0.02372,"4.4":0,"4.4.3-4.4.4":0.04744},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.01768,"9":0.00442,"10":0.00442,"11":0.28727,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.22304},Q:{"13.1":0.00603},O:{"0":1.04887},H:{"0":0.65059},L:{"0":44.91358}};
diff --git a/node_modules/caniuse-lite/data/regions/KI.js b/node_modules/caniuse-lite/data/regions/KI.js
new file mode 100644
index 0000000..84a1931
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/KI.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00387,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0.00387,"55":0,"56":0.09298,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0.01162,"110":0.03874,"111":0.13559,"112":0.06586,"113":0,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.01162,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.0155,"64":0,"65":0,"66":0,"67":0.01162,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0.04649,"75":0,"76":0,"77":0.0155,"78":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00387,"89":0,"90":0,"91":0,"92":0.01162,"93":0.02712,"94":0,"95":0,"96":0,"97":0.02712,"98":0.04261,"99":0,"100":0,"101":0,"102":0.23631,"103":0.01162,"104":0.0155,"105":0,"106":0,"107":0.00387,"108":0.01162,"109":0.02324,"110":0.12784,"111":2.4135,"112":1.90601,"113":0,"114":0,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.00387,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.0155,"68":0.0155,"69":0.04649,"70":0,"71":0,"72":0,"73":0,"74":0.03099,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.00387,"96":0,"97":0.0155,"98":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.04261,"79":0,"80":0.01162,"81":0,"83":0,"84":0.01162,"85":0.0155,"86":0.03099,"87":0,"88":0,"89":0.01162,"90":0.00387,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00387,"101":0,"102":0,"103":0,"104":0,"105":0.01162,"106":0.01162,"107":0.08523,"108":0.01162,"109":0.02712,"110":0.13946,"111":0.79417,"112":0.5966,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0,"14.1":0,"15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0.02324,"15.6":0.07361,"16.0":0.04649,"16.1":0.21694,"16.2":0.26343,"16.3":1.70456,"16.4":0.84841,"16.5":0.00387},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0.01919,"9.3":0,"10.0-10.2":0,"10.3":0,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":0.25052,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0.01919,"14.0-14.4":0.13435,"14.5-14.8":0.19294,"15.0-15.1":0.03839,"15.2-15.3":0.01919,"15.4":0.3273,"15.5":0.3475,"15.6":0.05758,"16.0":0.42428,"16.1":1.98601,"16.2":0.69399,"16.3":4.29932,"16.4":0.86774,"16.5":0},P:{"4":0.0805,"20":0.25157,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":1.90184,"8.2":0,"9.2":0.26163,"10.1":0,"11.1-11.2":0,"12.0":0,"13.0":0,"14.0":0.0805,"15.0":0.10063,"16.0":0.03019,"17.0":0,"18.0":0.11069,"19.0":0.11069},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.42639,"4.4":0,"4.4.3-4.4.4":0},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.05811,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.08576},Q:{"13.1":0},O:{"0":0.96178},H:{"0":0.46398},L:{"0":73.1529}};
diff --git a/node_modules/caniuse-lite/data/regions/KM.js b/node_modules/caniuse-lite/data/regions/KM.js
new file mode 100644
index 0000000..88b525c
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/KM.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0.00233,"51":0,"52":0.00465,"53":0,"54":0,"55":0.00465,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0.00233,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0.00233,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00233,"103":0.00233,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0.00233,"110":0.00233,"111":0.15824,"112":0.07214,"113":0.00233,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0.00931,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.00233,"44":0.00233,"45":0,"46":0,"47":0,"48":0,"49":0.00233,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.00233,"56":0,"57":0,"58":0,"59":0,"60":0.00465,"61":0,"62":0,"63":0,"64":0,"65":0.00698,"66":0,"67":0,"68":0,"69":0.00233,"70":0.00233,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0.00233,"81":0.01164,"83":0.00233,"84":0.00233,"85":0,"86":0.00465,"87":0.04189,"88":0.00233,"89":0.01396,"90":0,"91":0,"92":0.00698,"93":0,"94":0.00465,"95":0.00465,"96":0.00465,"97":0,"98":0,"99":0.02094,"100":0,"101":0.01629,"102":0.00698,"103":0.07214,"104":0.01396,"105":0.00233,"106":0.00233,"107":0.00465,"108":0.03723,"109":0.34672,"110":0.01396,"111":0.65854,"112":0.71206,"113":0,"114":0,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0.00698,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.00233,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00233,"60":0,"62":0,"63":0,"64":0,"65":0.00233,"66":0,"67":0,"68":0.03025,"69":0.01629,"70":0,"71":0,"72":0,"73":0,"74":0.00233,"75":0,"76":0,"77":0,"78":0,"79":0.00465,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0.00233,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0.02792,"95":0.00931,"96":0.03491,"97":0.08145,"98":0.00465,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00465,"13":0.00698,"14":0.00233,"15":0,"16":0,"17":0,"18":0.00233,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0.00233,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00698,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0.00233,"107":0.01629,"108":0.01396,"109":0,"110":0.01629,"111":0.07214,"112":0.12799,"113":0.00233},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00233,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.00233,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00465,"13.1":0.00931,"14.1":0.00233,"15.1":0,"15.2-15.3":0,"15.4":0.00233,"15.5":0,"15.6":0.00233,"16.0":0,"16.1":0,"16.2":0.00233,"16.3":0.00698,"16.4":0.08377,"16.5":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.02039,"8.1-8.4":0,"9.0-9.2":0,"9.3":0,"10.0-10.2":0,"10.3":0.0034,"11.0-11.2":0.0068,"11.3-11.4":0,"12.0-12.1":0.13934,"12.2-12.5":1.05867,"13.0-13.1":0,"13.2":0.0068,"13.3":0.04418,"13.4-13.7":0.01359,"14.0-14.4":2.42492,"14.5-14.8":2.76818,"15.0-15.1":0.15634,"15.2-15.3":0.4945,"15.4":0.46051,"15.5":0.28039,"15.6":0.38574,"16.0":0.35855,"16.1":0.57777,"16.2":0.88024,"16.3":2.15473,"16.4":1.2405,"16.5":0},P:{"4":0.08043,"20":0.55293,"5.0-5.4":0.03016,"6.2-6.4":0.01005,"7.2-7.4":0.18096,"8.2":0,"9.2":0.06032,"10.1":0,"11.1-11.2":0.24128,"12.0":0.01005,"13.0":0.01005,"14.0":0.56298,"15.0":0,"16.0":0.06032,"17.0":0.26138,"18.0":0.16085,"19.0":0.24128},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00427,"4.2-4.3":0.00374,"4.4":0,"4.4.3-4.4.4":0.0406},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00233,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.03837},Q:{"13.1":0.04604},O:{"0":0.09975},H:{"0":0.51577},L:{"0":79.62238}};
diff --git a/node_modules/caniuse-lite/data/regions/KN.js b/node_modules/caniuse-lite/data/regions/KN.js
new file mode 100644
index 0000000..04a09f8
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/KN.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.02558,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00512,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00512,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0.01023,"110":0.1023,"111":0.32736,"112":0.21483,"113":0,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01023,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0.01535,"72":0,"73":0,"74":0.00512,"75":0.00512,"76":0.02046,"77":0,"78":0,"79":0.11253,"80":0,"81":0.00512,"83":0.03069,"84":0,"85":0,"86":0,"87":0.00512,"88":0,"89":0,"90":0,"91":0.00512,"92":0,"93":0.01023,"94":0,"95":0,"96":0.05115,"97":0,"98":0.02046,"99":0,"100":0.00512,"101":0,"102":0,"103":0.08184,"104":0,"105":0.09207,"106":0.00512,"107":0.03581,"108":0.03581,"109":0.63938,"110":0.36317,"111":6.16869,"112":5.46282,"113":0.01023,"114":0,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00512,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.00512,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.00512,"96":0.07161,"97":0.14322,"98":0.01023,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00512,"79":0,"80":0,"81":0,"83":0,"84":0.00512,"85":0.00512,"86":0,"87":0,"88":0,"89":0,"90":0.00512,"91":0,"92":0.00512,"93":0,"94":0,"95":0,"96":0,"97":0.00512,"98":0,"99":0.00512,"100":0,"101":0,"102":0.00512,"103":0.00512,"104":0,"105":0,"106":0,"107":0,"108":0.00512,"109":0.04092,"110":0.23529,"111":1.83629,"112":3.2736,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.02558,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.02046,"13.1":0.03069,"14.1":0.2046,"15.1":0.01535,"15.2-15.3":0.01023,"15.4":0.04092,"15.5":0.03069,"15.6":0.2711,"16.0":0.02558,"16.1":0.09207,"16.2":0.15345,"16.3":0.72633,"16.4":0.23529,"16.5":0.00512},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.06501,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00271,"10.0-10.2":0,"10.3":0.12189,"11.0-11.2":0.02709,"11.3-11.4":0,"12.0-12.1":0.01896,"12.2-12.5":0.27086,"13.0-13.1":0.00542,"13.2":0,"13.3":0.04334,"13.4-13.7":0.03792,"14.0-14.4":0.06772,"14.5-14.8":0.20586,"15.0-15.1":0.03792,"15.2-15.3":0.04334,"15.4":0.13543,"15.5":0.19773,"15.6":1.56018,"16.0":1.19722,"16.1":2.50007,"16.2":1.43558,"16.3":12.6683,"16.4":4.22818,"16.5":0.12731},P:{"4":0.40211,"20":2.82533,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.1164,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.01058,"12.0":0,"13.0":0.01058,"14.0":0.01058,"15.0":0,"16.0":0.01058,"17.0":0.07407,"18.0":0.02116,"19.0":0.07407},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.09829,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.86827},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.05627,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.10747},Q:{"13.1":0.00489},O:{"0":0.13678},H:{"0":1.44756},L:{"0":43.99659}};
diff --git a/node_modules/caniuse-lite/data/regions/KP.js b/node_modules/caniuse-lite/data/regions/KP.js
new file mode 100644
index 0000000..244eedb
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/KP.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.14512,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0.38326,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.09675,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0,"111":0.14512,"112":0.04837,"113":0,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.04837,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0.09675,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":4.1824,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.14512,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0.6735,"110":0,"111":1.73027,"112":1.63352,"113":0,"114":0,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.38326,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0.14512,"110":0,"111":0,"112":0,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0,"14.1":0,"15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0,"15.6":0.04837,"16.0":0.04837,"16.1":0,"16.2":0.04837,"16.3":0.14512,"16.4":0.24187,"16.5":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0,"10.0-10.2":0,"10.3":0,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":0,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0,"14.0-14.4":0,"14.5-14.8":0,"15.0-15.1":0,"15.2-15.3":0,"15.4":0,"15.5":18.08379,"15.6":0.17924,"16.0":0.29873,"16.1":2.50658,"16.2":0.59745,"16.3":2.9248,"16.4":1.90913,"16.5":0.05975},P:{"4":0,"20":0,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0,"12.0":0,"13.0":0,"14.0":0,"15.0":0,"16.0":0,"17.0":0,"18.0":0,"19.0":0},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0},Q:{"13.1":0},O:{"0":39.14957},H:{"0":0},L:{"0":5.93207}};
diff --git a/node_modules/caniuse-lite/data/regions/KR.js b/node_modules/caniuse-lite/data/regions/KR.js
new file mode 100644
index 0000000..8bca6ce
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/KR.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00365,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00365,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0.00365,"110":0.00365,"111":0.1168,"112":0.0803,"113":0,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0.0073,"43":0,"44":0.00365,"45":0,"46":0,"47":0,"48":0,"49":0.00365,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00365,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0.04745,"78":0,"79":0.00365,"80":0.00365,"81":0.01095,"83":0.0073,"84":0.0073,"85":0.0073,"86":0.01095,"87":0.01095,"88":0,"89":0.00365,"90":0.07665,"91":0.01825,"92":0,"93":0,"94":0.0073,"95":0,"96":0.00365,"97":0.00365,"98":0.00365,"99":0.0073,"100":0.0073,"101":0.01095,"102":0.01095,"103":0.0146,"104":0.01095,"105":0.0073,"106":0.01095,"107":0.0219,"108":0.0365,"109":0.3942,"110":0.05475,"111":3.08425,"112":3.96025,"113":0.00365,"114":0.00365,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00365,"69":0.00365,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0.00365,"97":0.0365,"98":0.00365,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00365,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00365,"92":0.00365,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0.00365,"104":0.0073,"105":0.00365,"106":0.0073,"107":0.0073,"108":0.01095,"109":0.0511,"110":0.0292,"111":0.584,"112":1.4089,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0.00365,"9":0,"10":0,"11":0,"12":0,"13":0.00365,"14":0.0073,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00365,"13.1":0.0073,"14.1":0.01095,"15.1":0,"15.2-15.3":0.00365,"15.4":0.0219,"15.5":0.0073,"15.6":0.0365,"16.0":0.0073,"16.1":0.0219,"16.2":0.02555,"16.3":0.146,"16.4":0.0803,"16.5":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00773,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0.01289,"9.0-9.2":0.00258,"9.3":0.00258,"10.0-10.2":0,"10.3":0,"11.0-11.2":0.00773,"11.3-11.4":0,"12.0-12.1":0.00516,"12.2-12.5":0.07475,"13.0-13.1":0.1495,"13.2":0.00258,"13.3":0.01804,"13.4-13.7":0.03351,"14.0-14.4":0.14434,"14.5-14.8":0.36859,"15.0-15.1":0.10052,"15.2-15.3":0.14176,"15.4":0.17012,"15.5":0.33765,"15.6":0.93306,"16.0":2.09037,"16.1":3.2219,"16.2":1.95634,"16.3":10.33843,"16.4":5.02358,"16.5":0.10826},P:{"4":0.01009,"20":14.66436,"5.0-5.4":0.02018,"6.2-6.4":0,"7.2-7.4":0.01009,"8.2":0.01009,"9.2":0.01009,"10.1":0.01009,"11.1-11.2":0.03028,"12.0":0,"13.0":0.03028,"14.0":0.03028,"15.0":0.02018,"16.0":0.07065,"17.0":0.08074,"18.0":0.19176,"19.0":0.51472},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.18015},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00402,"9":0,"10":0,"11":0.07629,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.127},Q:{"13.1":0.00635},O:{"0":0.0762},H:{"0":0.16232},L:{"0":31.01645}};
diff --git a/node_modules/caniuse-lite/data/regions/KW.js b/node_modules/caniuse-lite/data/regions/KW.js
new file mode 100644
index 0000000..7da6c51
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/KW.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00289,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.04906,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00289,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00866,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0.00577,"110":0.00577,"111":0.1039,"112":0.08369,"113":0,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00866,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00289,"48":0,"49":0.00289,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00289,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.00289,"65":0,"66":0,"67":0,"68":0.00577,"69":0,"70":0,"71":0,"72":0,"73":0.00289,"74":0,"75":0.00289,"76":0.00289,"77":0,"78":0.00577,"79":0.00577,"80":0.00577,"81":0.02309,"83":0.00289,"84":0,"85":0.00289,"86":0.00577,"87":0.00289,"88":0.00577,"89":0.00289,"90":0.00577,"91":0.00289,"92":0.00577,"93":0.00289,"94":0.00289,"95":0.00289,"96":0.00289,"97":0.00866,"98":0.00289,"99":0.02309,"100":0.00289,"101":0.00577,"102":0.00289,"103":0.0202,"104":0.00866,"105":0.00577,"106":0.00866,"107":0.01443,"108":0.01443,"109":0.25974,"110":0.07504,"111":1.80086,"112":2.29148,"113":0.00289,"114":0,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.01443,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.01154,"47":0,"48":0,"49":0,"50":0,"51":0.01732,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0.00289,"62":0,"63":0.00289,"64":0.00289,"65":0,"66":0.00289,"67":0.01443,"68":0.02597,"69":0.12698,"70":0,"71":0,"72":0,"73":0,"74":0.00577,"75":0.00289,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.00577,"96":0.07504,"97":0.17893,"98":0.00289,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00289,"79":0,"80":0,"81":0,"83":0,"84":0.00289,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0.00289,"106":0.00289,"107":0.00289,"108":0.00289,"109":0.01154,"110":0.01732,"111":0.27128,"112":0.46753,"113":0},E:{"4":0,"5":0,"6":0,"7":0.03463,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00289,"14":0.03175,"15":0.00866,_:"0","3.1":0,"3.2":0,"5.1":0.00289,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.01443,"14.1":0.08081,"15.1":0.01732,"15.2-15.3":0.00866,"15.4":0.04329,"15.5":0.0404,"15.6":0.14141,"16.0":0.01154,"16.1":0.0404,"16.2":0.05772,"16.3":0.28283,"16.4":0.1241,"16.5":0.00289},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.01655,"8.1-8.4":0.00414,"9.0-9.2":0,"9.3":0.07033,"10.0-10.2":0,"10.3":0.06619,"11.0-11.2":0.00414,"11.3-11.4":0.00414,"12.0-12.1":0.01655,"12.2-12.5":0.55021,"13.0-13.1":0.04964,"13.2":0.02896,"13.3":0.09515,"13.4-13.7":0.14066,"14.0-14.4":0.92667,"14.5-14.8":1.57617,"15.0-15.1":0.47161,"15.2-15.3":0.54607,"15.4":0.76533,"15.5":1.2328,"15.6":2.51111,"16.0":3.54534,"16.1":4.67472,"16.2":3.35918,"16.3":10.61947,"16.4":8.03803,"16.5":0.13652},P:{"4":0.1445,"20":3.29249,"5.0-5.4":0.01032,"6.2-6.4":0,"7.2-7.4":0.08257,"8.2":0,"9.2":0.01032,"10.1":0,"11.1-11.2":0.04129,"12.0":0.01032,"13.0":0.05161,"14.0":0.05161,"15.0":0.02064,"16.0":0.10321,"17.0":0.07225,"18.0":0.08257,"19.0":0.31996},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.0164,"4.4":0,"4.4.3-4.4.4":0.0738},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01732,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.08537},Q:{"13.1":0},O:{"0":2.24091},H:{"0":1.20558},L:{"0":42.01593}};
diff --git a/node_modules/caniuse-lite/data/regions/KY.js b/node_modules/caniuse-lite/data/regions/KY.js
new file mode 100644
index 0000000..59e71c7
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/KY.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.00521,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.2082,"93":0,"94":0.08328,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.01041,"103":0.00521,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0.02082,"111":0.49968,"112":0.35394,"113":0,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00521,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0.00521,"77":0,"78":0.03644,"79":0.03123,"80":0,"81":0,"83":0.00521,"84":0.00521,"85":0,"86":0,"87":0.00521,"88":0,"89":0,"90":0,"91":0.00521,"92":0.04685,"93":0,"94":0,"95":0,"96":0.00521,"97":0,"98":0.01041,"99":0,"100":0,"101":0,"102":0.02082,"103":0.13533,"104":0.00521,"105":0.03644,"106":0.00521,"107":0.02603,"108":0.04164,"109":0.46845,"110":0.35915,"111":7.08921,"112":7.30262,"113":0,"114":0,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00521,"90":0,"91":0,"92":0,"93":0.00521,"94":0,"95":0,"96":0.203,"97":0.4164,"98":0.01041,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0.00521,"107":0.01041,"108":0.01041,"109":0.04164,"110":0.03644,"111":1.03059,"112":2.20172,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.01041,"14":0.03644,"15":0.01041,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.01041,"13.1":0.13533,"14.1":0.19779,"15.1":0.02082,"15.2-15.3":0.02082,"15.4":0.07808,"15.5":0.03644,"15.6":0.6194,"16.0":0.03123,"16.1":0.22902,"16.2":0.17697,"16.3":1.6656,"16.4":0.70788,"16.5":0.00521},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.02938,"10.0-10.2":0,"10.3":0.06716,"11.0-11.2":0.01259,"11.3-11.4":0.00839,"12.0-12.1":0.03778,"12.2-12.5":0.1637,"13.0-13.1":0,"13.2":0,"13.3":0.01259,"13.4-13.7":0.03778,"14.0-14.4":0.14691,"14.5-14.8":0.36098,"15.0-15.1":0.14271,"15.2-15.3":0.22666,"15.4":0.18469,"15.5":0.67579,"15.6":3.33278,"16.0":2.61921,"16.1":3.94561,"16.2":2.53527,"16.3":17.85599,"16.4":6.87124,"16.5":0.22247},P:{"4":0.18704,"20":3.68884,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.20782,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.06235,"12.0":0,"13.0":0,"14.0":0,"15.0":0.01039,"16.0":0.02078,"17.0":0.05196,"18.0":0.02078,"19.0":0.03117},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.26505,"4.4":0,"4.4.3-4.4.4":0},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01041,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.13426},Q:{"13.1":0},O:{"0":0.08152},H:{"0":0.02724},L:{"0":28.27909}};
diff --git a/node_modules/caniuse-lite/data/regions/KZ.js b/node_modules/caniuse-lite/data/regions/KZ.js
new file mode 100644
index 0000000..e3db767
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/KZ.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0.00347,"51":0,"52":0.09372,"53":0,"54":0,"55":0,"56":0.00347,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.01041,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0.00347,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0.00347,"97":0,"98":0,"99":0,"100":0,"101":0.00347,"102":0.01041,"103":0,"104":0,"105":0.00347,"106":0,"107":0.00347,"108":0,"109":0.00347,"110":0.03471,"111":0.18049,"112":0.18396,"113":0,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0.00347,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0.00347,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.00347,"49":0.00694,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00347,"69":0.00347,"70":0.00347,"71":0.00347,"72":0.00347,"73":0.00347,"74":0.00694,"75":0.00347,"76":0.00347,"77":0.00347,"78":0.00347,"79":0.01041,"80":0.01041,"81":0.00694,"83":0.01041,"84":0.00694,"85":0.01388,"86":0.01388,"87":0.01388,"88":0.01041,"89":0.00694,"90":0.01041,"91":0.01388,"92":0.00347,"93":0,"94":0.07983,"95":0.00347,"96":0.00694,"97":0.01736,"98":0.01041,"99":0.00694,"100":0.01041,"101":0.01041,"102":0.01388,"103":0.02777,"104":0.00694,"105":0.02083,"106":0.07289,"107":0.0243,"108":0.05554,"109":1.18361,"110":0.12496,"111":1.90211,"112":2.18673,"113":0.00347,"114":0,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.01388,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0.00347,"75":0,"76":0,"77":0,"78":0,"79":0.00694,"80":0,"81":0,"82":0,"83":0,"84":0.00347,"85":0.02083,"86":0.00347,"87":0,"88":0,"89":0.00347,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.12843,"96":0.09025,"97":0.41652,"98":0.01388,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0.15967,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00347,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00347,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0.00347,"108":0.00347,"109":0.01388,"110":0.01388,"111":0.19785,"112":0.46859,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00694,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.02083,"6.1":0,"7.1":0,"9.1":0.02083,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00694,"14.1":0.01736,"15.1":0.01041,"15.2-15.3":0.00694,"15.4":0.01388,"15.5":0.01388,"15.6":0.06942,"16.0":0.00694,"16.1":0.04165,"16.2":0.04512,"16.3":0.14231,"16.4":0.07983,"16.5":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.02641,"10.0-10.2":0.00528,"10.3":0.02112,"11.0-11.2":0.02641,"11.3-11.4":0.00264,"12.0-12.1":0.01848,"12.2-12.5":0.34063,"13.0-13.1":0.01056,"13.2":0.01056,"13.3":0.08186,"13.4-13.7":0.10034,"14.0-14.4":0.47002,"14.5-14.8":0.808,"15.0-15.1":0.24293,"15.2-15.3":0.34327,"15.4":0.53075,"15.5":0.88986,"15.6":1.54999,"16.0":3.7258,"16.1":3.62281,"16.2":2.36856,"16.3":6.58549,"16.4":3.17392,"16.5":0.06337},P:{"4":0.10188,"20":2.16997,"5.0-5.4":0,"6.2-6.4":0.01019,"7.2-7.4":0.25469,"8.2":0,"9.2":0.01019,"10.1":0,"11.1-11.2":0.05094,"12.0":0.02038,"13.0":0.03056,"14.0":0.05094,"15.0":0.02038,"16.0":0.10188,"17.0":0.07131,"18.0":0.13244,"19.0":0.26488},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0038,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.02661},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00347,"9":0,"10":0,"11":0.02083,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.05223},Q:{"13.1":0},O:{"0":0.43744},H:{"0":0.27197},L:{"0":57.61005}};
diff --git a/node_modules/caniuse-lite/data/regions/LA.js b/node_modules/caniuse-lite/data/regions/LA.js
new file mode 100644
index 0000000..1e99327
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/LA.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.0056,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0.0056,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.0028,"101":0,"102":0.0056,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0.0028,"110":0.0056,"111":0.14835,"112":0.09797,"113":0.0028,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.06158,"38":0,"39":0,"40":0,"41":0.0028,"42":0,"43":0.0084,"44":0.0028,"45":0,"46":0,"47":0,"48":0.0028,"49":0,"50":0,"51":0,"52":0,"53":0.0028,"54":0,"55":0,"56":0,"57":0,"58":0.0028,"59":0,"60":0,"61":0,"62":0.0028,"63":0,"64":0,"65":0.0056,"66":0.0056,"67":0,"68":0,"69":0.0028,"70":0.0084,"71":0.0028,"72":0.0028,"73":0,"74":0.0028,"75":0.0028,"76":0,"77":0,"78":0.0084,"79":0.0056,"80":0.0056,"81":0.0028,"83":0.02239,"84":0.01679,"85":0.01959,"86":0.0112,"87":0.0056,"88":0.0056,"89":0.0056,"90":0.0084,"91":0.0056,"92":0.0028,"93":0.0028,"94":0.23512,"95":0.0028,"96":0.0056,"97":0.0056,"98":0.0056,"99":0.0112,"100":0.0056,"101":0.0056,"102":0.0112,"103":0.03639,"104":0.0112,"105":0.0084,"106":0.02239,"107":0.02799,"108":0.04199,"109":0.54581,"110":0.04199,"111":1.31833,"112":1.44149,"113":0.0028,"114":0.0028,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.0028,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.0028,"69":0.0028,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.0056,"96":0.014,"97":0.03919,"98":0.0028,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.0028,"13":0,"14":0.0028,"15":0.0028,"16":0,"17":0,"18":0.0028,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.0056,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0.0028,"107":0,"108":0.0056,"109":0.014,"110":0.0112,"111":0.16234,"112":0.31069,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.0028,"14":0.0084,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.0028,"13.1":0.0084,"14.1":0.03919,"15.1":0.0028,"15.2-15.3":0,"15.4":0.0028,"15.5":0.0056,"15.6":0.05878,"16.0":0.0028,"16.1":0.01679,"16.2":0.01679,"16.3":0.06718,"16.4":0.04758,"16.5":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.01261,"7.0-7.1":0.01513,"8.1-8.4":0.01009,"9.0-9.2":0.00757,"9.3":0.08323,"10.0-10.2":0.00504,"10.3":0.08827,"11.0-11.2":0.03531,"11.3-11.4":0.02522,"12.0-12.1":0.01513,"12.2-12.5":1.11979,"13.0-13.1":0.02522,"13.2":0.01261,"13.3":0.07314,"13.4-13.7":0.31778,"14.0-14.4":0.73896,"14.5-14.8":1.18789,"15.0-15.1":0.41362,"15.2-15.3":0.57251,"15.4":0.52711,"15.5":0.95334,"15.6":1.84363,"16.0":1.52332,"16.1":2.34299,"16.2":1.64186,"16.3":5.80326,"16.4":2.63303,"16.5":0.05549},P:{"4":0.19265,"20":2.11912,"5.0-5.4":0.01014,"6.2-6.4":0.01014,"7.2-7.4":0.14195,"8.2":0,"9.2":0.02028,"10.1":0,"11.1-11.2":0.06084,"12.0":0.01014,"13.0":0.02028,"14.0":0.11153,"15.0":0.07098,"16.0":0.10139,"17.0":0.10139,"18.0":0.14195,"19.0":0.40557},I:{"0":0,"3":0,"4":0.03433,"2.1":0,"2.2":0.04578,"2.3":0.02289,"4.1":0.03433,"4.2-4.3":0.08011,"4.4":0,"4.4.3-4.4.4":0.19455},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0.00385,"8":0.02309,"9":0.00385,"10":0.00385,"11":0.02694,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0.0072,"11":0.0072},R:{_:"0"},M:{"0":0.10081},Q:{"13.1":0.0216},O:{"0":1.52661},H:{"0":0.2727},L:{"0":64.49094}};
diff --git a/node_modules/caniuse-lite/data/regions/LB.js b/node_modules/caniuse-lite/data/regions/LB.js
new file mode 100644
index 0000000..8abd980
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/LB.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.01112,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00371,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00371,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00741,"103":0,"104":0,"105":0,"106":0.00371,"107":0.00371,"108":0.00371,"109":0.01112,"110":0.06673,"111":0.22613,"112":0.19276,"113":0.00371,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00371,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.01112,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00371,"66":0,"67":0.00371,"68":0.00741,"69":0.00371,"70":0,"71":0.00371,"72":0,"73":0,"74":0.00371,"75":0,"76":0.00741,"77":0,"78":0,"79":0.01112,"80":0.00371,"81":0.01112,"83":0.02966,"84":0.01483,"85":0.00371,"86":0.01112,"87":0.00741,"88":0.00371,"89":0,"90":0.00741,"91":0.00741,"92":0.00371,"93":0.00371,"94":0.00371,"95":0.00371,"96":0.00741,"97":0.00371,"98":0.00741,"99":0.01112,"100":0.00371,"101":0.00371,"102":0.01112,"103":0.04078,"104":0.00741,"105":0.01112,"106":0.00741,"107":0.02966,"108":0.04819,"109":0.97865,"110":0.12975,"111":3.00638,"112":3.62915,"113":0.00371,"114":0,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.01112,"69":0.01483,"70":0,"71":0,"72":0,"73":0,"74":0.00371,"75":0,"76":0,"77":0,"78":0,"79":0.00371,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00371,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.02595,"96":0.05561,"97":0.22242,"98":0.01483,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00371,"13":0,"14":0,"15":0.00371,"16":0,"17":0.00371,"18":0.00371,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00741,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0.00371,"105":0,"106":0,"107":0.00371,"108":0.00741,"109":0.02595,"110":0.03707,"111":0.32622,"112":0.54493,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00371,"14":0.02966,"15":0.00371,_:"0","3.1":0,"3.2":0,"5.1":0.10009,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00371,"13.1":0.1038,"14.1":0.04448,"15.1":0.02595,"15.2-15.3":0.01112,"15.4":0.01112,"15.5":0.09268,"15.6":0.14828,"16.0":0.01112,"16.1":0.05931,"16.2":0.09638,"16.3":0.20018,"16.4":0.14087,"16.5":0.00371},G:{"8":0.01148,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.01434,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.08033,"10.0-10.2":0,"10.3":0.0832,"11.0-11.2":0,"11.3-11.4":0.00574,"12.0-12.1":0.0373,"12.2-12.5":0.78894,"13.0-13.1":0.00861,"13.2":0.00287,"13.3":0.02295,"13.4-13.7":0.13197,"14.0-14.4":0.3041,"14.5-14.8":0.74591,"15.0-15.1":0.17787,"15.2-15.3":0.19221,"15.4":0.25246,"15.5":0.51066,"15.6":1.1246,"16.0":2.15165,"16.1":3.14428,"16.2":1.58649,"16.3":9.52753,"16.4":5.49389,"16.5":0.07459},P:{"4":0.14244,"20":4.44606,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.13226,"8.2":0,"9.2":0.02035,"10.1":0.01017,"11.1-11.2":0.06104,"12.0":0.02035,"13.0":0.10174,"14.0":0.11191,"15.0":0.06104,"16.0":0.10174,"17.0":0.20348,"18.0":0.16278,"19.0":0.25435},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00361,"4.2-4.3":0.01987,"4.4":0,"4.4.3-4.4.4":0.09212},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.02966,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.12586},Q:{"13.1":0},O:{"0":0.22026},H:{"0":0.23831},L:{"0":53.32}};
diff --git a/node_modules/caniuse-lite/data/regions/LC.js b/node_modules/caniuse-lite/data/regions/LC.js
new file mode 100644
index 0000000..629552b
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/LC.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00949,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.00475,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.00475,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00475,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0.02848,"109":0.00475,"110":0.00475,"111":0.46511,"112":0.32747,"113":0,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00475,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0.00475,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.00475,"74":0.00475,"75":0.00475,"76":0.03797,"77":0,"78":0,"79":0.09017,"80":0,"81":0.03797,"83":0.02373,"84":0,"85":0,"86":0,"87":0.00949,"88":0.00949,"89":0.00475,"90":0,"91":0.00475,"92":0,"93":0.0617,"94":0,"95":0.00475,"96":0.00475,"97":0.00475,"98":0.00475,"99":0,"100":0.01424,"101":0,"102":0.00475,"103":0.38443,"104":0.03322,"105":0.01424,"106":0.01424,"107":0.01898,"108":0.02373,"109":0.38917,"110":0.64546,"111":5.58604,"112":5.77588,"113":0.02848,"114":0.02848,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00475,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00475,"69":0.02848,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.21357,"96":0.09492,"97":0.26578,"98":0.01424,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0.00475,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00949,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0.00475,"104":0,"105":0,"106":0,"107":0.00475,"108":0.00475,"109":0.01898,"110":0.04271,"111":0.87801,"112":1.60415,"113":0.00475},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.03322,"15":0.00949,_:"0","3.1":0,"3.2":0,"5.1":0.00475,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00475,"13.1":0.06644,"14.1":0.05221,"15.1":0.00475,"15.2-15.3":0.00475,"15.4":0.01424,"15.5":0.03322,"15.6":0.13289,"16.0":0.00949,"16.1":0.03797,"16.2":0.04746,"16.3":0.3607,"16.4":0.12814,"16.5":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00679,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.46197,"10.0-10.2":0,"10.3":0.04076,"11.0-11.2":0.01132,"11.3-11.4":0.00453,"12.0-12.1":0.00453,"12.2-12.5":0.36007,"13.0-13.1":0,"13.2":0.00453,"13.3":0,"13.4-13.7":0.02038,"14.0-14.4":0.1404,"14.5-14.8":0.16984,"15.0-15.1":0.04756,"15.2-15.3":0.11776,"15.4":0.52085,"15.5":0.21514,"15.6":0.9013,"16.0":1.38366,"16.1":2.47972,"16.2":1.69391,"16.3":9.16703,"16.4":3.41725,"16.5":0.09285},P:{"4":0.12636,"20":3.9277,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.33696,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.05265,"12.0":0,"13.0":0.02106,"14.0":0.01053,"15.0":0.01053,"16.0":0.06318,"17.0":0.06318,"18.0":0.05265,"19.0":0.35802},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.11013,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.77093},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0.00475,"11":0.00475,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.61997},Q:{"13.1":0},O:{"0":0.02102},H:{"0":0.20891},L:{"0":51.06127}};
diff --git a/node_modules/caniuse-lite/data/regions/LI.js b/node_modules/caniuse-lite/data/regions/LI.js
new file mode 100644
index 0000000..c67e466
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/LI.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0.00607,"3":0,"4":0.02429,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00607,"37":0,"38":0.00607,"39":0.00607,"40":0.00607,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0.01822,"51":0,"52":0.03644,"53":0.01215,"54":0,"55":0,"56":0.02429,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00607,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00607,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.01822,"101":0,"102":0.01822,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0.01215,"110":0.30972,"111":3.54663,"112":2.23486,"113":0,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.00607,"38":0.00607,"39":0,"40":0.00607,"41":0.01215,"42":0.00607,"43":0.01215,"44":0.04251,"45":0.03037,"46":0.01822,"47":0.01215,"48":0,"49":0.27936,"50":0,"51":0.00607,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.03037,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0.04858,"78":0,"79":0.10324,"80":0,"81":0.00607,"83":0,"84":0.04251,"85":0.01822,"86":0,"87":0,"88":0,"89":0,"90":0.03644,"91":0,"92":0,"93":0,"94":0.00607,"95":0,"96":0,"97":0.04858,"98":0,"99":0.00607,"100":0.01215,"101":0.00607,"102":0.00607,"103":0.06073,"104":0.00607,"105":0.64374,"106":0.0911,"107":0.04858,"108":0.11539,"109":0.7652,"110":0.20041,"111":5.42926,"112":7.55481,"113":0.01215,"114":0,"115":0,"116":0},F:{"9":0,"11":0.00607,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0.00607,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0.00607,"30":0.02429,"31":0.01215,"32":0.01215,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.01822,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.06073,"96":0.42511,"97":0.64374,"98":0.01215,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0.01215,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.02429,"13":0,"14":0.06073,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0.01215,"107":0.32794,"108":0.03644,"109":0.27329,"110":0.21256,"111":1.65793,"112":3.58307,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.06073,"14":0.0911,"15":0.01822,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.01215,"13.1":0.2915,"14.1":0.32187,"15.1":0.06073,"15.2-15.3":0,"15.4":0.01215,"15.5":0.03037,"15.6":0.3826,"16.0":0.09717,"16.1":0.0668,"16.2":0.13968,"16.3":1.22675,"16.4":0.80771,"16.5":0.00607},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01074,"6.0-6.1":0.01074,"7.0-7.1":0.02864,"8.1-8.4":0.179,"9.0-9.2":0.05728,"9.3":0.5728,"10.0-10.2":0,"10.3":0.16468,"11.0-11.2":0,"11.3-11.4":0.02864,"12.0-12.1":0,"12.2-12.5":0.39738,"13.0-13.1":0.02148,"13.2":0,"13.3":0,"13.4-13.7":0.03938,"14.0-14.4":0.1074,"14.5-14.8":0.9129,"15.0-15.1":0.22912,"15.2-15.3":0.05728,"15.4":0.09308,"15.5":0.08592,"15.6":1.81506,"16.0":2.67784,"16.1":5.82467,"16.2":2.0585,"16.3":13.68277,"16.4":5.94997,"16.5":0.09308},P:{"4":0.20691,"20":3.24855,"5.0-5.4":0,"6.2-6.4":0.06207,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0,"12.0":0.01035,"13.0":0,"14.0":0,"15.0":0,"16.0":0,"17.0":0,"18.0":0,"19.0":0.01035},I:{"0":0,"3":0.03218,"4":0.27227,"2.1":0.05198,"2.2":0.12871,"2.3":0.21163,"4.1":0.30692,"4.2-4.3":0.59033,"4.4":0,"4.4.3-4.4.4":0.94676},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.0367,"7":0.07339,"8":0.76453,"9":0.14067,"10":0.17125,"11":0.44648,"5.5":0.00612},S:{"2.5":0.05891,_:"3.0-3.1"},J:{"7":0,"10":0.05498},N:{"10":0.1745,"11":0.11218},R:{_:"0"},M:{"0":0.81289},Q:{"13.1":0.01178},O:{"0":0.29845},H:{"0":0.53537},L:{"0":17.9026}};
diff --git a/node_modules/caniuse-lite/data/regions/LK.js b/node_modules/caniuse-lite/data/regions/LK.js
new file mode 100644
index 0000000..634f958
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/LK.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00454,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.00454,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.01361,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00454,"100":0,"101":0.00454,"102":0.00908,"103":0,"104":0.00454,"105":0.00454,"106":0,"107":0.00454,"108":0.00454,"109":0.00908,"110":0.01361,"111":0.34035,"112":0.2632,"113":0.00908,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0.00454,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00454,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.00454,"65":0,"66":0,"67":0,"68":0,"69":0.00908,"70":0.00454,"71":0.00454,"72":0.00454,"73":0,"74":0.04538,"75":0,"76":0.00454,"77":0.00908,"78":0.00454,"79":0.00908,"80":0.00454,"81":0.02723,"83":0.00454,"84":0.00454,"85":0.00454,"86":0.00908,"87":0.00908,"88":0.00454,"89":0.00454,"90":0.00454,"91":0.00908,"92":0.01361,"93":0.00454,"94":0.07261,"95":0.00908,"96":0.00908,"97":0.00908,"98":0.00908,"99":0.01815,"100":0.00908,"101":0.00454,"102":0.01361,"103":0.03177,"104":0.01361,"105":0.01361,"106":0.02269,"107":0.02723,"108":0.04538,"109":1.04828,"110":0.09076,"111":3.90722,"112":4.75129,"113":0.00454,"114":0.00454,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.03177,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00454,"60":0.01361,"62":0,"63":0.01361,"64":0.00908,"65":0.00454,"66":0.00908,"67":0.02723,"68":0.04084,"69":0.08168,"70":0,"71":0,"72":0,"73":0,"74":0.03177,"75":0.00454,"76":0,"77":0,"78":0,"79":0.00454,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00454,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.05446,"96":0.05446,"97":0.30405,"98":0.01361,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00454,"79":0,"80":0,"81":0,"83":0,"84":0.00454,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.01815,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0.00454,"106":0,"107":0.00908,"108":0.01815,"109":0.02269,"110":0.04538,"111":1.96949,"112":4.71044,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00908,"15":0.00454,_:"0","3.1":0,"3.2":0,"5.1":0.00454,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00908,"14.1":0.01815,"15.1":0.00454,"15.2-15.3":0.00454,"15.4":0.00908,"15.5":0.00908,"15.6":0.0363,"16.0":0.00454,"16.1":0.01815,"16.2":0.01815,"16.3":0.06807,"16.4":0.0363,"16.5":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00836,"8.1-8.4":0.00478,"9.0-9.2":0.00717,"9.3":0.05018,"10.0-10.2":0.00119,"10.3":0.03584,"11.0-11.2":0.00717,"11.3-11.4":0.01195,"12.0-12.1":0.02629,"12.2-12.5":0.6201,"13.0-13.1":0.03226,"13.2":0.01434,"13.3":0.0466,"13.4-13.7":0.09439,"14.0-14.4":0.37039,"14.5-14.8":0.44327,"15.0-15.1":0.2306,"15.2-15.3":0.20312,"15.4":0.20431,"15.5":0.31543,"15.6":0.5054,"16.0":0.8507,"16.1":1.01081,"16.2":0.64519,"16.3":2.33345,"16.4":1.5867,"16.5":0.01792},P:{"4":0.4247,"20":1.14264,"5.0-5.4":0.01011,"6.2-6.4":0.02022,"7.2-7.4":0.74828,"8.2":0.01011,"9.2":0.05056,"10.1":0.02022,"11.1-11.2":0.10112,"12.0":0.02022,"13.0":0.09101,"14.0":0.08089,"15.0":0.05056,"16.0":0.12134,"17.0":0.13145,"18.0":0.14157,"19.0":0.30336},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00386,"4.2-4.3":0.00482,"4.4":0,"4.4.3-4.4.4":0.05494},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00454,"9":0,"10":0,"11":0.00908,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.12563},Q:{"13.1":0},O:{"0":1.36004},H:{"0":1.27725},L:{"0":62.40503}};
diff --git a/node_modules/caniuse-lite/data/regions/LR.js b/node_modules/caniuse-lite/data/regions/LR.js
new file mode 100644
index 0000000..2e98961
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/LR.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00223,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00223,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00445,"103":0,"104":0.00223,"105":0,"106":0,"107":0,"108":0.01558,"109":0,"110":0.03783,"111":0.07565,"112":0.0712,"113":0.00445,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0.00223,"34":0,"35":0,"36":0.00223,"37":0,"38":0.00223,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00223,"48":0,"49":0.00223,"50":0.00445,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.00223,"65":0,"66":0,"67":0.00223,"68":0.00223,"69":0.00223,"70":0,"71":0.00223,"72":0,"73":0,"74":0.00223,"75":0.00668,"76":0.00445,"77":0.00223,"78":0,"79":0.00223,"80":0.00445,"81":0.00668,"83":0,"84":0.00223,"85":0.00223,"86":0.00223,"87":0.01113,"88":0.00223,"89":0.00223,"90":0.00223,"91":0.00223,"92":0.01335,"93":0.01335,"94":0.0089,"95":0,"96":0.00223,"97":0,"98":0,"99":0.00668,"100":0,"101":0,"102":0.00668,"103":0.01335,"104":0.0089,"105":0.0089,"106":0.00445,"107":0.00445,"108":0.00668,"109":0.14018,"110":0.02893,"111":0.5518,"112":0.6408,"113":0.00668,"114":0,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0.00445,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0.00223,"28":0,"29":0,"30":0.00223,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0.00223,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0.00223,"55":0.00223,"56":0,"57":0.00445,"58":0.00223,"60":0.02225,"62":0,"63":0.0267,"64":0.00668,"65":0.0267,"66":0.02893,"67":0.0534,"68":0.03115,"69":0.11125,"70":0,"71":0.00668,"72":0.00223,"73":0,"74":0.00445,"75":0.00223,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00223,"90":0,"91":0,"92":0,"93":0,"94":0.00223,"95":0.00668,"96":0.01113,"97":0.04895,"98":0.00445,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.01335},B:{"12":0.0089,"13":0.00668,"14":0,"15":0.00223,"16":0.00223,"17":0.00223,"18":0.02003,"79":0,"80":0,"81":0,"83":0,"84":0.00445,"85":0,"86":0,"87":0,"88":0,"89":0.00223,"90":0.0089,"91":0,"92":0.0089,"93":0,"94":0,"95":0,"96":0,"97":0.00223,"98":0,"99":0.00223,"100":0,"101":0.00223,"102":0,"103":0.00223,"104":0.00445,"105":0.00223,"106":0.01558,"107":0.0089,"108":0.00668,"109":0.0267,"110":0.0267,"111":0.1335,"112":0.26478,"113":0.00223},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00223,"14":0.00223,"15":0.00223,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00668,"12.1":0,"13.1":0.00445,"14.1":0.00668,"15.1":0,"15.2-15.3":0.0089,"15.4":0,"15.5":0.01558,"15.6":0.02003,"16.0":0.00223,"16.1":0.00223,"16.2":0.00223,"16.3":0.0267,"16.4":0.02225,"16.5":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00776,"8.1-8.4":0,"9.0-9.2":0.00388,"9.3":0.0621,"10.0-10.2":0.00776,"10.3":0.13584,"11.0-11.2":0,"11.3-11.4":0.01164,"12.0-12.1":0.5524,"12.2-12.5":1.13067,"13.0-13.1":0.23286,"13.2":0.01164,"13.3":0.09961,"13.4-13.7":0.64295,"14.0-14.4":0.94567,"14.5-14.8":1.29626,"15.0-15.1":0.42691,"15.2-15.3":0.30401,"15.4":0.48901,"15.5":0.511,"15.6":0.69211,"16.0":0.56922,"16.1":0.55757,"16.2":0.67788,"16.3":1.75939,"16.4":0.81501,"16.5":0.01552},P:{"4":0.07163,"20":0.78796,"5.0-5.4":0.02047,"6.2-6.4":0.02047,"7.2-7.4":0.0614,"8.2":0,"9.2":0.04093,"10.1":0,"11.1-11.2":0.04093,"12.0":0,"13.0":0.01023,"14.0":0.04093,"15.0":0.01023,"16.0":0.0614,"17.0":0.0307,"18.0":0.11257,"19.0":0.08187},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.05673},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0.00223,"11":0.0178,"5.5":0},S:{"2.5":0.17105,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.07775},Q:{"13.1":0.04665},O:{"0":0.69198},H:{"0":6.71311},L:{"0":73.5766}};
diff --git a/node_modules/caniuse-lite/data/regions/LS.js b/node_modules/caniuse-lite/data/regions/LS.js
new file mode 100644
index 0000000..8794844
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/LS.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0.00363,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00363,"50":0,"51":0,"52":0.02175,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00363,"103":0,"104":0,"105":0,"106":0,"107":0.00363,"108":0,"109":0.00363,"110":0.00725,"111":0.3335,"112":0.21025,"113":0.00363,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.01088,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.01088,"47":0,"48":0,"49":0.01813,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.00363,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00363,"67":0,"68":0,"69":0.00363,"70":0.00363,"71":0,"72":0,"73":0,"74":0,"75":0.00725,"76":0,"77":0.0145,"78":0,"79":0.00725,"80":0,"81":0.0725,"83":0.00363,"84":0,"85":0,"86":0,"87":0.01088,"88":0.00725,"89":0,"90":0.00363,"91":0.00363,"92":0.00363,"93":0,"94":0.00363,"95":0.00363,"96":0.00363,"97":0.00725,"98":0,"99":0.00725,"100":0.00363,"101":0.0725,"102":0.01088,"103":0.00725,"104":0.03988,"105":0.00725,"106":0.01088,"107":0.01088,"108":0.03263,"109":0.49663,"110":0.03625,"111":1.82338,"112":2.05175,"113":0,"114":0,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0.00363,"26":0.02538,"27":0,"28":0.00363,"29":0,"30":0.00363,"31":0,"32":0.01813,"33":0,"34":0,"35":0.116,"36":0,"37":0,"38":0.00363,"39":0,"40":0,"41":0,"42":0.00363,"43":0,"44":0,"45":0,"46":0.01813,"47":0,"48":0,"49":0,"50":0.01088,"51":0.00363,"52":0,"53":0,"54":0,"55":0,"56":0.02538,"57":0.00363,"58":0.00725,"60":0.00725,"62":0,"63":0.05438,"64":0.31175,"65":0.06163,"66":0.03988,"67":0.1305,"68":0.1305,"69":0.2175,"70":0,"71":0,"72":0,"73":0,"74":0.00725,"75":0,"76":0.00725,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0.03263,"83":0,"84":0,"85":0.00363,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.07975,"96":0.06163,"97":0.38788,"98":0.03625,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.01088},B:{"12":0.01088,"13":0.00363,"14":0.00363,"15":0,"16":0.00363,"17":0.00725,"18":0.0145,"79":0,"80":0,"81":0,"83":0,"84":0.00363,"85":0,"86":0,"87":0.00363,"88":0,"89":0.00725,"90":0,"91":0,"92":0.01088,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00363,"101":0,"102":0.00363,"103":0,"104":0.00363,"105":0.00725,"106":0,"107":0.01088,"108":0.0145,"109":0.06163,"110":0.03263,"111":0.53288,"112":0.83375,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00363,"14":0,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.00725,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0,"14.1":0.00363,"15.1":0.00363,"15.2-15.3":0,"15.4":0,"15.5":0,"15.6":0.00725,"16.0":0.00363,"16.1":0.0145,"16.2":0.00363,"16.3":0.04713,"16.4":0.00725,"16.5":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.03244,"6.0-6.1":0.00056,"7.0-7.1":0.00839,"8.1-8.4":0.00056,"9.0-9.2":0,"9.3":0.06209,"10.0-10.2":0.00056,"10.3":0.00448,"11.0-11.2":0.00168,"11.3-11.4":0.00056,"12.0-12.1":0.00671,"12.2-12.5":0.2176,"13.0-13.1":0.01231,"13.2":0.00168,"13.3":0.00671,"13.4-13.7":0.05202,"14.0-14.4":0.05929,"14.5-14.8":0.16278,"15.0-15.1":0.1046,"15.2-15.3":0.09286,"15.4":0.06601,"15.5":0.14432,"15.6":0.11635,"16.0":0.13313,"16.1":1.09079,"16.2":0.16726,"16.3":1.14282,"16.4":0.30878,"16.5":0.00503},P:{"4":0.31809,"20":0.88244,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.77983,"8.2":0,"9.2":0.04104,"10.1":0,"11.1-11.2":0.03078,"12.0":0,"13.0":0.06157,"14.0":0.0513,"15.0":0.02052,"16.0":0.12313,"17.0":0.0513,"18.0":0.0513,"19.0":0.16418},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00496,"4.4":0,"4.4.3-4.4.4":0.09316},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01813,"5.5":0},S:{"2.5":0.1785,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.0765},Q:{"13.1":0},O:{"0":0.714},H:{"0":5.96301},L:{"0":74.33113}};
diff --git a/node_modules/caniuse-lite/data/regions/LT.js b/node_modules/caniuse-lite/data/regions/LT.js
new file mode 100644
index 0000000..056e3df
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/LT.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00771,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.01541,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.01541,"49":0,"50":0.00771,"51":0,"52":0.03082,"53":0.00771,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.00771,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00771,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0.01541,"78":0.00771,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00771,"89":0,"90":0,"91":0.00771,"92":0,"93":0.00771,"94":0,"95":0.00771,"96":0,"97":0,"98":0,"99":0.00771,"100":0.00771,"101":0,"102":0.04624,"103":0,"104":0,"105":0.00771,"106":0,"107":0.00771,"108":0.00771,"109":0.01541,"110":0.03082,"111":0.97866,"112":0.7706,"113":0.00771,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.01541,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00771,"66":0.00771,"67":0,"68":0,"69":0.00771,"70":0,"71":0,"72":0,"73":0.00771,"74":0.00771,"75":0,"76":0.00771,"77":0,"78":0,"79":0.04624,"80":0.00771,"81":0.00771,"83":0.01541,"84":0.00771,"85":0.03082,"86":0.02312,"87":0.06935,"88":0.00771,"89":0.04624,"90":0.00771,"91":0.00771,"92":0.00771,"93":0.03853,"94":0.22347,"95":0.00771,"96":0.01541,"97":0.03082,"98":0.01541,"99":0.01541,"100":0.01541,"101":0.00771,"102":0.01541,"103":0.21577,"104":0.05394,"105":0.04624,"106":0.06165,"107":0.05394,"108":0.30053,"109":2.94369,"110":0.76289,"111":21.93128,"112":18.7564,"113":0.00771,"114":0,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00771,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00771,"69":0.00771,"70":0,"71":0,"72":0,"73":0,"74":0.00771,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00771,"92":0,"93":0,"94":0,"95":0.10788,"96":0.43154,"97":1.08655,"98":0.03853,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00771,"93":0,"94":0.00771,"95":0.02312,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00771,"103":0,"104":0,"105":0.00771,"106":0.00771,"107":0.00771,"108":0.00771,"109":0.10788,"110":0.131,"111":2.80498,"112":3.58329,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00771,"14":0.03082,"15":0.00771,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.01541,"13.1":0.04624,"14.1":0.06165,"15.1":0.01541,"15.2-15.3":0.00771,"15.4":0.02312,"15.5":0.03082,"15.6":0.11559,"16.0":0.03082,"16.1":0.10788,"16.2":0.07706,"16.3":0.27742,"16.4":0.131,"16.5":0.00771},G:{"8":0.04159,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00734,"5.0-5.1":0,"6.0-6.1":0.00979,"7.0-7.1":0.07339,"8.1-8.4":0.32415,"9.0-9.2":0.04037,"9.3":0.01468,"10.0-10.2":0,"10.3":0.14067,"11.0-11.2":0.00367,"11.3-11.4":0.00734,"12.0-12.1":0.00245,"12.2-12.5":0.10519,"13.0-13.1":0.00245,"13.2":0.00612,"13.3":0.00979,"13.4-13.7":0.03792,"14.0-14.4":0.11009,"14.5-14.8":0.1896,"15.0-15.1":0.05504,"15.2-15.3":0.10642,"15.4":0.10642,"15.5":0.22751,"15.6":0.63239,"16.0":1.06785,"16.1":1.66232,"16.2":0.90149,"16.3":3.90077,"16.4":1.89228,"16.5":0.07828},P:{"4":0.31709,"20":1.60592,"5.0-5.4":0.01023,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.01023,"12.0":0,"13.0":0.01023,"14.0":0.01023,"15.0":0,"16.0":0.02046,"17.0":0.02046,"18.0":0.03069,"19.0":0.08183},I:{"0":0,"3":0.00461,"4":0.00461,"2.1":0.00461,"2.2":0.00768,"2.3":0.00307,"4.1":0.00922,"4.2-4.3":0.02304,"4.4":0,"4.4.3-4.4.4":0.09676},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.01541,"9":0,"10":0,"11":0.04624,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0.00229},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.17434},Q:{"13.1":0.03441},O:{"0":0.06653},H:{"0":0.18243},L:{"0":25.71541}};
diff --git a/node_modules/caniuse-lite/data/regions/LU.js b/node_modules/caniuse-lite/data/regions/LU.js
new file mode 100644
index 0000000..9d2a14a
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/LU.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.01499,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.01499,"46":0,"47":0,"48":0,"49":0,"50":0.005,"51":0,"52":0.03497,"53":0,"54":0,"55":0,"56":0.005,"57":0,"58":0,"59":0,"60":0.00999,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00999,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.04995,"79":0,"80":0,"81":0.00999,"82":0.00999,"83":0,"84":0,"85":0,"86":0,"87":0.005,"88":0,"89":0.005,"90":0,"91":0.1049,"92":0,"93":0.005,"94":0.005,"95":0,"96":0,"97":0.005,"98":0.005,"99":0,"100":0,"101":0.005,"102":1.32867,"103":0.005,"104":0.01499,"105":0.02997,"106":0.00999,"107":0.1049,"108":0.01998,"109":0.02997,"110":0.04995,"111":1.30869,"112":1.21878,"113":0.005,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0.005,"45":0,"46":0,"47":0,"48":0.02997,"49":0.005,"50":0,"51":0,"52":0,"53":0.00999,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.25475,"73":0,"74":0,"75":0,"76":0,"77":0.005,"78":0.00999,"79":0.05495,"80":0.00999,"81":0,"83":0.01998,"84":0.03996,"85":0.04496,"86":0.03497,"87":0.02498,"88":0.005,"89":0,"90":0.00999,"91":0.01499,"92":0.005,"93":0,"94":0.71429,"95":0.005,"96":0.005,"97":0.01499,"98":0.01499,"99":0.01998,"100":0.04995,"101":0.02997,"102":0.02498,"103":0.02997,"104":0.00999,"105":0.26474,"106":0.03497,"107":0.06494,"108":0.1049,"109":0.3996,"110":0.21479,"111":3.78621,"112":3.96603,"113":0.005,"114":0.005,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.005,"69":0.02498,"70":0.005,"71":0,"72":0,"73":0,"74":0.00999,"75":0.01499,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.005,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.005,"94":0,"95":0.01499,"96":0.17982,"97":0.54446,"98":0.01499,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.005,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0.01499,"97":0,"98":0,"99":0,"100":0.005,"101":0.005,"102":0.005,"103":0,"104":0.005,"105":0.005,"106":0.005,"107":0.02498,"108":0.14486,"109":0.05994,"110":0.05495,"111":0.85914,"112":1.74326,"113":0.005},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.005,"14":0.06494,"15":0.00999,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.17982,"13.1":0.2048,"14.1":0.21479,"15.1":0.02498,"15.2-15.3":0.01998,"15.4":0.04995,"15.5":0.16983,"15.6":0.57443,"16.0":0.07992,"16.1":0.31469,"16.2":0.33966,"16.3":1.55844,"16.4":0.68432,"16.5":0.01499},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.26785,"5.0-5.1":0.00705,"6.0-6.1":0.00352,"7.0-7.1":0,"8.1-8.4":0.01762,"9.0-9.2":0.82821,"9.3":0.04582,"10.0-10.2":0,"10.3":0.04229,"11.0-11.2":0.04229,"11.3-11.4":0.00352,"12.0-12.1":0.1445,"12.2-12.5":0.28547,"13.0-13.1":0.00705,"13.2":0.00705,"13.3":0.02115,"13.4-13.7":0.09516,"14.0-14.4":0.2608,"14.5-14.8":0.56741,"15.0-15.1":0.22908,"15.2-15.3":0.26432,"15.4":0.25023,"15.5":0.42292,"15.6":1.55422,"16.0":2.35776,"16.1":4.09525,"16.2":3.11901,"16.3":13.03994,"16.4":5.97723,"16.5":0.12335},P:{"4":0.17596,"20":3.56063,"5.0-5.4":0.03105,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0.01035,"10.1":0,"11.1-11.2":0,"12.0":0,"13.0":0.01035,"14.0":0.01035,"15.0":0,"16.0":0.0207,"17.0":0.01035,"18.0":0.0207,"19.0":0.10351},I:{"0":0,"3":0.08516,"4":0.01036,"2.1":0.04373,"2.2":0.13119,"2.3":0.00806,"4.1":0.10127,"4.2-4.3":0.11738,"4.4":0,"4.4.3-4.4.4":0.35788},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.00599,"7":0.00599,"8":0.07193,"9":0.01199,"10":0.01199,"11":0.0959,"5.5":0},S:{"2.5":0.00501,_:"3.0-3.1"},J:{"7":0,"10":0.01001},N:{"10":0.01251,"11":0.01251},R:{_:"0"},M:{"0":1.0961},Q:{"13.1":1.79179},O:{"0":1.08108},H:{"0":0.36486},L:{"0":28.87358}};
diff --git a/node_modules/caniuse-lite/data/regions/LV.js b/node_modules/caniuse-lite/data/regions/LV.js
new file mode 100644
index 0000000..6e67386
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/LV.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.02698,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00674,"67":0,"68":0.00674,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0.04046,"78":0.01349,"79":0,"80":0.00674,"81":0.00674,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.01349,"89":0,"90":0,"91":0.00674,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.01349,"100":0,"101":0,"102":0.12814,"103":0.00674,"104":0.00674,"105":0.00674,"106":0,"107":0.02698,"108":0.01349,"109":0.02023,"110":0.10116,"111":1.59158,"112":1.42298,"113":0.02698,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0.00674,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.00674,"49":0.02023,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00674,"66":0.01349,"67":0,"68":0.00674,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0.00674,"75":0,"76":0,"77":0.00674,"78":0.00674,"79":0.1079,"80":0.01349,"81":0.00674,"83":0.01349,"84":0.04046,"85":0.02698,"86":0.02698,"87":0.07418,"88":0.01349,"89":0.00674,"90":0.02023,"91":0.01349,"92":0.01349,"93":0.03372,"94":0.6744,"95":0.00674,"96":0.01349,"97":0.43162,"98":0.02023,"99":0.02023,"100":0.07418,"101":0.01349,"102":0.02023,"103":0.09442,"104":0.02023,"105":0.0607,"106":0.68789,"107":0.45859,"108":0.82951,"109":2.33342,"110":1.09927,"111":11.95711,"112":13.21824,"113":0.01349,"114":0.00674,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.00674,"70":0,"71":0,"72":0.00674,"73":0,"74":0.00674,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00674,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.00674,"94":0.00674,"95":0.12139,"96":0.31022,"97":1.1802,"98":0.08093,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0.00674,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.00674,"91":0,"92":0.00674,"93":0,"94":0,"95":0,"96":0.04721,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0.00674,"104":0,"105":0,"106":0.00674,"107":0.00674,"108":0.02023,"109":0.04721,"110":0.05395,"111":1.03183,"112":2.27947,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00674,"12":0,"13":0.00674,"14":0.04046,"15":0.01349,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.01349,"10.1":0,"11.1":0,"12.1":0.03372,"13.1":0.0607,"14.1":0.07418,"15.1":0.01349,"15.2-15.3":0.01349,"15.4":0.03372,"15.5":0.04721,"15.6":0.18209,"16.0":0.02698,"16.1":0.08767,"16.2":0.10116,"16.3":0.45185,"16.4":0.26302,"16.5":0.01349},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00177,"6.0-6.1":0,"7.0-7.1":0.00177,"8.1-8.4":0.00708,"9.0-9.2":0,"9.3":0.01416,"10.0-10.2":0,"10.3":0.01416,"11.0-11.2":0.00531,"11.3-11.4":0.00354,"12.0-12.1":0.00531,"12.2-12.5":0.177,"13.0-13.1":0.00177,"13.2":0.00885,"13.3":0.02478,"13.4-13.7":0.05487,"14.0-14.4":0.14691,"14.5-14.8":0.26196,"15.0-15.1":0.15753,"15.2-15.3":0.11151,"15.4":0.20355,"15.5":0.34515,"15.6":0.72039,"16.0":1.50627,"16.1":2.20188,"16.2":1.33635,"16.3":6.11358,"16.4":3.47628,"16.5":0.13629},P:{"4":0.04121,"20":2.60672,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0,"12.0":0,"13.0":0.0103,"14.0":0.0103,"15.0":0.02061,"16.0":0.04121,"17.0":0.02061,"18.0":0.05152,"19.0":0.20606},I:{"0":0,"3":0,"4":0.00909,"2.1":0,"2.2":0.01514,"2.3":0.00606,"4.1":0.01211,"4.2-4.3":0.02726,"4.4":0,"4.4.3-4.4.4":0.06965},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.02698,"9":0.00674,"10":0.00674,"11":0.04721,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0.00326},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.39723},Q:{"13.1":0},O:{"0":0.07163},H:{"0":0.26202},L:{"0":33.11114}};
diff --git a/node_modules/caniuse-lite/data/regions/LY.js b/node_modules/caniuse-lite/data/regions/LY.js
new file mode 100644
index 0000000..7601ffd
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/LY.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00187,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00187,"90":0,"91":0.0056,"92":0,"93":0,"94":0,"95":0,"96":0.00187,"97":0,"98":0.00187,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0.00187,"107":0,"108":0,"109":0.00187,"110":0.00187,"111":0.05782,"112":0.05409,"113":0,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.00187,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00187,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00373,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.00187,"70":0.00373,"71":0.00373,"72":0,"73":0,"74":0.01306,"75":0,"76":0,"77":0,"78":0.00187,"79":0.00373,"80":0.00187,"81":0.00373,"83":0.00187,"84":0,"85":0.00187,"86":0.0056,"87":0.00373,"88":0.00373,"89":0.00746,"90":0.00187,"91":0.00187,"92":0,"93":0.01492,"94":0,"95":0,"96":0.00373,"97":0.00187,"98":0.01306,"99":0.0056,"100":0.00187,"101":0,"102":0.00746,"103":0.0056,"104":0.0056,"105":0.0056,"106":0.0056,"107":0.01119,"108":0.01306,"109":0.42709,"110":0.02052,"111":0.63037,"112":0.55764,"113":0,"114":0,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00187,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.0056,"60":0.00746,"62":0,"63":0.00933,"64":0.00373,"65":0.00187,"66":0.00373,"67":0.01865,"68":0.04103,"69":0.14734,"70":0.00187,"71":0,"72":0.00187,"73":0.00187,"74":0.00373,"75":0.00187,"76":0,"77":0,"78":0,"79":0.00373,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00187,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0.00746,"95":0.01119,"96":0.02238,"97":0.10444,"98":0.01492,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00187},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00187,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.0056,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0.00187,"109":0.00746,"110":0.01865,"111":0.07647,"112":0.14547,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00373,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.03544,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00187,"14.1":0.01306,"15.1":0,"15.2-15.3":0,"15.4":0.00746,"15.5":0.0056,"15.6":0.02611,"16.0":0.00187,"16.1":0.01119,"16.2":0.03917,"16.3":0.16785,"16.4":0.08952,"16.5":0.00187},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00135,"6.0-6.1":0,"7.0-7.1":0.02826,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.12515,"10.0-10.2":0.03499,"10.3":0.05248,"11.0-11.2":0.00673,"11.3-11.4":0.00807,"12.0-12.1":0.01884,"12.2-12.5":0.84104,"13.0-13.1":0.01749,"13.2":0.00404,"13.3":0.1238,"13.4-13.7":0.33238,"14.0-14.4":0.30412,"14.5-14.8":0.48444,"15.0-15.1":0.14533,"15.2-15.3":0.218,"15.4":0.28124,"15.5":0.34718,"15.6":0.77375,"16.0":1.38468,"16.1":1.10344,"16.2":1.09133,"16.3":2.68324,"16.4":2.1369,"16.5":0.04441},P:{"4":0.17168,"20":1.23203,"5.0-5.4":0,"6.2-6.4":0.0303,"7.2-7.4":0.30296,"8.2":0,"9.2":0.0303,"10.1":0.0101,"11.1-11.2":0.07069,"12.0":0.05049,"13.0":0.04039,"14.0":0.07069,"15.0":0.0303,"16.0":0.18178,"17.0":0.13128,"18.0":0.10099,"19.0":0.18178},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.01282,"4.4":0,"4.4.3-4.4.4":0.07329},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.0056,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.07322},Q:{"13.1":0},O:{"0":0.35794},H:{"0":2.272},L:{"0":77.14483}};
diff --git a/node_modules/caniuse-lite/data/regions/MA.js b/node_modules/caniuse-lite/data/regions/MA.js
new file mode 100644
index 0000000..0645517
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/MA.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.07237,"53":0,"54":0,"55":0.00905,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.00905,"65":0.02262,"66":0,"67":0,"68":0.00452,"69":0,"70":0,"71":0,"72":0.00452,"73":0,"74":0,"75":0.00452,"76":0,"77":0,"78":0.00452,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00452,"89":0,"90":0,"91":0,"92":0.00452,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00452,"100":0.00452,"101":0,"102":0.01809,"103":0.00452,"104":0.00905,"105":0.00452,"106":0.00452,"107":0.00452,"108":0.00905,"109":0.01357,"110":0.01809,"111":0.55181,"112":0.43873,"113":0.00905,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00452,"39":0,"40":0,"41":0,"42":0,"43":0.00452,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.03618,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00905,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00905,"64":0.00452,"65":0.00452,"66":0,"67":0.12664,"68":0.00452,"69":0.00452,"70":0.00452,"71":0.00452,"72":0.00905,"73":0.00452,"74":0.00905,"75":0.00452,"76":0.00452,"77":0,"78":0.00452,"79":0.03618,"80":0.00452,"81":0.01809,"83":0.01809,"84":0.01357,"85":0.01809,"86":0.01809,"87":0.04523,"88":0.00905,"89":0.00905,"90":0.00452,"91":0.01357,"92":0.00905,"93":0.00452,"94":0.10403,"95":0.00905,"96":0.01357,"97":0.01357,"98":0.01357,"99":0.02262,"100":0.01809,"101":0.01357,"102":0.02262,"103":0.04975,"104":0.01809,"105":0.03618,"106":0.03166,"107":0.04071,"108":0.06332,"109":1.79563,"110":0.14474,"111":4.817,"112":5.51354,"113":0.00905,"114":0.00452,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0.00452,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.00452,"68":0.00905,"69":0.02262,"70":0,"71":0,"72":0,"73":0,"74":0.00905,"75":0,"76":0,"77":0,"78":0,"79":0.00452,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00905,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00452,"93":0,"94":0,"95":0.0588,"96":0.20354,"97":0.58799,"98":0.02714,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00905,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00905,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00452,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0.00452,"108":0.00905,"109":0.03618,"110":0.03166,"111":0.44778,"112":0.95888,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0.00452,"13":0.00452,"14":0.01809,"15":0.00452,_:"0","3.1":0,"3.2":0,"5.1":0.03618,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00452,"13.1":0.02262,"14.1":0.06332,"15.1":0.00905,"15.2-15.3":0.00905,"15.4":0.00905,"15.5":0.02262,"15.6":0.07237,"16.0":0.01809,"16.1":0.01809,"16.2":0.01809,"16.3":0.09498,"16.4":0.05428,"16.5":0},G:{"8":0.00689,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.02341,"6.0-6.1":0.00964,"7.0-7.1":0.04682,"8.1-8.4":0.00964,"9.0-9.2":0,"9.3":0.0661,"10.0-10.2":0.00413,"10.3":0.05095,"11.0-11.2":0.0358,"11.3-11.4":0.02066,"12.0-12.1":0.00964,"12.2-12.5":0.42689,"13.0-13.1":0.00964,"13.2":0.01928,"13.3":0.04131,"13.4-13.7":0.10603,"14.0-14.4":0.29056,"14.5-14.8":0.4682,"15.0-15.1":0.14872,"15.2-15.3":0.2162,"15.4":0.22721,"15.5":0.4379,"15.6":0.84551,"16.0":1.14571,"16.1":1.39496,"16.2":0.98046,"16.3":3.72218,"16.4":1.76126,"16.5":0.04682},P:{"4":0.28391,"20":2.18002,"5.0-5.4":0.03042,"6.2-6.4":0.02028,"7.2-7.4":0.21293,"8.2":0.02028,"9.2":0.03042,"10.1":0,"11.1-11.2":0.07098,"12.0":0.02028,"13.0":0.1014,"14.0":0.0507,"15.0":0.03042,"16.0":0.07098,"17.0":0.09126,"18.0":0.07098,"19.0":0.18251},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01427,"4.2-4.3":0.03997,"4.4":0,"4.4.3-4.4.4":0.23124},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.0143,"9":0.00477,"10":0.00477,"11":0.15256,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0.01095},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.15336},Q:{"13.1":0},O:{"0":0.15336},H:{"0":0.38371},L:{"0":63.07651}};
diff --git a/node_modules/caniuse-lite/data/regions/MC.js b/node_modules/caniuse-lite/data/regions/MC.js
new file mode 100644
index 0000000..13dee09
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/MC.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0.00701,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0.01403,"30":0,"31":0.00701,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00701,"39":0.00701,"40":0,"41":0.00701,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00701,"48":0,"49":0,"50":0.11922,"51":0,"52":0.02104,"53":0.04208,"54":0,"55":0,"56":0.02805,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00701,"67":0.08416,"68":0.09117,"69":0,"70":0,"71":0,"72":0.09818,"73":0,"74":0,"75":0.49792,"76":0,"77":0,"78":0.38572,"79":0,"80":0,"81":0,"82":0.07013,"83":0,"84":0,"85":0,"86":0,"87":0.01403,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.1613,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0.09818,"110":0.08416,"111":1.31844,"112":1.19922,"113":0,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0.00701,"6":0,"7":0,"8":0.00701,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0.00701,"32":0,"33":0,"34":0.00701,"35":0,"36":0,"37":0,"38":0,"39":0.00701,"40":0,"41":0.00701,"42":0,"43":0.01403,"44":0.03507,"45":0.02805,"46":0.00701,"47":0.02805,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0.00701,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00701,"66":0,"67":0,"68":0,"69":0,"70":0.0561,"71":0.1052,"72":0.01403,"73":0,"74":0.01403,"75":0,"76":0.1052,"77":0,"78":0.00701,"79":0.61714,"80":0.03507,"81":0.49792,"83":0.01403,"84":0.04208,"85":1.26935,"86":0.03507,"87":1.22026,"88":0,"89":0,"90":0.00701,"91":0.00701,"92":0,"93":0.00701,"94":0,"95":0,"96":0,"97":0.00701,"98":0.01403,"99":0,"100":0,"101":0,"102":0.00701,"103":0.51195,"104":0.84857,"105":0.57507,"106":0.15429,"107":0.11221,"108":0.43481,"109":0.7574,"110":0.35065,"111":7.1743,"112":6.60625,"113":0,"114":0,"115":0,"116":0},F:{"9":0,"11":0.00701,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00701,"29":0,"30":0.00701,"31":0.00701,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0.11221,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0.04208,"97":9.90236,"98":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.02805,"13":0,"14":0.02805,"15":0,"16":0,"17":0,"18":0.1052,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0.01403,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0.01403,"109":0.02805,"110":0.24546,"111":0.84156,"112":1.99169,"113":0.00701},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00701,"14":0.25247,"15":0.01403,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.01403,"12.1":0.02104,"13.1":0.25948,"14.1":0.32961,"15.1":0.00701,"15.2-15.3":0.03507,"15.4":0.0561,"15.5":0.04909,"15.6":0.46987,"16.0":0.13325,"16.1":0.44182,"16.2":0.41377,"16.3":2.37039,"16.4":1.57793,"16.5":0.00701},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.04455,"8.1-8.4":0.17136,"9.0-9.2":0.01371,"9.3":0.07883,"10.0-10.2":0.06512,"10.3":0.06512,"11.0-11.2":0.00343,"11.3-11.4":0.01371,"12.0-12.1":0,"12.2-12.5":0.38385,"13.0-13.1":0.00343,"13.2":0.01028,"13.3":0.00685,"13.4-13.7":0.02056,"14.0-14.4":0.26047,"14.5-14.8":0.56206,"15.0-15.1":0.16793,"15.2-15.3":0.34615,"15.4":0.46953,"15.5":0.58262,"15.6":1.75473,"16.0":1.76501,"16.1":5.33273,"16.2":2.57726,"16.3":12.65324,"16.4":5.14081,"16.5":0.12338},P:{"4":0.11279,"20":0.8818,"5.0-5.4":0,"6.2-6.4":0.03076,"7.2-7.4":0.01025,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0,"12.0":0,"13.0":0,"14.0":0,"15.0":0,"16.0":0,"17.0":0.01025,"18.0":0,"19.0":0.01025},I:{"0":0,"3":0.01094,"4":0.1032,"2.1":0.02734,"2.2":0.02597,"2.3":0.03827,"4.1":0.13533,"4.2-4.3":0.22486,"4.4":0,"4.4.3-4.4.4":0.53174},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.01429,"7":0.04287,"8":0.50732,"9":0.11433,"10":0.07145,"11":0.34298,"5.5":0},S:{"2.5":0.00597,_:"3.0-3.1"},J:{"7":0,"10":0.05078},N:{"10":0.06827,"11":0.02731},R:{_:"0"},M:{"0":0.44805},Q:{"13.1":0.01195},O:{"0":0.14338},H:{"0":0.06787},L:{"0":14.79153}};
diff --git a/node_modules/caniuse-lite/data/regions/MD.js b/node_modules/caniuse-lite/data/regions/MD.js
new file mode 100644
index 0000000..b261b16
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/MD.js
@@ -0,0 +1 @@
+module.exports={C:{"52":0.09392,"67":0.00939,"78":0.01409,"87":0.20662,"91":0.0047,"94":0.0047,"102":0.17845,"104":0.00939,"105":0.0047,"107":0.01409,"108":0.0047,"109":0.02348,"110":0.08922,"111":1.0566,"112":0.86406,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 88 89 90 92 93 95 96 97 98 99 100 101 103 106 113 114 3.5","3.6":0.04696},D:{"44":0.0047,"46":0.0047,"47":0.00939,"49":0.06105,"51":0.02348,"53":0.01409,"56":0.02818,"66":0.0047,"67":0.05166,"69":0.01409,"70":0.0047,"71":0.01878,"72":0.00939,"73":0.0047,"74":0.0047,"75":0.0047,"76":0.02348,"77":0.0047,"78":0.0047,"79":0.05635,"80":0.09862,"81":0.02818,"83":0.01878,"84":0.01878,"85":0.02348,"86":0.03287,"87":0.03287,"88":0.18314,"89":0.00939,"90":0.01409,"91":0.00939,"92":0.01878,"94":0.46021,"95":0.01878,"96":0.02818,"97":0.04226,"98":0.03287,"99":0.03287,"100":0.02818,"101":0.04696,"102":0.10331,"103":0.09392,"104":0.03287,"105":0.07044,"106":0.26767,"107":0.07983,"108":0.54943,"109":5.56006,"110":0.43203,"111":10.36877,"112":11.43476,"113":0.02818,"114":0.01409,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 45 48 50 52 54 55 57 58 59 60 61 62 63 64 65 68 93 115 116"},F:{"70":0.01409,"72":0.00939,"79":0.0047,"82":0.00939,"85":0.04696,"90":0.0047,"95":0.56352,"96":0.43203,"97":1.60134,"98":0.07514,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 71 73 74 75 76 77 78 80 81 83 84 86 87 88 89 91 92 93 94 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"18":0.01878,"92":0.0047,"108":0.00939,"109":0.03757,"110":0.03757,"111":0.5823,"112":1.35714,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 113"},E:{"4":0,"9":0.0047,"14":0.02818,"15":0.00939,_:"0 5 6 7 8 10 11 12 13 3.1 3.2 5.1 6.1 7.1 10.1 11.1 12.1 16.5","9.1":0.00939,"13.1":0.03757,"14.1":0.08922,"15.1":0.01409,"15.2-15.3":0.00939,"15.4":0.03287,"15.5":0.01878,"15.6":0.20193,"16.0":0.02348,"16.1":0.06574,"16.2":0.07044,"16.3":0.45551,"16.4":0.20193},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00699,"8.1-8.4":0.0042,"9.0-9.2":0.0028,"9.3":0.01818,"10.0-10.2":0,"10.3":0.01539,"11.0-11.2":0.00559,"11.3-11.4":0.00559,"12.0-12.1":0.00839,"12.2-12.5":0.14826,"13.0-13.1":0.0042,"13.2":0.00839,"13.3":0.01259,"13.4-13.7":0.04896,"14.0-14.4":0.1105,"14.5-14.8":0.29933,"15.0-15.1":0.09931,"15.2-15.3":0.13008,"15.4":0.12309,"15.5":0.36507,"15.6":0.63921,"16.0":1.29241,"16.1":1.61692,"16.2":1.07701,"16.3":4.25769,"16.4":2.77505,"16.5":0.13987},P:{"4":0.12539,"20":2.02718,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.05225,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.0209,"12.0":0.01019,"13.0":0.0209,"14.0":0,"15.0":0,"16.0":0.03135,"17.0":0.0209,"18.0":0.05225,"19.0":0.12539},I:{"0":0,"3":0,"4":0.00389,"2.1":0,"2.2":0,"2.3":0.00259,"4.1":0.00259,"4.2-4.3":0.01037,"4.4":0,"4.4.3-4.4.4":0.03889},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"7":0.0049,"8":0.05387,"9":0.00979,"10":0.00979,"11":0.26445,_:"6 5.5"},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.175},Q:{"13.1":0},O:{"0":0.06894},H:{"0":0.28115},L:{"0":41.79716}};
diff --git a/node_modules/caniuse-lite/data/regions/ME.js b/node_modules/caniuse-lite/data/regions/ME.js
new file mode 100644
index 0000000..33357de
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/ME.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0.0039,"51":0,"52":0.01561,"53":0.0039,"54":0,"55":0,"56":0.0039,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.0039,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0.00781,"76":0,"77":0,"78":0.0039,"79":0,"80":0,"81":0,"82":0.0039,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.01561,"89":0,"90":0,"91":0.00781,"92":0,"93":0,"94":0,"95":0,"96":0.0039,"97":0,"98":0.00781,"99":0.0039,"100":0,"101":0,"102":0.0039,"103":0.01171,"104":0,"105":0,"106":0.0039,"107":0.0039,"108":0.0039,"109":0.00781,"110":0.01171,"111":0.49568,"112":0.44104,"113":0,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.0039,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.01561,"50":0,"51":0,"52":0,"53":0.02732,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.0039,"67":0,"68":0.03122,"69":0,"70":0.0039,"71":0,"72":0,"73":0,"74":0.0039,"75":0,"76":0.0039,"77":0.0039,"78":0,"79":0.10538,"80":0,"81":0.01561,"83":0.01561,"84":0.00781,"85":0.03122,"86":0.01952,"87":0.03903,"88":0.03903,"89":0.01171,"90":0.00781,"91":0,"92":0.01561,"93":0,"94":0.0039,"95":0.01171,"96":0.00781,"97":0.01171,"98":0.0039,"99":0.02732,"100":0.01171,"101":0.0039,"102":0.01561,"103":0.04684,"104":0.00781,"105":0.03513,"106":0.08196,"107":0.03513,"108":0.05074,"109":1.4285,"110":0.08196,"111":3.41513,"112":3.97325,"113":0,"114":0.0039,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.01171,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00781,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.0039,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.01561,"69":0.0039,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0.01171,"95":0.01952,"96":0.10148,"97":0.39811,"98":0.01561,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.0039,"13":0,"14":0.0039,"15":0,"16":0,"17":0.0039,"18":0.0039,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.01561,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0.0039,"104":0,"105":0,"106":0,"107":0.01952,"108":0.0039,"109":0.01171,"110":0.00781,"111":0.16002,"112":0.34737,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.02342,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.02732,"13.1":0.01561,"14.1":0.02732,"15.1":0.00781,"15.2-15.3":0.0039,"15.4":0.01171,"15.5":0.00781,"15.6":0.05855,"16.0":0.00781,"16.1":0.01952,"16.2":0.06245,"16.3":0.13661,"16.4":0.05855,"16.5":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.006,"7.0-7.1":0.04198,"8.1-8.4":0.02799,"9.0-9.2":0,"9.3":0.05797,"10.0-10.2":0.00999,"10.3":0.12993,"11.0-11.2":0.004,"11.3-11.4":0.00999,"12.0-12.1":0.004,"12.2-12.5":0.27186,"13.0-13.1":0.002,"13.2":0,"13.3":0.02399,"13.4-13.7":0.04198,"14.0-14.4":0.16392,"14.5-14.8":0.76161,"15.0-15.1":0.13193,"15.2-15.3":0.2039,"15.4":0.1939,"15.5":0.40379,"15.6":1.32133,"16.0":1.43927,"16.1":2.22487,"16.2":1.30933,"16.3":6.4727,"16.4":3.68213,"16.5":0.04198},P:{"4":0.2861,"20":3.63751,"5.0-5.4":0.01022,"6.2-6.4":0,"7.2-7.4":0.03065,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.01022,"12.0":0,"13.0":0.03065,"14.0":0.02044,"15.0":0.02044,"16.0":0.1124,"17.0":0.02044,"18.0":0.08174,"19.0":0.18392},I:{"0":0,"3":0,"4":0.00612,"2.1":0,"2.2":0.00408,"2.3":0.00612,"4.1":0.02041,"4.2-4.3":0.01837,"4.4":0,"4.4.3-4.4.4":0.10002},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0.0039,"8":0.03903,"9":0.0039,"10":0.0039,"11":0.03903,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0.01219},R:{_:"0"},M:{"0":0.21949},Q:{"13.1":0},O:{"0":0.02439},H:{"0":0.29438},L:{"0":61.088}};
diff --git a/node_modules/caniuse-lite/data/regions/MG.js b/node_modules/caniuse-lite/data/regions/MG.js
new file mode 100644
index 0000000..ea7ecf7
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/MG.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0.00505,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00505,"48":0.01516,"49":0,"50":0,"51":0,"52":0.03538,"53":0,"54":0,"55":0,"56":0.00505,"57":0,"58":0,"59":0.00505,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00505,"67":0,"68":0.01516,"69":0,"70":0,"71":0,"72":0.01011,"73":0.00505,"74":0,"75":0,"76":0.00505,"77":0,"78":0.04043,"79":0.00505,"80":0,"81":0.01011,"82":0,"83":0,"84":0.00505,"85":0,"86":0,"87":0,"88":0.01011,"89":0.01011,"90":0.00505,"91":0.00505,"92":0.00505,"93":0,"94":0.00505,"95":0.00505,"96":0.00505,"97":0.00505,"98":0.01011,"99":0.01011,"100":0.00505,"101":0.00505,"102":0.07076,"103":0.00505,"104":0.01011,"105":0.01011,"106":0.01516,"107":0.02022,"108":0.04043,"109":0.03538,"110":0.08592,"111":1.51115,"112":1.18264,"113":0.02022,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.02527,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0.01516,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0.00505,"43":0.00505,"44":0,"45":0,"46":0.00505,"47":0,"48":0,"49":0.01516,"50":0.00505,"51":0,"52":0,"53":0,"54":0,"55":0.01516,"56":0.03032,"57":0.01011,"58":0.00505,"59":0,"60":0,"61":0,"62":0,"63":0.00505,"64":0.00505,"65":0.00505,"66":0.00505,"67":0.00505,"68":0.00505,"69":0.01516,"70":0.01011,"71":0.01011,"72":0.00505,"73":0.00505,"74":0.03032,"75":0.00505,"76":0,"77":0,"78":0.00505,"79":0.01516,"80":0.02022,"81":0.03032,"83":0.00505,"84":0.00505,"85":0,"86":0.04043,"87":0.03032,"88":0.02527,"89":0.01011,"90":0.01516,"91":0.01011,"92":0.00505,"93":0.01011,"94":0.00505,"95":0.05559,"96":0.08592,"97":0.05559,"98":0.03538,"99":0.02022,"100":0.04043,"101":0.02022,"102":0.06065,"103":0.08592,"104":0.04043,"105":0.09603,"106":0.07581,"107":0.1213,"108":0.19205,"109":3.86631,"110":0.14657,"111":3.75007,"112":5.02368,"113":0.00505,"114":0.00505,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0.01011,"16":0,"17":0,"18":0.00505,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.00505,"27":0.00505,"28":0.01011,"29":0,"30":0.00505,"31":0,"32":0.00505,"33":0,"34":0,"35":0,"36":0.01011,"37":0.00505,"38":0,"39":0,"40":0,"41":0,"42":0.02527,"43":0,"44":0,"45":0,"46":0.00505,"47":0,"48":0,"49":0,"50":0,"51":0.00505,"52":0,"53":0.02022,"54":0.00505,"55":0.00505,"56":0,"57":0,"58":0.01516,"60":0.03032,"62":0,"63":0.03032,"64":0.01516,"65":0.01516,"66":0.01516,"67":0.05559,"68":0.07076,"69":0.17689,"70":0,"71":0,"72":0,"73":0,"74":0.06065,"75":0,"76":0,"77":0,"78":0.01011,"79":0.01516,"80":0.00505,"81":0,"82":0,"83":0,"84":0,"85":0.00505,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00505,"93":0,"94":0.00505,"95":0.12635,"96":0.14151,"97":0.64186,"98":0.02022,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.02527},B:{"12":0,"13":0,"14":0.00505,"15":0.00505,"16":0,"17":0.00505,"18":0.01516,"79":0,"80":0,"81":0,"83":0,"84":0.01011,"85":0.01011,"86":0,"87":0,"88":0,"89":0.02022,"90":0.00505,"91":0,"92":0.02527,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.08592,"101":0,"102":0,"103":0.02022,"104":0,"105":0.00505,"106":0.00505,"107":0.05559,"108":0.01011,"109":0.187,"110":0.07076,"111":0.56605,"112":1.01585,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0.00505,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.01516,"13.1":0.02022,"14.1":0.02527,"15.1":0,"15.2-15.3":0,"15.4":0.01011,"15.5":0.01011,"15.6":0.03032,"16.0":0.00505,"16.1":0.01516,"16.2":0.01516,"16.3":0.09097,"16.4":0.02527,"16.5":0},G:{"8":0,"3.2":0,"4.0-4.1":0.00464,"4.2-4.3":0.00464,"5.0-5.1":0.00397,"6.0-6.1":0.00265,"7.0-7.1":0.03179,"8.1-8.4":0,"9.0-9.2":0.00066,"9.3":0.05961,"10.0-10.2":0.00066,"10.3":0.24773,"11.0-11.2":0.01788,"11.3-11.4":0.01192,"12.0-12.1":0.01722,"12.2-12.5":0.55043,"13.0-13.1":0.01457,"13.2":0.01855,"13.3":0.00927,"13.4-13.7":0.05961,"14.0-14.4":0.18083,"14.5-14.8":0.16758,"15.0-15.1":0.07352,"15.2-15.3":0.13115,"15.4":0.17155,"15.5":0.18745,"15.6":0.25634,"16.0":0.34046,"16.1":0.67959,"16.2":0.40206,"16.3":1.38435,"16.4":0.81273,"16.5":0.00596},P:{"4":0.07152,"20":0.38826,"5.0-5.4":0,"6.2-6.4":0.01022,"7.2-7.4":0.04087,"8.2":0,"9.2":0.04087,"10.1":0,"11.1-11.2":0.01022,"12.0":0.03065,"13.0":0.02043,"14.0":0.01022,"15.0":0.01022,"16.0":0.01022,"17.0":0.05109,"18.0":0.02043,"19.0":0.0613},I:{"0":0,"3":0,"4":0.0015,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01648,"4.2-4.3":0.04194,"4.4":0,"4.4.3-4.4.4":0.24567},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.1213,"5.5":0},S:{"2.5":0.40557,_:"3.0-3.1"},J:{"7":0,"10":0.00989},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.27698},Q:{"13.1":0.01978},O:{"0":1.23155},H:{"0":4.89795},L:{"0":59.60338}};
diff --git a/node_modules/caniuse-lite/data/regions/MH.js b/node_modules/caniuse-lite/data/regions/MH.js
new file mode 100644
index 0000000..92bc37b
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/MH.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.01889,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.0063,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0.09447,"111":0.65499,"112":0.19524,"113":0,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0.01889,"52":0,"53":0,"54":0,"55":0,"56":0.0063,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.02519,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.12596,"74":0,"75":0.0063,"76":0.05038,"77":0.11966,"78":0,"79":0,"80":0,"81":0.02519,"83":0,"84":0,"85":0.12596,"86":0,"87":0,"88":0,"89":0,"90":0.02519,"91":0,"92":0,"93":0.21413,"94":0,"95":0,"96":0,"97":0,"98":0.0063,"99":0,"100":0,"101":0.17005,"102":0,"103":0.20154,"104":0,"105":0,"106":0.11966,"107":0.02519,"108":0.11336,"109":0.70538,"110":0.11966,"111":11.0341,"112":10.68141,"113":0,"114":0,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.02519,"96":0.03149,"97":0.17005,"98":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.02519,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.03779,"103":0,"104":0,"105":0.01889,"106":0,"107":0,"108":0.0063,"109":0.07558,"110":0.05038,"111":1.16513,"112":4.01812,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.01889,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.06928,"14.1":0.37158,"15.1":0,"15.2-15.3":0.01889,"15.4":0.22043,"15.5":0,"15.6":0.08817,"16.0":0.35899,"16.1":0.13226,"16.2":1.07696,"16.3":0.29601,"16.4":0.44716,"16.5":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.39523,"10.0-10.2":0,"10.3":0.07832,"11.0-11.2":0.01275,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":1.55361,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0,"14.0-14.4":0.05282,"14.5-14.8":0.72489,"15.0-15.1":0.14389,"15.2-15.3":0.13114,"15.4":0.23677,"15.5":0.11839,"15.6":1.09281,"16.0":1.96159,"16.1":2.77755,"16.2":1.93427,"16.3":3.85578,"16.4":2.14554,"16.5":0.10564},P:{"4":0,"20":1.45601,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0,"12.0":0,"13.0":0,"14.0":0,"15.0":0,"16.0":0,"17.0":0.01025,"18.0":0,"19.0":0.09228},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.6975,"4.4":0,"4.4.3-4.4.4":0},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.08187,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.25544},Q:{"13.1":0},O:{"0":0.33688},H:{"0":0.09463},L:{"0":44.21788}};
diff --git a/node_modules/caniuse-lite/data/regions/MK.js b/node_modules/caniuse-lite/data/regions/MK.js
new file mode 100644
index 0000000..1ece5ac
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/MK.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00427,"48":0.00853,"49":0,"50":0.00427,"51":0.00427,"52":0.04694,"53":0.00853,"54":0,"55":0,"56":0.0128,"57":0.0128,"58":0,"59":0,"60":0,"61":0.00427,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00427,"69":0,"70":0,"71":0,"72":0.00853,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00427,"80":0.00427,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.00427,"94":0.00427,"95":0,"96":0,"97":0,"98":0,"99":0.00427,"100":0,"101":0,"102":0.0128,"103":0.00427,"104":0.0128,"105":0,"106":0,"107":0.00427,"108":0.00427,"109":0.01707,"110":0.0512,"111":0.48217,"112":0.4267,"113":0.00427,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00427,"35":0,"36":0,"37":0,"38":0.00427,"39":0,"40":0,"41":0,"42":0,"43":0.00427,"44":0.00427,"45":0,"46":0.00427,"47":0.00853,"48":0,"49":0.03414,"50":0,"51":0,"52":0,"53":0.00427,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00427,"64":0.00427,"65":0,"66":0.00427,"67":0,"68":0.00427,"69":0.00427,"70":0.00853,"71":0.00427,"72":0.00427,"73":0.02134,"74":0,"75":0.00427,"76":0.00853,"77":0,"78":0,"79":0.09814,"80":0.00427,"81":0.02134,"83":0.0128,"84":0.00427,"85":0.00853,"86":0.0128,"87":0.02134,"88":0.00853,"89":0.00427,"90":0.00427,"91":0.0128,"92":0.00427,"93":0.00427,"94":0.0128,"95":0.00853,"96":0.00427,"97":0.01707,"98":0.00427,"99":0.0256,"100":0.00853,"101":0.00853,"102":0.0128,"103":0.02134,"104":0.00427,"105":0.0128,"106":0.02987,"107":0.0384,"108":0.0512,"109":1.87748,"110":0.11094,"111":4.74917,"112":5.34228,"113":0.0384,"114":0,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.02134,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00427,"37":0,"38":0,"39":0,"40":0.00427,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00853,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.00427,"70":0,"71":0,"72":0,"73":0,"74":0.00427,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.05547,"96":0.11948,"97":0.34563,"98":0.0128,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00427,"79":0,"80":0,"81":0,"83":0,"84":0.00853,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00427,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0.00427,"106":0,"107":0.00427,"108":0.00427,"109":0.0256,"110":0.0256,"111":0.24322,"112":0.44804,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00427,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.0128,"14.1":0.04267,"15.1":0,"15.2-15.3":0,"15.4":0.00427,"15.5":0.01707,"15.6":0.0384,"16.0":0.00427,"16.1":0.0128,"16.2":0.02134,"16.3":0.07681,"16.4":0.0512,"16.5":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.03669,"8.1-8.4":0.00204,"9.0-9.2":0,"9.3":0.08357,"10.0-10.2":0,"10.3":0.08154,"11.0-11.2":0.00612,"11.3-11.4":0.00612,"12.0-12.1":0.00612,"12.2-12.5":0.39545,"13.0-13.1":0.00204,"13.2":0,"13.3":0.04484,"13.4-13.7":0.08561,"14.0-14.4":0.159,"14.5-14.8":0.54018,"15.0-15.1":0.06931,"15.2-15.3":0.15084,"15.4":0.13046,"15.5":0.28334,"15.6":0.84797,"16.0":1.43707,"16.1":2.40531,"16.2":1.20469,"16.3":7.99663,"16.4":3.11671,"16.5":0.07542},P:{"4":0.23394,"20":2.55303,"5.0-5.4":0.02034,"6.2-6.4":0,"7.2-7.4":0.01017,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.03051,"12.0":0,"13.0":0.03051,"14.0":0.02034,"15.0":0.01017,"16.0":0.02034,"17.0":0.06103,"18.0":0.04069,"19.0":0.12206},I:{"0":0,"3":0,"4":0.00276,"2.1":0,"2.2":0,"2.3":0.00276,"4.1":0.06067,"4.2-4.3":0.01103,"4.4":0,"4.4.3-4.4.4":0.04412},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.0128,"9":0,"10":0.00427,"11":0.02134,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.10319},Q:{"13.1":0},O:{"0":0.0172},H:{"0":0.20625},L:{"0":59.92234}};
diff --git a/node_modules/caniuse-lite/data/regions/ML.js b/node_modules/caniuse-lite/data/regions/ML.js
new file mode 100644
index 0000000..e9a2979
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/ML.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00241,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.01207,"96":0,"97":0,"98":0,"99":0.03621,"100":0,"101":0,"102":0.00483,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0.00241,"110":0.00966,"111":0.17381,"112":0.20278,"113":0,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.05069,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00483,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.00483,"56":0,"57":0,"58":0.00241,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.0169,"66":0,"67":0,"68":0,"69":0,"70":0.00241,"71":0,"72":0,"73":0,"74":0.00241,"75":0,"76":0.00241,"77":0,"78":0,"79":0.00483,"80":0.02655,"81":0.00241,"83":0.00241,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00724,"93":0.00241,"94":0,"95":0.02897,"96":0.00241,"97":0,"98":0.00724,"99":0.00483,"100":0,"101":0,"102":0,"103":0.03862,"104":0,"105":0,"106":0.00483,"107":0.00483,"108":0.01207,"109":0.17139,"110":0.01448,"111":0.71213,"112":0.86421,"113":0,"114":0,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0.00241,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0.00483,"62":0,"63":0,"64":0,"65":0,"66":0.00241,"67":0.02897,"68":0.03138,"69":0.00241,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.03138,"96":0.00483,"97":0.03621,"98":0.00241,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00483,"13":0.00241,"14":0.00724,"15":0.00724,"16":0,"17":0,"18":0.0338,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.00241,"91":0,"92":0.00241,"93":0,"94":0,"95":0,"96":0.00241,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0.00483,"104":0,"105":0.00241,"106":0,"107":0.00724,"108":0.00241,"109":0.12311,"110":0.00966,"111":0.19071,"112":0.55763,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00483,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.00483,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00724,"14.1":0.00241,"15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0,"15.6":0.01207,"16.0":0,"16.1":0,"16.2":0.00241,"16.3":0.00966,"16.4":0.00483,"16.5":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.02725,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.14304,"10.0-10.2":0,"10.3":0.2435,"11.0-11.2":0.01022,"11.3-11.4":0.0017,"12.0-12.1":0.03406,"12.2-12.5":2.27668,"13.0-13.1":0.01362,"13.2":0.20093,"13.3":0.06982,"13.4-13.7":0.16177,"14.0-14.4":0.57726,"14.5-14.8":1.47295,"15.0-15.1":0.70838,"15.2-15.3":0.20945,"15.4":0.4836,"15.5":0.30821,"15.6":0.49212,"16.0":0.53469,"16.1":0.9025,"16.2":0.88717,"16.3":3.09404,"16.4":2.53551,"16.5":0.10217},P:{"4":0.11126,"20":0.81929,"5.0-5.4":0.02023,"6.2-6.4":0.01011,"7.2-7.4":0.30344,"8.2":0,"9.2":0.04046,"10.1":0.05057,"11.1-11.2":0.01011,"12.0":0.01011,"13.0":0.11126,"14.0":0.16183,"15.0":0.01011,"16.0":0.09103,"17.0":0.05057,"18.0":0.03034,"19.0":0.14161},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00063,"4.2-4.3":0.00533,"4.4":0,"4.4.3-4.4.4":0.07715},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00724,"5.5":0},S:{"2.5":0.26551,_:"3.0-3.1"},J:{"7":0,"10":0.02276},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.09862},Q:{"13.1":0.01517},O:{"0":0.46275},H:{"0":1.13475},L:{"0":75.27392}};
diff --git a/node_modules/caniuse-lite/data/regions/MM.js b/node_modules/caniuse-lite/data/regions/MM.js
new file mode 100644
index 0000000..8ee0c5b
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/MM.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00379,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0.00379,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00379,"73":0,"74":0,"75":0,"76":0,"77":0.00758,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.01137,"89":0,"90":0,"91":0.00379,"92":0,"93":0,"94":0,"95":0.00379,"96":0,"97":0.00379,"98":0,"99":0,"100":0,"101":0,"102":0.01516,"103":0.02274,"104":0.00379,"105":0.00379,"106":0.00758,"107":0.00758,"108":0.01137,"109":0.03032,"110":0.04548,"111":0.75421,"112":0.7959,"113":0.02274,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00379,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.00758,"38":0.00379,"39":0,"40":0.00379,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0.00758,"54":0,"55":0.00379,"56":0,"57":0,"58":0.00379,"59":0,"60":0,"61":0.00379,"62":0.00758,"63":0,"64":0,"65":0,"66":0,"67":0.00379,"68":0.00379,"69":0.00379,"70":0.00379,"71":0.01137,"72":0,"73":0,"74":0.01895,"75":0.00379,"76":0.00379,"77":0,"78":0.00758,"79":0.01516,"80":0.00379,"81":0.00758,"83":0.00379,"84":0.00379,"85":0.00379,"86":0.00758,"87":0.01895,"88":0.00758,"89":0.00758,"90":0,"91":0.00379,"92":0.00758,"93":0,"94":0.00379,"95":0.00379,"96":0.00379,"97":0.00758,"98":0.00379,"99":0.04169,"100":0.01516,"101":0.00758,"102":0.00758,"103":0.02274,"104":0.00758,"105":0.03032,"106":0.00758,"107":0.01895,"108":0.05306,"109":0.45859,"110":0.07959,"111":2.37254,"112":3.76726,"113":0.00758,"114":0.00379,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.00758,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00379,"64":0,"65":0,"66":0,"67":0.00379,"68":0.00758,"69":0.01895,"70":0.00379,"71":0,"72":0,"73":0,"74":0.00379,"75":0.00379,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.00758,"96":0.0379,"97":0.14023,"98":0.01137,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00379,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.01137,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.01137,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00379,"101":0,"102":0,"103":0,"104":0,"105":0.00379,"106":0,"107":0.00379,"108":0.00379,"109":0.01137,"110":0.02653,"111":0.25772,"112":0.75042,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00379,"14":0.01895,"15":0.00758,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00379,"13.1":0.0379,"14.1":0.25772,"15.1":0.01137,"15.2-15.3":0.00758,"15.4":0.01895,"15.5":0.07959,"15.6":0.1895,"16.0":0.01895,"16.1":0.07201,"16.2":0.09854,"16.3":0.36763,"16.4":0.18192,"16.5":0.00379},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00262,"5.0-5.1":0.00262,"6.0-6.1":0.00392,"7.0-7.1":0.00785,"8.1-8.4":0.01962,"9.0-9.2":0.01047,"9.3":0.08112,"10.0-10.2":0.01832,"10.3":0.09812,"11.0-11.2":0.01701,"11.3-11.4":0.00785,"12.0-12.1":0.00392,"12.2-12.5":0.40166,"13.0-13.1":0.00131,"13.2":0.00392,"13.3":0.01701,"13.4-13.7":0.10597,"14.0-14.4":0.15177,"14.5-14.8":0.2826,"15.0-15.1":0.1413,"15.2-15.3":0.157,"15.4":0.22896,"15.5":0.34409,"15.6":0.51548,"16.0":0.92891,"16.1":1.37375,"16.2":0.80201,"16.3":3.67379,"16.4":2.31836,"16.5":0.03925},P:{"4":0.22742,"20":1.17846,"5.0-5.4":0,"6.2-6.4":0.02067,"7.2-7.4":0.02067,"8.2":0,"9.2":0,"10.1":0.01034,"11.1-11.2":0.03101,"12.0":0,"13.0":0.01034,"14.0":0.01034,"15.0":0.01034,"16.0":0.02067,"17.0":0.03101,"18.0":0.04135,"19.0":0.0827},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00318,"4.2-4.3":0.01588,"4.4":0,"4.4.3-4.4.4":0.35094},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00948,"9":0.00474,"10":0.00474,"11":0.01895,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.16767},Q:{"13.1":0.03105},O:{"0":2.09277},H:{"0":0.43506},L:{"0":68.4603}};
diff --git a/node_modules/caniuse-lite/data/regions/MN.js b/node_modules/caniuse-lite/data/regions/MN.js
new file mode 100644
index 0000000..fa6a636
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/MN.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00467,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00467,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0.00467,"97":0,"98":0,"99":0,"100":0,"101":0.00467,"102":0.00934,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0.00467,"109":0.03736,"110":0.1868,"111":0.41563,"112":0.35025,"113":0.00934,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0.00467,"45":0,"46":0,"47":0,"48":0,"49":0.00467,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00467,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.00467,"70":0.00934,"71":0.02335,"72":0,"73":0.00467,"74":0.02335,"75":0,"76":0,"77":0.00467,"78":0.00934,"79":0.01868,"80":0.00934,"81":0.00934,"83":0,"84":0.00467,"85":0.00934,"86":0.00934,"87":0.01401,"88":0.00467,"89":0.00467,"90":0.00467,"91":0.00934,"92":0.00934,"93":0.00467,"94":0.00467,"95":0.00467,"96":0.01401,"97":0.00934,"98":0.00934,"99":0.02335,"100":0.01401,"101":0.00934,"102":0.01868,"103":0.08873,"104":0.02802,"105":0.05137,"106":0.01868,"107":0.02802,"108":0.06071,"109":2.08749,"110":0.22416,"111":5.09964,"112":6.09902,"113":0.01401,"114":0.00467,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00467,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00467,"69":0.00467,"70":0,"71":0,"72":0,"73":0,"74":0.00467,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00467,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.03736,"96":0.14944,"97":0.46233,"98":0.01401,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00467,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00467,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00467,"90":0.00467,"91":0,"92":0.00934,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00467,"101":0,"102":0,"103":0,"104":0.00467,"105":0,"106":0,"107":0.00934,"108":0.00934,"109":0.06538,"110":0.08873,"111":0.69116,"112":1.46638,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00467,"14":0.03736,"15":0.01401,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00467,"13.1":0.0467,"14.1":0.08406,"15.1":0.01868,"15.2-15.3":0.01868,"15.4":0.01868,"15.5":0.03736,"15.6":0.19614,"16.0":0.02802,"16.1":0.08406,"16.2":0.10741,"16.3":0.26619,"16.4":0.08873,"16.5":0.00467},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.01044,"8.1-8.4":0.00348,"9.0-9.2":0,"9.3":0.04175,"10.0-10.2":0,"10.3":0.05218,"11.0-11.2":0.01044,"11.3-11.4":0.01739,"12.0-12.1":0.01044,"12.2-12.5":0.5636,"13.0-13.1":0.01392,"13.2":0,"13.3":0.04523,"13.4-13.7":0.17047,"14.0-14.4":0.57751,"14.5-14.8":0.90802,"15.0-15.1":0.37921,"15.2-15.3":0.40356,"15.4":0.45227,"15.5":0.70971,"15.6":1.31854,"16.0":3.93473,"16.1":4.09824,"16.2":2.79363,"16.3":11.47717,"16.4":4.32786,"16.5":0.1496},P:{"4":0.18382,"20":2.99225,"5.0-5.4":0.02042,"6.2-6.4":0.01021,"7.2-7.4":0.13276,"8.2":0,"9.2":0.01021,"10.1":0,"11.1-11.2":0.02042,"12.0":0,"13.0":0.03064,"14.0":0.03064,"15.0":0.05106,"16.0":0.0817,"17.0":0.09191,"18.0":0.0817,"19.0":0.26552},I:{"0":0,"3":0,"4":0.00956,"2.1":0,"2.2":0.00382,"2.3":0.00382,"4.1":0.01721,"4.2-4.3":0.01912,"4.4":0,"4.4.3-4.4.4":0.10515},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0.00467,"8":0.02802,"9":0.00467,"10":0.00467,"11":0.03736,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0.00533},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.12792},Q:{"13.1":0},O:{"0":0.12792},H:{"0":0.11101},L:{"0":41.27737}};
diff --git a/node_modules/caniuse-lite/data/regions/MO.js b/node_modules/caniuse-lite/data/regions/MO.js
new file mode 100644
index 0000000..568485a
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/MO.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.0849,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.00531,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0.03714,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.01592,"101":0,"102":0.01061,"103":0,"104":0.00531,"105":0.00531,"106":0,"107":0,"108":0.01592,"109":0.00531,"110":0.01061,"111":0.37142,"112":0.22816,"113":0,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0.01061,"23":0,"24":0,"25":0,"26":0.00531,"27":0,"28":0,"29":0,"30":0.00531,"31":0,"32":0,"33":0,"34":0.04245,"35":0,"36":0,"37":0,"38":0.12204,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.02653,"50":0,"51":0,"52":0,"53":0.01592,"54":0,"55":0.03714,"56":0,"57":0.00531,"58":0.01592,"59":0,"60":0,"61":0.06367,"62":0.01061,"63":0,"64":0,"65":0,"66":0,"67":0.00531,"68":0,"69":0.00531,"70":0.02122,"71":0,"72":0.00531,"73":0.01061,"74":0.02122,"75":0.00531,"76":0.00531,"77":0.01061,"78":0.02653,"79":0.33958,"80":0.03184,"81":0.00531,"83":0.02122,"84":0,"85":0.00531,"86":0.01592,"87":0.06898,"88":0.00531,"89":0.03714,"90":0.01061,"91":0.00531,"92":0.04245,"93":0.00531,"94":0.00531,"95":0.01592,"96":0.02122,"97":0.0902,"98":0.07428,"99":0.18571,"100":0.0902,"101":0.04245,"102":0.04775,"103":0.16449,"104":0.04245,"105":0.11143,"106":0.04245,"107":0.0849,"108":0.14326,"109":1.33711,"110":0.23346,"111":4.5101,"112":7.26922,"113":0.01061,"114":0.02122,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.02122,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.03184,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.05306,"47":0,"48":0.00531,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.00531,"71":0,"72":0,"73":0,"74":0.02653,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.02653,"96":0.02122,"97":0.05837,"98":0.00531,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00531,"13":0,"14":0,"15":0,"16":0.00531,"17":0,"18":0.03184,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0.00531,"106":0.00531,"107":0.01061,"108":0.02653,"109":0.10612,"110":0.02122,"111":0.50407,"112":1.37425,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.04245,"14":0.23346,"15":0.03714,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.05837,"13.1":0.1804,"14.1":0.56244,"15.1":0.06898,"15.2-15.3":0.06367,"15.4":0.12204,"15.5":0.20693,"15.6":0.68447,"16.0":0.05306,"16.1":0.13796,"16.2":0.29714,"16.3":1.57058,"16.4":0.57305,"16.5":0.01061},G:{"8":0.00412,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.02058,"6.0-6.1":0.11113,"7.0-7.1":0.09878,"8.1-8.4":0.09466,"9.0-9.2":0.06174,"9.3":0.40334,"10.0-10.2":0.04116,"10.3":0.69968,"11.0-11.2":0.17698,"11.3-11.4":0.10701,"12.0-12.1":0.09466,"12.2-12.5":2.22662,"13.0-13.1":0.06997,"13.2":0.02469,"13.3":0.08231,"13.4-13.7":0.29633,"14.0-14.4":0.84373,"14.5-14.8":1.91382,"15.0-15.1":0.42804,"15.2-15.3":0.69145,"15.4":0.89723,"15.5":0.79022,"15.6":2.50237,"16.0":1.83974,"16.1":3.88115,"16.2":2.33363,"16.3":11.54055,"16.4":6.99677,"16.5":0.04527},P:{"4":1.28326,"20":2.4559,"5.0-5.4":0.03319,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0.05531,"10.1":0,"11.1-11.2":0.04425,"12.0":0,"13.0":0.03319,"14.0":0.01106,"15.0":0,"16.0":0.03319,"17.0":0.04425,"18.0":0.01106,"19.0":0.0885},I:{"0":0,"3":0,"4":0.00898,"2.1":0.00539,"2.2":0.00719,"2.3":0.01078,"4.1":0.01078,"4.2-4.3":0.02694,"4.4":0,"4.4.3-4.4.4":0.12933},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.06519,"9":0.0163,"10":0.0163,"11":0.13038,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0.00469},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.21592},Q:{"13.1":0.09388},O:{"0":0.5445},H:{"0":0.08444},L:{"0":28.74747}};
diff --git a/node_modules/caniuse-lite/data/regions/MP.js b/node_modules/caniuse-lite/data/regions/MP.js
new file mode 100644
index 0000000..9144da9
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/MP.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00721,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.01442,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.01442,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00721,"103":0.36771,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0,"111":0.28119,"112":2.09811,"113":0,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00721,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.01442,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0.00721,"77":0,"78":0,"79":0.59122,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0.37492,"88":0,"89":0,"90":0,"91":0.01442,"92":0,"93":0.00721,"94":0,"95":0,"96":0,"97":0.00721,"98":0,"99":0,"100":0.00721,"101":0,"102":0,"103":0.2163,"104":0.02884,"105":0.02884,"106":8.87551,"107":0.00721,"108":0.05047,"109":1.0094,"110":0.52633,"111":12.20653,"112":8.40686,"113":0.02884,"114":0.02163,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.04326,"96":0.28119,"97":1.18244,"98":0.02163,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0.00721,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0.01442,"108":0,"109":0.08652,"110":0.06489,"111":1.48526,"112":4.59998,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.02884,"14":0.46144,"15":0.00721,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00721,"13.1":0.03605,"14.1":1.21128,"15.1":0.01442,"15.2-15.3":0.01442,"15.4":0.05047,"15.5":0.05047,"15.6":0.18746,"16.0":0.02884,"16.1":0.05047,"16.2":0.42539,"16.3":1.96112,"16.4":0.1442,"16.5":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.05591,"10.0-10.2":0,"10.3":0.14355,"11.0-11.2":0.00907,"11.3-11.4":0.00756,"12.0-12.1":0.00453,"12.2-12.5":0.24026,"13.0-13.1":0.0136,"13.2":0,"13.3":0.00453,"13.4-13.7":0,"14.0-14.4":1.57301,"14.5-14.8":0.2055,"15.0-15.1":0.72379,"15.2-15.3":0.01209,"15.4":0.05742,"15.5":0.11182,"15.6":1.33275,"16.0":0.92325,"16.1":2.08374,"16.2":1.06227,"16.3":4.16295,"16.4":1.96286,"16.5":0.04684},P:{"4":0,"20":4.54462,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0,"12.0":0,"13.0":0,"14.0":0,"15.0":0,"16.0":0,"17.0":0,"18.0":0.07247,"19.0":0.03106},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.58869},Q:{"13.1":0},O:{"0":0.00558},H:{"0":0.03962},L:{"0":28.3056}};
diff --git a/node_modules/caniuse-lite/data/regions/MQ.js b/node_modules/caniuse-lite/data/regions/MQ.js
new file mode 100644
index 0000000..459912b
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/MQ.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00446,"53":0,"54":0.00446,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0.09808,"77":0,"78":0.00446,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.02229,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00446,"100":0.00446,"101":0,"102":0.02229,"103":0,"104":0.00446,"105":0.00446,"106":0,"107":0.01783,"108":0.00446,"109":0.00446,"110":0.01337,"111":0.94955,"112":0.93172,"113":0,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00446,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00446,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00446,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0.00446,"88":0.00446,"89":0,"90":0.00446,"91":0,"92":0,"93":0.00446,"94":0.00446,"95":0.04904,"96":0,"97":0,"98":0.00892,"99":0.00446,"100":0.01337,"101":0.00892,"102":0.04458,"103":0.01783,"104":0.00892,"105":0.01337,"106":0,"107":0.02229,"108":0.01783,"109":0.50375,"110":0.20953,"111":4.02112,"112":4.59174,"113":0,"114":0,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.08024,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.00892,"96":0.33881,"97":0.40568,"98":0.02229,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00446,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00446,"103":0,"104":0.09808,"105":0,"106":0.00446,"107":0.00446,"108":0.01783,"109":0.06241,"110":0.04458,"111":0.76232,"112":1.6138,"113":0.00892},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00446,"14":0.02675,"15":0.00892,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00446,"12.1":0.02229,"13.1":0.07579,"14.1":0.09808,"15.1":0.03566,"15.2-15.3":0.03566,"15.4":0.23627,"15.5":0.11591,"15.6":0.18724,"16.0":0.04458,"16.1":0.09362,"16.2":0.17832,"16.3":0.74894,"16.4":0.25856,"16.5":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.39542,"10.0-10.2":0,"10.3":0.08754,"11.0-11.2":0.02415,"11.3-11.4":0.00906,"12.0-12.1":0.00604,"12.2-12.5":0.11772,"13.0-13.1":0,"13.2":0,"13.3":0.01207,"13.4-13.7":0.03018,"14.0-14.4":0.3924,"14.5-14.8":0.34109,"15.0-15.1":0.15394,"15.2-15.3":0.25355,"15.4":0.22337,"15.5":0.49201,"15.6":1.59677,"16.0":2.49024,"16.1":5.08612,"16.2":2.52646,"16.3":9.30594,"16.4":5.50569,"16.5":0.12979},P:{"4":0.03103,"20":3.96184,"5.0-5.4":0.01034,"6.2-6.4":0,"7.2-7.4":0.05172,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.05172,"12.0":0,"13.0":0.01034,"14.0":0.04138,"15.0":0.01034,"16.0":0.13448,"17.0":0.04138,"18.0":0.04138,"19.0":0.1862},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01062,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.12745},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01337,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.41011},Q:{"13.1":0},O:{"0":0.01108},H:{"0":0.19938},L:{"0":45.6253}};
diff --git a/node_modules/caniuse-lite/data/regions/MR.js b/node_modules/caniuse-lite/data/regions/MR.js
new file mode 100644
index 0000000..bc14656
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/MR.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00146,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.00582,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00291,"99":0,"100":0.00146,"101":0,"102":0.00146,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0.00291,"109":0,"110":0.00291,"111":0.08294,"112":0.06548,"113":0.00728,"114":0.01019,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0.00146,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.01164,"41":0,"42":0,"43":0.00146,"44":0,"45":0,"46":0.00146,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00291,"69":0,"70":0.00146,"71":0,"72":0.00582,"73":0,"74":0.00146,"75":0,"76":0,"77":0.00437,"78":0,"79":0,"80":0,"81":0.00146,"83":0.00291,"84":0.00146,"85":0,"86":0,"87":0.00437,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.00146,"94":0.00146,"95":0.00291,"96":0,"97":0,"98":0.00291,"99":0.02328,"100":0.00146,"101":0,"102":0,"103":0.00291,"104":0.00146,"105":0.00291,"106":0.00146,"107":0.02037,"108":0.00728,"109":0.14987,"110":0.01164,"111":0.30846,"112":0.34484,"113":0,"114":0,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0.00146,"62":0,"63":0.02328,"64":0.00146,"65":0,"66":0.00146,"67":0.00437,"68":0.00582,"69":0.01746,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0.00582,"83":0,"84":0,"85":0.00582,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00146,"93":0,"94":0,"95":0.00437,"96":0.00582,"97":0.03201,"98":0.00291,"9.5-9.6":0,"10.0-10.1":0,"10.5":0.00291,"10.6":0.00291,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00146},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00146,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00291,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0.00146,"108":0,"109":0.00728,"110":0.00291,"111":0.05529,"112":0.12222,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00291,"15":0.00146,_:"0","3.1":0,"3.2":0,"5.1":0.02619,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00146,"14.1":0.00582,"15.1":0,"15.2-15.3":0,"15.4":0.00291,"15.5":0.00291,"15.6":0.01455,"16.0":0,"16.1":0.00728,"16.2":0.00146,"16.3":0.01601,"16.4":0.00437,"16.5":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.0448,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.03734,"10.0-10.2":0,"10.3":0.0112,"11.0-11.2":0.01493,"11.3-11.4":0,"12.0-12.1":0.0336,"12.2-12.5":4.40203,"13.0-13.1":0.33977,"13.2":0.48911,"13.3":0.08588,"13.4-13.7":3.11017,"14.0-14.4":12.11211,"14.5-14.8":0.86995,"15.0-15.1":0.46671,"15.2-15.3":0.33603,"15.4":0.41071,"15.5":0.71314,"15.6":0.63846,"16.0":1.6615,"16.1":1.57935,"16.2":1.81831,"16.3":3.84197,"16.4":2.91602,"16.5":0.06347},P:{"4":0.28326,"20":1.35561,"5.0-5.4":0.03035,"6.2-6.4":0.0607,"7.2-7.4":0.95095,"8.2":0,"9.2":0.03035,"10.1":0.03035,"11.1-11.2":0.10116,"12.0":0.01012,"13.0":0.03035,"14.0":0.09105,"15.0":0.09105,"16.0":0.33384,"17.0":0.22256,"18.0":0.19221,"19.0":0.58676},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00212,"4.4":0,"4.4.3-4.4.4":0.02807},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00482,"9":0,"10":0,"11":0.02573,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.14527},Q:{"13.1":0},O:{"0":0.33326},H:{"0":0.77663},L:{"0":55.82465}};
diff --git a/node_modules/caniuse-lite/data/regions/MS.js b/node_modules/caniuse-lite/data/regions/MS.js
new file mode 100644
index 0000000..fab226b
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/MS.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.02784,"101":0,"102":0.03897,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0,"111":0.42866,"112":0.08351,"113":0,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0.89629,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.01113,"94":0,"95":0,"96":0,"97":0.01113,"98":0,"99":0.01113,"100":0,"101":0,"102":0,"103":0.01113,"104":0,"105":0.03897,"106":0.02784,"107":0,"108":0,"109":2.49958,"110":0.21711,"111":8.07772,"112":8.48968,"113":0,"114":0,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0.01113,"97":0.17258,"98":0.0167,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0.0167,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0.01113,"111":0.41196,"112":2.16,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.05567,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.01113,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.28392,"14.1":0.09464,"15.1":0,"15.2-15.3":0.0167,"15.4":0,"15.5":0.16144,"15.6":0.14474,"16.0":0,"16.1":0.0501,"16.2":0.0167,"16.3":0.92412,"16.4":0.03897,"16.5":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0,"10.0-10.2":0,"10.3":0.21578,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":0.03567,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":5.992,"14.0-14.4":0,"14.5-14.8":0.19617,"15.0-15.1":0,"15.2-15.3":0.03567,"15.4":0,"15.5":0,"15.6":0.39412,"16.0":0.37628,"16.1":3.91085,"16.2":0.84352,"16.3":2.3861,"16.4":2.85333,"16.5":0},P:{"4":0,"20":1.69973,"5.0-5.4":0,"6.2-6.4":0.02251,"7.2-7.4":0.42775,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0,"12.0":0,"13.0":0,"14.0":0,"15.0":0,"16.0":0.03377,"17.0":0.03377,"18.0":0.0788,"19.0":1.00183},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":2.22226},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.17289},Q:{"13.1":0},O:{"0":0},H:{"0":0},L:{"0":49.86582}};
diff --git a/node_modules/caniuse-lite/data/regions/MT.js b/node_modules/caniuse-lite/data/regions/MT.js
new file mode 100644
index 0000000..37cce95
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/MT.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.02695,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.0485,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00539,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00539,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.01617,"103":0,"104":0,"105":0,"106":0,"107":0.02156,"108":0,"109":0.00539,"110":0.02695,"111":0.4904,"112":0.42573,"113":0,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.01078,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00539,"66":0,"67":0,"68":0.00539,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0.00539,"75":0,"76":0.00539,"77":0.01617,"78":0.01078,"79":0.02695,"80":0.00539,"81":0.00539,"83":0.00539,"84":0,"85":0.00539,"86":0.00539,"87":0.01617,"88":0.00539,"89":0,"90":0.00539,"91":0,"92":0.00539,"93":0.26945,"94":0,"95":0,"96":0,"97":0.00539,"98":0.01078,"99":0.01078,"100":0.02156,"101":0.00539,"102":0.00539,"103":0.06467,"104":0.00539,"105":0.03772,"106":0.01617,"107":0.14011,"108":0.12934,"109":0.82452,"110":0.24789,"111":7.92722,"112":9.24752,"113":0.00539,"114":0,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.01617,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00539,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.01078,"69":0.02695,"70":0,"71":0,"72":0,"73":0,"74":0.00539,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.01617,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0.194,"97":0.46884,"98":0.01078,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0.00539,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0.00539,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0.00539,"105":0,"106":0,"107":0.00539,"108":0.00539,"109":0.08084,"110":0.05389,"111":0.92691,"112":2.2041,"113":0.01078},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00539,"14":0.04311,"15":0.00539,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.01617,"13.1":0.02695,"14.1":0.097,"15.1":0.01078,"15.2-15.3":0.01617,"15.4":0.03233,"15.5":0.0485,"15.6":0.26406,"16.0":0.08084,"16.1":0.15089,"16.2":0.13473,"16.3":0.70057,"16.4":0.2964,"16.5":0},G:{"8":0.01856,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.0053,"7.0-7.1":0.00795,"8.1-8.4":0.01325,"9.0-9.2":0,"9.3":0.02386,"10.0-10.2":0,"10.3":0.69455,"11.0-11.2":0,"11.3-11.4":0.01591,"12.0-12.1":0.0053,"12.2-12.5":0.2757,"13.0-13.1":0.0053,"13.2":0,"13.3":0.0053,"13.4-13.7":0.02651,"14.0-14.4":0.21738,"14.5-14.8":0.43741,"15.0-15.1":0.07688,"15.2-15.3":0.20147,"15.4":0.20677,"15.5":0.37378,"15.6":0.99411,"16.0":2.30898,"16.1":3.18909,"16.2":2.0863,"16.3":9.56993,"16.4":4.7452,"16.5":0.16171},P:{"4":0.10353,"20":2.46409,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.01035,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.01035,"12.0":0,"13.0":0.01035,"14.0":0.01035,"15.0":0.03106,"16.0":0.01035,"17.0":0.01035,"18.0":0.02071,"19.0":0.10353},I:{"0":0,"3":0,"4":0.03453,"2.1":0,"2.2":0,"2.3":0.01726,"4.1":0.03453,"4.2-4.3":0.07768,"4.4":0,"4.4.3-4.4.4":0.35389},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.03233,"9":0.00539,"10":0.00539,"11":0.09161,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0.00461},N:{"10":0.00922,"11":0},R:{_:"0"},M:{"0":0.23055},Q:{"13.1":0},O:{"0":0.24899},H:{"0":0.24446},L:{"0":41.60317}};
diff --git a/node_modules/caniuse-lite/data/regions/MU.js b/node_modules/caniuse-lite/data/regions/MU.js
new file mode 100644
index 0000000..84693e5
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/MU.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00773,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00386,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00386,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00386,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00386,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00386,"89":0,"90":0,"91":0,"92":0.00773,"93":0,"94":0,"95":0.00386,"96":0,"97":0,"98":0.00386,"99":0,"100":0,"101":0,"102":0.0425,"103":0.00386,"104":0,"105":0,"106":0,"107":0,"108":0.00773,"109":0.00386,"110":0.00773,"111":0.4289,"112":0.29753,"113":0,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00386,"35":0,"36":0,"37":0,"38":0.02318,"39":0,"40":0,"41":0,"42":0,"43":0.00386,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.01159,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00386,"59":0,"60":0,"61":0,"62":0,"63":0.00386,"64":0.00386,"65":0,"66":0,"67":0,"68":0.00386,"69":0,"70":0,"71":0,"72":0.00773,"73":0.00386,"74":0.00386,"75":0,"76":0,"77":0,"78":0.01546,"79":0.06955,"80":0.01159,"81":0.05023,"83":0.00386,"84":0.00773,"85":0.00386,"86":0.00773,"87":0.03864,"88":0.00773,"89":0,"90":0.00386,"91":0.00773,"92":0.00773,"93":0.01159,"94":0,"95":0.00386,"96":0.00773,"97":0.03091,"98":0.00386,"99":0.06955,"100":0.00773,"101":0.01546,"102":0.00386,"103":0.01932,"104":0.01159,"105":0.00773,"106":0.01546,"107":0.01546,"108":0.05023,"109":0.79212,"110":0.14683,"111":3.58193,"112":3.87946,"113":0.00773,"114":0.00386,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.01932,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00386,"64":0,"65":0.00386,"66":0,"67":0.04637,"68":0.01546,"69":0.06182,"70":0,"71":0,"72":0,"73":0,"74":0.01546,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.03091,"96":0.06569,"97":0.23184,"98":0.00773,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0.00386,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00773,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0.00386,"108":0.00386,"109":0.02705,"110":0.01932,"111":0.42118,"112":0.84235,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.01546,"15":0.00386,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00773,"13.1":0.01546,"14.1":0.05023,"15.1":0.00773,"15.2-15.3":0.01546,"15.4":0.01159,"15.5":0.03091,"15.6":0.08501,"16.0":0.00773,"16.1":0.02318,"16.2":0.05023,"16.3":0.24343,"16.4":0.11978,"16.5":0.00386},G:{"8":0.02055,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01413,"6.0-6.1":0.00771,"7.0-7.1":0.06423,"8.1-8.4":0.19525,"9.0-9.2":0.01028,"9.3":0.10276,"10.0-10.2":0,"10.3":0.04111,"11.0-11.2":0.00257,"11.3-11.4":0.01028,"12.0-12.1":0.01028,"12.2-12.5":0.29416,"13.0-13.1":0.00128,"13.2":0.00514,"13.3":0.00771,"13.4-13.7":0.03083,"14.0-14.4":0.04496,"14.5-14.8":0.18241,"15.0-15.1":0.03468,"15.2-15.3":0.12203,"15.4":0.08478,"15.5":0.12589,"15.6":0.50098,"16.0":0.79,"16.1":1.43485,"16.2":0.8568,"16.3":4.62313,"16.4":2.39956,"16.5":0.04881},P:{"4":0.45796,"20":4.74238,"5.0-5.4":0.02035,"6.2-6.4":0,"7.2-7.4":0.18318,"8.2":0,"9.2":0.01018,"10.1":0.02035,"11.1-11.2":0.07124,"12.0":0.01018,"13.0":0.04071,"14.0":0.05088,"15.0":0.03053,"16.0":0.21371,"17.0":0.09159,"18.0":0.07124,"19.0":0.24424},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0032,"4.2-4.3":0.0016,"4.4":0,"4.4.3-4.4.4":0.07998},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.03864,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.46634},Q:{"13.1":0},O:{"0":0.61974},H:{"0":0.60996},L:{"0":64.45575}};
diff --git a/node_modules/caniuse-lite/data/regions/MV.js b/node_modules/caniuse-lite/data/regions/MV.js
new file mode 100644
index 0000000..3030dea
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/MV.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00309,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0.00309,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00309,"100":0,"101":0.00309,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0.00309,"110":0.07098,"111":0.15739,"112":0.15739,"113":0.00309,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00309,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.00309,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.00309,"71":0.00617,"72":0,"73":0.00309,"74":0.00617,"75":0,"76":0,"77":0.00309,"78":0,"79":0.00309,"80":0.00309,"81":0.00309,"83":0.03086,"84":0.00309,"85":0.00309,"86":0.00617,"87":0.00309,"88":0.00309,"89":0,"90":0,"91":0,"92":0.00309,"93":0.00617,"94":0,"95":0.00309,"96":0,"97":0,"98":0,"99":0.00309,"100":0.00309,"101":0.00309,"102":0,"103":0.01234,"104":0.00309,"105":0.01234,"106":0.00926,"107":0.00926,"108":0.00926,"109":0.22528,"110":0.08641,"111":2.43794,"112":2.87615,"113":0.00309,"114":0,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.00309,"68":0.01852,"69":0.05246,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0.00309,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0.03086,"97":0.07715,"98":0.00309,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0.00309,"17":0,"18":0.00309,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00309,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00309,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0.01234,"109":0.00617,"110":0.00926,"111":0.16973,"112":0.34255,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.01234,"14":0.00926,"15":0.00309,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.01234,"14.1":0.03395,"15.1":0.00617,"15.2-15.3":0.01543,"15.4":0.01234,"15.5":0.0216,"15.6":0.07098,"16.0":0.00926,"16.1":0.04938,"16.2":0.04938,"16.3":0.16664,"16.4":0.06172,"16.5":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00646,"6.0-6.1":0,"7.0-7.1":0.00646,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01292,"10.0-10.2":0,"10.3":0.00323,"11.0-11.2":0,"11.3-11.4":0.00969,"12.0-12.1":0,"12.2-12.5":0.14537,"13.0-13.1":0,"13.2":0,"13.3":0.00646,"13.4-13.7":0.07753,"14.0-14.4":0.1583,"14.5-14.8":0.50073,"15.0-15.1":0.11307,"15.2-15.3":0.1906,"15.4":0.24875,"15.5":0.59118,"15.6":1.18883,"16.0":3.21436,"16.1":3.44049,"16.2":2.30012,"16.3":11.3294,"16.4":7.23958,"16.5":0.18737},P:{"4":0.03099,"20":1.46684,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.02066,"8.2":0,"9.2":0.01033,"10.1":0,"11.1-11.2":0.02066,"12.0":0,"13.0":0.01033,"14.0":0,"15.0":0.01033,"16.0":0.05165,"17.0":0.01033,"18.0":0.02066,"19.0":0.08264},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.0535,"4.4":0,"4.4.3-4.4.4":0.14267},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00309,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.27656},Q:{"13.1":0},O:{"0":0.80894},H:{"0":0.56293},L:{"0":56.87731}};
diff --git a/node_modules/caniuse-lite/data/regions/MW.js b/node_modules/caniuse-lite/data/regions/MW.js
new file mode 100644
index 0000000..e8eb013
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/MW.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00322,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00322,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.00322,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00322,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00965,"103":0,"104":0,"105":0.00965,"106":0,"107":0.00322,"108":0.01287,"109":0.01287,"110":0.0193,"111":0.3024,"112":0.2831,"113":0.01609,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0.00322,"36":0,"37":0,"38":0,"39":0,"40":0.00322,"41":0,"42":0,"43":0.00322,"44":0.03539,"45":0,"46":0.00643,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.00965,"56":0.00322,"57":0,"58":0.00322,"59":0,"60":0,"61":0.00643,"62":0,"63":0,"64":0.00643,"65":0,"66":0,"67":0,"68":0,"69":0.00643,"70":0.00643,"71":0,"72":0,"73":0.00322,"74":0.01287,"75":0,"76":0.00322,"77":0.00643,"78":0.00322,"79":0.00965,"80":0.00643,"81":0.0193,"83":0.02895,"84":0,"85":0.00322,"86":0.01287,"87":0.00643,"88":0.00643,"89":0.00322,"90":0.00643,"91":0.00322,"92":0.00643,"93":0.00322,"94":0.00322,"95":0.00643,"96":0.00643,"97":0.00322,"98":0.00643,"99":0.00643,"100":0.00322,"101":0.00643,"102":0.01287,"103":0.02574,"104":0.00643,"105":0.01287,"106":0.0386,"107":0.01609,"108":0.03217,"109":0.29275,"110":0.06112,"111":1.68893,"112":1.97202,"113":0.00322,"114":0,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0.00643,"24":0,"25":0,"26":0.00322,"27":0.00322,"28":0.0193,"29":0.00322,"30":0.00322,"31":0.00965,"32":0.01287,"33":0.00643,"34":0,"35":0.00965,"36":0,"37":0.00322,"38":0.00322,"39":0,"40":0.00322,"41":0,"42":0.0193,"43":0,"44":0.00643,"45":0,"46":0.00322,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0.00643,"55":0.00322,"56":0.00322,"57":0.0193,"58":0.00322,"60":0.10938,"62":0,"63":0.08686,"64":0.02574,"65":0.00965,"66":0.0386,"67":0.15442,"68":0.12868,"69":0.23484,"70":0.00322,"71":0,"72":0,"73":0.00322,"74":0.02895,"75":0.00965,"76":0,"77":0,"78":0,"79":0.00322,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00322,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0.00322,"95":0.03539,"96":0.06112,"97":0.3024,"98":0.02574,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.04182},B:{"12":0.01287,"13":0.00643,"14":0.00322,"15":0.00965,"16":0.00322,"17":0.00643,"18":0.03539,"79":0,"80":0,"81":0,"83":0,"84":0.00965,"85":0,"86":0,"87":0,"88":0.00322,"89":0.00322,"90":0.00965,"91":0,"92":0.03539,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00322,"100":0.00643,"101":0,"102":0.00322,"103":0.00322,"104":0.00322,"105":0.00643,"106":0.00965,"107":0.00965,"108":0.00965,"109":0.06434,"110":0.06756,"111":0.34422,"112":0.63053,"113":0.00322},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00322,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.00965,"6.1":0,"7.1":0,"9.1":0.00322,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00643,"14.1":0.00643,"15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0.00965,"15.6":0.01609,"16.0":0,"16.1":0.00643,"16.2":0.00643,"16.3":0.01609,"16.4":0.00965,"16.5":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00236,"6.0-6.1":0,"7.0-7.1":0.02215,"8.1-8.4":0.00094,"9.0-9.2":0,"9.3":0.04006,"10.0-10.2":0,"10.3":0.03017,"11.0-11.2":0.00236,"11.3-11.4":0.00094,"12.0-12.1":0.01225,"12.2-12.5":0.32805,"13.0-13.1":0.0033,"13.2":0.00047,"13.3":0.83428,"13.4-13.7":0.03865,"14.0-14.4":0.14046,"14.5-14.8":0.12773,"15.0-15.1":0.07777,"15.2-15.3":0.03912,"15.4":0.05279,"15.5":0.1037,"15.6":0.1645,"16.0":0.1546,"16.1":0.27149,"16.2":0.27621,"16.3":0.79374,"16.4":0.70419,"16.5":0.02357},P:{"4":0.21718,"20":0.8377,"5.0-5.4":0.01034,"6.2-6.4":0,"7.2-7.4":0.1965,"8.2":0,"9.2":0.02068,"10.1":0,"11.1-11.2":0.01034,"12.0":0,"13.0":0.01034,"14.0":0.02068,"15.0":0.01034,"16.0":0.07239,"17.0":0.06205,"18.0":0.09308,"19.0":0.11376},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00142,"4.2-4.3":0.0057,"4.4":0,"4.4.3-4.4.4":0.1154},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.02252,"5.5":0},S:{"2.5":0.16279,_:"3.0-3.1"},J:{"7":0,"10":0.29845},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.18314},Q:{"13.1":0.01357},O:{"0":5.77912},H:{"0":7.78953},L:{"0":66.25216}};
diff --git a/node_modules/caniuse-lite/data/regions/MX.js b/node_modules/caniuse-lite/data/regions/MX.js
new file mode 100644
index 0000000..376c0e5
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/MX.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00481,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0.00481,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00481,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.00481,"74":0,"75":0,"76":0,"77":0,"78":0.00962,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00481,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00962,"103":0,"104":0.01443,"105":0.00481,"106":0,"107":0.00481,"108":0.00481,"109":0.00962,"110":0.01924,"111":0.41856,"112":0.42818,"113":0.00481,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00481,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.02406,"50":0,"51":0,"52":0.00962,"53":0,"54":0,"55":0,"56":0.01443,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00481,"66":0.01924,"67":0.00481,"68":0,"69":0,"70":0,"71":0.00481,"72":0,"73":0,"74":0.00481,"75":0.00481,"76":0.00962,"77":0.00481,"78":0.00481,"79":0.05773,"80":0.00481,"81":0.00962,"83":0.00481,"84":0.00481,"85":0.00481,"86":0.00962,"87":0.03368,"88":0.00962,"89":0.01924,"90":0.0433,"91":0.06254,"92":0.0433,"93":0.05292,"94":0.0433,"95":0.00962,"96":0.00962,"97":0.01443,"98":0.00962,"99":0.03849,"100":0.00962,"101":0.00962,"102":0.01443,"103":0.0866,"104":0.01924,"105":0.01924,"106":0.02887,"107":0.03368,"108":0.06254,"109":1.5299,"110":0.15876,"111":5.09485,"112":6.62475,"113":0.00962,"114":0.00481,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00962,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00481,"69":0.01443,"70":0,"71":0,"72":0,"73":0,"74":0.00962,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.02887,"96":0.16839,"97":0.44261,"98":0.01443,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00481,"13":0,"14":0,"15":0,"16":0,"17":0.00481,"18":0.00481,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00962,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00962,"103":0.00481,"104":0,"105":0.00481,"106":0.00481,"107":0.00962,"108":0.00962,"109":0.05292,"110":0.0433,"111":0.71203,"112":1.59244,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00481,"14":0.01924,"15":0.00481,_:"0","3.1":0,"3.2":0,"5.1":0.00481,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00481,"12.1":0.00962,"13.1":0.0433,"14.1":0.06735,"15.1":0.00962,"15.2-15.3":0.00962,"15.4":0.02406,"15.5":0.02887,"15.6":0.15395,"16.0":0.01924,"16.1":0.06254,"16.2":0.07698,"16.3":0.33196,"16.4":0.14914,"16.5":0.00481},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00863,"6.0-6.1":0,"7.0-7.1":0.01208,"8.1-8.4":0.00173,"9.0-9.2":0.02589,"9.3":0.0725,"10.0-10.2":0,"10.3":0.06214,"11.0-11.2":0.00863,"11.3-11.4":0.04488,"12.0-12.1":0.01036,"12.2-12.5":0.35558,"13.0-13.1":0.0069,"13.2":0.00345,"13.3":0.01381,"13.4-13.7":0.0466,"14.0-14.4":0.1191,"14.5-14.8":0.32623,"15.0-15.1":0.07595,"15.2-15.3":0.10702,"15.4":0.10874,"15.5":0.23302,"15.6":0.76811,"16.0":1.12196,"16.1":1.95566,"16.2":1.25314,"16.3":6.3969,"16.4":3.07417,"16.5":0.06904},P:{"4":0.13491,"20":0.83024,"5.0-5.4":0.01038,"6.2-6.4":0,"7.2-7.4":0.06227,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.01038,"12.0":0,"13.0":0.01038,"14.0":0.01038,"15.0":0.01038,"16.0":0.02076,"17.0":0.03113,"18.0":0.01038,"19.0":0.04151},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01836,"4.2-4.3":0.01377,"4.4":0,"4.4.3-4.4.4":0.10559},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.05773,"5.5":0},S:{"2.5":0.01038,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.17643},Q:{"13.1":0},O:{"0":0.05708},H:{"0":0.1965},L:{"0":61.32525}};
diff --git a/node_modules/caniuse-lite/data/regions/MY.js b/node_modules/caniuse-lite/data/regions/MY.js
new file mode 100644
index 0000000..58a9875
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/MY.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00922,"35":0,"36":0,"37":0,"38":0,"39":0.00461,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00461,"53":0.10601,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00461,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00461,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00461,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.01383,"103":0,"104":0,"105":0.00461,"106":0.00461,"107":0.00461,"108":0.00461,"109":0.00922,"110":0.01844,"111":0.35489,"112":0.29037,"113":0.00461,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0.00461,"30":0,"31":0,"32":0,"33":0,"34":0.00922,"35":0,"36":0,"37":0,"38":0.03226,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00461,"48":0,"49":0.01383,"50":0,"51":0,"52":0,"53":0.02765,"54":0,"55":0.02305,"56":0.00461,"57":0,"58":0.00922,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00461,"66":0.00461,"67":0.00461,"68":0,"69":0.00461,"70":0.00922,"71":0.00461,"72":0.00461,"73":0.00922,"74":0.01383,"75":0.01383,"76":0.00461,"77":0.00461,"78":0.00922,"79":0.17975,"80":0.00461,"81":0.03226,"83":0.00922,"84":0.00922,"85":0.00922,"86":0.01844,"87":0.04609,"88":0.01844,"89":0.00922,"90":0.00461,"91":0.03226,"92":0.01844,"93":0.00461,"94":0.02305,"95":0.00922,"96":0.01383,"97":0.02305,"98":0.01383,"99":0.14749,"100":0.02305,"101":0.01383,"102":0.02305,"103":0.05992,"104":0.02765,"105":0.02305,"106":0.02305,"107":0.06453,"108":0.06453,"109":1.332,"110":0.12444,"111":5.36949,"112":5.54463,"113":0.00922,"114":0.00461,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.02765,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.02305,"37":0.00461,"38":0,"39":0,"40":0.00461,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.03687,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.00922,"68":0.01844,"69":0.0507,"70":0,"71":0,"72":0,"73":0,"74":0.00922,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.00922,"96":0.06453,"97":0.15671,"98":0.00461,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0.00461,"109":0.01383,"110":0.01844,"111":0.36872,"112":0.69596,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00922,"14":0.04148,"15":0.01383,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00461,"13.1":0.03226,"14.1":0.11523,"15.1":0.01844,"15.2-15.3":0.01383,"15.4":0.04609,"15.5":0.09218,"15.6":0.32263,"16.0":0.02765,"16.1":0.12905,"16.2":0.1521,"16.3":0.70518,"16.4":0.19819,"16.5":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01282,"6.0-6.1":0.02051,"7.0-7.1":0.03333,"8.1-8.4":0.04359,"9.0-9.2":0.01538,"9.3":0.2487,"10.0-10.2":0.01026,"10.3":0.53586,"11.0-11.2":0.01282,"11.3-11.4":0.01795,"12.0-12.1":0.03333,"12.2-12.5":0.682,"13.0-13.1":0.01538,"13.2":0.00769,"13.3":0.0282,"13.4-13.7":0.09487,"14.0-14.4":0.28203,"14.5-14.8":0.50509,"15.0-15.1":0.20255,"15.2-15.3":0.20768,"15.4":0.36151,"15.5":0.55894,"15.6":1.09993,"16.0":1.9973,"16.1":2.59726,"16.2":2.08191,"16.3":8.31995,"16.4":4.05357,"16.5":0.06923},P:{"4":0.81514,"20":2.03257,"5.0-5.4":0.04235,"6.2-6.4":0,"7.2-7.4":0.04235,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.02117,"12.0":0,"13.0":0.01059,"14.0":0.02117,"15.0":0.02117,"16.0":0.03176,"17.0":0.03176,"18.0":0.03176,"19.0":0.10586},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.07305},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.05531,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.15095},Q:{"13.1":0.00539},O:{"0":0.92725},H:{"0":0.50528},L:{"0":50.66079}};
diff --git a/node_modules/caniuse-lite/data/regions/MZ.js b/node_modules/caniuse-lite/data/regions/MZ.js
new file mode 100644
index 0000000..e5a532e
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/MZ.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00397,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00397,"89":0,"90":0,"91":0.00793,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00397,"99":0.00397,"100":0,"101":0,"102":0.0119,"103":0,"104":0,"105":0,"106":0,"107":0.00397,"108":0.00397,"109":0.00397,"110":0.01586,"111":0.31728,"112":0.23399,"113":0.00397,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00793,"41":0,"42":0.00397,"43":0.00793,"44":0,"45":0,"46":0.00397,"47":0,"48":0,"49":0,"50":0.00397,"51":0,"52":0,"53":0,"54":0,"55":0.01586,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.02776,"64":0.00793,"65":0,"66":0,"67":0.00793,"68":0,"69":0,"70":0.0119,"71":0.00397,"72":0.00397,"73":0,"74":0.0119,"75":0.00397,"76":0.00397,"77":0,"78":0.01983,"79":0.00793,"80":0,"81":0.10708,"83":0.00793,"84":0.00397,"85":0.00397,"86":0.00397,"87":0.03569,"88":0.00397,"89":0,"90":0.00793,"91":0.00793,"92":0.00397,"93":0.00397,"94":0.01983,"95":0.00793,"96":0.00793,"97":0.00397,"98":0.00397,"99":0.00397,"100":0.00397,"101":0.00397,"102":0.0119,"103":0.01586,"104":0.01983,"105":0.01586,"106":0.01983,"107":0.00793,"108":0.0119,"109":1.19773,"110":0.05156,"111":1.88385,"112":2.22096,"113":0.0119,"114":0,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0.00397,"25":0,"26":0.00397,"27":0,"28":0.00397,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0.04363,"36":0,"37":0.00397,"38":0.00397,"39":0,"40":0,"41":0,"42":0.00397,"43":0,"44":0,"45":0,"46":0.0238,"47":0,"48":0,"49":0,"50":0,"51":0.00793,"52":0,"53":0,"54":0,"55":0,"56":0.00397,"57":0.00397,"58":0.00793,"60":0.03966,"62":0,"63":0.12295,"64":0.02776,"65":0.03173,"66":0.03966,"67":0.10312,"68":0.11105,"69":0.1983,"70":0,"71":0,"72":0,"73":0,"74":0.01586,"75":0,"76":0,"77":0,"78":0,"79":0.00397,"80":0.0119,"81":0,"82":0,"83":0,"84":0,"85":0.00397,"86":0.00397,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0.01586,"95":0.07139,"96":0.05156,"97":0.40057,"98":0.02776,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00397},B:{"12":0.00397,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.01586,"79":0,"80":0,"81":0,"83":0,"84":0.00397,"85":0,"86":0,"87":0,"88":0,"89":0.00397,"90":0.00397,"91":0.00397,"92":0.00793,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00397,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0.00397,"107":0.00397,"108":0.00793,"109":0.03173,"110":0.01983,"111":0.31728,"112":0.65042,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00397,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.0119,"14.1":0.00397,"15.1":0,"15.2-15.3":0,"15.4":0.00397,"15.5":0,"15.6":0.01586,"16.0":0,"16.1":0.00397,"16.2":0.00793,"16.3":0.01586,"16.4":0.00793,"16.5":0},G:{"8":0.02546,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00091,"6.0-6.1":0,"7.0-7.1":0.01,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.04364,"10.0-10.2":0,"10.3":0.39095,"11.0-11.2":0.00182,"11.3-11.4":0.00364,"12.0-12.1":0.03182,"12.2-12.5":1.5256,"13.0-13.1":0.02273,"13.2":0.00727,"13.3":0.03546,"13.4-13.7":0.09728,"14.0-14.4":0.67188,"14.5-14.8":0.43822,"15.0-15.1":0.12274,"15.2-15.3":0.31094,"15.4":0.4455,"15.5":0.55914,"15.6":0.48095,"16.0":0.28821,"16.1":0.48186,"16.2":0.36731,"16.3":1.32285,"16.4":0.5446,"16.5":0.00909},P:{"4":0.3891,"20":0.50174,"5.0-5.4":0,"6.2-6.4":0.01024,"7.2-7.4":0.22527,"8.2":0,"9.2":0.06144,"10.1":0,"11.1-11.2":0.03072,"12.0":0,"13.0":0.02048,"14.0":0.02048,"15.0":0.02048,"16.0":0.0512,"17.0":0.06144,"18.0":0.02048,"19.0":0.27647},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00198,"4.4":0,"4.4.3-4.4.4":0.06802},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.0119,"5.5":0},S:{"2.5":0.96544,_:"3.0-3.1"},J:{"7":0,"10":0.00603},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.06637},Q:{"13.1":0.00603},O:{"0":0.19912},H:{"0":5.21561},L:{"0":71.46457}};
diff --git a/node_modules/caniuse-lite/data/regions/NA.js b/node_modules/caniuse-lite/data/regions/NA.js
new file mode 100644
index 0000000..9f894ad
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/NA.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.01319,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.08794,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.0044,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.01319,"79":0,"80":0,"81":0,"82":0.0044,"83":0,"84":0,"85":0.0044,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.0044,"102":0.01319,"103":0.0044,"104":0,"105":0,"106":0.0044,"107":0.01759,"108":0.0044,"109":0.0044,"110":0.01319,"111":0.48807,"112":0.42211,"113":0.0044,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.0044,"41":0,"42":0,"43":0.0044,"44":0,"45":0,"46":0,"47":0,"48":0.0044,"49":0.01319,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.01319,"67":0.0044,"68":0,"69":0.0044,"70":0.0044,"71":0,"72":0,"73":0,"74":0.00879,"75":0,"76":0,"77":0.0044,"78":0.00879,"79":0.0044,"80":0.0044,"81":0.02199,"83":0,"84":0,"85":0,"86":0.0044,"87":0.00879,"88":0.00879,"89":0.01759,"90":0.0044,"91":0.00879,"92":0.0044,"93":0.0044,"94":0.0044,"95":0.00879,"96":0.00879,"97":0,"98":0.01759,"99":0.02199,"100":0.01319,"101":0.0044,"102":0.0044,"103":0.02199,"104":0.00879,"105":0.05276,"106":0.01759,"107":0.03957,"108":0.03078,"109":1.12563,"110":0.08794,"111":4.01446,"112":4.38821,"113":0.0044,"114":0,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.0044,"27":0,"28":0.02199,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0.0044,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0.0044,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0.0044,"62":0,"63":0.0044,"64":0.0044,"65":0,"66":0.00879,"67":0.05276,"68":0.06596,"69":0.18907,"70":0,"71":0,"72":0,"73":0,"74":0.01319,"75":0.01319,"76":0,"77":0,"78":0,"79":0.0044,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.03518,"96":0.07915,"97":0.31658,"98":0.03518,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.01319,"13":0.0044,"14":0.03957,"15":0.01319,"16":0.0044,"17":0,"18":0.02638,"79":0,"80":0,"81":0,"83":0,"84":0.0044,"85":0,"86":0,"87":0,"88":0,"89":0.0044,"90":0.0044,"91":0,"92":0.01759,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0.02199,"106":0.0044,"107":0.01319,"108":0.0044,"109":0.06156,"110":0.04397,"111":0.72551,"112":1.95227,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.0044,"14":0.00879,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.0044,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.0044,"13.1":0.01759,"14.1":0.02638,"15.1":0.0044,"15.2-15.3":0.01319,"15.4":0.00879,"15.5":0.01319,"15.6":0.07475,"16.0":0.0044,"16.1":0.03518,"16.2":0.03518,"16.3":0.21106,"16.4":0.07035,"16.5":0.0044},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.02259,"6.0-6.1":0,"7.0-7.1":0.0505,"8.1-8.4":0.00532,"9.0-9.2":0,"9.3":0.07443,"10.0-10.2":0,"10.3":0.06911,"11.0-11.2":0.0093,"11.3-11.4":0.00266,"12.0-12.1":0.00797,"12.2-12.5":1.08848,"13.0-13.1":0.00797,"13.2":0,"13.3":0.01595,"13.4-13.7":0.02791,"14.0-14.4":0.55819,"14.5-14.8":0.2565,"15.0-15.1":0.36017,"15.2-15.3":0.29106,"15.4":0.05981,"15.5":0.19005,"15.6":0.44921,"16.0":0.82267,"16.1":1.38751,"16.2":0.56085,"16.3":3.73592,"16.4":1.44865,"16.5":0.04386},P:{"4":0.41493,"20":2.53004,"5.0-5.4":0,"6.2-6.4":0.02024,"7.2-7.4":0.33396,"8.2":0,"9.2":0,"10.1":0.03036,"11.1-11.2":0.01012,"12.0":0.01012,"13.0":0.03036,"14.0":0.03036,"15.0":0.01012,"16.0":0.04048,"17.0":0.19228,"18.0":0.0506,"19.0":0.21252},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00229,"4.2-4.3":0.00516,"4.4":0,"4.4.3-4.4.4":0.1329},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.11432,"5.5":0},S:{"2.5":0.0056,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0.01681,"11":0},R:{_:"0"},M:{"0":0.22412},Q:{"13.1":0.02241},O:{"0":0.5659},H:{"0":1.29431},L:{"0":64.03192}};
diff --git a/node_modules/caniuse-lite/data/regions/NC.js b/node_modules/caniuse-lite/data/regions/NC.js
new file mode 100644
index 0000000..bcfa900
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/NC.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.01454,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.08238,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.05331,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.03877,"79":0,"80":0.00969,"81":0,"82":0,"83":0.00485,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.09207,"92":0,"93":0,"94":0,"95":0.00485,"96":0,"97":0,"98":0.00485,"99":0,"100":0.00485,"101":0,"102":0.23261,"103":0,"104":0,"105":0.00969,"106":0,"107":0.00485,"108":0.00485,"109":0.00969,"110":0.03877,"111":1.40534,"112":1.24542,"113":0,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00485,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0.00969,"60":0,"61":0,"62":0,"63":0.00485,"64":0,"65":0,"66":0,"67":0.00485,"68":0,"69":0,"70":0,"71":0,"72":0.01454,"73":0,"74":0,"75":0,"76":0.00485,"77":0,"78":0,"79":0.00485,"80":0.01454,"81":0.01938,"83":0,"84":0.00969,"85":0,"86":0,"87":0.01454,"88":0.00485,"89":0,"90":0,"91":0,"92":0.00969,"93":0,"94":0.01454,"95":0,"96":0.02908,"97":0.05331,"98":0,"99":0.00485,"100":0.00485,"101":0,"102":0.00485,"103":0.05815,"104":0.00485,"105":0.00969,"106":0.05815,"107":0.01454,"108":0.04361,"109":1.15819,"110":0.29561,"111":4.15787,"112":5.12222,"113":0,"114":0,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0.00485,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.00485,"96":0.08723,"97":0.31014,"98":0.00969,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00485,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00485,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00485,"100":0.00485,"101":0,"102":0,"103":0.00485,"104":0.00969,"105":0.03392,"106":0,"107":0.03877,"108":0.00969,"109":0.063,"110":0.01454,"111":0.76082,"112":1.67187,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.02423,"14":0.03392,"15":0.00969,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0.00969,"11.1":0,"12.1":0.05331,"13.1":0.063,"14.1":0.14053,"15.1":0.02908,"15.2-15.3":0.03392,"15.4":0.04846,"15.5":0.04361,"15.6":0.41191,"16.0":0.04846,"16.1":0.25199,"16.2":0.16476,"16.3":0.59121,"16.4":0.70267,"16.5":0.01454},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.08631,"10.0-10.2":0.00523,"10.3":0.17261,"11.0-11.2":0.01046,"11.3-11.4":0.46292,"12.0-12.1":0.00523,"12.2-12.5":0.53354,"13.0-13.1":0.01046,"13.2":0,"13.3":0.48384,"13.4-13.7":0.17,"14.0-14.4":0.26938,"14.5-14.8":0.54138,"15.0-15.1":0.30338,"15.2-15.3":0.14908,"15.4":0.34,"15.5":0.38184,"15.6":1.06707,"16.0":1.37045,"16.1":3.31629,"16.2":1.26061,"16.3":10.20779,"16.4":3.34244,"16.5":0.05492},P:{"4":0.03137,"20":6.24306,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.32418,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.04183,"12.0":0.01046,"13.0":0.02091,"14.0":0.03137,"15.0":0.04183,"16.0":0.12549,"17.0":0.03137,"18.0":0.11503,"19.0":0.92025},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.206},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.02423,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.54117},Q:{"13.1":0},O:{"0":0.134},H:{"0":0.45867},L:{"0":41.60779}};
diff --git a/node_modules/caniuse-lite/data/regions/NE.js b/node_modules/caniuse-lite/data/regions/NE.js
new file mode 100644
index 0000000..b1d108e
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/NE.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00177,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0.00177,"98":0,"99":0.00177,"100":0,"101":0,"102":0.0053,"103":0,"104":0.00353,"105":0,"106":0.01767,"107":0.00177,"108":0.00177,"109":0.00177,"110":0.0053,"111":0.14313,"112":0.11309,"113":0.00177,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00707,"41":0,"42":0,"43":0.0053,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00177,"50":0,"51":0.00177,"52":0,"53":0,"54":0,"55":0.03534,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0.00177,"75":0,"76":0,"77":0,"78":0,"79":0.01414,"80":0.00353,"81":0.00707,"83":0.00177,"84":0,"85":0,"86":0.00177,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.00177,"96":0.00177,"97":0,"98":0,"99":0.0053,"100":0,"101":0,"102":0.00177,"103":0.0053,"104":0.00177,"105":0.00177,"106":0.00353,"107":0.00177,"108":0.00353,"109":0.09895,"110":0.03004,"111":0.31453,"112":0.24385,"113":0,"114":0,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.00177,"27":0.00353,"28":0.00177,"29":0,"30":0.00177,"31":0.02297,"32":0.00177,"33":0,"34":0,"35":0,"36":0,"37":0.01237,"38":0,"39":0,"40":0,"41":0,"42":0.00177,"43":0,"44":0,"45":0,"46":0.00884,"47":0,"48":0,"49":0,"50":0,"51":0.00177,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0.05301,"62":0,"63":0.04594,"64":0.0053,"65":0,"66":0.0159,"67":0.04241,"68":0.04771,"69":0.13076,"70":0,"71":0,"72":0,"73":0,"74":0.00177,"75":0,"76":0,"77":0,"78":0,"79":0.00177,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.01944,"96":0.0106,"97":0.06715,"98":0.00353,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00177},B:{"12":0.00177,"13":0,"14":0,"15":0.00177,"16":0.00177,"17":0.00177,"18":0.00177,"79":0,"80":0,"81":0,"83":0,"84":0.00177,"85":0,"86":0,"87":0,"88":0,"89":0.00177,"90":0,"91":0,"92":0.00353,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00177,"101":0,"102":0,"103":0,"104":0.05124,"105":0.00707,"106":0.00177,"107":0,"108":0.02827,"109":0.0106,"110":0.00707,"111":0.20674,"112":0.182,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0.00177,"13":0,"14":0,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.02827,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.0106,"14.1":0.00177,"15.1":0.11486,"15.2-15.3":0,"15.4":0,"15.5":0,"15.6":0.0053,"16.0":0,"16.1":0.00177,"16.2":0.00177,"16.3":0.0053,"16.4":0.00707,"16.5":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00252,"6.0-6.1":0.00252,"7.0-7.1":0.01767,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.08668,"10.0-10.2":0,"10.3":0.29789,"11.0-11.2":0.00168,"11.3-11.4":0.00252,"12.0-12.1":0.00084,"12.2-12.5":0.76745,"13.0-13.1":0,"13.2":0.00084,"13.3":0.06311,"13.4-13.7":0.04208,"14.0-14.4":0.52005,"14.5-14.8":0.4603,"15.0-15.1":0.22468,"15.2-15.3":0.7927,"15.4":0.0791,"15.5":0.2373,"15.6":0.25498,"16.0":0.50574,"16.1":0.62019,"16.2":0.48639,"16.3":1.52565,"16.4":0.78176,"16.5":0.01683},P:{"4":0.1132,"20":0.49398,"5.0-5.4":0.01029,"6.2-6.4":0.03087,"7.2-7.4":0.07204,"8.2":0,"9.2":0.05146,"10.1":0,"11.1-11.2":0.01029,"12.0":0,"13.0":0.07204,"14.0":0.02058,"15.0":0.01029,"16.0":0.02058,"17.0":0.02058,"18.0":0.02058,"19.0":0.08233},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00054,"4.4":0,"4.4.3-4.4.4":0.06476},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.0106,"5.5":0},S:{"2.5":0.01647,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.0988},Q:{"13.1":0.03293},O:{"0":1.67953},H:{"0":3.78032},L:{"0":81.65118}};
diff --git a/node_modules/caniuse-lite/data/regions/NF.js b/node_modules/caniuse-lite/data/regions/NF.js
new file mode 100644
index 0000000..cf2b877
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/NF.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.51741,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0.33045,"110":0,"111":1.50441,"112":0.13914,"113":0,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.04783,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0.13914,"109":0.42176,"110":0,"111":1.55224,"112":3.29144,"113":0,"114":0,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0,"111":0.37393,"112":0.65655,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.33045,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0,"14.1":0,"15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0.09566,"15.6":0.28262,"16.0":0,"16.1":0.987,"16.2":3.76102,"16.3":0.04783,"16.4":0.04783,"16.5":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0,"10.0-10.2":0,"10.3":0,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":1.64738,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0,"14.0-14.4":0.75914,"14.5-14.8":0,"15.0-15.1":0,"15.2-15.3":0,"15.4":0,"15.5":1.01735,"15.6":1.14129,"16.0":0.38215,"16.1":1.90559,"16.2":18.2709,"16.3":24.35948,"16.4":1.14129,"16.5":0},P:{"4":0,"20":2.4527,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0,"12.0":0,"13.0":0,"14.0":0,"15.0":0,"16.0":0,"17.0":0,"18.0":0,"19.0":1.02894},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":1.03432},Q:{"13.1":0},O:{"0":0},H:{"0":0},L:{"0":28.96756}};
diff --git a/node_modules/caniuse-lite/data/regions/NG.js b/node_modules/caniuse-lite/data/regions/NG.js
new file mode 100644
index 0000000..b38cb3a
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/NG.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00203,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.00405,"44":0,"45":0,"46":0,"47":0.00203,"48":0,"49":0,"50":0,"51":0,"52":0.00203,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00203,"66":0,"67":0,"68":0.00405,"69":0,"70":0,"71":0,"72":0.00203,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00203,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00203,"92":0,"93":0,"94":0,"95":0,"96":0.00405,"97":0,"98":0.00203,"99":0.00608,"100":0.00203,"101":0.00203,"102":0.00405,"103":0.00203,"104":0.00203,"105":0.00203,"106":0.00405,"107":0.00608,"108":0.00608,"109":0.00608,"110":0.01823,"111":0.1782,"112":0.14783,"113":0.0081,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0.00405,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00203,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00608,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.00405,"56":0,"57":0,"58":0.00203,"59":0.00203,"60":0,"61":0,"62":0.00203,"63":0,"64":0.00203,"65":0,"66":0,"67":0,"68":0.00203,"69":0.00203,"70":0.00203,"71":0.00203,"72":0.00203,"73":0.00203,"74":0.00405,"75":0.00203,"76":0.00203,"77":0.00608,"78":0,"79":0.0081,"80":0.00405,"81":0.01013,"83":0.00203,"84":0.00203,"85":0.00405,"86":0.00203,"87":0.0081,"88":0.00405,"89":0.00203,"90":0.00203,"91":0.00405,"92":0.00203,"93":0.02228,"94":0.00608,"95":0.00405,"96":0.00405,"97":0.00405,"98":0.00203,"99":0.00203,"100":0.00405,"101":0.00203,"102":0.00608,"103":0.01215,"104":0.00608,"105":0.0081,"106":0.0081,"107":0.01013,"108":0.01823,"109":0.25313,"110":0.03645,"111":0.56903,"112":0.60953,"113":0.00203,"114":0.00203,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0.00203,"24":0.0243,"25":0,"26":0.01418,"27":0.02633,"28":0.02025,"29":0.00405,"30":0.02228,"31":0.01013,"32":0.0243,"33":0.0081,"34":0,"35":0.00203,"36":0.0081,"37":0.00405,"38":0.01215,"39":0.00203,"40":0,"41":0,"42":0.01823,"43":0,"44":0.00203,"45":0.00405,"46":0.01418,"47":0.00608,"48":0.00203,"49":0,"50":0.02025,"51":0.0081,"52":0,"53":0.00203,"54":0.01418,"55":0.01215,"56":0.00405,"57":0.01215,"58":0.03038,"60":0.20048,"62":0.00405,"63":0.2106,"64":0.0486,"65":0.0243,"66":0.27135,"67":0.39488,"68":0.31793,"69":0.41513,"70":0.0081,"71":0.00405,"72":0.01013,"73":0.03038,"74":0.05873,"75":0.01418,"76":0,"77":0,"78":0,"79":0.00405,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00203,"86":0,"87":0,"88":0.00203,"89":0,"90":0.00203,"91":0,"92":0.00203,"93":0,"94":0.0081,"95":0.0081,"96":0.02835,"97":0.04658,"98":0.00203,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.02835},B:{"12":0.00405,"13":0,"14":0,"15":0.00203,"16":0,"17":0,"18":0.00405,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00405,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.00203,"102":0.00203,"103":0,"104":0,"105":0.00203,"106":0,"107":0.00203,"108":0.00608,"109":0.01013,"110":0.02025,"111":0.06683,"112":0.12758,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00203,"14":0.00405,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.00405,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00405,"14.1":0.00608,"15.1":0.00203,"15.2-15.3":0,"15.4":0.00203,"15.5":0.00203,"15.6":0.01418,"16.0":0.00203,"16.1":0.00405,"16.2":0.00608,"16.3":0.0162,"16.4":0.0081,"16.5":0},G:{"8":0.00375,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.0025,"5.0-5.1":0.00125,"6.0-6.1":0.00375,"7.0-7.1":0.00626,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.02628,"10.0-10.2":0,"10.3":0.02127,"11.0-11.2":0.00626,"11.3-11.4":0.005,"12.0-12.1":0.03378,"12.2-12.5":1.00724,"13.0-13.1":0.03879,"13.2":0.01501,"13.3":0.07507,"13.4-13.7":0.13638,"14.0-14.4":0.76074,"14.5-14.8":0.80078,"15.0-15.1":0.44418,"15.2-15.3":0.44418,"15.4":0.34033,"15.5":0.51801,"15.6":0.66315,"16.0":1.13861,"16.1":1.04352,"16.2":0.94217,"16.3":2.042,"16.4":0.88462,"16.5":0.02002},P:{"4":0.0406,"20":0.47705,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.05075,"8.2":0,"9.2":0.0203,"10.1":0,"11.1-11.2":0.0203,"12.0":0,"13.0":0.0203,"14.0":0.0203,"15.0":0.0203,"16.0":0.0406,"17.0":0.03045,"18.0":0.0406,"19.0":0.11165},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00575,"4.2-4.3":0.0023,"4.4":0,"4.4.3-4.4.4":0.07815},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00203,"9":0,"10":0,"11":0.00405,"5.5":0},S:{"2.5":0.04785,_:"3.0-3.1"},J:{"7":0,"10":0.00798},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.31103},Q:{"13.1":0.00798},O:{"0":1.16435},H:{"0":26.30495},L:{"0":49.20563}};
diff --git a/node_modules/caniuse-lite/data/regions/NI.js b/node_modules/caniuse-lite/data/regions/NI.js
new file mode 100644
index 0000000..224a7fa
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/NI.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00444,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.00444,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0.00444,"98":0.04888,"99":0.00444,"100":0,"101":0,"102":0.00444,"103":0,"104":0,"105":0.00444,"106":0.00444,"107":0.00444,"108":0.00444,"109":0.00444,"110":0.01778,"111":0.32886,"112":0.39552,"113":0.00444,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00444,"39":0,"40":0,"41":0,"42":0.00889,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00889,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00444,"66":0,"67":0,"68":0.00444,"69":0.00444,"70":0,"71":0,"72":0,"73":0.00444,"74":0,"75":0.00444,"76":0.00444,"77":0,"78":0,"79":0.07555,"80":0.00444,"81":0.01333,"83":0.01333,"84":0.00444,"85":0.00444,"86":0.00444,"87":0.02222,"88":0.02222,"89":0,"90":0.00444,"91":0.06222,"92":0.00444,"93":0.00444,"94":0.00444,"95":0.00444,"96":0.01333,"97":0.01333,"98":0.00889,"99":0.01778,"100":0.02222,"101":0.00889,"102":0.00889,"103":0.06222,"104":0.02222,"105":0.01333,"106":0.01778,"107":0.02666,"108":0.04888,"109":2.63529,"110":0.09777,"111":4.29735,"112":4.95062,"113":0.00444,"114":0.00444,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00889,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.00444,"68":0.02222,"69":0.03555,"70":0.01333,"71":0,"72":0,"73":0,"74":0.00444,"75":0.00444,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.03111,"96":0.12443,"97":0.36885,"98":0.00889,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0.00444,"15":0,"16":0.00889,"17":0,"18":0.00444,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.01333,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0.00444,"104":0.00444,"105":0.00444,"106":0.00444,"107":0.00889,"108":0.00444,"109":0.03555,"110":0.02666,"111":0.37774,"112":0.99101,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00444,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.00889,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.03555,"14.1":0.02222,"15.1":0.00444,"15.2-15.3":0,"15.4":0.00444,"15.5":0.00889,"15.6":0.09777,"16.0":0.00444,"16.1":0.01778,"16.2":0.02666,"16.3":0.14665,"16.4":0.04,"16.5":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00658,"6.0-6.1":0,"7.0-7.1":0.04718,"8.1-8.4":0.0011,"9.0-9.2":0,"9.3":0.05925,"10.0-10.2":0,"10.3":0.02414,"11.0-11.2":0.01865,"11.3-11.4":0.00878,"12.0-12.1":0.00329,"12.2-12.5":0.21178,"13.0-13.1":0.00549,"13.2":0.00219,"13.3":0.00878,"13.4-13.7":0.03072,"14.0-14.4":0.124,"14.5-14.8":0.25787,"15.0-15.1":0.0823,"15.2-15.3":0.09437,"15.4":0.09876,"15.5":0.13058,"15.6":0.44441,"16.0":0.71435,"16.1":1.05232,"16.2":0.78787,"16.3":3.44884,"16.4":2.1584,"16.5":0.05596},P:{"4":0.30456,"20":2.06087,"5.0-5.4":0.01015,"6.2-6.4":0.03046,"7.2-7.4":0.43654,"8.2":0.0203,"9.2":0.0203,"10.1":0.01015,"11.1-11.2":0.09137,"12.0":0.01015,"13.0":0.06091,"14.0":0.05076,"15.0":0.04061,"16.0":0.19289,"17.0":0.10152,"18.0":0.11167,"19.0":0.32487},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00761,"4.2-4.3":0.02284,"4.4":0,"4.4.3-4.4.4":0.22842},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00489,"9":0,"10":0,"11":0.044,"5.5":0},S:{"2.5":0.00556,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.11112},Q:{"13.1":0},O:{"0":0.19446},H:{"0":0.38398},L:{"0":67.11904}};
diff --git a/node_modules/caniuse-lite/data/regions/NL.js b/node_modules/caniuse-lite/data/regions/NL.js
new file mode 100644
index 0000000..eb94b20
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/NL.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00529,"39":0,"40":0,"41":0,"42":0,"43":0.00529,"44":0.01058,"45":0.00529,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00529,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00529,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.01588,"79":0.00529,"80":0.00529,"81":0.01058,"82":0,"83":0.00529,"84":0,"85":0,"86":0,"87":0,"88":0.00529,"89":0,"90":0,"91":0.00529,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.11642,"103":0.00529,"104":0.00529,"105":0.00529,"106":0.00529,"107":0.00529,"108":0.01058,"109":0.02117,"110":0.03175,"111":0.90493,"112":0.77792,"113":0.00529,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00529,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.14818,"48":0.02117,"49":0.01058,"50":0,"51":0,"52":0.02117,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.00529,"61":0.00529,"62":0,"63":0,"64":0,"65":0,"66":0.02117,"67":0.00529,"68":0,"69":0,"70":0,"71":0.01058,"72":0.03704,"73":0,"74":0,"75":0,"76":0.00529,"77":0.00529,"78":0.00529,"79":0.04234,"80":0.00529,"81":0.00529,"83":0.01058,"84":0.01588,"85":0.12172,"86":0.03704,"87":0.02646,"88":0.00529,"89":0.00529,"90":0.01588,"91":0.02646,"92":0.02117,"93":0.02646,"94":0.05821,"95":0.00529,"96":0.02117,"97":0.01058,"98":0.01058,"99":0.00529,"100":0.03175,"101":0.04763,"102":0.03175,"103":0.11113,"104":0.05821,"105":0.08467,"106":0.0688,"107":0.04763,"108":0.14288,"109":0.78851,"110":0.25931,"111":6.04346,"112":6.615,"113":0.01058,"114":0.00529,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00529,"69":0.02646,"70":0,"71":0,"72":0,"73":0,"74":0.00529,"75":0.00529,"76":0,"77":0.00529,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00529,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0.00529,"95":0.02117,"96":0.1323,"97":0.38632,"98":0.01588,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00529,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0.00529,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0.00529,"104":0,"105":0,"106":0.00529,"107":0.00529,"108":0.01588,"109":0.0635,"110":0.0635,"111":1.27008,"112":2.7095,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0.00529,"10":0,"11":0,"12":0,"13":0.00529,"14":0.0635,"15":0.01588,_:"0","3.1":0,"3.2":0,"5.1":0.00529,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.03704,"13.1":0.17993,"14.1":0.16934,"15.1":0.04234,"15.2-15.3":0.02646,"15.4":0.04763,"15.5":0.07938,"15.6":0.42336,"16.0":0.05292,"16.1":0.16405,"16.2":0.24872,"16.3":1.2542,"16.4":0.61387,"16.5":0.01058},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00639,"8.1-8.4":0.00959,"9.0-9.2":0.07991,"9.3":0.07032,"10.0-10.2":0,"10.3":0.11508,"11.0-11.2":0.0032,"11.3-11.4":0.03516,"12.0-12.1":0.00639,"12.2-12.5":0.44751,"13.0-13.1":0.00639,"13.2":0.00639,"13.3":0.01598,"13.4-13.7":0.06073,"14.0-14.4":0.16622,"14.5-14.8":0.39957,"15.0-15.1":0.13425,"15.2-15.3":0.1822,"15.4":0.21097,"15.5":0.42194,"15.6":1.39369,"16.0":2.18004,"16.1":4.59022,"16.2":2.37183,"16.3":12.31304,"16.4":5.35419,"16.5":0.10868},P:{"4":0.30855,"20":4.49455,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.01029,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0,"12.0":0.01029,"13.0":0.01029,"14.0":0.02057,"15.0":0.01029,"16.0":0.02057,"17.0":0.03086,"18.0":0.03086,"19.0":0.11314},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00933,"4.2-4.3":0.10265,"4.4":0,"4.4.3-4.4.4":0.09331},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00874,"9":0.05246,"10":0,"11":0.13989,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.56025},Q:{"13.1":0.00942},O:{"0":0.4143},H:{"0":0.36995},L:{"0":33.01333}};
diff --git a/node_modules/caniuse-lite/data/regions/NO.js b/node_modules/caniuse-lite/data/regions/NO.js
new file mode 100644
index 0000000..20805a9
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/NO.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0.02642,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.01321,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00661,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.01982,"102":0.07926,"103":0,"104":0,"105":0.00661,"106":0,"107":0,"108":0.00661,"109":0.04624,"110":0.01982,"111":0.68032,"112":0.50198,"113":0.00661,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00661,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.01982,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.00661,"65":0,"66":0.1321,"67":0.00661,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0.00661,"78":0,"79":0.01321,"80":0,"81":0.00661,"83":0,"84":0,"85":2.7741,"86":0.01321,"87":0.02642,"88":0,"89":0.01982,"90":0.01321,"91":0.01321,"92":0.01321,"93":0.01982,"94":0.06605,"95":0.00661,"96":0.00661,"97":0.00661,"98":0.00661,"99":0.00661,"100":0.01321,"101":0.01982,"102":0.01321,"103":0.11889,"104":0.01321,"105":0.06605,"106":0.03963,"107":0.05284,"108":0.17173,"109":1.0502,"110":0.54161,"111":11.14924,"112":14.37909,"113":0.01982,"114":0,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.00661,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.00661,"91":0,"92":0,"93":0,"94":0,"95":0.01982,"96":0.23778,"97":0.61427,"98":0.01321,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0.01321,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00661,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.01321,"103":0,"104":0.00661,"105":0.00661,"106":0.03963,"107":0.01321,"108":0.02642,"109":0.10568,"110":0.05284,"111":1.3144,"112":3.39497,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.01321,"14":0.05284,"15":0.01321,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.02642,"12.1":0.01321,"13.1":0.07266,"14.1":0.21136,"15.1":0.05284,"15.2-15.3":0.03303,"15.4":0.07926,"15.5":0.11229,"15.6":0.48217,"16.0":0.03303,"16.1":0.16513,"16.2":0.25099,"16.3":1.34742,"16.4":0.68032,"16.5":0.00661},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00364,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.04729,"10.0-10.2":0,"10.3":0.07275,"11.0-11.2":0,"11.3-11.4":0.20006,"12.0-12.1":0.00727,"12.2-12.5":0.32374,"13.0-13.1":0,"13.2":0,"13.3":0.01091,"13.4-13.7":0.02546,"14.0-14.4":0.12731,"14.5-14.8":0.4947,"15.0-15.1":0.1164,"15.2-15.3":0.24371,"15.4":0.24007,"15.5":0.5238,"15.6":1.77145,"16.0":2.77176,"16.1":5.73267,"16.2":2.81905,"16.3":14.21163,"16.4":5.52897,"16.5":0.07639},P:{"4":0.06155,"20":2.22602,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.01026,"12.0":0,"13.0":0,"14.0":0,"15.0":0,"16.0":0.01026,"17.0":0.01026,"18.0":0.02052,"19.0":0.04103},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01073,"4.2-4.3":0.12444,"4.4":0,"4.4.3-4.4.4":0.03218},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.05284,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.4074},Q:{"13.1":0},O:{"0":0.01358},H:{"0":0.14142},L:{"0":17.63037}};
diff --git a/node_modules/caniuse-lite/data/regions/NP.js b/node_modules/caniuse-lite/data/regions/NP.js
new file mode 100644
index 0000000..4f909eb
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/NP.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00327,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.0392,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0.00327,"87":0.25156,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00653,"103":0.01307,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0.00327,"110":0.00653,"111":0.20909,"112":0.20582,"113":0.0098,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00327,"66":0,"67":0,"68":0,"69":0.00327,"70":0,"71":0,"72":0.00327,"73":0,"74":0.00327,"75":0.00327,"76":0,"77":0,"78":0,"79":0.00653,"80":0,"81":0.00327,"83":0.00327,"84":0,"85":0,"86":0.00327,"87":0.00653,"88":0.00327,"89":0.20909,"90":0,"91":0.00327,"92":0,"93":0.00327,"94":0,"95":0.00327,"96":0.00327,"97":0.00327,"98":0.00327,"99":0.00327,"100":0.00653,"101":0.00327,"102":0.00327,"103":0.0294,"104":0.00653,"105":0.00327,"106":0.01307,"107":0.01307,"108":0.0196,"109":1.21206,"110":0.04247,"111":2.54826,"112":3.23106,"113":0.01307,"114":0.00327,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.00327,"68":0.02614,"69":0.06207,"70":0,"71":0,"72":0,"73":0,"74":0.00327,"75":0.03267,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00653,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.0098,"96":0.01634,"97":0.08821,"98":0.00327,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00327,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.08821,"90":0,"91":0,"92":0.00327,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00327,"101":0,"102":0,"103":0,"104":0.00327,"105":0,"106":0,"107":0.00327,"108":0.00327,"109":0.0098,"110":0.00653,"111":0.16008,"112":0.37571,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.0392,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00327,"13.1":0.00653,"14.1":0.0098,"15.1":0,"15.2-15.3":0,"15.4":0.00327,"15.5":0.00327,"15.6":0.0294,"16.0":0.00327,"16.1":0.0098,"16.2":0.01307,"16.3":0.04901,"16.4":0.03594,"16.5":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00251,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.01002,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.03383,"10.0-10.2":0,"10.3":0.0426,"11.0-11.2":0.01504,"11.3-11.4":0.00501,"12.0-12.1":0.01002,"12.2-12.5":0.53506,"13.0-13.1":0.00376,"13.2":0.00501,"13.3":0.02005,"13.4-13.7":0.05012,"14.0-14.4":0.14285,"14.5-14.8":0.32204,"15.0-15.1":0.05263,"15.2-15.3":0.09398,"15.4":0.08646,"15.5":0.19548,"15.6":0.66287,"16.0":0.39472,"16.1":1.1641,"16.2":0.61651,"16.3":4.50228,"16.4":1.82823,"16.5":0.05012},P:{"4":0.11198,"20":0.53952,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.03054,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.01018,"12.0":0.01018,"13.0":0.02036,"14.0":0,"15.0":0.01018,"16.0":0.02036,"17.0":0.0509,"18.0":0.02036,"19.0":0.03054},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.21335},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00327,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.0808},Q:{"13.1":0},O:{"0":0.82143},H:{"0":0.4972},L:{"0":76.62102}};
diff --git a/node_modules/caniuse-lite/data/regions/NR.js b/node_modules/caniuse-lite/data/regions/NR.js
new file mode 100644
index 0000000..25d28a0
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/NR.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0.00588,"110":0.00588,"111":0.0294,"112":0.0735,"113":0,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.02352,"79":0.03822,"80":0.02058,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.0147,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00882,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0.1029,"110":0.00882,"111":1.21422,"112":1.97568,"113":0,"114":0,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.03822,"68":0,"69":0.12936,"70":0,"71":0,"72":0,"73":0.0294,"74":0,"75":0.00588,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0.00588,"98":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.0147,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00882,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0.00588,"109":0,"110":0,"111":0.47334,"112":0.5586,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0,"14.1":0,"15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0.00588,"15.6":0,"16.0":0,"16.1":0.00882,"16.2":0,"16.3":0.02058,"16.4":0,"16.5":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0,"10.0-10.2":0,"10.3":0.02061,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":0.10305,"13.0-13.1":0,"13.2":0.22742,"13.3":0.04122,"13.4-13.7":0,"14.0-14.4":0.47475,"14.5-14.8":0,"15.0-15.1":0.61973,"15.2-15.3":0,"15.4":0.06183,"15.5":0.02061,"15.6":0.43353,"16.0":2.35526,"16.1":1.13641,"16.2":0.24803,"16.3":0.88837,"16.4":0.41292,"16.5":0},P:{"4":0,"20":1.3175,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.26132,"12.0":0,"13.0":0.3811,"14.0":0.19599,"15.0":0,"16.0":0.23955,"17.0":0.02178,"18.0":0,"19.0":1.3175},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.0294},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0},Q:{"13.1":0},O:{"0":4.4478},H:{"0":2.13218},L:{"0":74.92574}};
diff --git a/node_modules/caniuse-lite/data/regions/NU.js b/node_modules/caniuse-lite/data/regions/NU.js
new file mode 100644
index 0000000..9538734
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/NU.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0,"111":0,"112":0.10319,"113":0,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0,"111":0,"112":0.71971,"113":0,"114":0,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0,"111":0,"112":0,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0,"14.1":0,"15.1":0.10319,"15.2-15.3":0,"15.4":0,"15.5":0,"15.6":1.64846,"16.0":0,"16.1":0.20639,"16.2":0.20639,"16.3":1.95539,"16.4":0.9261,"16.5":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0,"10.0-10.2":0,"10.3":0,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":0,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0,"14.0-14.4":0,"14.5-14.8":0,"15.0-15.1":0.49817,"15.2-15.3":3.47782,"15.4":0,"15.5":0,"15.6":0,"16.0":5.96868,"16.1":27.85073,"16.2":10.94102,"16.3":21.38387,"16.4":10.44285,"16.5":12.43554},P:{"4":0,"20":0,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0,"12.0":0,"13.0":0,"14.0":0,"15.0":0,"16.0":0,"17.0":0,"18.0":0,"19.0":0},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0},Q:{"13.1":0},O:{"0":0},H:{"0":0},L:{"0":0}};
diff --git a/node_modules/caniuse-lite/data/regions/NZ.js b/node_modules/caniuse-lite/data/regions/NZ.js
new file mode 100644
index 0000000..d92177a
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/NZ.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01677,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00559,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00559,"53":0,"54":0.00559,"55":0,"56":0,"57":0,"58":0,"59":0.00559,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00559,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.02795,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00559,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0.00559,"97":0,"98":0,"99":0.00559,"100":0,"101":0.00559,"102":0.03913,"103":0.00559,"104":0.00559,"105":0,"106":0,"107":0.00559,"108":0.01118,"109":0.01677,"110":0.03354,"111":0.94471,"112":0.85527,"113":0.00559,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.00559,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.01677,"35":0,"36":0,"37":0,"38":0.06149,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.01677,"50":0,"51":0,"52":0,"53":0.00559,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0.00559,"60":0,"61":0.00559,"62":0,"63":0.00559,"64":0,"65":0.00559,"66":0.03354,"67":0.00559,"68":0.00559,"69":0.00559,"70":0,"71":0,"72":0.00559,"73":0.00559,"74":0.01118,"75":0,"76":0.01118,"77":0.00559,"78":0.00559,"79":0.08385,"80":0.00559,"81":0.00559,"83":0.01118,"84":0,"85":0.00559,"86":0.00559,"87":0.03913,"88":0.00559,"89":0.00559,"90":0.01118,"91":0.00559,"92":0.01677,"93":0.03913,"94":0.04472,"95":0.01118,"96":0.02236,"97":0.02236,"98":0.01677,"99":0.03354,"100":0.02236,"101":0.01677,"102":0.02236,"103":0.19565,"104":0.02236,"105":0.03913,"106":0.02795,"107":0.06149,"108":0.12857,"109":0.7267,"110":0.38571,"111":6.9875,"112":7.8819,"113":0.01118,"114":0.00559,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.01118,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.02795,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.00559,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0.00559,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.01677,"96":0.14534,"97":0.35776,"98":0.00559,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0.00559,"15":0,"16":0,"17":0,"18":0.00559,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00559,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0.00559,"104":0,"105":0.00559,"106":0.00559,"107":0.00559,"108":0.02236,"109":0.03913,"110":0.03913,"111":1.0621,"112":2.36457,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.01677,"14":0.10062,"15":0.01677,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.01118,"12.1":0.02795,"13.1":0.1677,"14.1":0.32981,"15.1":0.02795,"15.2-15.3":0.04472,"15.4":0.09503,"15.5":0.14534,"15.6":0.68198,"16.0":0.06708,"16.1":0.19565,"16.2":0.43043,"16.3":1.68818,"16.4":0.67639,"16.5":0.01118},G:{"8":0.00665,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.0133,"7.0-7.1":0.00665,"8.1-8.4":0.02659,"9.0-9.2":0.02992,"9.3":0.15624,"10.0-10.2":0.00332,"10.3":0.2327,"11.0-11.2":0.01995,"11.3-11.4":0.09973,"12.0-12.1":0.02327,"12.2-12.5":0.96073,"13.0-13.1":0.00332,"13.2":0.00332,"13.3":0.03324,"13.4-13.7":0.08976,"14.0-14.4":0.23603,"14.5-14.8":0.58508,"15.0-15.1":0.20943,"15.2-15.3":0.22273,"15.4":0.24268,"15.5":0.46208,"15.6":1.57906,"16.0":1.57574,"16.1":4.26845,"16.2":3.10493,"16.3":12.65577,"16.4":4.54105,"16.5":0.08643},P:{"4":0.2331,"20":2.75482,"5.0-5.4":0.02119,"6.2-6.4":0,"7.2-7.4":0.0106,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.0106,"12.0":0,"13.0":0.02119,"14.0":0.02119,"15.0":0.0106,"16.0":0.03179,"17.0":0.03179,"18.0":0.02119,"19.0":0.09536},I:{"0":0,"3":0,"4":0.01068,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00712,"4.2-4.3":0.01779,"4.4":0,"4.4.3-4.4.4":0.07473},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.01553,"9":0,"10":0,"11":0.12422,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.41895},Q:{"13.1":0.00441},O:{"0":0.04851},H:{"0":0.21293},L:{"0":33.71501}};
diff --git a/node_modules/caniuse-lite/data/regions/OM.js b/node_modules/caniuse-lite/data/regions/OM.js
new file mode 100644
index 0000000..97ccbfd
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/OM.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.0037,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.01851,"103":0,"104":0,"105":0,"106":0,"107":0.0037,"108":0,"109":0,"110":0.0037,"111":0.08144,"112":0.08144,"113":0.0037,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.0037,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.0037,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.0037,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0.0037,"63":0,"64":0,"65":0.0037,"66":0,"67":0,"68":0.0037,"69":0.0037,"70":0.0037,"71":0,"72":0.0074,"73":0,"74":0.0074,"75":0.0037,"76":0,"77":0,"78":0,"79":0.01851,"80":0,"81":0.0074,"83":0.0037,"84":0,"85":0.0037,"86":0.01481,"87":0.0074,"88":0.0074,"89":0.0037,"90":0,"91":0.0074,"92":0.0074,"93":0.03702,"94":0.0037,"95":0.01111,"96":0.0037,"97":0.0037,"98":0.0074,"99":0.04072,"100":0.02221,"101":0.0037,"102":0.0074,"103":0.05923,"104":0.0037,"105":0.0074,"106":0.01111,"107":0.01111,"108":0.02221,"109":0.75891,"110":0.05923,"111":3.30218,"112":3.94263,"113":0.01481,"114":0.0037,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.0074,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.0037,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.0074,"70":0,"71":0,"72":0,"73":0,"74":0.0037,"75":0.0037,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.01111,"96":0.03332,"97":0.12217,"98":0.0037,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.0037,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.0037,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0.0037,"108":0.0074,"109":0.02962,"110":0.02221,"111":0.29986,"112":0.61083,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.0037,"14":0.01481,"15":0.0037,_:"0","3.1":0,"3.2":0,"5.1":0.0074,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.0037,"13.1":0.01481,"14.1":0.03332,"15.1":0.01851,"15.2-15.3":0.0037,"15.4":0.01481,"15.5":0.04813,"15.6":0.11846,"16.0":0.0074,"16.1":0.10366,"16.2":0.09625,"16.3":0.44054,"16.4":0.1814,"16.5":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00229,"6.0-6.1":0,"7.0-7.1":0.03885,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.06171,"10.0-10.2":0,"10.3":0.05256,"11.0-11.2":0.00914,"11.3-11.4":0.01371,"12.0-12.1":0.00457,"12.2-12.5":0.47079,"13.0-13.1":0.01143,"13.2":0.00914,"13.3":0.09827,"13.4-13.7":0.07999,"14.0-14.4":0.3131,"14.5-14.8":0.4685,"15.0-15.1":0.13255,"15.2-15.3":0.18512,"15.4":0.26967,"15.5":0.52792,"15.6":0.99871,"16.0":1.50378,"16.1":2.18254,"16.2":1.52206,"16.3":7.17152,"16.4":4.90214,"16.5":0.0937},P:{"4":0.15243,"20":2.60145,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.1321,"8.2":0,"9.2":0.02032,"10.1":0,"11.1-11.2":0.07113,"12.0":0.03049,"13.0":0.07113,"14.0":0.06097,"15.0":0.14227,"16.0":0.09146,"17.0":0.0813,"18.0":0.0813,"19.0":0.2134},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.02166,"4.4":0,"4.4.3-4.4.4":0.15165},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.04442,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.06298},Q:{"13.1":0},O:{"0":1.41705},H:{"0":0.32794},L:{"0":59.91706}};
diff --git a/node_modules/caniuse-lite/data/regions/PA.js b/node_modules/caniuse-lite/data/regions/PA.js
new file mode 100644
index 0000000..d238b8b
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/PA.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00449,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.03142,"74":0,"75":0,"76":0,"77":0,"78":0.00449,"79":0,"80":0,"81":0,"82":0,"83":0.01347,"84":0,"85":0,"86":0,"87":0,"88":0.00449,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.02245,"99":0,"100":0,"101":0,"102":0.00449,"103":0.00898,"104":0.03142,"105":0,"106":0,"107":0,"108":0.00449,"109":0.00449,"110":0.02693,"111":0.29627,"112":0.31872,"113":0,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00449,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00898,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.02245,"69":0.00898,"70":0.00449,"71":0,"72":0,"73":0.01347,"74":0.01796,"75":0.00449,"76":0.00449,"77":0.00449,"78":0.00449,"79":0.05836,"80":0.00449,"81":0.02693,"83":0.01796,"84":0,"85":0.00449,"86":0.00449,"87":0.02693,"88":0.00898,"89":0.00898,"90":0.00449,"91":0.02245,"92":0.02245,"93":0.01796,"94":0.38157,"95":0.00449,"96":0.02245,"97":0.01347,"98":0.01347,"99":0.02693,"100":0.01796,"101":0.02693,"102":0.00898,"103":0.06734,"104":0.01347,"105":0.0404,"106":0.01796,"107":0.06734,"108":0.04489,"109":0.62397,"110":0.1212,"111":4.34086,"112":5.306,"113":0.00449,"114":0,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.01796,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00449,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00449,"64":0,"65":0,"66":0,"67":0.00449,"68":0.00449,"69":0.00898,"70":0,"71":0,"72":0,"73":0,"74":0.00449,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.02245,"96":0.23792,"97":0.86638,"98":0.01347,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00449,"79":0,"80":0,"81":0,"83":0,"84":0.00449,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00449,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0.00449,"105":0,"106":0.00449,"107":0.00449,"108":0.00898,"109":0.02693,"110":0.03591,"111":0.60602,"112":1.29732,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0.00449,"13":0.00898,"14":0.01796,"15":0.00449,_:"0","3.1":0,"3.2":0,"5.1":0.00449,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00449,"13.1":0.03142,"14.1":0.11671,"15.1":0.00449,"15.2-15.3":0.00898,"15.4":0.00898,"15.5":0.03591,"15.6":0.14365,"16.0":0.02245,"16.1":0.04938,"16.2":0.1212,"16.3":0.31872,"16.4":0.13916,"16.5":0.01796},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00339,"6.0-6.1":0.01525,"7.0-7.1":0.08981,"8.1-8.4":0.00508,"9.0-9.2":0,"9.3":0.09659,"10.0-10.2":0,"10.3":0.04745,"11.0-11.2":0.01186,"11.3-11.4":0,"12.0-12.1":0.00678,"12.2-12.5":0.41346,"13.0-13.1":0.03389,"13.2":0.00169,"13.3":0.0322,"13.4-13.7":0.09489,"14.0-14.4":0.13387,"14.5-14.8":0.26265,"15.0-15.1":0.08981,"15.2-15.3":0.09659,"15.4":0.12539,"15.5":0.2762,"15.6":0.66763,"16.0":0.98451,"16.1":1.8809,"16.2":1.26071,"16.3":5.84095,"16.4":3.23311,"16.5":0.07625},P:{"4":0.28607,"20":3.10589,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.34737,"8.2":0,"9.2":0.02043,"10.1":0,"11.1-11.2":0.09195,"12.0":0.01022,"13.0":0.02043,"14.0":0.04087,"15.0":0.03065,"16.0":0.08173,"17.0":0.1226,"18.0":0.08173,"19.0":0.23499},I:{"0":0,"3":0,"4":0.06593,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01884,"4.2-4.3":0.03767,"4.4":0,"4.4.3-4.4.4":0.18836},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.01459,"9":0.00486,"10":0.00486,"11":0.03404,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.27004},Q:{"13.1":0},O:{"0":0.12675},H:{"0":0.41218},L:{"0":59.17513}};
diff --git a/node_modules/caniuse-lite/data/regions/PE.js b/node_modules/caniuse-lite/data/regions/PE.js
new file mode 100644
index 0000000..c396abd
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/PE.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.01129,"41":0.02257,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00564,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.00564,"85":0,"86":0,"87":0,"88":0.01129,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0.00564,"98":0,"99":0,"100":0,"101":0,"102":0.00564,"103":0,"104":0.01693,"105":0,"106":0,"107":0,"108":0.00564,"109":0.01129,"110":0.04514,"111":0.24265,"112":0.25958,"113":0,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00564,"35":0,"36":0,"37":0,"38":0.02822,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00564,"48":0,"49":0.01693,"50":0,"51":0,"52":0,"53":0.01129,"54":0,"55":0,"56":0.00564,"57":0,"58":0,"59":0,"60":0,"61":0.00564,"62":0.00564,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.01693,"69":0,"70":0,"71":0,"72":0.00564,"73":0,"74":0.01129,"75":0,"76":0.00564,"77":0.00564,"78":0.00564,"79":0.33858,"80":0.01129,"81":0.02257,"83":0.00564,"84":0,"85":0.01129,"86":0.00564,"87":0.04514,"88":0.01129,"89":0.00564,"90":0.00564,"91":0.03386,"92":0.01129,"93":0.01693,"94":0.08465,"95":0.02822,"96":0.05079,"97":0.03386,"98":0.04514,"99":0.04514,"100":0.03386,"101":0.01693,"102":0.02822,"103":0.06772,"104":0.03386,"105":0.04514,"106":0.04514,"107":0.05643,"108":0.10157,"109":1.99762,"110":0.19186,"111":8.48707,"112":11.90673,"113":0.01129,"114":0,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.01129,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00564,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00564,"69":0.01129,"70":0,"71":0,"72":0,"73":0,"74":0.00564,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.04514,"96":0.41758,"97":1.0496,"98":0.02822,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00564,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00564,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00564,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.01129,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0.02257,"108":0.00564,"109":0.02822,"110":0.02822,"111":0.44015,"112":1.17939,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.01129,"15":0.00564,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.01693,"14.1":0.02257,"15.1":0.00564,"15.2-15.3":0,"15.4":0.01129,"15.5":0.01693,"15.6":0.05079,"16.0":0.00564,"16.1":0.04514,"16.2":0.03386,"16.3":0.13543,"16.4":0.06207,"16.5":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.0039,"6.0-6.1":0.00065,"7.0-7.1":0.0026,"8.1-8.4":0.0078,"9.0-9.2":0.0026,"9.3":0.01626,"10.0-10.2":0,"10.3":0.01431,"11.0-11.2":0.00911,"11.3-11.4":0.0026,"12.0-12.1":0.00325,"12.2-12.5":0.18146,"13.0-13.1":0.0052,"13.2":0.0013,"13.3":0.01041,"13.4-13.7":0.02537,"14.0-14.4":0.05984,"14.5-14.8":0.16455,"15.0-15.1":0.03967,"15.2-15.3":0.05463,"15.4":0.06374,"15.5":0.14764,"15.6":0.34146,"16.0":0.44942,"16.1":0.76877,"16.2":0.66535,"16.3":2.01427,"16.4":1.07705,"16.5":0.02016},P:{"4":0.32102,"20":0.74558,"5.0-5.4":0.02071,"6.2-6.4":0,"7.2-7.4":0.08284,"8.2":0,"9.2":0.01036,"10.1":0,"11.1-11.2":0.02071,"12.0":0,"13.0":0.06213,"14.0":0.02071,"15.0":0.01036,"16.0":0.05178,"17.0":0.05178,"18.0":0.03107,"19.0":0.08284},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00816,"4.2-4.3":0.00326,"4.4":0,"4.4.3-4.4.4":0.10115},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00564,"9":0,"10":0,"11":0.05079,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.07407},Q:{"13.1":0},O:{"0":0.02614},H:{"0":0.18975},L:{"0":62.26151}};
diff --git a/node_modules/caniuse-lite/data/regions/PF.js b/node_modules/caniuse-lite/data/regions/PF.js
new file mode 100644
index 0000000..31d5767
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/PF.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0.00984,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.00492,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.0246,"68":0.02951,"69":0,"70":0,"71":0,"72":0.02951,"73":0,"74":0,"75":0.13281,"76":0,"77":0,"78":0.08362,"79":0,"80":0,"81":0,"82":0.04919,"83":0.00984,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.27546,"92":0.00492,"93":0,"94":0.00492,"95":0,"96":0,"97":0.00492,"98":0.00984,"99":0.00492,"100":0,"101":0,"102":0.08362,"103":0,"104":0.01968,"105":0.00984,"106":0,"107":0.00492,"108":0.00492,"109":0.04919,"110":0.03935,"111":1.69706,"112":1.41175,"113":0.00984,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.09838,"41":0.00492,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00492,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0.00492,"58":0.01476,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00492,"66":0,"67":0.00492,"68":0,"69":0,"70":0.01476,"71":0.0246,"72":0.00492,"73":0.00984,"74":0.00492,"75":0.00492,"76":0.02951,"77":0,"78":0.00492,"79":0.15741,"80":0.01476,"81":0.14265,"83":0.00492,"84":0.01476,"85":0.32957,"86":0.0246,"87":0.30498,"88":0.00492,"89":0,"90":0,"91":0.01476,"92":0.01968,"93":0.00984,"94":0.00492,"95":0,"96":0.00984,"97":0,"98":0.02951,"99":0.00492,"100":0.01476,"101":0.00984,"102":0.00492,"103":0.1033,"104":0,"105":0.00984,"106":0.01968,"107":0.01968,"108":0.06887,"109":0.67882,"110":0.17708,"111":3.48757,"112":4.15656,"113":0,"114":0,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.03443,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0.01968,"66":0,"67":0,"68":0,"69":0.00492,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.01476,"96":0.08854,"97":0.23119,"98":0.00492,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.04427,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0.00984,"87":0,"88":0,"89":0,"90":0.01476,"91":0,"92":0.02951,"93":0.03443,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00492,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0.00984,"106":0,"107":0,"108":0.00984,"109":0.13281,"110":0.0246,"111":0.55093,"112":1.51013,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00984,"14":0.0787,"15":0.00984,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.00492,"10.1":0,"11.1":0.19676,"12.1":0.09838,"13.1":0.1033,"14.1":0.23119,"15.1":0.02951,"15.2-15.3":0.03443,"15.4":0.05411,"15.5":0.11806,"15.6":0.58536,"16.0":0.13281,"16.1":0.12298,"16.2":0.28038,"16.3":1.22483,"16.4":0.41812,"16.5":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01504,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0.00602,"9.0-9.2":0,"9.3":0.19852,"10.0-10.2":0.05715,"10.3":0.08723,"11.0-11.2":0.00902,"11.3-11.4":0.03008,"12.0-12.1":0.02105,"12.2-12.5":0.66473,"13.0-13.1":0.01203,"13.2":0,"13.3":0.06316,"13.4-13.7":0.0391,"14.0-14.4":0.40305,"14.5-14.8":0.98957,"15.0-15.1":0.2677,"15.2-15.3":0.58351,"15.4":0.23762,"15.5":0.60457,"15.6":1.32644,"16.0":1.71746,"16.1":4.09664,"16.2":2.41527,"16.3":10.17542,"16.4":3.75675,"16.5":0.03309},P:{"4":0.07215,"20":3.5972,"5.0-5.4":0.01031,"6.2-6.4":0,"7.2-7.4":0.07215,"8.2":0,"9.2":0.01031,"10.1":0,"11.1-11.2":0.03092,"12.0":0.01031,"13.0":0.12369,"14.0":0.03092,"15.0":0,"16.0":0.07215,"17.0":0.03092,"18.0":0.05154,"19.0":0.21645},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.1533},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.15741,"5.5":0},S:{"2.5":0.00508,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.52334},Q:{"13.1":0},O:{"0":0.03049},H:{"0":1.00537},L:{"0":41.97523}};
diff --git a/node_modules/caniuse-lite/data/regions/PG.js b/node_modules/caniuse-lite/data/regions/PG.js
new file mode 100644
index 0000000..affc364
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/PG.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0.00386,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0.00386,"78":0.00386,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.05021,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0.00772,"98":0.00772,"99":0.00386,"100":0,"101":0.00386,"102":0.00386,"103":0.00386,"104":0.00386,"105":0.01159,"106":0.00386,"107":0.00386,"108":0.02317,"109":0.04248,"110":0.07338,"111":0.34372,"112":0.23172,"113":0.00386,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.00386,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00772,"41":0,"42":0,"43":0.00386,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.00386,"56":0,"57":0,"58":0,"59":0,"60":0.00386,"61":0,"62":0,"63":0.00386,"64":0.00772,"65":0.00386,"66":0.00772,"67":0.00772,"68":0.00772,"69":0.04634,"70":0.01159,"71":0,"72":0,"73":0,"74":0.00386,"75":0,"76":0.00386,"77":0,"78":0.00386,"79":0.00386,"80":0.00386,"81":0.01159,"83":0,"84":0.00386,"85":0.00386,"86":0.00386,"87":0.01159,"88":0.06179,"89":0.00772,"90":0.00772,"91":0.00386,"92":0.01545,"93":0,"94":0.00386,"95":0.00386,"96":0.00386,"97":0.00386,"98":0.00772,"99":0.02317,"100":0.01159,"101":0.00386,"102":0.00772,"103":0.15448,"104":0.01545,"105":0.01931,"106":0.0309,"107":0.05407,"108":0.05793,"109":0.50206,"110":0.09655,"111":1.85762,"112":1.92714,"113":0.00386,"114":0,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.00772,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0.00772,"62":0,"63":0.00772,"64":0.00386,"65":0,"66":0,"67":0.00772,"68":0.02317,"69":0.03476,"70":0,"71":0,"72":0.00386,"73":0.01159,"74":0.11586,"75":0.01159,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0.00772,"95":0.05407,"96":0.01931,"97":0.23558,"98":0.00386,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.01545,"13":0.00772,"14":0.00386,"15":0.00386,"16":0.01545,"17":0.02317,"18":0.05021,"79":0,"80":0.01159,"81":0,"83":0,"84":0.03476,"85":0.00772,"86":0,"87":0,"88":0,"89":0.0309,"90":0.01931,"91":0,"92":0.0309,"93":0.00386,"94":0,"95":0,"96":0,"97":0,"98":0.00386,"99":0.00386,"100":0.02317,"101":0.00772,"102":0.00386,"103":0.00772,"104":0.00772,"105":0.0309,"106":0.00772,"107":0.02317,"108":0.01931,"109":0.02317,"110":0.10041,"111":0.54454,"112":1.16632,"113":0.00386},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00386,"14":0.00772,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00386,"14.1":0.01545,"15.1":0.00386,"15.2-15.3":0.00386,"15.4":0,"15.5":0.01159,"15.6":0.01931,"16.0":0.00772,"16.1":0.00772,"16.2":0.00772,"16.3":0.04248,"16.4":0.01159,"16.5":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00116,"7.0-7.1":0.00155,"8.1-8.4":0,"9.0-9.2":0.00271,"9.3":0.02904,"10.0-10.2":0.00116,"10.3":0.00232,"11.0-11.2":0.00465,"11.3-11.4":0.01471,"12.0-12.1":0.01162,"12.2-12.5":0.26292,"13.0-13.1":0.00736,"13.2":0.00194,"13.3":0.0213,"13.4-13.7":0.11771,"14.0-14.4":0.07512,"14.5-14.8":0.0395,"15.0-15.1":0.13591,"15.2-15.3":0.10842,"15.4":0.08945,"15.5":0.75739,"15.6":0.21606,"16.0":0.07241,"16.1":0.27918,"16.2":0.20716,"16.3":0.60018,"16.4":0.52893,"16.5":0.00077},P:{"4":0.09227,"20":1.6404,"5.0-5.4":0.03076,"6.2-6.4":0,"7.2-7.4":0.30757,"8.2":0,"9.2":0.0205,"10.1":0,"11.1-11.2":0.10252,"12.0":0.01025,"13.0":0.14353,"14.0":0.11278,"15.0":0.06151,"16.0":0.50237,"17.0":0.08202,"18.0":0.22555,"19.0":0.38959},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0098,"4.2-4.3":0.01714,"4.4":0,"4.4.3-4.4.4":0.1494},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0.00832,"11":0.04575,"5.5":0},S:{"2.5":0.02455,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.23324},Q:{"13.1":0.00614},O:{"0":1.74319},H:{"0":1.06342},L:{"0":77.38964}};
diff --git a/node_modules/caniuse-lite/data/regions/PH.js b/node_modules/caniuse-lite/data/regions/PH.js
new file mode 100644
index 0000000..0e344f0
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/PH.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.03393,"57":0,"58":0,"59":0.00566,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00566,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00566,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0.00566,"109":0.00566,"110":0.00566,"111":0.22055,"112":0.20924,"113":0,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00566,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.01697,"67":0,"68":0,"69":0.00566,"70":0,"71":0,"72":0,"73":0,"74":0.01131,"75":0.00566,"76":0.00566,"77":0,"78":0.01131,"79":0.03959,"80":0.00566,"81":0.00566,"83":0.01697,"84":0.00566,"85":0.00566,"86":0.01131,"87":0.03959,"88":0.01131,"89":0.01131,"90":0.01131,"91":0.02828,"92":0.01697,"93":0.164,"94":0.02262,"95":0.01131,"96":0.02262,"97":0.02262,"98":0.01131,"99":0.08483,"100":0.01131,"101":0.01131,"102":0.03393,"103":0.24317,"104":0.02828,"105":0.04524,"106":0.07917,"107":0.06786,"108":0.13007,"109":1.32893,"110":0.31103,"111":9.95846,"112":10.80671,"113":0.01697,"114":0.00566,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.01131,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.00566,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00566,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.01131,"68":0.01131,"69":0.02828,"70":0,"71":0,"72":0,"73":0,"74":0.01697,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.01697,"96":0.164,"97":0.34496,"98":0.00566,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00566,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0.00566,"104":0.00566,"105":0,"106":0,"107":0.00566,"108":0.00566,"109":0.02828,"110":0.02828,"111":0.76343,"112":1.65126,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00566,"14":0.01131,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00566,"12.1":0,"13.1":0.01131,"14.1":0.02262,"15.1":0.00566,"15.2-15.3":0.00566,"15.4":0.01131,"15.5":0.01697,"15.6":0.07352,"16.0":0.00566,"16.1":0.03393,"16.2":0.03393,"16.3":0.15269,"16.4":0.06786,"16.5":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00939,"6.0-6.1":0.00085,"7.0-7.1":0.01792,"8.1-8.4":0.00341,"9.0-9.2":0,"9.3":0.099,"10.0-10.2":0.00427,"10.3":0.04267,"11.0-11.2":0.01195,"11.3-11.4":0.02816,"12.0-12.1":0.00853,"12.2-12.5":0.39858,"13.0-13.1":0.00341,"13.2":0.00597,"13.3":0.02048,"13.4-13.7":0.04353,"14.0-14.4":0.12802,"14.5-14.8":0.22617,"15.0-15.1":0.06828,"15.2-15.3":0.09303,"15.4":0.12632,"15.5":0.18606,"15.6":0.40797,"16.0":0.60939,"16.1":0.89957,"16.2":0.57525,"16.3":2.27368,"16.4":1.3357,"16.5":0.02987},P:{"4":0.19707,"20":0.61194,"5.0-5.4":0.02074,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.01037,"12.0":0,"13.0":0.01037,"14.0":0,"15.0":0.01037,"16.0":0.02074,"17.0":0.02074,"18.0":0.01037,"19.0":0.05186},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.12393},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.66729,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.06952},Q:{"13.1":0},O:{"0":0.38236},H:{"0":0.3949},L:{"0":60.41778}};
diff --git a/node_modules/caniuse-lite/data/regions/PK.js b/node_modules/caniuse-lite/data/regions/PK.js
new file mode 100644
index 0000000..e6f0a61
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/PK.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00514,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00257,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0.00257,"98":0.00257,"99":0,"100":0,"101":0,"102":0.00257,"103":0,"104":0,"105":0,"106":0.00257,"107":0.00772,"108":0.00257,"109":0.00257,"110":0.01029,"111":0.08745,"112":0.07716,"113":0.00257,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00772,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.00257,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00257,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00257,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00257,"64":0.00514,"65":0.00257,"66":0.00257,"67":0.00257,"68":0.00772,"69":0.00257,"70":0.00257,"71":0.00257,"72":0.00514,"73":0.00257,"74":0.01286,"75":0.00514,"76":0.00257,"77":0.00257,"78":0.00257,"79":0.00514,"80":0.00514,"81":0.00772,"83":0.00772,"84":0.01286,"85":0.07202,"86":0.01029,"87":0.01286,"88":0.00257,"89":0.00514,"90":0.00514,"91":0.00514,"92":0.00257,"93":0.00772,"94":0.00772,"95":0.00514,"96":0.00257,"97":0.00257,"98":0.00257,"99":0.00514,"100":0.00257,"101":0.00257,"102":0.00514,"103":0.018,"104":0.00514,"105":0.01029,"106":0.01543,"107":0.018,"108":0.02829,"109":0.81532,"110":0.04887,"111":1.38374,"112":1.71295,"113":0.00514,"114":0.00257,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00257,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.01543,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0.00257,"62":0,"63":0.00257,"64":0.00257,"65":0,"66":0.00257,"67":0.00772,"68":0.02829,"69":0.09002,"70":0,"71":0,"72":0,"73":0,"74":0.00514,"75":0.00257,"76":0,"77":0,"78":0,"79":0.00257,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00257,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.02315,"96":0.02058,"97":0.09516,"98":0.00514,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00257,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00257,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00257,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0.00257,"108":0.00257,"109":0.01286,"110":0.01029,"111":0.07459,"112":0.15432,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00514,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.00514,"6.1":0,"7.1":0,"9.1":0.00514,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00257,"14.1":0.00514,"15.1":0,"15.2-15.3":0,"15.4":0.00257,"15.5":0.00257,"15.6":0.01543,"16.0":0,"16.1":0.00772,"16.2":0.00772,"16.3":0.02315,"16.4":0.01029,"16.5":0},G:{"8":0.00123,"3.2":0.00061,"4.0-4.1":0,"4.2-4.3":0.00123,"5.0-5.1":0.00922,"6.0-6.1":0.00246,"7.0-7.1":0.09645,"8.1-8.4":0.00922,"9.0-9.2":0.00369,"9.3":0.06942,"10.0-10.2":0.00307,"10.3":0.05099,"11.0-11.2":0.0129,"11.3-11.4":0.0043,"12.0-12.1":0.0086,"12.2-12.5":0.34097,"13.0-13.1":0.00491,"13.2":0.00491,"13.3":0.01597,"13.4-13.7":0.05161,"14.0-14.4":0.12594,"14.5-14.8":0.15482,"15.0-15.1":0.04485,"15.2-15.3":0.05714,"15.4":0.05714,"15.5":0.13086,"15.6":0.22486,"16.0":0.31025,"16.1":0.52159,"16.2":0.28199,"16.3":1.66369,"16.4":0.90188,"16.5":0.02519},P:{"4":0.20131,"20":0.83543,"5.0-5.4":0.01007,"6.2-6.4":0.01007,"7.2-7.4":0.0302,"8.2":0,"9.2":0.02013,"10.1":0,"11.1-11.2":0.01007,"12.0":0.01007,"13.0":0.0302,"14.0":0.01007,"15.0":0.01007,"16.0":0.0302,"17.0":0.07046,"18.0":0.0302,"19.0":0.08052},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.01056,"4.4":0,"4.4.3-4.4.4":0.11831},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00257,"9":0,"10":0,"11":0.02315,"5.5":0},S:{"2.5":0.08914,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.05942},Q:{"13.1":0},O:{"0":3.01577},H:{"0":1.28692},L:{"0":81.9827}};
diff --git a/node_modules/caniuse-lite/data/regions/PL.js b/node_modules/caniuse-lite/data/regions/PL.js
new file mode 100644
index 0000000..82e1294
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/PL.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.01767,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00442,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.01325,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.00442,"88":0.00442,"89":0,"90":0,"91":0.00442,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00442,"100":0.00442,"101":0,"102":0.04418,"103":0.00442,"104":0.00442,"105":0.00442,"106":0.00442,"107":0.00884,"108":0.01325,"109":0.01325,"110":0.03093,"111":1.13984,"112":1.01172,"113":0.00442,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00884,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00442,"59":0,"60":0.00442,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00442,"79":0.16347,"80":0,"81":0.00442,"83":0.00442,"84":0.00884,"85":0.01767,"86":0.01325,"87":0.00884,"88":0,"89":0.01325,"90":0.00442,"91":0.00442,"92":0.00442,"93":0.00442,"94":0.01325,"95":0.01767,"96":0.00884,"97":0.00442,"98":0.00442,"99":0.02651,"100":0.00442,"101":0.00442,"102":0.01325,"103":0.02209,"104":0.13696,"105":0.01325,"106":0.01767,"107":0.01767,"108":0.03976,"109":0.50807,"110":0.08394,"111":3.44162,"112":4.14408,"113":0.00442,"114":0,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00442,"69":0.01325,"70":0,"71":0,"72":0,"73":0,"74":0.03093,"75":0.00442,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00884,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.00442,"94":0.00442,"95":0.0972,"96":1.05148,"97":2.38572,"98":0.06185,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0.00884,"108":0.00442,"109":0.02209,"110":0.03093,"111":0.41087,"112":0.7599,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00442,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00884,"14.1":0.01767,"15.1":0.00442,"15.2-15.3":0.00442,"15.4":0.00884,"15.5":0.01325,"15.6":0.04418,"16.0":0.00884,"16.1":0.02651,"16.2":0.03093,"16.3":0.13254,"16.4":0.08394,"16.5":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00967,"10.0-10.2":0,"10.3":0.01796,"11.0-11.2":0,"11.3-11.4":0.00276,"12.0-12.1":0.00138,"12.2-12.5":0.06633,"13.0-13.1":0.00276,"13.2":0,"13.3":0.00691,"13.4-13.7":0.02625,"14.0-14.4":0.08291,"14.5-14.8":0.1976,"15.0-15.1":0.03869,"15.2-15.3":0.076,"15.4":0.08982,"15.5":0.1976,"15.6":0.49745,"16.0":0.8498,"16.1":2.02433,"16.2":1.09438,"16.3":5.07118,"16.4":2.78431,"16.5":0.08291},P:{"4":0.01019,"20":2.44442,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.01019,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.01019,"12.0":0,"13.0":0.01019,"14.0":0.02037,"15.0":0.01019,"16.0":0.02037,"17.0":0.03056,"18.0":0.05093,"19.0":0.11204},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.01091,"4.4":0,"4.4.3-4.4.4":0.01909},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01325,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.64751},Q:{"13.1":0},O:{"0":0.03349},H:{"0":2.60535},L:{"0":60.76415}};
diff --git a/node_modules/caniuse-lite/data/regions/PM.js b/node_modules/caniuse-lite/data/regions/PM.js
new file mode 100644
index 0000000..1ea6ed2
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/PM.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.05781,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00526,"89":0,"90":0,"91":0.00526,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.03153,"103":0,"104":0,"105":0,"106":0,"107":0.00526,"108":0.00526,"109":0,"110":0.03153,"111":0.32581,"112":0.40464,"113":0,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00526,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00526,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0.00526,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.11561,"103":0.05255,"104":0,"105":0,"106":0.00526,"107":0,"108":0.59382,"109":1.2612,"110":0.42566,"111":4.45624,"112":4.07263,"113":0,"114":0,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.01051,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0.01577,"95":0.01577,"96":0.13663,"97":0.70417,"98":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00526,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.02102,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0.02102,"109":0.00526,"110":0.01051,"111":1.3663,"112":1.90231,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0.01577,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.04204,"14.1":0.11036,"15.1":0.18393,"15.2-15.3":0.09985,"15.4":0.01577,"15.5":0.04204,"15.6":1.5765,"16.0":0.07883,"16.1":0.23648,"16.2":0.59382,"16.3":2.95857,"16.4":2.58021,"16.5":0.05255},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01185,"10.0-10.2":0.25471,"10.3":0.04739,"11.0-11.2":0.05924,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":1.58751,"13.0-13.1":0.05924,"13.2":0,"13.3":0.17771,"13.4-13.7":0.13624,"14.0-14.4":0.19548,"14.5-14.8":0.55681,"15.0-15.1":0.62197,"15.2-15.3":1.42165,"15.4":0.29618,"15.5":1.17286,"15.6":3.18095,"16.0":2.18579,"16.1":7.08457,"16.2":4.45451,"16.3":20.98716,"16.4":10.76903,"16.5":1.7356},P:{"4":0,"20":0.89156,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0,"12.0":0.01061,"13.0":0,"14.0":0,"15.0":0,"16.0":0,"17.0":0,"18.0":0.18043,"19.0":0.12737},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01051,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.04271},Q:{"13.1":0},O:{"0":0},H:{"0":0},L:{"0":14.69371}};
diff --git a/node_modules/caniuse-lite/data/regions/PN.js b/node_modules/caniuse-lite/data/regions/PN.js
new file mode 100644
index 0000000..1519d9c
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/PN.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0,"111":11.97875,"112":0,"113":0,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":3.99611,"110":0,"111":0,"112":0,"113":0,"114":0,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":19.96139,"110":0,"111":0,"112":55.89764,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0,"14.1":0,"15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0,"15.6":0,"16.0":0,"16.1":0,"16.2":0,"16.3":0,"16.4":0,"16.5":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0,"10.0-10.2":0,"10.3":0,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":0,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0,"14.0-14.4":0,"14.5-14.8":0,"15.0-15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0,"15.6":0,"16.0":0,"16.1":0,"16.2":0,"16.3":8.16611,"16.4":0,"16.5":0},P:{"4":0,"20":0,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0,"12.0":0,"13.0":0,"14.0":0,"15.0":0,"16.0":0,"17.0":0,"18.0":0,"19.0":0},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0},Q:{"13.1":0},O:{"0":0},H:{"0":0},L:{"0":0}};
diff --git a/node_modules/caniuse-lite/data/regions/PR.js b/node_modules/caniuse-lite/data/regions/PR.js
new file mode 100644
index 0000000..e851096
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/PR.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.1116,"39":0,"40":0,"41":0,"42":0,"43":0.08248,"44":0.37846,"45":0.08734,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00485,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.02426,"74":0,"75":0,"76":0,"77":0,"78":0.00485,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00485,"101":0,"102":0.00485,"103":0,"104":0.03882,"105":0.00485,"106":0,"107":0.00485,"108":0,"109":0.00485,"110":0.02426,"111":0.48035,"112":0.47064,"113":0.00485,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.08248,"48":1.07714,"49":0.22319,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.01941,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0.00485,"75":0,"76":0,"77":0.00485,"78":0,"79":0.02426,"80":0.00485,"81":0.00485,"83":0,"84":0.00485,"85":0.00485,"86":0,"87":0.02911,"88":0.00485,"89":0.15526,"90":0.00485,"91":0.0097,"92":0,"93":0.0097,"94":0,"95":0,"96":0,"97":0.00485,"98":0.00485,"99":0.00485,"100":0.0097,"101":0.00485,"102":0.00485,"103":0.1213,"104":0.0097,"105":0.0097,"106":0.01941,"107":0.01941,"108":0.04852,"109":0.43183,"110":0.20378,"111":3.90586,"112":4.81318,"113":0.0097,"114":0.00485,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00485,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0.00485,"75":0.0097,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.00485,"96":0.14071,"97":0.32508,"98":0.00485,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.04367,"13":0.03882,"14":0,"15":0,"16":0,"17":0,"18":0.01456,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0.00485,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0.00485,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0.00485,"106":0.01456,"107":0.0097,"108":0.01456,"109":0.05822,"110":0.04367,"111":0.8588,"112":2.13973,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0.02911,"9":0.13586,"10":0,"11":0,"12":0,"13":0.00485,"14":0.05822,"15":0.01456,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00485,"13.1":0.10189,"14.1":0.19408,"15.1":0.01941,"15.2-15.3":0.01941,"15.4":0.07278,"15.5":0.17952,"15.6":0.52402,"16.0":0.06308,"16.1":0.22319,"16.2":0.2426,"16.3":1.28578,"16.4":0.41242,"16.5":0.0097},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0.08153,"9.3":0.09706,"10.0-10.2":0,"10.3":0.01941,"11.0-11.2":0.00388,"11.3-11.4":0.01941,"12.0-12.1":0.01553,"12.2-12.5":0.16695,"13.0-13.1":0.00776,"13.2":0,"13.3":0.04271,"13.4-13.7":0.066,"14.0-14.4":0.27954,"14.5-14.8":0.74155,"15.0-15.1":0.29507,"15.2-15.3":0.34942,"15.4":0.25624,"15.5":0.67167,"15.6":2.04219,"16.0":2.98563,"16.1":4.92687,"16.2":3.21858,"16.3":14.85827,"16.4":6.72447,"16.5":0.18636},P:{"4":0.22882,"20":2.35064,"5.0-5.4":0.0104,"6.2-6.4":0,"7.2-7.4":0.0208,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.0208,"12.0":0,"13.0":0.0312,"14.0":0.0104,"15.0":0.0104,"16.0":0.10401,"17.0":0.0208,"18.0":0.07281,"19.0":0.17682},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01951,"4.2-4.3":0.08778,"4.4":0,"4.4.3-4.4.4":0.18531},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.0097,"9":0.07278,"10":0,"11":0.14556,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.23681},Q:{"13.1":0},O:{"0":0.03604},H:{"0":0.19983},L:{"0":35.37658}};
diff --git a/node_modules/caniuse-lite/data/regions/PS.js b/node_modules/caniuse-lite/data/regions/PS.js
new file mode 100644
index 0000000..0116105
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/PS.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00387,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.01162,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00387,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00387,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00387,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0.00387,"109":0.01162,"110":0.02712,"111":0.22469,"112":0.13559,"113":0.00387,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00387,"35":0,"36":0,"37":0,"38":0.00775,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00387,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0.00387,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00387,"64":0,"65":0,"66":0,"67":0,"68":0.00387,"69":0.00387,"70":0,"71":0.00387,"72":0,"73":0.00775,"74":0.00387,"75":0,"76":0.00387,"77":0.06198,"78":0.00387,"79":0.04649,"80":0.00387,"81":0.01162,"83":0.00775,"84":0.00387,"85":0.00387,"86":0.00775,"87":0.01162,"88":0.00387,"89":0.01162,"90":0.00387,"91":0.00387,"92":0.00387,"93":0.00387,"94":0,"95":0.02324,"96":0.00775,"97":0.01162,"98":0.01162,"99":0.00775,"100":0.07361,"101":0.00387,"102":0.00775,"103":0.02712,"104":0.00775,"105":0.00775,"106":0.00775,"107":0.0155,"108":0.05811,"109":0.81741,"110":1.96799,"111":4.21879,"112":2.8009,"113":0,"114":0.00387,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00387,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00387,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.0155,"69":0.05036,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.0155,"96":0.06198,"97":0.16658,"98":0.00775,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00387,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00387,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0.00387,"108":0.00387,"109":0.01162,"110":0.02712,"111":0.24406,"112":0.46488,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00387,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.0155,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00775,"14.1":0.0155,"15.1":0,"15.2-15.3":0,"15.4":0.00387,"15.5":0.01162,"15.6":0.04649,"16.0":0.00387,"16.1":0.7748,"16.2":0.02712,"16.3":0.09298,"16.4":0.03487,"16.5":0},G:{"8":0.05022,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00295,"6.0-6.1":0.01034,"7.0-7.1":0.18611,"8.1-8.4":0.40472,"9.0-9.2":0.02363,"9.3":0.03102,"10.0-10.2":0.00148,"10.3":0.01329,"11.0-11.2":0.02511,"11.3-11.4":0.00148,"12.0-12.1":0.00295,"12.2-12.5":0.16396,"13.0-13.1":0.00295,"13.2":0.00295,"13.3":0.01772,"13.4-13.7":0.0325,"14.0-14.4":0.1226,"14.5-14.8":0.37813,"15.0-15.1":0.06056,"15.2-15.3":0.12851,"15.4":0.10044,"15.5":0.22304,"15.6":0.59231,"16.0":1.19791,"16.1":1.35152,"16.2":0.90545,"16.3":5.00581,"16.4":2.73259,"16.5":0.07976},P:{"4":0.47788,"20":2.88764,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.06101,"8.2":0,"9.2":0.01017,"10.1":0.01017,"11.1-11.2":0.07117,"12.0":0.02034,"13.0":0.07117,"14.0":0.07117,"15.0":0.05084,"16.0":0.14235,"17.0":0.16268,"18.0":0.10168,"19.0":0.26436},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00739,"4.4":0,"4.4.3-4.4.4":0.13297},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00417,"9":0,"10":0.00417,"11":0.04589,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.09189},Q:{"13.1":0},O:{"0":0.07351},H:{"0":0.27839},L:{"0":66.22814}};
diff --git a/node_modules/caniuse-lite/data/regions/PT.js b/node_modules/caniuse-lite/data/regions/PT.js
new file mode 100644
index 0000000..83e2c5a
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/PT.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.01784,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0.00595,"76":0,"77":0,"78":0.01784,"79":0,"80":0,"81":0,"82":0.00595,"83":0.00595,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00595,"92":0,"93":0,"94":0,"95":0.00595,"96":0,"97":0,"98":0,"99":0,"100":0.00595,"101":0.00595,"102":0.04758,"103":0,"104":0.00595,"105":0,"106":0.00595,"107":0.00595,"108":0.01189,"109":0.01189,"110":0.02974,"111":0.86826,"112":0.85042,"113":0.00595,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.03568,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00595,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.02379,"80":0.00595,"81":0.00595,"83":0,"84":0,"85":0.02379,"86":0.00595,"87":0.02379,"88":0.01189,"89":0.04163,"90":0.00595,"91":0.04758,"92":0.00595,"93":0.07136,"94":0.05947,"95":0.00595,"96":0.00595,"97":0.01189,"98":0.00595,"99":0.01784,"100":0.02379,"101":0.01189,"102":0.01189,"103":0.07731,"104":0.01784,"105":0.02379,"106":0.03568,"107":0.02974,"108":0.08326,"109":0.91584,"110":0.20815,"111":8.92645,"112":10.62729,"113":0.01784,"114":0.00595,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0.00595,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00595,"69":0.02974,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0.00595,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00595,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.02974,"96":0.96341,"97":1.96846,"98":0.04758,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00595,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00595,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0.00595,"107":0.00595,"108":0.01784,"109":0.06542,"110":0.05352,"111":1.15967,"112":2.61073,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00595,"14":0.03568,"15":0.01189,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00595,"12.1":0.01189,"13.1":0.05947,"14.1":0.11299,"15.1":0.01189,"15.2-15.3":0.01784,"15.4":0.02379,"15.5":0.05352,"15.6":0.23788,"16.0":0.04163,"16.1":0.10705,"16.2":0.13083,"16.3":0.63633,"16.4":0.28546,"16.5":0.00595},G:{"8":0.00213,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00213,"7.0-7.1":0,"8.1-8.4":0.00427,"9.0-9.2":0,"9.3":0.06617,"10.0-10.2":0,"10.3":0.11099,"11.0-11.2":0.00427,"11.3-11.4":0.01067,"12.0-12.1":0.00427,"12.2-12.5":0.37353,"13.0-13.1":0.00427,"13.2":0.00213,"13.3":0.01281,"13.4-13.7":0.04909,"14.0-14.4":0.14087,"14.5-14.8":0.37993,"15.0-15.1":0.08324,"15.2-15.3":0.10245,"15.4":0.13447,"15.5":0.24119,"15.6":0.79829,"16.0":1.34471,"16.1":2.42689,"16.2":1.31056,"16.3":8.46529,"16.4":4.00426,"16.5":0.20918},P:{"4":0.06126,"20":1.6641,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.01021,"12.0":0.01021,"13.0":0.02042,"14.0":0.01021,"15.0":0,"16.0":0.03063,"17.0":0.02042,"18.0":0.01021,"19.0":0.05105},I:{"0":0,"3":0,"4":0.019,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0095,"4.2-4.3":0.02375,"4.4":0,"4.4.3-4.4.4":0.13775},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.01189,"9":0,"10":0,"11":0.07136,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.19454},Q:{"13.1":0},O:{"0":0.16212},H:{"0":0.27627},L:{"0":41.85721}};
diff --git a/node_modules/caniuse-lite/data/regions/PW.js b/node_modules/caniuse-lite/data/regions/PW.js
new file mode 100644
index 0000000..1d3b213
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/PW.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0.075,"106":0,"107":0,"108":0,"109":0,"110":0.09375,"111":0.475,"112":0.03125,"113":0,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00625,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0.00625,"77":0,"78":0.0375,"79":0.03125,"80":0,"81":0,"83":0.00625,"84":0,"85":0,"86":0.0875,"87":0.04375,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.01875,"94":0,"95":0,"96":0,"97":0.00625,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0.25,"104":0.0125,"105":0.00625,"106":0.00625,"107":0,"108":0.575,"109":0.825,"110":0.1625,"111":5.61875,"112":21.73125,"113":0,"114":0,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0.0375,"97":0.34375,"98":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.04375,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0.0125,"110":0,"111":1.21875,"112":1.05625,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00625,"14":0.00625,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.1,"14.1":0.875,"15.1":0,"15.2-15.3":0.00625,"15.4":0.0125,"15.5":0.00625,"15.6":0.30625,"16.0":0,"16.1":0.25625,"16.2":0.06875,"16.3":0.725,"16.4":0.13125,"16.5":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0,"10.0-10.2":0,"10.3":0,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":0.11054,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0.00867,"14.0-14.4":0.01734,"14.5-14.8":0.20807,"15.0-15.1":0.04768,"15.2-15.3":0.0802,"15.4":0.0867,"15.5":0.22975,"15.6":0.4595,"16.0":0.77594,"16.1":1.56923,"16.2":3.03442,"16.3":8.85184,"16.4":3.77135,"16.5":0.03251},P:{"4":0,"20":1.23023,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":1.12856,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0,"12.0":0,"13.0":0.01017,"14.0":0.0305,"15.0":0.25418,"16.0":0.02033,"17.0":0.0305,"18.0":0.53886,"19.0":0.10167},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.1575},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.04375,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0},Q:{"13.1":0.05625},O:{"0":0.22125},H:{"0":0.10296},L:{"0":39.06375}};
diff --git a/node_modules/caniuse-lite/data/regions/PY.js b/node_modules/caniuse-lite/data/regions/PY.js
new file mode 100644
index 0000000..f05420c
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/PY.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0.00765,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.0051,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.0306,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.00255,"70":0,"71":0,"72":0,"73":0.01275,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.00255,"85":0,"86":0,"87":0,"88":0.00255,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00255,"103":0,"104":0,"105":0.00255,"106":0,"107":0,"108":0.00255,"109":0.0153,"110":0.01275,"111":0.1275,"112":0.1377,"113":0,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00255,"48":0,"49":0.0051,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.00765,"65":0.0051,"66":0,"67":0,"68":0.0051,"69":0.01785,"70":0.0051,"71":0,"72":0,"73":0.00255,"74":0.00255,"75":0,"76":0,"77":0,"78":0,"79":0.02295,"80":0,"81":0.00255,"83":0.0051,"84":0,"85":0,"86":0,"87":0.2193,"88":0.00255,"89":0.02295,"90":0.00255,"91":0.0459,"92":0.00255,"93":0.00255,"94":0.00255,"95":0.01785,"96":0.0051,"97":0.0051,"98":0.0051,"99":0.0051,"100":0.0102,"101":0.00255,"102":0.0051,"103":0.0102,"104":0.00765,"105":0.0051,"106":0.00765,"107":0.102,"108":0.01785,"109":0.4998,"110":0.0357,"111":1.38465,"112":1.73145,"113":0.00255,"114":0,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.00255,"68":0.00255,"69":0.00765,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.00765,"96":0.07395,"97":0.17085,"98":0.00255,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0.00255,"18":0,"79":0,"80":0.00765,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00255,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0.00255,"107":0,"108":0.00255,"109":0.00765,"110":0.0102,"111":0.1326,"112":0.31365,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00765,"14":0.00255,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.0051,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00255,"14.1":0.0051,"15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0.00255,"15.6":0.01275,"16.0":0,"16.1":0.01275,"16.2":0.00765,"16.3":0.04335,"16.4":0.01785,"16.5":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00271,"6.0-6.1":0,"7.0-7.1":0.04704,"8.1-8.4":0.00181,"9.0-9.2":0,"9.3":0.04071,"10.0-10.2":0,"10.3":0.01267,"11.0-11.2":0.00814,"11.3-11.4":0.00543,"12.0-12.1":0.0009,"12.2-12.5":0.26144,"13.0-13.1":0.00271,"13.2":0.00271,"13.3":0.02352,"13.4-13.7":0.02171,"14.0-14.4":0.13479,"14.5-14.8":0.20807,"15.0-15.1":0.02352,"15.2-15.3":0.04071,"15.4":0.04976,"15.5":0.1357,"15.6":0.37724,"16.0":0.5455,"16.1":0.91731,"16.2":0.48308,"16.3":3.08664,"16.4":1.37506,"16.5":0.05156},P:{"4":0.4776,"20":2.59124,"5.0-5.4":0.01016,"6.2-6.4":0.01016,"7.2-7.4":0.75197,"8.2":0,"9.2":0.04065,"10.1":0,"11.1-11.2":0.06097,"12.0":0.02032,"13.0":0.07113,"14.0":0.07113,"15.0":0.03049,"16.0":0.26421,"17.0":0.39631,"18.0":0.10162,"19.0":0.29469},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01993,"4.2-4.3":0.05979,"4.4":0,"4.4.3-4.4.4":0.12954},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00765,"9":0,"10":0,"11":0.0102,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.11175},Q:{"13.1":0},O:{"0":0.03725},H:{"0":0.19749},L:{"0":79.07975}};
diff --git a/node_modules/caniuse-lite/data/regions/QA.js b/node_modules/caniuse-lite/data/regions/QA.js
new file mode 100644
index 0000000..e48a054
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/QA.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0.05229,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00327,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00327,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00327,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0.00654,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00654,"103":0,"104":0,"105":0,"106":0,"107":0.02288,"108":0,"109":0,"110":0.00327,"111":0.08824,"112":0.0817,"113":0,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00327,"35":0,"36":0,"37":0,"38":0.00327,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00327,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00327,"69":0,"70":0,"71":0,"72":0,"73":0.00327,"74":0.00327,"75":0.00327,"76":0.00327,"77":0,"78":0.00327,"79":0.01307,"80":0,"81":0.00327,"83":0,"84":0.00327,"85":0.00327,"86":0.00327,"87":0.00654,"88":0.00327,"89":0.00327,"90":0,"91":0.00327,"92":0,"93":0.00327,"94":0.00327,"95":0.00327,"96":0.00327,"97":0.00327,"98":0.00327,"99":0.00654,"100":0.00327,"101":0.00327,"102":0.00327,"103":0.03268,"104":0.00327,"105":0.0098,"106":0.0098,"107":0.0098,"108":0.02288,"109":0.41177,"110":0.05882,"111":2.44446,"112":2.68303,"113":0.00327,"114":0,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00327,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.0098,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00327,"64":0,"65":0,"66":0,"67":0.00327,"68":0.01634,"69":0.06536,"70":0,"71":0,"72":0,"73":0,"74":0.00654,"75":0.00654,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00327,"93":0,"94":0,"95":0.00654,"96":0.0719,"97":0.17647,"98":0.00654,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00327,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0.00327,"108":0.0098,"109":0.01961,"110":0.01961,"111":0.28432,"112":0.57517,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0.00327,"10":0,"11":0,"12":0,"13":0.00327,"14":0.0098,"15":0.00327,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00327,"13.1":0.02288,"14.1":0.02941,"15.1":0.00327,"15.2-15.3":0.00327,"15.4":0.01961,"15.5":0.02941,"15.6":0.08824,"16.0":0.00654,"16.1":0.03268,"16.2":0.04575,"16.3":0.22876,"16.4":0.11765,"16.5":0.00327},G:{"8":0.00215,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00215,"6.0-6.1":0,"7.0-7.1":0.02366,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.04731,"10.0-10.2":0,"10.3":0.03441,"11.0-11.2":0.0129,"11.3-11.4":0.00645,"12.0-12.1":0.0043,"12.2-12.5":0.23656,"13.0-13.1":0.0043,"13.2":0,"13.3":0.01505,"13.4-13.7":0.03656,"14.0-14.4":0.12688,"14.5-14.8":0.30322,"15.0-15.1":0.08602,"15.2-15.3":0.11398,"15.4":0.14193,"15.5":0.25591,"15.6":0.72903,"16.0":1.12472,"16.1":1.87956,"16.2":1.2301,"16.3":7.23436,"16.4":6.19136,"16.5":0.2043},P:{"4":0.06075,"20":2.18689,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.0405,"8.2":0,"9.2":0.01012,"10.1":0,"11.1-11.2":0.01012,"12.0":0.01012,"13.0":0.01012,"14.0":0.02025,"15.0":0.01012,"16.0":0.02025,"17.0":0.0405,"18.0":0.05062,"19.0":0.09112},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00965,"4.4":0,"4.4.3-4.4.4":0.04342},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.0817,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.10098},Q:{"13.1":0},O:{"0":4.08632},H:{"0":0.89865},L:{"0":61.51479}};
diff --git a/node_modules/caniuse-lite/data/regions/RE.js b/node_modules/caniuse-lite/data/regions/RE.js
new file mode 100644
index 0000000..d1a3987
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/RE.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00915,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00457,"69":0,"70":0.01372,"71":0,"72":0.00915,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.08231,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00915,"86":0,"87":0,"88":0.00457,"89":0.01829,"90":0,"91":0.10975,"92":0.00457,"93":0.00457,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00457,"100":0.00457,"101":0,"102":0.08231,"103":0.00457,"104":0.00457,"105":0.01829,"106":0,"107":0.00457,"108":0.02744,"109":0.02744,"110":0.03201,"111":1.17983,"112":1.0838,"113":0,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00457,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00457,"48":0,"49":0.01829,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00457,"59":0,"60":0,"61":0.00457,"62":0,"63":0.00457,"64":0,"65":0,"66":0,"67":0,"68":0.00457,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00915,"80":0,"81":0.00457,"83":0.01372,"84":0,"85":0.00915,"86":0.00457,"87":0.01372,"88":0.00457,"89":0,"90":0.00457,"91":0.00457,"92":0.00457,"93":0,"94":0.00457,"95":0.00457,"96":0,"97":0.00457,"98":0,"99":0.00457,"100":0.00915,"101":0.00457,"102":0,"103":0.05945,"104":0.00915,"105":0.01372,"106":0.00915,"107":0.03201,"108":0.02287,"109":0.61736,"110":0.16463,"111":3.52578,"112":4.95713,"113":0,"114":0.00457,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00457,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00457,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0.00457,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.00915,"96":0.21036,"97":0.63107,"98":0.01829,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0.00457,"18":0.00457,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.01829,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0.01829,"108":0.01829,"109":0.03201,"110":0.03201,"111":0.80485,"112":2.27735,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.05488,"15":0.00915,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00457,"12.1":0.01372,"13.1":0.13719,"14.1":0.16006,"15.1":0.01372,"15.2-15.3":0.01372,"15.4":0.03658,"15.5":0.05488,"15.6":0.21493,"16.0":0.03201,"16.1":0.06402,"16.2":0.08231,"16.3":0.53961,"16.4":0.24237,"16.5":0.00457},G:{"8":0.03371,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00259,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.17113,"10.0-10.2":0,"10.3":0.21002,"11.0-11.2":0.00778,"11.3-11.4":0.00778,"12.0-12.1":0.01037,"12.2-12.5":0.96972,"13.0-13.1":0.00519,"13.2":0,"13.3":0.01556,"13.4-13.7":0.05704,"14.0-14.4":0.20483,"14.5-14.8":0.30077,"15.0-15.1":0.14001,"15.2-15.3":0.17113,"15.4":0.34485,"15.5":0.41226,"15.6":1.10974,"16.0":1.5583,"16.1":3.51849,"16.2":1.8098,"16.3":9.50017,"16.4":4.06817,"16.5":0.22817},P:{"4":0.02086,"20":2.68115,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.05216,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.02086,"12.0":0,"13.0":0.02086,"14.0":0.07303,"15.0":0.02086,"16.0":0.07303,"17.0":0.04173,"18.0":0.06259,"19.0":0.15649},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.01903,"4.4":0,"4.4.3-4.4.4":0.157},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.02287,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.41245},Q:{"13.1":0},O:{"0":0.06512},H:{"0":0.20038},L:{"0":50.90645}};
diff --git a/node_modules/caniuse-lite/data/regions/RO.js b/node_modules/caniuse-lite/data/regions/RO.js
new file mode 100644
index 0000000..62b2e0b
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/RO.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.03642,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00455,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00455,"79":0,"80":0,"81":0,"82":0,"83":0.00455,"84":0,"85":0,"86":0,"87":0,"88":0.00455,"89":0,"90":0,"91":0.00455,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00455,"100":0,"101":0.01821,"102":0.03186,"103":0.36416,"104":0.00455,"105":0.00455,"106":0.00455,"107":0.00455,"108":0.04097,"109":0.01366,"110":0.01821,"111":2.2669,"112":2.17586,"113":0.00455,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0.00455,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.01366,"50":0,"51":0.00455,"52":0,"53":0.00455,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.16842,"61":0.00455,"62":0,"63":0.00455,"64":0.00455,"65":0.00455,"66":0,"67":0.00455,"68":0,"69":0,"70":0.00455,"71":0,"72":0,"73":0,"74":0.00455,"75":0.00455,"76":0.00455,"77":0.00455,"78":0,"79":0.02276,"80":0.00455,"81":0.0091,"83":0,"84":0.00455,"85":0.0091,"86":0.00455,"87":0.0091,"88":0.0091,"89":0.00455,"90":0.00455,"91":0.01366,"92":0.00455,"93":0.00455,"94":0.01821,"95":0.00455,"96":0.00455,"97":0.01821,"98":0.0091,"99":0.01366,"100":0.01366,"101":0.00455,"102":0.0091,"103":0.02276,"104":0.0091,"105":0.01821,"106":0.01821,"107":0.01821,"108":0.05007,"109":1.00144,"110":0.11835,"111":4.3335,"112":4.76139,"113":0.0091,"114":0,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00455,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.00455,"70":0,"71":0,"72":0,"73":0,"74":0.00455,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.01366,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.04552,"96":0.26857,"97":0.72377,"98":0.02276,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00455,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00455,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0.00455,"108":0.0091,"109":0.02276,"110":0.01821,"111":0.32319,"112":0.65094,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.0091,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00455,"13.1":0.01366,"14.1":0.02276,"15.1":0.00455,"15.2-15.3":0.00455,"15.4":0.0091,"15.5":0.02731,"15.6":0.05462,"16.0":0.0091,"16.1":0.05462,"16.2":0.03186,"16.3":0.14566,"16.4":0.08194,"16.5":0},G:{"8":0.00786,"3.2":0.03143,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.11591,"6.0-6.1":0,"7.0-7.1":0.01179,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.02357,"10.0-10.2":0,"10.3":0.05304,"11.0-11.2":0.02947,"11.3-11.4":0.00786,"12.0-12.1":0.01768,"12.2-12.5":0.17681,"13.0-13.1":0.00393,"13.2":0.00393,"13.3":0.01965,"13.4-13.7":0.05304,"14.0-14.4":0.18663,"14.5-14.8":0.41452,"15.0-15.1":0.09626,"15.2-15.3":0.13359,"15.4":0.17092,"15.5":0.28879,"15.6":0.90567,"16.0":1.45771,"16.1":2.40856,"16.2":1.36931,"16.3":6.52041,"16.4":4.13346,"16.5":0.12966},P:{"4":0.21316,"20":3.1162,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.01015,"8.2":0,"9.2":0.01015,"10.1":0,"11.1-11.2":0.03045,"12.0":0.01015,"13.0":0.0406,"14.0":0.0406,"15.0":0.01015,"16.0":0.05075,"17.0":0.0406,"18.0":0.07105,"19.0":0.21316},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.02709,"4.2-4.3":0.03792,"4.4":0,"4.4.3-4.4.4":0.20044},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.0052,"9":0,"10":0,"11":0.03121,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0.00545},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.23426},Q:{"13.1":0},O:{"0":0.04358},H:{"0":0.26305},L:{"0":55.7544}};
diff --git a/node_modules/caniuse-lite/data/regions/RS.js b/node_modules/caniuse-lite/data/regions/RS.js
new file mode 100644
index 0000000..74dd623
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/RS.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.04462,"53":0,"54":0,"55":0,"56":0.00446,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00446,"67":0,"68":0.00892,"69":0,"70":0,"71":0,"72":0.00446,"73":0.02231,"74":0,"75":0,"76":0,"77":0.00446,"78":0.01339,"79":0,"80":0,"81":0,"82":0.00446,"83":0,"84":0.00446,"85":0,"86":0,"87":0,"88":0.00892,"89":0.00446,"90":0,"91":0.00446,"92":0.07585,"93":0.00446,"94":0.00446,"95":0.00446,"96":0,"97":0,"98":0,"99":0.02677,"100":0.00446,"101":0,"102":0.02677,"103":0.00446,"104":0.00446,"105":0.00892,"106":0.00892,"107":0.00892,"108":0.01339,"109":0.01339,"110":0.10709,"111":0.92363,"112":0.79424,"113":0.00446,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00446,"39":0,"40":0,"41":0,"42":0,"43":0.00446,"44":0,"45":0,"46":0,"47":0,"48":0.00892,"49":0.08478,"50":0,"51":0,"52":0,"53":0.00446,"54":0,"55":0,"56":0.00446,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.00446,"65":0,"66":0.00446,"67":0,"68":0.02677,"69":0,"70":0.00446,"71":0.00446,"72":0.00446,"73":0.00446,"74":0.00446,"75":0.00892,"76":0.00446,"77":0.00446,"78":0.00446,"79":0.06693,"80":0.00446,"81":0.01785,"83":0.01339,"84":0.01339,"85":0.02231,"86":0.01339,"87":0.03123,"88":0.00892,"89":0.01339,"90":0.00446,"91":0.00446,"92":0.00446,"93":0.00446,"94":0.00446,"95":0.00892,"96":0.01339,"97":0.02231,"98":0.00892,"99":0.02231,"100":0.02231,"101":0.00892,"102":0.00892,"103":0.04462,"104":0.01339,"105":0.02677,"106":0.02677,"107":0.0357,"108":0.07585,"109":2.23546,"110":0.12494,"111":4.27906,"112":4.72526,"113":0.00446,"114":0.00446,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00892,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00446,"37":0,"38":0,"39":0,"40":0.01339,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00446,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00446,"69":0.02231,"70":0,"71":0,"72":0,"73":0,"74":0.00446,"75":0.00446,"76":0,"77":0,"78":0,"79":0.00446,"80":0,"81":0,"82":0,"83":0.00446,"84":0,"85":0.02231,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.12047,"96":0.1874,"97":0.69607,"98":0.03123,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.00446,"16":0,"17":0,"18":0.00446,"79":0,"80":0,"81":0,"83":0,"84":0.00446,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0.00446,"109":0.01785,"110":0.02231,"111":0.27664,"112":0.54883,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00892,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00446,"13.1":0.02231,"14.1":0.02231,"15.1":0.00446,"15.2-15.3":0,"15.4":0.00446,"15.5":0.00892,"15.6":0.04462,"16.0":0.00892,"16.1":0.01339,"16.2":0.02231,"16.3":0.08924,"16.4":0.08032,"16.5":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00594,"6.0-6.1":0.00297,"7.0-7.1":0.03268,"8.1-8.4":0.01931,"9.0-9.2":0.00297,"9.3":0.05941,"10.0-10.2":0.00594,"10.3":0.07872,"11.0-11.2":0.02525,"11.3-11.4":0.00594,"12.0-12.1":0.00446,"12.2-12.5":0.27032,"13.0-13.1":0.00594,"13.2":0.00743,"13.3":0.03416,"13.4-13.7":0.09209,"14.0-14.4":0.13813,"14.5-14.8":0.43815,"15.0-15.1":0.05941,"15.2-15.3":0.10842,"15.4":0.13813,"15.5":0.27032,"15.6":0.90304,"16.0":1.06047,"16.1":1.69468,"16.2":1.02037,"16.3":4.90878,"16.4":2.38681,"16.5":0.06535},P:{"4":0.08144,"20":2.58583,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.01018,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.0509,"12.0":0.01018,"13.0":0.03054,"14.0":0.04072,"15.0":0.01018,"16.0":0.03054,"17.0":0.03054,"18.0":0.0509,"19.0":0.14253},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.02308,"4.2-4.3":0.00888,"4.4":0,"4.4.3-4.4.4":0.06036},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.03526,"9":0.00504,"10":0.01008,"11":0.10579,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.27136},Q:{"13.1":0},O:{"0":0.02769},H:{"0":0.44041},L:{"0":63.50944}};
diff --git a/node_modules/caniuse-lite/data/regions/RU.js b/node_modules/caniuse-lite/data/regions/RU.js
new file mode 100644
index 0000000..9a26bd0
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/RU.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.00626,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00626,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0.00626,"51":0,"52":0.13144,"53":0.00626,"54":0,"55":0,"56":0.00626,"57":0,"58":0,"59":0,"60":0.00626,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.01252,"69":0,"70":0.00626,"71":0,"72":0.01252,"73":0,"74":0,"75":0.01252,"76":0,"77":0.00626,"78":0.01252,"79":0.00626,"80":0.00626,"81":0.00626,"82":0.00626,"83":0.00626,"84":0.01252,"85":0,"86":0,"87":0,"88":0.00626,"89":0.00626,"90":0.00626,"91":0.01878,"92":0,"93":0.00626,"94":0,"95":0.00626,"96":0.00626,"97":0.00626,"98":0.00626,"99":0.01878,"100":0.01252,"101":0.00626,"102":0.05633,"103":0.00626,"104":0.01878,"105":0.01252,"106":0.01252,"107":0.02504,"108":0.01878,"109":0.04381,"110":0.05633,"111":0.81367,"112":0.68223,"113":0.00626,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0.00626,"23":0,"24":0,"25":0.01878,"26":0.00626,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00626,"39":0,"40":0,"41":0.00626,"42":0,"43":0,"44":0.00626,"45":0.00626,"46":0,"47":0.00626,"48":0.00626,"49":0.05633,"50":0,"51":0.05007,"52":0.00626,"53":0.00626,"54":0,"55":0.01252,"56":0.03755,"57":0,"58":0.00626,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.00626,"65":0.00626,"66":0.01252,"67":0.00626,"68":0.00626,"69":0.00626,"70":0.01252,"71":0.01252,"72":0.01878,"73":0.00626,"74":0.01878,"75":0.01252,"76":0.02504,"77":0.00626,"78":0.01252,"79":0.06885,"80":0.0313,"81":0.10014,"83":0.02504,"84":0.0313,"85":0.06885,"86":0.06259,"87":0.06259,"88":0.03755,"89":0.04381,"90":0.56331,"91":0.55705,"92":0.54453,"93":0.56957,"94":0.55079,"95":0.01252,"96":0.01878,"97":0.0313,"98":0.06259,"99":0.08763,"100":0.0313,"101":0.02504,"102":0.1064,"103":0.17525,"104":0.45691,"105":0.09389,"106":0.14396,"107":0.18777,"108":0.25662,"109":2.17813,"110":0.32547,"111":5.24504,"112":4.82569,"113":0.00626,"114":0.00626,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00626,"35":0,"36":0.03755,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0.00626,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.00626,"68":0.00626,"69":0.00626,"70":0.00626,"71":0,"72":0.00626,"73":0.00626,"74":0.01878,"75":0.00626,"76":0.00626,"77":0.00626,"78":0,"79":0.02504,"80":0,"81":0,"82":0.00626,"83":0.00626,"84":0.01252,"85":0.06885,"86":0.02504,"87":0.00626,"88":0,"89":0.00626,"90":0.00626,"91":0.00626,"92":0.00626,"93":0.00626,"94":0.01252,"95":0.66971,"96":0.50698,"97":2.03418,"98":0.09389,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00626},B:{"12":0,"13":0.00626,"14":0,"15":0,"16":0,"17":0.00626,"18":0.01878,"79":0,"80":0,"81":0,"83":0.00626,"84":0.00626,"85":0.00626,"86":0.00626,"87":0,"88":0,"89":0.00626,"90":0.00626,"91":0,"92":0.01252,"93":0,"94":0,"95":0,"96":0,"97":0.00626,"98":0.00626,"99":0.00626,"100":0,"101":0,"102":0,"103":0.00626,"104":0.00626,"105":0.00626,"106":0,"107":0.01252,"108":0.01878,"109":0.05007,"110":0.0313,"111":0.55079,"112":1.27058,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.05633,"14":0.08763,"15":0.01878,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.0313,"10.1":0,"11.1":0.00626,"12.1":0.01252,"13.1":0.09389,"14.1":0.11266,"15.1":0.0313,"15.2-15.3":0.0313,"15.4":0.03755,"15.5":0.04381,"15.6":0.16899,"16.0":0.01252,"16.1":0.06259,"16.2":0.06259,"16.3":0.28166,"16.4":0.15022,"16.5":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00177,"6.0-6.1":0,"7.0-7.1":0.02296,"8.1-8.4":0.02296,"9.0-9.2":0.02472,"9.3":0.10595,"10.0-10.2":0.01413,"10.3":0.09536,"11.0-11.2":0.07063,"11.3-11.4":0.03179,"12.0-12.1":0.02119,"12.2-12.5":0.35141,"13.0-13.1":0.01589,"13.2":0.0106,"13.3":0.05121,"13.4-13.7":0.09536,"14.0-14.4":0.31786,"14.5-14.8":0.61629,"15.0-15.1":0.30196,"15.2-15.3":0.5898,"15.4":0.25075,"15.5":0.34434,"15.6":0.6675,"16.0":1.72172,"16.1":2.19673,"16.2":1.39327,"16.3":4.35462,"16.4":2.80949,"16.5":0.0671},P:{"4":0.05359,"20":0.86811,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.0643,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.02143,"12.0":0,"13.0":0.02143,"14.0":0.01072,"15.0":0.01072,"16.0":0.02143,"17.0":0.02143,"18.0":0.02143,"19.0":0.07502},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00453,"4.2-4.3":0.03399,"4.4":0,"4.4.3-4.4.4":0.07025},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.0129,"9":0.00645,"10":0,"11":0.19346,"5.5":0},S:{"2.5":0.00374,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.1459},Q:{"13.1":0.00748},O:{"0":0.15338},H:{"0":0.62689},L:{"0":36.09214}};
diff --git a/node_modules/caniuse-lite/data/regions/RW.js b/node_modules/caniuse-lite/data/regions/RW.js
new file mode 100644
index 0000000..968a2c0
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/RW.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00467,"35":0,"36":0,"37":0.00467,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00467,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.03269,"69":0,"70":0,"71":0,"72":0.00467,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00467,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.01401,"103":0,"104":0,"105":0.00467,"106":0,"107":0.00467,"108":0.00467,"109":0.00467,"110":0.02335,"111":0.44365,"112":0.39695,"113":0.02802,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00934,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00467,"35":0,"36":0,"37":0,"38":0.00934,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00467,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.00467,"56":0,"57":0,"58":0.00934,"59":0.00467,"60":0,"61":0.00467,"62":0,"63":0,"64":0.00934,"65":0.00467,"66":0.00467,"67":0,"68":0.00934,"69":0.01401,"70":0.00467,"71":0,"72":0.00934,"73":0,"74":0.00934,"75":0.00934,"76":0.00467,"77":0.00467,"78":0.00467,"79":0.00934,"80":0.07472,"81":0.00467,"83":0.01401,"84":0.01868,"85":0,"86":0.00467,"87":0.02335,"88":0.00934,"89":0.00934,"90":0.00467,"91":0.00467,"92":0.01401,"93":0.02802,"94":0.00467,"95":0.01401,"96":0.00467,"97":0.01401,"98":0.00934,"99":0.00934,"100":0.00467,"101":0.00934,"102":0.01401,"103":0.06538,"104":0.02802,"105":0.02335,"106":0.04203,"107":0.09807,"108":0.07005,"109":1.00405,"110":0.21015,"111":6.31851,"112":6.19242,"113":0.02802,"114":0.02335,"115":0,"116":0},F:{"9":0,"11":0.00467,"12":0,"15":0,"16":0.01401,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0.00467,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0.00467,"32":0,"33":0.00467,"34":0,"35":0.00467,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0.00934,"52":0,"53":0.00934,"54":0,"55":0.00467,"56":0.00934,"57":0.00467,"58":0.00934,"60":0.07005,"62":0,"63":0.1401,"64":0.00934,"65":0.00467,"66":0.05137,"67":0.16812,"68":0.36893,"69":0.25685,"70":0,"71":0,"72":0,"73":0.05137,"74":0.00934,"75":0.00467,"76":0,"77":0,"78":0,"79":0.00467,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.03269,"96":0.0467,"97":0.33157,"98":0.02335,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00467},B:{"12":0.02335,"13":0.01401,"14":0.00934,"15":0.00467,"16":0.00467,"17":0.00467,"18":0.03736,"79":0,"80":0,"81":0,"83":0,"84":0.00934,"85":0,"86":0,"87":0,"88":0,"89":0.00934,"90":0.00467,"91":0,"92":0.0467,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00934,"101":0,"102":0,"103":0,"104":0.00467,"105":0.00467,"106":0.00467,"107":0.00934,"108":0.00934,"109":0.01868,"110":0.06538,"111":0.62578,"112":1.02273,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00934,"14":0.00467,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.00934,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00467,"13.1":0.03736,"14.1":0.02335,"15.1":0.00934,"15.2-15.3":0,"15.4":0.01401,"15.5":0.00467,"15.6":0.09807,"16.0":0.00467,"16.1":0.02335,"16.2":0.04203,"16.3":0.03736,"16.4":0.02335,"16.5":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00118,"6.0-6.1":0,"7.0-7.1":0.00118,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.06745,"10.0-10.2":0,"10.3":0.08756,"11.0-11.2":0.0071,"11.3-11.4":0.00828,"12.0-12.1":0.01302,"12.2-12.5":1.11699,"13.0-13.1":0.00473,"13.2":0.00355,"13.3":0.04733,"13.4-13.7":0.07455,"14.0-14.4":0.24848,"14.5-14.8":0.33013,"15.0-15.1":0.11596,"15.2-15.3":0.20825,"15.4":0.18695,"15.5":0.24493,"15.6":0.523,"16.0":0.38574,"16.1":0.66972,"16.2":0.69339,"16.3":2.65049,"16.4":2.0281,"16.5":0.02721},P:{"4":0.13357,"20":0.80139,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.24658,"8.2":0,"9.2":0.02055,"10.1":0,"11.1-11.2":0.01027,"12.0":0,"13.0":0.01027,"14.0":0,"15.0":0.01027,"16.0":0.03082,"17.0":0.07192,"18.0":0.02055,"19.0":0.20549},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00416,"4.2-4.3":0.00416,"4.4":0,"4.4.3-4.4.4":0.10304},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.04203,"5.5":0},S:{"2.5":0.06396,_:"3.0-3.1"},J:{"7":0,"10":0.01066},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.09594},Q:{"13.1":0},O:{"0":0.20254},H:{"0":7.87192},L:{"0":56.58461}};
diff --git a/node_modules/caniuse-lite/data/regions/SA.js b/node_modules/caniuse-lite/data/regions/SA.js
new file mode 100644
index 0000000..d2d63eb
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/SA.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.0023,"103":0,"104":0.0092,"105":0,"106":0,"107":0,"108":0,"109":0.0023,"110":0.0069,"111":0.06437,"112":0.04368,"113":0,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.0023,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.0023,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.0023,"68":0.0023,"69":0.0023,"70":0,"71":0,"72":0,"73":0,"74":0.0023,"75":0,"76":0.0023,"77":0,"78":0.0023,"79":0.0092,"80":0,"81":0.0023,"83":0.0023,"84":0.0023,"85":0.0023,"86":0.0023,"87":0.0046,"88":0.0046,"89":0.0023,"90":0.0023,"91":0.0023,"92":0.0046,"93":0.0069,"94":0.0069,"95":0.0023,"96":0.0023,"97":0.0023,"98":0.0023,"99":0.02069,"100":0.0023,"101":0.0023,"102":0.0046,"103":0.01379,"104":0.0023,"105":0.0069,"106":0.0069,"107":0.0092,"108":0.02069,"109":0.25059,"110":0.04368,"111":1.23916,"112":1.24376,"113":0.0023,"114":0.0023,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.0023,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.0023,"69":0.0046,"70":0,"71":0,"72":0,"73":0,"74":0.0046,"75":0.0023,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0.0023,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.0023,"96":0.01609,"97":0.04368,"98":0.0023,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.0023,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.0023,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0.0023,"108":0.0046,"109":0.0092,"110":0.01379,"111":0.21841,"112":0.28048,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.0023,"14":0.01379,"15":0.0046,_:"0","3.1":0,"3.2":0,"5.1":0.0069,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.0069,"14.1":0.02759,"15.1":0.0046,"15.2-15.3":0.0046,"15.4":0.01379,"15.5":0.02069,"15.6":0.09886,"16.0":0.0115,"16.1":0.05288,"16.2":0.04138,"16.3":0.17013,"16.4":0.08736,"16.5":0.0023},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.01928,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.04628,"10.0-10.2":0,"10.3":0.08484,"11.0-11.2":0.00386,"11.3-11.4":0.00386,"12.0-12.1":0.027,"12.2-12.5":0.45121,"13.0-13.1":0.03471,"13.2":0.01928,"13.3":0.06942,"13.4-13.7":0.1774,"14.0-14.4":0.96026,"14.5-14.8":1.29192,"15.0-15.1":0.47049,"15.2-15.3":0.52062,"15.4":0.66717,"15.5":1.12223,"15.6":2.2946,"16.0":3.33584,"16.1":4.20355,"16.2":3.07746,"16.3":10.80967,"16.4":7.11132,"16.5":0.08099},P:{"4":0.03091,"20":1.74132,"5.0-5.4":0.0103,"6.2-6.4":0,"7.2-7.4":0.05152,"8.2":0,"9.2":0.0103,"10.1":0,"11.1-11.2":0.02061,"12.0":0,"13.0":0.02061,"14.0":0.03091,"15.0":0.0103,"16.0":0.06182,"17.0":0.03091,"18.0":0.05152,"19.0":0.15455},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.08609},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01379,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.06931},Q:{"13.1":0},O:{"0":1.87904},H:{"0":0.26976},L:{"0":53.03662}};
diff --git a/node_modules/caniuse-lite/data/regions/SB.js b/node_modules/caniuse-lite/data/regions/SB.js
new file mode 100644
index 0000000..d42d18a
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/SB.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0.00372,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0.00744,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00372,"89":0,"90":0,"91":0,"92":0.00744,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00372,"103":0,"104":0,"105":0,"106":0,"107":0.00372,"108":0,"109":0,"110":0.24924,"111":0.36456,"112":0.17856,"113":0,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.02232,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.02232,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.00372,"70":0,"71":0,"72":0,"73":0,"74":0.00372,"75":0,"76":0,"77":0,"78":0,"79":0.00372,"80":0.00372,"81":0.00744,"83":0.00744,"84":0,"85":0,"86":0.00372,"87":0.01116,"88":0,"89":0.00744,"90":0.00744,"91":0,"92":0,"93":0,"94":0.02604,"95":0,"96":0,"97":0.01116,"98":0,"99":0,"100":0.01488,"101":0,"102":0.01488,"103":0.42036,"104":0.04092,"105":0.01116,"106":0.01488,"107":0.0186,"108":0.17856,"109":0.38316,"110":0.06696,"111":2.18364,"112":2.7714,"113":0.00744,"114":0,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0.00372,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.00372,"44":0,"45":0.00372,"46":0,"47":0,"48":0,"49":0,"50":0.00744,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00744,"64":0.00372,"65":0,"66":0,"67":0.03348,"68":0.0186,"69":0.0558,"70":0,"71":0,"72":0,"73":0.00744,"74":0.09672,"75":0.00372,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.00372,"96":0.0186,"97":0.093,"98":0.00372,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.01488,"13":0.02232,"14":0.5766,"15":0.02976,"16":0.02976,"17":0.0186,"18":0.03348,"79":0,"80":0,"81":0,"83":0,"84":0.00744,"85":0,"86":0,"87":0,"88":0.00372,"89":0.02232,"90":0.00372,"91":0,"92":0.00372,"93":0,"94":0.00372,"95":0.00372,"96":0.00372,"97":0.00372,"98":0,"99":0,"100":0,"101":0.00744,"102":0.00372,"103":0.01116,"104":0.00372,"105":0.00744,"106":0.01488,"107":0.02232,"108":0.03348,"109":0.11904,"110":0.13764,"111":0.59892,"112":1.11228,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00744,"14":0.00744,"15":0.00372,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00744,"13.1":0,"14.1":0.01116,"15.1":0,"15.2-15.3":0,"15.4":0.00744,"15.5":0.00744,"15.6":0.0558,"16.0":0,"16.1":0,"16.2":0.00372,"16.3":0.04464,"16.4":0.02976,"16.5":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.02054,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0.03082,"9.3":0.01541,"10.0-10.2":0,"10.3":0.13261,"11.0-11.2":0.00233,"11.3-11.4":0.00233,"12.0-12.1":0,"12.2-12.5":0.20125,"13.0-13.1":0.01027,"13.2":0,"13.3":0.08171,"13.4-13.7":0.05883,"14.0-14.4":0.10739,"14.5-14.8":0.14475,"15.0-15.1":0.06864,"15.2-15.3":0.14522,"15.4":0.10179,"15.5":0.12981,"15.6":0.07891,"16.0":0.26008,"16.1":0.20125,"16.2":0.60421,"16.3":1.18787,"16.4":0.32358,"16.5":0},P:{"4":0.25372,"20":1.53249,"5.0-5.4":0,"6.2-6.4":0.03045,"7.2-7.4":0.24357,"8.2":0,"9.2":0.0203,"10.1":0.01015,"11.1-11.2":0.06089,"12.0":0.01015,"13.0":0.10149,"14.0":0.08119,"15.0":0.0406,"16.0":0.33491,"17.0":0.01015,"18.0":0.16238,"19.0":0.50745},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.11812},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.27528,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.8164},Q:{"13.1":0},O:{"0":3.98152},H:{"0":1.43881},L:{"0":72.17988}};
diff --git a/node_modules/caniuse-lite/data/regions/SC.js b/node_modules/caniuse-lite/data/regions/SC.js
new file mode 100644
index 0000000..7bf4e51
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/SC.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00557,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00557,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00557,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00557,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.0167,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00557,"101":0.00557,"102":0.46746,"103":0,"104":0.0167,"105":0.16139,"106":0.00557,"107":0,"108":0.05565,"109":0.02226,"110":0.0167,"111":0.24486,"112":0.25599,"113":0.00557,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.03896,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00557,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0.05565,"60":0.0167,"61":0,"62":0,"63":0.00557,"64":0.00557,"65":0.00557,"66":0,"67":0,"68":0.00557,"69":0.00557,"70":0.01113,"71":0.00557,"72":0.7958,"73":0.00557,"74":0.00557,"75":0.00557,"76":0.00557,"77":0,"78":0.0167,"79":0.03896,"80":0.00557,"81":0.01113,"83":0.45077,"84":0.02783,"85":0.05009,"86":0.18921,"87":0.03339,"88":0.01113,"89":0.08904,"90":1.56377,"91":1.61942,"92":1.63055,"93":1.61385,"94":1.58603,"95":0,"96":0.0167,"97":0.00557,"98":0.05009,"99":0.30051,"100":0.01113,"101":0.00557,"102":0.02783,"103":0.06678,"104":0.01113,"105":0.07235,"106":0.18921,"107":0.06122,"108":0.09461,"109":2.99954,"110":3.85655,"111":3.2444,"112":2.82702,"113":0.01113,"114":0.00557,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.00557,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.00557,"68":0.04452,"69":0.2393,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.02226,"90":0,"91":0,"92":0,"93":0,"94":0.03339,"95":0.0167,"96":0.05009,"97":0.1113,"98":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.01113,"79":0,"80":0,"81":0,"83":0.02783,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00557,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.03896,"101":0.00557,"102":0,"103":0,"104":0.00557,"105":0.0167,"106":0.00557,"107":0,"108":0.04452,"109":0.02226,"110":0.03339,"111":0.30608,"112":0.51755,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.0167,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.00557,"6.1":0,"7.1":0,"9.1":0.02226,"10.1":0,"11.1":0,"12.1":0.49529,"13.1":0.0167,"14.1":0.03339,"15.1":0.02783,"15.2-15.3":0.02226,"15.4":0.00557,"15.5":0.00557,"15.6":0.06122,"16.0":0.02226,"16.1":0.05009,"16.2":0.02226,"16.3":0.13913,"16.4":0.09461,"16.5":0.01113},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.0036,"6.0-6.1":0,"7.0-7.1":0.0072,"8.1-8.4":0,"9.0-9.2":0.0036,"9.3":0.03361,"10.0-10.2":0,"10.3":0.02761,"11.0-11.2":0.0144,"11.3-11.4":0.0096,"12.0-12.1":0.02521,"12.2-12.5":0.4921,"13.0-13.1":0.0108,"13.2":0.0132,"13.3":0.03601,"13.4-13.7":0.14403,"14.0-14.4":0.39848,"14.5-14.8":0.41889,"15.0-15.1":0.20764,"15.2-15.3":0.28686,"15.4":0.25925,"15.5":0.19324,"15.6":0.4897,"16.0":0.85338,"16.1":1.27587,"16.2":0.74176,"16.3":3.26949,"16.4":1.65635,"16.5":0.02521},P:{"4":0.08053,"20":1.40934,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.0906,"8.2":0,"9.2":0.02013,"10.1":0,"11.1-11.2":0.0302,"12.0":0.0604,"13.0":0.0604,"14.0":0.04027,"15.0":0.04027,"16.0":0.05033,"17.0":0.1208,"18.0":0.0604,"19.0":0.31207},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.0567},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.05565,"9":0,"10":0,"11":0.1113,"5.5":0},S:{"2.5":0.00444,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.43907},Q:{"13.1":0.03105},O:{"0":1.20632},H:{"0":0.697},L:{"0":53.27575}};
diff --git a/node_modules/caniuse-lite/data/regions/SD.js b/node_modules/caniuse-lite/data/regions/SD.js
new file mode 100644
index 0000000..65cce47
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/SD.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00143,"39":0,"40":0,"41":0,"42":0,"43":0.00143,"44":0,"45":0,"46":0,"47":0.00143,"48":0,"49":0.00143,"50":0,"51":0,"52":0.00285,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00143,"69":0,"70":0,"71":0,"72":0.00285,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00143,"86":0,"87":0,"88":0.00143,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0.00143,"95":0,"96":0.00143,"97":0,"98":0,"99":0.00143,"100":0,"101":0,"102":0.00428,"103":0.00143,"104":0.00143,"105":0.00143,"106":0.00143,"107":0.00143,"108":0.00285,"109":0.00999,"110":0.02283,"111":0.15412,"112":0.03425,"113":0,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0.00143,"30":0,"31":0.00143,"32":0,"33":0.00143,"34":0,"35":0,"36":0.00285,"37":0,"38":0,"39":0,"40":0.00285,"41":0,"42":0,"43":0.00285,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0.00143,"51":0,"52":0,"53":0,"54":0,"55":0.00143,"56":0,"57":0.00143,"58":0.00143,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.00143,"65":0.00143,"66":0,"67":0,"68":0.00143,"69":0.00143,"70":0.00428,"71":0.00143,"72":0.00285,"73":0,"74":0.00143,"75":0.00143,"76":0,"77":0.00143,"78":0.00285,"79":0.00999,"80":0.00143,"81":0.00428,"83":0.00143,"84":0,"85":0.00143,"86":0.00143,"87":0.00285,"88":0.00571,"89":0,"90":0.00143,"91":0.00143,"92":0.00571,"93":0.00143,"94":0,"95":0.00143,"96":0.00143,"97":0.00143,"98":0.00571,"99":0.00714,"100":0.00143,"101":0.00143,"102":0.00143,"103":0.0157,"104":0.00714,"105":0.00571,"106":0.00428,"107":0.00856,"108":0.00999,"109":0.1056,"110":0.02854,"111":0.35675,"112":0.13271,"113":0.00143,"114":0,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0.00285,"25":0,"26":0.00143,"27":0,"28":0.00571,"29":0,"30":0.00143,"31":0,"32":0.00143,"33":0.00143,"34":0,"35":0,"36":0,"37":0,"38":0.00143,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0.00143,"54":0,"55":0,"56":0.00143,"57":0,"58":0.00571,"60":0.00856,"62":0,"63":0.01284,"64":0.01142,"65":0.00285,"66":0.00571,"67":0.02141,"68":0.03568,"69":0.06707,"70":0,"71":0,"72":0.00143,"73":0.00285,"74":0.01427,"75":0.00428,"76":0,"77":0,"78":0,"79":0.00428,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00143,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0.00143,"95":0.00856,"96":0.01284,"97":0.03853,"98":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0.00285,"10.6":0.00428,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00856},B:{"12":0.00428,"13":0.00143,"14":0.00143,"15":0,"16":0.00143,"17":0.00143,"18":0.00571,"79":0,"80":0,"81":0,"83":0,"84":0.00285,"85":0,"86":0,"87":0,"88":0,"89":0.00143,"90":0.00143,"91":0,"92":0.00856,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0.00428,"106":0.00143,"107":0.00285,"108":0.00428,"109":0.02426,"110":0.01427,"111":0.10132,"112":0.09418,"113":0.00143},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00571,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.12558,"6.1":0,"7.1":0,"9.1":0.00143,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00428,"14.1":0.00714,"15.1":0.00285,"15.2-15.3":0,"15.4":0.00285,"15.5":0.00143,"15.6":0.02283,"16.0":0.00143,"16.1":0.00285,"16.2":0.01142,"16.3":0.01712,"16.4":0.00571,"16.5":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00245,"5.0-5.1":0,"6.0-6.1":0.00491,"7.0-7.1":0.00245,"8.1-8.4":0.00613,"9.0-9.2":0.00368,"9.3":0.02085,"10.0-10.2":0,"10.3":0.00981,"11.0-11.2":0.00245,"11.3-11.4":0.00859,"12.0-12.1":0.03557,"12.2-12.5":0.55813,"13.0-13.1":0.02331,"13.2":0.00368,"13.3":0.02331,"13.4-13.7":0.05152,"14.0-14.4":2.74279,"14.5-14.8":0.31034,"15.0-15.1":0.19258,"15.2-15.3":0.1705,"15.4":0.20853,"15.5":0.26005,"15.6":0.35941,"16.0":1.15551,"16.1":0.9666,"16.2":0.84148,"16.3":2.10861,"16.4":1.35054,"16.5":0.01349},P:{"4":0.35858,"20":1.37286,"5.0-5.4":0.02049,"6.2-6.4":0.04098,"7.2-7.4":0.28687,"8.2":0,"9.2":0.03074,"10.1":0.02049,"11.1-11.2":0.1127,"12.0":0.02049,"13.0":0.06147,"14.0":0.15368,"15.0":0.04098,"16.0":0.47128,"17.0":0.09221,"18.0":0.23564,"19.0":0.40981},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.01016,"4.4":0,"4.4.3-4.4.4":0.09269},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00999,"5.5":0},S:{"2.5":0.00857,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.18003},Q:{"13.1":0},O:{"0":1.56029},H:{"0":12.96183},L:{"0":64.78112}};
diff --git a/node_modules/caniuse-lite/data/regions/SE.js b/node_modules/caniuse-lite/data/regions/SE.js
new file mode 100644
index 0000000..9df1a46
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/SE.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00578,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0.00578,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.01734,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00578,"89":0,"90":0,"91":0.00578,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.04046,"103":0,"104":0,"105":0.00578,"106":0.00578,"107":0,"108":0.00578,"109":0.01156,"110":0.02312,"111":0.56644,"112":0.54332,"113":0,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00578,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00578,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.02312,"67":0.00578,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0.01156,"76":0.00578,"77":0.01156,"78":0.00578,"79":0.01734,"80":0.00578,"81":0.00578,"83":0.00578,"84":0.01156,"85":0.01156,"86":0.01156,"87":0.09248,"88":0.00578,"89":0.02312,"90":0.01156,"91":0.00578,"92":0.01734,"93":0.17918,"94":0.04046,"95":0.00578,"96":0.01156,"97":0.00578,"98":0.01156,"99":0.01156,"100":0.00578,"101":0.01734,"102":0.05202,"103":0.23698,"104":0.01156,"105":0.06358,"106":0.02312,"107":0.04046,"108":0.24276,"109":1.05774,"110":0.49708,"111":9.7393,"112":9.58324,"113":0.01734,"114":0,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00578,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.00578,"70":0.00578,"71":0,"72":0,"73":0,"74":0,"75":0.00578,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00578,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0.00578,"95":0.01734,"96":0.15028,"97":0.36414,"98":0.01156,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00578,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.00578,"102":0,"103":0.00578,"104":0.00578,"105":0.00578,"106":0.00578,"107":0.01156,"108":0.01734,"109":0.07514,"110":0.08092,"111":1.41032,"112":2.9767,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00578,"14":0.04624,"15":0.01156,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.00578,"10.1":0,"11.1":0.00578,"12.1":0.01734,"13.1":0.06936,"14.1":0.16762,"15.1":0.01734,"15.2-15.3":0.01734,"15.4":0.04624,"15.5":0.0867,"15.6":0.41616,"16.0":0.03468,"16.1":0.10982,"16.2":0.19652,"16.3":0.96526,"16.4":0.4335,"16.5":0.00578},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00397,"8.1-8.4":0,"9.0-9.2":0.00795,"9.3":0.09538,"10.0-10.2":0,"10.3":0.11525,"11.0-11.2":0.00397,"11.3-11.4":0.05564,"12.0-12.1":0.01192,"12.2-12.5":0.50074,"13.0-13.1":0.00795,"13.2":0.00795,"13.3":0.02782,"13.4-13.7":0.1232,"14.0-14.4":0.26229,"14.5-14.8":0.86635,"15.0-15.1":0.14307,"15.2-15.3":0.23845,"15.4":0.28216,"15.5":0.58022,"15.6":2.17383,"16.0":2.10627,"16.1":5.45245,"16.2":2.67854,"16.3":15.6142,"16.4":6.10818,"16.5":0.08743},P:{"4":0.05181,"20":3.43998,"5.0-5.4":0.01036,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0,"12.0":0,"13.0":0.01036,"14.0":0.01036,"15.0":0.01036,"16.0":0.02072,"17.0":0.02072,"18.0":0.03108,"19.0":0.10361},I:{"0":0,"3":0,"4":0.02123,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00708,"4.2-4.3":0.00708,"4.4":0,"4.4.3-4.4.4":0.05306},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.0289,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.34604},Q:{"13.1":0},O:{"0":0.01266},H:{"0":0.12385},L:{"0":24.26552}};
diff --git a/node_modules/caniuse-lite/data/regions/SG.js b/node_modules/caniuse-lite/data/regions/SG.js
new file mode 100644
index 0000000..c853fb0
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/SG.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0.00269,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0.00269,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00269,"69":0,"70":0,"71":0,"72":0.05649,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00538,"79":0.00269,"80":0.00269,"81":0.00269,"82":0.00269,"83":0.00269,"84":0,"85":0,"86":0,"87":0,"88":0.00269,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00807,"103":0.00269,"104":0,"105":0.00538,"106":0.00269,"107":0.00269,"108":0.00269,"109":0.00538,"110":0.00807,"111":0.17216,"112":0.14795,"113":0.00269,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0.00538,"30":0,"31":0,"32":0,"33":0,"34":0.00538,"35":0,"36":0,"37":0,"38":0.02152,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00538,"48":0,"49":0.00269,"50":0,"51":0,"52":0,"53":0.00538,"54":0,"55":0,"56":0.00269,"57":0,"58":0,"59":0,"60":0.00269,"61":0.00269,"62":0,"63":0,"64":0,"65":0.00269,"66":0,"67":0.00269,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.00538,"74":0.00269,"75":0.00269,"76":0,"77":0.00269,"78":0.00269,"79":0.05649,"80":0.00538,"81":0.01614,"83":0.01345,"84":0.02421,"85":0.02152,"86":0.02959,"87":0.03497,"88":0,"89":0.00269,"90":0,"91":0.01345,"92":0.00269,"93":0.00269,"94":0.00807,"95":0.00269,"96":0.00538,"97":0.00538,"98":0.00538,"99":0.01076,"100":0.01345,"101":0.00807,"102":0.00807,"103":0.02421,"104":0.01076,"105":0.01614,"106":0.0269,"107":0.02959,"108":0.04573,"109":0.18292,"110":0.06994,"111":1.47143,"112":1.81037,"113":0.00538,"114":0.00269,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00538,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00269,"37":0.00269,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.01076,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.00269,"68":0.01345,"69":0.03228,"70":0,"71":0.00269,"72":0,"73":0,"74":0.00269,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0.00269,"95":0.00269,"96":0.01883,"97":0.06187,"98":0.00269,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00269,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0.00269,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0.00269,"107":0.00269,"108":0.00538,"109":0.01076,"110":0.01345,"111":0.1614,"112":0.35508,"113":0},E:{"4":0.00269,"5":0,"6":0,"7":0,"8":0.00269,"9":0,"10":0,"11":0,"12":0,"13":0.00538,"14":0.01614,"15":0.00269,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00269,"13.1":0.01883,"14.1":0.03766,"15.1":0.00538,"15.2-15.3":0.00538,"15.4":0.01883,"15.5":0.0269,"15.6":0.11567,"16.0":0.01883,"16.1":0.04573,"16.2":0.05649,"16.3":0.27976,"16.4":0.1345,"16.5":0},G:{"8":0,"3.2":0.00191,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00191,"6.0-6.1":0.00383,"7.0-7.1":0.01532,"8.1-8.4":0.0134,"9.0-9.2":0.00574,"9.3":0.07277,"10.0-10.2":0,"10.3":0.05362,"11.0-11.2":0.0134,"11.3-11.4":0.01149,"12.0-12.1":0.00957,"12.2-12.5":0.26617,"13.0-13.1":0.00766,"13.2":0.00383,"13.3":0.03064,"13.4-13.7":0.08043,"14.0-14.4":0.1666,"14.5-14.8":0.26426,"15.0-15.1":0.09958,"15.2-15.3":0.10724,"15.4":0.13213,"15.5":0.21639,"15.6":0.71618,"16.0":1.14895,"16.1":2.50281,"16.2":1.36151,"16.3":7.26139,"16.4":3.81644,"16.5":0.05745},P:{"4":0.45091,"20":2.58247,"5.0-5.4":0.04099,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0.01025,"11.1-11.2":0,"12.0":0.01025,"13.0":0.0205,"14.0":0,"15.0":0,"16.0":0.0205,"17.0":0.0205,"18.0":0.0205,"19.0":0.06149},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":22.08849,"4.4":0,"4.4.3-4.4.4":22.08849},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.04889,"9":0.0163,"10":0.0163,"11":0.19558,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.42398},Q:{"13.1":0.00731},O:{"0":0.55556},H:{"0":0.44984},L:{"0":20.10541}};
diff --git a/node_modules/caniuse-lite/data/regions/SH.js b/node_modules/caniuse-lite/data/regions/SH.js
new file mode 100644
index 0000000..49b6b25
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/SH.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0,"111":5.44449,"112":0,"113":0,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0,"111":0,"112":0,"113":0,"114":0,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0,"111":0,"112":0,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0,"14.1":0,"15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0,"15.6":0,"16.0":0,"16.1":0,"16.2":0,"16.3":9.07161,"16.4":0,"16.5":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0,"10.0-10.2":0,"10.3":0,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":0,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0,"14.0-14.4":0,"14.5-14.8":0,"15.0-15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0,"15.6":0,"16.0":0,"16.1":0,"16.2":0,"16.3":0,"16.4":0,"16.5":0},P:{"4":0,"20":0,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0,"12.0":0,"13.0":0,"14.0":0,"15.0":0,"16.0":0,"17.0":0,"18.0":0,"19.0":28.56685},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0},Q:{"13.1":0},O:{"0":0},H:{"0":0},L:{"0":46.03188}};
diff --git a/node_modules/caniuse-lite/data/regions/SI.js b/node_modules/caniuse-lite/data/regions/SI.js
new file mode 100644
index 0000000..e74307f
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/SI.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.05629,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.00563,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.01126,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0.00563,"78":0.01689,"79":0,"80":0.00563,"81":0,"82":0,"83":0.00563,"84":0,"85":0,"86":0,"87":0,"88":0.00563,"89":0.00563,"90":0,"91":0.00563,"92":0.01689,"93":0.00563,"94":0,"95":0,"96":0.00563,"97":0.01126,"98":0.00563,"99":0.00563,"100":0.00563,"101":0,"102":0.12947,"103":0.00563,"104":0.00563,"105":0.01126,"106":0.00563,"107":0.00563,"108":0.02252,"109":0.01689,"110":0.08444,"111":2.00392,"112":1.67744,"113":0.00563,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.02252,"50":0,"51":0.02252,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.00563,"74":0,"75":0,"76":0,"77":0,"78":0.00563,"79":0.02815,"80":0.00563,"81":0.01126,"83":0.00563,"84":0.00563,"85":0.01126,"86":0.00563,"87":0.01126,"88":0.00563,"89":0.00563,"90":0.01126,"91":0.00563,"92":0.00563,"93":0,"94":0.00563,"95":0.11821,"96":0.00563,"97":0.00563,"98":0.02252,"99":0.02815,"100":0.01126,"101":0.00563,"102":0.01126,"103":0.04503,"104":0.06192,"105":0.02252,"106":0.02815,"107":0.02815,"108":0.06192,"109":1.19335,"110":0.18013,"111":8.35344,"112":8.51668,"113":0.01126,"114":0.00563,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00563,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.01689,"47":0,"48":0,"49":0.00563,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.00563,"70":0,"71":0,"72":0,"73":0,"74":0.00563,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.02252,"96":0.26456,"97":0.70363,"98":0.02252,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00563,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00563,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.00563,"102":0,"103":0.00563,"104":0,"105":0.00563,"106":0,"107":0.01126,"108":0.01126,"109":0.05629,"110":0.05629,"111":0.93441,"112":2.00392,"113":0.01689},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00563,"14":0.02252,"15":0.00563,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00563,"13.1":0.07881,"14.1":0.09006,"15.1":0.01126,"15.2-15.3":0.01689,"15.4":0.02815,"15.5":0.0394,"15.6":0.15761,"16.0":0.04503,"16.1":0.09569,"16.2":0.12384,"16.3":0.47284,"16.4":0.25893,"16.5":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00179,"8.1-8.4":0.00179,"9.0-9.2":0,"9.3":0.02144,"10.0-10.2":0,"10.3":0.01786,"11.0-11.2":0.00357,"11.3-11.4":0.00357,"12.0-12.1":0.00536,"12.2-12.5":0.1822,"13.0-13.1":0,"13.2":0.00179,"13.3":0.01072,"13.4-13.7":0.0786,"14.0-14.4":0.09825,"14.5-14.8":0.34475,"15.0-15.1":0.11432,"15.2-15.3":0.10003,"15.4":0.16434,"15.5":0.26258,"15.6":0.85027,"16.0":1.83095,"16.1":2.30431,"16.2":1.40045,"16.3":6.23415,"16.4":3.09206,"16.5":0.13933},P:{"4":0.13304,"20":3.35665,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.02047,"12.0":0.01023,"13.0":0.02047,"14.0":0.0307,"15.0":0.02047,"16.0":0.04093,"17.0":0.04093,"18.0":0.04093,"19.0":0.15351},I:{"0":0,"3":0,"4":0.00948,"2.1":0,"2.2":0,"2.3":0.00474,"4.1":0.02843,"4.2-4.3":0.01895,"4.4":0,"4.4.3-4.4.4":0.08529},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.01126,"9":0,"10":0,"11":0.0394,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.44584},Q:{"13.1":0},O:{"0":0.01311},H:{"0":0.21519},L:{"0":46.50072}};
diff --git a/node_modules/caniuse-lite/data/regions/SK.js b/node_modules/caniuse-lite/data/regions/SK.js
new file mode 100644
index 0000000..bdba991
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/SK.js
@@ -0,0 +1 @@
+module.exports={C:{"33":0.01475,"43":0.00492,"52":0.08851,"56":0.00492,"68":0.00983,"69":0.00492,"78":0.01967,"88":0.01475,"99":0.01475,"101":0.00492,"102":0.09342,"103":0.00492,"104":0.00492,"105":0.00492,"106":0.00983,"107":0.00983,"108":0.03934,"109":0.0295,"110":0.07376,"111":2.46833,"112":2.18315,"113":0.00492,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 34 35 36 37 38 39 40 41 42 44 45 46 47 48 49 50 51 53 54 55 57 58 59 60 61 62 63 64 65 66 67 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 89 90 91 92 93 94 95 96 97 98 100 114 3.5 3.6"},D:{"38":0.04917,"47":0.00983,"48":0.00983,"49":0.04425,"53":0.01967,"63":0.03934,"68":0.00983,"70":0.00492,"72":0.03442,"79":0.34911,"80":0.00983,"81":0.02459,"83":0.00983,"84":0.03442,"85":0.02459,"86":0.01475,"87":0.05409,"88":0.01475,"89":0.01967,"90":0.22127,"91":0.21143,"92":0.21635,"93":0.30485,"94":0.6933,"95":0.00492,"96":0.00983,"97":0.00983,"98":0.01475,"99":0.01967,"100":0.02459,"101":0.00983,"102":0.00983,"103":0.09342,"104":0.00983,"105":0.02459,"106":0.03442,"107":0.03934,"108":0.09342,"109":2.57651,"110":0.25568,"111":10.11919,"112":11.79588,"113":0.01475,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 50 51 52 54 55 56 57 58 59 60 61 62 64 65 66 67 69 71 73 74 75 76 77 78 114 115 116"},F:{"28":0.01967,"36":0.00983,"46":0.0295,"85":0.0295,"94":0.00492,"95":0.16718,"96":0.70805,"97":2.04547,"98":0.09834,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 86 87 88 89 90 91 92 93 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"86":0.01475,"92":0.00492,"101":0.00492,"103":0.00492,"105":0.00983,"107":0.01475,"108":0.03442,"109":0.12293,"110":0.04917,"111":1.16533,"112":2.69943,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 87 88 89 90 91 93 94 95 96 97 98 99 100 102 104 106 113"},E:{"4":0,"14":0.04917,"15":0.00983,_:"0 5 6 7 8 9 10 11 12 13 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1","12.1":0.00983,"13.1":0.059,"14.1":0.08851,"15.1":0.02459,"15.2-15.3":0.01967,"15.4":0.03442,"15.5":0.059,"15.6":0.2311,"16.0":0.0295,"16.1":0.11309,"16.2":0.15243,"16.3":0.6638,"16.4":0.41795,"16.5":0.01475},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00254,"6.0-6.1":0,"7.0-7.1":0.00508,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.02538,"10.0-10.2":0,"10.3":0.08376,"11.0-11.2":0.00254,"11.3-11.4":0.00127,"12.0-12.1":0,"12.2-12.5":0.1434,"13.0-13.1":0.00635,"13.2":0.00635,"13.3":0.00508,"13.4-13.7":0.04442,"14.0-14.4":0.08502,"14.5-14.8":0.20051,"15.0-15.1":0.07233,"15.2-15.3":0.07741,"15.4":0.10406,"15.5":0.17259,"15.6":0.42258,"16.0":0.79441,"16.1":1.55836,"16.2":0.87309,"16.3":4.41238,"16.4":2.77915,"16.5":0.10533},P:{"4":0.35346,"20":2.39104,"5.0-5.4":0.04099,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0.01025,"11.1-11.2":0,"12.0":0.01025,"13.0":0.02079,"14.0":0,"15.0":0,"16.0":0.02079,"17.0":0.02079,"18.0":0.02079,"19.0":0.12475},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0097,"4.2-4.3":0.01746,"4.4":0,"4.4.3-4.4.4":0.07956},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00983,"11":0.06392,_:"6 7 9 10 5.5"},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.31},Q:{"13.1":0},O:{"0":0.06607},H:{"0":0.48113},L:{"0":41.37194}};
diff --git a/node_modules/caniuse-lite/data/regions/SL.js b/node_modules/caniuse-lite/data/regions/SL.js
new file mode 100644
index 0000000..0f8b3cf
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/SL.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0.00194,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00194,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00194,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00194,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0.00194,"109":0.00194,"110":0.00194,"111":0.06014,"112":0.04268,"113":0.00388,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00388,"41":0,"42":0,"43":0.00194,"44":0,"45":0,"46":0,"47":0.00194,"48":0.00194,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00194,"59":0,"60":0,"61":0.00194,"62":0,"63":0,"64":0.00194,"65":0,"66":0,"67":0,"68":0,"69":0.00194,"70":0.00388,"71":0,"72":0.00388,"73":0,"74":0.00194,"75":0.00194,"76":0.00388,"77":0.00388,"78":0,"79":0.00194,"80":0.00194,"81":0.00776,"83":0.00194,"84":0,"85":0,"86":0,"87":0.00194,"88":0.00194,"89":0.00194,"90":0.00582,"91":0,"92":0.00582,"93":0.00776,"94":0,"95":0.00194,"96":0.00194,"97":0.00194,"98":0.00194,"99":0.00194,"100":0,"101":0.00388,"102":0.00582,"103":0.01552,"104":0,"105":0.00582,"106":0.00194,"107":0.00776,"108":0.00582,"109":0.097,"110":0.02716,"111":0.38024,"112":0.35502,"113":0,"114":0,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0.00194,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0.02134,"25":0,"26":0.00388,"27":0,"28":0.00776,"29":0,"30":0.00776,"31":0,"32":0.00582,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0.00194,"43":0,"44":0,"45":0.00388,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0.02134,"55":0.00388,"56":0,"57":0.00776,"58":0.00582,"60":0.097,"62":0,"63":0.23862,"64":0.02134,"65":0.02716,"66":0.18236,"67":0.23668,"68":0.23086,"69":0.23086,"70":0,"71":0,"72":0,"73":0,"74":0.00388,"75":0.00194,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.00388,"96":0.01552,"97":0.06014,"98":0.00194,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0.00194,"11.1":0,"11.5":0,"11.6":0,"12.1":0.06208},B:{"12":0.00194,"13":0.0097,"14":0.00194,"15":0.0097,"16":0.00194,"17":0,"18":0.00582,"79":0,"80":0,"81":0,"83":0,"84":0.00194,"85":0.00194,"86":0,"87":0,"88":0,"89":0,"90":0.00582,"91":0,"92":0.00776,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0.00194,"105":0.00194,"106":0,"107":0.00194,"108":0.00388,"109":0.00388,"110":0.02328,"111":0.11446,"112":0.17266,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00194,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.01552,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00194,"12.1":0.00194,"13.1":0.00194,"14.1":0.00194,"15.1":0.00194,"15.2-15.3":0,"15.4":0.00194,"15.5":0.00194,"15.6":0.01358,"16.0":0,"16.1":0.00388,"16.2":0.01164,"16.3":0.01552,"16.4":0.00582,"16.5":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.02057,"8.1-8.4":0.01028,"9.0-9.2":0.07946,"9.3":0.09629,"10.0-10.2":0,"10.3":0.04394,"11.0-11.2":0.00093,"11.3-11.4":0.00841,"12.0-12.1":0.08413,"12.2-12.5":0.60577,"13.0-13.1":0.05142,"13.2":0.01776,"13.3":0.03085,"13.4-13.7":0.06731,"14.0-14.4":0.62072,"14.5-14.8":0.61418,"15.0-15.1":0.36271,"15.2-15.3":0.40291,"15.4":0.42441,"15.5":0.34495,"15.6":0.32812,"16.0":0.43189,"16.1":0.5207,"16.2":0.43563,"16.3":1.69016,"16.4":1.0227,"16.5":0.02711},P:{"4":0.19582,"20":0.43286,"5.0-5.4":0.11337,"6.2-6.4":0.01031,"7.2-7.4":0.13398,"8.2":0.01031,"9.2":0.04122,"10.1":0,"11.1-11.2":0.03092,"12.0":0,"13.0":0.01031,"14.0":0.03092,"15.0":0.08245,"16.0":0.03092,"17.0":0.02061,"18.0":0.02061,"19.0":0.09276},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00533,"4.2-4.3":0.00533,"4.4":0,"4.4.3-4.4.4":0.12621},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.0097,"5.5":0},S:{"2.5":0.15314,_:"3.0-3.1"},J:{"7":0,"10":0.00806},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.03224},Q:{"13.1":0},O:{"0":0.86242},H:{"0":13.73524},L:{"0":69.3949}};
diff --git a/node_modules/caniuse-lite/data/regions/SM.js b/node_modules/caniuse-lite/data/regions/SM.js
new file mode 100644
index 0000000..9f3bfe5
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/SM.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.02399,"49":0,"50":0,"51":0,"52":0.006,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0.012,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.02399,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.08397,"103":0,"104":0,"105":0,"106":0.012,"107":0.012,"108":0,"109":0,"110":0.12596,"111":1.18161,"112":1.33156,"113":0,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.006,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0.05998,"77":0,"78":0,"79":0.05998,"80":0,"81":0,"83":0,"84":0.012,"85":0.006,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0.01799,"95":0,"96":0,"97":0.012,"98":0.02999,"99":0.07797,"100":0.12596,"101":0,"102":0,"103":0.36588,"104":0.02399,"105":0.51583,"106":0,"107":0,"108":0.09597,"109":2.22526,"110":0.08997,"111":8.84705,"112":13.77741,"113":0,"114":0,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.06598,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0.04798,"97":0.21593,"98":0.006,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.012,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0.01799,"109":0.02399,"110":0.04199,"111":0.6118,"112":1.31356,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.006,"12":0,"13":0.006,"14":0.17994,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.06598,"13.1":0.24592,"14.1":0.33589,"15.1":0.006,"15.2-15.3":0.012,"15.4":0.01799,"15.5":0.20993,"15.6":0.32989,"16.0":0.09597,"16.1":0.06598,"16.2":0.02999,"16.3":0.5878,"16.4":0.18594,"16.5":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.03137,"10.0-10.2":0,"10.3":0.02509,"11.0-11.2":0.03764,"11.3-11.4":0,"12.0-12.1":0.01255,"12.2-12.5":0.3492,"13.0-13.1":0,"13.2":0.01255,"13.3":0.00627,"13.4-13.7":0.00627,"14.0-14.4":0.60222,"14.5-14.8":0.13174,"15.0-15.1":0.069,"15.2-15.3":0.11292,"15.4":0.06273,"15.5":0.08782,"15.6":0.93678,"16.0":0.81132,"16.1":2.00948,"16.2":0.67122,"16.3":9.61248,"16.4":4.70064,"16.5":0.05018},P:{"4":0.0507,"20":4.00519,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0,"12.0":0,"13.0":0,"14.0":0,"15.0":0,"16.0":0,"17.0":0,"18.0":0,"19.0":0.01014},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.04},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.012,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.11606},Q:{"13.1":0},O:{"0":0},H:{"0":0.00379},L:{"0":38.73261}};
diff --git a/node_modules/caniuse-lite/data/regions/SN.js b/node_modules/caniuse-lite/data/regions/SN.js
new file mode 100644
index 0000000..9498fc9
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/SN.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0.00239,"33":0,"34":0.00239,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00478,"53":0,"54":0,"55":0,"56":0,"57":0.00239,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00239,"69":0,"70":0.00718,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00478,"79":0,"80":0.00239,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.00478,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00718,"103":0.00239,"104":0.00239,"105":0,"106":0.00239,"107":0.00239,"108":0.00239,"109":0.00478,"110":0.00478,"111":0.16026,"112":0.18179,"113":0,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0.00239,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00478,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00478,"66":0,"67":0,"68":0.00239,"69":0.00239,"70":0.00718,"71":0,"72":0,"73":0,"74":0.00239,"75":0.00239,"76":0.00478,"77":0.00239,"78":0,"79":0.00957,"80":0,"81":0.01914,"83":0.00239,"84":0,"85":0,"86":0.00239,"87":0.00478,"88":0.00239,"89":0,"90":0,"91":0.00478,"92":0,"93":0.00957,"94":0.00239,"95":0.00239,"96":0.00239,"97":0.00478,"98":0.00239,"99":0.00239,"100":0.00239,"101":0.00239,"102":0.00239,"103":0.0287,"104":0.00239,"105":0.00239,"106":0.00239,"107":0.00478,"108":0.01196,"109":0.28226,"110":0.01914,"111":0.85634,"112":1.08836,"113":0,"114":0,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0.00478,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0.00239,"62":0,"63":0,"64":0.00239,"65":0,"66":0,"67":0.00239,"68":0.00478,"69":0.00718,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00239,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00239,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.01914,"96":0.01196,"97":0.0909,"98":0.00718,"9.5-9.6":0,"10.0-10.1":0,"10.5":0.00239,"10.6":0.00239,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0.00239,"15":0.00718,"16":0,"17":0,"18":0.00718,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00239,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0.00239,"107":0,"108":0.00239,"109":0.01435,"110":0.01196,"111":0.16026,"112":0.3588,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00239,"15":0.00478,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00239,"13.1":0.00957,"14.1":0.00957,"15.1":0,"15.2-15.3":0,"15.4":0.00239,"15.5":0.00239,"15.6":0.01674,"16.0":0.00239,"16.1":0.00478,"16.2":0.01196,"16.3":0.04306,"16.4":0.01435,"16.5":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.04639,"8.1-8.4":0.0145,"9.0-9.2":0.03189,"9.3":0.08118,"10.0-10.2":0,"10.3":0.21166,"11.0-11.2":0.0116,"11.3-11.4":0.0058,"12.0-12.1":0.13627,"12.2-12.5":1.89332,"13.0-13.1":0.04349,"13.2":0.0203,"13.3":0.15077,"13.4-13.7":0.32183,"14.0-14.4":1.18586,"14.5-14.8":1.60628,"15.0-15.1":0.62047,"15.2-15.3":0.4726,"15.4":0.38852,"15.5":0.85243,"15.6":1.32793,"16.0":1.30764,"16.1":2.4616,"16.2":1.66716,"16.3":6.9383,"16.4":3.12267,"16.5":0.13337},P:{"4":0.38486,"20":1.54956,"5.0-5.4":0,"6.2-6.4":0.02026,"7.2-7.4":0.41524,"8.2":0,"9.2":0.03038,"10.1":0,"11.1-11.2":0.11141,"12.0":0.03038,"13.0":0.07089,"14.0":0.04051,"15.0":0.03038,"16.0":0.13166,"17.0":0.11141,"18.0":0.06077,"19.0":0.19243},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00167,"4.2-4.3":0.00547,"4.4":0,"4.4.3-4.4.4":0.08353},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00718,"5.5":0},S:{"2.5":0.02282,_:"3.0-3.1"},J:{"7":0,"10":0.00761},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.12934},Q:{"13.1":0.00761},O:{"0":0.03043},H:{"0":0.40335},L:{"0":66.15474}};
diff --git a/node_modules/caniuse-lite/data/regions/SO.js b/node_modules/caniuse-lite/data/regions/SO.js
new file mode 100644
index 0000000..99e8d0e
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/SO.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00259,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.00259,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0.00259,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0.00259,"111":0.11664,"112":0.09331,"113":0.01037,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.00259,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0.00259,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.00778,"65":0,"66":0,"67":0,"68":0.02333,"69":0.00518,"70":0.01037,"71":0.00518,"72":0,"73":0,"74":0.00778,"75":0,"76":0,"77":0.00259,"78":0.00259,"79":0.01296,"80":0.00259,"81":0.03629,"83":0.00778,"84":0,"85":0,"86":0,"87":0.04925,"88":0.00259,"89":0,"90":0,"91":0.00259,"92":0.00259,"93":0.02333,"94":0.02851,"95":0.00259,"96":0.01296,"97":0.00259,"98":0,"99":0.0959,"100":0.00259,"101":0.01296,"102":0.00518,"103":0.01037,"104":0.02333,"105":0.00778,"106":0.02851,"107":0.01555,"108":0.02851,"109":0.2281,"110":0.08035,"111":1.63037,"112":1.91549,"113":0.01037,"114":0.00259,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00259,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00518,"60":0,"62":0,"63":0.00518,"64":0.00259,"65":0,"66":0.00259,"67":0.00778,"68":0.04666,"69":0.20218,"70":0,"71":0,"72":0,"73":0,"74":0.01814,"75":0.01037,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0.00259,"95":0.00518,"96":0.02592,"97":0.07517,"98":0.00778,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00259,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00518,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00518,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0.00259,"108":0.00259,"109":0.01037,"110":0.02074,"111":0.10627,"112":0.24883,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00259,"15":0.00259,_:"0","3.1":0,"3.2":0,"5.1":0.01296,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00778,"14.1":0.00518,"15.1":0.00518,"15.2-15.3":0.00259,"15.4":0.01037,"15.5":0.00259,"15.6":0.04925,"16.0":0.00259,"16.1":0.00518,"16.2":0.00778,"16.3":0.08554,"16.4":0.01037,"16.5":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00271,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.05276,"10.0-10.2":0,"10.3":0.07441,"11.0-11.2":0.00135,"11.3-11.4":0.01218,"12.0-12.1":0.069,"12.2-12.5":0.52899,"13.0-13.1":0.00812,"13.2":0.00135,"13.3":0.02165,"13.4-13.7":0.5317,"14.0-14.4":0.51276,"14.5-14.8":0.94163,"15.0-15.1":0.43158,"15.2-15.3":0.19347,"15.4":0.33147,"15.5":0.34094,"15.6":0.50329,"16.0":1.42463,"16.1":1.23387,"16.2":1.07557,"16.3":2.04427,"16.4":2.15385,"16.5":0.08253},P:{"4":0.24346,"20":1.92736,"5.0-5.4":0.03043,"6.2-6.4":0.04058,"7.2-7.4":0.86224,"8.2":0,"9.2":0.05072,"10.1":0,"11.1-11.2":0.12173,"12.0":0.03043,"13.0":0.04058,"14.0":0.10144,"15.0":0.04058,"16.0":0.23331,"17.0":0.13187,"18.0":0.20288,"19.0":0.62893},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.07907,"4.4":0,"4.4.3-4.4.4":0.21314},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00259,"5.5":0},S:{"2.5":0.00741,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.04445},Q:{"13.1":0},O:{"0":1.49642},H:{"0":1.90765},L:{"0":71.03144}};
diff --git a/node_modules/caniuse-lite/data/regions/SR.js b/node_modules/caniuse-lite/data/regions/SR.js
new file mode 100644
index 0000000..5afbddd
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/SR.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00361,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00361,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0.00361,"109":0.00361,"110":0.00361,"111":0.42971,"112":0.32138,"113":0.00361,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00361,"50":0,"51":0,"52":0,"53":0.00722,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.01444,"70":0.00361,"71":0,"72":0,"73":0.00361,"74":0,"75":0,"76":0.00361,"77":0,"78":0,"79":0.00722,"80":0,"81":0.01083,"83":0.01083,"84":0.00361,"85":0,"86":0.00361,"87":0.01083,"88":0,"89":0.00361,"90":0.00361,"91":0.00361,"92":0,"93":0.00361,"94":0,"95":0.00361,"96":0.01806,"97":0,"98":0.04694,"99":0.00361,"100":0.00361,"101":0.00361,"102":0.00361,"103":0.11194,"104":0.00722,"105":0.00722,"106":0.01083,"107":0.01083,"108":0.01083,"109":0.48387,"110":0.02889,"111":3.12713,"112":3.22823,"113":0.00361,"114":0,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00722,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.01444,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00361,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0.08666,"97":0.28166,"98":0.00361,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00361,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00361,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0.00722,"109":0.02528,"110":0.01083,"111":0.35749,"112":0.84859,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.0325,"15":0.00722,_:"0","3.1":0,"3.2":0,"5.1":0.00361,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.01444,"14.1":0.03972,"15.1":0.00361,"15.2-15.3":0,"15.4":0.00361,"15.5":0.01083,"15.6":0.065,"16.0":0.00722,"16.1":0.0325,"16.2":0.01806,"16.3":0.14083,"16.4":0.04333,"16.5":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00535,"6.0-6.1":0,"7.0-7.1":0.05082,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.07757,"10.0-10.2":0,"10.3":3.15633,"11.0-11.2":0.00267,"11.3-11.4":0.00802,"12.0-12.1":0.00267,"12.2-12.5":0.73291,"13.0-13.1":0.00267,"13.2":0,"13.3":0.05617,"13.4-13.7":0.17387,"14.0-14.4":0.20596,"14.5-14.8":0.60719,"15.0-15.1":0.0428,"15.2-15.3":0.0642,"15.4":0.27818,"15.5":0.17119,"15.6":0.8827,"16.0":1.15821,"16.1":1.59956,"16.2":1.68248,"16.3":6.09867,"16.4":3.1911,"16.5":0.06152},P:{"4":0.63009,"20":5.51591,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.42351,"8.2":0,"9.2":0.03099,"10.1":0,"11.1-11.2":0.07231,"12.0":0.03099,"13.0":0.15494,"14.0":0.04132,"15.0":0.02066,"16.0":0.21692,"17.0":0.34087,"18.0":0.25824,"19.0":0.40285},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01089,"4.2-4.3":0.14702,"4.4":0,"4.4.3-4.4.4":0.21236},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01083,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0.00639},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.33223},Q:{"13.1":0.00639},O:{"0":0.72196},H:{"0":0.27219},L:{"0":56.28379}};
diff --git a/node_modules/caniuse-lite/data/regions/ST.js b/node_modules/caniuse-lite/data/regions/ST.js
new file mode 100644
index 0000000..1986e0b
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/ST.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00586,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.02932,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00586,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.75633,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00586,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.02345,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0.03518,"110":0.01173,"111":0.32247,"112":0.08795,"113":0,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.04104,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.04104,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00586,"53":0.02932,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0.00586,"63":0,"64":0.03518,"65":0,"66":0,"67":0,"68":0,"69":0.01173,"70":0.04104,"71":0,"72":0,"73":0,"74":0,"75":0.01173,"76":0.01173,"77":0.01173,"78":0,"79":0.05863,"80":0.01759,"81":0.04104,"83":0.01173,"84":0,"85":0,"86":0,"87":0.01759,"88":0,"89":3.72887,"90":0,"91":0,"92":0,"93":0,"94":0.01173,"95":0.01173,"96":0,"97":0,"98":0.01173,"99":0.01173,"100":0.00586,"101":0,"102":0.03518,"103":0.01173,"104":0.04104,"105":0,"106":0,"107":0,"108":0.09381,"109":5.94508,"110":0.08208,"111":6.76004,"112":5.01287,"113":0,"114":0,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.06449,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.01173,"44":0,"45":0,"46":0.03518,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.00586,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.01759,"68":0.01759,"69":0.14071,"70":0,"71":0,"72":0,"73":0,"74":0.01173,"75":0,"76":0,"77":0,"78":0,"79":0.00586,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00586,"92":0,"93":0,"94":0,"95":0.06449,"96":0.04104,"97":0.36351,"98":0.05863,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.01173},B:{"12":0.00586,"13":0,"14":0,"15":0.00586,"16":0,"17":0,"18":0.0469,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0.01173,"88":0,"89":0.00586,"90":0,"91":0,"92":0.01759,"93":0,"94":0,"95":0,"96":0,"97":0.00586,"98":0,"99":0.01173,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0.01173,"106":0,"107":0.01173,"108":0,"109":0.14658,"110":0.09967,"111":1.07879,"112":1.20778,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0.00586,"13":0,"14":0.01759,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0,"14.1":0,"15.1":0,"15.2-15.3":0.01173,"15.4":0.00586,"15.5":0,"15.6":0.04104,"16.0":0,"16.1":0.01759,"16.2":0.00586,"16.3":0.08795,"16.4":0.02345,"16.5":0},G:{"8":0.01438,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.18214,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01438,"10.0-10.2":0,"10.3":0.05592,"11.0-11.2":0.04234,"11.3-11.4":0,"12.0-12.1":0.02796,"12.2-12.5":0.05592,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0.01438,"14.0-14.4":0.04234,"14.5-14.8":0.19652,"15.0-15.1":0.09826,"15.2-15.3":0.04234,"15.4":0.02796,"15.5":0.02796,"15.6":0.23885,"16.0":0.08388,"16.1":1.61446,"16.2":0.08388,"16.3":3.43982,"16.4":0.64546,"16.5":0},P:{"4":0.63507,"20":0.93213,"5.0-5.4":0,"6.2-6.4":0.01024,"7.2-7.4":0.31754,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.01024,"12.0":0,"13.0":0,"14.0":0.02049,"15.0":0,"16.0":0.04097,"17.0":0.15365,"18.0":0.05122,"19.0":0.17413},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00679,"4.2-4.3":0.00194,"4.4":0,"4.4.3-4.4.4":0.52547},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01173,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.10756},Q:{"13.1":0},O:{"0":5.69665},H:{"0":0.43083},L:{"0":51.46804}};
diff --git a/node_modules/caniuse-lite/data/regions/SV.js b/node_modules/caniuse-lite/data/regions/SV.js
new file mode 100644
index 0000000..0114d33
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/SV.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0.02783,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.01855,"53":0,"54":0,"55":0,"56":0.00464,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00928,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00464,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.02783,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.01391,"92":0,"93":0,"94":0,"95":0,"96":0.00464,"97":0,"98":0.00464,"99":0.00928,"100":0,"101":0,"102":0.0371,"103":0.00928,"104":0.07421,"105":0.00464,"106":0.00464,"107":0,"108":0.00464,"109":0.01391,"110":0.02783,"111":0.4638,"112":0.58903,"113":0.00464,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.03247,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00464,"66":0,"67":0.00464,"68":0.00464,"69":0,"70":0.00464,"71":0,"72":0,"73":0,"74":0.00464,"75":0.00464,"76":0.00928,"77":0,"78":0.00928,"79":0.08812,"80":0.00928,"81":0.00464,"83":0.00464,"84":0.00464,"85":0,"86":0,"87":0.02319,"88":0.00928,"89":0,"90":0.00464,"91":0.03247,"92":0.01855,"93":0.00928,"94":0.00928,"95":0.00464,"96":0.00928,"97":0.01391,"98":0.00464,"99":0.01391,"100":0.02783,"101":0.05566,"102":0.01391,"103":0.05102,"104":0.01855,"105":0.01391,"106":0.02783,"107":0.02319,"108":0.07885,"109":1.22907,"110":0.11131,"111":4.58698,"112":6.83177,"113":0.00464,"114":0,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00464,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0.00464,"63":0,"64":0,"65":0,"66":0,"67":0.00464,"68":0.00464,"69":0.00928,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0.00464,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.02783,"96":0.24118,"97":0.58903,"98":0.01855,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0.00464,"15":0.00464,"16":0,"17":0,"18":0.00464,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.01855,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0.00464,"104":0.00464,"105":0.00464,"106":0.00928,"107":0.01391,"108":0.00464,"109":0.02783,"110":0.03247,"111":0.43597,"112":1.21052,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00464,"14":0.00464,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.00464,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00464,"13.1":0.02783,"14.1":0.02783,"15.1":0.00464,"15.2-15.3":0.00464,"15.4":0.00464,"15.5":0.01391,"15.6":0.05566,"16.0":0.00928,"16.1":0.03247,"16.2":0.04174,"16.3":0.13914,"16.4":0.06957,"16.5":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00668,"6.0-6.1":0.04006,"7.0-7.1":0.0178,"8.1-8.4":0,"9.0-9.2":0.00111,"9.3":0.03783,"10.0-10.2":0,"10.3":0.02225,"11.0-11.2":0.00334,"11.3-11.4":0.00111,"12.0-12.1":0.00334,"12.2-12.5":0.24592,"13.0-13.1":0.00334,"13.2":0.00223,"13.3":0.01001,"13.4-13.7":0.02893,"14.0-14.4":0.13242,"14.5-14.8":0.17025,"15.0-15.1":0.04228,"15.2-15.3":0.06343,"15.4":0.0612,"15.5":0.12908,"15.6":0.43508,"16.0":0.55192,"16.1":1.09717,"16.2":0.7422,"16.3":4.14943,"16.4":2.21659,"16.5":0.05341},P:{"4":0.14304,"20":2.15589,"5.0-5.4":0.01022,"6.2-6.4":0,"7.2-7.4":0.14304,"8.2":0,"9.2":0.01022,"10.1":0,"11.1-11.2":0.0613,"12.0":0.01022,"13.0":0.13283,"14.0":0.04087,"15.0":0.02043,"16.0":0.13283,"17.0":0.04087,"18.0":0.05109,"19.0":0.1737},I:{"0":0,"3":0,"4":0.01464,"2.1":0,"2.2":0,"2.3":0,"4.1":0.02928,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.17566},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.04174,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.24129},Q:{"13.1":0},O:{"0":0.1126},H:{"0":0.32997},L:{"0":65.82553}};
diff --git a/node_modules/caniuse-lite/data/regions/SY.js b/node_modules/caniuse-lite/data/regions/SY.js
new file mode 100644
index 0000000..11fdcd4
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/SY.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.01087,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00362,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00362,"69":0,"70":0,"71":0,"72":0.00181,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.00362,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00362,"100":0.00181,"101":0.00181,"102":0.00362,"103":0.00181,"104":0.00181,"105":0.00181,"106":0.00181,"107":0.00181,"108":0.00181,"109":0.00543,"110":0.00906,"111":0.1485,"112":0.09779,"113":0,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00181,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00362,"41":0,"42":0,"43":0.00181,"44":0,"45":0,"46":0.00181,"47":0,"48":0,"49":0.00181,"50":0,"51":0,"52":0,"53":0.00181,"54":0,"55":0.00181,"56":0.00181,"57":0.00181,"58":0.00181,"59":0,"60":0,"61":0,"62":0,"63":0.00362,"64":0,"65":0.00362,"66":0.00181,"67":0,"68":0.00181,"69":0,"70":0.00181,"71":0.00181,"72":0.00362,"73":0.00181,"74":0.00181,"75":0,"76":0.00181,"77":0.00181,"78":0.00181,"79":0.00543,"80":0.00362,"81":0.01087,"83":0.00362,"84":0.00181,"85":0.00181,"86":0.00362,"87":0.00543,"88":0.00362,"89":0.00362,"90":0.00181,"91":0.00362,"92":0.00362,"93":0.00181,"94":0.00181,"95":0.00362,"96":0.00362,"97":0.00181,"98":0.00724,"99":0.00724,"100":0.00724,"101":0.00362,"102":0.00543,"103":0.00906,"104":0.01087,"105":0.00543,"106":0.00724,"107":0.01449,"108":0.01992,"109":0.38937,"110":0.02717,"111":0.50165,"112":0.53425,"113":0,"114":0,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00181,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00181,"60":0.00181,"62":0,"63":0.00724,"64":0.00362,"65":0,"66":0.00181,"67":0.00181,"68":0.00543,"69":0.02354,"70":0,"71":0,"72":0,"73":0,"74":0.00543,"75":0,"76":0,"77":0,"78":0,"79":0.00181,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00181,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.02717,"96":0.01449,"97":0.03984,"98":0.00181,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00181},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0.00181,"18":0.00724,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.00181,"91":0,"92":0.00362,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.00181,"102":0,"103":0,"104":0,"105":0,"106":0.00181,"107":0.00181,"108":0.00362,"109":0.01087,"110":0.00543,"111":0.05795,"112":0.09417,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00181,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.32417,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0,"14.1":0.00543,"15.1":0.00181,"15.2-15.3":0,"15.4":0,"15.5":0.00181,"15.6":0.00362,"16.0":0,"16.1":0.00181,"16.2":0,"16.3":0.0163,"16.4":0.00362,"16.5":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00129,"5.0-5.1":0.00129,"6.0-6.1":0,"7.0-7.1":0.03669,"8.1-8.4":0,"9.0-9.2":0.00064,"9.3":0.06372,"10.0-10.2":0.00193,"10.3":0.04184,"11.0-11.2":0.00515,"11.3-11.4":0.01609,"12.0-12.1":0.04312,"12.2-12.5":0.5883,"13.0-13.1":0.04055,"13.2":0.0103,"13.3":0.04312,"13.4-13.7":0.17057,"14.0-14.4":0.29029,"14.5-14.8":0.52715,"15.0-15.1":0.23751,"15.2-15.3":0.24459,"15.4":0.20018,"15.5":0.32311,"15.6":0.24201,"16.0":0.48081,"16.1":0.41001,"16.2":0.41387,"16.3":0.89854,"16.4":0.63206,"16.5":0.00837},P:{"4":1.3481,"20":1.5493,"5.0-5.4":0.07042,"6.2-6.4":0.12072,"7.2-7.4":0.25151,"8.2":0.03018,"9.2":0.16097,"10.1":0.1006,"11.1-11.2":0.22133,"12.0":0.08048,"13.0":0.31187,"14.0":0.39236,"15.0":0.11066,"16.0":0.4326,"17.0":0.54326,"18.0":0.29175,"19.0":0.54326},I:{"0":0,"3":0,"4":0.00206,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00688,"4.2-4.3":0.02133,"4.4":0,"4.4.3-4.4.4":0.12869},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00906,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.10646},Q:{"13.1":0},O:{"0":1.15465},H:{"0":1.27146},L:{"0":80.24869}};
diff --git a/node_modules/caniuse-lite/data/regions/SZ.js b/node_modules/caniuse-lite/data/regions/SZ.js
new file mode 100644
index 0000000..7e2894d
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/SZ.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00258,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00258,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00258,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0.00258,"109":0.00258,"110":0.01803,"111":0.09528,"112":0.06695,"113":0.00258,"114":0.00258,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00258,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00258,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.00773,"71":0,"72":0,"73":0,"74":0.00258,"75":0,"76":0,"77":0,"78":0.00515,"79":0.00515,"80":0.00258,"81":0.01545,"83":0,"84":0,"85":0,"86":0.00258,"87":0.00515,"88":0.00258,"89":0,"90":0,"91":0,"92":0.00773,"93":0.00258,"94":0.00258,"95":0.14935,"96":0,"97":0.00258,"98":0.00258,"99":0.00258,"100":0.00515,"101":0,"102":0.00258,"103":0.0206,"104":0.00258,"105":0.00515,"106":0.00515,"107":0.00258,"108":0.01803,"109":0.32188,"110":0.01545,"111":0.98108,"112":0.9888,"113":0,"114":0,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0.00258,"25":0.00773,"26":0.0412,"27":0,"28":0.01545,"29":0,"30":0.00258,"31":0.00515,"32":0.0103,"33":0,"34":0,"35":0.09013,"36":0.00258,"37":0,"38":0.00515,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0.26523,"45":0.0103,"46":0.00258,"47":0.0927,"48":0,"49":0,"50":0.01288,"51":0.03348,"52":0,"53":0,"54":0.00773,"55":0.0103,"56":0.0103,"57":0.04635,"58":0.04635,"60":0.03605,"62":0.00258,"63":0.12103,"64":0.08498,"65":0.02318,"66":0.04378,"67":0.15193,"68":0.50985,"69":0.46093,"70":0.00258,"71":0,"72":0.00258,"73":0.00258,"74":0.0103,"75":0.00258,"76":0,"77":0,"78":0,"79":0.00258,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.0206,"96":0.0103,"97":0.0927,"98":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.0206},B:{"12":0.0103,"13":0,"14":0.00258,"15":0.00258,"16":0,"17":0.00258,"18":0.00258,"79":0,"80":0,"81":0,"83":0,"84":0.00258,"85":0,"86":0.00773,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00773,"93":0,"94":0,"95":0,"96":0.00258,"97":0,"98":0,"99":0.00258,"100":0.00258,"101":0,"102":0,"103":0,"104":0.00773,"105":0,"106":0,"107":0.00515,"108":0.01288,"109":0.00773,"110":0.01545,"111":0.1339,"112":0.44805,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00258,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.0103,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.0103,"12.1":0,"13.1":0.00258,"14.1":0.00258,"15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0.00258,"15.6":0.00515,"16.0":0,"16.1":0.00258,"16.2":0,"16.3":0.01545,"16.4":0.01288,"16.5":0},G:{"8":0.02448,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00188,"6.0-6.1":0,"7.0-7.1":0.0069,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00188,"10.0-10.2":0,"10.3":0.01004,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0.00628,"12.2-12.5":0.61314,"13.0-13.1":0.00314,"13.2":0,"13.3":0.00565,"13.4-13.7":0.07217,"14.0-14.4":0.0364,"14.5-14.8":0.07594,"15.0-15.1":0.14246,"15.2-15.3":0.82463,"15.4":0.05083,"15.5":0.08096,"15.6":0.14999,"16.0":0.7876,"16.1":0.26986,"16.2":0.4939,"16.3":1.60157,"16.4":0.5234,"16.5":0.00439},P:{"4":0.37821,"20":2.16703,"5.0-5.4":0.01022,"6.2-6.4":0.01022,"7.2-7.4":1.16529,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.02044,"12.0":0,"13.0":0.07155,"14.0":0.07155,"15.0":0.03067,"16.0":0.14311,"17.0":0.06133,"18.0":0.092,"19.0":0.33732},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00362,"4.2-4.3":0.00217,"4.4":0,"4.4.3-4.4.4":0.04194},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0.00258,"11":0.00515,"5.5":0},S:{"2.5":0.0594,_:"3.0-3.1"},J:{"7":0,"10":0.01485},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.42323},Q:{"13.1":0},O:{"0":0.7128},H:{"0":13.96061},L:{"0":64.57638}};
diff --git a/node_modules/caniuse-lite/data/regions/TC.js b/node_modules/caniuse-lite/data/regions/TC.js
new file mode 100644
index 0000000..4f43107
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/TC.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00516,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0.00516,"111":0.73774,"112":0.76869,"113":0,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0.01548,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0.06191,"76":0.00516,"77":0,"78":0,"79":0.03611,"80":0.00516,"81":0,"83":0.01548,"84":0,"85":0,"86":0.00516,"87":0.01032,"88":0,"89":0,"90":0,"91":0.03095,"92":0,"93":0.28375,"94":0.00516,"95":0,"96":0,"97":0.01032,"98":0,"99":0,"100":0,"101":0,"102":0.01548,"103":0.05159,"104":0,"105":0.01032,"106":0,"107":0.00516,"108":0.43336,"109":0.38177,"110":0.55201,"111":4.01886,"112":4.36451,"113":0.01548,"114":0.00516,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.01032,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.01032,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.01032,"96":0.02064,"97":0.22184,"98":0.00516,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.00516,"16":0,"17":0,"18":0.04127,"79":0,"80":0,"81":0,"83":0.02064,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0.00516,"108":0.00516,"109":0.03095,"110":0.06707,"111":1.52191,"112":3.67321,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00516,"14":0.01032,"15":0.01548,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.13929,"14.1":0.27859,"15.1":0.00516,"15.2-15.3":0.08254,"15.4":0.02064,"15.5":0.13413,"15.6":0.55201,"16.0":0.0258,"16.1":0.18572,"16.2":0.40756,"16.3":1.5477,"16.4":0.52622,"16.5":0.00516},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.63692,"10.0-10.2":0,"10.3":0.00381,"11.0-11.2":0.01144,"11.3-11.4":0.00381,"12.0-12.1":0,"12.2-12.5":0.28985,"13.0-13.1":0.00381,"13.2":0,"13.3":0.00381,"13.4-13.7":0.17162,"14.0-14.4":0.08772,"14.5-14.8":0.20595,"15.0-15.1":0.75515,"15.2-15.3":0.12967,"15.4":0.03051,"15.5":0.39664,"15.6":1.5942,"16.0":2.34171,"16.1":5.76275,"16.2":3.06635,"16.3":16.18987,"16.4":5.33941,"16.5":0.09153},P:{"4":0.23964,"20":2.36512,"5.0-5.4":0.01042,"6.2-6.4":0,"7.2-7.4":0.04168,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.06251,"12.0":0,"13.0":0.01042,"14.0":0.03126,"15.0":0.08335,"16.0":0.02084,"17.0":0.02084,"18.0":0.03126,"19.0":0.09377},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.9783},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.06707,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.12587},Q:{"13.1":0},O:{"0":0.01936},H:{"0":0.11916},L:{"0":35.23451}};
diff --git a/node_modules/caniuse-lite/data/regions/TD.js b/node_modules/caniuse-lite/data/regions/TD.js
new file mode 100644
index 0000000..540f574
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/TD.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00169,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00507,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0.00845,"111":0.08614,"112":0.08952,"113":0,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.02365,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0.00169,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0.00169,"81":0.00169,"83":0,"84":0,"85":0,"86":0,"87":0.00169,"88":0,"89":0,"90":0.00169,"91":0,"92":0,"93":0,"94":0.01182,"95":0,"96":0,"97":0,"98":0,"99":0.00169,"100":0,"101":0,"102":0.00169,"103":0.00169,"104":0,"105":0,"106":0,"107":0.00169,"108":0.00676,"109":0.03547,"110":0.00338,"111":0.20944,"112":0.41212,"113":0,"114":0,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0.00169,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0.00676,"62":0,"63":0.00676,"64":0,"65":0,"66":0.00507,"67":0.01013,"68":0.01182,"69":0.0152,"70":0,"71":0,"72":0.01013,"73":0,"74":0.00338,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0.00169,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0.00676,"98":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0.00169,"18":0.00169,"79":0,"80":0,"81":0,"83":0,"84":0.00169,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0.00169,"108":0,"109":0.02365,"110":0.00845,"111":0.04391,"112":0.10134,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.00845,"6.1":0,"7.1":0.04391,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0,"14.1":0,"15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0.00169,"15.6":0,"16.0":0,"16.1":0,"16.2":0.00169,"16.3":0.00169,"16.4":0.00169,"16.5":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00085,"6.0-6.1":0.00427,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01537,"10.0-10.2":0,"10.3":0.00256,"11.0-11.2":0.00256,"11.3-11.4":0.16051,"12.0-12.1":0.00683,"12.2-12.5":0.91098,"13.0-13.1":0.13148,"13.2":0.00085,"13.3":0.00598,"13.4-13.7":0.12807,"14.0-14.4":0.37651,"14.5-14.8":1.63839,"15.0-15.1":0.10928,"15.2-15.3":0.13063,"15.4":0.15283,"15.5":0.15368,"15.6":0.31504,"16.0":0.53702,"16.1":0.57801,"16.2":0.67277,"16.3":1.3131,"16.4":0.76071,"16.5":0.01281},P:{"4":0.35514,"20":0.70013,"5.0-5.4":0.01015,"6.2-6.4":0.05073,"7.2-7.4":0.10147,"8.2":0,"9.2":0.07103,"10.1":0,"11.1-11.2":0.04059,"12.0":0,"13.0":0.04059,"14.0":0.07103,"15.0":0.01015,"16.0":0.49719,"17.0":0.02029,"18.0":0.27396,"19.0":0.28411},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00079,"4.2-4.3":0.0004,"4.4":0,"4.4.3-4.4.4":0.01388},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00338,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0.03324},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.05818},Q:{"13.1":0.04156},O:{"0":0.11635},H:{"0":1.18812},L:{"0":85.86679}};
diff --git a/node_modules/caniuse-lite/data/regions/TG.js b/node_modules/caniuse-lite/data/regions/TG.js
new file mode 100644
index 0000000..3bc789e
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/TG.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0.00416,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.00416,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00832,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00416,"73":0.00832,"74":0,"75":0,"76":0,"77":0,"78":0.00416,"79":0.0208,"80":0,"81":0.00832,"82":0.07072,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.01664,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.01248,"96":0,"97":0.00416,"98":0,"99":0,"100":0,"101":0.00416,"102":0.0416,"103":0.00416,"104":0.00416,"105":0.00832,"106":0.00416,"107":0.00416,"108":0.02496,"109":0.01248,"110":0.02912,"111":1.35616,"112":1.25216,"113":0.00832,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.00416,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0.00416,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.0208,"44":0.00416,"45":0,"46":0.00416,"47":0,"48":0.00416,"49":0.00416,"50":0,"51":0,"52":0,"53":0,"54":0.00416,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.00416,"65":0.01248,"66":0,"67":0,"68":0.00832,"69":0,"70":0.00416,"71":0,"72":0,"73":0.00416,"74":0.00416,"75":0.07488,"76":0.01664,"77":0.00416,"78":0.00416,"79":0.03744,"80":0.01248,"81":0.04576,"83":0,"84":0.00832,"85":0.00832,"86":0.00416,"87":0.03744,"88":0.00416,"89":0.00416,"90":0.00416,"91":0.00416,"92":0.00416,"93":0.05408,"94":0.00416,"95":0.02496,"96":0.01664,"97":0.0208,"98":0.00832,"99":0.00416,"100":0.00832,"101":0,"102":0.08736,"103":0.05824,"104":0.03328,"105":0.00416,"106":0.02496,"107":0.0208,"108":0.10816,"109":1.70144,"110":0.08736,"111":2.4544,"112":2.47104,"113":0.00416,"114":0.00416,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.02496,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00416,"37":0.00832,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0.03328,"62":0,"63":0.00832,"64":0.00416,"65":0,"66":0.01248,"67":0.02496,"68":0.09984,"69":0.13728,"70":0,"71":0,"72":0,"73":0,"74":0.00416,"75":0.00416,"76":0,"77":0,"78":0,"79":0.01248,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.04992,"96":0.0416,"97":0.33696,"98":0.02496,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00416},B:{"12":0.00416,"13":0,"14":0,"15":0.00416,"16":0,"17":0,"18":0.00832,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00416,"89":0,"90":0,"91":0,"92":0.01248,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0.00416,"109":0.0624,"110":0.03328,"111":0.57824,"112":1.21472,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.01248,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.02496,"14.1":0.00416,"15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0,"15.6":0.01664,"16.0":0,"16.1":0.00832,"16.2":0.00832,"16.3":0.0208,"16.4":0.01248,"16.5":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00874,"6.0-6.1":0.06443,"7.0-7.1":0.04587,"8.1-8.4":0.00437,"9.0-9.2":0,"9.3":0.36583,"10.0-10.2":0,"10.3":0.36911,"11.0-11.2":0.07863,"11.3-11.4":0.00109,"12.0-12.1":0.09064,"12.2-12.5":1.58782,"13.0-13.1":0.00655,"13.2":0.00546,"13.3":0.02075,"13.4-13.7":0.10484,"14.0-14.4":0.27082,"14.5-14.8":0.45756,"15.0-15.1":0.19547,"15.2-15.3":0.17909,"15.4":0.09064,"15.5":0.50343,"15.6":0.56786,"16.0":0.40951,"16.1":0.35273,"16.2":0.617,"16.3":1.51902,"16.4":1.01996,"16.5":0.0415},P:{"4":0.13557,"20":0.42757,"5.0-5.4":0.01043,"6.2-6.4":0,"7.2-7.4":0.04171,"8.2":0,"9.2":0.01043,"10.1":0,"11.1-11.2":0.01043,"12.0":0,"13.0":0.02086,"14.0":0,"15.0":0,"16.0":0.01043,"17.0":0.02086,"18.0":0.01043,"19.0":0.03129},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.02988,"4.2-4.3":0.02076,"4.4":0,"4.4.3-4.4.4":0.33679},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01664,"5.5":0},S:{"2.5":0.01752,_:"3.0-3.1"},J:{"7":0,"10":0.03504},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.07592},Q:{"13.1":0.03504},O:{"0":0.83512},H:{"0":1.93513},L:{"0":71.91296}};
diff --git a/node_modules/caniuse-lite/data/regions/TH.js b/node_modules/caniuse-lite/data/regions/TH.js
new file mode 100644
index 0000000..ffea0e3
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/TH.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00367,"53":0.00367,"54":0,"55":0.00367,"56":0.06599,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.07699,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00367,"79":0,"80":0,"81":0,"82":0,"83":0.00367,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00367,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0.00367,"110":0.00733,"111":0.1613,"112":0.15764,"113":0,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0.00367,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.05499,"38":0.00367,"39":0,"40":0,"41":0,"42":0,"43":0.00367,"44":0,"45":0,"46":0,"47":0,"48":0.00367,"49":0.011,"50":0,"51":0,"52":0,"53":0.00367,"54":0,"55":0,"56":0.00367,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00367,"69":0.00367,"70":0.00367,"71":0,"72":0.03299,"73":0.00367,"74":0.00733,"75":0.00367,"76":0.00367,"77":0,"78":0.00367,"79":0.03666,"80":0.00367,"81":0.00367,"83":0.00733,"84":0.00733,"85":0.00367,"86":0.00733,"87":0.011,"88":0.00733,"89":0.00367,"90":0.00367,"91":0.01833,"92":0.01466,"93":0.00367,"94":0.00367,"95":0.00367,"96":0.00733,"97":0.00733,"98":0.00367,"99":0.02566,"100":0.01466,"101":0.011,"102":0.00733,"103":0.02566,"104":0.011,"105":0.011,"106":0.01833,"107":0.01466,"108":0.03299,"109":1.06314,"110":0.04766,"111":2.56987,"112":3.3104,"113":0.00733,"114":0,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00367,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.00367,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00367,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.00367,"70":0,"71":0,"72":0,"73":0,"74":0.00367,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.00733,"96":0.02566,"97":0.09165,"98":0.00367,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00367,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00367,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0.00367,"108":0.00367,"109":0.01833,"110":0.01466,"111":0.24929,"112":0.55723,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00367,"14":0.011,"15":0.00733,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.00367,"10.1":0,"11.1":0,"12.1":0.00367,"13.1":0.011,"14.1":0.04399,"15.1":0.00733,"15.2-15.3":0.00367,"15.4":0.01833,"15.5":0.03666,"15.6":0.12831,"16.0":0.011,"16.1":0.10998,"16.2":0.09898,"16.3":0.45092,"16.4":0.1943,"16.5":0.00367},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00618,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.05252,"10.0-10.2":0,"10.3":0.04943,"11.0-11.2":0.00618,"11.3-11.4":0.00927,"12.0-12.1":0.01236,"12.2-12.5":0.48504,"13.0-13.1":0.01236,"13.2":0.30277,"13.3":0.02781,"13.4-13.7":0.08342,"14.0-14.4":0.33675,"14.5-14.8":0.71366,"15.0-15.1":0.20699,"15.2-15.3":0.2348,"15.4":0.32439,"15.5":0.51903,"15.6":1.35318,"16.0":2.70018,"16.1":3.32734,"16.2":2.04831,"16.3":9.89552,"16.4":5.56411,"16.5":0.07724},P:{"4":0.17483,"20":2.06713,"5.0-5.4":0.01028,"6.2-6.4":0,"7.2-7.4":0.07199,"8.2":0,"9.2":0.01028,"10.1":0,"11.1-11.2":0.03085,"12.0":0.01028,"13.0":0.03085,"14.0":0.04114,"15.0":0.02057,"16.0":0.07199,"17.0":0.06171,"18.0":0.07199,"19.0":0.1954},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00763,"4.4":0,"4.4.3-4.4.4":0.0407},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00378,"9":0,"10":0.00378,"11":0.11709,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.10134},Q:{"13.1":0},O:{"0":0.17102},H:{"0":0.20988},L:{"0":56.54291}};
diff --git a/node_modules/caniuse-lite/data/regions/TJ.js b/node_modules/caniuse-lite/data/regions/TJ.js
new file mode 100644
index 0000000..34d6e6b
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/TJ.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00784,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00784,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0.01568,"109":0,"110":0.00523,"111":0.12542,"112":0.16723,"113":0,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0.00261,"36":0,"37":0,"38":0,"39":0.00261,"40":0.00523,"41":0,"42":0,"43":0,"44":0.00784,"45":0,"46":0,"47":0,"48":0,"49":0.02352,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.00261,"71":0.00261,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.01045,"80":0,"81":0.00523,"83":0.08362,"84":0.02874,"85":0.03397,"86":0.00784,"87":0.02352,"88":0.00261,"89":0.00784,"90":0.00261,"91":0,"92":0.00261,"93":0.00261,"94":0.6428,"95":0.00261,"96":0.01045,"97":0.00784,"98":0.00523,"99":0.00523,"100":0.00523,"101":0.00784,"102":0.01568,"103":0.00523,"104":0.00261,"105":0.00261,"106":0.02613,"107":0.00784,"108":0.12542,"109":0.78129,"110":0.07055,"111":0.80219,"112":1.0243,"113":0,"114":0,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00261,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.00261,"56":0,"57":0,"58":0.00261,"60":0.00523,"62":0,"63":0.00523,"64":0.00523,"65":0.00261,"66":0.00261,"67":0.01307,"68":0.04181,"69":0.08362,"70":0,"71":0,"72":0,"73":0.01307,"74":0.01307,"75":0.00261,"76":0,"77":0,"78":0,"79":0.01829,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00261,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00523,"92":0,"93":0,"94":0,"95":0.0601,"96":0.02352,"97":0.11236,"98":0.01045,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.00261,"16":0.00784,"17":0,"18":0.00784,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.00261,"91":0,"92":0.01045,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00261,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0.00261,"108":0,"109":0.00784,"110":0.0392,"111":0.07578,"112":0.21688,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00261,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.07316,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00523,"14.1":0.0209,"15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0,"15.6":0.01568,"16.0":0.01045,"16.1":0.00523,"16.2":0.01045,"16.3":0.03397,"16.4":0.03136,"16.5":0},G:{"8":0.00125,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.04881,"5.0-5.1":0.04756,"6.0-6.1":0.00501,"7.0-7.1":0.00751,"8.1-8.4":0,"9.0-9.2":0.01502,"9.3":0.03504,"10.0-10.2":0.00501,"10.3":0.02753,"11.0-11.2":0.01502,"11.3-11.4":0.01126,"12.0-12.1":0.03004,"12.2-12.5":0.71712,"13.0-13.1":0.00626,"13.2":0.00626,"13.3":0.04881,"13.4-13.7":0.19649,"14.0-14.4":0.42552,"14.5-14.8":0.28535,"15.0-15.1":0.22027,"15.2-15.3":0.28785,"15.4":0.2453,"15.5":0.30412,"15.6":0.41551,"16.0":1.19771,"16.1":1.56565,"16.2":0.75091,"16.3":2.75085,"16.4":1.71083,"16.5":0.04255},P:{"4":0.49425,"20":1.14989,"5.0-5.4":0.05043,"6.2-6.4":0.12104,"7.2-7.4":0.47408,"8.2":0,"9.2":0.08069,"10.1":0.02017,"11.1-11.2":0.13113,"12.0":0.08069,"13.0":0.05043,"14.0":0.10087,"15.0":0.57494,"16.0":0.36312,"17.0":0.12104,"18.0":0.1513,"19.0":0.5346},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00634,"4.2-4.3":0.01427,"4.4":0,"4.4.3-4.4.4":0.05074},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0.00299,"10":0,"11":0.01792,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0.01477},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.09603},Q:{"13.1":0},O:{"0":1.33705},H:{"0":2.19597},L:{"0":70.5396}};
diff --git a/node_modules/caniuse-lite/data/regions/TK.js b/node_modules/caniuse-lite/data/regions/TK.js
new file mode 100644
index 0000000..830b219
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/TK.js
@@ -0,0 +1 @@
+module.exports={C:{"112":0.55169,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 113 114 3.5 3.6"},D:{"108":0.14011,"109":0.07006,"111":0.21017,"112":0.6918,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 110 113 114 115 116"},F:{_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"107":0.07006,"112":0.42034,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 108 109 110 111 113"},E:{"4":0,_:"0 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 13.1 14.1 15.5 15.6 16.0 16.2 16.5","15.1":0.62175,"15.2-15.3":23.46876,"15.4":0.49039,"16.1":45.4138,"16.3":1.59377,"16.4":0.97203},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0,"10.0-10.2":0,"10.3":0,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":0,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0,"14.0-14.4":0,"14.5-14.8":1.38896,"15.0-15.1":1.04193,"15.2-15.3":1.94438,"15.4":0,"15.5":0,"15.6":0,"16.0":0.27813,"16.1":0.13864,"16.2":0.13864,"16.3":2.29141,"16.4":0.90245,"16.5":0.27813},P:{"4":0.13557,"20":0.42757,"5.0-5.4":0.01043,"6.2-6.4":0,"7.2-7.4":0.04171,"8.2":0,"9.2":0.01043,"10.1":0,"11.1-11.2":0.01043,"12.0":0,"13.0":0.02086,"14.0":0,"15.0":0,"16.0":0.06961,"17.0":0.02086,"18.0":0.01043,"19.0":0.06961},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0},Q:{"13.1":0},O:{"0":0},H:{"0":0},L:{"0":3.8881}};
diff --git a/node_modules/caniuse-lite/data/regions/TL.js b/node_modules/caniuse-lite/data/regions/TL.js
new file mode 100644
index 0000000..726e177
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/TL.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0.04166,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0.00521,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.01041,"38":0.01041,"39":0,"40":0,"41":0.05207,"42":0,"43":0.01041,"44":0.01041,"45":0.00521,"46":0,"47":0.00521,"48":0.01562,"49":0,"50":0,"51":0,"52":0,"53":0.00521,"54":0,"55":0,"56":0.02083,"57":0.01562,"58":0.00521,"59":0,"60":0,"61":0.03645,"62":0.00521,"63":0,"64":0,"65":0,"66":0,"67":0.01562,"68":0,"69":0,"70":0,"71":0,"72":0.01041,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.08852,"79":0.15621,"80":0.00521,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.02604,"89":0.01562,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.02604,"96":0.00521,"97":0,"98":0.00521,"99":0.01041,"100":0,"101":0,"102":0.02604,"103":0.00521,"104":0.00521,"105":0.00521,"106":0.01562,"107":0.02083,"108":0.02083,"109":0.01562,"110":0.06769,"111":2.7493,"112":1.7079,"113":0.12497,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0.01562,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00521,"41":0,"42":0.01041,"43":0.01041,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00521,"50":0,"51":0,"52":0,"53":0.00521,"54":0,"55":0.01041,"56":0.00521,"57":0,"58":0.0729,"59":0.01562,"60":0,"61":0,"62":0.00521,"63":0.01041,"64":0.01041,"65":0.00521,"66":0.00521,"67":0,"68":0.00521,"69":0,"70":0,"71":0.00521,"72":0.01041,"73":0,"74":0.05728,"75":0,"76":0.01041,"77":0,"78":0.02083,"79":0.00521,"80":0.22911,"81":0,"83":0.00521,"84":0.01041,"85":0.02604,"86":0.00521,"87":0.03124,"88":0.03124,"89":0.03124,"90":0.02083,"91":0.00521,"92":0.00521,"93":0,"94":0.00521,"95":0.01562,"96":0.02083,"97":0.00521,"98":0.04166,"99":0.02604,"100":0.00521,"101":0.00521,"102":0.00521,"103":0.151,"104":0.03645,"105":0.04686,"106":0.02604,"107":0.04686,"108":0.12497,"109":2.32753,"110":0.27076,"111":4.95186,"112":5.42049,"113":0,"114":0,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.03645,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.00521,"56":0,"57":0,"58":0.00521,"60":0,"62":0,"63":0.01041,"64":0,"65":0,"66":0,"67":0.06248,"68":0.01562,"69":0.07811,"70":0,"71":0,"72":0.00521,"73":0.00521,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00521,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0.00521,"87":0,"88":0,"89":0,"90":0.00521,"91":0,"92":0,"93":0,"94":0,"95":0.05728,"96":0.03645,"97":0.2968,"98":0.00521,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.02083,"13":0.05207,"14":0.01041,"15":0,"16":0.01041,"17":0.00521,"18":0.03645,"79":0,"80":0,"81":0,"83":0,"84":0.01562,"85":0,"86":0,"87":0,"88":0,"89":0.00521,"90":0.04686,"91":0,"92":0.04166,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.01041,"101":0.01041,"102":0,"103":0.00521,"104":0.01041,"105":0.02083,"106":0.01041,"107":0.02083,"108":0.02083,"109":0.06248,"110":0.151,"111":1.14033,"112":1.59855,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00521,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.01562,"13.1":0.04686,"14.1":0.09893,"15.1":0.09893,"15.2-15.3":0.01041,"15.4":0.03124,"15.5":0.01041,"15.6":0.04686,"16.0":0,"16.1":0.01041,"16.2":0.06248,"16.3":0.0729,"16.4":0.01041,"16.5":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.10718,"5.0-5.1":0,"6.0-6.1":0.00105,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.02207,"10.0-10.2":0.00105,"10.3":0.05149,"11.0-11.2":0.00946,"11.3-11.4":0.0021,"12.0-12.1":0.04308,"12.2-12.5":0.69772,"13.0-13.1":0.04939,"13.2":0.01156,"13.3":0.11243,"13.4-13.7":0.06515,"14.0-14.4":0.58529,"14.5-14.8":0.52224,"15.0-15.1":0.33415,"15.2-15.3":0.29632,"15.4":0.27636,"15.5":0.45709,"15.6":0.96883,"16.0":0.68406,"16.1":1.21261,"16.2":0.45604,"16.3":2.02277,"16.4":0.73135,"16.5":0.02417},P:{"4":0.11184,"20":0.51852,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.061,"8.2":0,"9.2":0.04067,"10.1":0,"11.1-11.2":0.0305,"12.0":0,"13.0":0.01017,"14.0":0.0305,"15.0":0.02033,"16.0":0.22367,"17.0":0.0305,"18.0":0.08134,"19.0":0.18301},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.04},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.05728,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.0719},Q:{"13.1":0},O:{"0":0.67102},H:{"0":0.74418},L:{"0":61.7276}};
diff --git a/node_modules/caniuse-lite/data/regions/TM.js b/node_modules/caniuse-lite/data/regions/TM.js
new file mode 100644
index 0000000..7e42c4f
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/TM.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.04819,"50":0.06325,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00904,"69":0,"70":0.00301,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00301,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.00904,"85":0.00602,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00301,"100":0,"101":0,"102":0.00301,"103":0,"104":0.00602,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0.00301,"111":0.02108,"112":0.06928,"113":0,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0.04217,"51":0,"52":0.00904,"53":0,"54":0,"55":0,"56":0.01807,"57":0,"58":0,"59":0,"60":0,"61":0.00602,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.00301,"68":0,"69":0.00301,"70":0.02108,"71":0,"72":0.00301,"73":0.0241,"74":0.00301,"75":0.00602,"76":0,"77":0,"78":0.01205,"79":0.01205,"80":0.00301,"81":0.00301,"83":0.00301,"84":0.00602,"85":0,"86":0.01807,"87":0.00904,"88":0.01506,"89":0,"90":0.00602,"91":0,"92":0.00602,"93":0,"94":1.95178,"95":0.00904,"96":0.01807,"97":0.00904,"98":0.00301,"99":0.00301,"100":0.03012,"101":0.01506,"102":0,"103":0.03313,"104":0.06024,"105":0.02108,"106":0.03614,"107":0.16566,"108":0.02711,"109":1.19275,"110":0.04518,"111":1.54516,"112":1.30118,"113":0.00301,"114":0,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0.00301,"62":0,"63":0,"64":0,"65":0,"66":0.00301,"67":0,"68":0.00301,"69":0,"70":0,"71":0,"72":0,"73":0.00904,"74":0.00301,"75":0,"76":0,"77":0,"78":0,"79":0.00301,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0.00602,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0.02108,"97":0.03916,"98":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0.02711,"85":0,"86":0,"87":0,"88":0.00301,"89":0,"90":0,"91":0,"92":0.02711,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00602,"99":0.00602,"100":0,"101":0,"102":0.00602,"103":0,"104":0,"105":0,"106":0,"107":0.00301,"108":0.00904,"109":0.00301,"110":0.08132,"111":0.02108,"112":0.09638,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0,"14.1":0,"15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0.00602,"15.6":0.00904,"16.0":0,"16.1":0.01205,"16.2":0.00301,"16.3":0.01205,"16.4":0,"16.5":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0,"10.0-10.2":0,"10.3":0,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0.00756,"12.2-12.5":0.14048,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0,"14.0-14.4":0.00378,"14.5-14.8":0.00756,"15.0-15.1":0.01133,"15.2-15.3":0.01133,"15.4":0.01133,"15.5":0.06835,"15.6":0.04568,"16.0":0.26963,"16.1":0.395,"16.2":0.26207,"16.3":1.42852,"16.4":0.58906,"16.5":0},P:{"4":0.06001,"20":0.71017,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.11003,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.01,"12.0":0,"13.0":0.03001,"14.0":1.13027,"15.0":0.03001,"16.0":0.06001,"17.0":0.09002,"18.0":0.03001,"19.0":0.29007},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00333,"4.4":0,"4.4.3-4.4.4":0.03667},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.03916,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.04193},Q:{"13.1":0},O:{"0":0.36338},H:{"0":0.41018},L:{"0":84.26325}};
diff --git a/node_modules/caniuse-lite/data/regions/TN.js b/node_modules/caniuse-lite/data/regions/TN.js
new file mode 100644
index 0000000..1ec1ca5
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/TN.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.02465,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00411,"69":0,"70":0,"71":0,"72":0.00411,"73":0,"74":0,"75":0.00822,"76":0,"77":0,"78":0.00411,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00411,"100":0,"101":0,"102":0.01233,"103":0,"104":0.00411,"105":0.00411,"106":0,"107":0.00411,"108":0.00411,"109":0.00822,"110":0.02876,"111":0.29996,"112":0.25065,"113":0,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0.00411,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00411,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.03698,"50":0.00411,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00822,"57":0,"58":0.00411,"59":0,"60":0.00411,"61":0,"62":0,"63":0.00411,"64":0,"65":0.00822,"66":0,"67":0.00411,"68":0.00411,"69":0.00411,"70":0.00822,"71":0.00411,"72":0.00411,"73":0.00411,"74":0.00822,"75":0.00411,"76":0.00411,"77":0.00411,"78":0.01644,"79":0.01644,"80":0.00411,"81":0.02465,"83":0.00822,"84":0.00411,"85":0.03287,"86":0.01233,"87":0.03698,"88":0.00822,"89":0.01233,"90":0.00411,"91":0.02465,"92":0.00822,"93":0.00411,"94":0.00411,"95":0.01233,"96":0.01233,"97":0.00822,"98":0.01644,"99":0.01233,"100":0.00822,"101":0.01233,"102":0.01644,"103":0.04109,"104":0.01233,"105":0.03287,"106":0.03287,"107":0.02876,"108":0.06164,"109":2.17366,"110":0.12327,"111":3.3324,"112":3.98984,"113":0.00411,"114":0,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00411,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.00411,"68":0.00411,"69":0.01644,"70":0,"71":0,"72":0,"73":0,"74":0.00411,"75":0,"76":0,"77":0,"78":0,"79":0.00411,"80":0,"81":0,"82":0,"83":0.00411,"84":0,"85":0.01233,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00411,"92":0,"93":0,"94":0,"95":0.06985,"96":0.36981,"97":0.85467,"98":0.02876,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00411},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00411,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0.00411,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00822,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0.00411,"106":0,"107":0.00411,"108":0.00411,"109":0.02465,"110":0.02055,"111":0.27119,"112":0.66155,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.01644,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00822,"14.1":0.01644,"15.1":0,"15.2-15.3":0,"15.4":0.00411,"15.5":0.00411,"15.6":0.03287,"16.0":0.00822,"16.1":0.00822,"16.2":0.02055,"16.3":0.03698,"16.4":0.01644,"16.5":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00738,"6.0-6.1":0.00277,"7.0-7.1":0.07101,"8.1-8.4":0.00277,"9.0-9.2":0.00092,"9.3":0.0664,"10.0-10.2":0.0083,"10.3":0.04427,"11.0-11.2":0.0083,"11.3-11.4":0.00461,"12.0-12.1":0.00553,"12.2-12.5":0.51553,"13.0-13.1":0.00553,"13.2":0.00646,"13.3":0.03412,"13.4-13.7":0.06732,"14.0-14.4":0.45928,"14.5-14.8":0.29327,"15.0-15.1":0.083,"15.2-15.3":0.1328,"15.4":0.11159,"15.5":0.21857,"15.6":0.51277,"16.0":0.593,"16.1":0.98219,"16.2":0.60684,"16.3":2.10087,"16.4":1.2893,"16.5":0.02859},P:{"4":0.17421,"20":1.10677,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.29719,"8.2":0,"9.2":0.01025,"10.1":0,"11.1-11.2":0.0205,"12.0":0,"13.0":0.03074,"14.0":0.0205,"15.0":0.0205,"16.0":0.06149,"17.0":0.06149,"18.0":0.04099,"19.0":0.11273},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01788,"4.2-4.3":0.0143,"4.4":0,"4.4.3-4.4.4":0.14302},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.01789,"9":0.00447,"10":0.00447,"11":0.1252,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.08247},Q:{"13.1":0},O:{"0":0.15317},H:{"0":0.27328},L:{"0":74.10939}};
diff --git a/node_modules/caniuse-lite/data/regions/TO.js b/node_modules/caniuse-lite/data/regions/TO.js
new file mode 100644
index 0000000..6487b67
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/TO.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00619,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0.00619,"110":0.02475,"111":0.74256,"112":1.37992,"113":0,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00619,"64":0,"65":0,"66":0,"67":0,"68":0.00619,"69":0,"70":0,"71":0.00619,"72":0.00619,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0.01856,"81":0,"83":0,"84":0.01856,"85":0,"86":0,"87":0.01238,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.01856,"94":0.01238,"95":0.22277,"96":0,"97":0.01238,"98":0,"99":0.59405,"100":0,"101":0.00619,"102":0,"103":0.22277,"104":0.09282,"105":0.06188,"106":0.95295,"107":0.01856,"108":0.14851,"109":0.64974,"110":0.1547,"111":7.81544,"112":8.6137,"113":0.03094,"114":0,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0.45172,"98":0.00619,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0.00619,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.03713,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0.00619,"104":0,"105":0,"106":0.06188,"107":0.03094,"108":0.01856,"109":0.06807,"110":0.06188,"111":2.85886,"112":7.35134,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00619,"14":0.01238,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.02475,"14.1":0.03713,"15.1":0,"15.2-15.3":0.00619,"15.4":0.07426,"15.5":0.07426,"15.6":0.03094,"16.0":0.01238,"16.1":0.04332,"16.2":0.01238,"16.3":0.1547,"16.4":0.03713,"16.5":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.20614,"10.0-10.2":0,"10.3":0,"11.0-11.2":0.00539,"11.3-11.4":0.02021,"12.0-12.1":0.03503,"12.2-12.5":0.64268,"13.0-13.1":0.01078,"13.2":0,"13.3":0.02964,"13.4-13.7":0.03503,"14.0-14.4":0.26542,"14.5-14.8":1.19912,"15.0-15.1":0.33549,"15.2-15.3":0.26003,"15.4":0.45136,"15.5":0.81244,"15.6":0.77741,"16.0":0.84208,"16.1":0.96334,"16.2":0.71678,"16.3":3.52596,"16.4":1.12906,"16.5":0.00539},P:{"4":0.09159,"20":0.43758,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.10176,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.06106,"12.0":0.02035,"13.0":0.01018,"14.0":0.02035,"15.0":0.13229,"16.0":0.173,"17.0":0,"18.0":0.02035,"19.0":0.09159},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.09},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01238,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.10292},Q:{"13.1":0},O:{"0":0.04193},H:{"0":0.00361},L:{"0":52.01158}};
diff --git a/node_modules/caniuse-lite/data/regions/TR.js b/node_modules/caniuse-lite/data/regions/TR.js
new file mode 100644
index 0000000..3be1d68
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/TR.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00379,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00379,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00379,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.01137,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0.00379,"110":0.00758,"111":0.12883,"112":0.12883,"113":0,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0.00758,"23":0,"24":0,"25":0,"26":0.02273,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.03789,"35":0,"36":0,"37":0,"38":0.03789,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.03031,"48":0,"49":0.04168,"50":0,"51":0,"52":0,"53":0.00758,"54":0,"55":0,"56":0,"57":0,"58":0.00379,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00379,"66":0.00379,"67":0,"68":0.01895,"69":0.00379,"70":0.00379,"71":0.00758,"72":0,"73":0.00758,"74":0.00379,"75":0.00379,"76":0.00379,"77":0.00379,"78":0.00379,"79":0.1023,"80":0.01137,"81":0.01137,"83":0.02273,"84":0.00758,"85":0.02273,"86":0.01895,"87":0.02652,"88":0.00758,"89":0.00379,"90":0.00379,"91":0.01137,"92":0.00758,"93":0.00379,"94":0.00758,"95":0.00758,"96":0.01516,"97":0.00758,"98":0.00758,"99":0.03789,"100":0.01137,"101":0.00758,"102":0.00758,"103":0.03031,"104":0.01516,"105":0.01137,"106":0.02273,"107":0.02652,"108":0.10609,"109":2.09911,"110":0.0682,"111":2.53105,"112":3.14108,"113":0.00379,"114":0,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.01137,"29":0,"30":0,"31":0.00379,"32":0.00379,"33":0,"34":0,"35":0,"36":0.00758,"37":0,"38":0,"39":0,"40":0.02652,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.04547,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.00379,"68":0.01516,"69":0.05305,"70":0,"71":0,"72":0,"73":0,"74":0.00379,"75":0.00379,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00379,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0.00379,"95":0.04547,"96":0.14398,"97":0.413,"98":0.01516,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0.00379,"14":0,"15":0,"16":0,"17":0.00379,"18":0.00758,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00379,"93":0,"94":0,"95":0,"96":0.00379,"97":0.00379,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0.00379,"108":0.00379,"109":0.04926,"110":0.01516,"111":0.2425,"112":0.59487,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.01137,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.00379,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00379,"13.1":0.01137,"14.1":0.01895,"15.1":0.00379,"15.2-15.3":0.00379,"15.4":0.00379,"15.5":0.00758,"15.6":0.05305,"16.0":0.00379,"16.1":0.01895,"16.2":0.02273,"16.3":0.09094,"16.4":0.04547,"16.5":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00188,"7.0-7.1":0.05078,"8.1-8.4":0.01505,"9.0-9.2":0.00752,"9.3":0.15987,"10.0-10.2":0.01317,"10.3":0.16551,"11.0-11.2":0.01128,"11.3-11.4":0.0094,"12.0-12.1":0.01881,"12.2-12.5":1.45197,"13.0-13.1":0.01505,"13.2":0.00564,"13.3":0.04138,"13.4-13.7":0.12601,"14.0-14.4":0.28776,"14.5-14.8":0.62819,"15.0-15.1":0.0978,"15.2-15.3":0.14294,"15.4":0.15799,"15.5":0.28212,"15.6":0.67709,"16.0":0.67897,"16.1":1.51592,"16.2":0.95732,"16.3":5.00856,"16.4":3.00363,"16.5":0.06019},P:{"4":0.74458,"20":2.67233,"5.0-5.4":0.0204,"6.2-6.4":0,"7.2-7.4":0.1632,"8.2":0.0102,"9.2":0.0306,"10.1":0,"11.1-11.2":0.0612,"12.0":0.0204,"13.0":0.0816,"14.0":0.0306,"15.0":0.0204,"16.0":0.0816,"17.0":0.18359,"18.0":0.0714,"19.0":0.23459},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00255,"4.2-4.3":0.01404,"4.4":0,"4.4.3-4.4.4":0.05615},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.1023,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.12422},Q:{"13.1":0},O:{"0":0.11801},H:{"0":0.69974},L:{"0":62.94638}};
diff --git a/node_modules/caniuse-lite/data/regions/TT.js b/node_modules/caniuse-lite/data/regions/TT.js
new file mode 100644
index 0000000..e7e8b57
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/TT.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00459,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00459,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.00459,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00459,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0.00459,"109":0.00459,"110":0.01378,"111":0.39049,"112":0.32158,"113":0,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00459,"35":0,"36":0,"37":0,"38":0.00919,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00459,"48":0,"49":0.00919,"50":0,"51":0,"52":0,"53":0.00919,"54":0,"55":0,"56":0.00459,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00459,"66":0,"67":0,"68":0.02756,"69":0,"70":0.01378,"71":0.01378,"72":0,"73":0,"74":0.00459,"75":0.00459,"76":0.01378,"77":0.00459,"78":0,"79":0.06432,"80":0,"81":0.01378,"83":0.00919,"84":0.00919,"85":0,"86":0.00459,"87":0.03216,"88":0.00459,"89":0.00459,"90":0,"91":0.01838,"92":0.00459,"93":0.03216,"94":0.00459,"95":0.00459,"96":0.00459,"97":0.00459,"98":0,"99":0.03216,"100":0.00919,"101":0.00459,"102":0.00459,"103":0.3032,"104":0.00919,"105":0.00919,"106":0.01838,"107":0.01838,"108":0.03675,"109":0.65694,"110":0.21132,"111":4.87423,"112":5.2096,"113":0.00459,"114":0.00459,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.01378,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00459,"69":0.01378,"70":0,"71":0,"72":0,"73":0,"74":0.00459,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.02297,"96":0.12863,"97":0.35833,"98":0.00919,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00459,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00459,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00459,"103":0,"104":0,"105":0,"106":0.00459,"107":0.00459,"108":0.00919,"109":0.03216,"110":0.06891,"111":0.74882,"112":1.69978,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00459,"14":0.01378,"15":0.00919,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00919,"13.1":0.05053,"14.1":0.05972,"15.1":0.00459,"15.2-15.3":0.00459,"15.4":0.02297,"15.5":0.09188,"15.6":0.11485,"16.0":0.01838,"16.1":0.09188,"16.2":0.09647,"16.3":0.33996,"16.4":0.16998,"16.5":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01642,"6.0-6.1":0,"7.0-7.1":0.02669,"8.1-8.4":0,"9.0-9.2":0.00616,"9.3":0.11291,"10.0-10.2":0,"10.3":0.13754,"11.0-11.2":0.00821,"11.3-11.4":0.00616,"12.0-12.1":0.01232,"12.2-12.5":0.5974,"13.0-13.1":0.00205,"13.2":0.00205,"13.3":0.01642,"13.4-13.7":0.04927,"14.0-14.4":0.12317,"14.5-14.8":0.31204,"15.0-15.1":0.05543,"15.2-15.3":0.09443,"15.4":0.1745,"15.5":0.29151,"15.6":0.79447,"16.0":1.2728,"16.1":2.07754,"16.2":1.23174,"16.3":7.00246,"16.4":4.15713,"16.5":0.11291},P:{"4":0.57574,"20":4.35003,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.23456,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.02132,"12.0":0,"13.0":0.03199,"14.0":0.02132,"15.0":0.04265,"16.0":0.04265,"17.0":0.1386,"18.0":0.07463,"19.0":0.2239},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.05904,"4.2-4.3":0.38378,"4.4":0,"4.4.3-4.4.4":0.64948},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00919,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.21083},Q:{"13.1":0},O:{"0":0.03784},H:{"0":0.27637},L:{"0":54.18254}};
diff --git a/node_modules/caniuse-lite/data/regions/TV.js b/node_modules/caniuse-lite/data/regions/TV.js
new file mode 100644
index 0000000..0f7e239
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/TV.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0,"111":0.22452,"112":0,"113":0,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.13471,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0.0449,"106":0,"107":0,"108":0,"109":0.0449,"110":0,"111":3.53619,"112":2.95244,"113":0,"114":0,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0.22452,"110":0,"111":1.16376,"112":1.47809,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.0449,"14.1":0,"15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0,"15.6":0,"16.0":0.0449,"16.1":0,"16.2":0,"16.3":0,"16.4":0,"16.5":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0,"10.0-10.2":0,"10.3":0,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":0,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0,"14.0-14.4":0,"14.5-14.8":0.11067,"15.0-15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0.22134,"15.6":0,"16.0":0,"16.1":2.65855,"16.2":0.99702,"16.3":0.33251,"16.4":0.22134,"16.5":0},P:{"4":0,"20":1.6834,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0,"12.0":0,"13.0":0,"14.0":0,"15.0":0,"16.0":0,"17.0":0,"18.0":0,"19.0":0},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0},Q:{"13.1":0},O:{"0":0},H:{"0":0.11257},L:{"0":83.0926}};
diff --git a/node_modules/caniuse-lite/data/regions/TW.js b/node_modules/caniuse-lite/data/regions/TW.js
new file mode 100644
index 0000000..beb5e9f
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/TW.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.02102,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.00526,"46":0.00526,"47":0.00526,"48":0.00526,"49":0.01051,"50":0.00526,"51":0.00526,"52":0.00526,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00526,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00526,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00526,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00526,"103":0,"104":0.00526,"105":0,"106":0,"107":0,"108":0.00526,"109":0.00526,"110":0.01051,"111":0.26275,"112":0.24699,"113":0,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00526,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0.00526,"31":0,"32":0,"33":0,"34":0.01577,"35":0,"36":0,"37":0,"38":0.05781,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.05781,"50":0.01051,"51":0.00526,"52":0.00526,"53":0.05255,"54":0.00526,"55":0.00526,"56":0.02102,"57":0,"58":0.00526,"59":0,"60":0,"61":0.02628,"62":0,"63":0.00526,"64":0.00526,"65":0.00526,"66":0.00526,"67":0.01051,"68":0.00526,"69":0.00526,"70":0.00526,"71":0.00526,"72":0.00526,"73":0.01051,"74":0.01577,"75":0.00526,"76":0.00526,"77":0.00526,"78":0.00526,"79":0.33107,"80":0.00526,"81":0.02102,"83":0.01051,"84":0.00526,"85":0.00526,"86":0.01051,"87":0.06306,"88":0.00526,"89":0.03153,"90":0.00526,"91":0.01051,"92":0.01051,"93":0.00526,"94":0.00526,"95":0.01051,"96":0.02102,"97":0.03679,"98":0.01577,"99":0.02628,"100":0.01577,"101":0.02102,"102":0.02102,"103":0.08408,"104":0.02102,"105":0.02628,"106":0.03153,"107":0.03679,"108":0.08934,"109":2.76413,"110":0.14189,"111":5.76999,"112":7.15206,"113":0.01051,"114":0.01051,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.01577,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.01051,"37":0.01051,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.05255,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.01051,"96":0.00526,"97":0.03679,"98":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0.00526,"18":0.01051,"79":0,"80":0,"81":0,"83":0,"84":0.00526,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0.00526,"106":0.00526,"107":0.00526,"108":0.01051,"109":0.06832,"110":0.02628,"111":0.58331,"112":1.42936,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.03679,"14":0.11036,"15":0.01577,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00526,"12.1":0.02628,"13.1":0.08408,"14.1":0.3153,"15.1":0.03153,"15.2-15.3":0.03153,"15.4":0.11561,"15.5":0.21546,"15.6":0.68315,"16.0":0.02628,"16.1":0.1524,"16.2":0.24699,"16.3":1.29273,"16.4":0.33107,"16.5":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.03634,"6.0-6.1":0.02019,"7.0-7.1":0.1736,"8.1-8.4":0.05652,"9.0-9.2":0.02019,"9.3":0.29876,"10.0-10.2":0.02019,"10.3":0.36739,"11.0-11.2":0.04037,"11.3-11.4":0.04441,"12.0-12.1":0.08882,"12.2-12.5":1.05777,"13.0-13.1":0.05248,"13.2":0.02422,"13.3":0.09689,"13.4-13.7":0.23012,"14.0-14.4":1.20311,"14.5-14.8":1.80063,"15.0-15.1":0.72267,"15.2-15.3":0.72267,"15.4":0.99317,"15.5":1.32019,"15.6":2.65653,"16.0":2.70094,"16.1":4.74784,"16.2":2.9674,"16.3":11.49817,"16.4":4.31181,"16.5":0.02422},P:{"4":0.78247,"20":2.58648,"5.0-5.4":0.07607,"6.2-6.4":0,"7.2-7.4":0,"8.2":0.01087,"9.2":0.0326,"10.1":0.01087,"11.1-11.2":0.04347,"12.0":0.02174,"13.0":0.09781,"14.0":0.05434,"15.0":0.04347,"16.0":0.07607,"17.0":0.10868,"18.0":0.13041,"19.0":0.30429},I:{"0":0,"3":0,"4":0.01083,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.01805,"4.4":0,"4.4.3-4.4.4":0.07943},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.08934,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.08067},Q:{"13.1":0.00949},O:{"0":0.10914},H:{"0":0.17071},L:{"0":30.24049}};
diff --git a/node_modules/caniuse-lite/data/regions/TZ.js b/node_modules/caniuse-lite/data/regions/TZ.js
new file mode 100644
index 0000000..8150553
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/TZ.js
@@ -0,0 +1 @@
+module.exports={C:{"34":0.00405,"38":0.00202,"47":0.00405,"52":0.00607,"56":0.00202,"58":0.00202,"64":0.00202,"65":0.00202,"66":0.00202,"67":0.00202,"68":0.00607,"72":0.00405,"78":0.0081,"84":0.00202,"91":0.02429,"99":0.00405,"100":0.00405,"101":0.00607,"102":0.03643,"103":0.00405,"105":0.00607,"106":0.00607,"107":0.01012,"108":0.01214,"109":0.02429,"110":0.02226,"111":0.68614,"112":0.60113,"113":0.08096,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 39 40 41 42 43 44 45 46 48 49 50 51 53 54 55 57 59 60 61 62 63 69 70 71 73 74 75 76 77 79 80 81 82 83 85 86 87 88 89 90 92 93 94 95 96 97 98 104 114 3.5 3.6"},D:{"11":0.01214,"49":0.00405,"50":0.00202,"55":0.00405,"58":0.00202,"62":0.00405,"63":0.00202,"64":0.00405,"65":0.00202,"67":0.00202,"69":0.00405,"70":0.01012,"71":0.00202,"72":0.00405,"73":0.01417,"74":0.02834,"76":0.00405,"77":0.0081,"78":0.00202,"79":0.03643,"80":0.01012,"81":0.0081,"83":0.0081,"84":0.02226,"85":0.00405,"86":0.0081,"87":0.02226,"88":0.01822,"89":0.00607,"90":0.00607,"91":0.00607,"92":0.00607,"93":0.00607,"94":0.57886,"95":0.01012,"96":0.01214,"97":0.00607,"98":0.01012,"99":0.36027,"100":0.01214,"101":0.01214,"102":0.03238,"103":0.05262,"104":0.01417,"105":0.01619,"106":0.01417,"107":0.0425,"108":0.06072,"109":0.97557,"110":0.11739,"111":3.32138,"112":4.10062,"113":0.01214,"114":0.00607,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 51 52 53 54 56 57 59 60 61 66 68 75 115 116"},F:{"28":0.00202,"67":0.00202,"73":0.00405,"74":0.00405,"79":0.01012,"92":0.00202,"94":0.00202,"95":0.17609,"96":0.0587,"97":0.44123,"98":0.02226,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 68 69 70 71 72 75 76 77 78 80 81 82 83 84 85 86 87 88 89 90 91 93 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.01214,"13":0.0081,"14":0.00202,"15":0.00607,"16":0.01012,"17":0.00405,"18":0.03846,"84":0.00405,"86":0.00405,"89":0.0081,"90":0.01214,"92":0.02024,"100":0.00202,"104":0.00202,"105":0.00202,"106":0.00202,"107":0.01417,"108":0.01417,"109":0.02226,"110":0.04858,"111":0.44933,"112":0.82782,_:"79 80 81 83 85 87 88 91 93 94 95 96 97 98 99 101 102 103 113"},E:{"4":0,"13":0.01012,"14":0.01012,"15":0.02024,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1 16.5","11.1":0.00202,"12.1":0.01012,"13.1":0.02429,"14.1":0.03846,"15.1":0.0081,"15.2-15.3":0.00202,"15.4":0.01417,"15.5":0.01214,"15.6":0.04453,"16.0":0.01214,"16.1":0.02631,"16.2":0.02631,"16.3":0.09108,"16.4":0.04858},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00268,"6.0-6.1":0,"7.0-7.1":0.01555,"8.1-8.4":0,"9.0-9.2":0.00429,"9.3":0.03377,"10.0-10.2":0.00214,"10.3":0.0595,"11.0-11.2":0.00107,"11.3-11.4":0.00107,"12.0-12.1":0.01126,"12.2-12.5":0.62396,"13.0-13.1":0.00429,"13.2":0.00482,"13.3":0.02305,"13.4-13.7":0.07934,"14.0-14.4":0.19941,"14.5-14.8":0.19673,"15.0-15.1":0.09863,"15.2-15.3":0.12544,"15.4":0.16671,"15.5":0.24658,"15.6":0.20852,"16.0":0.31788,"16.1":0.37738,"16.2":0.38328,"16.3":0.9917,"16.4":0.61485,"16.5":0.01501},P:{"4":0.1765,"20":0.66448,"5.0-5.4":0.04153,"6.2-6.4":0.01038,"7.2-7.4":0.16612,"8.2":0,"9.2":0.05191,"10.1":0.02017,"11.1-11.2":0.05191,"12.0":0.04153,"13.0":0.02077,"14.0":0.02077,"15.0":0.01038,"16.0":0.11421,"17.0":0.08306,"18.0":0.05191,"19.0":0.14536},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.0021,"4.4":0,"4.4.3-4.4.4":0.04575},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.03643,_:"6 7 8 9 10 5.5"},S:{"2.5":0.98093,_:"3.0-3.1"},J:{"7":0,"10":0.01595},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.14355},Q:{"13.1":0},O:{"0":0.81345},H:{"0":16.90493},L:{"0":58.91247}};
diff --git a/node_modules/caniuse-lite/data/regions/UA.js b/node_modules/caniuse-lite/data/regions/UA.js
new file mode 100644
index 0000000..780b18f
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/UA.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0.0061,"51":0,"52":0.11594,"53":0.0061,"54":0,"55":0,"56":0.0061,"57":0.0061,"58":0,"59":0,"60":0.06102,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.27459,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.10984,"79":0.0061,"80":0.0061,"81":0.03051,"82":0.0061,"83":0.0061,"84":0,"85":0,"86":0,"87":0.0061,"88":0.0061,"89":0,"90":0,"91":0.0061,"92":0,"93":0,"94":0,"95":0.0061,"96":0,"97":0.0061,"98":0,"99":0.0061,"100":0,"101":0.0061,"102":0.17696,"103":0.01831,"104":0.01831,"105":0.0122,"106":0.0122,"107":0.0122,"108":0.0122,"109":0.01831,"110":0.07322,"111":0.95801,"112":0.81157,"113":0.0061,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0.0061,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0.0061,"42":0.0061,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.09153,"50":0,"51":0.0061,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0.0061,"58":0.0061,"59":0.12204,"60":0,"61":0.0122,"62":0,"63":0.0061,"64":0,"65":0,"66":0.0061,"67":0,"68":0.0061,"69":0.0061,"70":0.0061,"71":0.0061,"72":0.0061,"73":0.0061,"74":0.0061,"75":0.0061,"76":0.0061,"77":0.0061,"78":0.0061,"79":0.03051,"80":0.01831,"81":0.03661,"83":0.04271,"84":0.06102,"85":0.07322,"86":0.05492,"87":0.03661,"88":0.01831,"89":0.02441,"90":0.18916,"91":0.17086,"92":0.16475,"93":0.15865,"94":0.17696,"95":0.01831,"96":0.03661,"97":0.04271,"98":0.03661,"99":0.03661,"100":0.04882,"101":0.03661,"102":0.07933,"103":0.10373,"104":0.03661,"105":0.06102,"106":0.10984,"107":0.10984,"108":0.18306,"109":3.18524,"110":0.24408,"111":6.67559,"112":8.71976,"113":0.0122,"114":0.0122,"115":0,"116":0},F:{"9":0,"11":0.299,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.0122,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.0061,"47":0,"48":0.0061,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.0061,"68":0.0122,"69":0.02441,"70":0.0061,"71":0,"72":0.0122,"73":0.0061,"74":0.09153,"75":0.01831,"76":0,"77":0.0061,"78":0,"79":0.04882,"80":0,"81":0,"82":0.0122,"83":0.02441,"84":0.01831,"85":0.09153,"86":0.0122,"87":0.01831,"88":0.0061,"89":0.0061,"90":0.0061,"91":0.0061,"92":0.0061,"93":0.0061,"94":0.0122,"95":1.03734,"96":0.78716,"97":2.69708,"98":0.13424,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.02441},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.0061,"79":0,"80":0,"81":0,"83":0,"84":0.0061,"85":0.0061,"86":0,"87":0,"88":0,"89":0.0061,"90":0,"91":0,"92":0.0061,"93":0,"94":0,"95":0,"96":0.0061,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0.0061,"107":0.0061,"108":0.0061,"109":0.03051,"110":0.0122,"111":0.37832,"112":0.70173,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.0061,"14":0.03051,"15":0.0061,_:"0","3.1":0,"3.2":0,"5.1":0.01831,"6.1":0,"7.1":0,"9.1":0.0122,"10.1":0,"11.1":0,"12.1":0.0122,"13.1":0.04882,"14.1":0.06712,"15.1":0.01831,"15.2-15.3":0.0061,"15.4":0.02441,"15.5":0.03661,"15.6":0.12814,"16.0":0.01831,"16.1":0.06712,"16.2":0.06102,"16.3":0.28069,"16.4":0.18306,"16.5":0.01831},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.0019,"5.0-5.1":0.0038,"6.0-6.1":0.0038,"7.0-7.1":0.0133,"8.1-8.4":0.0038,"9.0-9.2":0.0114,"9.3":0.05892,"10.0-10.2":0.0019,"10.3":0.04371,"11.0-11.2":0.04181,"11.3-11.4":0.01901,"12.0-12.1":0.0095,"12.2-12.5":0.27179,"13.0-13.1":0.0114,"13.2":0.01521,"13.3":0.03421,"13.4-13.7":0.11784,"14.0-14.4":0.19196,"14.5-14.8":0.37063,"15.0-15.1":0.11594,"15.2-15.3":0.14445,"15.4":0.14445,"15.5":0.26419,"15.6":0.67283,"16.0":1.96146,"16.1":2.19144,"16.2":1.39697,"16.3":5.34651,"16.4":4.03316,"16.5":0.15395},P:{"4":0.07258,"20":1.18197,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.06221,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.0311,"12.0":0,"13.0":0.01037,"14.0":0.01037,"15.0":0.01037,"16.0":0.02074,"17.0":0.02074,"18.0":0.0311,"19.0":0.07258},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0.01035,"4.1":0.01242,"4.2-4.3":0.02484,"4.4":0,"4.4.3-4.4.4":0.089},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.01253,"9":0.00627,"10":0.00627,"11":0.20681,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.15592},Q:{"13.1":0},O:{"0":0.1988},H:{"0":2.52791},L:{"0":39.47713}};
diff --git a/node_modules/caniuse-lite/data/regions/UG.js b/node_modules/caniuse-lite/data/regions/UG.js
new file mode 100644
index 0000000..93cc525
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/UG.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0.00271,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00271,"48":0,"49":0,"50":0,"51":0,"52":0.00271,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.00271,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00271,"73":0,"74":0,"75":0,"76":0.00271,"77":0,"78":0.00271,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00271,"89":0,"90":0,"91":0.00271,"92":0,"93":0,"94":0.00271,"95":0,"96":0,"97":0,"98":0,"99":0.00271,"100":0,"101":0,"102":0.01085,"103":0,"104":0.00814,"105":0.00271,"106":0.00271,"107":0.0217,"108":0.00271,"109":0.00542,"110":0.01085,"111":0.27391,"112":0.24679,"113":0.03526,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00271,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00814,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.00271,"65":0.00271,"66":0,"67":0,"68":0,"69":0,"70":0.00271,"71":0,"72":0.00271,"73":0,"74":0.00814,"75":0.00271,"76":0.00271,"77":0.00271,"78":0.00271,"79":0.00542,"80":0.00271,"81":0.00542,"83":0.00271,"84":0,"85":0,"86":0.00271,"87":0.00542,"88":0.00542,"89":0.00271,"90":0,"91":0.00271,"92":0.00814,"93":0.00271,"94":0.00542,"95":0.00814,"96":0.00271,"97":0.00271,"98":0.00271,"99":0.00271,"100":0.00271,"101":0,"102":0.01085,"103":0.0217,"104":0.00814,"105":0.00542,"106":0.00542,"107":0.02441,"108":0.0217,"109":0.32815,"110":0.0461,"111":1.16616,"112":1.34786,"113":0.00271,"114":0,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0.00542,"25":0,"26":0,"27":0,"28":0.00271,"29":0,"30":0.00271,"31":0.00271,"32":0,"33":0.00542,"34":0,"35":0,"36":0,"37":0.01898,"38":0.00271,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00542,"48":0,"49":0,"50":0,"51":0.00271,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0.01627,"58":0.01356,"60":0.03526,"62":0,"63":0.09492,"64":0.06238,"65":0.01898,"66":0.09492,"67":0.14645,"68":0.1573,"69":0.33086,"70":0,"71":0,"72":0.00271,"73":0.00542,"74":0.01085,"75":0.00271,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.01356,"96":0.01627,"97":0.11119,"98":0.00542,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.01085},B:{"12":0.00542,"13":0.00271,"14":0.00271,"15":0,"16":0.00271,"17":0,"18":0.01085,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00271,"90":0.00271,"91":0,"92":0.00542,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0.00271,"108":0.00814,"109":0.01356,"110":0.01356,"111":0.13018,"112":0.26035,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00271,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.00542,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00271,"12.1":0.00271,"13.1":0.01085,"14.1":0.00542,"15.1":0,"15.2-15.3":0.00271,"15.4":0,"15.5":0.00271,"15.6":0.01356,"16.0":0,"16.1":0.00271,"16.2":0.00271,"16.3":0.01898,"16.4":0.01627,"16.5":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00174,"5.0-5.1":0.00116,"6.0-6.1":0.00116,"7.0-7.1":0.00407,"8.1-8.4":0.00058,"9.0-9.2":0,"9.3":0.0279,"10.0-10.2":0,"10.3":0.05231,"11.0-11.2":0.00232,"11.3-11.4":0.00291,"12.0-12.1":0.00756,"12.2-12.5":0.54398,"13.0-13.1":0.00756,"13.2":0.00465,"13.3":0.02092,"13.4-13.7":0.03255,"14.0-14.4":0.2162,"14.5-14.8":0.3057,"15.0-15.1":0.14355,"15.2-15.3":0.16331,"15.4":0.17377,"15.5":0.19411,"15.6":0.28478,"16.0":0.36847,"16.1":0.47889,"16.2":0.35917,"16.3":1.20827,"16.4":0.61953,"16.5":0.02034},P:{"4":0.09334,"20":0.53931,"5.0-5.4":0.01037,"6.2-6.4":0,"7.2-7.4":0.13483,"8.2":0,"9.2":0.12446,"10.1":0,"11.1-11.2":0.03111,"12.0":0.04149,"13.0":0.01037,"14.0":0.04149,"15.0":0.04149,"16.0":0.04149,"17.0":0.03111,"18.0":0.09334,"19.0":0.11409},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00558,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.06696},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01356,"5.5":0},S:{"2.5":0.31338,_:"3.0-3.1"},J:{"7":0,"10":0.00729},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.23322},Q:{"13.1":0},O:{"0":0.68507},H:{"0":16.58714},L:{"0":64.28192}};
diff --git a/node_modules/caniuse-lite/data/regions/US.js b/node_modules/caniuse-lite/data/regions/US.js
new file mode 100644
index 0000000..556f150
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/US.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0.00627,"4":0.00627,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.0188,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00627,"39":0,"40":0.01254,"41":0,"42":0,"43":0.00627,"44":0.00627,"45":0,"46":0,"47":0,"48":0.00627,"49":0,"50":0,"51":0,"52":0.02507,"53":0,"54":0.01254,"55":0,"56":0.00627,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00627,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.01254,"73":0,"74":0,"75":0,"76":0.00627,"77":0,"78":0.04388,"79":0,"80":0,"81":0,"82":0,"83":0.00627,"84":0,"85":0,"86":0,"87":0,"88":0.00627,"89":0,"90":0,"91":0.00627,"92":0,"93":0.00627,"94":0.02507,"95":0,"96":0,"97":0,"98":0.00627,"99":0.00627,"100":0.00627,"101":0.00627,"102":0.08148,"103":0.00627,"104":0.00627,"105":0.01254,"106":0.00627,"107":0.00627,"108":0.01254,"109":0.02507,"110":0.04388,"111":0.8023,"112":0.71455,"113":0.00627,"114":0,"3.5":0.00627,"3.6":0.00627},D:{"4":0.00627,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0.00627,"36":0.00627,"37":0.00627,"38":0.00627,"39":0.00627,"40":0.01254,"41":0.00627,"42":0.00627,"43":0.01254,"44":0.0188,"45":0.0188,"46":0,"47":0.00627,"48":0.02507,"49":0.0188,"50":0,"51":0,"52":0.00627,"53":0,"54":0,"55":0,"56":0.14416,"57":0,"58":0,"59":0,"60":0.00627,"61":0,"62":0.00627,"63":0,"64":0,"65":0.01254,"66":0.02507,"67":0.00627,"68":0.0188,"69":0.0188,"70":0.01254,"71":0.03761,"72":0.0188,"73":0.00627,"74":0.02507,"75":0.02507,"76":0.09402,"77":0.0188,"78":0.0188,"79":0.30086,"80":0.05641,"81":0.06268,"83":0.26952,"84":0.04388,"85":0.06268,"86":0.06268,"87":0.11909,"88":0.03761,"89":0.04388,"90":0.04388,"91":0.07522,"92":0.03761,"93":0.25072,"94":0.03761,"95":0.0188,"96":0.03134,"97":0.06268,"98":0.03134,"99":0.05641,"100":0.04388,"101":0.04388,"102":0.08148,"103":0.41996,"104":0.04388,"105":0.10656,"106":0.05641,"107":0.08148,"108":0.3134,"109":0.7835,"110":0.63307,"111":7.33356,"112":7.13298,"113":0.03134,"114":0.02507,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00627,"64":0,"65":0,"66":0,"67":0,"68":0.00627,"69":0.00627,"70":0,"71":0,"72":0,"73":0,"74":0.00627,"75":0.00627,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0.00627,"95":0.03134,"96":0.28833,"97":0.68948,"98":0.03134,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00627,"13":0,"14":0,"15":0.00627,"16":0,"17":0,"18":0.00627,"79":0,"80":0.00627,"81":0.00627,"83":0.00627,"84":0.00627,"85":0.00627,"86":0.00627,"87":0.01254,"88":0,"89":0.00627,"90":0.00627,"91":0,"92":0.00627,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00627,"99":0.00627,"100":0,"101":0.00627,"102":0.01254,"103":0.00627,"104":0,"105":0.00627,"106":0.00627,"107":0.00627,"108":0.01254,"109":0.07522,"110":0.07522,"111":1.60461,"112":3.39726,"113":0},E:{"4":0.00627,"5":0.00627,"6":0,"7":0,"8":0.00627,"9":0.00627,"10":0,"11":0.00627,"12":0.00627,"13":0.03761,"14":0.18804,"15":0.04388,_:"0","3.1":0,"3.2":0,"5.1":0.00627,"6.1":0,"7.1":0,"9.1":0.12536,"10.1":0,"11.1":0.00627,"12.1":0.07522,"13.1":0.32594,"14.1":0.54532,"15.1":0.08148,"15.2-15.3":0.07522,"15.4":0.18804,"15.5":0.33847,"15.6":1.40403,"16.0":0.1567,"16.1":0.47637,"16.2":0.69575,"16.3":2.53854,"16.4":1.05302,"16.5":0.0188},G:{"8":0.01079,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.01079,"5.0-5.1":0.0036,"6.0-6.1":0.01798,"7.0-7.1":0.02876,"8.1-8.4":0.10426,"9.0-9.2":0.03236,"9.3":0.06112,"10.0-10.2":0.00719,"10.3":0.0719,"11.0-11.2":0.01798,"11.3-11.4":0.03236,"12.0-12.1":0.01798,"12.2-12.5":0.33075,"13.0-13.1":0.01079,"13.2":0.08269,"13.3":0.03595,"13.4-13.7":0.10426,"14.0-14.4":0.31278,"14.5-14.8":0.62196,"15.0-15.1":0.20133,"15.2-15.3":0.27323,"15.4":0.26964,"15.5":0.51411,"15.6":1.89824,"16.0":1.89105,"16.1":4.78873,"16.2":2.78264,"16.3":14.26553,"16.4":5.9212,"16.5":0.14021},P:{"4":0.10444,"20":1.07571,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.01044,"12.0":0,"13.0":0.01044,"14.0":0.01044,"15.0":0,"16.0":0.02089,"17.0":0.02089,"18.0":0.03133,"19.0":0.06266},I:{"0":0,"3":0.03105,"4":0.05822,"2.1":0.01553,"2.2":0.04658,"2.3":0.01553,"4.1":0.02329,"4.2-4.3":0.13973,"4.4":0,"4.4.3-4.4.4":0.20572},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.03496,"9":0.02097,"10":0.00699,"11":0.11885,"5.5":0},S:{"2.5":0.00373,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0.02612},R:{_:"0"},M:{"0":0.35827},Q:{"13.1":0.03359},O:{"0":0.07837},H:{"0":0.19079},L:{"0":24.16838}};
diff --git a/node_modules/caniuse-lite/data/regions/UY.js b/node_modules/caniuse-lite/data/regions/UY.js
new file mode 100644
index 0000000..6905149
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/UY.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.01942,"53":0,"54":0,"55":0,"56":0,"57":0.00486,"58":0,"59":0,"60":0,"61":0,"62":0.00486,"63":0,"64":0,"65":0,"66":0.00486,"67":0,"68":0.00486,"69":0,"70":0,"71":0,"72":0,"73":0.02428,"74":0,"75":0,"76":0,"77":0,"78":0.00486,"79":0,"80":0,"81":0.00486,"82":0,"83":0.01457,"84":0,"85":0,"86":0.00486,"87":0,"88":0.00486,"89":0,"90":0,"91":0.00486,"92":0,"93":0,"94":0,"95":0.00486,"96":0,"97":0,"98":0,"99":0,"100":0.00971,"101":0,"102":0.0437,"103":0,"104":0.03884,"105":0,"106":0.00486,"107":0,"108":0.00486,"109":0.01457,"110":0.02428,"111":0.43695,"112":0.48065,"113":0.03884,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00486,"37":0,"38":0.20391,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00486,"48":0.00971,"49":0.0437,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.00486,"56":0.00486,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0.00971,"63":0.00486,"64":0,"65":0.00971,"66":0,"67":0,"68":0.00486,"69":0.00486,"70":0.00486,"71":0.00971,"72":0,"73":0.00971,"74":0.00971,"75":0.00971,"76":0.00971,"77":0.00486,"78":0.00486,"79":0.02428,"80":0.03399,"81":0.00971,"83":0.01457,"84":0.00971,"85":0.00971,"86":0.19906,"87":0.01457,"88":0.02428,"89":0.00486,"90":0.00971,"91":0.02428,"92":0.00486,"93":0.05341,"94":0.01457,"95":0.00971,"96":0.02913,"97":0.00971,"98":0.00971,"99":0.01457,"100":0.01942,"101":0.01942,"102":0.02428,"103":0.11652,"104":0.01457,"105":0.05341,"106":0.05341,"107":0.07768,"108":0.07768,"109":1.58273,"110":0.14565,"111":5.50072,"112":7.12229,"113":0.00486,"114":0.00486,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00486,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00486,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.00486,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0.00486,"95":0.03399,"96":0.47094,"97":0.99528,"98":0.02913,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0.00486,"14":0.00486,"15":0,"16":0,"17":0,"18":0.00486,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00486,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0.00486,"108":0.00486,"109":0.02428,"110":0.01942,"111":0.39811,"112":0.97586,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00971,"15":0.00486,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00486,"13.1":0.02428,"14.1":0.01942,"15.1":0.02428,"15.2-15.3":0.00486,"15.4":0.00971,"15.5":0.03884,"15.6":0.06312,"16.0":0.00486,"16.1":0.03399,"16.2":0.02428,"16.3":0.1408,"16.4":0.08254,"16.5":0},G:{"8":0,"3.2":0.00139,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.032,"6.0-6.1":0,"7.0-7.1":0.02783,"8.1-8.4":0.00278,"9.0-9.2":0,"9.3":0.0334,"10.0-10.2":0,"10.3":0.01948,"11.0-11.2":0.01252,"11.3-11.4":0.00278,"12.0-12.1":0.01809,"12.2-12.5":0.3103,"13.0-13.1":0.00139,"13.2":0.00139,"13.3":0.00835,"13.4-13.7":0.04731,"14.0-14.4":0.10575,"14.5-14.8":0.37153,"15.0-15.1":0.0487,"15.2-15.3":0.05844,"15.4":0.11549,"15.5":0.18924,"15.6":0.57608,"16.0":0.82933,"16.1":1.34279,"16.2":0.87664,"16.3":5.22924,"16.4":2.37111,"16.5":0.03896},P:{"4":0.34907,"20":1.34494,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.20533,"8.2":0,"9.2":0.01027,"10.1":0,"11.1-11.2":0.02053,"12.0":0,"13.0":0.04107,"14.0":0.01027,"15.0":0.01027,"16.0":0.07187,"17.0":0.0616,"18.0":0.04107,"19.0":0.10267},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01758,"4.2-4.3":0.05275,"4.4":0,"4.4.3-4.4.4":0.16705},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00971,"9":0,"10":0,"11":0.03399,"5.5":0},S:{"2.5":0.00515,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.37044},Q:{"13.1":0},O:{"0":0.01544},H:{"0":0.13152},L:{"0":62.2938}};
diff --git a/node_modules/caniuse-lite/data/regions/UZ.js b/node_modules/caniuse-lite/data/regions/UZ.js
new file mode 100644
index 0000000..1e00b2d
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/UZ.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00706,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00353,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0.00353,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.01059,"103":0,"104":0,"105":0,"106":0,"107":0.00353,"108":0.00353,"109":0.00353,"110":0.00353,"111":0.13057,"112":0.08823,"113":0.00353,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00353,"48":0,"49":0.01412,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00353,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00706,"67":0,"68":0.00353,"69":0.00353,"70":0,"71":0.00353,"72":0.00353,"73":0,"74":0,"75":0.00706,"76":0,"77":0,"78":0,"79":0.01412,"80":0.00706,"81":0.00706,"83":0.03176,"84":0.00353,"85":0.02117,"86":0.01412,"87":0.00706,"88":0,"89":0.01059,"90":0.00353,"91":0.00353,"92":0.00353,"93":0.00706,"94":0.45524,"95":0,"96":0.00706,"97":0.00706,"98":0.01412,"99":0.00706,"100":0.02117,"101":0.00706,"102":0.02823,"103":0.04941,"104":0.00706,"105":0.00706,"106":0.04588,"107":0.02117,"108":0.03529,"109":1.12222,"110":0.04588,"111":2.41384,"112":2.80556,"113":0.00353,"114":0.00353,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00353,"50":0,"51":0,"52":0,"53":0.00706,"54":0,"55":0,"56":0,"57":0.00353,"58":0,"60":0,"62":0.00706,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.00353,"70":0,"71":0,"72":0,"73":0,"74":0.01059,"75":0.00353,"76":0,"77":0,"78":0,"79":0.01412,"80":0,"81":0,"82":0,"83":0,"84":0.00353,"85":0,"86":0,"87":0,"88":0,"89":0.00353,"90":0.00353,"91":0,"92":0,"93":0.01412,"94":0.02117,"95":0.03176,"96":0.01412,"97":0.04235,"98":0.00353,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0.00353,"18":0.01765,"79":0,"80":0,"81":0,"83":0,"84":0.00353,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00706,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00353,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0.00353,"108":0.01765,"109":0.01412,"110":0.01765,"111":0.18351,"112":0.40936,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00706,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.05999,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.02117,"14.1":0.00706,"15.1":0.00353,"15.2-15.3":0.00353,"15.4":0.00353,"15.5":0.00353,"15.6":0.03176,"16.0":0.00353,"16.1":0.01412,"16.2":0.01765,"16.3":0.05646,"16.4":0.03882,"16.5":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00213,"5.0-5.1":0.00213,"6.0-6.1":0,"7.0-7.1":0.01494,"8.1-8.4":0.00213,"9.0-9.2":0.0032,"9.3":0.03842,"10.0-10.2":0,"10.3":0.03202,"11.0-11.2":0.02135,"11.3-11.4":0.00961,"12.0-12.1":0.00534,"12.2-12.5":0.43972,"13.0-13.1":0.00427,"13.2":0.0032,"13.3":0.01921,"13.4-13.7":0.04589,"14.0-14.4":0.12274,"14.5-14.8":0.20278,"15.0-15.1":0.07257,"15.2-15.3":0.10353,"15.4":0.08111,"15.5":0.21345,"15.6":0.29777,"16.0":0.86876,"16.1":1.06514,"16.2":0.67238,"16.3":2.58387,"16.4":2.52944,"16.5":0.03949},P:{"4":0.51314,"20":2.48522,"5.0-5.4":0.02012,"6.2-6.4":0.06037,"7.2-7.4":0.42259,"8.2":0.01006,"9.2":0.06037,"10.1":0.01006,"11.1-11.2":0.10062,"12.0":0.02012,"13.0":0.12074,"14.0":0.08049,"15.0":0.07043,"16.0":0.19117,"17.0":0.16099,"18.0":0.17105,"19.0":0.44271},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0.00282,"4.1":0.00847,"4.2-4.3":0.01976,"4.4":0,"4.4.3-4.4.4":0.11012},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.01059,"9":0.00353,"10":0.00353,"11":0.03529,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0.00647},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.05824},Q:{"13.1":0},O:{"0":3.60435},H:{"0":0.37371},L:{"0":64.94784}};
diff --git a/node_modules/caniuse-lite/data/regions/VA.js b/node_modules/caniuse-lite/data/regions/VA.js
new file mode 100644
index 0000000..37a4447
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/VA.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0.07769,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00971,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00971,"69":0.00971,"70":0.01942,"71":0,"72":0,"73":0.00971,"74":0,"75":0,"76":0,"77":0,"78":0.37873,"79":0.00971,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.16509,"93":0,"94":0,"95":0,"96":0.05827,"97":0,"98":0,"99":0,"100":0.01942,"101":0,"102":0.19422,"103":0,"104":0,"105":0,"106":0,"107":0.00971,"108":0.00971,"109":0.01942,"110":0,"111":3.65134,"112":5.42845,"113":0,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":1.56347,"63":0,"64":0,"65":0,"66":0,"67":0.12624,"68":0.00971,"69":0.00971,"70":0.00971,"71":0.00971,"72":0.00971,"73":0.01942,"74":0.00971,"75":0.00971,"76":0,"77":0.01942,"78":0.01942,"79":0,"80":0.03884,"81":0.00971,"83":0,"84":0.00971,"85":0.00971,"86":0.01942,"87":0.02913,"88":0.00971,"89":0.00971,"90":0.00971,"91":0.00971,"92":0,"93":0.64093,"94":0,"95":0.47584,"96":0,"97":0.04856,"98":0.02913,"99":0,"100":0,"101":0,"102":0,"103":0.01942,"104":0,"105":0.46613,"106":0,"107":0.00971,"108":0.02913,"109":1.95191,"110":0.0874,"111":21.68466,"112":34.49347,"113":0.01942,"114":0,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.00971,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0.03884,"98":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0.03884,"18":1.21388,"79":0,"80":0,"81":0.00971,"83":0.00971,"84":0.00971,"85":0,"86":0,"87":0,"88":0,"89":0.00971,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0.01942,"110":0,"111":3.40856,"112":11.58522,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0.00971,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.10682,"10.1":0,"11.1":0.06798,"12.1":0.00971,"13.1":0.27191,"14.1":0.33989,"15.1":0.00971,"15.2-15.3":0,"15.4":0,"15.5":0.00971,"15.6":0.30104,"16.0":0.00971,"16.1":0.37873,"16.2":0.22335,"16.3":2.17526,"16.4":0.68948,"16.5":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0.01104,"9.3":0.01104,"10.0-10.2":0.01104,"10.3":0,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":0.65947,"13.0-13.1":0.01104,"13.2":0,"13.3":0,"13.4-13.7":0.01104,"14.0-14.4":0,"14.5-14.8":0.07812,"15.0-15.1":0.01104,"15.2-15.3":0,"15.4":0.01104,"15.5":0,"15.6":0.01104,"16.0":0.02236,"16.1":0.1452,"16.2":0.07812,"16.3":0.87201,"16.4":0.52531,"16.5":0},P:{"4":0,"20":0.36414,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0,"12.0":0,"13.0":0,"14.0":0,"15.0":0,"16.0":0,"17.0":0,"18.0":0.07081,"19.0":0},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.02913,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.03728},Q:{"13.1":0},O:{"0":0},H:{"0":0},L:{"0":3.5064}};
diff --git a/node_modules/caniuse-lite/data/regions/VC.js b/node_modules/caniuse-lite/data/regions/VC.js
new file mode 100644
index 0000000..d9c610b
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/VC.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00476,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.00476,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00476,"101":0,"102":0,"103":0,"104":0.00476,"105":0,"106":0.00476,"107":0,"108":0.02856,"109":0.00476,"110":0.00952,"111":0.51408,"112":0.32844,"113":0.05236,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0.00476,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00476,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00476,"64":0,"65":0.0238,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0.00476,"76":0.01428,"77":0,"78":0,"79":0.01428,"80":0,"81":0.01428,"83":0.06188,"84":0,"85":0.00476,"86":0,"87":0.00952,"88":0.01428,"89":0,"90":0,"91":0.00476,"92":0,"93":0.02856,"94":0.00476,"95":0.04284,"96":0,"97":0,"98":0,"99":0.01904,"100":0.00476,"101":0.00476,"102":0.00476,"103":0.15708,"104":0.0238,"105":0.00952,"106":0.00952,"107":0.07616,"108":0.01904,"109":0.55216,"110":0.1428,"111":3.89368,"112":4.31732,"113":0,"114":0.03332,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.01428,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0.00952,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.00476,"96":0.03332,"97":0.11424,"98":0.00476,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00952,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0.00476,"109":0.0238,"110":0.11424,"111":0.67116,"112":2.1896,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.01904,"15":0.05712,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.08092,"14.1":0.0476,"15.1":0.00952,"15.2-15.3":0.00952,"15.4":0.01428,"15.5":0.0238,"15.6":0.11424,"16.0":0.00476,"16.1":0.0952,"16.2":0.0476,"16.3":0.32368,"16.4":0.25704,"16.5":0.00476},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.04017,"6.0-6.1":0,"7.0-7.1":0.00349,"8.1-8.4":0.06112,"9.0-9.2":0,"9.3":0.06636,"10.0-10.2":0.00175,"10.3":0.04366,"11.0-11.2":0.02969,"11.3-11.4":0.00873,"12.0-12.1":0,"12.2-12.5":0.44183,"13.0-13.1":0.00175,"13.2":0,"13.3":0,"13.4-13.7":0.01222,"14.0-14.4":0.05064,"14.5-14.8":0.12225,"15.0-15.1":0.14146,"15.2-15.3":0.04191,"15.4":0.08732,"15.5":1.73241,"15.6":0.41738,"16.0":0.90812,"16.1":1.64334,"16.2":0.49597,"16.3":6.43715,"16.4":3.28144,"16.5":0.15892},P:{"4":0.1547,"20":3.10502,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.12155,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.01105,"12.0":0,"13.0":0.0442,"14.0":0.01105,"15.0":0,"16.0":0.03315,"17.0":0.03315,"18.0":0.0221,"19.0":0.12155},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.27473,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.45788},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00476,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.20436},Q:{"13.1":0},O:{"0":0.1048},H:{"0":0.21332},L:{"0":61.90864}};
diff --git a/node_modules/caniuse-lite/data/regions/VE.js b/node_modules/caniuse-lite/data/regions/VE.js
new file mode 100644
index 0000000..8853b1e
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/VE.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0.0572,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.0052,"46":0,"47":0.0052,"48":0,"49":0.0052,"50":0,"51":0,"52":0.1924,"53":0,"54":0.0052,"55":0,"56":0,"57":0.0052,"58":0,"59":0,"60":0.0052,"61":0.026,"62":0,"63":0,"64":0,"65":0.0104,"66":0.0052,"67":0.0052,"68":0.0156,"69":0.0052,"70":0,"71":0,"72":0.0052,"73":0,"74":0,"75":0.0052,"76":0,"77":0,"78":0.0104,"79":0,"80":0,"81":0.0052,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.0104,"89":0.0052,"90":0,"91":0.0104,"92":0,"93":0,"94":0,"95":0.0052,"96":0,"97":0,"98":0,"99":0.0156,"100":0.0052,"101":0,"102":0.026,"103":0.0104,"104":0.0104,"105":0.0052,"106":0.0052,"107":0.0104,"108":0.0052,"109":0.026,"110":0.0988,"111":0.6188,"112":0.6916,"113":0.0052,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.0052,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.0052,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.0052,"47":0.0104,"48":0.0052,"49":0.2236,"50":0,"51":0,"52":0,"53":0.0052,"54":0,"55":0,"56":0.0104,"57":0,"58":0.0052,"59":0,"60":0,"61":0,"62":0,"63":0.0052,"64":0.0052,"65":0.0052,"66":0.0052,"67":0.0052,"68":0.0104,"69":0.0052,"70":0.0052,"71":0.0052,"72":0.0052,"73":0.0156,"74":0.0104,"75":0.0104,"76":0.0156,"77":0.0104,"78":0.0104,"79":0.0312,"80":0.0104,"81":0.0208,"83":0.0208,"84":0.0104,"85":0.0208,"86":0.0156,"87":0.0312,"88":0.0208,"89":0.0052,"90":0.026,"91":0.0468,"92":0.0156,"93":0.0208,"94":0.0104,"95":0.0156,"96":0.026,"97":0.0416,"98":0.0364,"99":0.0312,"100":0.0572,"101":0.0364,"102":0.0416,"103":0.0832,"104":0.052,"105":0.0572,"106":0.0624,"107":0.0728,"108":0.1976,"109":5.0544,"110":0.1456,"111":3.3592,"112":4.3004,"113":0.0104,"114":0,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.0052,"29":0.0052,"30":0.0104,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0.0052,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.0052,"64":0,"65":0,"66":0,"67":0.0052,"68":0.0208,"69":0.0624,"70":0,"71":0,"72":0,"73":0,"74":0.0052,"75":0,"76":0,"77":0,"78":0,"79":0.0104,"80":0,"81":0,"82":0.0052,"83":0,"84":0.0052,"85":0.0104,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0.0052,"95":0.2444,"96":0.182,"97":0.6032,"98":0.0156,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.0052,"13":0.0052,"14":0,"15":0,"16":0,"17":0,"18":0.0052,"79":0,"80":0,"81":0,"83":0.0052,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.0104,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.0052,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0.0052,"109":0.0832,"110":0.0416,"111":0.2704,"112":0.7176,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.0052,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.0156,"14.1":0.0208,"15.1":0,"15.2-15.3":0,"15.4":0.0052,"15.5":0.0052,"15.6":0.052,"16.0":0.0052,"16.1":0.0208,"16.2":0.0208,"16.3":0.0832,"16.4":0.026,"16.5":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00368,"6.0-6.1":0.00368,"7.0-7.1":0.02157,"8.1-8.4":0.01841,"9.0-9.2":0.0021,"9.3":0.06839,"10.0-10.2":0.00105,"10.3":0.05681,"11.0-11.2":0.01157,"11.3-11.4":0.01368,"12.0-12.1":0.00368,"12.2-12.5":0.24146,"13.0-13.1":0.00842,"13.2":0.0021,"13.3":0.00631,"13.4-13.7":0.03104,"14.0-14.4":0.0626,"14.5-14.8":0.13414,"15.0-15.1":0.03472,"15.2-15.3":0.0505,"15.4":0.05734,"15.5":0.0747,"15.6":0.19937,"16.0":0.35087,"16.1":0.49291,"16.2":0.29353,"16.3":1.59761,"16.4":0.89375,"16.5":0.0484},P:{"4":0.13678,"20":0.76808,"5.0-5.4":0.01052,"6.2-6.4":0,"7.2-7.4":0.10522,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.01052,"12.0":0,"13.0":0.03156,"14.0":0.01052,"15.0":0.01052,"16.0":0.03156,"17.0":0.08417,"18.0":0.02104,"19.0":0.09469},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0.01239,"4.1":0.02478,"4.2-4.3":0.04212,"4.4":0,"4.4.3-4.4.4":0.67151},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00594,"9":0,"10":0,"11":0.03566,"5.5":0},S:{"2.5":0.0048,_:"3.0-3.1"},J:{"7":0,"10":0.0048},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.1392},Q:{"13.1":0},O:{"0":0.048},H:{"0":0.49988},L:{"0":70.782}};
diff --git a/node_modules/caniuse-lite/data/regions/VG.js b/node_modules/caniuse-lite/data/regions/VG.js
new file mode 100644
index 0000000..cca57e7
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/VG.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00423,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0.00846,"104":0,"105":0,"106":0.00846,"107":0,"108":0.02539,"109":0.00423,"110":0.01269,"111":0.34694,"112":0.24117,"113":0.00423,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0.00423,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0.00423,"75":0.06347,"76":0.00846,"77":0.00423,"78":0,"79":0.02116,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0.00423,"88":0.00423,"89":0,"90":0,"91":0,"92":0.02962,"93":0.00423,"94":0,"95":0,"96":0.00423,"97":0,"98":0,"99":0,"100":0.00423,"101":0.00423,"102":0.00423,"103":0.055,"104":0,"105":0,"106":0,"107":0.00423,"108":0.05077,"109":0.23694,"110":0.28771,"111":3.13517,"112":4.26062,"113":0,"114":0,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.06347,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00846,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.00846,"96":0.01269,"97":0.16078,"98":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00846,"101":0,"102":0,"103":0,"104":0,"105":0.00423,"106":0,"107":0,"108":0.00423,"109":0.00846,"110":0.02962,"111":0.38502,"112":1.82356,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00423,"14":0.01692,"15":0.02116,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00423,"12.1":0.00423,"13.1":0.11001,"14.1":0.04654,"15.1":0.01692,"15.2-15.3":0,"15.4":0.00423,"15.5":0.03385,"15.6":0.30463,"16.0":0.02962,"16.1":0.33002,"16.2":0.13962,"16.3":2.09435,"16.4":0.41041,"16.5":0.01269},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01797,"10.0-10.2":0,"10.3":0.01078,"11.0-11.2":0.01437,"11.3-11.4":0.28387,"12.0-12.1":0,"12.2-12.5":0.50665,"13.0-13.1":0,"13.2":0.00719,"13.3":0,"13.4-13.7":0.02156,"14.0-14.4":0.11858,"14.5-14.8":0.57133,"15.0-15.1":0.30902,"15.2-15.3":0.06827,"15.4":0.17607,"15.5":0.48509,"15.6":1.20733,"16.0":2.18828,"16.1":4.38016,"16.2":2.89256,"16.3":12.33919,"16.4":7.07509,"16.5":1.39058},P:{"4":0.5444,"20":4.37614,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.05235,"8.2":0,"9.2":0.01047,"10.1":0,"11.1-11.2":0,"12.0":0,"13.0":0.02094,"14.0":0.06282,"15.0":0,"16.0":0,"17.0":0.02094,"18.0":0.04188,"19.0":0.12563},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.37233},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0.00423,"11":0,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.28268},Q:{"13.1":0},O:{"0":0.13269},H:{"0":0.16931},L:{"0":42.32881}};
diff --git a/node_modules/caniuse-lite/data/regions/VI.js b/node_modules/caniuse-lite/data/regions/VI.js
new file mode 100644
index 0000000..8894c64
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/VI.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00704,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0.96434,"111":2.04131,"112":1.26702,"113":0,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00704,"69":0,"70":0.04223,"71":0,"72":0.00704,"73":0,"74":0.00704,"75":0.00704,"76":0.04223,"77":0.00704,"78":0,"79":0.52793,"80":0,"81":0.00704,"83":0.00704,"84":0,"85":0,"86":0.04223,"87":0.04927,"88":0.00704,"89":0.01408,"90":0.02816,"91":0,"92":0,"93":0.59128,"94":0,"95":0.11262,"96":0,"97":0,"98":0.00704,"99":0,"100":0,"101":0.01408,"102":0.05631,"103":0.08447,"104":0.01408,"105":0.21117,"106":0,"107":0.04927,"108":0.19709,"109":0.35899,"110":0.22525,"111":11.14274,"112":9.8898,"113":0.01408,"114":0,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.02816,"94":0,"95":0,"96":0.07743,"97":0.1267,"98":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0.00704,"105":0,"106":0.0352,"107":0,"108":0.00704,"109":0.19005,"110":0.10559,"111":1.87237,"112":5.30037,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.01408,"14":1.35853,"15":1.03473,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.04223,"10.1":0,"11.1":0,"12.1":0.00704,"13.1":0.80949,"14.1":0.26044,"15.1":0.06335,"15.2-15.3":0.02112,"15.4":0.04223,"15.5":0.24637,"15.6":1.01362,"16.0":0.07743,"16.1":0.1267,"16.2":0.30972,"16.3":2.25952,"16.4":2.19617,"16.5":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0.0352,"9.3":0.04801,"10.0-10.2":0,"10.3":0.0224,"11.0-11.2":0.032,"11.3-11.4":0.0096,"12.0-12.1":0,"12.2-12.5":0.9153,"13.0-13.1":0,"13.2":0.032,"13.3":0,"13.4-13.7":0.06401,"14.0-14.4":0.17922,"14.5-14.8":0.57926,"15.0-15.1":0.0416,"15.2-15.3":0.09281,"15.4":0.13121,"15.5":0.41925,"15.6":1.49136,"16.0":1.57457,"16.1":4.49649,"16.2":2.40346,"16.3":12.99981,"16.4":5.511,"16.5":0.12481},P:{"4":0,"20":1.57334,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.01049,"12.0":0,"13.0":0,"14.0":0,"15.0":0,"16.0":0.04196,"17.0":0.19929,"18.0":0.02098,"19.0":0.01049},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01408,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.15989},Q:{"13.1":0},O:{"0":0.01184},H:{"0":0.00841},L:{"0":18.69537}};
diff --git a/node_modules/caniuse-lite/data/regions/VN.js b/node_modules/caniuse-lite/data/regions/VN.js
new file mode 100644
index 0000000..f3f98c3
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/VN.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0,"111":0.02179,"112":0.01981,"113":0,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00396,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00198,"50":0,"51":0,"52":0,"53":0.00198,"54":0,"55":0,"56":0,"57":0.00396,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00198,"67":0,"68":0,"69":0,"70":0.00198,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.01585,"80":0.00198,"81":0.00198,"83":0.00198,"84":0.00198,"85":0.00396,"86":0.00198,"87":0.00396,"88":0,"89":0.00198,"90":0,"91":0,"92":0.00198,"93":0,"94":0.00198,"95":0.00198,"96":0.00198,"97":0.00198,"98":0,"99":0.00198,"100":0.00396,"101":0.00198,"102":0.00198,"103":0.00396,"104":0.01189,"105":0.00198,"106":0.00396,"107":0.00396,"108":0.00792,"109":0.16442,"110":0.00991,"111":0.3962,"112":0.51506,"113":0,"114":0,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00198,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00198,"37":0.00991,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00396,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0.00198,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00198,"69":0.00594,"70":0,"71":0,"72":0,"73":0,"74":0.00198,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.00198,"96":0.00396,"97":0.01387,"98":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0.00198,"110":0.00198,"111":0.0317,"112":0.06141,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00198,"14":0.00594,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00396,"14.1":0.01189,"15.1":0.00198,"15.2-15.3":0.00198,"15.4":0.00396,"15.5":0.00594,"15.6":0.02575,"16.0":0.00198,"16.1":0.00594,"16.2":0.00594,"16.3":0.02773,"16.4":0.00991,"16.5":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.01178,"8.1-8.4":0.00883,"9.0-9.2":0.00883,"9.3":0.07657,"10.0-10.2":0.02356,"10.3":0.18258,"11.0-11.2":0.05595,"11.3-11.4":0.08246,"12.0-12.1":0.08246,"12.2-12.5":1.82875,"13.0-13.1":0.04123,"13.2":0.02061,"13.3":0.1443,"13.4-13.7":0.48884,"14.0-14.4":1.14555,"14.5-14.8":2.36471,"15.0-15.1":0.4859,"15.2-15.3":0.66554,"15.4":0.68615,"15.5":1.11904,"15.6":2.38533,"16.0":1.16321,"16.1":2.64153,"16.2":1.54605,"16.3":5.84847,"16.4":1.88176,"16.5":0.04417},P:{"4":0.33482,"20":2.50608,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.08117,"8.2":0,"9.2":0.03044,"10.1":0.02029,"11.1-11.2":0.09131,"12.0":0.02029,"13.0":0.06088,"14.0":0.06088,"15.0":0.04058,"16.0":0.10146,"17.0":0.11161,"18.0":0.10146,"19.0":0.24351},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00276,"4.4":0,"4.4.3-4.4.4":0.03318},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00396,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.06415},Q:{"13.1":0},O:{"0":2.69438},H:{"0":0.44792},L:{"0":61.96103}};
diff --git a/node_modules/caniuse-lite/data/regions/VU.js b/node_modules/caniuse-lite/data/regions/VU.js
new file mode 100644
index 0000000..f6e861f
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/VU.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00853,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.00427,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00427,"103":0,"104":0.00853,"105":0.00853,"106":0,"107":0,"108":0.00427,"109":0.00853,"110":0.17495,"111":0.52484,"112":1.18196,"113":0,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.0256,"41":0,"42":0,"43":0.02134,"44":0,"45":0,"46":0.00427,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0.00427,"60":0,"61":0,"62":0.00427,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00853,"73":0,"74":0.00427,"75":0,"76":0,"77":0,"78":0.00427,"79":0,"80":0,"81":0.0256,"83":0,"84":0.0256,"85":0,"86":0,"87":0.02134,"88":0.04694,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0.0128,"95":0.00427,"96":0,"97":0.0256,"98":0,"99":0.00427,"100":0,"101":0,"102":0,"103":0.0128,"104":0.01707,"105":0.00427,"106":0,"107":0.0256,"108":0.00853,"109":0.25175,"110":0.12801,"111":3.23865,"112":3.39653,"113":0.02987,"114":0.02987,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.01707,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00427,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0.00427,"97":0.20908,"98":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.23895,"13":0,"14":0,"15":0.01707,"16":0,"17":0,"18":0.02134,"79":0,"80":0,"81":0,"83":0,"84":0.0128,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.00427,"91":0,"92":0.00853,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00427,"101":0.00853,"102":0.00853,"103":0,"104":0.00427,"105":0.00427,"106":0,"107":0.0128,"108":0.0256,"109":0.0128,"110":0.0384,"111":0.33283,"112":1.02835,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00427,"14":0.00427,"15":0.00427,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.03414,"14.1":0.10241,"15.1":0.0128,"15.2-15.3":0,"15.4":0.00853,"15.5":0.0128,"15.6":0.23469,"16.0":0.02987,"16.1":0.0128,"16.2":0.02987,"16.3":0.15788,"16.4":0.16215,"16.5":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.14862,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.19661,"10.0-10.2":0,"10.3":0,"11.0-11.2":0.01161,"11.3-11.4":0.00387,"12.0-12.1":0.02941,"12.2-12.5":0.1223,"13.0-13.1":0,"13.2":0,"13.3":0.00774,"13.4-13.7":0.02941,"14.0-14.4":0.25699,"14.5-14.8":0.48688,"15.0-15.1":0.0596,"15.2-15.3":0.44199,"15.4":0.03328,"15.5":0.19351,"15.6":0.26395,"16.0":0.17803,"16.1":0.99931,"16.2":0.80966,"16.3":1.9274,"16.4":1.12161,"16.5":0.00387},P:{"4":0.20278,"20":0.82127,"5.0-5.4":0.07097,"6.2-6.4":0,"7.2-7.4":0.30417,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.01014,"12.0":0.01014,"13.0":0.01014,"14.0":0.02028,"15.0":0.12167,"16.0":0.4664,"17.0":0.02028,"18.0":0.04056,"19.0":0.22306},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.16267},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.0128,"5.5":0},S:{"2.5":0.00573,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.21785},Q:{"13.1":0.00573},O:{"0":0.98608},H:{"0":0.0977},L:{"0":75.21386}};
diff --git a/node_modules/caniuse-lite/data/regions/WF.js b/node_modules/caniuse-lite/data/regions/WF.js
new file mode 100644
index 0000000..fc0a5db
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/WF.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0.02499,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.02499,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.1599,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0,"111":1.78893,"112":1.659,"113":0,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0.05497,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.02499,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0.02499,"106":0,"107":0,"108":0,"109":3.28803,"110":0.05497,"111":2.10374,"112":3.39296,"113":0,"114":0,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0.20987,"98":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.02499,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0,"111":0.3398,"112":2.26364,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0,"14.1":0.02499,"15.1":0.05497,"15.2-15.3":5.23686,"15.4":0.1599,"15.5":0,"15.6":0,"16.0":0.05497,"16.1":0,"16.2":0.05497,"16.3":0.52469,"16.4":0.86948,"16.5":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0,"10.0-10.2":0,"10.3":0,"11.0-11.2":0,"11.3-11.4":0.11539,"12.0-12.1":0,"12.2-12.5":0.57696,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0,"14.0-14.4":0.40387,"14.5-14.8":10.56379,"15.0-15.1":0.11539,"15.2-15.3":0.63465,"15.4":0,"15.5":0.51926,"15.6":1.21161,"16.0":0.69235,"16.1":2.42322,"16.2":0.57696,"16.3":5.8877,"16.4":2.88478,"16.5":0},P:{"4":0,"20":1.44251,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0,"12.0":0,"13.0":0,"14.0":0,"15.0":0,"16.0":0.11174,"17.0":0,"18.0":0,"19.0":0.11174},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.48529},Q:{"13.1":0},O:{"0":0},H:{"0":0},L:{"0":45.64693}};
diff --git a/node_modules/caniuse-lite/data/regions/WS.js b/node_modules/caniuse-lite/data/regions/WS.js
new file mode 100644
index 0000000..3db3ace
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/WS.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0.01712,"104":0,"105":0,"106":0,"107":0,"108":0.00428,"109":0.00428,"110":0.00428,"111":0.31237,"112":0.11981,"113":0.00428,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.00428,"71":0,"72":0.01284,"73":0,"74":0.00428,"75":0,"76":0.01284,"77":0,"78":0,"79":0.00428,"80":0,"81":0.0214,"83":0,"84":0,"85":0,"86":0,"87":0.01284,"88":0.00856,"89":0,"90":0,"91":0,"92":0.0214,"93":0.0214,"94":0.00428,"95":0.07274,"96":0.00428,"97":0,"98":0,"99":0.01712,"100":0.00428,"101":0.02567,"102":0.01284,"103":0.11553,"104":0.00856,"105":0.0214,"106":0,"107":0.02567,"108":0.03851,"109":0.74455,"110":0.23535,"111":3.79975,"112":4.11212,"113":0.00856,"114":0.02995,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.01284,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00856,"64":0,"65":0,"66":0,"67":0,"68":0.00428,"69":0.03851,"70":0,"71":0,"72":0,"73":0.00428,"74":0.1027,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.00428,"96":0,"97":0.05563,"98":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00428,"13":0,"14":0.00428,"15":0.00856,"16":0,"17":0.00428,"18":0.00856,"79":0,"80":0,"81":0,"83":0,"84":0.01284,"85":0,"86":0.00428,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.01284,"93":0,"94":0.00856,"95":0,"96":0.00428,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0.0214,"104":0.00428,"105":0.00428,"106":0.01284,"107":0,"108":0.01284,"109":0.2653,"110":0.13693,"111":0.64613,"112":1.11254,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.0214,"14.1":0.08986,"15.1":0,"15.2-15.3":0.00856,"15.4":0,"15.5":0.00428,"15.6":0.65469,"16.0":0,"16.1":0.01712,"16.2":0.01712,"16.3":0.184,"16.4":0.01284,"16.5":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.06358,"10.0-10.2":0,"10.3":0.01413,"11.0-11.2":0.01413,"11.3-11.4":0.07594,"12.0-12.1":0.01413,"12.2-12.5":0.60221,"13.0-13.1":0.03179,"13.2":0,"13.3":0.03885,"13.4-13.7":0.82296,"14.0-14.4":0.40265,"14.5-14.8":0.85298,"15.0-15.1":0.09713,"15.2-15.3":0.27197,"15.4":0.35144,"15.5":0.31788,"15.6":1.2521,"16.0":1.96204,"16.1":0.89184,"16.2":2.64902,"16.3":2.35939,"16.4":1.87904,"16.5":0.10773},P:{"4":0.09347,"20":1.73431,"5.0-5.4":0.03116,"6.2-6.4":0.01039,"7.2-7.4":0.24924,"8.2":0,"9.2":0.05193,"10.1":0,"11.1-11.2":0.02077,"12.0":0.08308,"13.0":0.19732,"14.0":0.0727,"15.0":0.0727,"16.0":1.94202,"17.0":0.03116,"18.0":0.34271,"19.0":0.23886},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.1427},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.02567,"5.5":0},S:{"2.5":0.02288,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.04005},Q:{"13.1":0},O:{"0":0.06865},H:{"0":1.91194},L:{"0":61.04861}};
diff --git a/node_modules/caniuse-lite/data/regions/YE.js b/node_modules/caniuse-lite/data/regions/YE.js
new file mode 100644
index 0000000..5e1f6cb
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/YE.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0.00474,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00474,"48":0.00237,"49":0,"50":0,"51":0,"52":0.02846,"53":0,"54":0,"55":0.00474,"56":0.00237,"57":0.00237,"58":0,"59":0,"60":0.00237,"61":0,"62":0,"63":0,"64":0,"65":0.01186,"66":0,"67":0,"68":0.00474,"69":0,"70":0,"71":0,"72":0.00237,"73":0,"74":0.00237,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00949,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.00237,"102":0.0166,"103":0.00237,"104":0.00237,"105":0,"106":0.00474,"107":0.00237,"108":0.00237,"109":0.00237,"110":0.00712,"111":0.18739,"112":0.17078,"113":0.00237,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.00237,"38":0.00237,"39":0,"40":0,"41":0,"42":0,"43":0.00237,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00237,"50":0.00949,"51":0.00237,"52":0,"53":0,"54":0,"55":0.00237,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00237,"64":0.00237,"65":0,"66":0,"67":0.00237,"68":0.01186,"69":0,"70":0.00237,"71":0.00237,"72":0.00237,"73":0.00237,"74":0.00237,"75":0.00237,"76":0.00712,"77":0,"78":0.00237,"79":0.00474,"80":0.00474,"81":0.00474,"83":0.00474,"84":0.00237,"85":0.00474,"86":0.00712,"87":0.00712,"88":0.00712,"89":0.00474,"90":0.00949,"91":0.00474,"92":0.00237,"93":0,"94":0.00237,"95":0.00474,"96":0.00712,"97":0.00237,"98":0.00474,"99":0.00949,"100":0.02846,"101":0.00712,"102":0.01186,"103":0.00949,"104":0.00712,"105":0.01898,"106":0.01186,"107":0.01423,"108":0.04507,"109":0.29176,"110":0.04507,"111":0.61435,"112":0.65467,"113":0.00474,"114":0.00237,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0.00237,"65":0,"66":0,"67":0.00237,"68":0.01423,"69":0.01898,"70":0.00237,"71":0,"72":0,"73":0.00237,"74":0.00949,"75":0.00237,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00237,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0.00474,"95":0.00474,"96":0.00712,"97":0.02846,"98":0.00237,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.06167},B:{"12":0.00237,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0.00237,"85":0,"86":0,"87":0,"88":0,"89":0.00237,"90":0,"91":0,"92":0.00712,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00237,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0.00237,"106":0,"107":0.00237,"108":0.00237,"109":0.00712,"110":0.01423,"111":0.08539,"112":0.15655,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.03321,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0,"14.1":0.00237,"15.1":0,"15.2-15.3":0,"15.4":0.00237,"15.5":0.00237,"15.6":0.00474,"16.0":0,"16.1":0,"16.2":0.00712,"16.3":0.00712,"16.4":0.00237,"16.5":0.00237},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00526,"5.0-5.1":0,"6.0-6.1":0.06473,"7.0-7.1":0.00769,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00728,"10.0-10.2":0,"10.3":0.01295,"11.0-11.2":0.00202,"11.3-11.4":0.00162,"12.0-12.1":0.02387,"12.2-12.5":0.25408,"13.0-13.1":0.01052,"13.2":0.00405,"13.3":0.01861,"13.4-13.7":0.02225,"14.0-14.4":0.11855,"14.5-14.8":0.10843,"15.0-15.1":0.08132,"15.2-15.3":0.17195,"15.4":0.11126,"15.5":0.1849,"15.6":0.2201,"16.0":0.25408,"16.1":0.40136,"16.2":0.26663,"16.3":0.75982,"16.4":0.40378,"16.5":0.19056},P:{"4":0.33315,"20":2.1907,"5.0-5.4":0.07067,"6.2-6.4":0.08076,"7.2-7.4":0.12114,"8.2":0,"9.2":0.15143,"10.1":0.0101,"11.1-11.2":0.32305,"12.0":0.04038,"13.0":0.15143,"14.0":0.12114,"15.0":0.04038,"16.0":0.30286,"17.0":0.30286,"18.0":0.12114,"19.0":0.40382},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0.00276,"4.1":0.00828,"4.2-4.3":0.00644,"4.4":0,"4.4.3-4.4.4":0.09201},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00237,"5.5":0},S:{"2.5":0.00763,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.69415},Q:{"13.1":0},O:{"0":4.79801},H:{"0":10.29814},L:{"0":66.92376}};
diff --git a/node_modules/caniuse-lite/data/regions/YT.js b/node_modules/caniuse-lite/data/regions/YT.js
new file mode 100644
index 0000000..8c9796b
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/YT.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00913,"79":0,"80":0.00457,"81":0.00457,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.0137,"90":0.00457,"91":0.01826,"92":0,"93":0,"94":0.00457,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.0137,"103":0,"104":0,"105":0.00457,"106":0,"107":0.0137,"108":0.0137,"109":0.05935,"110":0.04109,"111":1.55667,"112":0.53411,"113":0,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.00457,"44":0,"45":0,"46":0,"47":0.00457,"48":0,"49":0.00457,"50":0.0137,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.00457,"68":0.00913,"69":0.00457,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0.00457,"76":0,"77":0,"78":0,"79":0.1826,"80":0,"81":0.00913,"83":0.00457,"84":0,"85":0.01826,"86":0,"87":0.0137,"88":0,"89":0.00457,"90":0.00457,"91":0,"92":0.00457,"93":0,"94":0.0137,"95":0.01826,"96":0.0137,"97":0,"98":0,"99":0.04565,"100":0.0137,"101":0,"102":0,"103":0.02739,"104":0.00457,"105":0.02283,"106":0.03196,"107":0.01826,"108":0.04565,"109":0.31042,"110":0.1963,"111":5.56474,"112":3.88025,"113":0,"114":0,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00457,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00457,"69":0.0137,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.01826,"96":0.14152,"97":0.32412,"98":0.07761,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0.0137,"18":0.00457,"79":0,"80":0,"81":0,"83":0,"84":0.00457,"85":0,"86":0,"87":0,"88":0,"89":0.07304,"90":0.00913,"91":0,"92":0.00457,"93":0,"94":0,"95":0,"96":0.00457,"97":0,"98":0,"99":0.00457,"100":0,"101":0,"102":0,"103":0,"104":0.00457,"105":0.08674,"106":0,"107":0,"108":0.0137,"109":0.02739,"110":0.05478,"111":1.14582,"112":1.6434,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00913,"14":0.02283,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00457,"13.1":0.02739,"14.1":0.03196,"15.1":0.01826,"15.2-15.3":0.03652,"15.4":0.01826,"15.5":0.03196,"15.6":0.50672,"16.0":0.0137,"16.1":0.04109,"16.2":0.06848,"16.3":0.40629,"16.4":0.29216,"16.5":0.00913},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01511,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0,"10.0-10.2":0,"10.3":0.0491,"11.0-11.2":0.01133,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":0.2247,"13.0-13.1":0.00755,"13.2":0,"13.3":0.04343,"13.4-13.7":0.0642,"14.0-14.4":0.10197,"14.5-14.8":0.24548,"15.0-15.1":0.15295,"15.2-15.3":0.08497,"15.4":0.26813,"15.5":0.72321,"15.6":0.81951,"16.0":3.45742,"16.1":2.03556,"16.2":1.2878,"16.3":5.04735,"16.4":2.8343,"16.5":0.10763},P:{"4":0.0304,"20":4.44892,"5.0-5.4":0,"6.2-6.4":0.01013,"7.2-7.4":0.22295,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.09121,"12.0":0,"13.0":0.06081,"14.0":0.04054,"15.0":0.02027,"16.0":0.22295,"17.0":0.04054,"18.0":0.07094,"19.0":0.3547},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.01937,"4.4":0,"4.4.3-4.4.4":0.3778},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.02283,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.13044},Q:{"13.1":0.00544},O:{"0":0.03261},H:{"0":0.32417},L:{"0":55.05644}};
diff --git a/node_modules/caniuse-lite/data/regions/ZA.js b/node_modules/caniuse-lite/data/regions/ZA.js
new file mode 100644
index 0000000..01f1e9c
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/ZA.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00515,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00258,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.00258,"88":0.00515,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0.00258,"95":0,"96":0,"97":0,"98":0.00258,"99":0,"100":0,"101":0,"102":0.00258,"103":0,"104":0,"105":0.00258,"106":0,"107":0.00258,"108":0.00258,"109":0.00258,"110":0.00773,"111":0.134,"112":0.11081,"113":0.00258,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00258,"47":0,"48":0,"49":0.00258,"50":0,"51":0,"52":0.00515,"53":0,"54":0,"55":0.00258,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0.00515,"63":0.00258,"64":0,"65":0,"66":0.00515,"67":0,"68":0,"69":0,"70":0.00258,"71":0,"72":0,"73":0,"74":0.00258,"75":0,"76":0.00258,"77":0,"78":0.00258,"79":0.00515,"80":0.00258,"81":0.01289,"83":0,"84":0,"85":0.00258,"86":0.00258,"87":0.00258,"88":0.00515,"89":0,"90":0.00258,"91":0.00258,"92":0.00258,"93":0.01031,"94":0.00773,"95":0.00258,"96":0.00258,"97":0.00258,"98":0.00258,"99":0.01031,"100":0.00258,"101":0.00515,"102":0.00515,"103":0.01289,"104":0.00258,"105":0.00515,"106":0.00515,"107":0.00515,"108":0.01289,"109":0.20101,"110":0.03608,"111":1.00761,"112":1.25758,"113":0,"114":0.00258,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.00258,"27":0,"28":0.00515,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0.00258,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00258,"47":0,"48":0,"49":0,"50":0.00258,"51":0.00258,"52":0,"53":0,"54":0.00258,"55":0,"56":0.00258,"57":0.00258,"58":0.00258,"60":0.00773,"62":0.00258,"63":0.01804,"64":0.01031,"65":0.00773,"66":0.01804,"67":0.10566,"68":0.09277,"69":0.2577,"70":0.00258,"71":0,"72":0,"73":0,"74":0.01031,"75":0.00258,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.00515,"96":0.01546,"97":0.05927,"98":0.00258,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00258},B:{"12":0.00258,"13":0,"14":0,"15":0,"16":0,"17":0.00258,"18":0.00258,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00258,"93":0,"94":0,"95":0.00258,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0.00258,"108":0.00258,"109":0.01031,"110":0.01546,"111":0.18554,"112":0.38913,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00258,"14":0.00773,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00258,"12.1":0.00258,"13.1":0.01031,"14.1":0.01546,"15.1":0.00258,"15.2-15.3":0.00258,"15.4":0.00515,"15.5":0.00773,"15.6":0.04123,"16.0":0.00515,"16.1":0.01289,"16.2":0.01804,"16.3":0.11854,"16.4":0.04896,"16.5":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00341,"6.0-6.1":0.00341,"7.0-7.1":0.00682,"8.1-8.4":0.00852,"9.0-9.2":0.00511,"9.3":0.07158,"10.0-10.2":0,"10.3":0.04261,"11.0-11.2":0.00511,"11.3-11.4":0.01363,"12.0-12.1":0.00511,"12.2-12.5":0.42095,"13.0-13.1":0.02045,"13.2":0.00341,"13.3":0.02386,"13.4-13.7":0.07328,"14.0-14.4":0.18917,"14.5-14.8":0.40902,"15.0-15.1":0.08862,"15.2-15.3":0.15509,"15.4":0.18747,"15.5":0.41754,"15.6":0.7635,"16.0":0.89643,"16.1":2.01101,"16.2":1.09413,"16.3":6.20346,"16.4":2.66204,"16.5":0.05624},P:{"4":0.22285,"20":6.8576,"5.0-5.4":0.01013,"6.2-6.4":0,"7.2-7.4":0.38492,"8.2":0,"9.2":0.01013,"10.1":0.02026,"11.1-11.2":0.06078,"12.0":0.03039,"13.0":0.06078,"14.0":0.09116,"15.0":0.04052,"16.0":0.1722,"17.0":0.11142,"18.0":0.13168,"19.0":0.42543},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.01034,"4.4":0,"4.4.3-4.4.4":0.05997},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.02062,"5.5":0},S:{"2.5":0.00742,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.51961},Q:{"13.1":0.00742},O:{"0":0.55673},H:{"0":3.33109},L:{"0":63.30739}};
diff --git a/node_modules/caniuse-lite/data/regions/ZM.js b/node_modules/caniuse-lite/data/regions/ZM.js
new file mode 100644
index 0000000..dd8d68d
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/ZM.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0.00293,"30":0,"31":0,"32":0,"33":0,"34":0.00293,"35":0.00293,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0.00293,"45":0,"46":0,"47":0.00293,"48":0,"49":0,"50":0,"51":0,"52":0.00293,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00293,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00293,"100":0,"101":0,"102":0.00878,"103":0,"104":0,"105":0,"106":0,"107":0.00293,"108":0.00293,"109":0.00293,"110":0.00586,"111":0.14054,"112":0.12005,"113":0.00586,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00293,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00293,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0.00293,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00293,"59":0.00293,"60":0,"61":0,"62":0,"63":0.00293,"64":0.00293,"65":0,"66":0,"67":0,"68":0.00293,"69":0.00293,"70":0.00293,"71":0.00293,"72":0,"73":0.00586,"74":0.00293,"75":0,"76":0.00293,"77":0.00293,"78":0.00586,"79":0.00586,"80":0.00586,"81":0.01757,"83":0.00293,"84":0,"85":0.00293,"86":0.00293,"87":0.00878,"88":0.00293,"89":0,"90":0.00293,"91":0.00293,"92":0.00586,"93":0.00878,"94":0.00586,"95":0.01757,"96":0.00293,"97":0.00293,"98":0.00293,"99":0.00586,"100":0.00293,"101":0.00293,"102":0.01464,"103":0.03806,"104":0.00586,"105":0.01171,"106":0.02342,"107":0.01171,"108":0.04685,"109":0.38942,"110":0.05856,"111":1.18877,"112":1.28246,"113":0.00586,"114":0,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.00293,"27":0,"28":0.00293,"29":0,"30":0.00586,"31":0,"32":0.00293,"33":0,"34":0,"35":0.01171,"36":0,"37":0.01464,"38":0,"39":0,"40":0.00293,"41":0,"42":0.00293,"43":0,"44":0,"45":0,"46":0.00293,"47":0.01757,"48":0,"49":0,"50":0.00293,"51":0.05856,"52":0,"53":0,"54":0.00293,"55":0.00293,"56":0.00293,"57":0.00586,"58":0.00878,"60":0.15518,"62":0,"63":0.11419,"64":0.04392,"65":0.02342,"66":0.11126,"67":0.23424,"68":0.27523,"69":0.47434,"70":0.00293,"71":0,"72":0.00293,"73":0.00878,"74":0.02342,"75":0.00586,"76":0,"77":0,"78":0,"79":0.00586,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0.00293,"95":0.04978,"96":0.06734,"97":0.22546,"98":0.01171,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.01464},B:{"12":0.01464,"13":0.01171,"14":0.00293,"15":0.00586,"16":0.00586,"17":0.00586,"18":0.0205,"79":0,"80":0,"81":0,"83":0,"84":0.00293,"85":0.00586,"86":0,"87":0,"88":0,"89":0.00586,"90":0.00586,"91":0,"92":0.01757,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00293,"101":0,"102":0,"103":0.00293,"104":0,"105":0.00293,"106":0.00293,"107":0.00586,"108":0.00878,"109":0.02635,"110":0.03221,"111":0.26059,"112":0.50069,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00293,"14":0.00293,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.00878,"6.1":0,"7.1":0,"9.1":0.00293,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00586,"14.1":0.0205,"15.1":0.00293,"15.2-15.3":0.00293,"15.4":0,"15.5":0.00586,"15.6":0.01171,"16.0":0,"16.1":0.00293,"16.2":0.00586,"16.3":0.02635,"16.4":0.01464,"16.5":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00117,"5.0-5.1":0.0035,"6.0-6.1":0,"7.0-7.1":0.02102,"8.1-8.4":0,"9.0-9.2":0.00117,"9.3":0.10858,"10.0-10.2":0,"10.3":0.02685,"11.0-11.2":0.0035,"11.3-11.4":0.00584,"12.0-12.1":0.03736,"12.2-12.5":1.8541,"13.0-13.1":0.03386,"13.2":0.00234,"13.3":0.03736,"13.4-13.7":0.0829,"14.0-14.4":0.45419,"14.5-14.8":0.37946,"15.0-15.1":0.35144,"15.2-15.3":0.38763,"15.4":0.17981,"15.5":0.37246,"15.6":0.58612,"16.0":0.65034,"16.1":0.77644,"16.2":0.62115,"16.3":1.81441,"16.4":1.22245,"16.5":0.01168},P:{"4":0.11202,"20":1.00818,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.14257,"8.2":0,"9.2":0.02037,"10.1":0,"11.1-11.2":0.05092,"12.0":0,"13.0":0.03055,"14.0":0.02037,"15.0":0.01018,"16.0":0.03055,"17.0":0.04073,"18.0":0.03055,"19.0":0.28514},I:{"0":0,"3":0,"4":0.00351,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00456,"4.2-4.3":0.00211,"4.4":0,"4.4.3-4.4.4":0.13374},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0.00335,"11":0.02008,"5.5":0},S:{"2.5":0.01414,_:"3.0-3.1"},J:{"7":0,"10":0.00707},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.09194},Q:{"13.1":0.00707},O:{"0":2.23475},H:{"0":11.26152},L:{"0":63.32939}};
diff --git a/node_modules/caniuse-lite/data/regions/ZW.js b/node_modules/caniuse-lite/data/regions/ZW.js
new file mode 100644
index 0000000..3abac1d
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/ZW.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.00395,"49":0,"50":0,"51":0,"52":0.00395,"53":0,"54":0,"55":0,"56":0,"57":0.00395,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.02764,"64":0,"65":0,"66":0,"67":0,"68":0.00395,"69":0,"70":0,"71":0,"72":0.00395,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.00395,"88":0.00395,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0.00395,"95":0,"96":0,"97":0,"98":0,"99":0.00395,"100":0,"101":0,"102":0.0079,"103":0.00395,"104":0.00395,"105":0.00395,"106":0.05134,"107":0.00395,"108":0.0079,"109":0.07108,"110":0.03554,"111":0.41859,"112":0.45808,"113":0.01975,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.0079,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00395,"39":0,"40":0.00395,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00395,"47":0.00395,"48":0,"49":0.00395,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.0079,"56":0.00395,"57":0.00395,"58":0.00395,"59":0,"60":0.00395,"61":0,"62":0,"63":0.0158,"64":0.00395,"65":0,"66":0.00395,"67":0,"68":0.00395,"69":0.00395,"70":0.01185,"71":0.00395,"72":0.00395,"73":0.00395,"74":0.01185,"75":0.00395,"76":0.0079,"77":0.00395,"78":0.00395,"79":0.01975,"80":0.0079,"81":0.02764,"83":0.00395,"84":0.00395,"85":0.00395,"86":0.01185,"87":0.0079,"88":0.0079,"89":0.0079,"90":0.0079,"91":0.00395,"92":0.0158,"93":0.0079,"94":0.03159,"95":0.01185,"96":0.0158,"97":0.01185,"98":0.0079,"99":0.01185,"100":0.0079,"101":0.0079,"102":0.05529,"103":0.03949,"104":0.01975,"105":0.01975,"106":0.02369,"107":0.02764,"108":0.08293,"109":0.75821,"110":0.10662,"111":2.76035,"112":3.19869,"113":0.01185,"114":0,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0.00395,"25":0,"26":0.00395,"27":0,"28":0.01185,"29":0,"30":0,"31":0,"32":0.00395,"33":0,"34":0,"35":0.0158,"36":0,"37":0.00395,"38":0.00395,"39":0,"40":0,"41":0,"42":0.02369,"43":0,"44":0,"45":0,"46":0.0079,"47":0.05134,"48":0,"49":0,"50":0.07108,"51":0.00395,"52":0,"53":0,"54":0.01185,"55":0.00395,"56":0.00395,"57":0.0158,"58":0.03949,"60":0.11452,"62":0,"63":0.18955,"64":0.04344,"65":0.03159,"66":0.11452,"67":0.18165,"68":0.27248,"69":0.61604,"70":0.00395,"71":0,"72":0,"73":0,"74":0.04344,"75":0.00395,"76":0,"77":0,"78":0,"79":0.00395,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.0079,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00395,"92":0,"93":0,"94":0.0079,"95":0.03159,"96":0.05134,"97":0.34356,"98":0.0158,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.13032},B:{"12":0.0158,"13":0.0079,"14":0.11452,"15":0.01975,"16":0.01185,"17":0.00395,"18":0.03949,"79":0,"80":0,"81":0,"83":0,"84":0.0079,"85":0,"86":0,"87":0,"88":0,"89":0.01185,"90":0.01975,"91":0,"92":0.03554,"93":0.00395,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00395,"101":0,"102":0,"103":0.00395,"104":0.00395,"105":0.03159,"106":0.00395,"107":0.01975,"108":0.02369,"109":0.03159,"110":0.05134,"111":0.51337,"112":0.9912,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00395,"14":0.00395,"15":0.0079,_:"0","3.1":0,"3.2":0,"5.1":0.0079,"6.1":0,"7.1":0,"9.1":0.00395,"10.1":0,"11.1":0.0079,"12.1":0.00395,"13.1":0.01975,"14.1":0.06318,"15.1":0.00395,"15.2-15.3":0.00395,"15.4":0.0079,"15.5":0.00395,"15.6":0.05134,"16.0":0,"16.1":0.01975,"16.2":0.0158,"16.3":0.10267,"16.4":0.03159,"16.5":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.0024,"7.0-7.1":0.00479,"8.1-8.4":0.0024,"9.0-9.2":0.0012,"9.3":0.12095,"10.0-10.2":0.0024,"10.3":0.03233,"11.0-11.2":0.01078,"11.3-11.4":0.00958,"12.0-12.1":0.03114,"12.2-12.5":0.43111,"13.0-13.1":0.00719,"13.2":0.00479,"13.3":0.02754,"13.4-13.7":0.08143,"14.0-14.4":0.20238,"14.5-14.8":0.51134,"15.0-15.1":0.16526,"15.2-15.3":0.2395,"15.4":0.32213,"15.5":0.38081,"15.6":0.65864,"16.0":0.75324,"16.1":1.23704,"16.2":0.70055,"16.3":3.4261,"16.4":1.54839,"16.5":0.02036},P:{"4":0.08139,"20":1.13945,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.1526,"8.2":0,"9.2":0.01017,"10.1":0,"11.1-11.2":0.03052,"12.0":0,"13.0":0.03052,"14.0":0.03052,"15.0":0.01017,"16.0":0.06104,"17.0":0.04069,"18.0":0.05087,"19.0":0.1933},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.0009,"4.4":0,"4.4.3-4.4.4":0.12279},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00395,"9":0,"10":0,"11":0.02764,"5.5":0},S:{"2.5":0.00605,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.29045},Q:{"13.1":0.03631},O:{"0":1.30097},H:{"0":8.35244},L:{"0":59.739}};
diff --git a/node_modules/caniuse-lite/data/regions/alt-af.js b/node_modules/caniuse-lite/data/regions/alt-af.js
new file mode 100644
index 0000000..5ba34a6
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/alt-af.js
@@ -0,0 +1 @@
+module.exports={C:{"34":0.0088,"43":0.00293,"47":0.00293,"52":0.03225,"65":0.00293,"72":0.00586,"77":0.00293,"78":0.0088,"88":0.00293,"89":0.00293,"91":0.00293,"94":0.00293,"95":0.00586,"99":0.0088,"102":0.02639,"103":0.00293,"104":0.00293,"105":0.00586,"106":0.00586,"107":0.0088,"108":0.0088,"109":0.01173,"110":0.03225,"111":0.67729,"112":0.61865,"113":0.02639,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 44 45 46 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 66 67 68 69 70 71 73 74 75 76 79 80 81 82 83 84 85 86 87 90 92 93 96 97 98 100 101 114 3.5 3.6"},D:{"38":0.00586,"40":0.00293,"43":0.02639,"47":0.00586,"49":0.02052,"50":0.00293,"52":0.00586,"55":0.00586,"56":0.00586,"58":0.00293,"62":0.0088,"63":0.0088,"64":0.00293,"65":0.00586,"66":0.0088,"67":0.01759,"68":0.00586,"69":0.01173,"70":0.01173,"71":0.00586,"72":0.01173,"73":0.00586,"74":0.02346,"75":0.0088,"76":0.01173,"77":0.0088,"78":0.0088,"79":0.07623,"80":0.01466,"81":0.01759,"83":0.01466,"84":0.0088,"85":0.01759,"86":0.01759,"87":0.03518,"88":0.01759,"89":0.0088,"90":0.02052,"91":0.03225,"92":0.02346,"93":0.05864,"94":0.05571,"95":0.01759,"96":0.01466,"97":0.01759,"98":0.02639,"99":0.03518,"100":0.02052,"101":0.01759,"102":0.02932,"103":0.07037,"104":0.02639,"105":0.03518,"106":0.03225,"107":0.04984,"108":0.09969,"109":2.25471,"110":0.18178,"111":4.6824,"112":5.6441,"113":0.01173,"114":0.00586,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 41 42 44 45 46 48 51 53 54 57 59 60 61 115 116"},F:{"28":0.00586,"36":0.00293,"72":0.00293,"73":0.00293,"74":0.01173,"79":0.01466,"84":0.00293,"85":0.0088,"90":0.00293,"92":0.00586,"93":0.00293,"94":0.01173,"95":0.09089,"96":0.12608,"97":0.44566,"98":0.02346,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 75 76 77 78 80 81 82 83 86 87 88 89 91 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.0088,"13":0.00293,"14":0.00586,"15":0.00293,"16":0.00293,"17":0.00586,"18":0.02346,"84":0.00586,"89":0.00586,"90":0.00586,"92":0.02052,"100":0.00293,"101":0.00293,"105":0.00586,"106":0.00586,"107":0.0088,"108":0.01759,"109":0.06744,"110":0.05571,"111":0.69488,"112":1.56276,_:"79 80 81 83 85 86 87 88 91 93 94 95 96 97 98 99 102 103 104 113"},E:{"4":0,"13":0.00586,"14":0.02052,"15":0.00586,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.04105,"11.1":0.00293,"12.1":0.0088,"13.1":0.03812,"14.1":0.04691,"15.1":0.0088,"15.2-15.3":0.0088,"15.4":0.01466,"15.5":0.02052,"15.6":0.10555,"16.0":0.01173,"16.1":0.03518,"16.2":0.04398,"16.3":0.23163,"16.4":0.10262,"16.5":0.00293},G:{"8":0.00105,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00211,"6.0-6.1":0.00211,"7.0-7.1":0.02949,"8.1-8.4":0.00421,"9.0-9.2":0.00527,"9.3":0.05897,"10.0-10.2":0,"10.3":0.0695,"11.0-11.2":0.00842,"11.3-11.4":0.00948,"12.0-12.1":0.02949,"12.2-12.5":0.70239,"13.0-13.1":0.02001,"13.2":0.00948,"13.3":0.03791,"13.4-13.7":0.09056,"14.0-14.4":0.32118,"14.5-14.8":0.38016,"15.0-15.1":0.16322,"15.2-15.3":0.18113,"15.4":0.17165,"15.5":0.30539,"15.6":0.48125,"16.0":0.64869,"16.1":1.00041,"16.2":0.63816,"16.3":2.75586,"16.4":1.38162,"16.5":0.03264},P:{"4":0.21541,"20":2.84137,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.22567,"8.2":0,"9.2":0.01026,"10.1":0,"11.1-11.2":0.04103,"12.0":0.02052,"13.0":0.05129,"14.0":0.05129,"15.0":0.03077,"16.0":0.11283,"17.0":0.08206,"18.0":0.08206,"19.0":0.23593},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.002,"4.2-4.3":0.00733,"4.4":0,"4.4.3-4.4.4":0.05429},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00926,"10":0.00309,"11":0.10493,_:"6 7 9 5.5"},S:{"2.5":0.09188,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.28272},Q:{"13.1":0},O:{"0":0.58664},H:{"0":7.92277},L:{"0":56.73967}};
diff --git a/node_modules/caniuse-lite/data/regions/alt-an.js b/node_modules/caniuse-lite/data/regions/alt-an.js
new file mode 100644
index 0000000..075a075
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/alt-an.js
@@ -0,0 +1 @@
+module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0,"111":0,"112":0,"113":0,"114":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.00387,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0.00387,"109":0,"110":0,"111":0,"112":0,"113":0,"114":0,"115":0,"116":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0,"111":0,"112":0,"113":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0,"14.1":0,"15.1":0.47153,"15.2-15.3":0.42902,"15.4":0.10436,"15.5":0.51018,"15.6":1.20975,"16.0":0.19712,"16.1":0.64159,"16.2":0.88509,"16.3":5.45352,"16.4":4.27856,"16.5":0.04252},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0,"10.0-10.2":0,"10.3":0,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":0,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0,"14.0-14.4":0,"14.5-14.8":0,"15.0-15.1":1.10396,"15.2-15.3":3.83798,"15.4":0.25874,"15.5":0.50023,"15.6":2.50978,"16.0":4.01048,"16.1":12.98015,"16.2":9.6424,"16.3":34.12787,"16.4":15.54168,"16.5":0.58648},P:{"4":0,"20":0,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0,"12.0":0,"13.0":0,"14.0":0,"15.0":0,"16.0":0,"17.0":0,"18.0":0,"19.0":0},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0},Q:{"13.1":0},O:{"0":0},H:{"0":0},L:{"0":0.01614}};
diff --git a/node_modules/caniuse-lite/data/regions/alt-as.js b/node_modules/caniuse-lite/data/regions/alt-as.js
new file mode 100644
index 0000000..2d829bc
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/alt-as.js
@@ -0,0 +1 @@
+module.exports={C:{"34":0.00655,"36":0.00655,"43":0.04258,"52":0.04258,"53":0.00655,"55":0.00655,"56":0.00983,"72":0.01638,"78":0.00655,"87":0.0131,"88":0.00655,"102":0.01638,"104":0.00328,"106":0.00328,"107":0.00655,"108":0.00655,"109":0.00983,"110":0.03275,"111":0.50763,"112":0.4323,"113":0.00983,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 37 38 39 40 41 42 44 45 46 47 48 49 50 51 54 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 79 80 81 82 83 84 85 86 89 90 91 92 93 94 95 96 97 98 99 100 101 103 105 114 3.5 3.6"},D:{"26":0.00655,"34":0.0131,"35":0.00328,"37":0.00655,"38":0.0262,"47":0.00983,"48":0.00655,"49":0.03275,"50":0.00983,"53":0.01638,"55":0.00655,"56":0.00655,"57":0.00655,"58":0.00655,"60":0.00655,"61":0.01965,"63":0.00655,"65":0.00328,"66":0.00983,"67":0.00655,"68":0.00983,"69":0.06223,"70":0.02948,"71":0.00983,"72":0.0393,"73":0.0131,"74":0.04585,"75":0.00983,"76":0.00655,"77":0.0131,"78":0.0262,"79":0.1441,"80":0.0262,"81":0.0262,"83":0.0393,"84":0.01638,"85":0.02948,"86":0.04258,"87":0.0524,"88":0.00983,"89":0.02948,"90":0.02948,"91":0.0393,"92":0.03275,"93":0.02293,"94":0.04585,"95":0.01638,"96":0.0262,"97":0.03603,"98":0.04258,"99":0.0524,"100":0.03603,"101":0.02948,"102":0.03275,"103":0.1048,"104":0.04585,"105":0.04585,"106":0.05568,"107":0.07533,"108":0.1441,"109":2.57743,"110":0.2358,"111":6.36988,"112":7.2967,"113":0.0131,"114":0.00655,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 27 28 29 30 31 32 33 36 39 40 41 42 43 44 45 46 51 52 54 59 62 64 115 116"},F:{"28":0.0131,"36":0.00983,"40":0.00655,"46":0.0262,"74":0.00328,"95":0.03603,"96":0.0786,"97":0.2489,"98":0.00983,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"17":0.00328,"18":0.0131,"89":0.00655,"92":0.00983,"101":0.00328,"103":0.00328,"105":0.00328,"106":0.00655,"107":0.01638,"108":0.0393,"109":0.07205,"110":0.05895,"111":0.7074,"112":1.68335,_:"12 13 14 15 16 79 80 81 83 84 85 86 87 88 90 91 93 94 95 96 97 98 99 100 102 104 113"},E:{"4":0,"13":0.0131,"14":0.04913,"15":0.00983,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1 11.1","5.1":0.00983,"12.1":0.00983,"13.1":0.04258,"14.1":0.11135,"15.1":0.01638,"15.2-15.3":0.0131,"15.4":0.04258,"15.5":0.07533,"15.6":0.262,"16.0":0.02293,"16.1":0.0917,"16.2":0.11463,"16.3":0.54365,"16.4":0.19978,"16.5":0.00328},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00503,"5.0-5.1":0.00503,"6.0-6.1":0.00503,"7.0-7.1":0.02011,"8.1-8.4":0.0088,"9.0-9.2":0.0088,"9.3":0.05153,"10.0-10.2":0.00628,"10.3":0.07415,"11.0-11.2":0.02891,"11.3-11.4":0.02011,"12.0-12.1":0.02639,"12.2-12.5":0.42354,"13.0-13.1":0.0176,"13.2":0.01885,"13.3":0.04022,"13.4-13.7":0.12442,"14.0-14.4":0.32048,"14.5-14.8":0.52157,"15.0-15.1":0.1747,"15.2-15.3":0.1948,"15.4":0.24508,"15.5":0.34311,"15.6":0.7013,"16.0":0.74905,"16.1":1.31587,"16.2":0.84331,"16.3":3.47757,"16.4":1.70297,"16.5":0.03016},P:{"4":0.29661,"20":1.97401,"5.0-5.4":0.01023,"6.2-6.4":0,"7.2-7.4":0.0716,"8.2":0,"9.2":0.01023,"10.1":0,"11.1-11.2":0.03068,"12.0":0.01023,"13.0":0.04091,"14.0":0.03068,"15.0":0.02046,"16.0":0.0716,"17.0":0.08182,"18.0":0.0716,"19.0":0.18411},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.0877,"4.4":0,"4.4.3-4.4.4":0.9209},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.0282,"9":0.07521,"11":0.69569,_:"6 7 10 5.5"},S:{"2.5":0.14793,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.15465},Q:{"13.1":0.27568},O:{"0":2.02392},H:{"0":1.12676},L:{"0":53.99619}};
diff --git a/node_modules/caniuse-lite/data/regions/alt-eu.js b/node_modules/caniuse-lite/data/regions/alt-eu.js
new file mode 100644
index 0000000..b031002
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/alt-eu.js
@@ -0,0 +1 @@
+module.exports={C:{"52":0.0547,"59":0.01492,"68":0.00995,"78":0.04476,"80":0.00497,"81":0.00497,"83":0.00497,"87":0.00995,"88":0.00995,"91":0.01989,"94":0.02487,"99":0.00497,"101":0.00497,"102":0.14422,"103":0.0746,"104":0.00995,"105":0.00995,"106":0.00995,"107":0.01492,"108":0.02487,"109":0.03978,"110":0.0746,"111":1.91958,"112":1.75547,"113":0.00497,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 60 61 62 63 64 65 66 67 69 70 71 72 73 74 75 76 77 79 82 84 85 86 89 90 92 93 95 96 97 98 100 114 3.5 3.6"},D:{"34":0.00497,"38":0.00995,"40":0.04476,"43":0.00995,"44":0.00995,"45":0.00995,"47":0.01989,"48":0.00497,"49":0.04476,"51":0.00497,"52":0.00995,"56":0.03481,"58":0.01492,"60":0.02984,"63":0.01492,"66":0.06465,"67":0.00497,"71":0.00995,"72":0.00995,"74":0.00995,"75":0.14422,"76":0.00995,"77":0.00995,"78":0.02984,"79":0.14422,"80":0.02487,"81":0.02984,"83":0.03481,"84":0.03978,"85":0.1293,"86":0.0547,"87":0.0746,"88":0.03481,"89":0.02487,"90":0.0547,"91":0.08454,"92":0.06465,"93":0.11438,"94":0.10941,"95":0.01989,"96":0.04476,"97":0.01989,"98":0.01989,"99":0.03978,"100":0.05968,"101":0.03481,"102":0.04973,"103":0.20887,"104":0.08951,"105":0.08454,"106":0.08951,"107":0.09449,"108":0.22379,"109":1.91958,"110":0.42768,"111":10.17476,"112":11.97001,"113":0.01989,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 39 41 42 46 50 53 54 55 57 59 61 62 64 65 68 69 70 73 114 115 116"},F:{"11":0.00497,"28":0.00497,"31":0.01492,"36":0.00497,"40":0.01492,"46":0.01492,"85":0.00995,"89":0.00497,"94":0.00995,"95":0.1293,"96":0.552,"97":1.46206,"98":0.04973,_:"9 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 32 33 34 35 37 38 39 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 86 87 88 90 91 92 93 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"15":0.00497,"17":0.00995,"18":0.01492,"92":0.00995,"103":0.00497,"105":0.00497,"106":0.00995,"107":0.01989,"108":0.03481,"109":0.12433,"110":0.08454,"111":1.65104,"112":3.89386,_:"12 13 14 16 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 104 113"},E:{"4":0,"13":0.01492,"14":0.08454,"15":0.01989,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 10.1","9.1":0.00497,"11.1":0.01492,"12.1":0.02984,"13.1":0.13924,"14.1":0.22876,"15.1":0.03481,"15.2-15.3":0.03481,"15.4":0.06962,"15.5":0.11438,"15.6":0.58184,"16.0":0.06962,"16.1":0.18897,"16.2":0.3133,"16.3":1.42725,"16.4":0.6813,"16.5":0.00995},G:{"8":0.00352,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00352,"6.0-6.1":0.00176,"7.0-7.1":0.01585,"8.1-8.4":0.0229,"9.0-9.2":0.01057,"9.3":0.07045,"10.0-10.2":0.00176,"10.3":0.0775,"11.0-11.2":0.01057,"11.3-11.4":0.0317,"12.0-12.1":0.01057,"12.2-12.5":0.33288,"13.0-13.1":0.00528,"13.2":0.00352,"13.3":0.01585,"13.4-13.7":0.05812,"14.0-14.4":0.13914,"14.5-14.8":0.33992,"15.0-15.1":0.0863,"15.2-15.3":0.12329,"15.4":0.13033,"15.5":0.25362,"15.6":0.82427,"16.0":1.16595,"16.1":2.32838,"16.2":1.28924,"16.3":6.38102,"16.4":2.88669,"16.5":0.06517},P:{"4":0.10618,"20":3.0685,"5.0-5.4":0.01023,"6.2-6.4":0,"7.2-7.4":0.0716,"8.2":0,"9.2":0.01023,"10.1":0,"11.1-11.2":0.02124,"12.0":0.01023,"13.0":0.02124,"14.0":0.01062,"15.0":0.01062,"16.0":0.03185,"17.0":0.04247,"18.0":0.04247,"19.0":0.14865},I:{"0":0,"3":0,"4":0.01456,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00546,"4.2-4.3":0.0273,"4.4":0,"4.4.3-4.4.4":0.05824},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01573,"9":0.01573,"10":0.00524,"11":0.15725,_:"6 7 5.5"},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.45243},Q:{"13.1":0},O:{"0":0.12065},H:{"0":0.48544},L:{"0":33.03236}};
diff --git a/node_modules/caniuse-lite/data/regions/alt-na.js b/node_modules/caniuse-lite/data/regions/alt-na.js
new file mode 100644
index 0000000..88541f0
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/alt-na.js
@@ -0,0 +1 @@
+module.exports={C:{"4":0.01198,"11":0.02395,"38":0.01198,"40":0.01198,"43":0.00599,"44":0.01796,"52":0.03593,"54":0.01198,"55":0.00599,"65":0.01198,"72":0.02395,"78":0.06587,"83":0.00599,"91":0.01198,"94":0.03593,"101":0.00599,"102":0.11976,"104":0.00599,"105":0.01198,"106":0.00599,"107":0.01198,"108":0.01796,"109":0.02994,"110":0.05389,"111":1.16167,"112":1.05389,_:"2 3 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 41 42 45 46 47 48 49 50 51 53 56 57 58 59 60 61 62 63 64 66 67 68 69 70 71 73 74 75 76 77 79 80 81 82 84 85 86 87 88 89 90 92 93 95 96 97 98 99 100 103 113 114 3.5 3.6"},D:{"35":0.01198,"38":0.00599,"40":0.01796,"41":0.01198,"42":0.01198,"43":0.01796,"44":0.02395,"45":0.02994,"47":0.00599,"48":0.05389,"49":0.03593,"52":0.00599,"56":0.20359,"60":0.00599,"65":0.01796,"66":0.04192,"67":0.01198,"68":0.02395,"69":0.02994,"70":0.01796,"71":0.0479,"72":0.02395,"73":0.01198,"74":0.03593,"75":0.03593,"76":0.13174,"77":0.02395,"78":0.02994,"79":0.43114,"80":0.07784,"81":0.08982,"83":0.39521,"84":0.05988,"85":0.08982,"86":0.08982,"87":0.17365,"88":0.05988,"89":0.05988,"90":0.06587,"91":0.11377,"92":0.05988,"93":0.36527,"94":0.05988,"95":0.02395,"96":0.0479,"97":0.08982,"98":0.0479,"99":0.07784,"100":0.05988,"101":0.06587,"102":0.11377,"103":0.62275,"104":0.05988,"105":0.16766,"106":0.08383,"107":0.12575,"108":0.46706,"109":1.36526,"110":0.9461,"111":11.58678,"112":11.61672,"113":0.04192,"114":0.03593,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 36 37 39 46 50 51 53 54 55 57 58 59 61 62 63 64 115 116"},F:{"94":0.00599,"95":0.05389,"96":0.43712,"97":1.0479,"98":0.04192,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.00599,"18":0.00599,"80":0.00599,"81":0.00599,"83":0.01198,"84":0.01198,"85":0.00599,"86":0.01198,"87":0.01198,"92":0.01198,"98":0.00599,"101":0.00599,"102":0.01796,"105":0.00599,"106":0.00599,"107":0.01198,"108":0.02395,"109":0.11976,"110":0.1018,"111":2.38322,"112":5.21555,_:"13 14 15 16 17 79 88 89 90 91 93 94 95 96 97 99 100 103 104 113"},E:{"4":0,"8":0.01198,"9":0.00599,"12":0.00599,"13":0.05389,"14":0.27545,"15":0.06587,_:"0 5 6 7 10 11 3.1 3.2 5.1 6.1 7.1 10.1","9.1":0.17365,"11.1":0.00599,"12.1":0.10778,"13.1":0.48503,"14.1":0.80239,"15.1":0.11976,"15.2-15.3":0.11377,"15.4":0.27545,"15.5":0.49102,"15.6":2.05388,"16.0":0.22754,"16.1":0.68862,"16.2":1.01796,"16.3":3.77843,"16.4":1.58682,"16.5":0.02994},G:{"8":0.0065,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.0065,"5.0-5.1":0.00217,"6.0-6.1":0.00867,"7.0-7.1":0.01734,"8.1-8.4":0.05635,"9.0-9.2":0.0195,"9.3":0.04551,"10.0-10.2":0.00433,"10.3":0.04984,"11.0-11.2":0.01084,"11.3-11.4":0.0195,"12.0-12.1":0.013,"12.2-12.5":0.23188,"13.0-13.1":0.00867,"13.2":0.04334,"13.3":0.02167,"13.4-13.7":0.06718,"14.0-14.4":0.18421,"14.5-14.8":0.38358,"15.0-15.1":0.11919,"15.2-15.3":0.16254,"15.4":0.16254,"15.5":0.31207,"15.6":1.14641,"16.0":1.14425,"16.1":2.88012,"16.2":1.65786,"16.3":8.53851,"16.4":3.5541,"16.5":0.08452},P:{"4":0.10983,"20":1.29602,"5.0-5.4":0.01023,"6.2-6.4":0,"7.2-7.4":0.0716,"8.2":0,"9.2":0.01023,"10.1":0,"11.1-11.2":0.02124,"12.0":0.01023,"13.0":0.02124,"14.0":0.01062,"15.0":0.01062,"16.0":0.02197,"17.0":0.02197,"18.0":0.03295,"19.0":0.0659},I:{"0":0,"3":0.00571,"4":0.01142,"2.1":0.00286,"2.2":0.00952,"2.3":0.0019,"4.1":0.00476,"4.2-4.3":0.02856,"4.4":0,"4.4.3-4.4.4":0.0476},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.04703,"9":0.03359,"10":0.01344,"11":0.18139,_:"6 7 5.5"},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.3691},Q:{"13.1":0.02808},O:{"0":0.08024},H:{"0":0.19751},L:{"0":19.53763}};
diff --git a/node_modules/caniuse-lite/data/regions/alt-oc.js b/node_modules/caniuse-lite/data/regions/alt-oc.js
new file mode 100644
index 0000000..cb7674f
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/alt-oc.js
@@ -0,0 +1 @@
+module.exports={C:{"11":0.00529,"34":0.00529,"48":0.01059,"52":0.02118,"54":0.00529,"66":0.01588,"78":0.04765,"79":0.01059,"80":0.01059,"81":0.01588,"82":0.01059,"83":0.01059,"87":0.01059,"88":0.00529,"91":0.00529,"94":0.05823,"102":0.05294,"103":0.00529,"104":0.01059,"105":0.01059,"106":0.01588,"107":0.01588,"108":0.01588,"109":0.02647,"110":0.05823,"111":1.25468,"112":1.09056,"113":0.00529,_:"2 3 4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 55 56 57 58 59 60 61 62 63 64 65 67 68 69 70 71 72 73 74 75 76 77 84 85 86 89 90 92 93 95 96 97 98 99 100 101 114 3.5 3.6"},D:{"25":0.02118,"26":0.01059,"34":0.03176,"38":0.10059,"47":0.00529,"49":0.03176,"52":0.01059,"53":0.00529,"56":0.00529,"58":0.00529,"59":0.01059,"60":0.02647,"65":0.01059,"66":0.03176,"67":0.03176,"68":0.01059,"69":0.24352,"70":0.00529,"72":0.01059,"73":0.00529,"74":0.02647,"75":0.00529,"76":0.02647,"77":0.01059,"78":0.01588,"79":0.12706,"80":0.02647,"81":0.05823,"83":0.06882,"84":0.09,"85":0.12176,"86":0.13764,"87":0.15882,"88":0.01588,"89":0.01059,"90":0.01059,"91":0.01588,"92":0.02118,"93":0.09,"94":0.03706,"95":0.02118,"96":0.04765,"97":0.05823,"98":0.04235,"99":0.04765,"100":0.04765,"101":0.05294,"102":0.04765,"103":0.3547,"104":0.07412,"105":0.09,"106":0.12176,"107":0.15882,"108":0.31235,"109":1.29703,"110":0.7041,"111":11.7368,"112":12.74795,"113":0.02118,"114":0.01059,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 27 28 29 30 31 32 33 35 36 37 39 40 41 42 43 44 45 46 48 50 51 54 55 57 61 62 63 64 71 115 116"},F:{"28":0.00529,"46":0.03706,"71":0.01059,"72":0.00529,"94":0.00529,"95":0.02647,"96":0.24882,"97":0.56646,"98":0.01588,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"18":0.02118,"84":0.00529,"85":0.01588,"86":0.00529,"92":0.00529,"95":0.00529,"103":0.00529,"104":0.00529,"105":0.01059,"106":0.01059,"107":0.02647,"108":0.06353,"109":0.10588,"110":0.11117,"111":1.8529,"112":4.11873,_:"12 13 14 15 16 17 79 80 81 83 87 88 89 90 91 93 94 96 97 98 99 100 101 102 113"},E:{"4":0,"12":0.00529,"13":0.04765,"14":0.19588,"15":0.05294,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1 10.1","11.1":0.01588,"12.1":0.06353,"13.1":0.27529,"14.1":0.57175,"15.1":0.0847,"15.2-15.3":0.09,"15.4":0.18,"15.5":0.28588,"15.6":1.50879,"16.0":0.13764,"16.1":0.40764,"16.2":0.67763,"16.3":3.2664,"16.4":1.16468,"16.5":0.01588},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01019,"6.0-6.1":0.01019,"7.0-7.1":0.01019,"8.1-8.4":0.01528,"9.0-9.2":0.01782,"9.3":0.14005,"10.0-10.2":0.00255,"10.3":0.18079,"11.0-11.2":0.03056,"11.3-11.4":0.06621,"12.0-12.1":0.03565,"12.2-12.5":0.72317,"13.0-13.1":0.01528,"13.2":0.00764,"13.3":0.04329,"13.4-13.7":0.12986,"14.0-14.4":0.29538,"14.5-14.8":0.54238,"15.0-15.1":0.15787,"15.2-15.3":0.18079,"15.4":0.22917,"15.5":0.3845,"15.6":1.2961,"16.0":1.34957,"16.1":3.40703,"16.2":2.00399,"16.3":9.5947,"16.4":3.2899,"16.5":0.06111},P:{"4":0.22549,"20":2.80258,"5.0-5.4":0.05369,"6.2-6.4":0,"7.2-7.4":0.0716,"8.2":0,"9.2":0.01023,"10.1":0,"11.1-11.2":0.01074,"12.0":0.01023,"13.0":0.03221,"14.0":0.02148,"15.0":0.02148,"16.0":0.05369,"17.0":0.04295,"18.0":0.05369,"19.0":0.15033},I:{"0":0,"3":0,"4":0.00471,"2.1":0,"2.2":0.00188,"2.3":0.00282,"4.1":0.00471,"4.2-4.3":0.01224,"4.4":0,"4.4.3-4.4.4":0.03482},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.0654,"9":0.03737,"10":0.00934,"11":0.20553,_:"6 7 5.5"},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.50354},Q:{"13.1":0.00471},O:{"0":0.08471},H:{"0":0.17376},L:{"0":21.1551}};
diff --git a/node_modules/caniuse-lite/data/regions/alt-sa.js b/node_modules/caniuse-lite/data/regions/alt-sa.js
new file mode 100644
index 0000000..e6f49a8
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/alt-sa.js
@@ -0,0 +1 @@
+module.exports={C:{"52":0.03701,"54":0.03238,"68":0.00463,"73":0.00463,"78":0.01388,"88":0.01388,"91":0.02776,"99":0.00925,"102":0.03701,"103":0.00463,"104":0.01388,"105":0.00463,"106":0.01388,"107":0.00925,"108":0.00925,"109":0.02313,"110":0.05089,"111":0.72628,"112":0.74016,"113":0.00463,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 55 56 57 58 59 60 61 62 63 64 65 66 67 69 70 71 72 74 75 76 77 79 80 81 82 83 84 85 86 87 89 90 92 93 94 95 96 97 98 100 101 114 3.5 3.6"},D:{"38":0.0185,"47":0.00925,"49":0.06476,"51":0.00463,"53":0.00463,"55":0.00463,"63":0.00463,"65":0.00463,"66":0.01388,"68":0.00925,"69":0.00463,"70":0.00463,"72":0.00463,"74":0.00925,"75":0.00925,"76":0.00925,"77":0.0185,"78":0.00925,"79":0.16191,"80":0.01388,"81":0.03238,"83":0.02313,"84":0.02776,"85":0.05089,"86":0.03701,"87":0.06939,"88":0.01388,"89":0.01388,"90":0.04163,"91":0.43022,"92":0.04163,"93":0.04163,"94":0.09715,"95":0.0185,"96":0.03238,"97":0.02776,"98":0.02776,"99":0.03238,"100":0.04163,"101":0.02313,"102":0.03238,"103":0.11565,"104":0.04626,"105":0.06476,"106":0.06476,"107":0.09715,"108":0.16191,"109":3.56665,"110":0.25443,"111":10.62592,"112":13.57731,"113":0.02313,"114":0.00463,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 48 50 52 54 56 57 58 59 60 61 62 64 67 71 73 115 116"},F:{"28":0.00925,"36":0.00925,"85":0.00925,"95":0.10177,"96":0.96683,"97":2.10946,"98":0.05089,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 86 87 88 89 90 91 92 93 94 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"15":0.02776,"18":0.00925,"92":0.01388,"107":0.01388,"108":0.00925,"109":0.06939,"110":0.03701,"111":0.83268,"112":2.08633,_:"12 13 14 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 113"},E:{"4":0,"14":0.0185,_:"0 5 6 7 8 9 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 16.5","12.1":0.00463,"13.1":0.03238,"14.1":0.05089,"15.1":0.00463,"15.2-15.3":0.00925,"15.4":0.01388,"15.5":0.02313,"15.6":0.1064,"16.0":0.01388,"16.1":0.04626,"16.2":0.05089,"16.3":0.24518,"16.4":0.1249},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00482,"6.0-6.1":0.0008,"7.0-7.1":0.00402,"8.1-8.4":0.00161,"9.0-9.2":0,"9.3":0.02489,"10.0-10.2":0,"10.3":0.02249,"11.0-11.2":0.00642,"11.3-11.4":0.02168,"12.0-12.1":0.00562,"12.2-12.5":0.12528,"13.0-13.1":0.00241,"13.2":0.00161,"13.3":0.00723,"13.4-13.7":0.03052,"14.0-14.4":0.06184,"14.5-14.8":0.1582,"15.0-15.1":0.03373,"15.2-15.3":0.04577,"15.4":0.05541,"15.5":0.10761,"15.6":0.34451,"16.0":0.51395,"16.1":0.96045,"16.2":0.53965,"16.3":2.96005,"16.4":1.28007,"16.5":0.03774},P:{"4":0.1782,"20":1.82393,"5.0-5.4":0.05369,"6.2-6.4":0,"7.2-7.4":0.1782,"8.2":0,"9.2":0.01023,"10.1":0,"11.1-11.2":0.02096,"12.0":0.01023,"13.0":0.03145,"14.0":0.01048,"15.0":0.01048,"16.0":0.04193,"17.0":0.09434,"18.0":0.03145,"19.0":0.10482},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00262,"4.2-4.3":0.00787,"4.4":0,"4.4.3-4.4.4":0.04326},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00925,"9":0.00925,"11":0.09252,_:"6 7 10 5.5"},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.13438},Q:{"13.1":0},O:{"0":0.05375},H:{"0":0.21373},L:{"0":49.52482}};
diff --git a/node_modules/caniuse-lite/data/regions/alt-ww.js b/node_modules/caniuse-lite/data/regions/alt-ww.js
new file mode 100644
index 0000000..b6cc9f6
--- /dev/null
+++ b/node_modules/caniuse-lite/data/regions/alt-ww.js
@@ -0,0 +1 @@
+module.exports={C:{"11":0.00888,"43":0.02221,"44":0.00444,"52":0.03997,"54":0.00444,"55":0.00444,"56":0.00444,"59":0.00444,"72":0.01332,"78":0.03109,"83":0.00444,"87":0.00888,"88":0.00444,"91":0.00888,"94":0.01776,"102":0.0977,"103":0.01776,"104":0.00444,"105":0.00888,"106":0.00888,"107":0.00888,"108":0.01332,"109":0.02221,"110":0.04885,"111":1.00367,"112":0.90596,"113":0.00888,_:"2 3 4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 45 46 47 48 49 50 51 53 57 58 60 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 79 80 81 82 84 85 86 89 90 92 93 95 96 97 98 99 100 101 114 3.5 3.6"},D:{"34":0.00888,"35":0.00444,"38":0.01776,"40":0.01332,"41":0.00444,"43":0.00888,"44":0.00888,"45":0.01332,"47":0.00888,"48":0.01776,"49":0.03553,"50":0.00444,"52":0.00444,"53":0.00888,"55":0.00444,"56":0.06662,"58":0.00444,"60":0.01332,"61":0.00888,"63":0.00444,"65":0.00888,"66":0.03109,"67":0.00888,"68":0.01332,"69":0.03997,"70":0.02221,"71":0.01776,"72":0.02665,"73":0.00888,"74":0.03109,"75":0.04441,"76":0.04441,"77":0.01776,"78":0.02665,"79":0.22205,"80":0.03997,"81":0.04441,"83":0.13767,"84":0.03553,"85":0.07106,"86":0.05773,"87":0.09326,"88":0.02665,"89":0.03553,"90":0.04441,"91":0.08438,"92":0.04885,"93":0.13767,"94":0.06662,"95":0.01776,"96":0.03553,"97":0.04885,"98":0.03997,"99":0.05773,"100":0.04885,"101":0.03997,"102":0.05773,"103":0.2709,"104":0.05773,"105":0.08882,"106":0.07106,"107":0.09326,"108":0.2487,"109":2.10948,"110":0.47519,"111":8.75321,"112":9.67694,"113":0.02221,"114":0.01332,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 36 37 39 42 46 51 54 57 59 62 64 115 116"},F:{"28":0.00888,"31":0.00444,"36":0.00444,"40":0.00444,"46":0.01332,"85":0.00444,"94":0.00444,"95":0.06662,"96":0.31531,"97":0.81714,"98":0.03109,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 32 33 34 35 37 38 39 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 86 87 88 89 90 91 92 93 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"17":0.00444,"18":0.01332,"84":0.00444,"87":0.00444,"89":0.00444,"92":0.00888,"101":0.00444,"102":0.00444,"105":0.00444,"106":0.00888,"107":0.01776,"108":0.03109,"109":0.09326,"110":0.0755,"111":1.38559,"112":3.15755,_:"12 13 14 15 16 79 80 81 83 85 86 88 90 91 93 94 95 96 97 98 99 100 103 104 113"},E:{"4":0,"13":0.02221,"14":0.11991,"15":0.02665,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 10.1","5.1":0.00888,"9.1":0.04885,"11.1":0.00888,"12.1":0.03997,"13.1":0.18652,"14.1":0.32863,"15.1":0.04885,"15.2-15.3":0.04441,"15.4":0.11103,"15.5":0.1954,"15.6":0.83047,"16.0":0.08882,"16.1":0.27978,"16.2":0.40857,"16.3":1.63429,"16.4":0.68836,"16.5":0.01332},G:{"8":0.00319,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00319,"5.0-5.1":0.00478,"6.0-6.1":0.00637,"7.0-7.1":0.01752,"8.1-8.4":0.02549,"9.0-9.2":0.01274,"9.3":0.05416,"10.0-10.2":0.00319,"10.3":0.0685,"11.0-11.2":0.02071,"11.3-11.4":0.0223,"12.0-12.1":0.01912,"12.2-12.5":0.35843,"13.0-13.1":0.01115,"13.2":0.02071,"13.3":0.03027,"13.4-13.7":0.0908,"14.0-14.4":0.23736,"14.5-14.8":0.43011,"15.0-15.1":0.137,"15.2-15.3":0.16727,"15.4":0.19116,"15.5":0.30745,"15.6":0.83155,"16.0":0.9335,"16.1":1.93709,"16.2":1.14696,"16.3":5.44011,"16.4":2.42455,"16.5":0.05257},P:{"4":0.19103,"20":2.06946,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.05306,"8.2":0,"9.2":0.01017,"10.1":0,"11.1-11.2":0.02123,"12.0":0,"13.0":0.02123,"14.0":0.01061,"15.0":0.01061,"16.0":0.05306,"17.0":0.05306,"18.0":0.05306,"19.0":0.14858},I:{"0":0,"3":0,"4":0.02854,"2.1":0,"2.2":0.00951,"2.3":0,"4.1":0.01903,"4.2-4.3":0.09514,"4.4":0,"4.4.3-4.4.4":0.34252},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.044,"9":0.0528,"10":0.0088,"11":0.36959,_:"6 7 5.5"},S:{"2.5":0.06671,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.28907},Q:{"13.1":0.12786},O:{"0":0.95059},H:{"0":0.99469},L:{"0":39.68823}};
diff --git a/node_modules/caniuse-lite/dist/lib/statuses.js b/node_modules/caniuse-lite/dist/lib/statuses.js
new file mode 100644
index 0000000..4d73ab3
--- /dev/null
+++ b/node_modules/caniuse-lite/dist/lib/statuses.js
@@ -0,0 +1,9 @@
+module.exports = {
+ 1: 'ls', // WHATWG Living Standard
+ 2: 'rec', // W3C Recommendation
+ 3: 'pr', // W3C Proposed Recommendation
+ 4: 'cr', // W3C Candidate Recommendation
+ 5: 'wd', // W3C Working Draft
+ 6: 'other', // Non-W3C, but reputable
+ 7: 'unoff' // Unofficial, Editor's Draft or W3C "Note"
+}
diff --git a/node_modules/caniuse-lite/dist/lib/supported.js b/node_modules/caniuse-lite/dist/lib/supported.js
new file mode 100644
index 0000000..3f81e4e
--- /dev/null
+++ b/node_modules/caniuse-lite/dist/lib/supported.js
@@ -0,0 +1,9 @@
+module.exports = {
+ y: 1 << 0,
+ n: 1 << 1,
+ a: 1 << 2,
+ p: 1 << 3,
+ u: 1 << 4,
+ x: 1 << 5,
+ d: 1 << 6
+}
diff --git a/node_modules/caniuse-lite/dist/unpacker/agents.js b/node_modules/caniuse-lite/dist/unpacker/agents.js
new file mode 100644
index 0000000..0c8a790
--- /dev/null
+++ b/node_modules/caniuse-lite/dist/unpacker/agents.js
@@ -0,0 +1,47 @@
+'use strict'
+
+const browsers = require('./browsers').browsers
+const versions = require('./browserVersions').browserVersions
+const agentsData = require('../../data/agents')
+
+function unpackBrowserVersions(versionsData) {
+ return Object.keys(versionsData).reduce((usage, version) => {
+ usage[versions[version]] = versionsData[version]
+ return usage
+ }, {})
+}
+
+module.exports.agents = Object.keys(agentsData).reduce((map, key) => {
+ let versionsData = agentsData[key]
+ map[browsers[key]] = Object.keys(versionsData).reduce((data, entry) => {
+ if (entry === 'A') {
+ data.usage_global = unpackBrowserVersions(versionsData[entry])
+ } else if (entry === 'C') {
+ data.versions = versionsData[entry].reduce((list, version) => {
+ if (version === '') {
+ list.push(null)
+ } else {
+ list.push(versions[version])
+ }
+ return list
+ }, [])
+ } else if (entry === 'D') {
+ data.prefix_exceptions = unpackBrowserVersions(versionsData[entry])
+ } else if (entry === 'E') {
+ data.browser = versionsData[entry]
+ } else if (entry === 'F') {
+ data.release_date = Object.keys(versionsData[entry]).reduce(
+ (map2, key2) => {
+ map2[versions[key2]] = versionsData[entry][key2]
+ return map2
+ },
+ {}
+ )
+ } else {
+ // entry is B
+ data.prefix = versionsData[entry]
+ }
+ return data
+ }, {})
+ return map
+}, {})
diff --git a/node_modules/caniuse-lite/dist/unpacker/browserVersions.js b/node_modules/caniuse-lite/dist/unpacker/browserVersions.js
new file mode 100644
index 0000000..553526e
--- /dev/null
+++ b/node_modules/caniuse-lite/dist/unpacker/browserVersions.js
@@ -0,0 +1 @@
+module.exports.browserVersions = require('../../data/browserVersions')
diff --git a/node_modules/caniuse-lite/dist/unpacker/browsers.js b/node_modules/caniuse-lite/dist/unpacker/browsers.js
new file mode 100644
index 0000000..85e68b4
--- /dev/null
+++ b/node_modules/caniuse-lite/dist/unpacker/browsers.js
@@ -0,0 +1 @@
+module.exports.browsers = require('../../data/browsers')
diff --git a/node_modules/caniuse-lite/dist/unpacker/feature.js b/node_modules/caniuse-lite/dist/unpacker/feature.js
new file mode 100644
index 0000000..9440b8a
--- /dev/null
+++ b/node_modules/caniuse-lite/dist/unpacker/feature.js
@@ -0,0 +1,48 @@
+'use strict'
+
+const statuses = require('../lib/statuses')
+const supported = require('../lib/supported')
+const browsers = require('./browsers').browsers
+const versions = require('./browserVersions').browserVersions
+
+const MATH2LOG = Math.log(2)
+
+function unpackSupport(cipher) {
+ // bit flags
+ let stats = Object.keys(supported).reduce((list, support) => {
+ if (cipher & supported[support]) list.push(support)
+ return list
+ }, [])
+
+ // notes
+ let notes = cipher >> 7
+ let notesArray = []
+ while (notes) {
+ let note = Math.floor(Math.log(notes) / MATH2LOG) + 1
+ notesArray.unshift(`#${note}`)
+ notes -= Math.pow(2, note - 1)
+ }
+
+ return stats.concat(notesArray).join(' ')
+}
+
+function unpackFeature(packed) {
+ let unpacked = { status: statuses[packed.B], title: packed.C }
+ unpacked.stats = Object.keys(packed.A).reduce((browserStats, key) => {
+ let browser = packed.A[key]
+ browserStats[browsers[key]] = Object.keys(browser).reduce(
+ (stats, support) => {
+ let packedVersions = browser[support].split(' ')
+ let unpacked2 = unpackSupport(support)
+ packedVersions.forEach(v => (stats[versions[v]] = unpacked2))
+ return stats
+ },
+ {}
+ )
+ return browserStats
+ }, {})
+ return unpacked
+}
+
+module.exports = unpackFeature
+module.exports.default = unpackFeature
diff --git a/node_modules/caniuse-lite/dist/unpacker/features.js b/node_modules/caniuse-lite/dist/unpacker/features.js
new file mode 100644
index 0000000..8362aec
--- /dev/null
+++ b/node_modules/caniuse-lite/dist/unpacker/features.js
@@ -0,0 +1,6 @@
+/*
+ * Load this dynamically so that it
+ * doesn't appear in the rollup bundle.
+ */
+
+module.exports.features = require('../../data/features')
diff --git a/node_modules/caniuse-lite/dist/unpacker/index.js b/node_modules/caniuse-lite/dist/unpacker/index.js
new file mode 100644
index 0000000..12017e8
--- /dev/null
+++ b/node_modules/caniuse-lite/dist/unpacker/index.js
@@ -0,0 +1,4 @@
+module.exports.agents = require('./agents').agents
+module.exports.feature = require('./feature')
+module.exports.features = require('./features').features
+module.exports.region = require('./region')
diff --git a/node_modules/caniuse-lite/dist/unpacker/region.js b/node_modules/caniuse-lite/dist/unpacker/region.js
new file mode 100644
index 0000000..d5cc2b6
--- /dev/null
+++ b/node_modules/caniuse-lite/dist/unpacker/region.js
@@ -0,0 +1,22 @@
+'use strict'
+
+const browsers = require('./browsers').browsers
+
+function unpackRegion(packed) {
+ return Object.keys(packed).reduce((list, browser) => {
+ let data = packed[browser]
+ list[browsers[browser]] = Object.keys(data).reduce((memo, key) => {
+ let stats = data[key]
+ if (key === '_') {
+ stats.split(' ').forEach(version => (memo[version] = null))
+ } else {
+ memo[key] = stats
+ }
+ return memo
+ }, {})
+ return list
+ }, {})
+}
+
+module.exports = unpackRegion
+module.exports.default = unpackRegion
diff --git a/node_modules/caniuse-lite/package.json b/node_modules/caniuse-lite/package.json
new file mode 100644
index 0000000..09b9395
--- /dev/null
+++ b/node_modules/caniuse-lite/package.json
@@ -0,0 +1,34 @@
+{
+ "name": "caniuse-lite",
+ "version": "1.0.30001491",
+ "description": "A smaller version of caniuse-db, with only the essentials!",
+ "main": "dist/unpacker/index.js",
+ "files": [
+ "data",
+ "dist"
+ ],
+ "keywords": [
+ "support"
+ ],
+ "author": {
+ "name": "Ben Briggs",
+ "email": "beneb.info@gmail.com",
+ "url": "http://beneb.info"
+ },
+ "repository": "browserslist/caniuse-lite",
+ "funding": [
+ {
+ "type": "opencollective",
+ "url": "https://opencollective.com/browserslist"
+ },
+ {
+ "type": "tidelift",
+ "url": "https://tidelift.com/funding/github/npm/caniuse-lite"
+ },
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/ai"
+ }
+ ],
+ "license": "CC-BY-4.0"
+}
diff --git a/node_modules/chokidar/LICENSE b/node_modules/chokidar/LICENSE
new file mode 100644
index 0000000..fa9162b
--- /dev/null
+++ b/node_modules/chokidar/LICENSE
@@ -0,0 +1,21 @@
+The MIT License (MIT)
+
+Copyright (c) 2012-2019 Paul Miller (https://paulmillr.com), Elan Shanker
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the “Software”), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.
diff --git a/node_modules/chokidar/README.md b/node_modules/chokidar/README.md
new file mode 100644
index 0000000..d6a57fd
--- /dev/null
+++ b/node_modules/chokidar/README.md
@@ -0,0 +1,308 @@
+# Chokidar [![Weekly downloads](https://img.shields.io/npm/dw/chokidar.svg)](https://github.com/paulmillr/chokidar) [![Yearly downloads](https://img.shields.io/npm/dy/chokidar.svg)](https://github.com/paulmillr/chokidar)
+
+> Minimal and efficient cross-platform file watching library
+
+[![NPM](https://nodei.co/npm/chokidar.png)](https://www.npmjs.com/package/chokidar)
+
+## Why?
+
+Node.js `fs.watch`:
+
+* Doesn't report filenames on MacOS.
+* Doesn't report events at all when using editors like Sublime on MacOS.
+* Often reports events twice.
+* Emits most changes as `rename`.
+* Does not provide an easy way to recursively watch file trees.
+* Does not support recursive watching on Linux.
+
+Node.js `fs.watchFile`:
+
+* Almost as bad at event handling.
+* Also does not provide any recursive watching.
+* Results in high CPU utilization.
+
+Chokidar resolves these problems.
+
+Initially made for **[Brunch](https://brunch.io/)** (an ultra-swift web app build tool), it is now used in
+[Microsoft's Visual Studio Code](https://github.com/microsoft/vscode),
+[gulp](https://github.com/gulpjs/gulp/),
+[karma](https://karma-runner.github.io/),
+[PM2](https://github.com/Unitech/PM2),
+[browserify](http://browserify.org/),
+[webpack](https://webpack.github.io/),
+[BrowserSync](https://www.browsersync.io/),
+and [many others](https://www.npmjs.com/browse/depended/chokidar).
+It has proven itself in production environments.
+
+Version 3 is out! Check out our blog post about it: [Chokidar 3: How to save 32TB of traffic every week](https://paulmillr.com/posts/chokidar-3-save-32tb-of-traffic/)
+
+## How?
+
+Chokidar does still rely on the Node.js core `fs` module, but when using
+`fs.watch` and `fs.watchFile` for watching, it normalizes the events it
+receives, often checking for truth by getting file stats and/or dir contents.
+
+On MacOS, chokidar by default uses a native extension exposing the Darwin
+`FSEvents` API. This provides very efficient recursive watching compared with
+implementations like `kqueue` available on most \*nix platforms. Chokidar still
+does have to do some work to normalize the events received that way as well.
+
+On most other platforms, the `fs.watch`-based implementation is the default, which
+avoids polling and keeps CPU usage down. Be advised that chokidar will initiate
+watchers recursively for everything within scope of the paths that have been
+specified, so be judicious about not wasting system resources by watching much
+more than needed.
+
+## Getting started
+
+Install with npm:
+
+```sh
+npm install chokidar
+```
+
+Then `require` and use it in your code:
+
+```javascript
+const chokidar = require('chokidar');
+
+// One-liner for current directory
+chokidar.watch('.').on('all', (event, path) => {
+ console.log(event, path);
+});
+```
+
+## API
+
+```javascript
+// Example of a more typical implementation structure
+
+// Initialize watcher.
+const watcher = chokidar.watch('file, dir, glob, or array', {
+ ignored: /(^|[\/\\])\../, // ignore dotfiles
+ persistent: true
+});
+
+// Something to use when events are received.
+const log = console.log.bind(console);
+// Add event listeners.
+watcher
+ .on('add', path => log(`File ${path} has been added`))
+ .on('change', path => log(`File ${path} has been changed`))
+ .on('unlink', path => log(`File ${path} has been removed`));
+
+// More possible events.
+watcher
+ .on('addDir', path => log(`Directory ${path} has been added`))
+ .on('unlinkDir', path => log(`Directory ${path} has been removed`))
+ .on('error', error => log(`Watcher error: ${error}`))
+ .on('ready', () => log('Initial scan complete. Ready for changes'))
+ .on('raw', (event, path, details) => { // internal
+ log('Raw event info:', event, path, details);
+ });
+
+// 'add', 'addDir' and 'change' events also receive stat() results as second
+// argument when available: https://nodejs.org/api/fs.html#fs_class_fs_stats
+watcher.on('change', (path, stats) => {
+ if (stats) console.log(`File ${path} changed size to ${stats.size}`);
+});
+
+// Watch new files.
+watcher.add('new-file');
+watcher.add(['new-file-2', 'new-file-3', '**/other-file*']);
+
+// Get list of actual paths being watched on the filesystem
+var watchedPaths = watcher.getWatched();
+
+// Un-watch some files.
+await watcher.unwatch('new-file*');
+
+// Stop watching.
+// The method is async!
+watcher.close().then(() => console.log('closed'));
+
+// Full list of options. See below for descriptions.
+// Do not use this example!
+chokidar.watch('file', {
+ persistent: true,
+
+ ignored: '*.txt',
+ ignoreInitial: false,
+ followSymlinks: true,
+ cwd: '.',
+ disableGlobbing: false,
+
+ usePolling: false,
+ interval: 100,
+ binaryInterval: 300,
+ alwaysStat: false,
+ depth: 99,
+ awaitWriteFinish: {
+ stabilityThreshold: 2000,
+ pollInterval: 100
+ },
+
+ ignorePermissionErrors: false,
+ atomic: true // or a custom 'atomicity delay', in milliseconds (default 100)
+});
+
+```
+
+`chokidar.watch(paths, [options])`
+
+* `paths` (string or array of strings). Paths to files, dirs to be watched
+recursively, or glob patterns.
+ - Note: globs must not contain windows separators (`\`),
+ because that's how they work by the standard —
+ you'll need to replace them with forward slashes (`/`).
+ - Note 2: for additional glob documentation, check out low-level
+ library: [picomatch](https://github.com/micromatch/picomatch).
+* `options` (object) Options object as defined below:
+
+#### Persistence
+
+* `persistent` (default: `true`). Indicates whether the process
+should continue to run as long as files are being watched. If set to
+`false` when using `fsevents` to watch, no more events will be emitted
+after `ready`, even if the process continues to run.
+
+#### Path filtering
+
+* `ignored` ([anymatch](https://github.com/es128/anymatch)-compatible definition)
+Defines files/paths to be ignored. The whole relative or absolute path is
+tested, not just filename. If a function with two arguments is provided, it
+gets called twice per path - once with a single argument (the path), second
+time with two arguments (the path and the
+[`fs.Stats`](https://nodejs.org/api/fs.html#fs_class_fs_stats)
+object of that path).
+* `ignoreInitial` (default: `false`). If set to `false` then `add`/`addDir` events are also emitted for matching paths while
+instantiating the watching as chokidar discovers these file paths (before the `ready` event).
+* `followSymlinks` (default: `true`). When `false`, only the
+symlinks themselves will be watched for changes instead of following
+the link references and bubbling events through the link's path.
+* `cwd` (no default). The base directory from which watch `paths` are to be
+derived. Paths emitted with events will be relative to this.
+* `disableGlobbing` (default: `false`). If set to `true` then the strings passed to `.watch()` and `.add()` are treated as
+literal path names, even if they look like globs.
+
+#### Performance
+
+* `usePolling` (default: `false`).
+Whether to use fs.watchFile (backed by polling), or fs.watch. If polling
+leads to high CPU utilization, consider setting this to `false`. It is
+typically necessary to **set this to `true` to successfully watch files over
+a network**, and it may be necessary to successfully watch files in other
+non-standard situations. Setting to `true` explicitly on MacOS overrides the
+`useFsEvents` default. You may also set the CHOKIDAR_USEPOLLING env variable
+to true (1) or false (0) in order to override this option.
+* _Polling-specific settings_ (effective when `usePolling: true`)
+ * `interval` (default: `100`). Interval of file system polling, in milliseconds. You may also
+ set the CHOKIDAR_INTERVAL env variable to override this option.
+ * `binaryInterval` (default: `300`). Interval of file system
+ polling for binary files.
+ ([see list of binary extensions](https://github.com/sindresorhus/binary-extensions/blob/master/binary-extensions.json))
+* `useFsEvents` (default: `true` on MacOS). Whether to use the
+`fsevents` watching interface if available. When set to `true` explicitly
+and `fsevents` is available this supercedes the `usePolling` setting. When
+set to `false` on MacOS, `usePolling: true` becomes the default.
+* `alwaysStat` (default: `false`). If relying upon the
+[`fs.Stats`](https://nodejs.org/api/fs.html#fs_class_fs_stats)
+object that may get passed with `add`, `addDir`, and `change` events, set
+this to `true` to ensure it is provided even in cases where it wasn't
+already available from the underlying watch events.
+* `depth` (default: `undefined`). If set, limits how many levels of
+subdirectories will be traversed.
+* `awaitWriteFinish` (default: `false`).
+By default, the `add` event will fire when a file first appears on disk, before
+the entire file has been written. Furthermore, in some cases some `change`
+events will be emitted while the file is being written. In some cases,
+especially when watching for large files there will be a need to wait for the
+write operation to finish before responding to a file creation or modification.
+Setting `awaitWriteFinish` to `true` (or a truthy value) will poll file size,
+holding its `add` and `change` events until the size does not change for a
+configurable amount of time. The appropriate duration setting is heavily
+dependent on the OS and hardware. For accurate detection this parameter should
+be relatively high, making file watching much less responsive.
+Use with caution.
+ * *`options.awaitWriteFinish` can be set to an object in order to adjust
+ timing params:*
+ * `awaitWriteFinish.stabilityThreshold` (default: 2000). Amount of time in
+ milliseconds for a file size to remain constant before emitting its event.
+ * `awaitWriteFinish.pollInterval` (default: 100). File size polling interval, in milliseconds.
+
+#### Errors
+
+* `ignorePermissionErrors` (default: `false`). Indicates whether to watch files
+that don't have read permissions if possible. If watching fails due to `EPERM`
+or `EACCES` with this set to `true`, the errors will be suppressed silently.
+* `atomic` (default: `true` if `useFsEvents` and `usePolling` are `false`).
+Automatically filters out artifacts that occur when using editors that use
+"atomic writes" instead of writing directly to the source file. If a file is
+re-added within 100 ms of being deleted, Chokidar emits a `change` event
+rather than `unlink` then `add`. If the default of 100 ms does not work well
+for you, you can override it by setting `atomic` to a custom value, in
+milliseconds.
+
+### Methods & Events
+
+`chokidar.watch()` produces an instance of `FSWatcher`. Methods of `FSWatcher`:
+
+* `.add(path / paths)`: Add files, directories, or glob patterns for tracking.
+Takes an array of strings or just one string.
+* `.on(event, callback)`: Listen for an FS event.
+Available events: `add`, `addDir`, `change`, `unlink`, `unlinkDir`, `ready`,
+`raw`, `error`.
+Additionally `all` is available which gets emitted with the underlying event
+name and path for every event other than `ready`, `raw`, and `error`. `raw` is internal, use it carefully.
+* `.unwatch(path / paths)`: Stop watching files, directories, or glob patterns.
+Takes an array of strings or just one string.
+* `.close()`: **async** Removes all listeners from watched files. Asynchronous, returns Promise. Use with `await` to ensure bugs don't happen.
+* `.getWatched()`: Returns an object representing all the paths on the file
+system being watched by this `FSWatcher` instance. The object's keys are all the
+directories (using absolute paths unless the `cwd` option was used), and the
+values are arrays of the names of the items contained in each directory.
+
+## CLI
+
+If you need a CLI interface for your file watching, check out
+[chokidar-cli](https://github.com/open-cli-tools/chokidar-cli), allowing you to
+execute a command on each change, or get a stdio stream of change events.
+
+## Install Troubleshooting
+
+* `npm WARN optional dep failed, continuing fsevents@n.n.n`
+ * This message is normal part of how `npm` handles optional dependencies and is
+ not indicative of a problem. Even if accompanied by other related error messages,
+ Chokidar should function properly.
+
+* `TypeError: fsevents is not a constructor`
+ * Update chokidar by doing `rm -rf node_modules package-lock.json yarn.lock && npm install`, or update your dependency that uses chokidar.
+
+* Chokidar is producing `ENOSP` error on Linux, like this:
+ * `bash: cannot set terminal process group (-1): Inappropriate ioctl for device bash: no job control in this shell`
+ `Error: watch /home/ ENOSPC`
+ * This means Chokidar ran out of file handles and you'll need to increase their count by executing the following command in Terminal:
+ `echo fs.inotify.max_user_watches=524288 | sudo tee -a /etc/sysctl.conf && sudo sysctl -p`
+
+## Changelog
+
+For more detailed changelog, see [`full_changelog.md`](.github/full_changelog.md).
+- **v3.5 (Jan 6, 2021):** Support for ARM Macs with Apple Silicon. Fixes for deleted symlinks.
+- **v3.4 (Apr 26, 2020):** Support for directory-based symlinks. Fixes for macos file replacement.
+- **v3.3 (Nov 2, 2019):** `FSWatcher#close()` method became async. That fixes IO race conditions related to close method.
+- **v3.2 (Oct 1, 2019):** Improve Linux RAM usage by 50%. Race condition fixes. Windows glob fixes. Improve stability by using tight range of dependency versions.
+- **v3.1 (Sep 16, 2019):** dotfiles are no longer filtered out by default. Use `ignored` option if needed. Improve initial Linux scan time by 50%.
+- **v3 (Apr 30, 2019):** massive CPU & RAM consumption improvements; reduces deps / package size by a factor of 17x and bumps Node.js requirement to v8.16 and higher.
+- **v2 (Dec 29, 2017):** Globs are now posix-style-only; without windows support. Tons of bugfixes.
+- **v1 (Apr 7, 2015):** Glob support, symlink support, tons of bugfixes. Node 0.8+ is supported
+- **v0.1 (Apr 20, 2012):** Initial release, extracted from [Brunch](https://github.com/brunch/brunch/blob/9847a065aea300da99bd0753f90354cde9de1261/src/helpers.coffee#L66)
+
+## Also
+
+Why was chokidar named this way? What's the meaning behind it?
+
+>Chowkidar is a transliteration of a Hindi word meaning 'watchman, gatekeeper', चौकीदार. This ultimately comes from Sanskrit _ चतुष्क_ (crossway, quadrangle, consisting-of-four).
+
+## License
+
+MIT (c) Paul Miller (), see [LICENSE](LICENSE) file.
diff --git a/node_modules/chokidar/index.js b/node_modules/chokidar/index.js
new file mode 100644
index 0000000..ed4b6d5
--- /dev/null
+++ b/node_modules/chokidar/index.js
@@ -0,0 +1,973 @@
+'use strict';
+
+const { EventEmitter } = require('events');
+const fs = require('fs');
+const sysPath = require('path');
+const { promisify } = require('util');
+const readdirp = require('readdirp');
+const anymatch = require('anymatch').default;
+const globParent = require('glob-parent');
+const isGlob = require('is-glob');
+const braces = require('braces');
+const normalizePath = require('normalize-path');
+
+const NodeFsHandler = require('./lib/nodefs-handler');
+const FsEventsHandler = require('./lib/fsevents-handler');
+const {
+ EV_ALL,
+ EV_READY,
+ EV_ADD,
+ EV_CHANGE,
+ EV_UNLINK,
+ EV_ADD_DIR,
+ EV_UNLINK_DIR,
+ EV_RAW,
+ EV_ERROR,
+
+ STR_CLOSE,
+ STR_END,
+
+ BACK_SLASH_RE,
+ DOUBLE_SLASH_RE,
+ SLASH_OR_BACK_SLASH_RE,
+ DOT_RE,
+ REPLACER_RE,
+
+ SLASH,
+ SLASH_SLASH,
+ BRACE_START,
+ BANG,
+ ONE_DOT,
+ TWO_DOTS,
+ GLOBSTAR,
+ SLASH_GLOBSTAR,
+ ANYMATCH_OPTS,
+ STRING_TYPE,
+ FUNCTION_TYPE,
+ EMPTY_STR,
+ EMPTY_FN,
+
+ isWindows,
+ isMacos,
+ isIBMi
+} = require('./lib/constants');
+
+const stat = promisify(fs.stat);
+const readdir = promisify(fs.readdir);
+
+/**
+ * @typedef {String} Path
+ * @typedef {'all'|'add'|'addDir'|'change'|'unlink'|'unlinkDir'|'raw'|'error'|'ready'} EventName
+ * @typedef {'readdir'|'watch'|'add'|'remove'|'change'} ThrottleType
+ */
+
+/**
+ *
+ * @typedef {Object} WatchHelpers
+ * @property {Boolean} followSymlinks
+ * @property {'stat'|'lstat'} statMethod
+ * @property {Path} path
+ * @property {Path} watchPath
+ * @property {Function} entryPath
+ * @property {Boolean} hasGlob
+ * @property {Object} globFilter
+ * @property {Function} filterPath
+ * @property {Function} filterDir
+ */
+
+const arrify = (value = []) => Array.isArray(value) ? value : [value];
+const flatten = (list, result = []) => {
+ list.forEach(item => {
+ if (Array.isArray(item)) {
+ flatten(item, result);
+ } else {
+ result.push(item);
+ }
+ });
+ return result;
+};
+
+const unifyPaths = (paths_) => {
+ /**
+ * @type {Array}
+ */
+ const paths = flatten(arrify(paths_));
+ if (!paths.every(p => typeof p === STRING_TYPE)) {
+ throw new TypeError(`Non-string provided as watch path: ${paths}`);
+ }
+ return paths.map(normalizePathToUnix);
+};
+
+// If SLASH_SLASH occurs at the beginning of path, it is not replaced
+// because "//StoragePC/DrivePool/Movies" is a valid network path
+const toUnix = (string) => {
+ let str = string.replace(BACK_SLASH_RE, SLASH);
+ let prepend = false;
+ if (str.startsWith(SLASH_SLASH)) {
+ prepend = true;
+ }
+ while (str.match(DOUBLE_SLASH_RE)) {
+ str = str.replace(DOUBLE_SLASH_RE, SLASH);
+ }
+ if (prepend) {
+ str = SLASH + str;
+ }
+ return str;
+};
+
+// Our version of upath.normalize
+// TODO: this is not equal to path-normalize module - investigate why
+const normalizePathToUnix = (path) => toUnix(sysPath.normalize(toUnix(path)));
+
+const normalizeIgnored = (cwd = EMPTY_STR) => (path) => {
+ if (typeof path !== STRING_TYPE) return path;
+ return normalizePathToUnix(sysPath.isAbsolute(path) ? path : sysPath.join(cwd, path));
+};
+
+const getAbsolutePath = (path, cwd) => {
+ if (sysPath.isAbsolute(path)) {
+ return path;
+ }
+ if (path.startsWith(BANG)) {
+ return BANG + sysPath.join(cwd, path.slice(1));
+ }
+ return sysPath.join(cwd, path);
+};
+
+const undef = (opts, key) => opts[key] === undefined;
+
+/**
+ * Directory entry.
+ * @property {Path} path
+ * @property {Set} items
+ */
+class DirEntry {
+ /**
+ * @param {Path} dir
+ * @param {Function} removeWatcher
+ */
+ constructor(dir, removeWatcher) {
+ this.path = dir;
+ this._removeWatcher = removeWatcher;
+ /** @type {Set} */
+ this.items = new Set();
+ }
+
+ add(item) {
+ const {items} = this;
+ if (!items) return;
+ if (item !== ONE_DOT && item !== TWO_DOTS) items.add(item);
+ }
+
+ async remove(item) {
+ const {items} = this;
+ if (!items) return;
+ items.delete(item);
+ if (items.size > 0) return;
+
+ const dir = this.path;
+ try {
+ await readdir(dir);
+ } catch (err) {
+ if (this._removeWatcher) {
+ this._removeWatcher(sysPath.dirname(dir), sysPath.basename(dir));
+ }
+ }
+ }
+
+ has(item) {
+ const {items} = this;
+ if (!items) return;
+ return items.has(item);
+ }
+
+ /**
+ * @returns {Array}
+ */
+ getChildren() {
+ const {items} = this;
+ if (!items) return;
+ return [...items.values()];
+ }
+
+ dispose() {
+ this.items.clear();
+ delete this.path;
+ delete this._removeWatcher;
+ delete this.items;
+ Object.freeze(this);
+ }
+}
+
+const STAT_METHOD_F = 'stat';
+const STAT_METHOD_L = 'lstat';
+class WatchHelper {
+ constructor(path, watchPath, follow, fsw) {
+ this.fsw = fsw;
+ this.path = path = path.replace(REPLACER_RE, EMPTY_STR);
+ this.watchPath = watchPath;
+ this.fullWatchPath = sysPath.resolve(watchPath);
+ this.hasGlob = watchPath !== path;
+ /** @type {object|boolean} */
+ if (path === EMPTY_STR) this.hasGlob = false;
+ this.globSymlink = this.hasGlob && follow ? undefined : false;
+ this.globFilter = this.hasGlob ? anymatch(path, undefined, ANYMATCH_OPTS) : false;
+ this.dirParts = this.getDirParts(path);
+ this.dirParts.forEach((parts) => {
+ if (parts.length > 1) parts.pop();
+ });
+ this.followSymlinks = follow;
+ this.statMethod = follow ? STAT_METHOD_F : STAT_METHOD_L;
+ }
+
+ checkGlobSymlink(entry) {
+ // only need to resolve once
+ // first entry should always have entry.parentDir === EMPTY_STR
+ if (this.globSymlink === undefined) {
+ this.globSymlink = entry.fullParentDir === this.fullWatchPath ?
+ false : {realPath: entry.fullParentDir, linkPath: this.fullWatchPath};
+ }
+
+ if (this.globSymlink) {
+ return entry.fullPath.replace(this.globSymlink.realPath, this.globSymlink.linkPath);
+ }
+
+ return entry.fullPath;
+ }
+
+ entryPath(entry) {
+ return sysPath.join(this.watchPath,
+ sysPath.relative(this.watchPath, this.checkGlobSymlink(entry))
+ );
+ }
+
+ filterPath(entry) {
+ const {stats} = entry;
+ if (stats && stats.isSymbolicLink()) return this.filterDir(entry);
+ const resolvedPath = this.entryPath(entry);
+ const matchesGlob = this.hasGlob && typeof this.globFilter === FUNCTION_TYPE ?
+ this.globFilter(resolvedPath) : true;
+ return matchesGlob &&
+ this.fsw._isntIgnored(resolvedPath, stats) &&
+ this.fsw._hasReadPermissions(stats);
+ }
+
+ getDirParts(path) {
+ if (!this.hasGlob) return [];
+ const parts = [];
+ const expandedPath = path.includes(BRACE_START) ? braces.expand(path) : [path];
+ expandedPath.forEach((path) => {
+ parts.push(sysPath.relative(this.watchPath, path).split(SLASH_OR_BACK_SLASH_RE));
+ });
+ return parts;
+ }
+
+ filterDir(entry) {
+ if (this.hasGlob) {
+ const entryParts = this.getDirParts(this.checkGlobSymlink(entry));
+ let globstar = false;
+ this.unmatchedGlob = !this.dirParts.some((parts) => {
+ return parts.every((part, i) => {
+ if (part === GLOBSTAR) globstar = true;
+ return globstar || !entryParts[0][i] || anymatch(part, entryParts[0][i], ANYMATCH_OPTS);
+ });
+ });
+ }
+ return !this.unmatchedGlob && this.fsw._isntIgnored(this.entryPath(entry), entry.stats);
+ }
+}
+
+/**
+ * Watches files & directories for changes. Emitted events:
+ * `add`, `addDir`, `change`, `unlink`, `unlinkDir`, `all`, `error`
+ *
+ * new FSWatcher()
+ * .add(directories)
+ * .on('add', path => log('File', path, 'was added'))
+ */
+class FSWatcher extends EventEmitter {
+// Not indenting methods for history sake; for now.
+constructor(_opts) {
+ super();
+
+ const opts = {};
+ if (_opts) Object.assign(opts, _opts); // for frozen objects
+
+ /** @type {Map} */
+ this._watched = new Map();
+ /** @type {Map} */
+ this._closers = new Map();
+ /** @type {Set} */
+ this._ignoredPaths = new Set();
+
+ /** @type {Map} */
+ this._throttled = new Map();
+
+ /** @type {Map} */
+ this._symlinkPaths = new Map();
+
+ this._streams = new Set();
+ this.closed = false;
+
+ // Set up default options.
+ if (undef(opts, 'persistent')) opts.persistent = true;
+ if (undef(opts, 'ignoreInitial')) opts.ignoreInitial = false;
+ if (undef(opts, 'ignorePermissionErrors')) opts.ignorePermissionErrors = false;
+ if (undef(opts, 'interval')) opts.interval = 100;
+ if (undef(opts, 'binaryInterval')) opts.binaryInterval = 300;
+ if (undef(opts, 'disableGlobbing')) opts.disableGlobbing = false;
+ opts.enableBinaryInterval = opts.binaryInterval !== opts.interval;
+
+ // Enable fsevents on OS X when polling isn't explicitly enabled.
+ if (undef(opts, 'useFsEvents')) opts.useFsEvents = !opts.usePolling;
+
+ // If we can't use fsevents, ensure the options reflect it's disabled.
+ const canUseFsEvents = FsEventsHandler.canUse();
+ if (!canUseFsEvents) opts.useFsEvents = false;
+
+ // Use polling on Mac if not using fsevents.
+ // Other platforms use non-polling fs_watch.
+ if (undef(opts, 'usePolling') && !opts.useFsEvents) {
+ opts.usePolling = isMacos;
+ }
+
+ // Always default to polling on IBM i because fs.watch() is not available on IBM i.
+ if(isIBMi) {
+ opts.usePolling = true;
+ }
+
+ // Global override (useful for end-developers that need to force polling for all
+ // instances of chokidar, regardless of usage/dependency depth)
+ const envPoll = process.env.CHOKIDAR_USEPOLLING;
+ if (envPoll !== undefined) {
+ const envLower = envPoll.toLowerCase();
+
+ if (envLower === 'false' || envLower === '0') {
+ opts.usePolling = false;
+ } else if (envLower === 'true' || envLower === '1') {
+ opts.usePolling = true;
+ } else {
+ opts.usePolling = !!envLower;
+ }
+ }
+ const envInterval = process.env.CHOKIDAR_INTERVAL;
+ if (envInterval) {
+ opts.interval = Number.parseInt(envInterval, 10);
+ }
+
+ // Editor atomic write normalization enabled by default with fs.watch
+ if (undef(opts, 'atomic')) opts.atomic = !opts.usePolling && !opts.useFsEvents;
+ if (opts.atomic) this._pendingUnlinks = new Map();
+
+ if (undef(opts, 'followSymlinks')) opts.followSymlinks = true;
+
+ if (undef(opts, 'awaitWriteFinish')) opts.awaitWriteFinish = false;
+ if (opts.awaitWriteFinish === true) opts.awaitWriteFinish = {};
+ const awf = opts.awaitWriteFinish;
+ if (awf) {
+ if (!awf.stabilityThreshold) awf.stabilityThreshold = 2000;
+ if (!awf.pollInterval) awf.pollInterval = 100;
+ this._pendingWrites = new Map();
+ }
+ if (opts.ignored) opts.ignored = arrify(opts.ignored);
+
+ let readyCalls = 0;
+ this._emitReady = () => {
+ readyCalls++;
+ if (readyCalls >= this._readyCount) {
+ this._emitReady = EMPTY_FN;
+ this._readyEmitted = true;
+ // use process.nextTick to allow time for listener to be bound
+ process.nextTick(() => this.emit(EV_READY));
+ }
+ };
+ this._emitRaw = (...args) => this.emit(EV_RAW, ...args);
+ this._readyEmitted = false;
+ this.options = opts;
+
+ // Initialize with proper watcher.
+ if (opts.useFsEvents) {
+ this._fsEventsHandler = new FsEventsHandler(this);
+ } else {
+ this._nodeFsHandler = new NodeFsHandler(this);
+ }
+
+ // You’re frozen when your heart’s not open.
+ Object.freeze(opts);
+}
+
+// Public methods
+
+/**
+ * Adds paths to be watched on an existing FSWatcher instance
+ * @param {Path|Array} paths_
+ * @param {String=} _origAdd private; for handling non-existent paths to be watched
+ * @param {Boolean=} _internal private; indicates a non-user add
+ * @returns {FSWatcher} for chaining
+ */
+add(paths_, _origAdd, _internal) {
+ const {cwd, disableGlobbing} = this.options;
+ this.closed = false;
+ let paths = unifyPaths(paths_);
+ if (cwd) {
+ paths = paths.map((path) => {
+ const absPath = getAbsolutePath(path, cwd);
+
+ // Check `path` instead of `absPath` because the cwd portion can't be a glob
+ if (disableGlobbing || !isGlob(path)) {
+ return absPath;
+ }
+ return normalizePath(absPath);
+ });
+ }
+
+ // set aside negated glob strings
+ paths = paths.filter((path) => {
+ if (path.startsWith(BANG)) {
+ this._ignoredPaths.add(path.slice(1));
+ return false;
+ }
+
+ // if a path is being added that was previously ignored, stop ignoring it
+ this._ignoredPaths.delete(path);
+ this._ignoredPaths.delete(path + SLASH_GLOBSTAR);
+
+ // reset the cached userIgnored anymatch fn
+ // to make ignoredPaths changes effective
+ this._userIgnored = undefined;
+
+ return true;
+ });
+
+ if (this.options.useFsEvents && this._fsEventsHandler) {
+ if (!this._readyCount) this._readyCount = paths.length;
+ if (this.options.persistent) this._readyCount *= 2;
+ paths.forEach((path) => this._fsEventsHandler._addToFsEvents(path));
+ } else {
+ if (!this._readyCount) this._readyCount = 0;
+ this._readyCount += paths.length;
+ Promise.all(
+ paths.map(async path => {
+ const res = await this._nodeFsHandler._addToNodeFs(path, !_internal, 0, 0, _origAdd);
+ if (res) this._emitReady();
+ return res;
+ })
+ ).then(results => {
+ if (this.closed) return;
+ results.filter(item => item).forEach(item => {
+ this.add(sysPath.dirname(item), sysPath.basename(_origAdd || item));
+ });
+ });
+ }
+
+ return this;
+}
+
+/**
+ * Close watchers or start ignoring events from specified paths.
+ * @param {Path|Array} paths_ - string or array of strings, file/directory paths and/or globs
+ * @returns {FSWatcher} for chaining
+*/
+unwatch(paths_) {
+ if (this.closed) return this;
+ const paths = unifyPaths(paths_);
+ const {cwd} = this.options;
+
+ paths.forEach((path) => {
+ // convert to absolute path unless relative path already matches
+ if (!sysPath.isAbsolute(path) && !this._closers.has(path)) {
+ if (cwd) path = sysPath.join(cwd, path);
+ path = sysPath.resolve(path);
+ }
+
+ this._closePath(path);
+
+ this._ignoredPaths.add(path);
+ if (this._watched.has(path)) {
+ this._ignoredPaths.add(path + SLASH_GLOBSTAR);
+ }
+
+ // reset the cached userIgnored anymatch fn
+ // to make ignoredPaths changes effective
+ this._userIgnored = undefined;
+ });
+
+ return this;
+}
+
+/**
+ * Close watchers and remove all listeners from watched paths.
+ * @returns {Promise}.
+*/
+close() {
+ if (this.closed) return this._closePromise;
+ this.closed = true;
+
+ // Memory management.
+ this.removeAllListeners();
+ const closers = [];
+ this._closers.forEach(closerList => closerList.forEach(closer => {
+ const promise = closer();
+ if (promise instanceof Promise) closers.push(promise);
+ }));
+ this._streams.forEach(stream => stream.destroy());
+ this._userIgnored = undefined;
+ this._readyCount = 0;
+ this._readyEmitted = false;
+ this._watched.forEach(dirent => dirent.dispose());
+ ['closers', 'watched', 'streams', 'symlinkPaths', 'throttled'].forEach(key => {
+ this[`_${key}`].clear();
+ });
+
+ this._closePromise = closers.length ? Promise.all(closers).then(() => undefined) : Promise.resolve();
+ return this._closePromise;
+}
+
+/**
+ * Expose list of watched paths
+ * @returns {Object} for chaining
+*/
+getWatched() {
+ const watchList = {};
+ this._watched.forEach((entry, dir) => {
+ const key = this.options.cwd ? sysPath.relative(this.options.cwd, dir) : dir;
+ watchList[key || ONE_DOT] = entry.getChildren().sort();
+ });
+ return watchList;
+}
+
+emitWithAll(event, args) {
+ this.emit(...args);
+ if (event !== EV_ERROR) this.emit(EV_ALL, ...args);
+}
+
+// Common helpers
+// --------------
+
+/**
+ * Normalize and emit events.
+ * Calling _emit DOES NOT MEAN emit() would be called!
+ * @param {EventName} event Type of event
+ * @param {Path} path File or directory path
+ * @param {*=} val1 arguments to be passed with event
+ * @param {*=} val2
+ * @param {*=} val3
+ * @returns the error if defined, otherwise the value of the FSWatcher instance's `closed` flag
+ */
+async _emit(event, path, val1, val2, val3) {
+ if (this.closed) return;
+
+ const opts = this.options;
+ if (isWindows) path = sysPath.normalize(path);
+ if (opts.cwd) path = sysPath.relative(opts.cwd, path);
+ /** @type Array */
+ const args = [event, path];
+ if (val3 !== undefined) args.push(val1, val2, val3);
+ else if (val2 !== undefined) args.push(val1, val2);
+ else if (val1 !== undefined) args.push(val1);
+
+ const awf = opts.awaitWriteFinish;
+ let pw;
+ if (awf && (pw = this._pendingWrites.get(path))) {
+ pw.lastChange = new Date();
+ return this;
+ }
+
+ if (opts.atomic) {
+ if (event === EV_UNLINK) {
+ this._pendingUnlinks.set(path, args);
+ setTimeout(() => {
+ this._pendingUnlinks.forEach((entry, path) => {
+ this.emit(...entry);
+ this.emit(EV_ALL, ...entry);
+ this._pendingUnlinks.delete(path);
+ });
+ }, typeof opts.atomic === 'number' ? opts.atomic : 100);
+ return this;
+ }
+ if (event === EV_ADD && this._pendingUnlinks.has(path)) {
+ event = args[0] = EV_CHANGE;
+ this._pendingUnlinks.delete(path);
+ }
+ }
+
+ if (awf && (event === EV_ADD || event === EV_CHANGE) && this._readyEmitted) {
+ const awfEmit = (err, stats) => {
+ if (err) {
+ event = args[0] = EV_ERROR;
+ args[1] = err;
+ this.emitWithAll(event, args);
+ } else if (stats) {
+ // if stats doesn't exist the file must have been deleted
+ if (args.length > 2) {
+ args[2] = stats;
+ } else {
+ args.push(stats);
+ }
+ this.emitWithAll(event, args);
+ }
+ };
+
+ this._awaitWriteFinish(path, awf.stabilityThreshold, event, awfEmit);
+ return this;
+ }
+
+ if (event === EV_CHANGE) {
+ const isThrottled = !this._throttle(EV_CHANGE, path, 50);
+ if (isThrottled) return this;
+ }
+
+ if (opts.alwaysStat && val1 === undefined &&
+ (event === EV_ADD || event === EV_ADD_DIR || event === EV_CHANGE)
+ ) {
+ const fullPath = opts.cwd ? sysPath.join(opts.cwd, path) : path;
+ let stats;
+ try {
+ stats = await stat(fullPath);
+ } catch (err) {}
+ // Suppress event when fs_stat fails, to avoid sending undefined 'stat'
+ if (!stats || this.closed) return;
+ args.push(stats);
+ }
+ this.emitWithAll(event, args);
+
+ return this;
+}
+
+/**
+ * Common handler for errors
+ * @param {Error} error
+ * @returns {Error|Boolean} The error if defined, otherwise the value of the FSWatcher instance's `closed` flag
+ */
+_handleError(error) {
+ const code = error && error.code;
+ if (error && code !== 'ENOENT' && code !== 'ENOTDIR' &&
+ (!this.options.ignorePermissionErrors || (code !== 'EPERM' && code !== 'EACCES'))
+ ) {
+ this.emit(EV_ERROR, error);
+ }
+ return error || this.closed;
+}
+
+/**
+ * Helper utility for throttling
+ * @param {ThrottleType} actionType type being throttled
+ * @param {Path} path being acted upon
+ * @param {Number} timeout duration of time to suppress duplicate actions
+ * @returns {Object|false} tracking object or false if action should be suppressed
+ */
+_throttle(actionType, path, timeout) {
+ if (!this._throttled.has(actionType)) {
+ this._throttled.set(actionType, new Map());
+ }
+
+ /** @type {Map} */
+ const action = this._throttled.get(actionType);
+ /** @type {Object} */
+ const actionPath = action.get(path);
+
+ if (actionPath) {
+ actionPath.count++;
+ return false;
+ }
+
+ let timeoutObject;
+ const clear = () => {
+ const item = action.get(path);
+ const count = item ? item.count : 0;
+ action.delete(path);
+ clearTimeout(timeoutObject);
+ if (item) clearTimeout(item.timeoutObject);
+ return count;
+ };
+ timeoutObject = setTimeout(clear, timeout);
+ const thr = {timeoutObject, clear, count: 0};
+ action.set(path, thr);
+ return thr;
+}
+
+_incrReadyCount() {
+ return this._readyCount++;
+}
+
+/**
+ * Awaits write operation to finish.
+ * Polls a newly created file for size variations. When files size does not change for 'threshold' milliseconds calls callback.
+ * @param {Path} path being acted upon
+ * @param {Number} threshold Time in milliseconds a file size must be fixed before acknowledging write OP is finished
+ * @param {EventName} event
+ * @param {Function} awfEmit Callback to be called when ready for event to be emitted.
+ */
+_awaitWriteFinish(path, threshold, event, awfEmit) {
+ let timeoutHandler;
+
+ let fullPath = path;
+ if (this.options.cwd && !sysPath.isAbsolute(path)) {
+ fullPath = sysPath.join(this.options.cwd, path);
+ }
+
+ const now = new Date();
+
+ const awaitWriteFinish = (prevStat) => {
+ fs.stat(fullPath, (err, curStat) => {
+ if (err || !this._pendingWrites.has(path)) {
+ if (err && err.code !== 'ENOENT') awfEmit(err);
+ return;
+ }
+
+ const now = Number(new Date());
+
+ if (prevStat && curStat.size !== prevStat.size) {
+ this._pendingWrites.get(path).lastChange = now;
+ }
+ const pw = this._pendingWrites.get(path);
+ const df = now - pw.lastChange;
+
+ if (df >= threshold) {
+ this._pendingWrites.delete(path);
+ awfEmit(undefined, curStat);
+ } else {
+ timeoutHandler = setTimeout(
+ awaitWriteFinish,
+ this.options.awaitWriteFinish.pollInterval,
+ curStat
+ );
+ }
+ });
+ };
+
+ if (!this._pendingWrites.has(path)) {
+ this._pendingWrites.set(path, {
+ lastChange: now,
+ cancelWait: () => {
+ this._pendingWrites.delete(path);
+ clearTimeout(timeoutHandler);
+ return event;
+ }
+ });
+ timeoutHandler = setTimeout(
+ awaitWriteFinish,
+ this.options.awaitWriteFinish.pollInterval
+ );
+ }
+}
+
+_getGlobIgnored() {
+ return [...this._ignoredPaths.values()];
+}
+
+/**
+ * Determines whether user has asked to ignore this path.
+ * @param {Path} path filepath or dir
+ * @param {fs.Stats=} stats result of fs.stat
+ * @returns {Boolean}
+ */
+_isIgnored(path, stats) {
+ if (this.options.atomic && DOT_RE.test(path)) return true;
+ if (!this._userIgnored) {
+ const {cwd} = this.options;
+ const ign = this.options.ignored;
+
+ const ignored = ign && ign.map(normalizeIgnored(cwd));
+ const paths = arrify(ignored)
+ .filter((path) => typeof path === STRING_TYPE && !isGlob(path))
+ .map((path) => path + SLASH_GLOBSTAR);
+ const list = this._getGlobIgnored().map(normalizeIgnored(cwd)).concat(ignored, paths);
+ this._userIgnored = anymatch(list, undefined, ANYMATCH_OPTS);
+ }
+
+ return this._userIgnored([path, stats]);
+}
+
+_isntIgnored(path, stat) {
+ return !this._isIgnored(path, stat);
+}
+
+/**
+ * Provides a set of common helpers and properties relating to symlink and glob handling.
+ * @param {Path} path file, directory, or glob pattern being watched
+ * @param {Number=} depth at any depth > 0, this isn't a glob
+ * @returns {WatchHelper} object containing helpers for this path
+ */
+_getWatchHelpers(path, depth) {
+ const watchPath = depth || this.options.disableGlobbing || !isGlob(path) ? path : globParent(path);
+ const follow = this.options.followSymlinks;
+
+ return new WatchHelper(path, watchPath, follow, this);
+}
+
+// Directory helpers
+// -----------------
+
+/**
+ * Provides directory tracking objects
+ * @param {String} directory path of the directory
+ * @returns {DirEntry} the directory's tracking object
+ */
+_getWatchedDir(directory) {
+ if (!this._boundRemove) this._boundRemove = this._remove.bind(this);
+ const dir = sysPath.resolve(directory);
+ if (!this._watched.has(dir)) this._watched.set(dir, new DirEntry(dir, this._boundRemove));
+ return this._watched.get(dir);
+}
+
+// File helpers
+// ------------
+
+/**
+ * Check for read permissions.
+ * Based on this answer on SO: https://stackoverflow.com/a/11781404/1358405
+ * @param {fs.Stats} stats - object, result of fs_stat
+ * @returns {Boolean} indicates whether the file can be read
+*/
+_hasReadPermissions(stats) {
+ if (this.options.ignorePermissionErrors) return true;
+
+ // stats.mode may be bigint
+ const md = stats && Number.parseInt(stats.mode, 10);
+ const st = md & 0o777;
+ const it = Number.parseInt(st.toString(8)[0], 10);
+ return Boolean(4 & it);
+}
+
+/**
+ * Handles emitting unlink events for
+ * files and directories, and via recursion, for
+ * files and directories within directories that are unlinked
+ * @param {String} directory within which the following item is located
+ * @param {String} item base path of item/directory
+ * @returns {void}
+*/
+_remove(directory, item, isDirectory) {
+ // if what is being deleted is a directory, get that directory's paths
+ // for recursive deleting and cleaning of watched object
+ // if it is not a directory, nestedDirectoryChildren will be empty array
+ const path = sysPath.join(directory, item);
+ const fullPath = sysPath.resolve(path);
+ isDirectory = isDirectory != null
+ ? isDirectory
+ : this._watched.has(path) || this._watched.has(fullPath);
+
+ // prevent duplicate handling in case of arriving here nearly simultaneously
+ // via multiple paths (such as _handleFile and _handleDir)
+ if (!this._throttle('remove', path, 100)) return;
+
+ // if the only watched file is removed, watch for its return
+ if (!isDirectory && !this.options.useFsEvents && this._watched.size === 1) {
+ this.add(directory, item, true);
+ }
+
+ // This will create a new entry in the watched object in either case
+ // so we got to do the directory check beforehand
+ const wp = this._getWatchedDir(path);
+ const nestedDirectoryChildren = wp.getChildren();
+
+ // Recursively remove children directories / files.
+ nestedDirectoryChildren.forEach(nested => this._remove(path, nested));
+
+ // Check if item was on the watched list and remove it
+ const parent = this._getWatchedDir(directory);
+ const wasTracked = parent.has(item);
+ parent.remove(item);
+
+ // Fixes issue #1042 -> Relative paths were detected and added as symlinks
+ // (https://github.com/paulmillr/chokidar/blob/e1753ddbc9571bdc33b4a4af172d52cb6e611c10/lib/nodefs-handler.js#L612),
+ // but never removed from the map in case the path was deleted.
+ // This leads to an incorrect state if the path was recreated:
+ // https://github.com/paulmillr/chokidar/blob/e1753ddbc9571bdc33b4a4af172d52cb6e611c10/lib/nodefs-handler.js#L553
+ if (this._symlinkPaths.has(fullPath)) {
+ this._symlinkPaths.delete(fullPath);
+ }
+
+ // If we wait for this file to be fully written, cancel the wait.
+ let relPath = path;
+ if (this.options.cwd) relPath = sysPath.relative(this.options.cwd, path);
+ if (this.options.awaitWriteFinish && this._pendingWrites.has(relPath)) {
+ const event = this._pendingWrites.get(relPath).cancelWait();
+ if (event === EV_ADD) return;
+ }
+
+ // The Entry will either be a directory that just got removed
+ // or a bogus entry to a file, in either case we have to remove it
+ this._watched.delete(path);
+ this._watched.delete(fullPath);
+ const eventName = isDirectory ? EV_UNLINK_DIR : EV_UNLINK;
+ if (wasTracked && !this._isIgnored(path)) this._emit(eventName, path);
+
+ // Avoid conflicts if we later create another file with the same name
+ if (!this.options.useFsEvents) {
+ this._closePath(path);
+ }
+}
+
+/**
+ * Closes all watchers for a path
+ * @param {Path} path
+ */
+_closePath(path) {
+ this._closeFile(path)
+ const dir = sysPath.dirname(path);
+ this._getWatchedDir(dir).remove(sysPath.basename(path));
+}
+
+/**
+ * Closes only file-specific watchers
+ * @param {Path} path
+ */
+_closeFile(path) {
+ const closers = this._closers.get(path);
+ if (!closers) return;
+ closers.forEach(closer => closer());
+ this._closers.delete(path);
+}
+
+/**
+ *
+ * @param {Path} path
+ * @param {Function} closer
+ */
+_addPathCloser(path, closer) {
+ if (!closer) return;
+ let list = this._closers.get(path);
+ if (!list) {
+ list = [];
+ this._closers.set(path, list);
+ }
+ list.push(closer);
+}
+
+_readdirp(root, opts) {
+ if (this.closed) return;
+ const options = {type: EV_ALL, alwaysStat: true, lstat: true, ...opts};
+ let stream = readdirp(root, options);
+ this._streams.add(stream);
+ stream.once(STR_CLOSE, () => {
+ stream = undefined;
+ });
+ stream.once(STR_END, () => {
+ if (stream) {
+ this._streams.delete(stream);
+ stream = undefined;
+ }
+ });
+ return stream;
+}
+
+}
+
+// Export FSWatcher class
+exports.FSWatcher = FSWatcher;
+
+/**
+ * Instantiates watcher with paths to be tracked.
+ * @param {String|Array} paths file/directory paths and/or globs
+ * @param {Object=} options chokidar opts
+ * @returns an instance of FSWatcher for chaining.
+ */
+const watch = (paths, options) => {
+ const watcher = new FSWatcher(options);
+ watcher.add(paths);
+ return watcher;
+};
+
+exports.watch = watch;
diff --git a/node_modules/chokidar/lib/constants.js b/node_modules/chokidar/lib/constants.js
new file mode 100644
index 0000000..1454f85
--- /dev/null
+++ b/node_modules/chokidar/lib/constants.js
@@ -0,0 +1,65 @@
+'use strict';
+
+const {sep} = require('path');
+const {platform} = process;
+const os = require('os');
+
+exports.EV_ALL = 'all';
+exports.EV_READY = 'ready';
+exports.EV_ADD = 'add';
+exports.EV_CHANGE = 'change';
+exports.EV_ADD_DIR = 'addDir';
+exports.EV_UNLINK = 'unlink';
+exports.EV_UNLINK_DIR = 'unlinkDir';
+exports.EV_RAW = 'raw';
+exports.EV_ERROR = 'error';
+
+exports.STR_DATA = 'data';
+exports.STR_END = 'end';
+exports.STR_CLOSE = 'close';
+
+exports.FSEVENT_CREATED = 'created';
+exports.FSEVENT_MODIFIED = 'modified';
+exports.FSEVENT_DELETED = 'deleted';
+exports.FSEVENT_MOVED = 'moved';
+exports.FSEVENT_CLONED = 'cloned';
+exports.FSEVENT_UNKNOWN = 'unknown';
+exports.FSEVENT_TYPE_FILE = 'file';
+exports.FSEVENT_TYPE_DIRECTORY = 'directory';
+exports.FSEVENT_TYPE_SYMLINK = 'symlink';
+
+exports.KEY_LISTENERS = 'listeners';
+exports.KEY_ERR = 'errHandlers';
+exports.KEY_RAW = 'rawEmitters';
+exports.HANDLER_KEYS = [exports.KEY_LISTENERS, exports.KEY_ERR, exports.KEY_RAW];
+
+exports.DOT_SLASH = `.${sep}`;
+
+exports.BACK_SLASH_RE = /\\/g;
+exports.DOUBLE_SLASH_RE = /\/\//;
+exports.SLASH_OR_BACK_SLASH_RE = /[/\\]/;
+exports.DOT_RE = /\..*\.(sw[px])$|~$|\.subl.*\.tmp/;
+exports.REPLACER_RE = /^\.[/\\]/;
+
+exports.SLASH = '/';
+exports.SLASH_SLASH = '//';
+exports.BRACE_START = '{';
+exports.BANG = '!';
+exports.ONE_DOT = '.';
+exports.TWO_DOTS = '..';
+exports.STAR = '*';
+exports.GLOBSTAR = '**';
+exports.ROOT_GLOBSTAR = '/**/*';
+exports.SLASH_GLOBSTAR = '/**';
+exports.DIR_SUFFIX = 'Dir';
+exports.ANYMATCH_OPTS = {dot: true};
+exports.STRING_TYPE = 'string';
+exports.FUNCTION_TYPE = 'function';
+exports.EMPTY_STR = '';
+exports.EMPTY_FN = () => {};
+exports.IDENTITY_FN = val => val;
+
+exports.isWindows = platform === 'win32';
+exports.isMacos = platform === 'darwin';
+exports.isLinux = platform === 'linux';
+exports.isIBMi = os.type() === 'OS400';
diff --git a/node_modules/chokidar/lib/fsevents-handler.js b/node_modules/chokidar/lib/fsevents-handler.js
new file mode 100644
index 0000000..0f7f2cb
--- /dev/null
+++ b/node_modules/chokidar/lib/fsevents-handler.js
@@ -0,0 +1,524 @@
+'use strict';
+
+const fs = require('fs');
+const sysPath = require('path');
+const { promisify } = require('util');
+
+let fsevents;
+try {
+ fsevents = require('fsevents');
+} catch (error) {
+ if (process.env.CHOKIDAR_PRINT_FSEVENTS_REQUIRE_ERROR) console.error(error);
+}
+
+if (fsevents) {
+ // TODO: real check
+ const mtch = process.version.match(/v(\d+)\.(\d+)/);
+ if (mtch && mtch[1] && mtch[2]) {
+ const maj = Number.parseInt(mtch[1], 10);
+ const min = Number.parseInt(mtch[2], 10);
+ if (maj === 8 && min < 16) {
+ fsevents = undefined;
+ }
+ }
+}
+
+const {
+ EV_ADD,
+ EV_CHANGE,
+ EV_ADD_DIR,
+ EV_UNLINK,
+ EV_ERROR,
+ STR_DATA,
+ STR_END,
+ FSEVENT_CREATED,
+ FSEVENT_MODIFIED,
+ FSEVENT_DELETED,
+ FSEVENT_MOVED,
+ // FSEVENT_CLONED,
+ FSEVENT_UNKNOWN,
+ FSEVENT_TYPE_FILE,
+ FSEVENT_TYPE_DIRECTORY,
+ FSEVENT_TYPE_SYMLINK,
+
+ ROOT_GLOBSTAR,
+ DIR_SUFFIX,
+ DOT_SLASH,
+ FUNCTION_TYPE,
+ EMPTY_FN,
+ IDENTITY_FN
+} = require('./constants');
+
+const Depth = (value) => isNaN(value) ? {} : {depth: value};
+
+const stat = promisify(fs.stat);
+const lstat = promisify(fs.lstat);
+const realpath = promisify(fs.realpath);
+
+const statMethods = { stat, lstat };
+
+/**
+ * @typedef {String} Path
+ */
+
+/**
+ * @typedef {Object} FsEventsWatchContainer
+ * @property {Set} listeners
+ * @property {Function} rawEmitter
+ * @property {{stop: Function}} watcher
+ */
+
+// fsevents instance helper functions
+/**
+ * Object to hold per-process fsevents instances (may be shared across chokidar FSWatcher instances)
+ * @type {Map}
+ */
+const FSEventsWatchers = new Map();
+
+// Threshold of duplicate path prefixes at which to start
+// consolidating going forward
+const consolidateThreshhold = 10;
+
+const wrongEventFlags = new Set([
+ 69888, 70400, 71424, 72704, 73472, 131328, 131840, 262912
+]);
+
+/**
+ * Instantiates the fsevents interface
+ * @param {Path} path path to be watched
+ * @param {Function} callback called when fsevents is bound and ready
+ * @returns {{stop: Function}} new fsevents instance
+ */
+const createFSEventsInstance = (path, callback) => {
+ const stop = fsevents.watch(path, callback);
+ return {stop};
+};
+
+/**
+ * Instantiates the fsevents interface or binds listeners to an existing one covering
+ * the same file tree.
+ * @param {Path} path - to be watched
+ * @param {Path} realPath - real path for symlinks
+ * @param {Function} listener - called when fsevents emits events
+ * @param {Function} rawEmitter - passes data to listeners of the 'raw' event
+ * @returns {Function} closer
+ */
+function setFSEventsListener(path, realPath, listener, rawEmitter) {
+ let watchPath = sysPath.extname(realPath) ? sysPath.dirname(realPath) : realPath;
+
+ const parentPath = sysPath.dirname(watchPath);
+ let cont = FSEventsWatchers.get(watchPath);
+
+ // If we've accumulated a substantial number of paths that
+ // could have been consolidated by watching one directory
+ // above the current one, create a watcher on the parent
+ // path instead, so that we do consolidate going forward.
+ if (couldConsolidate(parentPath)) {
+ watchPath = parentPath;
+ }
+
+ const resolvedPath = sysPath.resolve(path);
+ const hasSymlink = resolvedPath !== realPath;
+
+ const filteredListener = (fullPath, flags, info) => {
+ if (hasSymlink) fullPath = fullPath.replace(realPath, resolvedPath);
+ if (
+ fullPath === resolvedPath ||
+ !fullPath.indexOf(resolvedPath + sysPath.sep)
+ ) listener(fullPath, flags, info);
+ };
+
+ // check if there is already a watcher on a parent path
+ // modifies `watchPath` to the parent path when it finds a match
+ let watchedParent = false;
+ for (const watchedPath of FSEventsWatchers.keys()) {
+ if (realPath.indexOf(sysPath.resolve(watchedPath) + sysPath.sep) === 0) {
+ watchPath = watchedPath;
+ cont = FSEventsWatchers.get(watchPath);
+ watchedParent = true;
+ break;
+ }
+ }
+
+ if (cont || watchedParent) {
+ cont.listeners.add(filteredListener);
+ } else {
+ cont = {
+ listeners: new Set([filteredListener]),
+ rawEmitter,
+ watcher: createFSEventsInstance(watchPath, (fullPath, flags) => {
+ if (!cont.listeners.size) return;
+ const info = fsevents.getInfo(fullPath, flags);
+ cont.listeners.forEach(list => {
+ list(fullPath, flags, info);
+ });
+
+ cont.rawEmitter(info.event, fullPath, info);
+ })
+ };
+ FSEventsWatchers.set(watchPath, cont);
+ }
+
+ // removes this instance's listeners and closes the underlying fsevents
+ // instance if there are no more listeners left
+ return () => {
+ const lst = cont.listeners;
+
+ lst.delete(filteredListener);
+ if (!lst.size) {
+ FSEventsWatchers.delete(watchPath);
+ if (cont.watcher) return cont.watcher.stop().then(() => {
+ cont.rawEmitter = cont.watcher = undefined;
+ Object.freeze(cont);
+ });
+ }
+ };
+}
+
+// Decide whether or not we should start a new higher-level
+// parent watcher
+const couldConsolidate = (path) => {
+ let count = 0;
+ for (const watchPath of FSEventsWatchers.keys()) {
+ if (watchPath.indexOf(path) === 0) {
+ count++;
+ if (count >= consolidateThreshhold) {
+ return true;
+ }
+ }
+ }
+
+ return false;
+};
+
+// returns boolean indicating whether fsevents can be used
+const canUse = () => fsevents && FSEventsWatchers.size < 128;
+
+// determines subdirectory traversal levels from root to path
+const calcDepth = (path, root) => {
+ let i = 0;
+ while (!path.indexOf(root) && (path = sysPath.dirname(path)) !== root) i++;
+ return i;
+};
+
+// returns boolean indicating whether the fsevents' event info has the same type
+// as the one returned by fs.stat
+const sameTypes = (info, stats) => (
+ info.type === FSEVENT_TYPE_DIRECTORY && stats.isDirectory() ||
+ info.type === FSEVENT_TYPE_SYMLINK && stats.isSymbolicLink() ||
+ info.type === FSEVENT_TYPE_FILE && stats.isFile()
+)
+
+/**
+ * @mixin
+ */
+class FsEventsHandler {
+
+/**
+ * @param {import('../index').FSWatcher} fsw
+ */
+constructor(fsw) {
+ this.fsw = fsw;
+}
+checkIgnored(path, stats) {
+ const ipaths = this.fsw._ignoredPaths;
+ if (this.fsw._isIgnored(path, stats)) {
+ ipaths.add(path);
+ if (stats && stats.isDirectory()) {
+ ipaths.add(path + ROOT_GLOBSTAR);
+ }
+ return true;
+ }
+
+ ipaths.delete(path);
+ ipaths.delete(path + ROOT_GLOBSTAR);
+}
+
+addOrChange(path, fullPath, realPath, parent, watchedDir, item, info, opts) {
+ const event = watchedDir.has(item) ? EV_CHANGE : EV_ADD;
+ this.handleEvent(event, path, fullPath, realPath, parent, watchedDir, item, info, opts);
+}
+
+async checkExists(path, fullPath, realPath, parent, watchedDir, item, info, opts) {
+ try {
+ const stats = await stat(path)
+ if (this.fsw.closed) return;
+ if (sameTypes(info, stats)) {
+ this.addOrChange(path, fullPath, realPath, parent, watchedDir, item, info, opts);
+ } else {
+ this.handleEvent(EV_UNLINK, path, fullPath, realPath, parent, watchedDir, item, info, opts);
+ }
+ } catch (error) {
+ if (error.code === 'EACCES') {
+ this.addOrChange(path, fullPath, realPath, parent, watchedDir, item, info, opts);
+ } else {
+ this.handleEvent(EV_UNLINK, path, fullPath, realPath, parent, watchedDir, item, info, opts);
+ }
+ }
+}
+
+handleEvent(event, path, fullPath, realPath, parent, watchedDir, item, info, opts) {
+ if (this.fsw.closed || this.checkIgnored(path)) return;
+
+ if (event === EV_UNLINK) {
+ const isDirectory = info.type === FSEVENT_TYPE_DIRECTORY
+ // suppress unlink events on never before seen files
+ if (isDirectory || watchedDir.has(item)) {
+ this.fsw._remove(parent, item, isDirectory);
+ }
+ } else {
+ if (event === EV_ADD) {
+ // track new directories
+ if (info.type === FSEVENT_TYPE_DIRECTORY) this.fsw._getWatchedDir(path);
+
+ if (info.type === FSEVENT_TYPE_SYMLINK && opts.followSymlinks) {
+ // push symlinks back to the top of the stack to get handled
+ const curDepth = opts.depth === undefined ?
+ undefined : calcDepth(fullPath, realPath) + 1;
+ return this._addToFsEvents(path, false, true, curDepth);
+ }
+
+ // track new paths
+ // (other than symlinks being followed, which will be tracked soon)
+ this.fsw._getWatchedDir(parent).add(item);
+ }
+ /**
+ * @type {'add'|'addDir'|'unlink'|'unlinkDir'}
+ */
+ const eventName = info.type === FSEVENT_TYPE_DIRECTORY ? event + DIR_SUFFIX : event;
+ this.fsw._emit(eventName, path);
+ if (eventName === EV_ADD_DIR) this._addToFsEvents(path, false, true);
+ }
+}
+
+/**
+ * Handle symlinks encountered during directory scan
+ * @param {String} watchPath - file/dir path to be watched with fsevents
+ * @param {String} realPath - real path (in case of symlinks)
+ * @param {Function} transform - path transformer
+ * @param {Function} globFilter - path filter in case a glob pattern was provided
+ * @returns {Function} closer for the watcher instance
+*/
+_watchWithFsEvents(watchPath, realPath, transform, globFilter) {
+ if (this.fsw.closed || this.fsw._isIgnored(watchPath)) return;
+ const opts = this.fsw.options;
+ const watchCallback = async (fullPath, flags, info) => {
+ if (this.fsw.closed) return;
+ if (
+ opts.depth !== undefined &&
+ calcDepth(fullPath, realPath) > opts.depth
+ ) return;
+ const path = transform(sysPath.join(
+ watchPath, sysPath.relative(watchPath, fullPath)
+ ));
+ if (globFilter && !globFilter(path)) return;
+ // ensure directories are tracked
+ const parent = sysPath.dirname(path);
+ const item = sysPath.basename(path);
+ const watchedDir = this.fsw._getWatchedDir(
+ info.type === FSEVENT_TYPE_DIRECTORY ? path : parent
+ );
+
+ // correct for wrong events emitted
+ if (wrongEventFlags.has(flags) || info.event === FSEVENT_UNKNOWN) {
+ if (typeof opts.ignored === FUNCTION_TYPE) {
+ let stats;
+ try {
+ stats = await stat(path);
+ } catch (error) {}
+ if (this.fsw.closed) return;
+ if (this.checkIgnored(path, stats)) return;
+ if (sameTypes(info, stats)) {
+ this.addOrChange(path, fullPath, realPath, parent, watchedDir, item, info, opts);
+ } else {
+ this.handleEvent(EV_UNLINK, path, fullPath, realPath, parent, watchedDir, item, info, opts);
+ }
+ } else {
+ this.checkExists(path, fullPath, realPath, parent, watchedDir, item, info, opts);
+ }
+ } else {
+ switch (info.event) {
+ case FSEVENT_CREATED:
+ case FSEVENT_MODIFIED:
+ return this.addOrChange(path, fullPath, realPath, parent, watchedDir, item, info, opts);
+ case FSEVENT_DELETED:
+ case FSEVENT_MOVED:
+ return this.checkExists(path, fullPath, realPath, parent, watchedDir, item, info, opts);
+ }
+ }
+ };
+
+ const closer = setFSEventsListener(
+ watchPath,
+ realPath,
+ watchCallback,
+ this.fsw._emitRaw
+ );
+
+ this.fsw._emitReady();
+ return closer;
+}
+
+/**
+ * Handle symlinks encountered during directory scan
+ * @param {String} linkPath path to symlink
+ * @param {String} fullPath absolute path to the symlink
+ * @param {Function} transform pre-existing path transformer
+ * @param {Number} curDepth level of subdirectories traversed to where symlink is
+ * @returns {Promise}
+ */
+async _handleFsEventsSymlink(linkPath, fullPath, transform, curDepth) {
+ // don't follow the same symlink more than once
+ if (this.fsw.closed || this.fsw._symlinkPaths.has(fullPath)) return;
+
+ this.fsw._symlinkPaths.set(fullPath, true);
+ this.fsw._incrReadyCount();
+
+ try {
+ const linkTarget = await realpath(linkPath);
+ if (this.fsw.closed) return;
+ if (this.fsw._isIgnored(linkTarget)) {
+ return this.fsw._emitReady();
+ }
+
+ this.fsw._incrReadyCount();
+
+ // add the linkTarget for watching with a wrapper for transform
+ // that causes emitted paths to incorporate the link's path
+ this._addToFsEvents(linkTarget || linkPath, (path) => {
+ let aliasedPath = linkPath;
+ if (linkTarget && linkTarget !== DOT_SLASH) {
+ aliasedPath = path.replace(linkTarget, linkPath);
+ } else if (path !== DOT_SLASH) {
+ aliasedPath = sysPath.join(linkPath, path);
+ }
+ return transform(aliasedPath);
+ }, false, curDepth);
+ } catch(error) {
+ if (this.fsw._handleError(error)) {
+ return this.fsw._emitReady();
+ }
+ }
+}
+
+/**
+ *
+ * @param {Path} newPath
+ * @param {fs.Stats} stats
+ */
+emitAdd(newPath, stats, processPath, opts, forceAdd) {
+ const pp = processPath(newPath);
+ const isDir = stats.isDirectory();
+ const dirObj = this.fsw._getWatchedDir(sysPath.dirname(pp));
+ const base = sysPath.basename(pp);
+
+ // ensure empty dirs get tracked
+ if (isDir) this.fsw._getWatchedDir(pp);
+ if (dirObj.has(base)) return;
+ dirObj.add(base);
+
+ if (!opts.ignoreInitial || forceAdd === true) {
+ this.fsw._emit(isDir ? EV_ADD_DIR : EV_ADD, pp, stats);
+ }
+}
+
+initWatch(realPath, path, wh, processPath) {
+ if (this.fsw.closed) return;
+ const closer = this._watchWithFsEvents(
+ wh.watchPath,
+ sysPath.resolve(realPath || wh.watchPath),
+ processPath,
+ wh.globFilter
+ );
+ this.fsw._addPathCloser(path, closer);
+}
+
+/**
+ * Handle added path with fsevents
+ * @param {String} path file/dir path or glob pattern
+ * @param {Function|Boolean=} transform converts working path to what the user expects
+ * @param {Boolean=} forceAdd ensure add is emitted
+ * @param {Number=} priorDepth Level of subdirectories already traversed.
+ * @returns {Promise}
+ */
+async _addToFsEvents(path, transform, forceAdd, priorDepth) {
+ if (this.fsw.closed) {
+ return;
+ }
+ const opts = this.fsw.options;
+ const processPath = typeof transform === FUNCTION_TYPE ? transform : IDENTITY_FN;
+
+ const wh = this.fsw._getWatchHelpers(path);
+
+ // evaluate what is at the path we're being asked to watch
+ try {
+ const stats = await statMethods[wh.statMethod](wh.watchPath);
+ if (this.fsw.closed) return;
+ if (this.fsw._isIgnored(wh.watchPath, stats)) {
+ throw null;
+ }
+ if (stats.isDirectory()) {
+ // emit addDir unless this is a glob parent
+ if (!wh.globFilter) this.emitAdd(processPath(path), stats, processPath, opts, forceAdd);
+
+ // don't recurse further if it would exceed depth setting
+ if (priorDepth && priorDepth > opts.depth) return;
+
+ // scan the contents of the dir
+ this.fsw._readdirp(wh.watchPath, {
+ fileFilter: entry => wh.filterPath(entry),
+ directoryFilter: entry => wh.filterDir(entry),
+ ...Depth(opts.depth - (priorDepth || 0))
+ }).on(STR_DATA, (entry) => {
+ // need to check filterPath on dirs b/c filterDir is less restrictive
+ if (this.fsw.closed) {
+ return;
+ }
+ if (entry.stats.isDirectory() && !wh.filterPath(entry)) return;
+
+ const joinedPath = sysPath.join(wh.watchPath, entry.path);
+ const {fullPath} = entry;
+
+ if (wh.followSymlinks && entry.stats.isSymbolicLink()) {
+ // preserve the current depth here since it can't be derived from
+ // real paths past the symlink
+ const curDepth = opts.depth === undefined ?
+ undefined : calcDepth(joinedPath, sysPath.resolve(wh.watchPath)) + 1;
+
+ this._handleFsEventsSymlink(joinedPath, fullPath, processPath, curDepth);
+ } else {
+ this.emitAdd(joinedPath, entry.stats, processPath, opts, forceAdd);
+ }
+ }).on(EV_ERROR, EMPTY_FN).on(STR_END, () => {
+ this.fsw._emitReady();
+ });
+ } else {
+ this.emitAdd(wh.watchPath, stats, processPath, opts, forceAdd);
+ this.fsw._emitReady();
+ }
+ } catch (error) {
+ if (!error || this.fsw._handleError(error)) {
+ // TODO: Strange thing: "should not choke on an ignored watch path" will be failed without 2 ready calls -__-
+ this.fsw._emitReady();
+ this.fsw._emitReady();
+ }
+ }
+
+ if (opts.persistent && forceAdd !== true) {
+ if (typeof transform === FUNCTION_TYPE) {
+ // realpath has already been resolved
+ this.initWatch(undefined, path, wh, processPath);
+ } else {
+ let realPath;
+ try {
+ realPath = await realpath(wh.watchPath);
+ } catch (e) {}
+ this.initWatch(realPath, path, wh, processPath);
+ }
+ }
+}
+
+}
+
+module.exports = FsEventsHandler;
+module.exports.canUse = canUse;
diff --git a/node_modules/chokidar/lib/nodefs-handler.js b/node_modules/chokidar/lib/nodefs-handler.js
new file mode 100644
index 0000000..199cfe9
--- /dev/null
+++ b/node_modules/chokidar/lib/nodefs-handler.js
@@ -0,0 +1,654 @@
+'use strict';
+
+const fs = require('fs');
+const sysPath = require('path');
+const { promisify } = require('util');
+const isBinaryPath = require('is-binary-path');
+const {
+ isWindows,
+ isLinux,
+ EMPTY_FN,
+ EMPTY_STR,
+ KEY_LISTENERS,
+ KEY_ERR,
+ KEY_RAW,
+ HANDLER_KEYS,
+ EV_CHANGE,
+ EV_ADD,
+ EV_ADD_DIR,
+ EV_ERROR,
+ STR_DATA,
+ STR_END,
+ BRACE_START,
+ STAR
+} = require('./constants');
+
+const THROTTLE_MODE_WATCH = 'watch';
+
+const open = promisify(fs.open);
+const stat = promisify(fs.stat);
+const lstat = promisify(fs.lstat);
+const close = promisify(fs.close);
+const fsrealpath = promisify(fs.realpath);
+
+const statMethods = { lstat, stat };
+
+// TODO: emit errors properly. Example: EMFILE on Macos.
+const foreach = (val, fn) => {
+ if (val instanceof Set) {
+ val.forEach(fn);
+ } else {
+ fn(val);
+ }
+};
+
+const addAndConvert = (main, prop, item) => {
+ let container = main[prop];
+ if (!(container instanceof Set)) {
+ main[prop] = container = new Set([container]);
+ }
+ container.add(item);
+};
+
+const clearItem = cont => key => {
+ const set = cont[key];
+ if (set instanceof Set) {
+ set.clear();
+ } else {
+ delete cont[key];
+ }
+};
+
+const delFromSet = (main, prop, item) => {
+ const container = main[prop];
+ if (container instanceof Set) {
+ container.delete(item);
+ } else if (container === item) {
+ delete main[prop];
+ }
+};
+
+const isEmptySet = (val) => val instanceof Set ? val.size === 0 : !val;
+
+/**
+ * @typedef {String} Path
+ */
+
+// fs_watch helpers
+
+// object to hold per-process fs_watch instances
+// (may be shared across chokidar FSWatcher instances)
+
+/**
+ * @typedef {Object} FsWatchContainer
+ * @property {Set} listeners
+ * @property {Set} errHandlers
+ * @property {Set} rawEmitters
+ * @property {fs.FSWatcher=} watcher
+ * @property {Boolean=} watcherUnusable
+ */
+
+/**
+ * @type {Map}
+ */
+const FsWatchInstances = new Map();
+
+/**
+ * Instantiates the fs_watch interface
+ * @param {String} path to be watched
+ * @param {Object} options to be passed to fs_watch
+ * @param {Function} listener main event handler
+ * @param {Function} errHandler emits info about errors
+ * @param {Function} emitRaw emits raw event data
+ * @returns {fs.FSWatcher} new fsevents instance
+ */
+function createFsWatchInstance(path, options, listener, errHandler, emitRaw) {
+ const handleEvent = (rawEvent, evPath) => {
+ listener(path);
+ emitRaw(rawEvent, evPath, {watchedPath: path});
+
+ // emit based on events occurring for files from a directory's watcher in
+ // case the file's watcher misses it (and rely on throttling to de-dupe)
+ if (evPath && path !== evPath) {
+ fsWatchBroadcast(
+ sysPath.resolve(path, evPath), KEY_LISTENERS, sysPath.join(path, evPath)
+ );
+ }
+ };
+ try {
+ return fs.watch(path, options, handleEvent);
+ } catch (error) {
+ errHandler(error);
+ }
+}
+
+/**
+ * Helper for passing fs_watch event data to a collection of listeners
+ * @param {Path} fullPath absolute path bound to fs_watch instance
+ * @param {String} type listener type
+ * @param {*=} val1 arguments to be passed to listeners
+ * @param {*=} val2
+ * @param {*=} val3
+ */
+const fsWatchBroadcast = (fullPath, type, val1, val2, val3) => {
+ const cont = FsWatchInstances.get(fullPath);
+ if (!cont) return;
+ foreach(cont[type], (listener) => {
+ listener(val1, val2, val3);
+ });
+};
+
+/**
+ * Instantiates the fs_watch interface or binds listeners
+ * to an existing one covering the same file system entry
+ * @param {String} path
+ * @param {String} fullPath absolute path
+ * @param {Object} options to be passed to fs_watch
+ * @param {Object} handlers container for event listener functions
+ */
+const setFsWatchListener = (path, fullPath, options, handlers) => {
+ const {listener, errHandler, rawEmitter} = handlers;
+ let cont = FsWatchInstances.get(fullPath);
+
+ /** @type {fs.FSWatcher=} */
+ let watcher;
+ if (!options.persistent) {
+ watcher = createFsWatchInstance(
+ path, options, listener, errHandler, rawEmitter
+ );
+ return watcher.close.bind(watcher);
+ }
+ if (cont) {
+ addAndConvert(cont, KEY_LISTENERS, listener);
+ addAndConvert(cont, KEY_ERR, errHandler);
+ addAndConvert(cont, KEY_RAW, rawEmitter);
+ } else {
+ watcher = createFsWatchInstance(
+ path,
+ options,
+ fsWatchBroadcast.bind(null, fullPath, KEY_LISTENERS),
+ errHandler, // no need to use broadcast here
+ fsWatchBroadcast.bind(null, fullPath, KEY_RAW)
+ );
+ if (!watcher) return;
+ watcher.on(EV_ERROR, async (error) => {
+ const broadcastErr = fsWatchBroadcast.bind(null, fullPath, KEY_ERR);
+ cont.watcherUnusable = true; // documented since Node 10.4.1
+ // Workaround for https://github.com/joyent/node/issues/4337
+ if (isWindows && error.code === 'EPERM') {
+ try {
+ const fd = await open(path, 'r');
+ await close(fd);
+ broadcastErr(error);
+ } catch (err) {}
+ } else {
+ broadcastErr(error);
+ }
+ });
+ cont = {
+ listeners: listener,
+ errHandlers: errHandler,
+ rawEmitters: rawEmitter,
+ watcher
+ };
+ FsWatchInstances.set(fullPath, cont);
+ }
+ // const index = cont.listeners.indexOf(listener);
+
+ // removes this instance's listeners and closes the underlying fs_watch
+ // instance if there are no more listeners left
+ return () => {
+ delFromSet(cont, KEY_LISTENERS, listener);
+ delFromSet(cont, KEY_ERR, errHandler);
+ delFromSet(cont, KEY_RAW, rawEmitter);
+ if (isEmptySet(cont.listeners)) {
+ // Check to protect against issue gh-730.
+ // if (cont.watcherUnusable) {
+ cont.watcher.close();
+ // }
+ FsWatchInstances.delete(fullPath);
+ HANDLER_KEYS.forEach(clearItem(cont));
+ cont.watcher = undefined;
+ Object.freeze(cont);
+ }
+ };
+};
+
+// fs_watchFile helpers
+
+// object to hold per-process fs_watchFile instances
+// (may be shared across chokidar FSWatcher instances)
+const FsWatchFileInstances = new Map();
+
+/**
+ * Instantiates the fs_watchFile interface or binds listeners
+ * to an existing one covering the same file system entry
+ * @param {String} path to be watched
+ * @param {String} fullPath absolute path
+ * @param {Object} options options to be passed to fs_watchFile
+ * @param {Object} handlers container for event listener functions
+ * @returns {Function} closer
+ */
+const setFsWatchFileListener = (path, fullPath, options, handlers) => {
+ const {listener, rawEmitter} = handlers;
+ let cont = FsWatchFileInstances.get(fullPath);
+
+ /* eslint-disable no-unused-vars, prefer-destructuring */
+ let listeners = new Set();
+ let rawEmitters = new Set();
+
+ const copts = cont && cont.options;
+ if (copts && (copts.persistent < options.persistent || copts.interval > options.interval)) {
+ // "Upgrade" the watcher to persistence or a quicker interval.
+ // This creates some unlikely edge case issues if the user mixes
+ // settings in a very weird way, but solving for those cases
+ // doesn't seem worthwhile for the added complexity.
+ listeners = cont.listeners;
+ rawEmitters = cont.rawEmitters;
+ fs.unwatchFile(fullPath);
+ cont = undefined;
+ }
+
+ /* eslint-enable no-unused-vars, prefer-destructuring */
+
+ if (cont) {
+ addAndConvert(cont, KEY_LISTENERS, listener);
+ addAndConvert(cont, KEY_RAW, rawEmitter);
+ } else {
+ // TODO
+ // listeners.add(listener);
+ // rawEmitters.add(rawEmitter);
+ cont = {
+ listeners: listener,
+ rawEmitters: rawEmitter,
+ options,
+ watcher: fs.watchFile(fullPath, options, (curr, prev) => {
+ foreach(cont.rawEmitters, (rawEmitter) => {
+ rawEmitter(EV_CHANGE, fullPath, {curr, prev});
+ });
+ const currmtime = curr.mtimeMs;
+ if (curr.size !== prev.size || currmtime > prev.mtimeMs || currmtime === 0) {
+ foreach(cont.listeners, (listener) => listener(path, curr));
+ }
+ })
+ };
+ FsWatchFileInstances.set(fullPath, cont);
+ }
+ // const index = cont.listeners.indexOf(listener);
+
+ // Removes this instance's listeners and closes the underlying fs_watchFile
+ // instance if there are no more listeners left.
+ return () => {
+ delFromSet(cont, KEY_LISTENERS, listener);
+ delFromSet(cont, KEY_RAW, rawEmitter);
+ if (isEmptySet(cont.listeners)) {
+ FsWatchFileInstances.delete(fullPath);
+ fs.unwatchFile(fullPath);
+ cont.options = cont.watcher = undefined;
+ Object.freeze(cont);
+ }
+ };
+};
+
+/**
+ * @mixin
+ */
+class NodeFsHandler {
+
+/**
+ * @param {import("../index").FSWatcher} fsW
+ */
+constructor(fsW) {
+ this.fsw = fsW;
+ this._boundHandleError = (error) => fsW._handleError(error);
+}
+
+/**
+ * Watch file for changes with fs_watchFile or fs_watch.
+ * @param {String} path to file or dir
+ * @param {Function} listener on fs change
+ * @returns {Function} closer for the watcher instance
+ */
+_watchWithNodeFs(path, listener) {
+ const opts = this.fsw.options;
+ const directory = sysPath.dirname(path);
+ const basename = sysPath.basename(path);
+ const parent = this.fsw._getWatchedDir(directory);
+ parent.add(basename);
+ const absolutePath = sysPath.resolve(path);
+ const options = {persistent: opts.persistent};
+ if (!listener) listener = EMPTY_FN;
+
+ let closer;
+ if (opts.usePolling) {
+ options.interval = opts.enableBinaryInterval && isBinaryPath(basename) ?
+ opts.binaryInterval : opts.interval;
+ closer = setFsWatchFileListener(path, absolutePath, options, {
+ listener,
+ rawEmitter: this.fsw._emitRaw
+ });
+ } else {
+ closer = setFsWatchListener(path, absolutePath, options, {
+ listener,
+ errHandler: this._boundHandleError,
+ rawEmitter: this.fsw._emitRaw
+ });
+ }
+ return closer;
+}
+
+/**
+ * Watch a file and emit add event if warranted.
+ * @param {Path} file Path
+ * @param {fs.Stats} stats result of fs_stat
+ * @param {Boolean} initialAdd was the file added at watch instantiation?
+ * @returns {Function} closer for the watcher instance
+ */
+_handleFile(file, stats, initialAdd) {
+ if (this.fsw.closed) {
+ return;
+ }
+ const dirname = sysPath.dirname(file);
+ const basename = sysPath.basename(file);
+ const parent = this.fsw._getWatchedDir(dirname);
+ // stats is always present
+ let prevStats = stats;
+
+ // if the file is already being watched, do nothing
+ if (parent.has(basename)) return;
+
+ const listener = async (path, newStats) => {
+ if (!this.fsw._throttle(THROTTLE_MODE_WATCH, file, 5)) return;
+ if (!newStats || newStats.mtimeMs === 0) {
+ try {
+ const newStats = await stat(file);
+ if (this.fsw.closed) return;
+ // Check that change event was not fired because of changed only accessTime.
+ const at = newStats.atimeMs;
+ const mt = newStats.mtimeMs;
+ if (!at || at <= mt || mt !== prevStats.mtimeMs) {
+ this.fsw._emit(EV_CHANGE, file, newStats);
+ }
+ if (isLinux && prevStats.ino !== newStats.ino) {
+ this.fsw._closeFile(path)
+ prevStats = newStats;
+ this.fsw._addPathCloser(path, this._watchWithNodeFs(file, listener));
+ } else {
+ prevStats = newStats;
+ }
+ } catch (error) {
+ // Fix issues where mtime is null but file is still present
+ this.fsw._remove(dirname, basename);
+ }
+ // add is about to be emitted if file not already tracked in parent
+ } else if (parent.has(basename)) {
+ // Check that change event was not fired because of changed only accessTime.
+ const at = newStats.atimeMs;
+ const mt = newStats.mtimeMs;
+ if (!at || at <= mt || mt !== prevStats.mtimeMs) {
+ this.fsw._emit(EV_CHANGE, file, newStats);
+ }
+ prevStats = newStats;
+ }
+ }
+ // kick off the watcher
+ const closer = this._watchWithNodeFs(file, listener);
+
+ // emit an add event if we're supposed to
+ if (!(initialAdd && this.fsw.options.ignoreInitial) && this.fsw._isntIgnored(file)) {
+ if (!this.fsw._throttle(EV_ADD, file, 0)) return;
+ this.fsw._emit(EV_ADD, file, stats);
+ }
+
+ return closer;
+}
+
+/**
+ * Handle symlinks encountered while reading a dir.
+ * @param {Object} entry returned by readdirp
+ * @param {String} directory path of dir being read
+ * @param {String} path of this item
+ * @param {String} item basename of this item
+ * @returns {Promise} true if no more processing is needed for this entry.
+ */
+async _handleSymlink(entry, directory, path, item) {
+ if (this.fsw.closed) {
+ return;
+ }
+ const full = entry.fullPath;
+ const dir = this.fsw._getWatchedDir(directory);
+
+ if (!this.fsw.options.followSymlinks) {
+ // watch symlink directly (don't follow) and detect changes
+ this.fsw._incrReadyCount();
+
+ let linkPath;
+ try {
+ linkPath = await fsrealpath(path);
+ } catch (e) {
+ this.fsw._emitReady();
+ return true;
+ }
+
+ if (this.fsw.closed) return;
+ if (dir.has(item)) {
+ if (this.fsw._symlinkPaths.get(full) !== linkPath) {
+ this.fsw._symlinkPaths.set(full, linkPath);
+ this.fsw._emit(EV_CHANGE, path, entry.stats);
+ }
+ } else {
+ dir.add(item);
+ this.fsw._symlinkPaths.set(full, linkPath);
+ this.fsw._emit(EV_ADD, path, entry.stats);
+ }
+ this.fsw._emitReady();
+ return true;
+ }
+
+ // don't follow the same symlink more than once
+ if (this.fsw._symlinkPaths.has(full)) {
+ return true;
+ }
+
+ this.fsw._symlinkPaths.set(full, true);
+}
+
+_handleRead(directory, initialAdd, wh, target, dir, depth, throttler) {
+ // Normalize the directory name on Windows
+ directory = sysPath.join(directory, EMPTY_STR);
+
+ if (!wh.hasGlob) {
+ throttler = this.fsw._throttle('readdir', directory, 1000);
+ if (!throttler) return;
+ }
+
+ const previous = this.fsw._getWatchedDir(wh.path);
+ const current = new Set();
+
+ let stream = this.fsw._readdirp(directory, {
+ fileFilter: entry => wh.filterPath(entry),
+ directoryFilter: entry => wh.filterDir(entry),
+ depth: 0
+ }).on(STR_DATA, async (entry) => {
+ if (this.fsw.closed) {
+ stream = undefined;
+ return;
+ }
+ const item = entry.path;
+ let path = sysPath.join(directory, item);
+ current.add(item);
+
+ if (entry.stats.isSymbolicLink() && await this._handleSymlink(entry, directory, path, item)) {
+ return;
+ }
+
+ if (this.fsw.closed) {
+ stream = undefined;
+ return;
+ }
+ // Files that present in current directory snapshot
+ // but absent in previous are added to watch list and
+ // emit `add` event.
+ if (item === target || !target && !previous.has(item)) {
+ this.fsw._incrReadyCount();
+
+ // ensure relativeness of path is preserved in case of watcher reuse
+ path = sysPath.join(dir, sysPath.relative(dir, path));
+
+ this._addToNodeFs(path, initialAdd, wh, depth + 1);
+ }
+ }).on(EV_ERROR, this._boundHandleError);
+
+ return new Promise(resolve =>
+ stream.once(STR_END, () => {
+ if (this.fsw.closed) {
+ stream = undefined;
+ return;
+ }
+ const wasThrottled = throttler ? throttler.clear() : false;
+
+ resolve();
+
+ // Files that absent in current directory snapshot
+ // but present in previous emit `remove` event
+ // and are removed from @watched[directory].
+ previous.getChildren().filter((item) => {
+ return item !== directory &&
+ !current.has(item) &&
+ // in case of intersecting globs;
+ // a path may have been filtered out of this readdir, but
+ // shouldn't be removed because it matches a different glob
+ (!wh.hasGlob || wh.filterPath({
+ fullPath: sysPath.resolve(directory, item)
+ }));
+ }).forEach((item) => {
+ this.fsw._remove(directory, item);
+ });
+
+ stream = undefined;
+
+ // one more time for any missed in case changes came in extremely quickly
+ if (wasThrottled) this._handleRead(directory, false, wh, target, dir, depth, throttler);
+ })
+ );
+}
+
+/**
+ * Read directory to add / remove files from `@watched` list and re-read it on change.
+ * @param {String} dir fs path
+ * @param {fs.Stats} stats
+ * @param {Boolean} initialAdd
+ * @param {Number} depth relative to user-supplied path
+ * @param {String} target child path targeted for watch
+ * @param {Object} wh Common watch helpers for this path
+ * @param {String} realpath
+ * @returns {Promise} closer for the watcher instance.
+ */
+async _handleDir(dir, stats, initialAdd, depth, target, wh, realpath) {
+ const parentDir = this.fsw._getWatchedDir(sysPath.dirname(dir));
+ const tracked = parentDir.has(sysPath.basename(dir));
+ if (!(initialAdd && this.fsw.options.ignoreInitial) && !target && !tracked) {
+ if (!wh.hasGlob || wh.globFilter(dir)) this.fsw._emit(EV_ADD_DIR, dir, stats);
+ }
+
+ // ensure dir is tracked (harmless if redundant)
+ parentDir.add(sysPath.basename(dir));
+ this.fsw._getWatchedDir(dir);
+ let throttler;
+ let closer;
+
+ const oDepth = this.fsw.options.depth;
+ if ((oDepth == null || depth <= oDepth) && !this.fsw._symlinkPaths.has(realpath)) {
+ if (!target) {
+ await this._handleRead(dir, initialAdd, wh, target, dir, depth, throttler);
+ if (this.fsw.closed) return;
+ }
+
+ closer = this._watchWithNodeFs(dir, (dirPath, stats) => {
+ // if current directory is removed, do nothing
+ if (stats && stats.mtimeMs === 0) return;
+
+ this._handleRead(dirPath, false, wh, target, dir, depth, throttler);
+ });
+ }
+ return closer;
+}
+
+/**
+ * Handle added file, directory, or glob pattern.
+ * Delegates call to _handleFile / _handleDir after checks.
+ * @param {String} path to file or ir
+ * @param {Boolean} initialAdd was the file added at watch instantiation?
+ * @param {Object} priorWh depth relative to user-supplied path
+ * @param {Number} depth Child path actually targeted for watch
+ * @param {String=} target Child path actually targeted for watch
+ * @returns {Promise}
+ */
+async _addToNodeFs(path, initialAdd, priorWh, depth, target) {
+ const ready = this.fsw._emitReady;
+ if (this.fsw._isIgnored(path) || this.fsw.closed) {
+ ready();
+ return false;
+ }
+
+ const wh = this.fsw._getWatchHelpers(path, depth);
+ if (!wh.hasGlob && priorWh) {
+ wh.hasGlob = priorWh.hasGlob;
+ wh.globFilter = priorWh.globFilter;
+ wh.filterPath = entry => priorWh.filterPath(entry);
+ wh.filterDir = entry => priorWh.filterDir(entry);
+ }
+
+ // evaluate what is at the path we're being asked to watch
+ try {
+ const stats = await statMethods[wh.statMethod](wh.watchPath);
+ if (this.fsw.closed) return;
+ if (this.fsw._isIgnored(wh.watchPath, stats)) {
+ ready();
+ return false;
+ }
+
+ const follow = this.fsw.options.followSymlinks && !path.includes(STAR) && !path.includes(BRACE_START);
+ let closer;
+ if (stats.isDirectory()) {
+ const absPath = sysPath.resolve(path);
+ const targetPath = follow ? await fsrealpath(path) : path;
+ if (this.fsw.closed) return;
+ closer = await this._handleDir(wh.watchPath, stats, initialAdd, depth, target, wh, targetPath);
+ if (this.fsw.closed) return;
+ // preserve this symlink's target path
+ if (absPath !== targetPath && targetPath !== undefined) {
+ this.fsw._symlinkPaths.set(absPath, targetPath);
+ }
+ } else if (stats.isSymbolicLink()) {
+ const targetPath = follow ? await fsrealpath(path) : path;
+ if (this.fsw.closed) return;
+ const parent = sysPath.dirname(wh.watchPath);
+ this.fsw._getWatchedDir(parent).add(wh.watchPath);
+ this.fsw._emit(EV_ADD, wh.watchPath, stats);
+ closer = await this._handleDir(parent, stats, initialAdd, depth, path, wh, targetPath);
+ if (this.fsw.closed) return;
+
+ // preserve this symlink's target path
+ if (targetPath !== undefined) {
+ this.fsw._symlinkPaths.set(sysPath.resolve(path), targetPath);
+ }
+ } else {
+ closer = this._handleFile(wh.watchPath, stats, initialAdd);
+ }
+ ready();
+
+ this.fsw._addPathCloser(path, closer);
+ return false;
+
+ } catch (error) {
+ if (this.fsw._handleError(error)) {
+ ready();
+ return path;
+ }
+ }
+}
+
+}
+
+module.exports = NodeFsHandler;
diff --git a/node_modules/chokidar/package.json b/node_modules/chokidar/package.json
new file mode 100644
index 0000000..6c3cd27
--- /dev/null
+++ b/node_modules/chokidar/package.json
@@ -0,0 +1,85 @@
+{
+ "name": "chokidar",
+ "description": "Minimal and efficient cross-platform file watching library",
+ "version": "3.5.3",
+ "homepage": "https://github.com/paulmillr/chokidar",
+ "author": "Paul Miller (https://paulmillr.com)",
+ "contributors": [
+ "Paul Miller (https://paulmillr.com)",
+ "Elan Shanker"
+ ],
+ "engines": {
+ "node": ">= 8.10.0"
+ },
+ "main": "index.js",
+ "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"
+ },
+ "optionalDependencies": {
+ "fsevents": "~2.3.2"
+ },
+ "devDependencies": {
+ "@types/node": "^14",
+ "chai": "^4.3",
+ "dtslint": "^3.3.0",
+ "eslint": "^7.0.0",
+ "mocha": "^7.0.0",
+ "nyc": "^15.0.0",
+ "rimraf": "^3.0.0",
+ "sinon": "^9.0.1",
+ "sinon-chai": "^3.3.0",
+ "typescript": "~4.4.3",
+ "upath": "^1.2.0"
+ },
+ "files": [
+ "index.js",
+ "lib/*.js",
+ "types/index.d.ts"
+ ],
+ "repository": {
+ "type": "git",
+ "url": "git+https://github.com/paulmillr/chokidar.git"
+ },
+ "bugs": {
+ "url": "https://github.com/paulmillr/chokidar/issues"
+ },
+ "license": "MIT",
+ "scripts": {
+ "dtslint": "dtslint types",
+ "lint": "eslint --report-unused-disable-directives --ignore-path .gitignore .",
+ "mocha": "mocha --exit --timeout 90000",
+ "test": "npm run lint && npm run mocha"
+ },
+ "keywords": [
+ "fs",
+ "watch",
+ "watchFile",
+ "watcher",
+ "watching",
+ "file",
+ "fsevents"
+ ],
+ "types": "./types/index.d.ts",
+ "nyc": {
+ "include": [
+ "index.js",
+ "lib/*.js"
+ ],
+ "reporter": [
+ "html",
+ "text"
+ ]
+ },
+ "funding": [
+ {
+ "type": "individual",
+ "url": "https://paulmillr.com/funding/"
+ }
+ ]
+}
diff --git a/node_modules/chokidar/types/index.d.ts b/node_modules/chokidar/types/index.d.ts
new file mode 100644
index 0000000..aab8e33
--- /dev/null
+++ b/node_modules/chokidar/types/index.d.ts
@@ -0,0 +1,188 @@
+// TypeScript Version: 3.0
+
+///
+
+import * as fs from "fs";
+import { EventEmitter } from "events";
+import { Matcher } from 'anymatch';
+
+export class FSWatcher extends EventEmitter implements fs.FSWatcher {
+ options: WatchOptions;
+
+ /**
+ * Constructs a new FSWatcher instance with optional WatchOptions parameter.
+ */
+ constructor(options?: WatchOptions);
+
+ /**
+ * Add files, directories, or glob patterns for tracking. Takes an array of strings or just one
+ * string.
+ */
+ add(paths: string | ReadonlyArray): this;
+
+ /**
+ * Stop watching files, directories, or glob patterns. Takes an array of strings or just one
+ * string.
+ */
+ unwatch(paths: string | ReadonlyArray): this;
+
+ /**
+ * Returns an object representing all the paths on the file system being watched by this
+ * `FSWatcher` instance. The object's keys are all the directories (using absolute paths unless
+ * the `cwd` option was used), and the values are arrays of the names of the items contained in
+ * each directory.
+ */
+ getWatched(): {
+ [directory: string]: string[];
+ };
+
+ /**
+ * Removes all listeners from watched files.
+ */
+ close(): Promise;
+
+ on(event: 'add'|'addDir'|'change', listener: (path: string, stats?: fs.Stats) => void): this;
+
+ on(event: 'all', listener: (eventName: 'add'|'addDir'|'change'|'unlink'|'unlinkDir', path: string, stats?: fs.Stats) => void): this;
+
+ /**
+ * Error occurred
+ */
+ on(event: 'error', listener: (error: Error) => void): this;
+
+ /**
+ * Exposes the native Node `fs.FSWatcher events`
+ */
+ on(event: 'raw', listener: (eventName: string, path: string, details: any) => void): this;
+
+ /**
+ * Fires when the initial scan is complete
+ */
+ on(event: 'ready', listener: () => void): this;
+
+ on(event: 'unlink'|'unlinkDir', listener: (path: string) => void): this;
+
+ on(event: string, listener: (...args: any[]) => void): this;
+}
+
+export interface WatchOptions {
+ /**
+ * Indicates whether the process should continue to run as long as files are being watched. If
+ * set to `false` when using `fsevents` to watch, no more events will be emitted after `ready`,
+ * even if the process continues to run.
+ */
+ persistent?: boolean;
+
+ /**
+ * ([anymatch](https://github.com/micromatch/anymatch)-compatible definition) Defines files/paths to
+ * be ignored. The whole relative or absolute path is tested, not just filename. If a function
+ * with two arguments is provided, it gets called twice per path - once with a single argument
+ * (the path), second time with two arguments (the path and the
+ * [`fs.Stats`](https://nodejs.org/api/fs.html#fs_class_fs_stats) object of that path).
+ */
+ ignored?: Matcher;
+
+ /**
+ * If set to `false` then `add`/`addDir` events are also emitted for matching paths while
+ * instantiating the watching as chokidar discovers these file paths (before the `ready` event).
+ */
+ ignoreInitial?: boolean;
+
+ /**
+ * When `false`, only the symlinks themselves will be watched for changes instead of following
+ * the link references and bubbling events through the link's path.
+ */
+ followSymlinks?: boolean;
+
+ /**
+ * The base directory from which watch `paths` are to be derived. Paths emitted with events will
+ * be relative to this.
+ */
+ cwd?: string;
+
+ /**
+ * If set to true then the strings passed to .watch() and .add() are treated as literal path
+ * names, even if they look like globs. Default: false.
+ */
+ disableGlobbing?: boolean;
+
+ /**
+ * Whether to use fs.watchFile (backed by polling), or fs.watch. If polling leads to high CPU
+ * utilization, consider setting this to `false`. It is typically necessary to **set this to
+ * `true` to successfully watch files over a network**, and it may be necessary to successfully
+ * watch files in other non-standard situations. Setting to `true` explicitly on OS X overrides
+ * the `useFsEvents` default.
+ */
+ usePolling?: boolean;
+
+ /**
+ * Whether to use the `fsevents` watching interface if available. When set to `true` explicitly
+ * and `fsevents` is available this supercedes the `usePolling` setting. When set to `false` on
+ * OS X, `usePolling: true` becomes the default.
+ */
+ useFsEvents?: boolean;
+
+ /**
+ * If relying upon the [`fs.Stats`](https://nodejs.org/api/fs.html#fs_class_fs_stats) object that
+ * may get passed with `add`, `addDir`, and `change` events, set this to `true` to ensure it is
+ * provided even in cases where it wasn't already available from the underlying watch events.
+ */
+ alwaysStat?: boolean;
+
+ /**
+ * If set, limits how many levels of subdirectories will be traversed.
+ */
+ depth?: number;
+
+ /**
+ * Interval of file system polling.
+ */
+ interval?: number;
+
+ /**
+ * Interval of file system polling for binary files. ([see list of binary extensions](https://gi
+ * thub.com/sindresorhus/binary-extensions/blob/master/binary-extensions.json))
+ */
+ binaryInterval?: number;
+
+ /**
+ * Indicates whether to watch files that don't have read permissions if possible. If watching
+ * fails due to `EPERM` or `EACCES` with this set to `true`, the errors will be suppressed
+ * silently.
+ */
+ ignorePermissionErrors?: boolean;
+
+ /**
+ * `true` if `useFsEvents` and `usePolling` are `false`). Automatically filters out artifacts
+ * that occur when using editors that use "atomic writes" instead of writing directly to the
+ * source file. If a file is re-added within 100 ms of being deleted, Chokidar emits a `change`
+ * event rather than `unlink` then `add`. If the default of 100 ms does not work well for you,
+ * you can override it by setting `atomic` to a custom value, in milliseconds.
+ */
+ atomic?: boolean | number;
+
+ /**
+ * can be set to an object in order to adjust timing params:
+ */
+ awaitWriteFinish?: AwaitWriteFinishOptions | boolean;
+}
+
+export interface AwaitWriteFinishOptions {
+ /**
+ * Amount of time in milliseconds for a file size to remain constant before emitting its event.
+ */
+ stabilityThreshold?: number;
+
+ /**
+ * File size polling interval.
+ */
+ pollInterval?: number;
+}
+
+/**
+ * produces an instance of `FSWatcher`.
+ */
+export function watch(
+ paths: string | ReadonlyArray,
+ options?: WatchOptions
+): FSWatcher;
diff --git a/node_modules/cliui/CHANGELOG.md b/node_modules/cliui/CHANGELOG.md
new file mode 100644
index 0000000..61f06c3
--- /dev/null
+++ b/node_modules/cliui/CHANGELOG.md
@@ -0,0 +1,139 @@
+# Change Log
+
+All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
+
+## [8.0.1](https://github.com/yargs/cliui/compare/v8.0.0...v8.0.1) (2022-10-01)
+
+
+### Bug Fixes
+
+* **deps:** move rollup-plugin-ts to dev deps ([#124](https://github.com/yargs/cliui/issues/124)) ([7c8bd6b](https://github.com/yargs/cliui/commit/7c8bd6ba024d61e4eeae310c7959ab8ab6829081))
+
+## [8.0.0](https://github.com/yargs/cliui/compare/v7.0.4...v8.0.0) (2022-09-30)
+
+
+### ⚠ BREAKING CHANGES
+
+* **deps:** drop Node 10 to release CVE-2021-3807 patch (#122)
+
+### Bug Fixes
+
+* **deps:** drop Node 10 to release CVE-2021-3807 patch ([#122](https://github.com/yargs/cliui/issues/122)) ([f156571](https://github.com/yargs/cliui/commit/f156571ce4f2ebf313335e3a53ad905589da5a30))
+
+### [7.0.4](https://www.github.com/yargs/cliui/compare/v7.0.3...v7.0.4) (2020-11-08)
+
+
+### Bug Fixes
+
+* **deno:** import UIOptions from definitions ([#97](https://www.github.com/yargs/cliui/issues/97)) ([f04f343](https://www.github.com/yargs/cliui/commit/f04f3439bc78114c7e90f82ff56f5acf16268ea8))
+
+### [7.0.3](https://www.github.com/yargs/cliui/compare/v7.0.2...v7.0.3) (2020-10-16)
+
+
+### Bug Fixes
+
+* **exports:** node 13.0 and 13.1 require the dotted object form _with_ a string fallback ([#93](https://www.github.com/yargs/cliui/issues/93)) ([eca16fc](https://www.github.com/yargs/cliui/commit/eca16fc05d26255df3280906c36d7f0e5b05c6e9))
+
+### [7.0.2](https://www.github.com/yargs/cliui/compare/v7.0.1...v7.0.2) (2020-10-14)
+
+
+### Bug Fixes
+
+* **exports:** node 13.0-13.6 require a string fallback ([#91](https://www.github.com/yargs/cliui/issues/91)) ([b529d7e](https://www.github.com/yargs/cliui/commit/b529d7e432901af1af7848b23ed6cf634497d961))
+
+### [7.0.1](https://www.github.com/yargs/cliui/compare/v7.0.0...v7.0.1) (2020-08-16)
+
+
+### Bug Fixes
+
+* **build:** main should be build/index.cjs ([dc29a3c](https://www.github.com/yargs/cliui/commit/dc29a3cc617a410aa850e06337b5954b04f2cb4d))
+
+## [7.0.0](https://www.github.com/yargs/cliui/compare/v6.0.0...v7.0.0) (2020-08-16)
+
+
+### ⚠ BREAKING CHANGES
+
+* tsc/ESM/Deno support (#82)
+* modernize deps and build (#80)
+
+### Build System
+
+* modernize deps and build ([#80](https://www.github.com/yargs/cliui/issues/80)) ([339d08d](https://www.github.com/yargs/cliui/commit/339d08dc71b15a3928aeab09042af94db2f43743))
+
+
+### Code Refactoring
+
+* tsc/ESM/Deno support ([#82](https://www.github.com/yargs/cliui/issues/82)) ([4b777a5](https://www.github.com/yargs/cliui/commit/4b777a5fe01c5d8958c6708695d6aab7dbe5706c))
+
+## [6.0.0](https://www.github.com/yargs/cliui/compare/v5.0.0...v6.0.0) (2019-11-10)
+
+
+### ⚠ BREAKING CHANGES
+
+* update deps, drop Node 6
+
+### Code Refactoring
+
+* update deps, drop Node 6 ([62056df](https://www.github.com/yargs/cliui/commit/62056df))
+
+## [5.0.0](https://github.com/yargs/cliui/compare/v4.1.0...v5.0.0) (2019-04-10)
+
+
+### Bug Fixes
+
+* Update wrap-ansi to fix compatibility with latest versions of chalk. ([#60](https://github.com/yargs/cliui/issues/60)) ([7bf79ae](https://github.com/yargs/cliui/commit/7bf79ae))
+
+
+### BREAKING CHANGES
+
+* Drop support for node < 6.
+
+
+
+
+## [4.1.0](https://github.com/yargs/cliui/compare/v4.0.0...v4.1.0) (2018-04-23)
+
+
+### Features
+
+* add resetOutput method ([#57](https://github.com/yargs/cliui/issues/57)) ([7246902](https://github.com/yargs/cliui/commit/7246902))
+
+
+
+
+## [4.0.0](https://github.com/yargs/cliui/compare/v3.2.0...v4.0.0) (2017-12-18)
+
+
+### Bug Fixes
+
+* downgrades strip-ansi to version 3.0.1 ([#54](https://github.com/yargs/cliui/issues/54)) ([5764c46](https://github.com/yargs/cliui/commit/5764c46))
+* set env variable FORCE_COLOR. ([#56](https://github.com/yargs/cliui/issues/56)) ([7350e36](https://github.com/yargs/cliui/commit/7350e36))
+
+
+### Chores
+
+* drop support for node < 4 ([#53](https://github.com/yargs/cliui/issues/53)) ([b105376](https://github.com/yargs/cliui/commit/b105376))
+
+
+### Features
+
+* add fallback for window width ([#45](https://github.com/yargs/cliui/issues/45)) ([d064922](https://github.com/yargs/cliui/commit/d064922))
+
+
+### BREAKING CHANGES
+
+* officially drop support for Node < 4
+
+
+
+
+## [3.2.0](https://github.com/yargs/cliui/compare/v3.1.2...v3.2.0) (2016-04-11)
+
+
+### Bug Fixes
+
+* reduces tarball size ([acc6c33](https://github.com/yargs/cliui/commit/acc6c33))
+
+### Features
+
+* adds standard-version for release management ([ff84e32](https://github.com/yargs/cliui/commit/ff84e32))
diff --git a/node_modules/cliui/LICENSE.txt b/node_modules/cliui/LICENSE.txt
new file mode 100644
index 0000000..c7e2747
--- /dev/null
+++ b/node_modules/cliui/LICENSE.txt
@@ -0,0 +1,14 @@
+Copyright (c) 2015, Contributors
+
+Permission to use, copy, modify, and/or distribute this software
+for any purpose with or without fee is hereby granted, provided
+that the above copyright notice and this permission notice
+appear in all copies.
+
+THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES
+OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE
+LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES
+OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
+WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
+ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
diff --git a/node_modules/cliui/README.md b/node_modules/cliui/README.md
new file mode 100644
index 0000000..65b5672
--- /dev/null
+++ b/node_modules/cliui/README.md
@@ -0,0 +1,141 @@
+# cliui
+
+![ci](https://github.com/yargs/cliui/workflows/ci/badge.svg)
+[![NPM version](https://img.shields.io/npm/v/cliui.svg)](https://www.npmjs.com/package/cliui)
+[![Conventional Commits](https://img.shields.io/badge/Conventional%20Commits-1.0.0-yellow.svg)](https://conventionalcommits.org)
+![nycrc config on GitHub](https://img.shields.io/nycrc/yargs/cliui)
+
+easily create complex multi-column command-line-interfaces.
+
+## Example
+
+```js
+const ui = require('cliui')()
+
+ui.div('Usage: $0 [command] [options]')
+
+ui.div({
+ text: 'Options:',
+ padding: [2, 0, 1, 0]
+})
+
+ui.div(
+ {
+ text: "-f, --file",
+ width: 20,
+ padding: [0, 4, 0, 4]
+ },
+ {
+ text: "the file to load." +
+ chalk.green("(if this description is long it wraps).")
+ ,
+ width: 20
+ },
+ {
+ text: chalk.red("[required]"),
+ align: 'right'
+ }
+)
+
+console.log(ui.toString())
+```
+
+## Deno/ESM Support
+
+As of `v7` `cliui` supports [Deno](https://github.com/denoland/deno) and
+[ESM](https://nodejs.org/api/esm.html#esm_ecmascript_modules):
+
+```typescript
+import cliui from "https://deno.land/x/cliui/deno.ts";
+
+const ui = cliui({})
+
+ui.div('Usage: $0 [command] [options]')
+
+ui.div({
+ text: 'Options:',
+ padding: [2, 0, 1, 0]
+})
+
+ui.div({
+ text: "-f, --file",
+ width: 20,
+ padding: [0, 4, 0, 4]
+})
+
+console.log(ui.toString())
+```
+
+
+
+## Layout DSL
+
+cliui exposes a simple layout DSL:
+
+If you create a single `ui.div`, passing a string rather than an
+object:
+
+* `\n`: characters will be interpreted as new rows.
+* `\t`: characters will be interpreted as new columns.
+* `\s`: characters will be interpreted as padding.
+
+**as an example...**
+
+```js
+var ui = require('./')({
+ width: 60
+})
+
+ui.div(
+ 'Usage: node ./bin/foo.js\n' +
+ ' \t provide a regex\n' +
+ ' \t provide a glob\t [required]'
+)
+
+console.log(ui.toString())
+```
+
+**will output:**
+
+```shell
+Usage: node ./bin/foo.js
+ provide a regex
+ provide a glob [required]
+```
+
+## Methods
+
+```js
+cliui = require('cliui')
+```
+
+### cliui({width: integer})
+
+Specify the maximum width of the UI being generated.
+If no width is provided, cliui will try to get the current window's width and use it, and if that doesn't work, width will be set to `80`.
+
+### cliui({wrap: boolean})
+
+Enable or disable the wrapping of text in a column.
+
+### cliui.div(column, column, column)
+
+Create a row with any number of columns, a column
+can either be a string, or an object with the following
+options:
+
+* **text:** some text to place in the column.
+* **width:** the width of a column.
+* **align:** alignment, `right` or `center`.
+* **padding:** `[top, right, bottom, left]`.
+* **border:** should a border be placed around the div?
+
+### cliui.span(column, column, column)
+
+Similar to `div`, except the next row will be appended without
+a new line being created.
+
+### cliui.resetOutput()
+
+Resets the UI elements of the current cliui instance, maintaining the values
+set for `width` and `wrap`.
diff --git a/node_modules/cliui/build/index.cjs b/node_modules/cliui/build/index.cjs
new file mode 100644
index 0000000..82126b6
--- /dev/null
+++ b/node_modules/cliui/build/index.cjs
@@ -0,0 +1,302 @@
+'use strict';
+
+const align = {
+ right: alignRight,
+ center: alignCenter
+};
+const top = 0;
+const right = 1;
+const bottom = 2;
+const left = 3;
+class UI {
+ constructor(opts) {
+ var _a;
+ this.width = opts.width;
+ this.wrap = (_a = opts.wrap) !== null && _a !== void 0 ? _a : true;
+ this.rows = [];
+ }
+ span(...args) {
+ const cols = this.div(...args);
+ cols.span = true;
+ }
+ resetOutput() {
+ this.rows = [];
+ }
+ div(...args) {
+ if (args.length === 0) {
+ this.div('');
+ }
+ if (this.wrap && this.shouldApplyLayoutDSL(...args) && typeof args[0] === 'string') {
+ return this.applyLayoutDSL(args[0]);
+ }
+ const cols = args.map(arg => {
+ if (typeof arg === 'string') {
+ return this.colFromString(arg);
+ }
+ return arg;
+ });
+ this.rows.push(cols);
+ return cols;
+ }
+ shouldApplyLayoutDSL(...args) {
+ return args.length === 1 && typeof args[0] === 'string' &&
+ /[\t\n]/.test(args[0]);
+ }
+ applyLayoutDSL(str) {
+ const rows = str.split('\n').map(row => row.split('\t'));
+ let leftColumnWidth = 0;
+ // simple heuristic for layout, make sure the
+ // second column lines up along the left-hand.
+ // don't allow the first column to take up more
+ // than 50% of the screen.
+ rows.forEach(columns => {
+ if (columns.length > 1 && mixin.stringWidth(columns[0]) > leftColumnWidth) {
+ leftColumnWidth = Math.min(Math.floor(this.width * 0.5), mixin.stringWidth(columns[0]));
+ }
+ });
+ // generate a table:
+ // replacing ' ' with padding calculations.
+ // using the algorithmically generated width.
+ rows.forEach(columns => {
+ this.div(...columns.map((r, i) => {
+ return {
+ text: r.trim(),
+ padding: this.measurePadding(r),
+ width: (i === 0 && columns.length > 1) ? leftColumnWidth : undefined
+ };
+ }));
+ });
+ return this.rows[this.rows.length - 1];
+ }
+ colFromString(text) {
+ return {
+ text,
+ padding: this.measurePadding(text)
+ };
+ }
+ measurePadding(str) {
+ // measure padding without ansi escape codes
+ const noAnsi = mixin.stripAnsi(str);
+ return [0, noAnsi.match(/\s*$/)[0].length, 0, noAnsi.match(/^\s*/)[0].length];
+ }
+ toString() {
+ const lines = [];
+ this.rows.forEach(row => {
+ this.rowToString(row, lines);
+ });
+ // don't display any lines with the
+ // hidden flag set.
+ return lines
+ .filter(line => !line.hidden)
+ .map(line => line.text)
+ .join('\n');
+ }
+ rowToString(row, lines) {
+ this.rasterize(row).forEach((rrow, r) => {
+ let str = '';
+ rrow.forEach((col, c) => {
+ const { width } = row[c]; // the width with padding.
+ const wrapWidth = this.negatePadding(row[c]); // the width without padding.
+ let ts = col; // temporary string used during alignment/padding.
+ if (wrapWidth > mixin.stringWidth(col)) {
+ ts += ' '.repeat(wrapWidth - mixin.stringWidth(col));
+ }
+ // align the string within its column.
+ if (row[c].align && row[c].align !== 'left' && this.wrap) {
+ const fn = align[row[c].align];
+ ts = fn(ts, wrapWidth);
+ if (mixin.stringWidth(ts) < wrapWidth) {
+ ts += ' '.repeat((width || 0) - mixin.stringWidth(ts) - 1);
+ }
+ }
+ // apply border and padding to string.
+ const padding = row[c].padding || [0, 0, 0, 0];
+ if (padding[left]) {
+ str += ' '.repeat(padding[left]);
+ }
+ str += addBorder(row[c], ts, '| ');
+ str += ts;
+ str += addBorder(row[c], ts, ' |');
+ if (padding[right]) {
+ str += ' '.repeat(padding[right]);
+ }
+ // if prior row is span, try to render the
+ // current row on the prior line.
+ if (r === 0 && lines.length > 0) {
+ str = this.renderInline(str, lines[lines.length - 1]);
+ }
+ });
+ // remove trailing whitespace.
+ lines.push({
+ text: str.replace(/ +$/, ''),
+ span: row.span
+ });
+ });
+ return lines;
+ }
+ // if the full 'source' can render in
+ // the target line, do so.
+ renderInline(source, previousLine) {
+ const match = source.match(/^ */);
+ const leadingWhitespace = match ? match[0].length : 0;
+ const target = previousLine.text;
+ const targetTextWidth = mixin.stringWidth(target.trimRight());
+ if (!previousLine.span) {
+ return source;
+ }
+ // if we're not applying wrapping logic,
+ // just always append to the span.
+ if (!this.wrap) {
+ previousLine.hidden = true;
+ return target + source;
+ }
+ if (leadingWhitespace < targetTextWidth) {
+ return source;
+ }
+ previousLine.hidden = true;
+ return target.trimRight() + ' '.repeat(leadingWhitespace - targetTextWidth) + source.trimLeft();
+ }
+ rasterize(row) {
+ const rrows = [];
+ const widths = this.columnWidths(row);
+ let wrapped;
+ // word wrap all columns, and create
+ // a data-structure that is easy to rasterize.
+ row.forEach((col, c) => {
+ // leave room for left and right padding.
+ col.width = widths[c];
+ if (this.wrap) {
+ wrapped = mixin.wrap(col.text, this.negatePadding(col), { hard: true }).split('\n');
+ }
+ else {
+ wrapped = col.text.split('\n');
+ }
+ if (col.border) {
+ wrapped.unshift('.' + '-'.repeat(this.negatePadding(col) + 2) + '.');
+ wrapped.push("'" + '-'.repeat(this.negatePadding(col) + 2) + "'");
+ }
+ // add top and bottom padding.
+ if (col.padding) {
+ wrapped.unshift(...new Array(col.padding[top] || 0).fill(''));
+ wrapped.push(...new Array(col.padding[bottom] || 0).fill(''));
+ }
+ wrapped.forEach((str, r) => {
+ if (!rrows[r]) {
+ rrows.push([]);
+ }
+ const rrow = rrows[r];
+ for (let i = 0; i < c; i++) {
+ if (rrow[i] === undefined) {
+ rrow.push('');
+ }
+ }
+ rrow.push(str);
+ });
+ });
+ return rrows;
+ }
+ negatePadding(col) {
+ let wrapWidth = col.width || 0;
+ if (col.padding) {
+ wrapWidth -= (col.padding[left] || 0) + (col.padding[right] || 0);
+ }
+ if (col.border) {
+ wrapWidth -= 4;
+ }
+ return wrapWidth;
+ }
+ columnWidths(row) {
+ if (!this.wrap) {
+ return row.map(col => {
+ return col.width || mixin.stringWidth(col.text);
+ });
+ }
+ let unset = row.length;
+ let remainingWidth = this.width;
+ // column widths can be set in config.
+ const widths = row.map(col => {
+ if (col.width) {
+ unset--;
+ remainingWidth -= col.width;
+ return col.width;
+ }
+ return undefined;
+ });
+ // any unset widths should be calculated.
+ const unsetWidth = unset ? Math.floor(remainingWidth / unset) : 0;
+ return widths.map((w, i) => {
+ if (w === undefined) {
+ return Math.max(unsetWidth, _minWidth(row[i]));
+ }
+ return w;
+ });
+ }
+}
+function addBorder(col, ts, style) {
+ if (col.border) {
+ if (/[.']-+[.']/.test(ts)) {
+ return '';
+ }
+ if (ts.trim().length !== 0) {
+ return style;
+ }
+ return ' ';
+ }
+ return '';
+}
+// calculates the minimum width of
+// a column, based on padding preferences.
+function _minWidth(col) {
+ const padding = col.padding || [];
+ const minWidth = 1 + (padding[left] || 0) + (padding[right] || 0);
+ if (col.border) {
+ return minWidth + 4;
+ }
+ return minWidth;
+}
+function getWindowWidth() {
+ /* istanbul ignore next: depends on terminal */
+ if (typeof process === 'object' && process.stdout && process.stdout.columns) {
+ return process.stdout.columns;
+ }
+ return 80;
+}
+function alignRight(str, width) {
+ str = str.trim();
+ const strWidth = mixin.stringWidth(str);
+ if (strWidth < width) {
+ return ' '.repeat(width - strWidth) + str;
+ }
+ return str;
+}
+function alignCenter(str, width) {
+ str = str.trim();
+ const strWidth = mixin.stringWidth(str);
+ /* istanbul ignore next */
+ if (strWidth >= width) {
+ return str;
+ }
+ return ' '.repeat((width - strWidth) >> 1) + str;
+}
+let mixin;
+function cliui(opts, _mixin) {
+ mixin = _mixin;
+ return new UI({
+ width: (opts === null || opts === void 0 ? void 0 : opts.width) || getWindowWidth(),
+ wrap: opts === null || opts === void 0 ? void 0 : opts.wrap
+ });
+}
+
+// Bootstrap cliui with CommonJS dependencies:
+const stringWidth = require('string-width');
+const stripAnsi = require('strip-ansi');
+const wrap = require('wrap-ansi');
+function ui(opts) {
+ return cliui(opts, {
+ stringWidth,
+ stripAnsi,
+ wrap
+ });
+}
+
+module.exports = ui;
diff --git a/node_modules/cliui/build/index.d.cts b/node_modules/cliui/build/index.d.cts
new file mode 100644
index 0000000..4567f94
--- /dev/null
+++ b/node_modules/cliui/build/index.d.cts
@@ -0,0 +1,43 @@
+interface UIOptions {
+ width: number;
+ wrap?: boolean;
+ rows?: string[];
+}
+interface Column {
+ text: string;
+ width?: number;
+ align?: "right" | "left" | "center";
+ padding: number[];
+ border?: boolean;
+}
+interface ColumnArray extends Array {
+ span: boolean;
+}
+interface Line {
+ hidden?: boolean;
+ text: string;
+ span?: boolean;
+}
+declare class UI {
+ width: number;
+ wrap: boolean;
+ rows: ColumnArray[];
+ constructor(opts: UIOptions);
+ span(...args: ColumnArray): void;
+ resetOutput(): void;
+ div(...args: (Column | string)[]): ColumnArray;
+ private shouldApplyLayoutDSL;
+ private applyLayoutDSL;
+ private colFromString;
+ private measurePadding;
+ toString(): string;
+ rowToString(row: ColumnArray, lines: Line[]): Line[];
+ // if the full 'source' can render in
+ // the target line, do so.
+ private renderInline;
+ private rasterize;
+ private negatePadding;
+ private columnWidths;
+}
+declare function ui(opts: UIOptions): UI;
+export { ui as default };
diff --git a/node_modules/cliui/build/lib/index.js b/node_modules/cliui/build/lib/index.js
new file mode 100644
index 0000000..b6eb054
--- /dev/null
+++ b/node_modules/cliui/build/lib/index.js
@@ -0,0 +1,287 @@
+'use strict';
+const align = {
+ right: alignRight,
+ center: alignCenter
+};
+const top = 0;
+const right = 1;
+const bottom = 2;
+const left = 3;
+export class UI {
+ constructor(opts) {
+ var _a;
+ this.width = opts.width;
+ this.wrap = (_a = opts.wrap) !== null && _a !== void 0 ? _a : true;
+ this.rows = [];
+ }
+ span(...args) {
+ const cols = this.div(...args);
+ cols.span = true;
+ }
+ resetOutput() {
+ this.rows = [];
+ }
+ div(...args) {
+ if (args.length === 0) {
+ this.div('');
+ }
+ if (this.wrap && this.shouldApplyLayoutDSL(...args) && typeof args[0] === 'string') {
+ return this.applyLayoutDSL(args[0]);
+ }
+ const cols = args.map(arg => {
+ if (typeof arg === 'string') {
+ return this.colFromString(arg);
+ }
+ return arg;
+ });
+ this.rows.push(cols);
+ return cols;
+ }
+ shouldApplyLayoutDSL(...args) {
+ return args.length === 1 && typeof args[0] === 'string' &&
+ /[\t\n]/.test(args[0]);
+ }
+ applyLayoutDSL(str) {
+ const rows = str.split('\n').map(row => row.split('\t'));
+ let leftColumnWidth = 0;
+ // simple heuristic for layout, make sure the
+ // second column lines up along the left-hand.
+ // don't allow the first column to take up more
+ // than 50% of the screen.
+ rows.forEach(columns => {
+ if (columns.length > 1 && mixin.stringWidth(columns[0]) > leftColumnWidth) {
+ leftColumnWidth = Math.min(Math.floor(this.width * 0.5), mixin.stringWidth(columns[0]));
+ }
+ });
+ // generate a table:
+ // replacing ' ' with padding calculations.
+ // using the algorithmically generated width.
+ rows.forEach(columns => {
+ this.div(...columns.map((r, i) => {
+ return {
+ text: r.trim(),
+ padding: this.measurePadding(r),
+ width: (i === 0 && columns.length > 1) ? leftColumnWidth : undefined
+ };
+ }));
+ });
+ return this.rows[this.rows.length - 1];
+ }
+ colFromString(text) {
+ return {
+ text,
+ padding: this.measurePadding(text)
+ };
+ }
+ measurePadding(str) {
+ // measure padding without ansi escape codes
+ const noAnsi = mixin.stripAnsi(str);
+ return [0, noAnsi.match(/\s*$/)[0].length, 0, noAnsi.match(/^\s*/)[0].length];
+ }
+ toString() {
+ const lines = [];
+ this.rows.forEach(row => {
+ this.rowToString(row, lines);
+ });
+ // don't display any lines with the
+ // hidden flag set.
+ return lines
+ .filter(line => !line.hidden)
+ .map(line => line.text)
+ .join('\n');
+ }
+ rowToString(row, lines) {
+ this.rasterize(row).forEach((rrow, r) => {
+ let str = '';
+ rrow.forEach((col, c) => {
+ const { width } = row[c]; // the width with padding.
+ const wrapWidth = this.negatePadding(row[c]); // the width without padding.
+ let ts = col; // temporary string used during alignment/padding.
+ if (wrapWidth > mixin.stringWidth(col)) {
+ ts += ' '.repeat(wrapWidth - mixin.stringWidth(col));
+ }
+ // align the string within its column.
+ if (row[c].align && row[c].align !== 'left' && this.wrap) {
+ const fn = align[row[c].align];
+ ts = fn(ts, wrapWidth);
+ if (mixin.stringWidth(ts) < wrapWidth) {
+ ts += ' '.repeat((width || 0) - mixin.stringWidth(ts) - 1);
+ }
+ }
+ // apply border and padding to string.
+ const padding = row[c].padding || [0, 0, 0, 0];
+ if (padding[left]) {
+ str += ' '.repeat(padding[left]);
+ }
+ str += addBorder(row[c], ts, '| ');
+ str += ts;
+ str += addBorder(row[c], ts, ' |');
+ if (padding[right]) {
+ str += ' '.repeat(padding[right]);
+ }
+ // if prior row is span, try to render the
+ // current row on the prior line.
+ if (r === 0 && lines.length > 0) {
+ str = this.renderInline(str, lines[lines.length - 1]);
+ }
+ });
+ // remove trailing whitespace.
+ lines.push({
+ text: str.replace(/ +$/, ''),
+ span: row.span
+ });
+ });
+ return lines;
+ }
+ // if the full 'source' can render in
+ // the target line, do so.
+ renderInline(source, previousLine) {
+ const match = source.match(/^ */);
+ const leadingWhitespace = match ? match[0].length : 0;
+ const target = previousLine.text;
+ const targetTextWidth = mixin.stringWidth(target.trimRight());
+ if (!previousLine.span) {
+ return source;
+ }
+ // if we're not applying wrapping logic,
+ // just always append to the span.
+ if (!this.wrap) {
+ previousLine.hidden = true;
+ return target + source;
+ }
+ if (leadingWhitespace < targetTextWidth) {
+ return source;
+ }
+ previousLine.hidden = true;
+ return target.trimRight() + ' '.repeat(leadingWhitespace - targetTextWidth) + source.trimLeft();
+ }
+ rasterize(row) {
+ const rrows = [];
+ const widths = this.columnWidths(row);
+ let wrapped;
+ // word wrap all columns, and create
+ // a data-structure that is easy to rasterize.
+ row.forEach((col, c) => {
+ // leave room for left and right padding.
+ col.width = widths[c];
+ if (this.wrap) {
+ wrapped = mixin.wrap(col.text, this.negatePadding(col), { hard: true }).split('\n');
+ }
+ else {
+ wrapped = col.text.split('\n');
+ }
+ if (col.border) {
+ wrapped.unshift('.' + '-'.repeat(this.negatePadding(col) + 2) + '.');
+ wrapped.push("'" + '-'.repeat(this.negatePadding(col) + 2) + "'");
+ }
+ // add top and bottom padding.
+ if (col.padding) {
+ wrapped.unshift(...new Array(col.padding[top] || 0).fill(''));
+ wrapped.push(...new Array(col.padding[bottom] || 0).fill(''));
+ }
+ wrapped.forEach((str, r) => {
+ if (!rrows[r]) {
+ rrows.push([]);
+ }
+ const rrow = rrows[r];
+ for (let i = 0; i < c; i++) {
+ if (rrow[i] === undefined) {
+ rrow.push('');
+ }
+ }
+ rrow.push(str);
+ });
+ });
+ return rrows;
+ }
+ negatePadding(col) {
+ let wrapWidth = col.width || 0;
+ if (col.padding) {
+ wrapWidth -= (col.padding[left] || 0) + (col.padding[right] || 0);
+ }
+ if (col.border) {
+ wrapWidth -= 4;
+ }
+ return wrapWidth;
+ }
+ columnWidths(row) {
+ if (!this.wrap) {
+ return row.map(col => {
+ return col.width || mixin.stringWidth(col.text);
+ });
+ }
+ let unset = row.length;
+ let remainingWidth = this.width;
+ // column widths can be set in config.
+ const widths = row.map(col => {
+ if (col.width) {
+ unset--;
+ remainingWidth -= col.width;
+ return col.width;
+ }
+ return undefined;
+ });
+ // any unset widths should be calculated.
+ const unsetWidth = unset ? Math.floor(remainingWidth / unset) : 0;
+ return widths.map((w, i) => {
+ if (w === undefined) {
+ return Math.max(unsetWidth, _minWidth(row[i]));
+ }
+ return w;
+ });
+ }
+}
+function addBorder(col, ts, style) {
+ if (col.border) {
+ if (/[.']-+[.']/.test(ts)) {
+ return '';
+ }
+ if (ts.trim().length !== 0) {
+ return style;
+ }
+ return ' ';
+ }
+ return '';
+}
+// calculates the minimum width of
+// a column, based on padding preferences.
+function _minWidth(col) {
+ const padding = col.padding || [];
+ const minWidth = 1 + (padding[left] || 0) + (padding[right] || 0);
+ if (col.border) {
+ return minWidth + 4;
+ }
+ return minWidth;
+}
+function getWindowWidth() {
+ /* istanbul ignore next: depends on terminal */
+ if (typeof process === 'object' && process.stdout && process.stdout.columns) {
+ return process.stdout.columns;
+ }
+ return 80;
+}
+function alignRight(str, width) {
+ str = str.trim();
+ const strWidth = mixin.stringWidth(str);
+ if (strWidth < width) {
+ return ' '.repeat(width - strWidth) + str;
+ }
+ return str;
+}
+function alignCenter(str, width) {
+ str = str.trim();
+ const strWidth = mixin.stringWidth(str);
+ /* istanbul ignore next */
+ if (strWidth >= width) {
+ return str;
+ }
+ return ' '.repeat((width - strWidth) >> 1) + str;
+}
+let mixin;
+export function cliui(opts, _mixin) {
+ mixin = _mixin;
+ return new UI({
+ width: (opts === null || opts === void 0 ? void 0 : opts.width) || getWindowWidth(),
+ wrap: opts === null || opts === void 0 ? void 0 : opts.wrap
+ });
+}
diff --git a/node_modules/cliui/build/lib/string-utils.js b/node_modules/cliui/build/lib/string-utils.js
new file mode 100644
index 0000000..4b87453
--- /dev/null
+++ b/node_modules/cliui/build/lib/string-utils.js
@@ -0,0 +1,27 @@
+// Minimal replacement for ansi string helpers "wrap-ansi" and "strip-ansi".
+// to facilitate ESM and Deno modules.
+// TODO: look at porting https://www.npmjs.com/package/wrap-ansi to ESM.
+// The npm application
+// Copyright (c) npm, Inc. and Contributors
+// Licensed on the terms of The Artistic License 2.0
+// See: https://github.com/npm/cli/blob/4c65cd952bc8627811735bea76b9b110cc4fc80e/lib/utils/ansi-trim.js
+const ansi = new RegExp('\x1b(?:\\[(?:\\d+[ABCDEFGJKSTm]|\\d+;\\d+[Hfm]|' +
+ '\\d+;\\d+;\\d+m|6n|s|u|\\?25[lh])|\\w)', 'g');
+export function stripAnsi(str) {
+ return str.replace(ansi, '');
+}
+export function wrap(str, width) {
+ const [start, end] = str.match(ansi) || ['', ''];
+ str = stripAnsi(str);
+ let wrapped = '';
+ for (let i = 0; i < str.length; i++) {
+ if (i !== 0 && (i % width) === 0) {
+ wrapped += '\n';
+ }
+ wrapped += str.charAt(i);
+ }
+ if (start && end) {
+ wrapped = `${start}${wrapped}${end}`;
+ }
+ return wrapped;
+}
diff --git a/node_modules/cliui/index.mjs b/node_modules/cliui/index.mjs
new file mode 100644
index 0000000..bc7a022
--- /dev/null
+++ b/node_modules/cliui/index.mjs
@@ -0,0 +1,13 @@
+// Bootstrap cliui with CommonJS dependencies:
+import { cliui } from './build/lib/index.js'
+import { wrap, stripAnsi } from './build/lib/string-utils.js'
+
+export default function ui (opts) {
+ return cliui(opts, {
+ stringWidth: (str) => {
+ return [...str].length
+ },
+ stripAnsi,
+ wrap
+ })
+}
diff --git a/node_modules/cliui/package.json b/node_modules/cliui/package.json
new file mode 100644
index 0000000..eab6bf4
--- /dev/null
+++ b/node_modules/cliui/package.json
@@ -0,0 +1,83 @@
+{
+ "name": "cliui",
+ "version": "8.0.1",
+ "description": "easily create complex multi-column command-line-interfaces",
+ "main": "build/index.cjs",
+ "exports": {
+ ".": [
+ {
+ "import": "./index.mjs",
+ "require": "./build/index.cjs"
+ },
+ "./build/index.cjs"
+ ]
+ },
+ "type": "module",
+ "module": "./index.mjs",
+ "scripts": {
+ "check": "standardx '**/*.ts' && standardx '**/*.js' && standardx '**/*.cjs'",
+ "fix": "standardx --fix '**/*.ts' && standardx --fix '**/*.js' && standardx --fix '**/*.cjs'",
+ "pretest": "rimraf build && tsc -p tsconfig.test.json && cross-env NODE_ENV=test npm run build:cjs",
+ "test": "c8 mocha ./test/*.cjs",
+ "test:esm": "c8 mocha ./test/esm/cliui-test.mjs",
+ "postest": "check",
+ "coverage": "c8 report --check-coverage",
+ "precompile": "rimraf build",
+ "compile": "tsc",
+ "postcompile": "npm run build:cjs",
+ "build:cjs": "rollup -c",
+ "prepare": "npm run compile"
+ },
+ "repository": "yargs/cliui",
+ "standard": {
+ "ignore": [
+ "**/example/**"
+ ],
+ "globals": [
+ "it"
+ ]
+ },
+ "keywords": [
+ "cli",
+ "command-line",
+ "layout",
+ "design",
+ "console",
+ "wrap",
+ "table"
+ ],
+ "author": "Ben Coe ",
+ "license": "ISC",
+ "dependencies": {
+ "string-width": "^4.2.0",
+ "strip-ansi": "^6.0.1",
+ "wrap-ansi": "^7.0.0"
+ },
+ "devDependencies": {
+ "@types/node": "^14.0.27",
+ "@typescript-eslint/eslint-plugin": "^4.0.0",
+ "@typescript-eslint/parser": "^4.0.0",
+ "c8": "^7.3.0",
+ "chai": "^4.2.0",
+ "chalk": "^4.1.0",
+ "cross-env": "^7.0.2",
+ "eslint": "^7.6.0",
+ "eslint-plugin-import": "^2.22.0",
+ "eslint-plugin-node": "^11.1.0",
+ "gts": "^3.0.0",
+ "mocha": "^10.0.0",
+ "rimraf": "^3.0.2",
+ "rollup": "^2.23.1",
+ "rollup-plugin-ts": "^3.0.2",
+ "standardx": "^7.0.0",
+ "typescript": "^4.0.0"
+ },
+ "files": [
+ "build",
+ "index.mjs",
+ "!*.d.ts"
+ ],
+ "engines": {
+ "node": ">=12"
+ }
+}
diff --git a/node_modules/color-convert/CHANGELOG.md b/node_modules/color-convert/CHANGELOG.md
new file mode 100644
index 0000000..0a7bce4
--- /dev/null
+++ b/node_modules/color-convert/CHANGELOG.md
@@ -0,0 +1,54 @@
+# 1.0.0 - 2016-01-07
+
+- Removed: unused speed test
+- Added: Automatic routing between previously unsupported conversions
+([#27](https://github.com/Qix-/color-convert/pull/27))
+- Removed: `xxx2xxx()` and `xxx2xxxRaw()` functions
+([#27](https://github.com/Qix-/color-convert/pull/27))
+- Removed: `convert()` class
+([#27](https://github.com/Qix-/color-convert/pull/27))
+- Changed: all functions to lookup dictionary
+([#27](https://github.com/Qix-/color-convert/pull/27))
+- Changed: `ansi` to `ansi256`
+([#27](https://github.com/Qix-/color-convert/pull/27))
+- Fixed: argument grouping for functions requiring only one argument
+([#27](https://github.com/Qix-/color-convert/pull/27))
+
+# 0.6.0 - 2015-07-23
+
+- Added: methods to handle
+[ANSI](https://en.wikipedia.org/wiki/ANSI_escape_code#Colors) 16/256 colors:
+ - rgb2ansi16
+ - rgb2ansi
+ - hsl2ansi16
+ - hsl2ansi
+ - hsv2ansi16
+ - hsv2ansi
+ - hwb2ansi16
+ - hwb2ansi
+ - cmyk2ansi16
+ - cmyk2ansi
+ - keyword2ansi16
+ - keyword2ansi
+ - ansi162rgb
+ - ansi162hsl
+ - ansi162hsv
+ - ansi162hwb
+ - ansi162cmyk
+ - ansi162keyword
+ - ansi2rgb
+ - ansi2hsl
+ - ansi2hsv
+ - ansi2hwb
+ - ansi2cmyk
+ - ansi2keyword
+([#18](https://github.com/harthur/color-convert/pull/18))
+
+# 0.5.3 - 2015-06-02
+
+- Fixed: hsl2hsv does not return `NaN` anymore when using `[0,0,0]`
+([#15](https://github.com/harthur/color-convert/issues/15))
+
+---
+
+Check out commit logs for older releases
diff --git a/node_modules/color-convert/LICENSE b/node_modules/color-convert/LICENSE
new file mode 100644
index 0000000..5b4c386
--- /dev/null
+++ b/node_modules/color-convert/LICENSE
@@ -0,0 +1,21 @@
+Copyright (c) 2011-2016 Heather Arthur
+
+Permission is hereby granted, free of charge, to any person obtaining
+a copy of this software and associated documentation files (the
+"Software"), to deal in the Software without restriction, including
+without limitation the rights to use, copy, modify, merge, publish,
+distribute, sublicense, and/or sell copies of the Software, and to
+permit persons to whom the Software is furnished to do so, subject to
+the following conditions:
+
+The above copyright notice and this permission notice shall be
+included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
diff --git a/node_modules/color-convert/README.md b/node_modules/color-convert/README.md
new file mode 100644
index 0000000..d4b08fc
--- /dev/null
+++ b/node_modules/color-convert/README.md
@@ -0,0 +1,68 @@
+# color-convert
+
+[![Build Status](https://travis-ci.org/Qix-/color-convert.svg?branch=master)](https://travis-ci.org/Qix-/color-convert)
+
+Color-convert is a color conversion library for JavaScript and node.
+It converts all ways between `rgb`, `hsl`, `hsv`, `hwb`, `cmyk`, `ansi`, `ansi16`, `hex` strings, and CSS `keyword`s (will round to closest):
+
+```js
+var convert = require('color-convert');
+
+convert.rgb.hsl(140, 200, 100); // [96, 48, 59]
+convert.keyword.rgb('blue'); // [0, 0, 255]
+
+var rgbChannels = convert.rgb.channels; // 3
+var cmykChannels = convert.cmyk.channels; // 4
+var ansiChannels = convert.ansi16.channels; // 1
+```
+
+# Install
+
+```console
+$ npm install color-convert
+```
+
+# API
+
+Simply get the property of the _from_ and _to_ conversion that you're looking for.
+
+All functions have a rounded and unrounded variant. By default, return values are rounded. To get the unrounded (raw) results, simply tack on `.raw` to the function.
+
+All 'from' functions have a hidden property called `.channels` that indicates the number of channels the function expects (not including alpha).
+
+```js
+var convert = require('color-convert');
+
+// Hex to LAB
+convert.hex.lab('DEADBF'); // [ 76, 21, -2 ]
+convert.hex.lab.raw('DEADBF'); // [ 75.56213190997677, 20.653827952644754, -2.290532499330533 ]
+
+// RGB to CMYK
+convert.rgb.cmyk(167, 255, 4); // [ 35, 0, 98, 0 ]
+convert.rgb.cmyk.raw(167, 255, 4); // [ 34.509803921568626, 0, 98.43137254901961, 0 ]
+```
+
+### Arrays
+All functions that accept multiple arguments also support passing an array.
+
+Note that this does **not** apply to functions that convert from a color that only requires one value (e.g. `keyword`, `ansi256`, `hex`, etc.)
+
+```js
+var convert = require('color-convert');
+
+convert.rgb.hex(123, 45, 67); // '7B2D43'
+convert.rgb.hex([123, 45, 67]); // '7B2D43'
+```
+
+## Routing
+
+Conversions that don't have an _explicitly_ defined conversion (in [conversions.js](conversions.js)), but can be converted by means of sub-conversions (e.g. XYZ -> **RGB** -> CMYK), are automatically routed together. This allows just about any color model supported by `color-convert` to be converted to any other model, so long as a sub-conversion path exists. This is also true for conversions requiring more than one step in between (e.g. LCH -> **LAB** -> **XYZ** -> **RGB** -> Hex).
+
+Keep in mind that extensive conversions _may_ result in a loss of precision, and exist only to be complete. For a list of "direct" (single-step) conversions, see [conversions.js](conversions.js).
+
+# Contribute
+
+If there is a new model you would like to support, or want to add a direct conversion between two existing models, please send us a pull request.
+
+# License
+Copyright © 2011-2016, Heather Arthur and Josh Junon. Licensed under the [MIT License](LICENSE).
diff --git a/node_modules/color-convert/conversions.js b/node_modules/color-convert/conversions.js
new file mode 100644
index 0000000..2657f26
--- /dev/null
+++ b/node_modules/color-convert/conversions.js
@@ -0,0 +1,839 @@
+/* MIT license */
+/* eslint-disable no-mixed-operators */
+const cssKeywords = require('color-name');
+
+// NOTE: conversions should only return primitive values (i.e. arrays, or
+// values that give correct `typeof` results).
+// do not use box values types (i.e. Number(), String(), etc.)
+
+const reverseKeywords = {};
+for (const key of Object.keys(cssKeywords)) {
+ reverseKeywords[cssKeywords[key]] = key;
+}
+
+const convert = {
+ rgb: {channels: 3, labels: 'rgb'},
+ hsl: {channels: 3, labels: 'hsl'},
+ hsv: {channels: 3, labels: 'hsv'},
+ hwb: {channels: 3, labels: 'hwb'},
+ cmyk: {channels: 4, labels: 'cmyk'},
+ xyz: {channels: 3, labels: 'xyz'},
+ lab: {channels: 3, labels: 'lab'},
+ lch: {channels: 3, labels: 'lch'},
+ hex: {channels: 1, labels: ['hex']},
+ keyword: {channels: 1, labels: ['keyword']},
+ ansi16: {channels: 1, labels: ['ansi16']},
+ ansi256: {channels: 1, labels: ['ansi256']},
+ hcg: {channels: 3, labels: ['h', 'c', 'g']},
+ apple: {channels: 3, labels: ['r16', 'g16', 'b16']},
+ gray: {channels: 1, labels: ['gray']}
+};
+
+module.exports = convert;
+
+// Hide .channels and .labels properties
+for (const model of Object.keys(convert)) {
+ if (!('channels' in convert[model])) {
+ throw new Error('missing channels property: ' + model);
+ }
+
+ if (!('labels' in convert[model])) {
+ throw new Error('missing channel labels property: ' + model);
+ }
+
+ if (convert[model].labels.length !== convert[model].channels) {
+ throw new Error('channel and label counts mismatch: ' + model);
+ }
+
+ const {channels, labels} = convert[model];
+ delete convert[model].channels;
+ delete convert[model].labels;
+ Object.defineProperty(convert[model], 'channels', {value: channels});
+ Object.defineProperty(convert[model], 'labels', {value: labels});
+}
+
+convert.rgb.hsl = function (rgb) {
+ const r = rgb[0] / 255;
+ const g = rgb[1] / 255;
+ const b = rgb[2] / 255;
+ const min = Math.min(r, g, b);
+ const max = Math.max(r, g, b);
+ const delta = max - min;
+ let h;
+ let s;
+
+ if (max === min) {
+ h = 0;
+ } else if (r === max) {
+ h = (g - b) / delta;
+ } else if (g === max) {
+ h = 2 + (b - r) / delta;
+ } else if (b === max) {
+ h = 4 + (r - g) / delta;
+ }
+
+ h = Math.min(h * 60, 360);
+
+ if (h < 0) {
+ h += 360;
+ }
+
+ const l = (min + max) / 2;
+
+ if (max === min) {
+ s = 0;
+ } else if (l <= 0.5) {
+ s = delta / (max + min);
+ } else {
+ s = delta / (2 - max - min);
+ }
+
+ return [h, s * 100, l * 100];
+};
+
+convert.rgb.hsv = function (rgb) {
+ let rdif;
+ let gdif;
+ let bdif;
+ let h;
+ let s;
+
+ const r = rgb[0] / 255;
+ const g = rgb[1] / 255;
+ const b = rgb[2] / 255;
+ const v = Math.max(r, g, b);
+ const diff = v - Math.min(r, g, b);
+ const diffc = function (c) {
+ return (v - c) / 6 / diff + 1 / 2;
+ };
+
+ if (diff === 0) {
+ h = 0;
+ s = 0;
+ } else {
+ s = diff / v;
+ rdif = diffc(r);
+ gdif = diffc(g);
+ bdif = diffc(b);
+
+ if (r === v) {
+ h = bdif - gdif;
+ } else if (g === v) {
+ h = (1 / 3) + rdif - bdif;
+ } else if (b === v) {
+ h = (2 / 3) + gdif - rdif;
+ }
+
+ if (h < 0) {
+ h += 1;
+ } else if (h > 1) {
+ h -= 1;
+ }
+ }
+
+ return [
+ h * 360,
+ s * 100,
+ v * 100
+ ];
+};
+
+convert.rgb.hwb = function (rgb) {
+ const r = rgb[0];
+ const g = rgb[1];
+ let b = rgb[2];
+ const h = convert.rgb.hsl(rgb)[0];
+ const w = 1 / 255 * Math.min(r, Math.min(g, b));
+
+ b = 1 - 1 / 255 * Math.max(r, Math.max(g, b));
+
+ return [h, w * 100, b * 100];
+};
+
+convert.rgb.cmyk = function (rgb) {
+ const r = rgb[0] / 255;
+ const g = rgb[1] / 255;
+ const b = rgb[2] / 255;
+
+ const k = Math.min(1 - r, 1 - g, 1 - b);
+ const c = (1 - r - k) / (1 - k) || 0;
+ const m = (1 - g - k) / (1 - k) || 0;
+ const y = (1 - b - k) / (1 - k) || 0;
+
+ return [c * 100, m * 100, y * 100, k * 100];
+};
+
+function comparativeDistance(x, y) {
+ /*
+ See https://en.m.wikipedia.org/wiki/Euclidean_distance#Squared_Euclidean_distance
+ */
+ return (
+ ((x[0] - y[0]) ** 2) +
+ ((x[1] - y[1]) ** 2) +
+ ((x[2] - y[2]) ** 2)
+ );
+}
+
+convert.rgb.keyword = function (rgb) {
+ const reversed = reverseKeywords[rgb];
+ if (reversed) {
+ return reversed;
+ }
+
+ let currentClosestDistance = Infinity;
+ let currentClosestKeyword;
+
+ for (const keyword of Object.keys(cssKeywords)) {
+ const value = cssKeywords[keyword];
+
+ // Compute comparative distance
+ const distance = comparativeDistance(rgb, value);
+
+ // Check if its less, if so set as closest
+ if (distance < currentClosestDistance) {
+ currentClosestDistance = distance;
+ currentClosestKeyword = keyword;
+ }
+ }
+
+ return currentClosestKeyword;
+};
+
+convert.keyword.rgb = function (keyword) {
+ return cssKeywords[keyword];
+};
+
+convert.rgb.xyz = function (rgb) {
+ let r = rgb[0] / 255;
+ let g = rgb[1] / 255;
+ let b = rgb[2] / 255;
+
+ // Assume sRGB
+ r = r > 0.04045 ? (((r + 0.055) / 1.055) ** 2.4) : (r / 12.92);
+ g = g > 0.04045 ? (((g + 0.055) / 1.055) ** 2.4) : (g / 12.92);
+ b = b > 0.04045 ? (((b + 0.055) / 1.055) ** 2.4) : (b / 12.92);
+
+ const x = (r * 0.4124) + (g * 0.3576) + (b * 0.1805);
+ const y = (r * 0.2126) + (g * 0.7152) + (b * 0.0722);
+ const z = (r * 0.0193) + (g * 0.1192) + (b * 0.9505);
+
+ return [x * 100, y * 100, z * 100];
+};
+
+convert.rgb.lab = function (rgb) {
+ const xyz = convert.rgb.xyz(rgb);
+ let x = xyz[0];
+ let y = xyz[1];
+ let z = xyz[2];
+
+ x /= 95.047;
+ y /= 100;
+ z /= 108.883;
+
+ x = x > 0.008856 ? (x ** (1 / 3)) : (7.787 * x) + (16 / 116);
+ y = y > 0.008856 ? (y ** (1 / 3)) : (7.787 * y) + (16 / 116);
+ z = z > 0.008856 ? (z ** (1 / 3)) : (7.787 * z) + (16 / 116);
+
+ const l = (116 * y) - 16;
+ const a = 500 * (x - y);
+ const b = 200 * (y - z);
+
+ return [l, a, b];
+};
+
+convert.hsl.rgb = function (hsl) {
+ const h = hsl[0] / 360;
+ const s = hsl[1] / 100;
+ const l = hsl[2] / 100;
+ let t2;
+ let t3;
+ let val;
+
+ if (s === 0) {
+ val = l * 255;
+ return [val, val, val];
+ }
+
+ if (l < 0.5) {
+ t2 = l * (1 + s);
+ } else {
+ t2 = l + s - l * s;
+ }
+
+ const t1 = 2 * l - t2;
+
+ const rgb = [0, 0, 0];
+ for (let i = 0; i < 3; i++) {
+ t3 = h + 1 / 3 * -(i - 1);
+ if (t3 < 0) {
+ t3++;
+ }
+
+ if (t3 > 1) {
+ t3--;
+ }
+
+ if (6 * t3 < 1) {
+ val = t1 + (t2 - t1) * 6 * t3;
+ } else if (2 * t3 < 1) {
+ val = t2;
+ } else if (3 * t3 < 2) {
+ val = t1 + (t2 - t1) * (2 / 3 - t3) * 6;
+ } else {
+ val = t1;
+ }
+
+ rgb[i] = val * 255;
+ }
+
+ return rgb;
+};
+
+convert.hsl.hsv = function (hsl) {
+ const h = hsl[0];
+ let s = hsl[1] / 100;
+ let l = hsl[2] / 100;
+ let smin = s;
+ const lmin = Math.max(l, 0.01);
+
+ l *= 2;
+ s *= (l <= 1) ? l : 2 - l;
+ smin *= lmin <= 1 ? lmin : 2 - lmin;
+ const v = (l + s) / 2;
+ const sv = l === 0 ? (2 * smin) / (lmin + smin) : (2 * s) / (l + s);
+
+ return [h, sv * 100, v * 100];
+};
+
+convert.hsv.rgb = function (hsv) {
+ const h = hsv[0] / 60;
+ const s = hsv[1] / 100;
+ let v = hsv[2] / 100;
+ const hi = Math.floor(h) % 6;
+
+ const f = h - Math.floor(h);
+ const p = 255 * v * (1 - s);
+ const q = 255 * v * (1 - (s * f));
+ const t = 255 * v * (1 - (s * (1 - f)));
+ v *= 255;
+
+ switch (hi) {
+ case 0:
+ return [v, t, p];
+ case 1:
+ return [q, v, p];
+ case 2:
+ return [p, v, t];
+ case 3:
+ return [p, q, v];
+ case 4:
+ return [t, p, v];
+ case 5:
+ return [v, p, q];
+ }
+};
+
+convert.hsv.hsl = function (hsv) {
+ const h = hsv[0];
+ const s = hsv[1] / 100;
+ const v = hsv[2] / 100;
+ const vmin = Math.max(v, 0.01);
+ let sl;
+ let l;
+
+ l = (2 - s) * v;
+ const lmin = (2 - s) * vmin;
+ sl = s * vmin;
+ sl /= (lmin <= 1) ? lmin : 2 - lmin;
+ sl = sl || 0;
+ l /= 2;
+
+ return [h, sl * 100, l * 100];
+};
+
+// http://dev.w3.org/csswg/css-color/#hwb-to-rgb
+convert.hwb.rgb = function (hwb) {
+ const h = hwb[0] / 360;
+ let wh = hwb[1] / 100;
+ let bl = hwb[2] / 100;
+ const ratio = wh + bl;
+ let f;
+
+ // Wh + bl cant be > 1
+ if (ratio > 1) {
+ wh /= ratio;
+ bl /= ratio;
+ }
+
+ const i = Math.floor(6 * h);
+ const v = 1 - bl;
+ f = 6 * h - i;
+
+ if ((i & 0x01) !== 0) {
+ f = 1 - f;
+ }
+
+ const n = wh + f * (v - wh); // Linear interpolation
+
+ let r;
+ let g;
+ let b;
+ /* eslint-disable max-statements-per-line,no-multi-spaces */
+ switch (i) {
+ default:
+ case 6:
+ case 0: r = v; g = n; b = wh; break;
+ case 1: r = n; g = v; b = wh; break;
+ case 2: r = wh; g = v; b = n; break;
+ case 3: r = wh; g = n; b = v; break;
+ case 4: r = n; g = wh; b = v; break;
+ case 5: r = v; g = wh; b = n; break;
+ }
+ /* eslint-enable max-statements-per-line,no-multi-spaces */
+
+ return [r * 255, g * 255, b * 255];
+};
+
+convert.cmyk.rgb = function (cmyk) {
+ const c = cmyk[0] / 100;
+ const m = cmyk[1] / 100;
+ const y = cmyk[2] / 100;
+ const k = cmyk[3] / 100;
+
+ const r = 1 - Math.min(1, c * (1 - k) + k);
+ const g = 1 - Math.min(1, m * (1 - k) + k);
+ const b = 1 - Math.min(1, y * (1 - k) + k);
+
+ return [r * 255, g * 255, b * 255];
+};
+
+convert.xyz.rgb = function (xyz) {
+ const x = xyz[0] / 100;
+ const y = xyz[1] / 100;
+ const z = xyz[2] / 100;
+ let r;
+ let g;
+ let b;
+
+ r = (x * 3.2406) + (y * -1.5372) + (z * -0.4986);
+ g = (x * -0.9689) + (y * 1.8758) + (z * 0.0415);
+ b = (x * 0.0557) + (y * -0.2040) + (z * 1.0570);
+
+ // Assume sRGB
+ r = r > 0.0031308
+ ? ((1.055 * (r ** (1.0 / 2.4))) - 0.055)
+ : r * 12.92;
+
+ g = g > 0.0031308
+ ? ((1.055 * (g ** (1.0 / 2.4))) - 0.055)
+ : g * 12.92;
+
+ b = b > 0.0031308
+ ? ((1.055 * (b ** (1.0 / 2.4))) - 0.055)
+ : b * 12.92;
+
+ r = Math.min(Math.max(0, r), 1);
+ g = Math.min(Math.max(0, g), 1);
+ b = Math.min(Math.max(0, b), 1);
+
+ return [r * 255, g * 255, b * 255];
+};
+
+convert.xyz.lab = function (xyz) {
+ let x = xyz[0];
+ let y = xyz[1];
+ let z = xyz[2];
+
+ x /= 95.047;
+ y /= 100;
+ z /= 108.883;
+
+ x = x > 0.008856 ? (x ** (1 / 3)) : (7.787 * x) + (16 / 116);
+ y = y > 0.008856 ? (y ** (1 / 3)) : (7.787 * y) + (16 / 116);
+ z = z > 0.008856 ? (z ** (1 / 3)) : (7.787 * z) + (16 / 116);
+
+ const l = (116 * y) - 16;
+ const a = 500 * (x - y);
+ const b = 200 * (y - z);
+
+ return [l, a, b];
+};
+
+convert.lab.xyz = function (lab) {
+ const l = lab[0];
+ const a = lab[1];
+ const b = lab[2];
+ let x;
+ let y;
+ let z;
+
+ y = (l + 16) / 116;
+ x = a / 500 + y;
+ z = y - b / 200;
+
+ const y2 = y ** 3;
+ const x2 = x ** 3;
+ const z2 = z ** 3;
+ y = y2 > 0.008856 ? y2 : (y - 16 / 116) / 7.787;
+ x = x2 > 0.008856 ? x2 : (x - 16 / 116) / 7.787;
+ z = z2 > 0.008856 ? z2 : (z - 16 / 116) / 7.787;
+
+ x *= 95.047;
+ y *= 100;
+ z *= 108.883;
+
+ return [x, y, z];
+};
+
+convert.lab.lch = function (lab) {
+ const l = lab[0];
+ const a = lab[1];
+ const b = lab[2];
+ let h;
+
+ const hr = Math.atan2(b, a);
+ h = hr * 360 / 2 / Math.PI;
+
+ if (h < 0) {
+ h += 360;
+ }
+
+ const c = Math.sqrt(a * a + b * b);
+
+ return [l, c, h];
+};
+
+convert.lch.lab = function (lch) {
+ const l = lch[0];
+ const c = lch[1];
+ const h = lch[2];
+
+ const hr = h / 360 * 2 * Math.PI;
+ const a = c * Math.cos(hr);
+ const b = c * Math.sin(hr);
+
+ return [l, a, b];
+};
+
+convert.rgb.ansi16 = function (args, saturation = null) {
+ const [r, g, b] = args;
+ let value = saturation === null ? convert.rgb.hsv(args)[2] : saturation; // Hsv -> ansi16 optimization
+
+ value = Math.round(value / 50);
+
+ if (value === 0) {
+ return 30;
+ }
+
+ let ansi = 30
+ + ((Math.round(b / 255) << 2)
+ | (Math.round(g / 255) << 1)
+ | Math.round(r / 255));
+
+ if (value === 2) {
+ ansi += 60;
+ }
+
+ return ansi;
+};
+
+convert.hsv.ansi16 = function (args) {
+ // Optimization here; we already know the value and don't need to get
+ // it converted for us.
+ return convert.rgb.ansi16(convert.hsv.rgb(args), args[2]);
+};
+
+convert.rgb.ansi256 = function (args) {
+ const r = args[0];
+ const g = args[1];
+ const b = args[2];
+
+ // We use the extended greyscale palette here, with the exception of
+ // black and white. normal palette only has 4 greyscale shades.
+ if (r === g && g === b) {
+ if (r < 8) {
+ return 16;
+ }
+
+ if (r > 248) {
+ return 231;
+ }
+
+ return Math.round(((r - 8) / 247) * 24) + 232;
+ }
+
+ const ansi = 16
+ + (36 * Math.round(r / 255 * 5))
+ + (6 * Math.round(g / 255 * 5))
+ + Math.round(b / 255 * 5);
+
+ return ansi;
+};
+
+convert.ansi16.rgb = function (args) {
+ let color = args % 10;
+
+ // Handle greyscale
+ if (color === 0 || color === 7) {
+ if (args > 50) {
+ color += 3.5;
+ }
+
+ color = color / 10.5 * 255;
+
+ return [color, color, color];
+ }
+
+ const mult = (~~(args > 50) + 1) * 0.5;
+ const r = ((color & 1) * mult) * 255;
+ const g = (((color >> 1) & 1) * mult) * 255;
+ const b = (((color >> 2) & 1) * mult) * 255;
+
+ return [r, g, b];
+};
+
+convert.ansi256.rgb = function (args) {
+ // Handle greyscale
+ if (args >= 232) {
+ const c = (args - 232) * 10 + 8;
+ return [c, c, c];
+ }
+
+ args -= 16;
+
+ let rem;
+ const r = Math.floor(args / 36) / 5 * 255;
+ const g = Math.floor((rem = args % 36) / 6) / 5 * 255;
+ const b = (rem % 6) / 5 * 255;
+
+ return [r, g, b];
+};
+
+convert.rgb.hex = function (args) {
+ const integer = ((Math.round(args[0]) & 0xFF) << 16)
+ + ((Math.round(args[1]) & 0xFF) << 8)
+ + (Math.round(args[2]) & 0xFF);
+
+ const string = integer.toString(16).toUpperCase();
+ return '000000'.substring(string.length) + string;
+};
+
+convert.hex.rgb = function (args) {
+ const match = args.toString(16).match(/[a-f0-9]{6}|[a-f0-9]{3}/i);
+ if (!match) {
+ return [0, 0, 0];
+ }
+
+ let colorString = match[0];
+
+ if (match[0].length === 3) {
+ colorString = colorString.split('').map(char => {
+ return char + char;
+ }).join('');
+ }
+
+ const integer = parseInt(colorString, 16);
+ const r = (integer >> 16) & 0xFF;
+ const g = (integer >> 8) & 0xFF;
+ const b = integer & 0xFF;
+
+ return [r, g, b];
+};
+
+convert.rgb.hcg = function (rgb) {
+ const r = rgb[0] / 255;
+ const g = rgb[1] / 255;
+ const b = rgb[2] / 255;
+ const max = Math.max(Math.max(r, g), b);
+ const min = Math.min(Math.min(r, g), b);
+ const chroma = (max - min);
+ let grayscale;
+ let hue;
+
+ if (chroma < 1) {
+ grayscale = min / (1 - chroma);
+ } else {
+ grayscale = 0;
+ }
+
+ if (chroma <= 0) {
+ hue = 0;
+ } else
+ if (max === r) {
+ hue = ((g - b) / chroma) % 6;
+ } else
+ if (max === g) {
+ hue = 2 + (b - r) / chroma;
+ } else {
+ hue = 4 + (r - g) / chroma;
+ }
+
+ hue /= 6;
+ hue %= 1;
+
+ return [hue * 360, chroma * 100, grayscale * 100];
+};
+
+convert.hsl.hcg = function (hsl) {
+ const s = hsl[1] / 100;
+ const l = hsl[2] / 100;
+
+ const c = l < 0.5 ? (2.0 * s * l) : (2.0 * s * (1.0 - l));
+
+ let f = 0;
+ if (c < 1.0) {
+ f = (l - 0.5 * c) / (1.0 - c);
+ }
+
+ return [hsl[0], c * 100, f * 100];
+};
+
+convert.hsv.hcg = function (hsv) {
+ const s = hsv[1] / 100;
+ const v = hsv[2] / 100;
+
+ const c = s * v;
+ let f = 0;
+
+ if (c < 1.0) {
+ f = (v - c) / (1 - c);
+ }
+
+ return [hsv[0], c * 100, f * 100];
+};
+
+convert.hcg.rgb = function (hcg) {
+ const h = hcg[0] / 360;
+ const c = hcg[1] / 100;
+ const g = hcg[2] / 100;
+
+ if (c === 0.0) {
+ return [g * 255, g * 255, g * 255];
+ }
+
+ const pure = [0, 0, 0];
+ const hi = (h % 1) * 6;
+ const v = hi % 1;
+ const w = 1 - v;
+ let mg = 0;
+
+ /* eslint-disable max-statements-per-line */
+ switch (Math.floor(hi)) {
+ case 0:
+ pure[0] = 1; pure[1] = v; pure[2] = 0; break;
+ case 1:
+ pure[0] = w; pure[1] = 1; pure[2] = 0; break;
+ case 2:
+ pure[0] = 0; pure[1] = 1; pure[2] = v; break;
+ case 3:
+ pure[0] = 0; pure[1] = w; pure[2] = 1; break;
+ case 4:
+ pure[0] = v; pure[1] = 0; pure[2] = 1; break;
+ default:
+ pure[0] = 1; pure[1] = 0; pure[2] = w;
+ }
+ /* eslint-enable max-statements-per-line */
+
+ mg = (1.0 - c) * g;
+
+ return [
+ (c * pure[0] + mg) * 255,
+ (c * pure[1] + mg) * 255,
+ (c * pure[2] + mg) * 255
+ ];
+};
+
+convert.hcg.hsv = function (hcg) {
+ const c = hcg[1] / 100;
+ const g = hcg[2] / 100;
+
+ const v = c + g * (1.0 - c);
+ let f = 0;
+
+ if (v > 0.0) {
+ f = c / v;
+ }
+
+ return [hcg[0], f * 100, v * 100];
+};
+
+convert.hcg.hsl = function (hcg) {
+ const c = hcg[1] / 100;
+ const g = hcg[2] / 100;
+
+ const l = g * (1.0 - c) + 0.5 * c;
+ let s = 0;
+
+ if (l > 0.0 && l < 0.5) {
+ s = c / (2 * l);
+ } else
+ if (l >= 0.5 && l < 1.0) {
+ s = c / (2 * (1 - l));
+ }
+
+ return [hcg[0], s * 100, l * 100];
+};
+
+convert.hcg.hwb = function (hcg) {
+ const c = hcg[1] / 100;
+ const g = hcg[2] / 100;
+ const v = c + g * (1.0 - c);
+ return [hcg[0], (v - c) * 100, (1 - v) * 100];
+};
+
+convert.hwb.hcg = function (hwb) {
+ const w = hwb[1] / 100;
+ const b = hwb[2] / 100;
+ const v = 1 - b;
+ const c = v - w;
+ let g = 0;
+
+ if (c < 1) {
+ g = (v - c) / (1 - c);
+ }
+
+ return [hwb[0], c * 100, g * 100];
+};
+
+convert.apple.rgb = function (apple) {
+ return [(apple[0] / 65535) * 255, (apple[1] / 65535) * 255, (apple[2] / 65535) * 255];
+};
+
+convert.rgb.apple = function (rgb) {
+ return [(rgb[0] / 255) * 65535, (rgb[1] / 255) * 65535, (rgb[2] / 255) * 65535];
+};
+
+convert.gray.rgb = function (args) {
+ return [args[0] / 100 * 255, args[0] / 100 * 255, args[0] / 100 * 255];
+};
+
+convert.gray.hsl = function (args) {
+ return [0, 0, args[0]];
+};
+
+convert.gray.hsv = convert.gray.hsl;
+
+convert.gray.hwb = function (gray) {
+ return [0, 100, gray[0]];
+};
+
+convert.gray.cmyk = function (gray) {
+ return [0, 0, 0, gray[0]];
+};
+
+convert.gray.lab = function (gray) {
+ return [gray[0], 0, 0];
+};
+
+convert.gray.hex = function (gray) {
+ const val = Math.round(gray[0] / 100 * 255) & 0xFF;
+ const integer = (val << 16) + (val << 8) + val;
+
+ const string = integer.toString(16).toUpperCase();
+ return '000000'.substring(string.length) + string;
+};
+
+convert.rgb.gray = function (rgb) {
+ const val = (rgb[0] + rgb[1] + rgb[2]) / 3;
+ return [val / 255 * 100];
+};
diff --git a/node_modules/color-convert/index.js b/node_modules/color-convert/index.js
new file mode 100644
index 0000000..b648e57
--- /dev/null
+++ b/node_modules/color-convert/index.js
@@ -0,0 +1,81 @@
+const conversions = require('./conversions');
+const route = require('./route');
+
+const convert = {};
+
+const models = Object.keys(conversions);
+
+function wrapRaw(fn) {
+ const wrappedFn = function (...args) {
+ const arg0 = args[0];
+ if (arg0 === undefined || arg0 === null) {
+ return arg0;
+ }
+
+ if (arg0.length > 1) {
+ args = arg0;
+ }
+
+ return fn(args);
+ };
+
+ // Preserve .conversion property if there is one
+ if ('conversion' in fn) {
+ wrappedFn.conversion = fn.conversion;
+ }
+
+ return wrappedFn;
+}
+
+function wrapRounded(fn) {
+ const wrappedFn = function (...args) {
+ const arg0 = args[0];
+
+ if (arg0 === undefined || arg0 === null) {
+ return arg0;
+ }
+
+ if (arg0.length > 1) {
+ args = arg0;
+ }
+
+ const result = fn(args);
+
+ // We're assuming the result is an array here.
+ // see notice in conversions.js; don't use box types
+ // in conversion functions.
+ if (typeof result === 'object') {
+ for (let len = result.length, i = 0; i < len; i++) {
+ result[i] = Math.round(result[i]);
+ }
+ }
+
+ return result;
+ };
+
+ // Preserve .conversion property if there is one
+ if ('conversion' in fn) {
+ wrappedFn.conversion = fn.conversion;
+ }
+
+ return wrappedFn;
+}
+
+models.forEach(fromModel => {
+ convert[fromModel] = {};
+
+ Object.defineProperty(convert[fromModel], 'channels', {value: conversions[fromModel].channels});
+ Object.defineProperty(convert[fromModel], 'labels', {value: conversions[fromModel].labels});
+
+ const routes = route(fromModel);
+ const routeModels = Object.keys(routes);
+
+ routeModels.forEach(toModel => {
+ const fn = routes[toModel];
+
+ convert[fromModel][toModel] = wrapRounded(fn);
+ convert[fromModel][toModel].raw = wrapRaw(fn);
+ });
+});
+
+module.exports = convert;
diff --git a/node_modules/color-convert/package.json b/node_modules/color-convert/package.json
new file mode 100644
index 0000000..6e48000
--- /dev/null
+++ b/node_modules/color-convert/package.json
@@ -0,0 +1,48 @@
+{
+ "name": "color-convert",
+ "description": "Plain color conversion functions",
+ "version": "2.0.1",
+ "author": "Heather Arthur ",
+ "license": "MIT",
+ "repository": "Qix-/color-convert",
+ "scripts": {
+ "pretest": "xo",
+ "test": "node test/basic.js"
+ },
+ "engines": {
+ "node": ">=7.0.0"
+ },
+ "keywords": [
+ "color",
+ "colour",
+ "convert",
+ "converter",
+ "conversion",
+ "rgb",
+ "hsl",
+ "hsv",
+ "hwb",
+ "cmyk",
+ "ansi",
+ "ansi16"
+ ],
+ "files": [
+ "index.js",
+ "conversions.js",
+ "route.js"
+ ],
+ "xo": {
+ "rules": {
+ "default-case": 0,
+ "no-inline-comments": 0,
+ "operator-linebreak": 0
+ }
+ },
+ "devDependencies": {
+ "chalk": "^2.4.2",
+ "xo": "^0.24.0"
+ },
+ "dependencies": {
+ "color-name": "~1.1.4"
+ }
+}
diff --git a/node_modules/color-convert/route.js b/node_modules/color-convert/route.js
new file mode 100644
index 0000000..1a08521
--- /dev/null
+++ b/node_modules/color-convert/route.js
@@ -0,0 +1,97 @@
+const conversions = require('./conversions');
+
+/*
+ This function routes a model to all other models.
+
+ all functions that are routed have a property `.conversion` attached
+ to the returned synthetic function. This property is an array
+ of strings, each with the steps in between the 'from' and 'to'
+ color models (inclusive).
+
+ conversions that are not possible simply are not included.
+*/
+
+function buildGraph() {
+ const graph = {};
+ // https://jsperf.com/object-keys-vs-for-in-with-closure/3
+ const models = Object.keys(conversions);
+
+ for (let len = models.length, i = 0; i < len; i++) {
+ graph[models[i]] = {
+ // http://jsperf.com/1-vs-infinity
+ // micro-opt, but this is simple.
+ distance: -1,
+ parent: null
+ };
+ }
+
+ return graph;
+}
+
+// https://en.wikipedia.org/wiki/Breadth-first_search
+function deriveBFS(fromModel) {
+ const graph = buildGraph();
+ const queue = [fromModel]; // Unshift -> queue -> pop
+
+ graph[fromModel].distance = 0;
+
+ while (queue.length) {
+ const current = queue.pop();
+ const adjacents = Object.keys(conversions[current]);
+
+ for (let len = adjacents.length, i = 0; i < len; i++) {
+ const adjacent = adjacents[i];
+ const node = graph[adjacent];
+
+ if (node.distance === -1) {
+ node.distance = graph[current].distance + 1;
+ node.parent = current;
+ queue.unshift(adjacent);
+ }
+ }
+ }
+
+ return graph;
+}
+
+function link(from, to) {
+ return function (args) {
+ return to(from(args));
+ };
+}
+
+function wrapConversion(toModel, graph) {
+ const path = [graph[toModel].parent, toModel];
+ let fn = conversions[graph[toModel].parent][toModel];
+
+ let cur = graph[toModel].parent;
+ while (graph[cur].parent) {
+ path.unshift(graph[cur].parent);
+ fn = link(conversions[graph[cur].parent][cur], fn);
+ cur = graph[cur].parent;
+ }
+
+ fn.conversion = path;
+ return fn;
+}
+
+module.exports = function (fromModel) {
+ const graph = deriveBFS(fromModel);
+ const conversion = {};
+
+ const models = Object.keys(graph);
+ for (let len = models.length, i = 0; i < len; i++) {
+ const toModel = models[i];
+ const node = graph[toModel];
+
+ if (node.parent === null) {
+ // No possible conversion, or this node is the source model.
+ continue;
+ }
+
+ conversion[toModel] = wrapConversion(toModel, graph);
+ }
+
+ return conversion;
+};
+
diff --git a/node_modules/color-name/LICENSE b/node_modules/color-name/LICENSE
new file mode 100644
index 0000000..c6b1001
--- /dev/null
+++ b/node_modules/color-name/LICENSE
@@ -0,0 +1,8 @@
+The MIT License (MIT)
+Copyright (c) 2015 Dmitry Ivanov
+
+Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
\ No newline at end of file
diff --git a/node_modules/color-name/README.md b/node_modules/color-name/README.md
new file mode 100644
index 0000000..932b979
--- /dev/null
+++ b/node_modules/color-name/README.md
@@ -0,0 +1,11 @@
+A JSON with color names and its values. Based on http://dev.w3.org/csswg/css-color/#named-colors.
+
+[![NPM](https://nodei.co/npm/color-name.png?mini=true)](https://nodei.co/npm/color-name/)
+
+
+```js
+var colors = require('color-name');
+colors.red //[255,0,0]
+```
+
+
diff --git a/node_modules/color-name/index.js b/node_modules/color-name/index.js
new file mode 100644
index 0000000..b7c198a
--- /dev/null
+++ b/node_modules/color-name/index.js
@@ -0,0 +1,152 @@
+'use strict'
+
+module.exports = {
+ "aliceblue": [240, 248, 255],
+ "antiquewhite": [250, 235, 215],
+ "aqua": [0, 255, 255],
+ "aquamarine": [127, 255, 212],
+ "azure": [240, 255, 255],
+ "beige": [245, 245, 220],
+ "bisque": [255, 228, 196],
+ "black": [0, 0, 0],
+ "blanchedalmond": [255, 235, 205],
+ "blue": [0, 0, 255],
+ "blueviolet": [138, 43, 226],
+ "brown": [165, 42, 42],
+ "burlywood": [222, 184, 135],
+ "cadetblue": [95, 158, 160],
+ "chartreuse": [127, 255, 0],
+ "chocolate": [210, 105, 30],
+ "coral": [255, 127, 80],
+ "cornflowerblue": [100, 149, 237],
+ "cornsilk": [255, 248, 220],
+ "crimson": [220, 20, 60],
+ "cyan": [0, 255, 255],
+ "darkblue": [0, 0, 139],
+ "darkcyan": [0, 139, 139],
+ "darkgoldenrod": [184, 134, 11],
+ "darkgray": [169, 169, 169],
+ "darkgreen": [0, 100, 0],
+ "darkgrey": [169, 169, 169],
+ "darkkhaki": [189, 183, 107],
+ "darkmagenta": [139, 0, 139],
+ "darkolivegreen": [85, 107, 47],
+ "darkorange": [255, 140, 0],
+ "darkorchid": [153, 50, 204],
+ "darkred": [139, 0, 0],
+ "darksalmon": [233, 150, 122],
+ "darkseagreen": [143, 188, 143],
+ "darkslateblue": [72, 61, 139],
+ "darkslategray": [47, 79, 79],
+ "darkslategrey": [47, 79, 79],
+ "darkturquoise": [0, 206, 209],
+ "darkviolet": [148, 0, 211],
+ "deeppink": [255, 20, 147],
+ "deepskyblue": [0, 191, 255],
+ "dimgray": [105, 105, 105],
+ "dimgrey": [105, 105, 105],
+ "dodgerblue": [30, 144, 255],
+ "firebrick": [178, 34, 34],
+ "floralwhite": [255, 250, 240],
+ "forestgreen": [34, 139, 34],
+ "fuchsia": [255, 0, 255],
+ "gainsboro": [220, 220, 220],
+ "ghostwhite": [248, 248, 255],
+ "gold": [255, 215, 0],
+ "goldenrod": [218, 165, 32],
+ "gray": [128, 128, 128],
+ "green": [0, 128, 0],
+ "greenyellow": [173, 255, 47],
+ "grey": [128, 128, 128],
+ "honeydew": [240, 255, 240],
+ "hotpink": [255, 105, 180],
+ "indianred": [205, 92, 92],
+ "indigo": [75, 0, 130],
+ "ivory": [255, 255, 240],
+ "khaki": [240, 230, 140],
+ "lavender": [230, 230, 250],
+ "lavenderblush": [255, 240, 245],
+ "lawngreen": [124, 252, 0],
+ "lemonchiffon": [255, 250, 205],
+ "lightblue": [173, 216, 230],
+ "lightcoral": [240, 128, 128],
+ "lightcyan": [224, 255, 255],
+ "lightgoldenrodyellow": [250, 250, 210],
+ "lightgray": [211, 211, 211],
+ "lightgreen": [144, 238, 144],
+ "lightgrey": [211, 211, 211],
+ "lightpink": [255, 182, 193],
+ "lightsalmon": [255, 160, 122],
+ "lightseagreen": [32, 178, 170],
+ "lightskyblue": [135, 206, 250],
+ "lightslategray": [119, 136, 153],
+ "lightslategrey": [119, 136, 153],
+ "lightsteelblue": [176, 196, 222],
+ "lightyellow": [255, 255, 224],
+ "lime": [0, 255, 0],
+ "limegreen": [50, 205, 50],
+ "linen": [250, 240, 230],
+ "magenta": [255, 0, 255],
+ "maroon": [128, 0, 0],
+ "mediumaquamarine": [102, 205, 170],
+ "mediumblue": [0, 0, 205],
+ "mediumorchid": [186, 85, 211],
+ "mediumpurple": [147, 112, 219],
+ "mediumseagreen": [60, 179, 113],
+ "mediumslateblue": [123, 104, 238],
+ "mediumspringgreen": [0, 250, 154],
+ "mediumturquoise": [72, 209, 204],
+ "mediumvioletred": [199, 21, 133],
+ "midnightblue": [25, 25, 112],
+ "mintcream": [245, 255, 250],
+ "mistyrose": [255, 228, 225],
+ "moccasin": [255, 228, 181],
+ "navajowhite": [255, 222, 173],
+ "navy": [0, 0, 128],
+ "oldlace": [253, 245, 230],
+ "olive": [128, 128, 0],
+ "olivedrab": [107, 142, 35],
+ "orange": [255, 165, 0],
+ "orangered": [255, 69, 0],
+ "orchid": [218, 112, 214],
+ "palegoldenrod": [238, 232, 170],
+ "palegreen": [152, 251, 152],
+ "paleturquoise": [175, 238, 238],
+ "palevioletred": [219, 112, 147],
+ "papayawhip": [255, 239, 213],
+ "peachpuff": [255, 218, 185],
+ "peru": [205, 133, 63],
+ "pink": [255, 192, 203],
+ "plum": [221, 160, 221],
+ "powderblue": [176, 224, 230],
+ "purple": [128, 0, 128],
+ "rebeccapurple": [102, 51, 153],
+ "red": [255, 0, 0],
+ "rosybrown": [188, 143, 143],
+ "royalblue": [65, 105, 225],
+ "saddlebrown": [139, 69, 19],
+ "salmon": [250, 128, 114],
+ "sandybrown": [244, 164, 96],
+ "seagreen": [46, 139, 87],
+ "seashell": [255, 245, 238],
+ "sienna": [160, 82, 45],
+ "silver": [192, 192, 192],
+ "skyblue": [135, 206, 235],
+ "slateblue": [106, 90, 205],
+ "slategray": [112, 128, 144],
+ "slategrey": [112, 128, 144],
+ "snow": [255, 250, 250],
+ "springgreen": [0, 255, 127],
+ "steelblue": [70, 130, 180],
+ "tan": [210, 180, 140],
+ "teal": [0, 128, 128],
+ "thistle": [216, 191, 216],
+ "tomato": [255, 99, 71],
+ "turquoise": [64, 224, 208],
+ "violet": [238, 130, 238],
+ "wheat": [245, 222, 179],
+ "white": [255, 255, 255],
+ "whitesmoke": [245, 245, 245],
+ "yellow": [255, 255, 0],
+ "yellowgreen": [154, 205, 50]
+};
diff --git a/node_modules/color-name/package.json b/node_modules/color-name/package.json
new file mode 100644
index 0000000..782dd82
--- /dev/null
+++ b/node_modules/color-name/package.json
@@ -0,0 +1,28 @@
+{
+ "name": "color-name",
+ "version": "1.1.4",
+ "description": "A list of color names and its values",
+ "main": "index.js",
+ "files": [
+ "index.js"
+ ],
+ "scripts": {
+ "test": "node test.js"
+ },
+ "repository": {
+ "type": "git",
+ "url": "git@github.com:colorjs/color-name.git"
+ },
+ "keywords": [
+ "color-name",
+ "color",
+ "color-keyword",
+ "keyword"
+ ],
+ "author": "DY ",
+ "license": "MIT",
+ "bugs": {
+ "url": "https://github.com/colorjs/color-name/issues"
+ },
+ "homepage": "https://github.com/colorjs/color-name"
+}
diff --git a/node_modules/dependency-graph/CHANGELOG.md b/node_modules/dependency-graph/CHANGELOG.md
new file mode 100755
index 0000000..5e6c4d9
--- /dev/null
+++ b/node_modules/dependency-graph/CHANGELOG.md
@@ -0,0 +1,82 @@
+# Dependency Graph Changelog
+
+## 0.11.0 (March 5, 2021)
+
+- Add `entryNodes` method that returns the nodes that nothing depends on - thanks [amcdnl](https://github.com/amcdnl)!
+
+## 0.10.0 (January 9, 2021)
+
+- Add `directDependenciesOf` and `directDependantsOf` methods for retrieving direct dependency information. (Fixes #40)
+- Add aliases `dependentsOf` and `directDependentsOf`.
+
+## 0.9.0 (February 10, 2020)
+
+- Rewrite the topological sort DFS to be more efficient (and work!) on large graphs.
+ - No longer uses recursion to avoid stack overflows with large/deep graphs
+ - No longer is accidentally `O(N^2)` (thanks [willtennien](https://github.com/willtennien) for pointing this out!)
+
+## 0.8.1 (December 3, 2019)
+
+- Ensure all nodes are included in overallOrder when cycles are allowed. (Fixes #33)
+
+## 0.8.0 (December 11, 2018)
+
+- Add a `DepGraphCycleError` with cyclePath property - thanks [jhugman](https://github.com/jhugman)!
+
+## 0.7.2 (August 30, 2018)
+
+- Make constructor parameter optional in Typescript definition. (Fixes #26)
+
+## 0.7.1 (June 5, 2018)
+
+- Fix Typescript definition to include the new constructor arguments added in `0.7.0` - thanks [tbranyen](https://github.com/tbranyen)!
+
+## 0.7.0 (January 17, 2018)
+
+- Allow circular dependencies by passing in `{circular: true}` into the constructor - thanks [tbranyen](https://github.com/tbranyen)!
+
+## 0.6.0 (October 22, 2017)
+
+- Add a `size` method that will return the number of nodes in the graph.
+- Add a `clone` method that will clone the graph. Any custom node data will only be shallow-copied. (Fixes #14)
+
+## 0.5.2 (October 22, 2017)
+
+- Add missing parameter in TypeScript definition. (Fixes #19)
+
+## 0.5.1 (October 7, 2017)
+
+- Now exposes Typescript type definition - thanks [vangorra](https://github.com/vangorra)!
+
+## 0.5.0 (April 26, 2016)
+
+- Add optional data parameter for the addNode method. (Fixes #12)
+- Add methods getNodeData and setNodeData to manipulate the data associated with a node name. (Fixes #12)
+- Change the hasNode method to be able to cope with falsy node data. (Fixes #12)
+
+## 0.4.1 (Sept 3, 2015)
+
+- Check all nodes for potential cycles when calculating overall order. (Fixes #8)
+
+## 0.4.0 (Aug 1, 2015)
+
+- Better error messages
+ - When a cycle is detected, the error message will now include the cycle in it. E.g `Dependency Cycle Found: a -> b -> c -> a` (Fixes #7)
+ - When calling `addDependency` if one of the nodes does not exist, the error will say which one it was (instead of saying that "one" of the two nodes did not exist and making you manually determine which one)
+- Calling `overallOrder` on an empty graph will no longer throw an error about a dependency cycle. It will return an empty array.
+
+## 0.3.0 (July 24, 2015)
+
+- Fix issue where if you call `addNode` twice with the same name, it would clear all edges for that node. Now it will do nothing if a node with the specified name already exists. (Fixes #3)
+
+## 0.2.1 (July 3, 2015)
+
+- Fixed removeNode leaving references in outgoingEdges and reference to non-existent var edges - thanks [juhoha](https://github.com/juhoha)! (Fixes #2)
+
+## 0.2.0 (May 1, 2015)
+
+- Removed dependency on Underscore - thanks [myndzi](https://github.com/myndzi)! (Fixes #1)
+
+## 0.1.0 (May 18, 2013)
+
+- Initial Release - extracted out of asset-smasher
diff --git a/node_modules/dependency-graph/LICENSE b/node_modules/dependency-graph/LICENSE
new file mode 100755
index 0000000..6ebe5b6
--- /dev/null
+++ b/node_modules/dependency-graph/LICENSE
@@ -0,0 +1,19 @@
+Copyright (C) 2013-2020 by Jim Riecken
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.
\ No newline at end of file
diff --git a/node_modules/dependency-graph/README.md b/node_modules/dependency-graph/README.md
new file mode 100755
index 0000000..763aaf8
--- /dev/null
+++ b/node_modules/dependency-graph/README.md
@@ -0,0 +1,78 @@
+# Dependency Graph
+
+Simple dependency graph
+
+## Overview
+
+This is a simple dependency graph useful for determining the order to do a list of things that depend on certain items being done before they are.
+
+To use, `npm install dependency-graph` and then `require('dependency-graph').DepGraph`
+
+## API
+
+### DepGraph
+
+Nodes in the graph are just simple strings with optional data associated with them.
+
+ - `addNode(name, data)` - add a node in the graph with optional data. If `data` is not given, `name` will be used as data
+ - `removeNode(name)` - remove a node from the graph
+ - `hasNode(name)` - check if a node exists in the graph
+ - `size()` - return the number of nodes in the graph
+ - `getNodeData(name)` - get the data associated with a node (will throw an `Error` if the node does not exist)
+ - `setNodeData(name, data)` - set the data for an existing node (will throw an `Error` if the node does not exist)
+ - `addDependency(from, to)` - add a dependency between two nodes (will throw an `Error` if one of the nodes does not exist)
+ - `removeDependency(from, to)` - remove a dependency between two nodes
+ - `clone()` - return a clone of the graph. Any data attached to the nodes will only be *shallow-copied*
+ - `dependenciesOf(name, leavesOnly)` - get an array containing the nodes that the specified node depends on (transitively). If `leavesOnly` is true, only nodes that do not depend on any other nodes will be returned in the array.
+ - `dependantsOf(name, leavesOnly)` (aliased as `dependentsOf`) - get an array containing the nodes that depend on the specified node (transitively). If `leavesOnly` is true, only nodes that do not have any dependants will be returned in the array.
+ - `directDependenciesOf(name)` - get an array containing the direct dependencies of the specified node
+ - `directDependantsOf(name)` (aliased as `directDependentsOf`) - get an array containing the nodes that directly depend on the specified node
+ - `overallOrder(leavesOnly)` - construct the overall processing order for the dependency graph. If `leavesOnly` is true, only nodes that do not depend on any other nodes will be returned.
+ - `entryNodes()` - array of nodes that have no dependants (i.e. nothing depends on them).
+
+Dependency Cycles are detected when running `dependenciesOf`, `dependantsOf`, and `overallOrder` and if one is found, a `DepGraphCycleError` will be thrown that includes what the cycle was in the message as well as the `cyclePath` property: e.g. `Dependency Cycle Found: a -> b -> c -> a`. If you wish to silence this error, pass `circular: true` when instantiating `DepGraph` (more below).
+
+## Examples
+
+ var DepGraph = require('dependency-graph').DepGraph;
+
+ var graph = new DepGraph();
+ graph.addNode('a');
+ graph.addNode('b');
+ graph.addNode('c');
+
+ graph.size() // 3
+
+ graph.addDependency('a', 'b');
+ graph.addDependency('b', 'c');
+
+ graph.dependenciesOf('a'); // ['c', 'b']
+ graph.dependenciesOf('b'); // ['c']
+ graph.dependantsOf('c'); // ['a', 'b']
+
+ graph.overallOrder(); // ['c', 'b', 'a']
+ graph.overallOrder(true); // ['c']
+ graph.entryNodes(); // ['a']
+
+ graph.addNode('d', 'data');
+
+ graph.getNodeData('d'); // 'data'
+
+ graph.setNodeData('d', 'newData');
+
+ graph.getNodeData('d'); // 'newData'
+
+ var circularGraph = new DepGraph({ circular: true });
+
+ circularGraph.addNode('a');
+ circularGraph.addNode('b');
+ circularGraph.addNode('c');
+ circularGraph.addNode('d');
+
+ circularGraph.addDependency('a', 'b');
+ circularGraph.addDependency('b', 'c'); // b depends on c
+ circularGraph.addDependency('c', 'a'); // c depends on a, which depends on b
+ circularGraph.addDependency('d', 'a');
+
+ circularGraph.dependenciesOf('b'); // ['a', 'c']
+ circularGraph.overallOrder(); // ['c', 'b', 'a', 'd']
diff --git a/node_modules/dependency-graph/lib/dep_graph.js b/node_modules/dependency-graph/lib/dep_graph.js
new file mode 100755
index 0000000..a64f801
--- /dev/null
+++ b/node_modules/dependency-graph/lib/dep_graph.js
@@ -0,0 +1,364 @@
+/**
+ * A simple dependency graph
+ */
+
+/**
+ * Helper for creating a Topological Sort using Depth-First-Search on a set of edges.
+ *
+ * Detects cycles and throws an Error if one is detected (unless the "circular"
+ * parameter is "true" in which case it ignores them).
+ *
+ * @param edges The set of edges to DFS through
+ * @param leavesOnly Whether to only return "leaf" nodes (ones who have no edges)
+ * @param result An array in which the results will be populated
+ * @param circular A boolean to allow circular dependencies
+ */
+function createDFS(edges, leavesOnly, result, circular) {
+ var visited = {};
+ return function (start) {
+ if (visited[start]) {
+ return;
+ }
+ var inCurrentPath = {};
+ var currentPath = [];
+ var todo = []; // used as a stack
+ todo.push({ node: start, processed: false });
+ while (todo.length > 0) {
+ var current = todo[todo.length - 1]; // peek at the todo stack
+ var processed = current.processed;
+ var node = current.node;
+ if (!processed) {
+ // Haven't visited edges yet (visiting phase)
+ if (visited[node]) {
+ todo.pop();
+ continue;
+ } else if (inCurrentPath[node]) {
+ // It's not a DAG
+ if (circular) {
+ todo.pop();
+ // If we're tolerating cycles, don't revisit the node
+ continue;
+ }
+ currentPath.push(node);
+ throw new DepGraphCycleError(currentPath);
+ }
+
+ inCurrentPath[node] = true;
+ currentPath.push(node);
+ var nodeEdges = edges[node];
+ // (push edges onto the todo stack in reverse order to be order-compatible with the old DFS implementation)
+ for (var i = nodeEdges.length - 1; i >= 0; i--) {
+ todo.push({ node: nodeEdges[i], processed: false });
+ }
+ current.processed = true;
+ } else {
+ // Have visited edges (stack unrolling phase)
+ todo.pop();
+ currentPath.pop();
+ inCurrentPath[node] = false;
+ visited[node] = true;
+ if (!leavesOnly || edges[node].length === 0) {
+ result.push(node);
+ }
+ }
+ }
+ };
+}
+
+/**
+ * Simple Dependency Graph
+ */
+var DepGraph = (exports.DepGraph = function DepGraph(opts) {
+ this.nodes = {}; // Node -> Node/Data (treated like a Set)
+ this.outgoingEdges = {}; // Node -> [Dependency Node]
+ this.incomingEdges = {}; // Node -> [Dependant Node]
+ this.circular = opts && !!opts.circular; // Allows circular deps
+});
+DepGraph.prototype = {
+ /**
+ * The number of nodes in the graph.
+ */
+ size: function () {
+ return Object.keys(this.nodes).length;
+ },
+ /**
+ * Add a node to the dependency graph. If a node already exists, this method will do nothing.
+ */
+ addNode: function (node, data) {
+ if (!this.hasNode(node)) {
+ // Checking the arguments length allows the user to add a node with undefined data
+ if (arguments.length === 2) {
+ this.nodes[node] = data;
+ } else {
+ this.nodes[node] = node;
+ }
+ this.outgoingEdges[node] = [];
+ this.incomingEdges[node] = [];
+ }
+ },
+ /**
+ * Remove a node from the dependency graph. If a node does not exist, this method will do nothing.
+ */
+ removeNode: function (node) {
+ if (this.hasNode(node)) {
+ delete this.nodes[node];
+ delete this.outgoingEdges[node];
+ delete this.incomingEdges[node];
+ [this.incomingEdges, this.outgoingEdges].forEach(function (edgeList) {
+ Object.keys(edgeList).forEach(function (key) {
+ var idx = edgeList[key].indexOf(node);
+ if (idx >= 0) {
+ edgeList[key].splice(idx, 1);
+ }
+ }, this);
+ });
+ }
+ },
+ /**
+ * Check if a node exists in the graph
+ */
+ hasNode: function (node) {
+ return this.nodes.hasOwnProperty(node);
+ },
+ /**
+ * Get the data associated with a node name
+ */
+ getNodeData: function (node) {
+ if (this.hasNode(node)) {
+ return this.nodes[node];
+ } else {
+ throw new Error("Node does not exist: " + node);
+ }
+ },
+ /**
+ * Set the associated data for a given node name. If the node does not exist, this method will throw an error
+ */
+ setNodeData: function (node, data) {
+ if (this.hasNode(node)) {
+ this.nodes[node] = data;
+ } else {
+ throw new Error("Node does not exist: " + node);
+ }
+ },
+ /**
+ * Add a dependency between two nodes. If either of the nodes does not exist,
+ * an Error will be thrown.
+ */
+ addDependency: function (from, to) {
+ if (!this.hasNode(from)) {
+ throw new Error("Node does not exist: " + from);
+ }
+ if (!this.hasNode(to)) {
+ throw new Error("Node does not exist: " + to);
+ }
+ if (this.outgoingEdges[from].indexOf(to) === -1) {
+ this.outgoingEdges[from].push(to);
+ }
+ if (this.incomingEdges[to].indexOf(from) === -1) {
+ this.incomingEdges[to].push(from);
+ }
+ return true;
+ },
+ /**
+ * Remove a dependency between two nodes.
+ */
+ removeDependency: function (from, to) {
+ var idx;
+ if (this.hasNode(from)) {
+ idx = this.outgoingEdges[from].indexOf(to);
+ if (idx >= 0) {
+ this.outgoingEdges[from].splice(idx, 1);
+ }
+ }
+
+ if (this.hasNode(to)) {
+ idx = this.incomingEdges[to].indexOf(from);
+ if (idx >= 0) {
+ this.incomingEdges[to].splice(idx, 1);
+ }
+ }
+ },
+ /**
+ * Return a clone of the dependency graph. If any custom data is attached
+ * to the nodes, it will only be shallow copied.
+ */
+ clone: function () {
+ var source = this;
+ var result = new DepGraph();
+ var keys = Object.keys(source.nodes);
+ keys.forEach(function (n) {
+ result.nodes[n] = source.nodes[n];
+ result.outgoingEdges[n] = source.outgoingEdges[n].slice(0);
+ result.incomingEdges[n] = source.incomingEdges[n].slice(0);
+ });
+ return result;
+ },
+ /**
+ * Get an array containing the direct dependencies of the specified node.
+ *
+ * Throws an Error if the specified node does not exist.
+ */
+ directDependenciesOf: function (node) {
+ if (this.hasNode(node)) {
+ return this.outgoingEdges[node].slice(0);
+ } else {
+ throw new Error("Node does not exist: " + node);
+ }
+ },
+ /**
+ * Get an array containing the nodes that directly depend on the specified node.
+ *
+ * Throws an Error if the specified node does not exist.
+ */
+ directDependantsOf: function (node) {
+ if (this.hasNode(node)) {
+ return this.incomingEdges[node].slice(0);
+ } else {
+ throw new Error("Node does not exist: " + node);
+ }
+ },
+ /**
+ * Get an array containing the nodes that the specified node depends on (transitively).
+ *
+ * Throws an Error if the graph has a cycle, or the specified node does not exist.
+ *
+ * If `leavesOnly` is true, only nodes that do not depend on any other nodes will be returned
+ * in the array.
+ */
+ dependenciesOf: function (node, leavesOnly) {
+ if (this.hasNode(node)) {
+ var result = [];
+ var DFS = createDFS(
+ this.outgoingEdges,
+ leavesOnly,
+ result,
+ this.circular
+ );
+ DFS(node);
+ var idx = result.indexOf(node);
+ if (idx >= 0) {
+ result.splice(idx, 1);
+ }
+ return result;
+ } else {
+ throw new Error("Node does not exist: " + node);
+ }
+ },
+ /**
+ * get an array containing the nodes that depend on the specified node (transitively).
+ *
+ * Throws an Error if the graph has a cycle, or the specified node does not exist.
+ *
+ * If `leavesOnly` is true, only nodes that do not have any dependants will be returned in the array.
+ */
+ dependantsOf: function (node, leavesOnly) {
+ if (this.hasNode(node)) {
+ var result = [];
+ var DFS = createDFS(
+ this.incomingEdges,
+ leavesOnly,
+ result,
+ this.circular
+ );
+ DFS(node);
+ var idx = result.indexOf(node);
+ if (idx >= 0) {
+ result.splice(idx, 1);
+ }
+ return result;
+ } else {
+ throw new Error("Node does not exist: " + node);
+ }
+ },
+ /**
+ * Construct the overall processing order for the dependency graph.
+ *
+ * Throws an Error if the graph has a cycle.
+ *
+ * If `leavesOnly` is true, only nodes that do not depend on any other nodes will be returned.
+ */
+ overallOrder: function (leavesOnly) {
+ var self = this;
+ var result = [];
+ var keys = Object.keys(this.nodes);
+ if (keys.length === 0) {
+ return result; // Empty graph
+ } else {
+ if (!this.circular) {
+ // Look for cycles - we run the DFS starting at all the nodes in case there
+ // are several disconnected subgraphs inside this dependency graph.
+ var CycleDFS = createDFS(this.outgoingEdges, false, [], this.circular);
+ keys.forEach(function (n) {
+ CycleDFS(n);
+ });
+ }
+
+ var DFS = createDFS(
+ this.outgoingEdges,
+ leavesOnly,
+ result,
+ this.circular
+ );
+ // Find all potential starting points (nodes with nothing depending on them) an
+ // run a DFS starting at these points to get the order
+ keys
+ .filter(function (node) {
+ return self.incomingEdges[node].length === 0;
+ })
+ .forEach(function (n) {
+ DFS(n);
+ });
+
+ // If we're allowing cycles - we need to run the DFS against any remaining
+ // nodes that did not end up in the initial result (as they are part of a
+ // subgraph that does not have a clear starting point)
+ if (this.circular) {
+ keys
+ .filter(function (node) {
+ return result.indexOf(node) === -1;
+ })
+ .forEach(function (n) {
+ DFS(n);
+ });
+ }
+
+ return result;
+ }
+ },
+ /**
+ * Get an array of nodes that have no dependants (i.e. nothing depends on them).
+ */
+ entryNodes: function () {
+ var self = this;
+ return Object.keys(this.nodes).filter(function (node) {
+ return self.incomingEdges[node].length === 0;
+ });
+ }
+};
+
+// Create some aliases
+DepGraph.prototype.directDependentsOf = DepGraph.prototype.directDependantsOf;
+DepGraph.prototype.dependentsOf = DepGraph.prototype.dependantsOf;
+
+/**
+ * Cycle error, including the path of the cycle.
+ */
+var DepGraphCycleError = (exports.DepGraphCycleError = function (cyclePath) {
+ var message = "Dependency Cycle Found: " + cyclePath.join(" -> ");
+ var instance = new Error(message);
+ instance.cyclePath = cyclePath;
+ Object.setPrototypeOf(instance, Object.getPrototypeOf(this));
+ if (Error.captureStackTrace) {
+ Error.captureStackTrace(instance, DepGraphCycleError);
+ }
+ return instance;
+});
+DepGraphCycleError.prototype = Object.create(Error.prototype, {
+ constructor: {
+ value: Error,
+ enumerable: false,
+ writable: true,
+ configurable: true
+ }
+});
+Object.setPrototypeOf(DepGraphCycleError, Error);
diff --git a/node_modules/dependency-graph/lib/index.d.ts b/node_modules/dependency-graph/lib/index.d.ts
new file mode 100755
index 0000000..6ed8de5
--- /dev/null
+++ b/node_modules/dependency-graph/lib/index.d.ts
@@ -0,0 +1,127 @@
+declare module 'dependency-graph' {
+ export interface Options {
+ circular?: boolean;
+ }
+
+ export class DepGraph {
+ /**
+ * Creates an instance of DepGraph with optional Options.
+ */
+ constructor(opts?: Options);
+
+ /**
+ * The number of nodes in the graph.
+ */
+ size(): number;
+
+ /**
+ * Add a node in the graph with optional data. If data is not given, name will be used as data.
+ * @param {string} name
+ * @param data
+ */
+ addNode(name: string, data?: T): void;
+
+ /**
+ * Remove a node from the graph.
+ * @param {string} name
+ */
+ removeNode(name: string): void;
+
+ /**
+ * Check if a node exists in the graph.
+ * @param {string} name
+ */
+ hasNode(name: string): boolean;
+
+ /**
+ * Get the data associated with a node (will throw an Error if the node does not exist).
+ * @param {string} name
+ */
+ getNodeData(name: string): T;
+
+ /**
+ * Set the data for an existing node (will throw an Error if the node does not exist).
+ * @param {string} name
+ * @param data
+ */
+ setNodeData(name: string, data?: T): void;
+
+ /**
+ * Add a dependency between two nodes (will throw an Error if one of the nodes does not exist).
+ * @param {string} from
+ * @param {string} to
+ */
+ addDependency(from: string, to: string): void;
+
+ /**
+ * Remove a dependency between two nodes.
+ * @param {string} from
+ * @param {string} to
+ */
+ removeDependency(from: string, to: string): void;
+
+ /**
+ * Return a clone of the dependency graph (If any custom data is attached
+ * to the nodes, it will only be shallow copied).
+ */
+ clone(): DepGraph;
+
+ /**
+ * Get an array containing the direct dependency nodes of the specified node.
+ * @param name
+ */
+ directDependenciesOf(name: string): string[];
+
+ /**
+ * Get an array containing the nodes that directly depend on the specified node.
+ * @param name
+ */
+ directDependantsOf(name: string): string[];
+
+ /**
+ * Alias of `directDependantsOf`
+ *
+ * @see directDependantsOf
+ * @param {string} name
+ */
+ directDependentsOf(name: string): string[];
+
+ /**
+ * Get an array containing the nodes that the specified node depends on (transitively). If leavesOnly is true, only nodes that do not depend on any other nodes will be returned in the array.
+ * @param {string} name
+ * @param {boolean} leavesOnly
+ */
+ dependenciesOf(name: string, leavesOnly?: boolean): string[];
+
+ /**
+ * Get an array containing the nodes that depend on the specified node (transitively). If leavesOnly is true, only nodes that do not have any dependants will be returned in the array.
+ * @param {string} name
+ * @param {boolean} leavesOnly
+ */
+ dependantsOf(name: string, leavesOnly?: boolean): string[];
+
+ /**
+ * Alias of `dependantsOf`
+ *
+ * @see dependantsOf
+ * @param name
+ * @param leavesOnly
+ */
+ dependentsOf(name: string, leavesOnly?: boolean): string[];
+
+ /**
+ * Get an array of nodes that have no dependants (i.e. nothing depends on them).
+ */
+ entryNodes(): string[];
+
+ /**
+ * Construct the overall processing order for the dependency graph. If leavesOnly is true, only nodes that do not depend on any other nodes will be returned.
+ * @param {boolean} leavesOnly
+ */
+ overallOrder(leavesOnly?: boolean): string[];
+ }
+
+ export class DepGraphCycleError extends Error {
+ cyclePath: string[];
+ }
+}
diff --git a/node_modules/dependency-graph/package.json b/node_modules/dependency-graph/package.json
new file mode 100755
index 0000000..d965899
--- /dev/null
+++ b/node_modules/dependency-graph/package.json
@@ -0,0 +1,31 @@
+{
+ "name": "dependency-graph",
+ "description": "Simple dependency graph.",
+ "version": "0.11.0",
+ "author": "Jim Riecken ",
+ "keywords": [
+ "dependency",
+ "graph"
+ ],
+ "license": "MIT",
+ "repository": {
+ "type": "git",
+ "url": "git://github.com/jriecken/dependency-graph.git"
+ },
+ "bugs": {
+ "url": "http://github.com/jriecken/dependency-graph/issues"
+ },
+ "main": "./lib/dep_graph.js",
+ "scripts": {
+ "test": "jasmine specs/**/*.js"
+ },
+ "dependencies": {},
+ "optionalDependencies": {},
+ "devDependencies": {
+ "jasmine": "3.5.0"
+ },
+ "engines": {
+ "node": ">= 0.6.0"
+ },
+ "types": "./lib/index.d.ts"
+}
\ No newline at end of file
diff --git a/node_modules/dependency-graph/specs/dep_graph_spec.js b/node_modules/dependency-graph/specs/dep_graph_spec.js
new file mode 100755
index 0000000..07aa68e
--- /dev/null
+++ b/node_modules/dependency-graph/specs/dep_graph_spec.js
@@ -0,0 +1,542 @@
+var dep_graph = require("../lib/dep_graph");
+var DepGraph = dep_graph.DepGraph;
+
+describe("DepGraph", function () {
+ it("should be able to add/remove nodes", function () {
+ var graph = new DepGraph();
+
+ graph.addNode("Foo");
+ graph.addNode("Bar");
+
+ expect(graph.hasNode("Foo")).toBeTrue();
+ expect(graph.hasNode("Bar")).toBeTrue();
+ expect(graph.hasNode("NotThere")).toBeFalse();
+
+ graph.removeNode("Bar");
+
+ expect(graph.hasNode("Bar")).toBeFalse();
+ });
+
+ it("should calculate its size", function () {
+ var graph = new DepGraph();
+
+ expect(graph.size()).toBe(0);
+
+ graph.addNode("Foo");
+ graph.addNode("Bar");
+
+ expect(graph.size()).toBe(2);
+
+ graph.removeNode("Bar");
+
+ expect(graph.size()).toBe(1);
+ });
+
+ it("should treat the node data parameter as optional and use the node name as data if node data was not given", function () {
+ var graph = new DepGraph();
+
+ graph.addNode("Foo");
+
+ expect(graph.getNodeData("Foo")).toBe("Foo");
+ });
+
+ it("should be able to associate a node name with data on node add", function () {
+ var graph = new DepGraph();
+
+ graph.addNode("Foo", "data");
+
+ expect(graph.getNodeData("Foo")).toBe("data");
+ });
+
+ it("should be able to add undefined as node data", function () {
+ var graph = new DepGraph();
+
+ graph.addNode("Foo", undefined);
+
+ expect(graph.getNodeData("Foo")).toBeUndefined();
+ });
+
+ it("should return true when using hasNode with a node which has falsy data", function () {
+ var graph = new DepGraph();
+
+ var falsyData = ["", 0, null, undefined, false];
+ graph.addNode("Foo");
+
+ falsyData.forEach(function (data) {
+ graph.setNodeData("Foo", data);
+
+ expect(graph.hasNode("Foo")).toBeTrue();
+
+ // Just an extra check to make sure that the saved data is correct
+ expect(graph.getNodeData("Foo")).toBe(data);
+ });
+ });
+
+ it("should be able to set data after a node was added", function () {
+ var graph = new DepGraph();
+
+ graph.addNode("Foo", "data");
+ graph.setNodeData("Foo", "data2");
+
+ expect(graph.getNodeData("Foo")).toBe("data2");
+ });
+
+ it("should throw an error if we try to set data for a non-existing node", function () {
+ var graph = new DepGraph();
+
+ expect(function () {
+ graph.setNodeData("Foo", "data");
+ }).toThrow(new Error("Node does not exist: Foo"));
+ });
+
+ it("should throw an error if the node does not exists and we try to get data", function () {
+ var graph = new DepGraph();
+
+ expect(function () {
+ graph.getNodeData("Foo");
+ }).toThrow(new Error("Node does not exist: Foo"));
+ });
+
+ it("should do nothing if creating a node that already exists", function () {
+ var graph = new DepGraph();
+
+ graph.addNode("a");
+ graph.addNode("b");
+
+ graph.addDependency("a", "b");
+
+ graph.addNode("a");
+
+ expect(graph.dependenciesOf("a")).toEqual(["b"]);
+ });
+
+ it("should do nothing if removing a node that does not exist", function () {
+ var graph = new DepGraph();
+
+ graph.addNode("a");
+ expect(graph.hasNode("a")).toBeTrue();
+
+ graph.removeNode("a");
+ expect(graph.hasNode("Foo")).toBeFalse();
+
+ graph.removeNode("a");
+ expect(graph.hasNode("Foo")).toBeFalse();
+ });
+
+ it("should be able to add dependencies between nodes", function () {
+ var graph = new DepGraph();
+
+ graph.addNode("a");
+ graph.addNode("b");
+ graph.addNode("c");
+
+ graph.addDependency("a", "b");
+ graph.addDependency("a", "c");
+
+ expect(graph.dependenciesOf("a")).toEqual(["b", "c"]);
+ });
+
+ it("should find entry nodes", function () {
+ var graph = new DepGraph();
+
+ graph.addNode("a");
+ graph.addNode("b");
+ graph.addNode("c");
+
+ graph.addDependency("a", "b");
+ graph.addDependency("a", "c");
+
+ expect(graph.entryNodes()).toEqual(["a"]);
+ });
+
+ it("should throw an error if a node does not exist and a dependency is added", function () {
+ var graph = new DepGraph();
+
+ graph.addNode("a");
+
+ expect(function () {
+ graph.addDependency("a", "b");
+ }).toThrow(new Error("Node does not exist: b"));
+ });
+
+ it("should detect cycles", function () {
+ var graph = new DepGraph();
+
+ graph.addNode("a");
+ graph.addNode("b");
+ graph.addNode("c");
+ graph.addNode("d");
+
+ graph.addDependency("a", "b");
+ graph.addDependency("b", "c");
+ graph.addDependency("c", "a");
+ graph.addDependency("d", "a");
+
+ expect(function () {
+ graph.dependenciesOf("b");
+ }).toThrow(new dep_graph.DepGraphCycleError(["b", "c", "a", "b"]));
+ });
+
+ it("should allow cycles when configured", function () {
+ var graph = new DepGraph({ circular: true });
+
+ graph.addNode("a");
+ graph.addNode("b");
+ graph.addNode("c");
+ graph.addNode("d");
+
+ graph.addDependency("a", "b");
+ graph.addDependency("b", "c");
+ graph.addDependency("c", "a");
+ graph.addDependency("d", "a");
+
+ expect(graph.dependenciesOf("b")).toEqual(["a", "c"]);
+ expect(graph.overallOrder()).toEqual(["c", "b", "a", "d"]);
+ });
+
+ it(
+ "should include all nodes in overall order even from " +
+ "cycles in disconnected subgraphs when circular is true",
+ function () {
+ var graph = new DepGraph({ circular: true });
+
+ graph.addNode("2a");
+ graph.addNode("2b");
+ graph.addNode("2c");
+ graph.addDependency("2a", "2b");
+ graph.addDependency("2b", "2c");
+ graph.addDependency("2c", "2a");
+
+ graph.addNode("1a");
+ graph.addNode("1b");
+ graph.addNode("1c");
+ graph.addNode("1d");
+ graph.addNode("1e");
+
+ graph.addDependency("1a", "1b");
+ graph.addDependency("1a", "1c");
+ graph.addDependency("1b", "1c");
+ graph.addDependency("1c", "1d");
+
+ expect(graph.overallOrder()).toEqual([
+ "1d",
+ "1c",
+ "1b",
+ "1a",
+ "1e",
+ "2c",
+ "2b",
+ "2a"
+ ]);
+ }
+ );
+
+ it("should detect cycles in overall order", function () {
+ var graph = new DepGraph();
+
+ graph.addNode("a");
+ graph.addNode("b");
+ graph.addNode("c");
+ graph.addNode("d");
+
+ graph.addDependency("a", "b");
+ graph.addDependency("b", "c");
+ graph.addDependency("c", "a");
+ graph.addDependency("d", "a");
+
+ expect(function () {
+ graph.overallOrder();
+ }).toThrow(new dep_graph.DepGraphCycleError(["a", "b", "c", "a"]));
+ });
+
+ it("should detect cycles in overall order when all nodes have dependants (incoming edges)", function () {
+ var graph = new DepGraph();
+
+ graph.addNode("a");
+ graph.addNode("b");
+ graph.addNode("c");
+
+ graph.addDependency("a", "b");
+ graph.addDependency("b", "c");
+ graph.addDependency("c", "a");
+
+ expect(function () {
+ graph.overallOrder();
+ }).toThrow(new dep_graph.DepGraphCycleError(["a", "b", "c", "a"]));
+ });
+
+ it(
+ "should detect cycles in overall order when there are several " +
+ "disconnected subgraphs (with one that does not have a cycle",
+ function () {
+ var graph = new DepGraph();
+
+ graph.addNode("a_1");
+ graph.addNode("a_2");
+ graph.addNode("b_1");
+ graph.addNode("b_2");
+ graph.addNode("b_3");
+
+ graph.addDependency("a_1", "a_2");
+ graph.addDependency("b_1", "b_2");
+ graph.addDependency("b_2", "b_3");
+ graph.addDependency("b_3", "b_1");
+
+ expect(function () {
+ graph.overallOrder();
+ }).toThrow(
+ new dep_graph.DepGraphCycleError(["b_1", "b_2", "b_3", "b_1"])
+ );
+ }
+ );
+
+ it("should retrieve dependencies and dependants in the correct order", function () {
+ var graph = new DepGraph();
+
+ graph.addNode("a");
+ graph.addNode("b");
+ graph.addNode("c");
+ graph.addNode("d");
+
+ graph.addDependency("a", "d");
+ graph.addDependency("a", "b");
+ graph.addDependency("b", "c");
+ graph.addDependency("d", "b");
+
+ expect(graph.dependenciesOf("a")).toEqual(["c", "b", "d"]);
+ expect(graph.dependenciesOf("b")).toEqual(["c"]);
+ expect(graph.dependenciesOf("c")).toEqual([]);
+ expect(graph.dependenciesOf("d")).toEqual(["c", "b"]);
+
+ expect(graph.dependantsOf("a")).toEqual([]);
+ expect(graph.dependantsOf("b")).toEqual(["a", "d"]);
+ expect(graph.dependantsOf("c")).toEqual(["a", "d", "b"]);
+ expect(graph.dependantsOf("d")).toEqual(["a"]);
+
+ // check the alias "dependentsOf"
+ expect(graph.dependentsOf("a")).toEqual([]);
+ expect(graph.dependentsOf("b")).toEqual(["a", "d"]);
+ expect(graph.dependentsOf("c")).toEqual(["a", "d", "b"]);
+ expect(graph.dependentsOf("d")).toEqual(["a"]);
+ });
+
+ it("should be able to retrieve direct dependencies/dependants", function () {
+ var graph = new DepGraph();
+
+ graph.addNode("a");
+ graph.addNode("b");
+ graph.addNode("c");
+ graph.addNode("d");
+
+ graph.addDependency("a", "d");
+ graph.addDependency("a", "b");
+ graph.addDependency("b", "c");
+ graph.addDependency("d", "b");
+
+ expect(graph.directDependenciesOf("a")).toEqual(["d", "b"]);
+ expect(graph.directDependenciesOf("b")).toEqual(["c"]);
+ expect(graph.directDependenciesOf("c")).toEqual([]);
+ expect(graph.directDependenciesOf("d")).toEqual(["b"]);
+
+ expect(graph.directDependantsOf("a")).toEqual([]);
+ expect(graph.directDependantsOf("b")).toEqual(["a", "d"]);
+ expect(graph.directDependantsOf("c")).toEqual(["b"]);
+ expect(graph.directDependantsOf("d")).toEqual(["a"]);
+
+ // check the alias "directDependentsOf"
+ expect(graph.directDependentsOf("a")).toEqual([]);
+ expect(graph.directDependentsOf("b")).toEqual(["a", "d"]);
+ expect(graph.directDependentsOf("c")).toEqual(["b"]);
+ expect(graph.directDependentsOf("d")).toEqual(["a"]);
+ });
+
+ it("should be able to resolve the overall order of things", function () {
+ var graph = new DepGraph();
+
+ graph.addNode("a");
+ graph.addNode("b");
+ graph.addNode("c");
+ graph.addNode("d");
+ graph.addNode("e");
+
+ graph.addDependency("a", "b");
+ graph.addDependency("a", "c");
+ graph.addDependency("b", "c");
+ graph.addDependency("c", "d");
+
+ expect(graph.overallOrder()).toEqual(["d", "c", "b", "a", "e"]);
+ });
+
+ it('should be able to only retrieve the "leaves" in the overall order', function () {
+ var graph = new DepGraph();
+
+ graph.addNode("a");
+ graph.addNode("b");
+ graph.addNode("c");
+ graph.addNode("d");
+ graph.addNode("e");
+
+ graph.addDependency("a", "b");
+ graph.addDependency("a", "c");
+ graph.addDependency("b", "c");
+ graph.addDependency("c", "d");
+
+ expect(graph.overallOrder(true)).toEqual(["d", "e"]);
+ });
+
+ it("should be able to give the overall order for a graph with several disconnected subgraphs", function () {
+ var graph = new DepGraph();
+
+ graph.addNode("a_1");
+ graph.addNode("a_2");
+ graph.addNode("b_1");
+ graph.addNode("b_2");
+ graph.addNode("b_3");
+
+ graph.addDependency("a_1", "a_2");
+ graph.addDependency("b_1", "b_2");
+ graph.addDependency("b_2", "b_3");
+
+ expect(graph.overallOrder()).toEqual(["a_2", "a_1", "b_3", "b_2", "b_1"]);
+ });
+
+ it("should give an empty overall order for an empty graph", function () {
+ var graph = new DepGraph();
+
+ expect(graph.overallOrder()).toEqual([]);
+ });
+
+ it("should still work after nodes are removed", function () {
+ var graph = new DepGraph();
+
+ graph.addNode("a");
+ graph.addNode("b");
+ graph.addNode("c");
+ graph.addDependency("a", "b");
+ graph.addDependency("b", "c");
+
+ expect(graph.dependenciesOf("a")).toEqual(["c", "b"]);
+
+ graph.removeNode("c");
+
+ expect(graph.dependenciesOf("a")).toEqual(["b"]);
+ });
+
+ it("should clone an empty graph", function () {
+ var graph = new DepGraph();
+ expect(graph.size()).toEqual(0);
+ var cloned = graph.clone();
+ expect(cloned.size()).toEqual(0);
+
+ expect(graph === cloned).toBeFalse();
+ });
+
+ it("should clone a non-empty graph", function () {
+ var graph = new DepGraph();
+
+ graph.addNode("a");
+ graph.addNode("b");
+ graph.addNode("c");
+ graph.addDependency("a", "b");
+ graph.addDependency("b", "c");
+
+ var cloned = graph.clone();
+
+ expect(graph === cloned).toBeFalse();
+ expect(cloned.hasNode("a")).toBeTrue();
+ expect(cloned.hasNode("b")).toBeTrue();
+ expect(cloned.hasNode("c")).toBeTrue();
+ expect(cloned.dependenciesOf("a")).toEqual(["c", "b"]);
+ expect(cloned.dependantsOf("c")).toEqual(["a", "b"]);
+
+ // Changes to the original graph shouldn't affect the clone
+ graph.removeNode("c");
+ expect(graph.dependenciesOf("a")).toEqual(["b"]);
+ expect(cloned.dependenciesOf("a")).toEqual(["c", "b"]);
+
+ graph.addNode("d");
+ graph.addDependency("b", "d");
+ expect(graph.dependenciesOf("a")).toEqual(["d", "b"]);
+ expect(cloned.dependenciesOf("a")).toEqual(["c", "b"]);
+ });
+
+ it("should only be a shallow clone", function () {
+ var graph = new DepGraph();
+
+ var data = { a: 42 };
+ graph.addNode("a", data);
+
+ var cloned = graph.clone();
+ expect(graph === cloned).toBeFalse();
+ expect(graph.getNodeData("a") === cloned.getNodeData("a")).toBeTrue();
+
+ graph.getNodeData("a").a = 43;
+ expect(cloned.getNodeData("a").a).toBe(43);
+
+ cloned.setNodeData("a", { a: 42 });
+ expect(cloned.getNodeData("a").a).toBe(42);
+ expect(graph.getNodeData("a") === cloned.getNodeData("a")).toBeFalse();
+ });
+});
+
+describe("DepGraph Performance", function () {
+ it("should not exceed max call stack with a very deep graph", function () {
+ var g = new DepGraph();
+ var expected = [];
+ for (var i = 0; i < 100000; i++) {
+ var istr = i.toString();
+ g.addNode(istr);
+ expected.push(istr);
+ if (i > 0) {
+ g.addDependency(istr, (i - 1).toString());
+ }
+ }
+ var order = g.overallOrder();
+ expect(order).toEqual(expected);
+ });
+
+ it("should run an a reasonable amount of time for a very large graph", function () {
+ var randInt = function (min, max) {
+ return Math.floor(Math.random() * (max - min + 1)) + min;
+ };
+ var g = new DepGraph();
+ var nodes = [];
+ // Create a graph with 100000 nodes in it with 10 random connections to
+ // lower numbered nodes
+ for (var i = 0; i < 100000; i++) {
+ nodes.push(i.toString());
+ g.addNode(i.toString());
+ for (var j = 0; j < 10; j++) {
+ var dep = randInt(0, i);
+ if (i !== dep) {
+ g.addDependency(i.toString(), dep.toString());
+ }
+ }
+ }
+ var start = new Date().getTime();
+ g.overallOrder();
+ var end = new Date().getTime();
+ expect(start - end).toBeLessThan(1000);
+ });
+});
+
+describe("DepGraphCycleError", function () {
+ var DepGraphCycleError = dep_graph.DepGraphCycleError;
+
+ it("should have a message", function () {
+ var err = new DepGraphCycleError(["a", "b", "c", "a"]);
+ expect(err.message).toEqual("Dependency Cycle Found: a -> b -> c -> a");
+ });
+
+ it("should be an instanceof DepGraphCycleError", function () {
+ var err = new DepGraphCycleError(["a", "b", "c", "a"]);
+ expect(err instanceof DepGraphCycleError).toBeTrue();
+ expect(err instanceof Error).toBeTrue();
+ });
+
+ it("should have a cyclePath", function () {
+ var cyclePath = ["a", "b", "c", "a"];
+ var err = new DepGraphCycleError(cyclePath);
+ expect(err.cyclePath).toEqual(cyclePath);
+ });
+});
diff --git a/node_modules/dir-glob/index.js b/node_modules/dir-glob/index.js
new file mode 100644
index 0000000..c21cdf3
--- /dev/null
+++ b/node_modules/dir-glob/index.js
@@ -0,0 +1,75 @@
+'use strict';
+const path = require('path');
+const pathType = require('path-type');
+
+const getExtensions = extensions => extensions.length > 1 ? `{${extensions.join(',')}}` : extensions[0];
+
+const getPath = (filepath, cwd) => {
+ const pth = filepath[0] === '!' ? filepath.slice(1) : filepath;
+ return path.isAbsolute(pth) ? pth : path.join(cwd, pth);
+};
+
+const addExtensions = (file, extensions) => {
+ if (path.extname(file)) {
+ return `**/${file}`;
+ }
+
+ return `**/${file}.${getExtensions(extensions)}`;
+};
+
+const getGlob = (directory, options) => {
+ if (options.files && !Array.isArray(options.files)) {
+ throw new TypeError(`Expected \`files\` to be of type \`Array\` but received type \`${typeof options.files}\``);
+ }
+
+ if (options.extensions && !Array.isArray(options.extensions)) {
+ throw new TypeError(`Expected \`extensions\` to be of type \`Array\` but received type \`${typeof options.extensions}\``);
+ }
+
+ if (options.files && options.extensions) {
+ return options.files.map(x => path.posix.join(directory, addExtensions(x, options.extensions)));
+ }
+
+ if (options.files) {
+ return options.files.map(x => path.posix.join(directory, `**/${x}`));
+ }
+
+ if (options.extensions) {
+ return [path.posix.join(directory, `**/*.${getExtensions(options.extensions)}`)];
+ }
+
+ return [path.posix.join(directory, '**')];
+};
+
+module.exports = async (input, options) => {
+ options = {
+ cwd: process.cwd(),
+ ...options
+ };
+
+ if (typeof options.cwd !== 'string') {
+ throw new TypeError(`Expected \`cwd\` to be of type \`string\` but received type \`${typeof options.cwd}\``);
+ }
+
+ const globs = await Promise.all([].concat(input).map(async x => {
+ const isDirectory = await pathType.isDirectory(getPath(x, options.cwd));
+ return isDirectory ? getGlob(x, options) : x;
+ }));
+
+ return [].concat.apply([], globs); // eslint-disable-line prefer-spread
+};
+
+module.exports.sync = (input, options) => {
+ options = {
+ cwd: process.cwd(),
+ ...options
+ };
+
+ if (typeof options.cwd !== 'string') {
+ throw new TypeError(`Expected \`cwd\` to be of type \`string\` but received type \`${typeof options.cwd}\``);
+ }
+
+ const globs = [].concat(input).map(x => pathType.isDirectorySync(getPath(x, options.cwd)) ? getGlob(x, options) : x);
+
+ return [].concat.apply([], globs); // eslint-disable-line prefer-spread
+};
diff --git a/node_modules/dir-glob/license b/node_modules/dir-glob/license
new file mode 100644
index 0000000..db6bc32
--- /dev/null
+++ b/node_modules/dir-glob/license
@@ -0,0 +1,9 @@
+MIT License
+
+Copyright (c) Kevin Mårtensson (github.com/kevva)
+
+Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
diff --git a/node_modules/dir-glob/package.json b/node_modules/dir-glob/package.json
new file mode 100644
index 0000000..b0a397e
--- /dev/null
+++ b/node_modules/dir-glob/package.json
@@ -0,0 +1,38 @@
+{
+ "name": "dir-glob",
+ "version": "3.0.1",
+ "description": "Convert directories to glob compatible strings",
+ "license": "MIT",
+ "repository": "kevva/dir-glob",
+ "author": {
+ "name": "Kevin Mårtensson",
+ "email": "kevinmartensson@gmail.com",
+ "url": "github.com/kevva"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "scripts": {
+ "test": "xo && ava"
+ },
+ "files": [
+ "index.js"
+ ],
+ "keywords": [
+ "convert",
+ "directory",
+ "extensions",
+ "files",
+ "glob"
+ ],
+ "dependencies": {
+ "path-type": "^4.0.0"
+ },
+ "devDependencies": {
+ "ava": "^2.1.0",
+ "del": "^4.1.1",
+ "make-dir": "^3.0.0",
+ "rimraf": "^2.5.0",
+ "xo": "^0.24.0"
+ }
+}
diff --git a/node_modules/dir-glob/readme.md b/node_modules/dir-glob/readme.md
new file mode 100644
index 0000000..cb7313f
--- /dev/null
+++ b/node_modules/dir-glob/readme.md
@@ -0,0 +1,76 @@
+# dir-glob [![Build Status](https://travis-ci.org/kevva/dir-glob.svg?branch=master)](https://travis-ci.org/kevva/dir-glob)
+
+> Convert directories to glob compatible strings
+
+
+## Install
+
+```
+$ npm install dir-glob
+```
+
+
+## Usage
+
+```js
+const dirGlob = require('dir-glob');
+
+(async () => {
+ console.log(await dirGlob(['index.js', 'test.js', 'fixtures']));
+ //=> ['index.js', 'test.js', 'fixtures/**']
+
+ console.log(await dirGlob(['index.js', 'inner_folder'], {cwd: 'fixtures'}));
+ //=> ['index.js', 'inner_folder/**']
+
+ console.log(await dirGlob(['lib/**', 'fixtures'], {
+ files: ['test', 'unicorn']
+ extensions: ['js']
+ }));
+ //=> ['lib/**', 'fixtures/**/test.js', 'fixtures/**/unicorn.js']
+
+ console.log(await dirGlob(['lib/**', 'fixtures'], {
+ files: ['test', 'unicorn', '*.jsx'],
+ extensions: ['js', 'png']
+ }));
+ //=> ['lib/**', 'fixtures/**/test.{js,png}', 'fixtures/**/unicorn.{js,png}', 'fixtures/**/*.jsx']
+})();
+```
+
+
+## API
+
+### dirGlob(input, options?)
+
+Returns a `Promise` with globs.
+
+### dirGlob.sync(input, options?)
+
+Returns a `string[]` with globs.
+
+#### input
+
+Type: `string | string[]`
+
+Paths.
+
+#### options
+
+Type: `object`
+
+##### extensions
+
+Type: `string[]`
+
+Append extensions to the end of your globs.
+
+##### files
+
+Type: `string[]`
+
+Only glob for certain files.
+
+##### cwd
+
+Type: `string[]`
+
+Test in specific directory.
diff --git a/node_modules/electron-to-chromium/CHANGELOG.md b/node_modules/electron-to-chromium/CHANGELOG.md
new file mode 100644
index 0000000..1669c34
--- /dev/null
+++ b/node_modules/electron-to-chromium/CHANGELOG.md
@@ -0,0 +1,14 @@
+v1.3.0
+ * Additionally include chromium to electron mappings
+
+v1.2.0
+ * versions and full-versions are now separately importable.
+
+v1.1.0
+ * Both electronToChromium and electronToBrowserList now can accept strings as well as numbers.
+
+v1.0.1
+ Update documentation
+
+v1.0.0
+ Inititial release
diff --git a/node_modules/electron-to-chromium/LICENSE b/node_modules/electron-to-chromium/LICENSE
new file mode 100644
index 0000000..6c7b614
--- /dev/null
+++ b/node_modules/electron-to-chromium/LICENSE
@@ -0,0 +1,5 @@
+Copyright 2018 Kilian Valkhof
+
+Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.
+
+THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
diff --git a/node_modules/electron-to-chromium/README.md b/node_modules/electron-to-chromium/README.md
new file mode 100644
index 0000000..a96ddf1
--- /dev/null
+++ b/node_modules/electron-to-chromium/README.md
@@ -0,0 +1,186 @@
+### Made by [@kilianvalkhof](https://twitter.com/kilianvalkhof)
+
+#### Other projects:
+
+- 💻 [Polypane](https://polypane.app) - Develop responsive websites and apps twice as fast on multiple screens at once
+- 🖌️ [Superposition](https://superposition.design) - Kickstart your design system by extracting design tokens from your website
+- 🗒️ [FromScratch](https://fromscratch.rocks) - A smart but simple autosaving scratchpad
+
+---
+
+# Electron-to-Chromium [![npm](https://img.shields.io/npm/v/electron-to-chromium.svg)](https://www.npmjs.com/package/electron-to-chromium) [![travis](https://img.shields.io/travis/Kilian/electron-to-chromium/master.svg)](https://travis-ci.org/Kilian/electron-to-chromium) [![npm-downloads](https://img.shields.io/npm/dm/electron-to-chromium.svg)](https://www.npmjs.com/package/electron-to-chromium) [![codecov](https://codecov.io/gh/Kilian/electron-to-chromium/branch/master/graph/badge.svg)](https://codecov.io/gh/Kilian/electron-to-chromium)[![FOSSA Status](https://app.fossa.io/api/projects/git%2Bgithub.com%2FKilian%2Felectron-to-chromium.svg?type=shield)](https://app.fossa.io/projects/git%2Bgithub.com%2FKilian%2Felectron-to-chromium?ref=badge_shield)
+
+This repository provides a mapping of Electron versions to the Chromium version that it uses.
+
+This package is used in [Browserslist](https://github.com/ai/browserslist), so you can use e.g. `electron >= 1.4` in [Autoprefixer](https://github.com/postcss/autoprefixer), [Stylelint](https://github.com/stylelint/stylelint), [babel-preset-env](https://github.com/babel/babel-preset-env) and [eslint-plugin-compat](https://github.com/amilajack/eslint-plugin-compat).
+
+**Supported by:**
+
+
+
+
+
+
+## Install
+Install using `npm install electron-to-chromium`.
+
+## Usage
+To include Electron-to-Chromium, require it:
+
+```js
+var e2c = require('electron-to-chromium');
+```
+
+### Properties
+The Electron-to-Chromium object has 4 properties to use:
+
+#### `versions`
+An object of key-value pairs with a _major_ Electron version as the key, and the corresponding major Chromium version as the value.
+
+```js
+var versions = e2c.versions;
+console.log(versions['1.4']);
+// returns "53"
+```
+
+#### `fullVersions`
+An object of key-value pairs with a Electron version as the key, and the corresponding full Chromium version as the value.
+
+```js
+var versions = e2c.fullVersions;
+console.log(versions['1.4.11']);
+// returns "53.0.2785.143"
+```
+
+#### `chromiumVersions`
+An object of key-value pairs with a _major_ Chromium version as the key, and the corresponding major Electron version as the value.
+
+```js
+var versions = e2c.chromiumVersions;
+console.log(versions['54']);
+// returns "1.4"
+```
+
+#### `fullChromiumVersions`
+An object of key-value pairs with a Chromium version as the key, and an array of the corresponding major Electron versions as the value.
+
+```js
+var versions = e2c.fullChromiumVersions;
+console.log(versions['54.0.2840.101']);
+// returns ["1.5.1", "1.5.0"]
+```
+### Functions
+
+#### `electronToChromium(query)`
+Arguments:
+* Query: string or number, required. A major or full Electron version.
+
+A function that returns the corresponding Chromium version for a given Electron function. Returns a string.
+
+If you provide it with a major Electron version, it will return a major Chromium version:
+
+```js
+var chromeVersion = e2c.electronToChromium('1.4');
+// chromeVersion is "53"
+```
+
+If you provide it with a full Electron version, it will return the full Chromium version.
+
+```js
+var chromeVersion = e2c.electronToChromium('1.4.11');
+// chromeVersion is "53.0.2785.143"
+```
+
+If a query does not match a Chromium version, it will return `undefined`.
+
+```js
+var chromeVersion = e2c.electronToChromium('9000');
+// chromeVersion is undefined
+```
+
+#### `chromiumToElectron(query)`
+Arguments:
+* Query: string or number, required. A major or full Chromium version.
+
+Returns a string with the corresponding Electron version for a given Chromium query.
+
+If you provide it with a major Chromium version, it will return a major Electron version:
+
+```js
+var electronVersion = e2c.chromiumToElectron('54');
+// electronVersion is "1.4"
+```
+
+If you provide it with a full Chrome version, it will return an array of full Electron versions.
+
+```js
+var electronVersions = e2c.chromiumToElectron('56.0.2924.87');
+// electronVersions is ["1.6.3", "1.6.2", "1.6.1", "1.6.0"]
+```
+
+If a query does not match an Electron version, it will return `undefined`.
+
+```js
+var electronVersion = e2c.chromiumToElectron('10');
+// electronVersion is undefined
+```
+
+#### `electronToBrowserList(query)` **DEPRECATED**
+Arguments:
+* Query: string or number, required. A major Electron version.
+
+_**Deprecated**: Browserlist already includes electron-to-chromium._
+
+A function that returns a [Browserslist](https://github.com/ai/browserslist) query that matches the given major Electron version. Returns a string.
+
+If you provide it with a major Electron version, it will return a Browserlist query string that matches the Chromium capabilities:
+
+```js
+var query = e2c.electronToBrowserList('1.4');
+// query is "Chrome >= 53"
+```
+
+If a query does not match a Chromium version, it will return `undefined`.
+
+```js
+var query = e2c.electronToBrowserList('9000');
+// query is undefined
+```
+
+### Importing just versions, fullVersions, chromiumVersions and fullChromiumVersions
+All lists can be imported on their own, if file size is a concern.
+
+#### `versions`
+
+```js
+var versions = require('electron-to-chromium/versions');
+```
+
+#### `fullVersions`
+
+```js
+var fullVersions = require('electron-to-chromium/full-versions');
+```
+
+#### `chromiumVersions`
+
+```js
+var chromiumVersions = require('electron-to-chromium/chromium-versions');
+```
+
+#### `fullChromiumVersions`
+
+```js
+var fullChromiumVersions = require('electron-to-chromium/full-chromium-versions');
+```
+
+## Updating
+This package will be updated with each new Electron release.
+
+To update the list, run `npm run build.js`. Requires internet access as it downloads from the canonical list of Electron versions.
+
+To verify correct behaviour, run `npm test`.
+
+
+## License
+[![FOSSA Status](https://app.fossa.io/api/projects/git%2Bgithub.com%2FKilian%2Felectron-to-chromium.svg?type=large)](https://app.fossa.io/projects/git%2Bgithub.com%2FKilian%2Felectron-to-chromium?ref=badge_large)
diff --git a/node_modules/electron-to-chromium/chromium-versions.js b/node_modules/electron-to-chromium/chromium-versions.js
new file mode 100644
index 0000000..e735e2e
--- /dev/null
+++ b/node_modules/electron-to-chromium/chromium-versions.js
@@ -0,0 +1,56 @@
+module.exports = {
+ "39": "0.20",
+ "40": "0.21",
+ "41": "0.21",
+ "42": "0.25",
+ "43": "0.27",
+ "44": "0.30",
+ "45": "0.31",
+ "47": "0.36",
+ "49": "0.37",
+ "50": "1.1",
+ "51": "1.2",
+ "52": "1.3",
+ "53": "1.4",
+ "54": "1.4",
+ "56": "1.6",
+ "58": "1.7",
+ "59": "1.8",
+ "61": "2.0",
+ "66": "3.0",
+ "69": "4.0",
+ "72": "5.0",
+ "73": "5.0",
+ "76": "6.0",
+ "78": "7.0",
+ "79": "8.0",
+ "80": "8.0",
+ "82": "9.0",
+ "83": "9.0",
+ "84": "10.0",
+ "85": "10.0",
+ "86": "11.0",
+ "87": "11.0",
+ "89": "12.0",
+ "90": "13.0",
+ "91": "13.0",
+ "92": "14.0",
+ "93": "14.0",
+ "94": "15.0",
+ "95": "16.0",
+ "96": "16.0",
+ "98": "17.0",
+ "99": "18.0",
+ "100": "18.0",
+ "102": "19.0",
+ "103": "20.0",
+ "104": "20.0",
+ "105": "21.0",
+ "106": "21.0",
+ "107": "22.0",
+ "108": "22.0",
+ "110": "23.0",
+ "111": "24.0",
+ "112": "24.0",
+ "114": "25.0"
+};
\ No newline at end of file
diff --git a/node_modules/electron-to-chromium/chromium-versions.json b/node_modules/electron-to-chromium/chromium-versions.json
new file mode 100644
index 0000000..76b2b02
--- /dev/null
+++ b/node_modules/electron-to-chromium/chromium-versions.json
@@ -0,0 +1 @@
+{"39":"0.20","40":"0.21","41":"0.21","42":"0.25","43":"0.27","44":"0.30","45":"0.31","47":"0.36","49":"0.37","50":"1.1","51":"1.2","52":"1.3","53":"1.4","54":"1.4","56":"1.6","58":"1.7","59":"1.8","61":"2.0","66":"3.0","69":"4.0","72":"5.0","73":"5.0","76":"6.0","78":"7.0","79":"8.0","80":"8.0","82":"9.0","83":"9.0","84":"10.0","85":"10.0","86":"11.0","87":"11.0","89":"12.0","90":"13.0","91":"13.0","92":"14.0","93":"14.0","94":"15.0","95":"16.0","96":"16.0","98":"17.0","99":"18.0","100":"18.0","102":"19.0","103":"20.0","104":"20.0","105":"21.0","106":"21.0","107":"22.0","108":"22.0","110":"23.0","111":"24.0","112":"24.0","114":"25.0"}
\ No newline at end of file
diff --git a/node_modules/electron-to-chromium/full-chromium-versions.js b/node_modules/electron-to-chromium/full-chromium-versions.js
new file mode 100644
index 0000000..d92d2da
--- /dev/null
+++ b/node_modules/electron-to-chromium/full-chromium-versions.js
@@ -0,0 +1,2589 @@
+module.exports = {
+ "39.0.2171.65": [
+ "0.20.0",
+ "0.20.1",
+ "0.20.2",
+ "0.20.3",
+ "0.20.4",
+ "0.20.5",
+ "0.20.6",
+ "0.20.7",
+ "0.20.8"
+ ],
+ "40.0.2214.91": [
+ "0.21.0",
+ "0.21.1",
+ "0.21.2"
+ ],
+ "41.0.2272.76": [
+ "0.21.3",
+ "0.22.1",
+ "0.22.2",
+ "0.22.3",
+ "0.23.0",
+ "0.24.0"
+ ],
+ "42.0.2311.107": [
+ "0.25.0",
+ "0.25.1",
+ "0.25.2",
+ "0.25.3",
+ "0.26.0",
+ "0.26.1",
+ "0.27.0",
+ "0.27.1"
+ ],
+ "43.0.2357.65": [
+ "0.27.2",
+ "0.27.3",
+ "0.28.0",
+ "0.28.1",
+ "0.28.2",
+ "0.28.3",
+ "0.29.1",
+ "0.29.2"
+ ],
+ "44.0.2403.125": [
+ "0.30.4",
+ "0.31.0"
+ ],
+ "45.0.2454.85": [
+ "0.31.2",
+ "0.32.2",
+ "0.32.3",
+ "0.33.0",
+ "0.33.1",
+ "0.33.2",
+ "0.33.3",
+ "0.33.4",
+ "0.33.6",
+ "0.33.7",
+ "0.33.8",
+ "0.33.9",
+ "0.34.0",
+ "0.34.1",
+ "0.34.2",
+ "0.34.3",
+ "0.34.4",
+ "0.35.1",
+ "0.35.2",
+ "0.35.3",
+ "0.35.4",
+ "0.35.5"
+ ],
+ "47.0.2526.73": [
+ "0.36.0",
+ "0.36.2",
+ "0.36.3",
+ "0.36.4"
+ ],
+ "47.0.2526.110": [
+ "0.36.5",
+ "0.36.6",
+ "0.36.7",
+ "0.36.8",
+ "0.36.9",
+ "0.36.10",
+ "0.36.11",
+ "0.36.12"
+ ],
+ "49.0.2623.75": [
+ "0.37.0",
+ "0.37.1",
+ "0.37.3",
+ "0.37.4",
+ "0.37.5",
+ "0.37.6",
+ "0.37.7",
+ "0.37.8",
+ "1.0.0",
+ "1.0.1",
+ "1.0.2"
+ ],
+ "50.0.2661.102": [
+ "1.1.0",
+ "1.1.1",
+ "1.1.2",
+ "1.1.3"
+ ],
+ "51.0.2704.63": [
+ "1.2.0",
+ "1.2.1"
+ ],
+ "51.0.2704.84": [
+ "1.2.2",
+ "1.2.3"
+ ],
+ "51.0.2704.103": [
+ "1.2.4",
+ "1.2.5"
+ ],
+ "51.0.2704.106": [
+ "1.2.6",
+ "1.2.7",
+ "1.2.8"
+ ],
+ "52.0.2743.82": [
+ "1.3.0",
+ "1.3.1",
+ "1.3.2",
+ "1.3.3",
+ "1.3.4",
+ "1.3.5",
+ "1.3.6",
+ "1.3.7",
+ "1.3.9",
+ "1.3.10",
+ "1.3.13",
+ "1.3.14",
+ "1.3.15"
+ ],
+ "53.0.2785.113": [
+ "1.4.0",
+ "1.4.1",
+ "1.4.2",
+ "1.4.3",
+ "1.4.4",
+ "1.4.5"
+ ],
+ "53.0.2785.143": [
+ "1.4.6",
+ "1.4.7",
+ "1.4.8",
+ "1.4.10",
+ "1.4.11",
+ "1.4.13",
+ "1.4.14",
+ "1.4.15",
+ "1.4.16"
+ ],
+ "54.0.2840.51": [
+ "1.4.12"
+ ],
+ "54.0.2840.101": [
+ "1.5.0",
+ "1.5.1"
+ ],
+ "56.0.2924.87": [
+ "1.6.0",
+ "1.6.1",
+ "1.6.2",
+ "1.6.3",
+ "1.6.4",
+ "1.6.5",
+ "1.6.6",
+ "1.6.7",
+ "1.6.8",
+ "1.6.9",
+ "1.6.10",
+ "1.6.11",
+ "1.6.12",
+ "1.6.13",
+ "1.6.14",
+ "1.6.15",
+ "1.6.16",
+ "1.6.17",
+ "1.6.18"
+ ],
+ "58.0.3029.110": [
+ "1.7.0",
+ "1.7.1",
+ "1.7.2",
+ "1.7.3",
+ "1.7.4",
+ "1.7.5",
+ "1.7.6",
+ "1.7.7",
+ "1.7.8",
+ "1.7.9",
+ "1.7.10",
+ "1.7.11",
+ "1.7.12",
+ "1.7.13",
+ "1.7.14",
+ "1.7.15",
+ "1.7.16"
+ ],
+ "59.0.3071.115": [
+ "1.8.0",
+ "1.8.1",
+ "1.8.2-beta.1",
+ "1.8.2-beta.2",
+ "1.8.2-beta.3",
+ "1.8.2-beta.4",
+ "1.8.2-beta.5",
+ "1.8.2",
+ "1.8.3",
+ "1.8.4",
+ "1.8.5",
+ "1.8.6",
+ "1.8.7",
+ "1.8.8"
+ ],
+ "61.0.3163.100": [
+ "2.0.0-beta.1",
+ "2.0.0-beta.2",
+ "2.0.0-beta.3",
+ "2.0.0-beta.4",
+ "2.0.0-beta.5",
+ "2.0.0-beta.6",
+ "2.0.0-beta.7",
+ "2.0.0-beta.8",
+ "2.0.0",
+ "2.0.1",
+ "2.0.2",
+ "2.0.3",
+ "2.0.4",
+ "2.0.5",
+ "2.0.6",
+ "2.0.7",
+ "2.0.8-nightly.20180819",
+ "2.0.8-nightly.20180820",
+ "2.0.8",
+ "2.0.9",
+ "2.0.10",
+ "2.0.11",
+ "2.0.12",
+ "2.0.13",
+ "2.0.14",
+ "2.0.15",
+ "2.0.16",
+ "2.0.17",
+ "2.0.18",
+ "2.1.0-unsupported.20180809"
+ ],
+ "66.0.3359.181": [
+ "3.0.0-beta.1",
+ "3.0.0-beta.2",
+ "3.0.0-beta.3",
+ "3.0.0-beta.4",
+ "3.0.0-beta.5",
+ "3.0.0-beta.6",
+ "3.0.0-beta.7",
+ "3.0.0-beta.8",
+ "3.0.0-beta.9",
+ "3.0.0-beta.10",
+ "3.0.0-beta.11",
+ "3.0.0-beta.12",
+ "3.0.0-beta.13",
+ "3.0.0-nightly.20180818",
+ "3.0.0-nightly.20180821",
+ "3.0.0-nightly.20180823",
+ "3.0.0-nightly.20180904",
+ "3.0.0",
+ "3.0.1",
+ "3.0.2",
+ "3.0.3",
+ "3.0.4",
+ "3.0.5",
+ "3.0.6",
+ "3.0.7",
+ "3.0.8",
+ "3.0.9",
+ "3.0.10",
+ "3.0.11",
+ "3.0.12",
+ "3.0.13",
+ "3.0.14",
+ "3.0.15",
+ "3.0.16",
+ "3.1.0-beta.1",
+ "3.1.0-beta.2",
+ "3.1.0-beta.3",
+ "3.1.0-beta.4",
+ "3.1.0-beta.5",
+ "3.1.0",
+ "3.1.1",
+ "3.1.2",
+ "3.1.3",
+ "3.1.4",
+ "3.1.5",
+ "3.1.6",
+ "3.1.7",
+ "3.1.8",
+ "3.1.9",
+ "3.1.10",
+ "3.1.11",
+ "3.1.12",
+ "3.1.13",
+ "4.0.0-nightly.20180817",
+ "4.0.0-nightly.20180819",
+ "4.0.0-nightly.20180821"
+ ],
+ "69.0.3497.106": [
+ "4.0.0-beta.1",
+ "4.0.0-beta.2",
+ "4.0.0-beta.3",
+ "4.0.0-beta.4",
+ "4.0.0-beta.5",
+ "4.0.0-beta.6",
+ "4.0.0-beta.7",
+ "4.0.0-beta.8",
+ "4.0.0-beta.9",
+ "4.0.0-beta.10",
+ "4.0.0-beta.11",
+ "4.0.0-nightly.20181010",
+ "4.0.0",
+ "4.0.1",
+ "4.0.2",
+ "4.0.3",
+ "4.0.4",
+ "4.0.5",
+ "4.0.6"
+ ],
+ "67.0.3396.99": [
+ "4.0.0-nightly.20180929"
+ ],
+ "68.0.3440.128": [
+ "4.0.0-nightly.20181006"
+ ],
+ "69.0.3497.128": [
+ "4.0.7",
+ "4.0.8",
+ "4.1.0",
+ "4.1.1",
+ "4.1.2",
+ "4.1.3",
+ "4.1.4",
+ "4.1.5",
+ "4.2.0",
+ "4.2.1",
+ "4.2.2",
+ "4.2.3",
+ "4.2.4",
+ "4.2.5",
+ "4.2.6",
+ "4.2.7",
+ "4.2.8",
+ "4.2.9",
+ "4.2.10",
+ "4.2.11",
+ "4.2.12"
+ ],
+ "72.0.3626.52": [
+ "5.0.0-beta.1",
+ "5.0.0-beta.2",
+ "6.0.0-nightly.20190123"
+ ],
+ "73.0.3683.27": [
+ "5.0.0-beta.3"
+ ],
+ "73.0.3683.54": [
+ "5.0.0-beta.4"
+ ],
+ "73.0.3683.61": [
+ "5.0.0-beta.5"
+ ],
+ "73.0.3683.84": [
+ "5.0.0-beta.6"
+ ],
+ "73.0.3683.94": [
+ "5.0.0-beta.7"
+ ],
+ "73.0.3683.104": [
+ "5.0.0-beta.8"
+ ],
+ "73.0.3683.117": [
+ "5.0.0-beta.9"
+ ],
+ "70.0.3538.110": [
+ "5.0.0-nightly.20190107"
+ ],
+ "71.0.3578.98": [
+ "5.0.0-nightly.20190121",
+ "5.0.0-nightly.20190122"
+ ],
+ "73.0.3683.119": [
+ "5.0.0"
+ ],
+ "73.0.3683.121": [
+ "5.0.1",
+ "5.0.2",
+ "5.0.3",
+ "5.0.4",
+ "5.0.5",
+ "5.0.6",
+ "5.0.7",
+ "5.0.8",
+ "5.0.9",
+ "5.0.10",
+ "5.0.11",
+ "5.0.12",
+ "5.0.13"
+ ],
+ "76.0.3774.1": [
+ "6.0.0-beta.1"
+ ],
+ "76.0.3783.1": [
+ "6.0.0-beta.2",
+ "6.0.0-beta.3",
+ "6.0.0-beta.4"
+ ],
+ "76.0.3805.4": [
+ "6.0.0-beta.5"
+ ],
+ "76.0.3809.3": [
+ "6.0.0-beta.6"
+ ],
+ "76.0.3809.22": [
+ "6.0.0-beta.7"
+ ],
+ "76.0.3809.26": [
+ "6.0.0-beta.8",
+ "6.0.0-beta.9"
+ ],
+ "76.0.3809.37": [
+ "6.0.0-beta.10"
+ ],
+ "76.0.3809.42": [
+ "6.0.0-beta.11"
+ ],
+ "76.0.3809.54": [
+ "6.0.0-beta.12"
+ ],
+ "76.0.3809.60": [
+ "6.0.0-beta.13"
+ ],
+ "76.0.3809.68": [
+ "6.0.0-beta.14"
+ ],
+ "76.0.3809.74": [
+ "6.0.0-beta.15"
+ ],
+ "72.0.3626.107": [
+ "6.0.0-nightly.20190212"
+ ],
+ "72.0.3626.110": [
+ "6.0.0-nightly.20190213"
+ ],
+ "74.0.3724.8": [
+ "6.0.0-nightly.20190311"
+ ],
+ "76.0.3809.88": [
+ "6.0.0"
+ ],
+ "76.0.3809.102": [
+ "6.0.1"
+ ],
+ "76.0.3809.110": [
+ "6.0.2"
+ ],
+ "76.0.3809.126": [
+ "6.0.3"
+ ],
+ "76.0.3809.131": [
+ "6.0.4"
+ ],
+ "76.0.3809.136": [
+ "6.0.5"
+ ],
+ "76.0.3809.138": [
+ "6.0.6"
+ ],
+ "76.0.3809.139": [
+ "6.0.7"
+ ],
+ "76.0.3809.146": [
+ "6.0.8",
+ "6.0.9",
+ "6.0.10",
+ "6.0.11",
+ "6.0.12",
+ "6.1.0",
+ "6.1.1",
+ "6.1.2",
+ "6.1.3",
+ "6.1.4",
+ "6.1.5",
+ "6.1.6",
+ "6.1.7",
+ "6.1.8",
+ "6.1.9",
+ "6.1.10",
+ "6.1.11",
+ "6.1.12"
+ ],
+ "78.0.3866.0": [
+ "7.0.0-beta.1",
+ "7.0.0-beta.2",
+ "7.0.0-beta.3",
+ "7.0.0-nightly.20190727",
+ "7.0.0-nightly.20190728",
+ "7.0.0-nightly.20190729",
+ "7.0.0-nightly.20190730",
+ "7.0.0-nightly.20190731",
+ "8.0.0-nightly.20190801",
+ "8.0.0-nightly.20190802"
+ ],
+ "78.0.3896.6": [
+ "7.0.0-beta.4"
+ ],
+ "78.0.3905.1": [
+ "7.0.0-beta.5",
+ "7.0.0-beta.6",
+ "7.0.0-beta.7",
+ "7.0.0"
+ ],
+ "76.0.3784.0": [
+ "7.0.0-nightly.20190521"
+ ],
+ "76.0.3806.0": [
+ "7.0.0-nightly.20190529",
+ "7.0.0-nightly.20190530",
+ "7.0.0-nightly.20190531",
+ "7.0.0-nightly.20190602",
+ "7.0.0-nightly.20190603"
+ ],
+ "77.0.3814.0": [
+ "7.0.0-nightly.20190604"
+ ],
+ "77.0.3815.0": [
+ "7.0.0-nightly.20190605",
+ "7.0.0-nightly.20190606",
+ "7.0.0-nightly.20190607",
+ "7.0.0-nightly.20190608",
+ "7.0.0-nightly.20190609",
+ "7.0.0-nightly.20190611",
+ "7.0.0-nightly.20190612",
+ "7.0.0-nightly.20190613",
+ "7.0.0-nightly.20190615",
+ "7.0.0-nightly.20190616",
+ "7.0.0-nightly.20190618",
+ "7.0.0-nightly.20190619",
+ "7.0.0-nightly.20190622",
+ "7.0.0-nightly.20190623",
+ "7.0.0-nightly.20190624",
+ "7.0.0-nightly.20190627",
+ "7.0.0-nightly.20190629",
+ "7.0.0-nightly.20190630",
+ "7.0.0-nightly.20190701",
+ "7.0.0-nightly.20190702"
+ ],
+ "77.0.3843.0": [
+ "7.0.0-nightly.20190704",
+ "7.0.0-nightly.20190705"
+ ],
+ "77.0.3848.0": [
+ "7.0.0-nightly.20190719",
+ "7.0.0-nightly.20190720",
+ "7.0.0-nightly.20190721"
+ ],
+ "77.0.3864.0": [
+ "7.0.0-nightly.20190726"
+ ],
+ "78.0.3904.92": [
+ "7.0.1"
+ ],
+ "78.0.3904.94": [
+ "7.1.0"
+ ],
+ "78.0.3904.99": [
+ "7.1.1"
+ ],
+ "78.0.3904.113": [
+ "7.1.2"
+ ],
+ "78.0.3904.126": [
+ "7.1.3"
+ ],
+ "78.0.3904.130": [
+ "7.1.4",
+ "7.1.5",
+ "7.1.6",
+ "7.1.7",
+ "7.1.8",
+ "7.1.9",
+ "7.1.10",
+ "7.1.11",
+ "7.1.12",
+ "7.1.13",
+ "7.1.14",
+ "7.2.0",
+ "7.2.1",
+ "7.2.2",
+ "7.2.3",
+ "7.2.4",
+ "7.3.0",
+ "7.3.1",
+ "7.3.2",
+ "7.3.3"
+ ],
+ "79.0.3931.0": [
+ "8.0.0-beta.1",
+ "8.0.0-beta.2",
+ "8.0.0-nightly.20191019",
+ "8.0.0-nightly.20191020",
+ "8.0.0-nightly.20191021",
+ "8.0.0-nightly.20191023"
+ ],
+ "80.0.3955.0": [
+ "8.0.0-beta.3",
+ "8.0.0-beta.4"
+ ],
+ "80.0.3987.14": [
+ "8.0.0-beta.5"
+ ],
+ "80.0.3987.51": [
+ "8.0.0-beta.6"
+ ],
+ "80.0.3987.59": [
+ "8.0.0-beta.7"
+ ],
+ "80.0.3987.75": [
+ "8.0.0-beta.8",
+ "8.0.0-beta.9"
+ ],
+ "78.0.3871.0": [
+ "8.0.0-nightly.20190803",
+ "8.0.0-nightly.20190806",
+ "8.0.0-nightly.20190807",
+ "8.0.0-nightly.20190808",
+ "8.0.0-nightly.20190809",
+ "8.0.0-nightly.20190810",
+ "8.0.0-nightly.20190811",
+ "8.0.0-nightly.20190812",
+ "8.0.0-nightly.20190813",
+ "8.0.0-nightly.20190814",
+ "8.0.0-nightly.20190815"
+ ],
+ "78.0.3881.0": [
+ "8.0.0-nightly.20190816",
+ "8.0.0-nightly.20190817",
+ "8.0.0-nightly.20190818",
+ "8.0.0-nightly.20190819",
+ "8.0.0-nightly.20190820"
+ ],
+ "78.0.3892.0": [
+ "8.0.0-nightly.20190824",
+ "8.0.0-nightly.20190825",
+ "8.0.0-nightly.20190827",
+ "8.0.0-nightly.20190828",
+ "8.0.0-nightly.20190830",
+ "8.0.0-nightly.20190901",
+ "8.0.0-nightly.20190902",
+ "8.0.0-nightly.20190907",
+ "8.0.0-nightly.20190909",
+ "8.0.0-nightly.20190910",
+ "8.0.0-nightly.20190911",
+ "8.0.0-nightly.20190912",
+ "8.0.0-nightly.20190913",
+ "8.0.0-nightly.20190914",
+ "8.0.0-nightly.20190915",
+ "8.0.0-nightly.20190917"
+ ],
+ "79.0.3915.0": [
+ "8.0.0-nightly.20190919",
+ "8.0.0-nightly.20190920"
+ ],
+ "79.0.3919.0": [
+ "8.0.0-nightly.20190922",
+ "8.0.0-nightly.20190923",
+ "8.0.0-nightly.20190924",
+ "8.0.0-nightly.20190926",
+ "8.0.0-nightly.20190928",
+ "8.0.0-nightly.20190929",
+ "8.0.0-nightly.20190930",
+ "8.0.0-nightly.20191001",
+ "8.0.0-nightly.20191004",
+ "8.0.0-nightly.20191005",
+ "8.0.0-nightly.20191006",
+ "8.0.0-nightly.20191009",
+ "8.0.0-nightly.20191011",
+ "8.0.0-nightly.20191012",
+ "8.0.0-nightly.20191017"
+ ],
+ "80.0.3952.0": [
+ "8.0.0-nightly.20191101",
+ "8.0.0-nightly.20191103",
+ "8.0.0-nightly.20191105"
+ ],
+ "80.0.3987.86": [
+ "8.0.0",
+ "8.0.1",
+ "8.0.2"
+ ],
+ "80.0.3987.134": [
+ "8.0.3"
+ ],
+ "80.0.3987.137": [
+ "8.1.0"
+ ],
+ "80.0.3987.141": [
+ "8.1.1"
+ ],
+ "80.0.3987.158": [
+ "8.2.0"
+ ],
+ "80.0.3987.163": [
+ "8.2.1",
+ "8.2.2",
+ "8.2.3",
+ "8.5.3",
+ "8.5.4",
+ "8.5.5"
+ ],
+ "80.0.3987.165": [
+ "8.2.4",
+ "8.2.5",
+ "8.3.0",
+ "8.3.1",
+ "8.3.2",
+ "8.3.3",
+ "8.3.4",
+ "8.4.0",
+ "8.4.1",
+ "8.5.0",
+ "8.5.1",
+ "8.5.2"
+ ],
+ "82.0.4048.0": [
+ "9.0.0-beta.1",
+ "9.0.0-beta.2",
+ "9.0.0-beta.3",
+ "9.0.0-beta.4",
+ "9.0.0-beta.5"
+ ],
+ "82.0.4058.2": [
+ "9.0.0-beta.6",
+ "9.0.0-beta.7",
+ "9.0.0-beta.9"
+ ],
+ "82.0.4085.10": [
+ "9.0.0-beta.10"
+ ],
+ "82.0.4085.14": [
+ "9.0.0-beta.11",
+ "9.0.0-beta.12",
+ "9.0.0-beta.13"
+ ],
+ "82.0.4085.27": [
+ "9.0.0-beta.14"
+ ],
+ "83.0.4102.3": [
+ "9.0.0-beta.15",
+ "9.0.0-beta.16"
+ ],
+ "83.0.4103.14": [
+ "9.0.0-beta.17"
+ ],
+ "83.0.4103.16": [
+ "9.0.0-beta.18"
+ ],
+ "83.0.4103.24": [
+ "9.0.0-beta.19"
+ ],
+ "83.0.4103.26": [
+ "9.0.0-beta.20",
+ "9.0.0-beta.21"
+ ],
+ "83.0.4103.34": [
+ "9.0.0-beta.22"
+ ],
+ "83.0.4103.44": [
+ "9.0.0-beta.23"
+ ],
+ "83.0.4103.45": [
+ "9.0.0-beta.24"
+ ],
+ "80.0.3954.0": [
+ "9.0.0-nightly.20191121",
+ "9.0.0-nightly.20191122",
+ "9.0.0-nightly.20191123",
+ "9.0.0-nightly.20191124",
+ "9.0.0-nightly.20191126",
+ "9.0.0-nightly.20191128",
+ "9.0.0-nightly.20191129",
+ "9.0.0-nightly.20191130",
+ "9.0.0-nightly.20191201",
+ "9.0.0-nightly.20191202",
+ "9.0.0-nightly.20191203",
+ "9.0.0-nightly.20191204",
+ "9.0.0-nightly.20191205",
+ "9.0.0-nightly.20191210"
+ ],
+ "81.0.3994.0": [
+ "9.0.0-nightly.20191220",
+ "9.0.0-nightly.20191221",
+ "9.0.0-nightly.20191222",
+ "9.0.0-nightly.20191223",
+ "9.0.0-nightly.20191224",
+ "9.0.0-nightly.20191225",
+ "9.0.0-nightly.20191226",
+ "9.0.0-nightly.20191228",
+ "9.0.0-nightly.20191229",
+ "9.0.0-nightly.20191230",
+ "9.0.0-nightly.20191231",
+ "9.0.0-nightly.20200101",
+ "9.0.0-nightly.20200103",
+ "9.0.0-nightly.20200104",
+ "9.0.0-nightly.20200105",
+ "9.0.0-nightly.20200106",
+ "9.0.0-nightly.20200108",
+ "9.0.0-nightly.20200109",
+ "9.0.0-nightly.20200110",
+ "9.0.0-nightly.20200111",
+ "9.0.0-nightly.20200113",
+ "9.0.0-nightly.20200115",
+ "9.0.0-nightly.20200116",
+ "9.0.0-nightly.20200117"
+ ],
+ "81.0.4030.0": [
+ "9.0.0-nightly.20200119",
+ "9.0.0-nightly.20200121"
+ ],
+ "83.0.4103.64": [
+ "9.0.0"
+ ],
+ "83.0.4103.94": [
+ "9.0.1",
+ "9.0.2"
+ ],
+ "83.0.4103.100": [
+ "9.0.3"
+ ],
+ "83.0.4103.104": [
+ "9.0.4"
+ ],
+ "83.0.4103.119": [
+ "9.0.5"
+ ],
+ "83.0.4103.122": [
+ "9.1.0",
+ "9.1.1",
+ "9.1.2",
+ "9.2.0",
+ "9.2.1",
+ "9.3.0",
+ "9.3.1",
+ "9.3.2",
+ "9.3.3",
+ "9.3.4",
+ "9.3.5",
+ "9.4.0",
+ "9.4.1",
+ "9.4.2",
+ "9.4.3",
+ "9.4.4"
+ ],
+ "84.0.4129.0": [
+ "10.0.0-beta.1",
+ "10.0.0-beta.2",
+ "10.0.0-nightly.20200501",
+ "10.0.0-nightly.20200504",
+ "10.0.0-nightly.20200505",
+ "10.0.0-nightly.20200506",
+ "10.0.0-nightly.20200507",
+ "10.0.0-nightly.20200508",
+ "10.0.0-nightly.20200511",
+ "10.0.0-nightly.20200512",
+ "10.0.0-nightly.20200513",
+ "10.0.0-nightly.20200514",
+ "10.0.0-nightly.20200515",
+ "10.0.0-nightly.20200518",
+ "10.0.0-nightly.20200519",
+ "10.0.0-nightly.20200520",
+ "10.0.0-nightly.20200521",
+ "11.0.0-nightly.20200525",
+ "11.0.0-nightly.20200526"
+ ],
+ "85.0.4161.2": [
+ "10.0.0-beta.3",
+ "10.0.0-beta.4"
+ ],
+ "85.0.4181.1": [
+ "10.0.0-beta.8",
+ "10.0.0-beta.9"
+ ],
+ "85.0.4183.19": [
+ "10.0.0-beta.10"
+ ],
+ "85.0.4183.20": [
+ "10.0.0-beta.11"
+ ],
+ "85.0.4183.26": [
+ "10.0.0-beta.12"
+ ],
+ "85.0.4183.39": [
+ "10.0.0-beta.13",
+ "10.0.0-beta.14",
+ "10.0.0-beta.15",
+ "10.0.0-beta.17",
+ "10.0.0-beta.19",
+ "10.0.0-beta.20",
+ "10.0.0-beta.21"
+ ],
+ "85.0.4183.70": [
+ "10.0.0-beta.23"
+ ],
+ "85.0.4183.78": [
+ "10.0.0-beta.24"
+ ],
+ "85.0.4183.80": [
+ "10.0.0-beta.25"
+ ],
+ "82.0.4050.0": [
+ "10.0.0-nightly.20200209",
+ "10.0.0-nightly.20200210",
+ "10.0.0-nightly.20200211",
+ "10.0.0-nightly.20200216",
+ "10.0.0-nightly.20200217",
+ "10.0.0-nightly.20200218",
+ "10.0.0-nightly.20200221",
+ "10.0.0-nightly.20200222",
+ "10.0.0-nightly.20200223",
+ "10.0.0-nightly.20200226",
+ "10.0.0-nightly.20200303"
+ ],
+ "82.0.4076.0": [
+ "10.0.0-nightly.20200304",
+ "10.0.0-nightly.20200305",
+ "10.0.0-nightly.20200306",
+ "10.0.0-nightly.20200309",
+ "10.0.0-nightly.20200310"
+ ],
+ "82.0.4083.0": [
+ "10.0.0-nightly.20200311"
+ ],
+ "83.0.4086.0": [
+ "10.0.0-nightly.20200316"
+ ],
+ "83.0.4087.0": [
+ "10.0.0-nightly.20200317",
+ "10.0.0-nightly.20200318",
+ "10.0.0-nightly.20200320",
+ "10.0.0-nightly.20200323",
+ "10.0.0-nightly.20200324",
+ "10.0.0-nightly.20200325",
+ "10.0.0-nightly.20200326",
+ "10.0.0-nightly.20200327",
+ "10.0.0-nightly.20200330",
+ "10.0.0-nightly.20200331",
+ "10.0.0-nightly.20200401",
+ "10.0.0-nightly.20200402",
+ "10.0.0-nightly.20200403",
+ "10.0.0-nightly.20200406"
+ ],
+ "83.0.4095.0": [
+ "10.0.0-nightly.20200408",
+ "10.0.0-nightly.20200410",
+ "10.0.0-nightly.20200413"
+ ],
+ "84.0.4114.0": [
+ "10.0.0-nightly.20200414"
+ ],
+ "84.0.4115.0": [
+ "10.0.0-nightly.20200415",
+ "10.0.0-nightly.20200416",
+ "10.0.0-nightly.20200417"
+ ],
+ "84.0.4121.0": [
+ "10.0.0-nightly.20200422",
+ "10.0.0-nightly.20200423"
+ ],
+ "84.0.4125.0": [
+ "10.0.0-nightly.20200427",
+ "10.0.0-nightly.20200428",
+ "10.0.0-nightly.20200429",
+ "10.0.0-nightly.20200430"
+ ],
+ "85.0.4183.84": [
+ "10.0.0"
+ ],
+ "85.0.4183.86": [
+ "10.0.1"
+ ],
+ "85.0.4183.87": [
+ "10.1.0"
+ ],
+ "85.0.4183.93": [
+ "10.1.1"
+ ],
+ "85.0.4183.98": [
+ "10.1.2"
+ ],
+ "85.0.4183.121": [
+ "10.1.3",
+ "10.1.4",
+ "10.1.5",
+ "10.1.6",
+ "10.1.7",
+ "10.2.0",
+ "10.3.0",
+ "10.3.1",
+ "10.3.2",
+ "10.4.0",
+ "10.4.1",
+ "10.4.2",
+ "10.4.3",
+ "10.4.4",
+ "10.4.5",
+ "10.4.6",
+ "10.4.7"
+ ],
+ "86.0.4234.0": [
+ "11.0.0-beta.1",
+ "11.0.0-beta.3",
+ "11.0.0-beta.4",
+ "11.0.0-beta.5",
+ "11.0.0-beta.6",
+ "11.0.0-beta.7",
+ "11.0.0-nightly.20200822",
+ "11.0.0-nightly.20200824",
+ "11.0.0-nightly.20200825",
+ "11.0.0-nightly.20200826",
+ "12.0.0-nightly.20200827",
+ "12.0.0-nightly.20200831",
+ "12.0.0-nightly.20200902",
+ "12.0.0-nightly.20200903",
+ "12.0.0-nightly.20200907",
+ "12.0.0-nightly.20200910",
+ "12.0.0-nightly.20200911",
+ "12.0.0-nightly.20200914"
+ ],
+ "87.0.4251.1": [
+ "11.0.0-beta.8",
+ "11.0.0-beta.9",
+ "11.0.0-beta.11"
+ ],
+ "87.0.4280.11": [
+ "11.0.0-beta.12",
+ "11.0.0-beta.13"
+ ],
+ "87.0.4280.27": [
+ "11.0.0-beta.16",
+ "11.0.0-beta.17",
+ "11.0.0-beta.18",
+ "11.0.0-beta.19"
+ ],
+ "87.0.4280.40": [
+ "11.0.0-beta.20"
+ ],
+ "87.0.4280.47": [
+ "11.0.0-beta.22",
+ "11.0.0-beta.23"
+ ],
+ "85.0.4156.0": [
+ "11.0.0-nightly.20200529"
+ ],
+ "85.0.4162.0": [
+ "11.0.0-nightly.20200602",
+ "11.0.0-nightly.20200603",
+ "11.0.0-nightly.20200604",
+ "11.0.0-nightly.20200609",
+ "11.0.0-nightly.20200610",
+ "11.0.0-nightly.20200611",
+ "11.0.0-nightly.20200615",
+ "11.0.0-nightly.20200616",
+ "11.0.0-nightly.20200617",
+ "11.0.0-nightly.20200618",
+ "11.0.0-nightly.20200619"
+ ],
+ "85.0.4179.0": [
+ "11.0.0-nightly.20200701",
+ "11.0.0-nightly.20200702",
+ "11.0.0-nightly.20200703",
+ "11.0.0-nightly.20200706",
+ "11.0.0-nightly.20200707",
+ "11.0.0-nightly.20200708",
+ "11.0.0-nightly.20200709"
+ ],
+ "86.0.4203.0": [
+ "11.0.0-nightly.20200716",
+ "11.0.0-nightly.20200717",
+ "11.0.0-nightly.20200720",
+ "11.0.0-nightly.20200721"
+ ],
+ "86.0.4209.0": [
+ "11.0.0-nightly.20200723",
+ "11.0.0-nightly.20200724",
+ "11.0.0-nightly.20200729",
+ "11.0.0-nightly.20200730",
+ "11.0.0-nightly.20200731",
+ "11.0.0-nightly.20200803",
+ "11.0.0-nightly.20200804",
+ "11.0.0-nightly.20200805",
+ "11.0.0-nightly.20200811",
+ "11.0.0-nightly.20200812"
+ ],
+ "87.0.4280.60": [
+ "11.0.0",
+ "11.0.1"
+ ],
+ "87.0.4280.67": [
+ "11.0.2",
+ "11.0.3",
+ "11.0.4"
+ ],
+ "87.0.4280.88": [
+ "11.0.5",
+ "11.1.0",
+ "11.1.1"
+ ],
+ "87.0.4280.141": [
+ "11.2.0",
+ "11.2.1",
+ "11.2.2",
+ "11.2.3",
+ "11.3.0",
+ "11.4.0",
+ "11.4.1",
+ "11.4.2",
+ "11.4.3",
+ "11.4.4",
+ "11.4.5",
+ "11.4.6",
+ "11.4.7",
+ "11.4.8",
+ "11.4.9",
+ "11.4.10",
+ "11.4.11",
+ "11.4.12",
+ "11.5.0"
+ ],
+ "89.0.4328.0": [
+ "12.0.0-beta.1",
+ "12.0.0-beta.3",
+ "12.0.0-beta.4",
+ "12.0.0-beta.5",
+ "12.0.0-beta.6",
+ "12.0.0-beta.7",
+ "12.0.0-beta.8",
+ "12.0.0-beta.9",
+ "12.0.0-beta.10",
+ "12.0.0-beta.11",
+ "12.0.0-beta.12",
+ "12.0.0-beta.14",
+ "13.0.0-nightly.20201119",
+ "13.0.0-nightly.20201123",
+ "13.0.0-nightly.20201124",
+ "13.0.0-nightly.20201126",
+ "13.0.0-nightly.20201127",
+ "13.0.0-nightly.20201130",
+ "13.0.0-nightly.20201201",
+ "13.0.0-nightly.20201202",
+ "13.0.0-nightly.20201203",
+ "13.0.0-nightly.20201204",
+ "13.0.0-nightly.20201207",
+ "13.0.0-nightly.20201208",
+ "13.0.0-nightly.20201209",
+ "13.0.0-nightly.20201210",
+ "13.0.0-nightly.20201211",
+ "13.0.0-nightly.20201214"
+ ],
+ "89.0.4348.1": [
+ "12.0.0-beta.16",
+ "12.0.0-beta.18",
+ "12.0.0-beta.19",
+ "12.0.0-beta.20"
+ ],
+ "89.0.4388.2": [
+ "12.0.0-beta.21",
+ "12.0.0-beta.22",
+ "12.0.0-beta.23",
+ "12.0.0-beta.24",
+ "12.0.0-beta.25",
+ "12.0.0-beta.26"
+ ],
+ "89.0.4389.23": [
+ "12.0.0-beta.27",
+ "12.0.0-beta.28",
+ "12.0.0-beta.29"
+ ],
+ "89.0.4389.58": [
+ "12.0.0-beta.30",
+ "12.0.0-beta.31"
+ ],
+ "87.0.4268.0": [
+ "12.0.0-nightly.20201002",
+ "12.0.0-nightly.20201007",
+ "12.0.0-nightly.20201009",
+ "12.0.0-nightly.20201012",
+ "12.0.0-nightly.20201013",
+ "12.0.0-nightly.20201014",
+ "12.0.0-nightly.20201015"
+ ],
+ "88.0.4292.0": [
+ "12.0.0-nightly.20201023",
+ "12.0.0-nightly.20201026"
+ ],
+ "88.0.4306.0": [
+ "12.0.0-nightly.20201030",
+ "12.0.0-nightly.20201102",
+ "12.0.0-nightly.20201103",
+ "12.0.0-nightly.20201104",
+ "12.0.0-nightly.20201105",
+ "12.0.0-nightly.20201106",
+ "12.0.0-nightly.20201111",
+ "12.0.0-nightly.20201112"
+ ],
+ "88.0.4324.0": [
+ "12.0.0-nightly.20201116"
+ ],
+ "89.0.4389.69": [
+ "12.0.0"
+ ],
+ "89.0.4389.82": [
+ "12.0.1"
+ ],
+ "89.0.4389.90": [
+ "12.0.2"
+ ],
+ "89.0.4389.114": [
+ "12.0.3",
+ "12.0.4"
+ ],
+ "89.0.4389.128": [
+ "12.0.5",
+ "12.0.6",
+ "12.0.7",
+ "12.0.8",
+ "12.0.9",
+ "12.0.10",
+ "12.0.11",
+ "12.0.12",
+ "12.0.13",
+ "12.0.14",
+ "12.0.15",
+ "12.0.16",
+ "12.0.17",
+ "12.0.18",
+ "12.1.0",
+ "12.1.1",
+ "12.1.2",
+ "12.2.0",
+ "12.2.1",
+ "12.2.2",
+ "12.2.3"
+ ],
+ "90.0.4402.0": [
+ "13.0.0-beta.2",
+ "13.0.0-beta.3",
+ "13.0.0-nightly.20210210",
+ "13.0.0-nightly.20210211",
+ "13.0.0-nightly.20210212",
+ "13.0.0-nightly.20210216",
+ "13.0.0-nightly.20210217",
+ "13.0.0-nightly.20210218",
+ "13.0.0-nightly.20210219",
+ "13.0.0-nightly.20210222",
+ "13.0.0-nightly.20210225",
+ "13.0.0-nightly.20210226",
+ "13.0.0-nightly.20210301",
+ "13.0.0-nightly.20210302",
+ "13.0.0-nightly.20210303",
+ "14.0.0-nightly.20210304"
+ ],
+ "90.0.4415.0": [
+ "13.0.0-beta.4",
+ "13.0.0-beta.5",
+ "13.0.0-beta.6",
+ "13.0.0-beta.7",
+ "13.0.0-beta.8",
+ "13.0.0-beta.9",
+ "13.0.0-beta.10",
+ "13.0.0-beta.11",
+ "13.0.0-beta.12",
+ "13.0.0-beta.13",
+ "14.0.0-nightly.20210305",
+ "14.0.0-nightly.20210308",
+ "14.0.0-nightly.20210309",
+ "14.0.0-nightly.20210311",
+ "14.0.0-nightly.20210315",
+ "14.0.0-nightly.20210316",
+ "14.0.0-nightly.20210317",
+ "14.0.0-nightly.20210318",
+ "14.0.0-nightly.20210319",
+ "14.0.0-nightly.20210323",
+ "14.0.0-nightly.20210324",
+ "14.0.0-nightly.20210325",
+ "14.0.0-nightly.20210326",
+ "14.0.0-nightly.20210329",
+ "14.0.0-nightly.20210330"
+ ],
+ "91.0.4448.0": [
+ "13.0.0-beta.14",
+ "13.0.0-beta.16",
+ "13.0.0-beta.17",
+ "13.0.0-beta.18",
+ "13.0.0-beta.20",
+ "14.0.0-nightly.20210331",
+ "14.0.0-nightly.20210401",
+ "14.0.0-nightly.20210402",
+ "14.0.0-nightly.20210406",
+ "14.0.0-nightly.20210407",
+ "14.0.0-nightly.20210408",
+ "14.0.0-nightly.20210409",
+ "14.0.0-nightly.20210413"
+ ],
+ "91.0.4472.33": [
+ "13.0.0-beta.21",
+ "13.0.0-beta.22",
+ "13.0.0-beta.23"
+ ],
+ "91.0.4472.38": [
+ "13.0.0-beta.24",
+ "13.0.0-beta.25",
+ "13.0.0-beta.26",
+ "13.0.0-beta.27",
+ "13.0.0-beta.28"
+ ],
+ "89.0.4349.0": [
+ "13.0.0-nightly.20201215",
+ "13.0.0-nightly.20201216",
+ "13.0.0-nightly.20201221",
+ "13.0.0-nightly.20201222"
+ ],
+ "89.0.4359.0": [
+ "13.0.0-nightly.20201223",
+ "13.0.0-nightly.20210104",
+ "13.0.0-nightly.20210108",
+ "13.0.0-nightly.20210111"
+ ],
+ "89.0.4386.0": [
+ "13.0.0-nightly.20210113",
+ "13.0.0-nightly.20210114",
+ "13.0.0-nightly.20210118",
+ "13.0.0-nightly.20210122",
+ "13.0.0-nightly.20210125"
+ ],
+ "89.0.4389.0": [
+ "13.0.0-nightly.20210127",
+ "13.0.0-nightly.20210128",
+ "13.0.0-nightly.20210129",
+ "13.0.0-nightly.20210201",
+ "13.0.0-nightly.20210202",
+ "13.0.0-nightly.20210203",
+ "13.0.0-nightly.20210205",
+ "13.0.0-nightly.20210208",
+ "13.0.0-nightly.20210209"
+ ],
+ "91.0.4472.69": [
+ "13.0.0",
+ "13.0.1"
+ ],
+ "91.0.4472.77": [
+ "13.1.0",
+ "13.1.1",
+ "13.1.2"
+ ],
+ "91.0.4472.106": [
+ "13.1.3",
+ "13.1.4"
+ ],
+ "91.0.4472.124": [
+ "13.1.5",
+ "13.1.6",
+ "13.1.7"
+ ],
+ "91.0.4472.164": [
+ "13.1.8",
+ "13.1.9",
+ "13.2.0",
+ "13.2.1",
+ "13.2.2",
+ "13.2.3",
+ "13.3.0",
+ "13.4.0",
+ "13.5.0",
+ "13.5.1",
+ "13.5.2",
+ "13.6.0",
+ "13.6.1",
+ "13.6.2",
+ "13.6.3",
+ "13.6.6",
+ "13.6.7",
+ "13.6.8",
+ "13.6.9"
+ ],
+ "92.0.4511.0": [
+ "14.0.0-beta.1",
+ "14.0.0-beta.2",
+ "14.0.0-beta.3",
+ "14.0.0-nightly.20210520",
+ "14.0.0-nightly.20210523",
+ "14.0.0-nightly.20210524",
+ "15.0.0-nightly.20210527",
+ "15.0.0-nightly.20210528",
+ "15.0.0-nightly.20210531",
+ "15.0.0-nightly.20210601",
+ "15.0.0-nightly.20210602"
+ ],
+ "93.0.4536.0": [
+ "14.0.0-beta.5",
+ "14.0.0-beta.6",
+ "14.0.0-beta.7",
+ "14.0.0-beta.8",
+ "15.0.0-nightly.20210609",
+ "15.0.0-nightly.20210610",
+ "15.0.0-nightly.20210611",
+ "15.0.0-nightly.20210614",
+ "15.0.0-nightly.20210615",
+ "15.0.0-nightly.20210616"
+ ],
+ "93.0.4539.0": [
+ "14.0.0-beta.9",
+ "14.0.0-beta.10",
+ "15.0.0-nightly.20210617",
+ "15.0.0-nightly.20210618",
+ "15.0.0-nightly.20210621",
+ "15.0.0-nightly.20210622"
+ ],
+ "93.0.4557.4": [
+ "14.0.0-beta.11",
+ "14.0.0-beta.12"
+ ],
+ "93.0.4566.0": [
+ "14.0.0-beta.13",
+ "14.0.0-beta.14",
+ "14.0.0-beta.15",
+ "14.0.0-beta.16",
+ "14.0.0-beta.17",
+ "15.0.0-alpha.1",
+ "15.0.0-alpha.2",
+ "15.0.0-nightly.20210706",
+ "15.0.0-nightly.20210707",
+ "15.0.0-nightly.20210708",
+ "15.0.0-nightly.20210709",
+ "15.0.0-nightly.20210712",
+ "15.0.0-nightly.20210713",
+ "15.0.0-nightly.20210714",
+ "15.0.0-nightly.20210715",
+ "15.0.0-nightly.20210716",
+ "15.0.0-nightly.20210719",
+ "15.0.0-nightly.20210720",
+ "15.0.0-nightly.20210721",
+ "16.0.0-nightly.20210722",
+ "16.0.0-nightly.20210723",
+ "16.0.0-nightly.20210726"
+ ],
+ "93.0.4577.15": [
+ "14.0.0-beta.18",
+ "14.0.0-beta.19",
+ "14.0.0-beta.20",
+ "14.0.0-beta.21"
+ ],
+ "93.0.4577.25": [
+ "14.0.0-beta.22",
+ "14.0.0-beta.23"
+ ],
+ "93.0.4577.51": [
+ "14.0.0-beta.24",
+ "14.0.0-beta.25"
+ ],
+ "92.0.4475.0": [
+ "14.0.0-nightly.20210426",
+ "14.0.0-nightly.20210427"
+ ],
+ "92.0.4488.0": [
+ "14.0.0-nightly.20210430",
+ "14.0.0-nightly.20210503"
+ ],
+ "92.0.4496.0": [
+ "14.0.0-nightly.20210505"
+ ],
+ "92.0.4498.0": [
+ "14.0.0-nightly.20210506"
+ ],
+ "92.0.4499.0": [
+ "14.0.0-nightly.20210507",
+ "14.0.0-nightly.20210510",
+ "14.0.0-nightly.20210511",
+ "14.0.0-nightly.20210512",
+ "14.0.0-nightly.20210513"
+ ],
+ "92.0.4505.0": [
+ "14.0.0-nightly.20210514",
+ "14.0.0-nightly.20210517",
+ "14.0.0-nightly.20210518",
+ "14.0.0-nightly.20210519"
+ ],
+ "93.0.4577.58": [
+ "14.0.0"
+ ],
+ "93.0.4577.63": [
+ "14.0.1"
+ ],
+ "93.0.4577.82": [
+ "14.0.2",
+ "14.1.0",
+ "14.1.1",
+ "14.2.0",
+ "14.2.1",
+ "14.2.2",
+ "14.2.3",
+ "14.2.4",
+ "14.2.5",
+ "14.2.6",
+ "14.2.7",
+ "14.2.8",
+ "14.2.9"
+ ],
+ "94.0.4584.0": [
+ "15.0.0-alpha.3",
+ "15.0.0-alpha.4",
+ "15.0.0-alpha.5",
+ "15.0.0-alpha.6",
+ "16.0.0-nightly.20210727",
+ "16.0.0-nightly.20210728",
+ "16.0.0-nightly.20210729",
+ "16.0.0-nightly.20210730",
+ "16.0.0-nightly.20210802",
+ "16.0.0-nightly.20210803",
+ "16.0.0-nightly.20210804",
+ "16.0.0-nightly.20210805",
+ "16.0.0-nightly.20210806",
+ "16.0.0-nightly.20210809",
+ "16.0.0-nightly.20210810",
+ "16.0.0-nightly.20210811"
+ ],
+ "94.0.4590.2": [
+ "15.0.0-alpha.7",
+ "15.0.0-alpha.8",
+ "15.0.0-alpha.9",
+ "16.0.0-nightly.20210812",
+ "16.0.0-nightly.20210813",
+ "16.0.0-nightly.20210816",
+ "16.0.0-nightly.20210817",
+ "16.0.0-nightly.20210818",
+ "16.0.0-nightly.20210819",
+ "16.0.0-nightly.20210820",
+ "16.0.0-nightly.20210823"
+ ],
+ "94.0.4606.12": [
+ "15.0.0-alpha.10"
+ ],
+ "94.0.4606.20": [
+ "15.0.0-beta.1",
+ "15.0.0-beta.2"
+ ],
+ "94.0.4606.31": [
+ "15.0.0-beta.3",
+ "15.0.0-beta.4",
+ "15.0.0-beta.5",
+ "15.0.0-beta.6",
+ "15.0.0-beta.7"
+ ],
+ "93.0.4530.0": [
+ "15.0.0-nightly.20210603",
+ "15.0.0-nightly.20210604"
+ ],
+ "93.0.4535.0": [
+ "15.0.0-nightly.20210608"
+ ],
+ "93.0.4550.0": [
+ "15.0.0-nightly.20210623",
+ "15.0.0-nightly.20210624"
+ ],
+ "93.0.4552.0": [
+ "15.0.0-nightly.20210625",
+ "15.0.0-nightly.20210628",
+ "15.0.0-nightly.20210629"
+ ],
+ "93.0.4558.0": [
+ "15.0.0-nightly.20210630",
+ "15.0.0-nightly.20210701",
+ "15.0.0-nightly.20210702",
+ "15.0.0-nightly.20210705"
+ ],
+ "94.0.4606.51": [
+ "15.0.0"
+ ],
+ "94.0.4606.61": [
+ "15.1.0",
+ "15.1.1"
+ ],
+ "94.0.4606.71": [
+ "15.1.2"
+ ],
+ "94.0.4606.81": [
+ "15.2.0",
+ "15.3.0",
+ "15.3.1",
+ "15.3.2",
+ "15.3.3",
+ "15.3.4",
+ "15.3.5",
+ "15.3.6",
+ "15.3.7",
+ "15.4.0",
+ "15.4.1",
+ "15.4.2",
+ "15.5.0",
+ "15.5.1",
+ "15.5.2",
+ "15.5.3",
+ "15.5.4",
+ "15.5.5",
+ "15.5.6",
+ "15.5.7"
+ ],
+ "95.0.4629.0": [
+ "16.0.0-alpha.1",
+ "16.0.0-alpha.2",
+ "16.0.0-alpha.3",
+ "16.0.0-alpha.4",
+ "16.0.0-alpha.5",
+ "16.0.0-alpha.6",
+ "16.0.0-alpha.7",
+ "16.0.0-nightly.20210902",
+ "16.0.0-nightly.20210903",
+ "16.0.0-nightly.20210906",
+ "16.0.0-nightly.20210907",
+ "16.0.0-nightly.20210908",
+ "16.0.0-nightly.20210909",
+ "16.0.0-nightly.20210910",
+ "16.0.0-nightly.20210913",
+ "16.0.0-nightly.20210914",
+ "16.0.0-nightly.20210915",
+ "16.0.0-nightly.20210916",
+ "16.0.0-nightly.20210917",
+ "16.0.0-nightly.20210920",
+ "16.0.0-nightly.20210921",
+ "16.0.0-nightly.20210922",
+ "17.0.0-nightly.20210923",
+ "17.0.0-nightly.20210924",
+ "17.0.0-nightly.20210927",
+ "17.0.0-nightly.20210928",
+ "17.0.0-nightly.20210929",
+ "17.0.0-nightly.20210930",
+ "17.0.0-nightly.20211001",
+ "17.0.0-nightly.20211004",
+ "17.0.0-nightly.20211005"
+ ],
+ "96.0.4647.0": [
+ "16.0.0-alpha.8",
+ "16.0.0-alpha.9",
+ "16.0.0-beta.1",
+ "16.0.0-beta.2",
+ "16.0.0-beta.3",
+ "17.0.0-nightly.20211006",
+ "17.0.0-nightly.20211007",
+ "17.0.0-nightly.20211008",
+ "17.0.0-nightly.20211011",
+ "17.0.0-nightly.20211012",
+ "17.0.0-nightly.20211013",
+ "17.0.0-nightly.20211014",
+ "17.0.0-nightly.20211015",
+ "17.0.0-nightly.20211018",
+ "17.0.0-nightly.20211019",
+ "17.0.0-nightly.20211020",
+ "17.0.0-nightly.20211021"
+ ],
+ "96.0.4664.18": [
+ "16.0.0-beta.4",
+ "16.0.0-beta.5"
+ ],
+ "96.0.4664.27": [
+ "16.0.0-beta.6",
+ "16.0.0-beta.7"
+ ],
+ "96.0.4664.35": [
+ "16.0.0-beta.8",
+ "16.0.0-beta.9"
+ ],
+ "95.0.4612.5": [
+ "16.0.0-nightly.20210824",
+ "16.0.0-nightly.20210825",
+ "16.0.0-nightly.20210826",
+ "16.0.0-nightly.20210827",
+ "16.0.0-nightly.20210830",
+ "16.0.0-nightly.20210831",
+ "16.0.0-nightly.20210901"
+ ],
+ "96.0.4664.45": [
+ "16.0.0",
+ "16.0.1"
+ ],
+ "96.0.4664.55": [
+ "16.0.2",
+ "16.0.3",
+ "16.0.4",
+ "16.0.5"
+ ],
+ "96.0.4664.110": [
+ "16.0.6",
+ "16.0.7",
+ "16.0.8"
+ ],
+ "96.0.4664.174": [
+ "16.0.9",
+ "16.0.10",
+ "16.1.0",
+ "16.1.1",
+ "16.2.0",
+ "16.2.1",
+ "16.2.2",
+ "16.2.3",
+ "16.2.4",
+ "16.2.5",
+ "16.2.6",
+ "16.2.7",
+ "16.2.8"
+ ],
+ "96.0.4664.4": [
+ "17.0.0-alpha.1",
+ "17.0.0-alpha.2",
+ "17.0.0-alpha.3",
+ "17.0.0-nightly.20211022",
+ "17.0.0-nightly.20211025",
+ "17.0.0-nightly.20211026",
+ "17.0.0-nightly.20211027",
+ "17.0.0-nightly.20211028",
+ "17.0.0-nightly.20211029",
+ "17.0.0-nightly.20211101",
+ "17.0.0-nightly.20211102",
+ "17.0.0-nightly.20211103",
+ "17.0.0-nightly.20211104",
+ "17.0.0-nightly.20211105",
+ "17.0.0-nightly.20211108",
+ "17.0.0-nightly.20211109",
+ "17.0.0-nightly.20211110",
+ "17.0.0-nightly.20211111",
+ "17.0.0-nightly.20211112",
+ "17.0.0-nightly.20211115",
+ "17.0.0-nightly.20211116",
+ "17.0.0-nightly.20211117",
+ "18.0.0-nightly.20211118",
+ "18.0.0-nightly.20211119",
+ "18.0.0-nightly.20211122",
+ "18.0.0-nightly.20211123"
+ ],
+ "98.0.4706.0": [
+ "17.0.0-alpha.4",
+ "17.0.0-alpha.5",
+ "17.0.0-alpha.6",
+ "17.0.0-beta.1",
+ "17.0.0-beta.2",
+ "18.0.0-nightly.20211124",
+ "18.0.0-nightly.20211125",
+ "18.0.0-nightly.20211126",
+ "18.0.0-nightly.20211129",
+ "18.0.0-nightly.20211130",
+ "18.0.0-nightly.20211201",
+ "18.0.0-nightly.20211202",
+ "18.0.0-nightly.20211203",
+ "18.0.0-nightly.20211206",
+ "18.0.0-nightly.20211207",
+ "18.0.0-nightly.20211208",
+ "18.0.0-nightly.20211209",
+ "18.0.0-nightly.20211210",
+ "18.0.0-nightly.20211213",
+ "18.0.0-nightly.20211214",
+ "18.0.0-nightly.20211215",
+ "18.0.0-nightly.20211216",
+ "18.0.0-nightly.20211217",
+ "18.0.0-nightly.20211220",
+ "18.0.0-nightly.20211221",
+ "18.0.0-nightly.20211222",
+ "18.0.0-nightly.20211223",
+ "18.0.0-nightly.20211228",
+ "18.0.0-nightly.20211229",
+ "18.0.0-nightly.20211231",
+ "18.0.0-nightly.20220103",
+ "18.0.0-nightly.20220104",
+ "18.0.0-nightly.20220105",
+ "18.0.0-nightly.20220106",
+ "18.0.0-nightly.20220107",
+ "18.0.0-nightly.20220110"
+ ],
+ "98.0.4758.9": [
+ "17.0.0-beta.3"
+ ],
+ "98.0.4758.11": [
+ "17.0.0-beta.4",
+ "17.0.0-beta.5",
+ "17.0.0-beta.6",
+ "17.0.0-beta.7",
+ "17.0.0-beta.8",
+ "17.0.0-beta.9"
+ ],
+ "98.0.4758.74": [
+ "17.0.0"
+ ],
+ "98.0.4758.82": [
+ "17.0.1"
+ ],
+ "98.0.4758.102": [
+ "17.1.0"
+ ],
+ "98.0.4758.109": [
+ "17.1.1",
+ "17.1.2",
+ "17.2.0"
+ ],
+ "98.0.4758.141": [
+ "17.3.0",
+ "17.3.1",
+ "17.4.0",
+ "17.4.1",
+ "17.4.2",
+ "17.4.3",
+ "17.4.4",
+ "17.4.5",
+ "17.4.6",
+ "17.4.7",
+ "17.4.8",
+ "17.4.9",
+ "17.4.10",
+ "17.4.11"
+ ],
+ "99.0.4767.0": [
+ "18.0.0-alpha.1",
+ "18.0.0-alpha.2",
+ "18.0.0-alpha.3",
+ "18.0.0-alpha.4",
+ "18.0.0-alpha.5",
+ "18.0.0-nightly.20220111",
+ "18.0.0-nightly.20220112",
+ "18.0.0-nightly.20220113",
+ "18.0.0-nightly.20220114",
+ "18.0.0-nightly.20220117",
+ "18.0.0-nightly.20220118",
+ "18.0.0-nightly.20220119",
+ "18.0.0-nightly.20220121",
+ "18.0.0-nightly.20220124",
+ "18.0.0-nightly.20220125",
+ "18.0.0-nightly.20220127",
+ "18.0.0-nightly.20220128",
+ "18.0.0-nightly.20220131",
+ "18.0.0-nightly.20220201",
+ "19.0.0-nightly.20220202",
+ "19.0.0-nightly.20220203",
+ "19.0.0-nightly.20220204",
+ "19.0.0-nightly.20220207",
+ "19.0.0-nightly.20220208",
+ "19.0.0-nightly.20220209"
+ ],
+ "100.0.4894.0": [
+ "18.0.0-beta.1",
+ "18.0.0-beta.2",
+ "18.0.0-beta.3",
+ "18.0.0-beta.4",
+ "18.0.0-beta.5",
+ "18.0.0-beta.6",
+ "19.0.0-nightly.20220308",
+ "19.0.0-nightly.20220309",
+ "19.0.0-nightly.20220310",
+ "19.0.0-nightly.20220311",
+ "19.0.0-nightly.20220314",
+ "19.0.0-nightly.20220315",
+ "19.0.0-nightly.20220316",
+ "19.0.0-nightly.20220317",
+ "19.0.0-nightly.20220318",
+ "19.0.0-nightly.20220321",
+ "19.0.0-nightly.20220322",
+ "19.0.0-nightly.20220323",
+ "19.0.0-nightly.20220324"
+ ],
+ "100.0.4896.56": [
+ "18.0.0"
+ ],
+ "100.0.4896.60": [
+ "18.0.1",
+ "18.0.2"
+ ],
+ "100.0.4896.75": [
+ "18.0.3",
+ "18.0.4"
+ ],
+ "100.0.4896.127": [
+ "18.1.0"
+ ],
+ "100.0.4896.143": [
+ "18.2.0",
+ "18.2.1",
+ "18.2.2",
+ "18.2.3"
+ ],
+ "100.0.4896.160": [
+ "18.2.4",
+ "18.3.0",
+ "18.3.1",
+ "18.3.2",
+ "18.3.3",
+ "18.3.4",
+ "18.3.5",
+ "18.3.6",
+ "18.3.7",
+ "18.3.8",
+ "18.3.9",
+ "18.3.11",
+ "18.3.12",
+ "18.3.13",
+ "18.3.14",
+ "18.3.15"
+ ],
+ "102.0.4962.3": [
+ "19.0.0-alpha.1",
+ "19.0.0-nightly.20220328",
+ "19.0.0-nightly.20220329",
+ "20.0.0-nightly.20220330"
+ ],
+ "102.0.4971.0": [
+ "19.0.0-alpha.2",
+ "19.0.0-alpha.3",
+ "20.0.0-nightly.20220411"
+ ],
+ "102.0.4989.0": [
+ "19.0.0-alpha.4",
+ "19.0.0-alpha.5",
+ "20.0.0-nightly.20220414",
+ "20.0.0-nightly.20220415",
+ "20.0.0-nightly.20220418",
+ "20.0.0-nightly.20220419",
+ "20.0.0-nightly.20220420",
+ "20.0.0-nightly.20220421"
+ ],
+ "102.0.4999.0": [
+ "19.0.0-beta.1",
+ "19.0.0-beta.2",
+ "19.0.0-beta.3",
+ "20.0.0-nightly.20220425",
+ "20.0.0-nightly.20220426",
+ "20.0.0-nightly.20220427",
+ "20.0.0-nightly.20220428",
+ "20.0.0-nightly.20220429",
+ "20.0.0-nightly.20220502",
+ "20.0.0-nightly.20220503",
+ "20.0.0-nightly.20220504",
+ "20.0.0-nightly.20220505",
+ "20.0.0-nightly.20220506",
+ "20.0.0-nightly.20220509",
+ "20.0.0-nightly.20220511",
+ "20.0.0-nightly.20220512",
+ "20.0.0-nightly.20220513",
+ "20.0.0-nightly.20220516",
+ "20.0.0-nightly.20220517"
+ ],
+ "102.0.5005.27": [
+ "19.0.0-beta.4"
+ ],
+ "102.0.5005.40": [
+ "19.0.0-beta.5",
+ "19.0.0-beta.6",
+ "19.0.0-beta.7"
+ ],
+ "102.0.5005.49": [
+ "19.0.0-beta.8"
+ ],
+ "102.0.4961.0": [
+ "19.0.0-nightly.20220325"
+ ],
+ "102.0.5005.61": [
+ "19.0.0",
+ "19.0.1"
+ ],
+ "102.0.5005.63": [
+ "19.0.2",
+ "19.0.3",
+ "19.0.4"
+ ],
+ "102.0.5005.115": [
+ "19.0.5",
+ "19.0.6"
+ ],
+ "102.0.5005.134": [
+ "19.0.7"
+ ],
+ "102.0.5005.148": [
+ "19.0.8"
+ ],
+ "102.0.5005.167": [
+ "19.0.9",
+ "19.0.10",
+ "19.0.11",
+ "19.0.12",
+ "19.0.13",
+ "19.0.14",
+ "19.0.15",
+ "19.0.16",
+ "19.0.17",
+ "19.1.0",
+ "19.1.1",
+ "19.1.2",
+ "19.1.3",
+ "19.1.4",
+ "19.1.5",
+ "19.1.6",
+ "19.1.7",
+ "19.1.8",
+ "19.1.9"
+ ],
+ "103.0.5044.0": [
+ "20.0.0-alpha.1",
+ "20.0.0-nightly.20220518",
+ "20.0.0-nightly.20220519",
+ "20.0.0-nightly.20220520",
+ "20.0.0-nightly.20220523",
+ "20.0.0-nightly.20220524",
+ "21.0.0-nightly.20220526",
+ "21.0.0-nightly.20220527",
+ "21.0.0-nightly.20220530",
+ "21.0.0-nightly.20220531"
+ ],
+ "104.0.5073.0": [
+ "20.0.0-alpha.2",
+ "20.0.0-alpha.3",
+ "20.0.0-alpha.4",
+ "20.0.0-alpha.5",
+ "20.0.0-alpha.6",
+ "20.0.0-alpha.7",
+ "20.0.0-beta.1",
+ "20.0.0-beta.2",
+ "20.0.0-beta.3",
+ "20.0.0-beta.4",
+ "20.0.0-beta.5",
+ "20.0.0-beta.6",
+ "20.0.0-beta.7",
+ "20.0.0-beta.8",
+ "21.0.0-nightly.20220602",
+ "21.0.0-nightly.20220603",
+ "21.0.0-nightly.20220606",
+ "21.0.0-nightly.20220607",
+ "21.0.0-nightly.20220608",
+ "21.0.0-nightly.20220609",
+ "21.0.0-nightly.20220610",
+ "21.0.0-nightly.20220613",
+ "21.0.0-nightly.20220614",
+ "21.0.0-nightly.20220615",
+ "21.0.0-nightly.20220616",
+ "21.0.0-nightly.20220617",
+ "21.0.0-nightly.20220620",
+ "21.0.0-nightly.20220621",
+ "21.0.0-nightly.20220622",
+ "21.0.0-nightly.20220623",
+ "21.0.0-nightly.20220624",
+ "21.0.0-nightly.20220627"
+ ],
+ "104.0.5112.39": [
+ "20.0.0-beta.9"
+ ],
+ "104.0.5112.48": [
+ "20.0.0-beta.10",
+ "20.0.0-beta.11",
+ "20.0.0-beta.12"
+ ],
+ "104.0.5112.57": [
+ "20.0.0-beta.13"
+ ],
+ "104.0.5112.65": [
+ "20.0.0"
+ ],
+ "104.0.5112.81": [
+ "20.0.1",
+ "20.0.2",
+ "20.0.3"
+ ],
+ "104.0.5112.102": [
+ "20.1.0",
+ "20.1.1"
+ ],
+ "104.0.5112.114": [
+ "20.1.2",
+ "20.1.3",
+ "20.1.4"
+ ],
+ "104.0.5112.124": [
+ "20.2.0",
+ "20.3.0",
+ "20.3.1",
+ "20.3.2",
+ "20.3.3",
+ "20.3.4",
+ "20.3.5",
+ "20.3.6",
+ "20.3.7",
+ "20.3.8",
+ "20.3.9",
+ "20.3.10",
+ "20.3.11",
+ "20.3.12"
+ ],
+ "105.0.5187.0": [
+ "21.0.0-alpha.1",
+ "21.0.0-alpha.2",
+ "21.0.0-alpha.3",
+ "21.0.0-alpha.4",
+ "21.0.0-alpha.5",
+ "21.0.0-nightly.20220720",
+ "21.0.0-nightly.20220721",
+ "21.0.0-nightly.20220722",
+ "21.0.0-nightly.20220725",
+ "21.0.0-nightly.20220726",
+ "21.0.0-nightly.20220727",
+ "21.0.0-nightly.20220728",
+ "21.0.0-nightly.20220801",
+ "21.0.0-nightly.20220802",
+ "22.0.0-nightly.20220808",
+ "22.0.0-nightly.20220809",
+ "22.0.0-nightly.20220810",
+ "22.0.0-nightly.20220811",
+ "22.0.0-nightly.20220812",
+ "22.0.0-nightly.20220815",
+ "22.0.0-nightly.20220816",
+ "22.0.0-nightly.20220817"
+ ],
+ "106.0.5216.0": [
+ "21.0.0-alpha.6",
+ "21.0.0-beta.1",
+ "21.0.0-beta.2",
+ "21.0.0-beta.3",
+ "21.0.0-beta.4",
+ "21.0.0-beta.5",
+ "22.0.0-nightly.20220822",
+ "22.0.0-nightly.20220823",
+ "22.0.0-nightly.20220824",
+ "22.0.0-nightly.20220825",
+ "22.0.0-nightly.20220829",
+ "22.0.0-nightly.20220830",
+ "22.0.0-nightly.20220831",
+ "22.0.0-nightly.20220901",
+ "22.0.0-nightly.20220902",
+ "22.0.0-nightly.20220905"
+ ],
+ "106.0.5249.40": [
+ "21.0.0-beta.6",
+ "21.0.0-beta.7",
+ "21.0.0-beta.8"
+ ],
+ "105.0.5129.0": [
+ "21.0.0-nightly.20220628",
+ "21.0.0-nightly.20220629",
+ "21.0.0-nightly.20220630",
+ "21.0.0-nightly.20220701",
+ "21.0.0-nightly.20220704",
+ "21.0.0-nightly.20220705",
+ "21.0.0-nightly.20220706",
+ "21.0.0-nightly.20220707",
+ "21.0.0-nightly.20220708",
+ "21.0.0-nightly.20220711",
+ "21.0.0-nightly.20220712",
+ "21.0.0-nightly.20220713"
+ ],
+ "105.0.5173.0": [
+ "21.0.0-nightly.20220715",
+ "21.0.0-nightly.20220718",
+ "21.0.0-nightly.20220719"
+ ],
+ "106.0.5249.51": [
+ "21.0.0"
+ ],
+ "106.0.5249.61": [
+ "21.0.1"
+ ],
+ "106.0.5249.91": [
+ "21.1.0"
+ ],
+ "106.0.5249.103": [
+ "21.1.1"
+ ],
+ "106.0.5249.119": [
+ "21.2.0"
+ ],
+ "106.0.5249.165": [
+ "21.2.1"
+ ],
+ "106.0.5249.168": [
+ "21.2.2",
+ "21.2.3"
+ ],
+ "106.0.5249.181": [
+ "21.3.0",
+ "21.3.1"
+ ],
+ "106.0.5249.199": [
+ "21.3.3",
+ "21.3.4",
+ "21.3.5",
+ "21.4.0",
+ "21.4.1",
+ "21.4.2",
+ "21.4.3",
+ "21.4.4"
+ ],
+ "107.0.5286.0": [
+ "22.0.0-alpha.1",
+ "22.0.0-nightly.20220909",
+ "22.0.0-nightly.20220912",
+ "22.0.0-nightly.20220913",
+ "22.0.0-nightly.20220914",
+ "22.0.0-nightly.20220915",
+ "22.0.0-nightly.20220916",
+ "22.0.0-nightly.20220919",
+ "22.0.0-nightly.20220920",
+ "22.0.0-nightly.20220921",
+ "22.0.0-nightly.20220922",
+ "22.0.0-nightly.20220923",
+ "22.0.0-nightly.20220926",
+ "22.0.0-nightly.20220927",
+ "22.0.0-nightly.20220928",
+ "23.0.0-nightly.20220929",
+ "23.0.0-nightly.20220930",
+ "23.0.0-nightly.20221003"
+ ],
+ "108.0.5329.0": [
+ "22.0.0-alpha.3",
+ "22.0.0-alpha.4",
+ "22.0.0-alpha.5",
+ "22.0.0-alpha.6",
+ "23.0.0-nightly.20221004",
+ "23.0.0-nightly.20221005",
+ "23.0.0-nightly.20221006",
+ "23.0.0-nightly.20221007",
+ "23.0.0-nightly.20221010",
+ "23.0.0-nightly.20221011",
+ "23.0.0-nightly.20221012",
+ "23.0.0-nightly.20221013",
+ "23.0.0-nightly.20221014",
+ "23.0.0-nightly.20221017"
+ ],
+ "108.0.5355.0": [
+ "22.0.0-alpha.7",
+ "23.0.0-nightly.20221018",
+ "23.0.0-nightly.20221019",
+ "23.0.0-nightly.20221020",
+ "23.0.0-nightly.20221021",
+ "23.0.0-nightly.20221024",
+ "23.0.0-nightly.20221026"
+ ],
+ "108.0.5359.10": [
+ "22.0.0-alpha.8",
+ "22.0.0-beta.1",
+ "22.0.0-beta.2",
+ "22.0.0-beta.3"
+ ],
+ "108.0.5359.29": [
+ "22.0.0-beta.4"
+ ],
+ "108.0.5359.40": [
+ "22.0.0-beta.5",
+ "22.0.0-beta.6"
+ ],
+ "108.0.5359.48": [
+ "22.0.0-beta.7",
+ "22.0.0-beta.8"
+ ],
+ "107.0.5274.0": [
+ "22.0.0-nightly.20220908"
+ ],
+ "108.0.5359.62": [
+ "22.0.0"
+ ],
+ "108.0.5359.125": [
+ "22.0.1"
+ ],
+ "108.0.5359.179": [
+ "22.0.2",
+ "22.0.3",
+ "22.1.0"
+ ],
+ "108.0.5359.215": [
+ "22.2.0",
+ "22.2.1",
+ "22.3.0",
+ "22.3.1",
+ "22.3.2",
+ "22.3.3",
+ "22.3.4",
+ "22.3.5",
+ "22.3.6",
+ "22.3.7",
+ "22.3.8",
+ "22.3.9",
+ "22.3.10",
+ "22.3.11"
+ ],
+ "110.0.5415.0": [
+ "23.0.0-alpha.1",
+ "23.0.0-nightly.20221118",
+ "23.0.0-nightly.20221121",
+ "23.0.0-nightly.20221122",
+ "23.0.0-nightly.20221123",
+ "23.0.0-nightly.20221124",
+ "23.0.0-nightly.20221125",
+ "23.0.0-nightly.20221128",
+ "23.0.0-nightly.20221129",
+ "23.0.0-nightly.20221130",
+ "24.0.0-nightly.20221201",
+ "24.0.0-nightly.20221202",
+ "24.0.0-nightly.20221205"
+ ],
+ "110.0.5451.0": [
+ "23.0.0-alpha.2",
+ "23.0.0-alpha.3",
+ "24.0.0-nightly.20221206",
+ "24.0.0-nightly.20221207",
+ "24.0.0-nightly.20221208",
+ "24.0.0-nightly.20221213",
+ "24.0.0-nightly.20221214",
+ "24.0.0-nightly.20221215",
+ "24.0.0-nightly.20221216"
+ ],
+ "110.0.5478.5": [
+ "23.0.0-beta.1",
+ "23.0.0-beta.2",
+ "23.0.0-beta.3"
+ ],
+ "110.0.5481.30": [
+ "23.0.0-beta.4"
+ ],
+ "110.0.5481.38": [
+ "23.0.0-beta.5"
+ ],
+ "110.0.5481.52": [
+ "23.0.0-beta.6",
+ "23.0.0-beta.8"
+ ],
+ "109.0.5382.0": [
+ "23.0.0-nightly.20221027",
+ "23.0.0-nightly.20221028",
+ "23.0.0-nightly.20221031",
+ "23.0.0-nightly.20221101",
+ "23.0.0-nightly.20221102",
+ "23.0.0-nightly.20221103",
+ "23.0.0-nightly.20221104",
+ "23.0.0-nightly.20221107",
+ "23.0.0-nightly.20221108",
+ "23.0.0-nightly.20221109",
+ "23.0.0-nightly.20221110",
+ "23.0.0-nightly.20221111",
+ "23.0.0-nightly.20221114",
+ "23.0.0-nightly.20221115",
+ "23.0.0-nightly.20221116",
+ "23.0.0-nightly.20221117"
+ ],
+ "110.0.5481.77": [
+ "23.0.0"
+ ],
+ "110.0.5481.100": [
+ "23.1.0"
+ ],
+ "110.0.5481.104": [
+ "23.1.1"
+ ],
+ "110.0.5481.177": [
+ "23.1.2"
+ ],
+ "110.0.5481.179": [
+ "23.1.3"
+ ],
+ "110.0.5481.192": [
+ "23.1.4",
+ "23.2.0"
+ ],
+ "110.0.5481.208": [
+ "23.2.1",
+ "23.2.2",
+ "23.2.3",
+ "23.2.4",
+ "23.3.0",
+ "23.3.1",
+ "23.3.2",
+ "23.3.3",
+ "23.3.4"
+ ],
+ "111.0.5560.0": [
+ "24.0.0-alpha.1",
+ "24.0.0-alpha.2",
+ "24.0.0-alpha.3",
+ "24.0.0-alpha.4",
+ "24.0.0-alpha.5",
+ "24.0.0-alpha.6",
+ "24.0.0-alpha.7",
+ "24.0.0-nightly.20230203",
+ "24.0.0-nightly.20230206",
+ "24.0.0-nightly.20230207",
+ "24.0.0-nightly.20230208",
+ "24.0.0-nightly.20230209",
+ "25.0.0-nightly.20230210",
+ "25.0.0-nightly.20230214",
+ "25.0.0-nightly.20230215",
+ "25.0.0-nightly.20230216",
+ "25.0.0-nightly.20230217",
+ "25.0.0-nightly.20230220",
+ "25.0.0-nightly.20230221",
+ "25.0.0-nightly.20230222",
+ "25.0.0-nightly.20230223",
+ "25.0.0-nightly.20230224",
+ "25.0.0-nightly.20230227",
+ "25.0.0-nightly.20230228",
+ "25.0.0-nightly.20230301",
+ "25.0.0-nightly.20230302",
+ "25.0.0-nightly.20230303",
+ "25.0.0-nightly.20230306",
+ "25.0.0-nightly.20230307",
+ "25.0.0-nightly.20230308",
+ "25.0.0-nightly.20230309",
+ "25.0.0-nightly.20230310"
+ ],
+ "111.0.5563.50": [
+ "24.0.0-beta.1",
+ "24.0.0-beta.2"
+ ],
+ "112.0.5615.20": [
+ "24.0.0-beta.3",
+ "24.0.0-beta.4"
+ ],
+ "112.0.5615.29": [
+ "24.0.0-beta.5"
+ ],
+ "112.0.5615.39": [
+ "24.0.0-beta.6",
+ "24.0.0-beta.7"
+ ],
+ "111.0.5518.0": [
+ "24.0.0-nightly.20230109",
+ "24.0.0-nightly.20230110",
+ "24.0.0-nightly.20230111",
+ "24.0.0-nightly.20230112",
+ "24.0.0-nightly.20230113",
+ "24.0.0-nightly.20230116",
+ "24.0.0-nightly.20230117",
+ "24.0.0-nightly.20230118",
+ "24.0.0-nightly.20230119",
+ "24.0.0-nightly.20230120",
+ "24.0.0-nightly.20230123",
+ "24.0.0-nightly.20230124",
+ "24.0.0-nightly.20230125",
+ "24.0.0-nightly.20230126",
+ "24.0.0-nightly.20230127",
+ "24.0.0-nightly.20230131",
+ "24.0.0-nightly.20230201",
+ "24.0.0-nightly.20230202"
+ ],
+ "112.0.5615.49": [
+ "24.0.0"
+ ],
+ "112.0.5615.50": [
+ "24.1.0",
+ "24.1.1"
+ ],
+ "112.0.5615.87": [
+ "24.1.2"
+ ],
+ "112.0.5615.165": [
+ "24.1.3",
+ "24.2.0",
+ "24.3.0"
+ ],
+ "112.0.5615.183": [
+ "24.3.1"
+ ],
+ "112.0.5615.204": [
+ "24.4.0",
+ "24.4.1"
+ ],
+ "114.0.5694.0": [
+ "25.0.0-alpha.1",
+ "25.0.0-alpha.2",
+ "25.0.0-nightly.20230405",
+ "26.0.0-nightly.20230406",
+ "26.0.0-nightly.20230407",
+ "26.0.0-nightly.20230410",
+ "26.0.0-nightly.20230411"
+ ],
+ "114.0.5710.0": [
+ "25.0.0-alpha.3",
+ "25.0.0-alpha.4",
+ "26.0.0-nightly.20230413",
+ "26.0.0-nightly.20230414",
+ "26.0.0-nightly.20230417"
+ ],
+ "114.0.5719.0": [
+ "25.0.0-alpha.5",
+ "25.0.0-alpha.6",
+ "25.0.0-beta.1",
+ "25.0.0-beta.2",
+ "25.0.0-beta.3",
+ "26.0.0-nightly.20230421",
+ "26.0.0-nightly.20230424",
+ "26.0.0-nightly.20230425",
+ "26.0.0-nightly.20230426",
+ "26.0.0-nightly.20230427",
+ "26.0.0-nightly.20230428",
+ "26.0.0-nightly.20230501",
+ "26.0.0-nightly.20230502",
+ "26.0.0-nightly.20230503",
+ "26.0.0-nightly.20230504",
+ "26.0.0-nightly.20230505",
+ "26.0.0-nightly.20230508",
+ "26.0.0-nightly.20230509",
+ "26.0.0-nightly.20230510"
+ ],
+ "114.0.5735.16": [
+ "25.0.0-beta.4",
+ "25.0.0-beta.5",
+ "25.0.0-beta.6",
+ "25.0.0-beta.7"
+ ],
+ "114.0.5735.35": [
+ "25.0.0-beta.8"
+ ],
+ "114.0.5735.45": [
+ "25.0.0-beta.9",
+ "25.0.0"
+ ],
+ "113.0.5636.0": [
+ "25.0.0-nightly.20230314"
+ ],
+ "113.0.5651.0": [
+ "25.0.0-nightly.20230315"
+ ],
+ "113.0.5653.0": [
+ "25.0.0-nightly.20230317"
+ ],
+ "113.0.5660.0": [
+ "25.0.0-nightly.20230320"
+ ],
+ "113.0.5664.0": [
+ "25.0.0-nightly.20230321"
+ ],
+ "113.0.5666.0": [
+ "25.0.0-nightly.20230322"
+ ],
+ "113.0.5668.0": [
+ "25.0.0-nightly.20230323"
+ ],
+ "113.0.5670.0": [
+ "25.0.0-nightly.20230324",
+ "25.0.0-nightly.20230327",
+ "25.0.0-nightly.20230328",
+ "25.0.0-nightly.20230329",
+ "25.0.0-nightly.20230330"
+ ],
+ "114.0.5684.0": [
+ "25.0.0-nightly.20230331",
+ "25.0.0-nightly.20230403"
+ ],
+ "114.0.5692.0": [
+ "25.0.0-nightly.20230404"
+ ],
+ "114.0.5708.0": [
+ "26.0.0-nightly.20230412"
+ ],
+ "114.0.5715.0": [
+ "26.0.0-nightly.20230418"
+ ],
+ "115.0.5760.0": [
+ "26.0.0-nightly.20230511",
+ "26.0.0-nightly.20230512",
+ "26.0.0-nightly.20230515",
+ "26.0.0-nightly.20230516",
+ "26.0.0-nightly.20230517",
+ "26.0.0-nightly.20230518",
+ "26.0.0-nightly.20230519",
+ "26.0.0-nightly.20230522",
+ "26.0.0-nightly.20230523"
+ ],
+ "115.0.5786.0": [
+ "26.0.0-nightly.20230524"
+ ],
+ "115.0.5790.0": [
+ "26.0.0-nightly.20230525"
+ ],
+ "116.0.5791.0": [
+ "26.0.0-nightly.20230526",
+ "26.0.0-nightly.20230529"
+ ]
+};
\ No newline at end of file
diff --git a/node_modules/electron-to-chromium/full-chromium-versions.json b/node_modules/electron-to-chromium/full-chromium-versions.json
new file mode 100644
index 0000000..d8e2fad
--- /dev/null
+++ b/node_modules/electron-to-chromium/full-chromium-versions.json
@@ -0,0 +1 @@
+{"39.0.2171.65":["0.20.0","0.20.1","0.20.2","0.20.3","0.20.4","0.20.5","0.20.6","0.20.7","0.20.8"],"40.0.2214.91":["0.21.0","0.21.1","0.21.2"],"41.0.2272.76":["0.21.3","0.22.1","0.22.2","0.22.3","0.23.0","0.24.0"],"42.0.2311.107":["0.25.0","0.25.1","0.25.2","0.25.3","0.26.0","0.26.1","0.27.0","0.27.1"],"43.0.2357.65":["0.27.2","0.27.3","0.28.0","0.28.1","0.28.2","0.28.3","0.29.1","0.29.2"],"44.0.2403.125":["0.30.4","0.31.0"],"45.0.2454.85":["0.31.2","0.32.2","0.32.3","0.33.0","0.33.1","0.33.2","0.33.3","0.33.4","0.33.6","0.33.7","0.33.8","0.33.9","0.34.0","0.34.1","0.34.2","0.34.3","0.34.4","0.35.1","0.35.2","0.35.3","0.35.4","0.35.5"],"47.0.2526.73":["0.36.0","0.36.2","0.36.3","0.36.4"],"47.0.2526.110":["0.36.5","0.36.6","0.36.7","0.36.8","0.36.9","0.36.10","0.36.11","0.36.12"],"49.0.2623.75":["0.37.0","0.37.1","0.37.3","0.37.4","0.37.5","0.37.6","0.37.7","0.37.8","1.0.0","1.0.1","1.0.2"],"50.0.2661.102":["1.1.0","1.1.1","1.1.2","1.1.3"],"51.0.2704.63":["1.2.0","1.2.1"],"51.0.2704.84":["1.2.2","1.2.3"],"51.0.2704.103":["1.2.4","1.2.5"],"51.0.2704.106":["1.2.6","1.2.7","1.2.8"],"52.0.2743.82":["1.3.0","1.3.1","1.3.2","1.3.3","1.3.4","1.3.5","1.3.6","1.3.7","1.3.9","1.3.10","1.3.13","1.3.14","1.3.15"],"53.0.2785.113":["1.4.0","1.4.1","1.4.2","1.4.3","1.4.4","1.4.5"],"53.0.2785.143":["1.4.6","1.4.7","1.4.8","1.4.10","1.4.11","1.4.13","1.4.14","1.4.15","1.4.16"],"54.0.2840.51":["1.4.12"],"54.0.2840.101":["1.5.0","1.5.1"],"56.0.2924.87":["1.6.0","1.6.1","1.6.2","1.6.3","1.6.4","1.6.5","1.6.6","1.6.7","1.6.8","1.6.9","1.6.10","1.6.11","1.6.12","1.6.13","1.6.14","1.6.15","1.6.16","1.6.17","1.6.18"],"58.0.3029.110":["1.7.0","1.7.1","1.7.2","1.7.3","1.7.4","1.7.5","1.7.6","1.7.7","1.7.8","1.7.9","1.7.10","1.7.11","1.7.12","1.7.13","1.7.14","1.7.15","1.7.16"],"59.0.3071.115":["1.8.0","1.8.1","1.8.2-beta.1","1.8.2-beta.2","1.8.2-beta.3","1.8.2-beta.4","1.8.2-beta.5","1.8.2","1.8.3","1.8.4","1.8.5","1.8.6","1.8.7","1.8.8"],"61.0.3163.100":["2.0.0-beta.1","2.0.0-beta.2","2.0.0-beta.3","2.0.0-beta.4","2.0.0-beta.5","2.0.0-beta.6","2.0.0-beta.7","2.0.0-beta.8","2.0.0","2.0.1","2.0.2","2.0.3","2.0.4","2.0.5","2.0.6","2.0.7","2.0.8-nightly.20180819","2.0.8-nightly.20180820","2.0.8","2.0.9","2.0.10","2.0.11","2.0.12","2.0.13","2.0.14","2.0.15","2.0.16","2.0.17","2.0.18","2.1.0-unsupported.20180809"],"66.0.3359.181":["3.0.0-beta.1","3.0.0-beta.2","3.0.0-beta.3","3.0.0-beta.4","3.0.0-beta.5","3.0.0-beta.6","3.0.0-beta.7","3.0.0-beta.8","3.0.0-beta.9","3.0.0-beta.10","3.0.0-beta.11","3.0.0-beta.12","3.0.0-beta.13","3.0.0-nightly.20180818","3.0.0-nightly.20180821","3.0.0-nightly.20180823","3.0.0-nightly.20180904","3.0.0","3.0.1","3.0.2","3.0.3","3.0.4","3.0.5","3.0.6","3.0.7","3.0.8","3.0.9","3.0.10","3.0.11","3.0.12","3.0.13","3.0.14","3.0.15","3.0.16","3.1.0-beta.1","3.1.0-beta.2","3.1.0-beta.3","3.1.0-beta.4","3.1.0-beta.5","3.1.0","3.1.1","3.1.2","3.1.3","3.1.4","3.1.5","3.1.6","3.1.7","3.1.8","3.1.9","3.1.10","3.1.11","3.1.12","3.1.13","4.0.0-nightly.20180817","4.0.0-nightly.20180819","4.0.0-nightly.20180821"],"69.0.3497.106":["4.0.0-beta.1","4.0.0-beta.2","4.0.0-beta.3","4.0.0-beta.4","4.0.0-beta.5","4.0.0-beta.6","4.0.0-beta.7","4.0.0-beta.8","4.0.0-beta.9","4.0.0-beta.10","4.0.0-beta.11","4.0.0-nightly.20181010","4.0.0","4.0.1","4.0.2","4.0.3","4.0.4","4.0.5","4.0.6"],"67.0.3396.99":["4.0.0-nightly.20180929"],"68.0.3440.128":["4.0.0-nightly.20181006"],"69.0.3497.128":["4.0.7","4.0.8","4.1.0","4.1.1","4.1.2","4.1.3","4.1.4","4.1.5","4.2.0","4.2.1","4.2.2","4.2.3","4.2.4","4.2.5","4.2.6","4.2.7","4.2.8","4.2.9","4.2.10","4.2.11","4.2.12"],"72.0.3626.52":["5.0.0-beta.1","5.0.0-beta.2","6.0.0-nightly.20190123"],"73.0.3683.27":["5.0.0-beta.3"],"73.0.3683.54":["5.0.0-beta.4"],"73.0.3683.61":["5.0.0-beta.5"],"73.0.3683.84":["5.0.0-beta.6"],"73.0.3683.94":["5.0.0-beta.7"],"73.0.3683.104":["5.0.0-beta.8"],"73.0.3683.117":["5.0.0-beta.9"],"70.0.3538.110":["5.0.0-nightly.20190107"],"71.0.3578.98":["5.0.0-nightly.20190121","5.0.0-nightly.20190122"],"73.0.3683.119":["5.0.0"],"73.0.3683.121":["5.0.1","5.0.2","5.0.3","5.0.4","5.0.5","5.0.6","5.0.7","5.0.8","5.0.9","5.0.10","5.0.11","5.0.12","5.0.13"],"76.0.3774.1":["6.0.0-beta.1"],"76.0.3783.1":["6.0.0-beta.2","6.0.0-beta.3","6.0.0-beta.4"],"76.0.3805.4":["6.0.0-beta.5"],"76.0.3809.3":["6.0.0-beta.6"],"76.0.3809.22":["6.0.0-beta.7"],"76.0.3809.26":["6.0.0-beta.8","6.0.0-beta.9"],"76.0.3809.37":["6.0.0-beta.10"],"76.0.3809.42":["6.0.0-beta.11"],"76.0.3809.54":["6.0.0-beta.12"],"76.0.3809.60":["6.0.0-beta.13"],"76.0.3809.68":["6.0.0-beta.14"],"76.0.3809.74":["6.0.0-beta.15"],"72.0.3626.107":["6.0.0-nightly.20190212"],"72.0.3626.110":["6.0.0-nightly.20190213"],"74.0.3724.8":["6.0.0-nightly.20190311"],"76.0.3809.88":["6.0.0"],"76.0.3809.102":["6.0.1"],"76.0.3809.110":["6.0.2"],"76.0.3809.126":["6.0.3"],"76.0.3809.131":["6.0.4"],"76.0.3809.136":["6.0.5"],"76.0.3809.138":["6.0.6"],"76.0.3809.139":["6.0.7"],"76.0.3809.146":["6.0.8","6.0.9","6.0.10","6.0.11","6.0.12","6.1.0","6.1.1","6.1.2","6.1.3","6.1.4","6.1.5","6.1.6","6.1.7","6.1.8","6.1.9","6.1.10","6.1.11","6.1.12"],"78.0.3866.0":["7.0.0-beta.1","7.0.0-beta.2","7.0.0-beta.3","7.0.0-nightly.20190727","7.0.0-nightly.20190728","7.0.0-nightly.20190729","7.0.0-nightly.20190730","7.0.0-nightly.20190731","8.0.0-nightly.20190801","8.0.0-nightly.20190802"],"78.0.3896.6":["7.0.0-beta.4"],"78.0.3905.1":["7.0.0-beta.5","7.0.0-beta.6","7.0.0-beta.7","7.0.0"],"76.0.3784.0":["7.0.0-nightly.20190521"],"76.0.3806.0":["7.0.0-nightly.20190529","7.0.0-nightly.20190530","7.0.0-nightly.20190531","7.0.0-nightly.20190602","7.0.0-nightly.20190603"],"77.0.3814.0":["7.0.0-nightly.20190604"],"77.0.3815.0":["7.0.0-nightly.20190605","7.0.0-nightly.20190606","7.0.0-nightly.20190607","7.0.0-nightly.20190608","7.0.0-nightly.20190609","7.0.0-nightly.20190611","7.0.0-nightly.20190612","7.0.0-nightly.20190613","7.0.0-nightly.20190615","7.0.0-nightly.20190616","7.0.0-nightly.20190618","7.0.0-nightly.20190619","7.0.0-nightly.20190622","7.0.0-nightly.20190623","7.0.0-nightly.20190624","7.0.0-nightly.20190627","7.0.0-nightly.20190629","7.0.0-nightly.20190630","7.0.0-nightly.20190701","7.0.0-nightly.20190702"],"77.0.3843.0":["7.0.0-nightly.20190704","7.0.0-nightly.20190705"],"77.0.3848.0":["7.0.0-nightly.20190719","7.0.0-nightly.20190720","7.0.0-nightly.20190721"],"77.0.3864.0":["7.0.0-nightly.20190726"],"78.0.3904.92":["7.0.1"],"78.0.3904.94":["7.1.0"],"78.0.3904.99":["7.1.1"],"78.0.3904.113":["7.1.2"],"78.0.3904.126":["7.1.3"],"78.0.3904.130":["7.1.4","7.1.5","7.1.6","7.1.7","7.1.8","7.1.9","7.1.10","7.1.11","7.1.12","7.1.13","7.1.14","7.2.0","7.2.1","7.2.2","7.2.3","7.2.4","7.3.0","7.3.1","7.3.2","7.3.3"],"79.0.3931.0":["8.0.0-beta.1","8.0.0-beta.2","8.0.0-nightly.20191019","8.0.0-nightly.20191020","8.0.0-nightly.20191021","8.0.0-nightly.20191023"],"80.0.3955.0":["8.0.0-beta.3","8.0.0-beta.4"],"80.0.3987.14":["8.0.0-beta.5"],"80.0.3987.51":["8.0.0-beta.6"],"80.0.3987.59":["8.0.0-beta.7"],"80.0.3987.75":["8.0.0-beta.8","8.0.0-beta.9"],"78.0.3871.0":["8.0.0-nightly.20190803","8.0.0-nightly.20190806","8.0.0-nightly.20190807","8.0.0-nightly.20190808","8.0.0-nightly.20190809","8.0.0-nightly.20190810","8.0.0-nightly.20190811","8.0.0-nightly.20190812","8.0.0-nightly.20190813","8.0.0-nightly.20190814","8.0.0-nightly.20190815"],"78.0.3881.0":["8.0.0-nightly.20190816","8.0.0-nightly.20190817","8.0.0-nightly.20190818","8.0.0-nightly.20190819","8.0.0-nightly.20190820"],"78.0.3892.0":["8.0.0-nightly.20190824","8.0.0-nightly.20190825","8.0.0-nightly.20190827","8.0.0-nightly.20190828","8.0.0-nightly.20190830","8.0.0-nightly.20190901","8.0.0-nightly.20190902","8.0.0-nightly.20190907","8.0.0-nightly.20190909","8.0.0-nightly.20190910","8.0.0-nightly.20190911","8.0.0-nightly.20190912","8.0.0-nightly.20190913","8.0.0-nightly.20190914","8.0.0-nightly.20190915","8.0.0-nightly.20190917"],"79.0.3915.0":["8.0.0-nightly.20190919","8.0.0-nightly.20190920"],"79.0.3919.0":["8.0.0-nightly.20190922","8.0.0-nightly.20190923","8.0.0-nightly.20190924","8.0.0-nightly.20190926","8.0.0-nightly.20190928","8.0.0-nightly.20190929","8.0.0-nightly.20190930","8.0.0-nightly.20191001","8.0.0-nightly.20191004","8.0.0-nightly.20191005","8.0.0-nightly.20191006","8.0.0-nightly.20191009","8.0.0-nightly.20191011","8.0.0-nightly.20191012","8.0.0-nightly.20191017"],"80.0.3952.0":["8.0.0-nightly.20191101","8.0.0-nightly.20191103","8.0.0-nightly.20191105"],"80.0.3987.86":["8.0.0","8.0.1","8.0.2"],"80.0.3987.134":["8.0.3"],"80.0.3987.137":["8.1.0"],"80.0.3987.141":["8.1.1"],"80.0.3987.158":["8.2.0"],"80.0.3987.163":["8.2.1","8.2.2","8.2.3","8.5.3","8.5.4","8.5.5"],"80.0.3987.165":["8.2.4","8.2.5","8.3.0","8.3.1","8.3.2","8.3.3","8.3.4","8.4.0","8.4.1","8.5.0","8.5.1","8.5.2"],"82.0.4048.0":["9.0.0-beta.1","9.0.0-beta.2","9.0.0-beta.3","9.0.0-beta.4","9.0.0-beta.5"],"82.0.4058.2":["9.0.0-beta.6","9.0.0-beta.7","9.0.0-beta.9"],"82.0.4085.10":["9.0.0-beta.10"],"82.0.4085.14":["9.0.0-beta.11","9.0.0-beta.12","9.0.0-beta.13"],"82.0.4085.27":["9.0.0-beta.14"],"83.0.4102.3":["9.0.0-beta.15","9.0.0-beta.16"],"83.0.4103.14":["9.0.0-beta.17"],"83.0.4103.16":["9.0.0-beta.18"],"83.0.4103.24":["9.0.0-beta.19"],"83.0.4103.26":["9.0.0-beta.20","9.0.0-beta.21"],"83.0.4103.34":["9.0.0-beta.22"],"83.0.4103.44":["9.0.0-beta.23"],"83.0.4103.45":["9.0.0-beta.24"],"80.0.3954.0":["9.0.0-nightly.20191121","9.0.0-nightly.20191122","9.0.0-nightly.20191123","9.0.0-nightly.20191124","9.0.0-nightly.20191126","9.0.0-nightly.20191128","9.0.0-nightly.20191129","9.0.0-nightly.20191130","9.0.0-nightly.20191201","9.0.0-nightly.20191202","9.0.0-nightly.20191203","9.0.0-nightly.20191204","9.0.0-nightly.20191205","9.0.0-nightly.20191210"],"81.0.3994.0":["9.0.0-nightly.20191220","9.0.0-nightly.20191221","9.0.0-nightly.20191222","9.0.0-nightly.20191223","9.0.0-nightly.20191224","9.0.0-nightly.20191225","9.0.0-nightly.20191226","9.0.0-nightly.20191228","9.0.0-nightly.20191229","9.0.0-nightly.20191230","9.0.0-nightly.20191231","9.0.0-nightly.20200101","9.0.0-nightly.20200103","9.0.0-nightly.20200104","9.0.0-nightly.20200105","9.0.0-nightly.20200106","9.0.0-nightly.20200108","9.0.0-nightly.20200109","9.0.0-nightly.20200110","9.0.0-nightly.20200111","9.0.0-nightly.20200113","9.0.0-nightly.20200115","9.0.0-nightly.20200116","9.0.0-nightly.20200117"],"81.0.4030.0":["9.0.0-nightly.20200119","9.0.0-nightly.20200121"],"83.0.4103.64":["9.0.0"],"83.0.4103.94":["9.0.1","9.0.2"],"83.0.4103.100":["9.0.3"],"83.0.4103.104":["9.0.4"],"83.0.4103.119":["9.0.5"],"83.0.4103.122":["9.1.0","9.1.1","9.1.2","9.2.0","9.2.1","9.3.0","9.3.1","9.3.2","9.3.3","9.3.4","9.3.5","9.4.0","9.4.1","9.4.2","9.4.3","9.4.4"],"84.0.4129.0":["10.0.0-beta.1","10.0.0-beta.2","10.0.0-nightly.20200501","10.0.0-nightly.20200504","10.0.0-nightly.20200505","10.0.0-nightly.20200506","10.0.0-nightly.20200507","10.0.0-nightly.20200508","10.0.0-nightly.20200511","10.0.0-nightly.20200512","10.0.0-nightly.20200513","10.0.0-nightly.20200514","10.0.0-nightly.20200515","10.0.0-nightly.20200518","10.0.0-nightly.20200519","10.0.0-nightly.20200520","10.0.0-nightly.20200521","11.0.0-nightly.20200525","11.0.0-nightly.20200526"],"85.0.4161.2":["10.0.0-beta.3","10.0.0-beta.4"],"85.0.4181.1":["10.0.0-beta.8","10.0.0-beta.9"],"85.0.4183.19":["10.0.0-beta.10"],"85.0.4183.20":["10.0.0-beta.11"],"85.0.4183.26":["10.0.0-beta.12"],"85.0.4183.39":["10.0.0-beta.13","10.0.0-beta.14","10.0.0-beta.15","10.0.0-beta.17","10.0.0-beta.19","10.0.0-beta.20","10.0.0-beta.21"],"85.0.4183.70":["10.0.0-beta.23"],"85.0.4183.78":["10.0.0-beta.24"],"85.0.4183.80":["10.0.0-beta.25"],"82.0.4050.0":["10.0.0-nightly.20200209","10.0.0-nightly.20200210","10.0.0-nightly.20200211","10.0.0-nightly.20200216","10.0.0-nightly.20200217","10.0.0-nightly.20200218","10.0.0-nightly.20200221","10.0.0-nightly.20200222","10.0.0-nightly.20200223","10.0.0-nightly.20200226","10.0.0-nightly.20200303"],"82.0.4076.0":["10.0.0-nightly.20200304","10.0.0-nightly.20200305","10.0.0-nightly.20200306","10.0.0-nightly.20200309","10.0.0-nightly.20200310"],"82.0.4083.0":["10.0.0-nightly.20200311"],"83.0.4086.0":["10.0.0-nightly.20200316"],"83.0.4087.0":["10.0.0-nightly.20200317","10.0.0-nightly.20200318","10.0.0-nightly.20200320","10.0.0-nightly.20200323","10.0.0-nightly.20200324","10.0.0-nightly.20200325","10.0.0-nightly.20200326","10.0.0-nightly.20200327","10.0.0-nightly.20200330","10.0.0-nightly.20200331","10.0.0-nightly.20200401","10.0.0-nightly.20200402","10.0.0-nightly.20200403","10.0.0-nightly.20200406"],"83.0.4095.0":["10.0.0-nightly.20200408","10.0.0-nightly.20200410","10.0.0-nightly.20200413"],"84.0.4114.0":["10.0.0-nightly.20200414"],"84.0.4115.0":["10.0.0-nightly.20200415","10.0.0-nightly.20200416","10.0.0-nightly.20200417"],"84.0.4121.0":["10.0.0-nightly.20200422","10.0.0-nightly.20200423"],"84.0.4125.0":["10.0.0-nightly.20200427","10.0.0-nightly.20200428","10.0.0-nightly.20200429","10.0.0-nightly.20200430"],"85.0.4183.84":["10.0.0"],"85.0.4183.86":["10.0.1"],"85.0.4183.87":["10.1.0"],"85.0.4183.93":["10.1.1"],"85.0.4183.98":["10.1.2"],"85.0.4183.121":["10.1.3","10.1.4","10.1.5","10.1.6","10.1.7","10.2.0","10.3.0","10.3.1","10.3.2","10.4.0","10.4.1","10.4.2","10.4.3","10.4.4","10.4.5","10.4.6","10.4.7"],"86.0.4234.0":["11.0.0-beta.1","11.0.0-beta.3","11.0.0-beta.4","11.0.0-beta.5","11.0.0-beta.6","11.0.0-beta.7","11.0.0-nightly.20200822","11.0.0-nightly.20200824","11.0.0-nightly.20200825","11.0.0-nightly.20200826","12.0.0-nightly.20200827","12.0.0-nightly.20200831","12.0.0-nightly.20200902","12.0.0-nightly.20200903","12.0.0-nightly.20200907","12.0.0-nightly.20200910","12.0.0-nightly.20200911","12.0.0-nightly.20200914"],"87.0.4251.1":["11.0.0-beta.8","11.0.0-beta.9","11.0.0-beta.11"],"87.0.4280.11":["11.0.0-beta.12","11.0.0-beta.13"],"87.0.4280.27":["11.0.0-beta.16","11.0.0-beta.17","11.0.0-beta.18","11.0.0-beta.19"],"87.0.4280.40":["11.0.0-beta.20"],"87.0.4280.47":["11.0.0-beta.22","11.0.0-beta.23"],"85.0.4156.0":["11.0.0-nightly.20200529"],"85.0.4162.0":["11.0.0-nightly.20200602","11.0.0-nightly.20200603","11.0.0-nightly.20200604","11.0.0-nightly.20200609","11.0.0-nightly.20200610","11.0.0-nightly.20200611","11.0.0-nightly.20200615","11.0.0-nightly.20200616","11.0.0-nightly.20200617","11.0.0-nightly.20200618","11.0.0-nightly.20200619"],"85.0.4179.0":["11.0.0-nightly.20200701","11.0.0-nightly.20200702","11.0.0-nightly.20200703","11.0.0-nightly.20200706","11.0.0-nightly.20200707","11.0.0-nightly.20200708","11.0.0-nightly.20200709"],"86.0.4203.0":["11.0.0-nightly.20200716","11.0.0-nightly.20200717","11.0.0-nightly.20200720","11.0.0-nightly.20200721"],"86.0.4209.0":["11.0.0-nightly.20200723","11.0.0-nightly.20200724","11.0.0-nightly.20200729","11.0.0-nightly.20200730","11.0.0-nightly.20200731","11.0.0-nightly.20200803","11.0.0-nightly.20200804","11.0.0-nightly.20200805","11.0.0-nightly.20200811","11.0.0-nightly.20200812"],"87.0.4280.60":["11.0.0","11.0.1"],"87.0.4280.67":["11.0.2","11.0.3","11.0.4"],"87.0.4280.88":["11.0.5","11.1.0","11.1.1"],"87.0.4280.141":["11.2.0","11.2.1","11.2.2","11.2.3","11.3.0","11.4.0","11.4.1","11.4.2","11.4.3","11.4.4","11.4.5","11.4.6","11.4.7","11.4.8","11.4.9","11.4.10","11.4.11","11.4.12","11.5.0"],"89.0.4328.0":["12.0.0-beta.1","12.0.0-beta.3","12.0.0-beta.4","12.0.0-beta.5","12.0.0-beta.6","12.0.0-beta.7","12.0.0-beta.8","12.0.0-beta.9","12.0.0-beta.10","12.0.0-beta.11","12.0.0-beta.12","12.0.0-beta.14","13.0.0-nightly.20201119","13.0.0-nightly.20201123","13.0.0-nightly.20201124","13.0.0-nightly.20201126","13.0.0-nightly.20201127","13.0.0-nightly.20201130","13.0.0-nightly.20201201","13.0.0-nightly.20201202","13.0.0-nightly.20201203","13.0.0-nightly.20201204","13.0.0-nightly.20201207","13.0.0-nightly.20201208","13.0.0-nightly.20201209","13.0.0-nightly.20201210","13.0.0-nightly.20201211","13.0.0-nightly.20201214"],"89.0.4348.1":["12.0.0-beta.16","12.0.0-beta.18","12.0.0-beta.19","12.0.0-beta.20"],"89.0.4388.2":["12.0.0-beta.21","12.0.0-beta.22","12.0.0-beta.23","12.0.0-beta.24","12.0.0-beta.25","12.0.0-beta.26"],"89.0.4389.23":["12.0.0-beta.27","12.0.0-beta.28","12.0.0-beta.29"],"89.0.4389.58":["12.0.0-beta.30","12.0.0-beta.31"],"87.0.4268.0":["12.0.0-nightly.20201002","12.0.0-nightly.20201007","12.0.0-nightly.20201009","12.0.0-nightly.20201012","12.0.0-nightly.20201013","12.0.0-nightly.20201014","12.0.0-nightly.20201015"],"88.0.4292.0":["12.0.0-nightly.20201023","12.0.0-nightly.20201026"],"88.0.4306.0":["12.0.0-nightly.20201030","12.0.0-nightly.20201102","12.0.0-nightly.20201103","12.0.0-nightly.20201104","12.0.0-nightly.20201105","12.0.0-nightly.20201106","12.0.0-nightly.20201111","12.0.0-nightly.20201112"],"88.0.4324.0":["12.0.0-nightly.20201116"],"89.0.4389.69":["12.0.0"],"89.0.4389.82":["12.0.1"],"89.0.4389.90":["12.0.2"],"89.0.4389.114":["12.0.3","12.0.4"],"89.0.4389.128":["12.0.5","12.0.6","12.0.7","12.0.8","12.0.9","12.0.10","12.0.11","12.0.12","12.0.13","12.0.14","12.0.15","12.0.16","12.0.17","12.0.18","12.1.0","12.1.1","12.1.2","12.2.0","12.2.1","12.2.2","12.2.3"],"90.0.4402.0":["13.0.0-beta.2","13.0.0-beta.3","13.0.0-nightly.20210210","13.0.0-nightly.20210211","13.0.0-nightly.20210212","13.0.0-nightly.20210216","13.0.0-nightly.20210217","13.0.0-nightly.20210218","13.0.0-nightly.20210219","13.0.0-nightly.20210222","13.0.0-nightly.20210225","13.0.0-nightly.20210226","13.0.0-nightly.20210301","13.0.0-nightly.20210302","13.0.0-nightly.20210303","14.0.0-nightly.20210304"],"90.0.4415.0":["13.0.0-beta.4","13.0.0-beta.5","13.0.0-beta.6","13.0.0-beta.7","13.0.0-beta.8","13.0.0-beta.9","13.0.0-beta.10","13.0.0-beta.11","13.0.0-beta.12","13.0.0-beta.13","14.0.0-nightly.20210305","14.0.0-nightly.20210308","14.0.0-nightly.20210309","14.0.0-nightly.20210311","14.0.0-nightly.20210315","14.0.0-nightly.20210316","14.0.0-nightly.20210317","14.0.0-nightly.20210318","14.0.0-nightly.20210319","14.0.0-nightly.20210323","14.0.0-nightly.20210324","14.0.0-nightly.20210325","14.0.0-nightly.20210326","14.0.0-nightly.20210329","14.0.0-nightly.20210330"],"91.0.4448.0":["13.0.0-beta.14","13.0.0-beta.16","13.0.0-beta.17","13.0.0-beta.18","13.0.0-beta.20","14.0.0-nightly.20210331","14.0.0-nightly.20210401","14.0.0-nightly.20210402","14.0.0-nightly.20210406","14.0.0-nightly.20210407","14.0.0-nightly.20210408","14.0.0-nightly.20210409","14.0.0-nightly.20210413"],"91.0.4472.33":["13.0.0-beta.21","13.0.0-beta.22","13.0.0-beta.23"],"91.0.4472.38":["13.0.0-beta.24","13.0.0-beta.25","13.0.0-beta.26","13.0.0-beta.27","13.0.0-beta.28"],"89.0.4349.0":["13.0.0-nightly.20201215","13.0.0-nightly.20201216","13.0.0-nightly.20201221","13.0.0-nightly.20201222"],"89.0.4359.0":["13.0.0-nightly.20201223","13.0.0-nightly.20210104","13.0.0-nightly.20210108","13.0.0-nightly.20210111"],"89.0.4386.0":["13.0.0-nightly.20210113","13.0.0-nightly.20210114","13.0.0-nightly.20210118","13.0.0-nightly.20210122","13.0.0-nightly.20210125"],"89.0.4389.0":["13.0.0-nightly.20210127","13.0.0-nightly.20210128","13.0.0-nightly.20210129","13.0.0-nightly.20210201","13.0.0-nightly.20210202","13.0.0-nightly.20210203","13.0.0-nightly.20210205","13.0.0-nightly.20210208","13.0.0-nightly.20210209"],"91.0.4472.69":["13.0.0","13.0.1"],"91.0.4472.77":["13.1.0","13.1.1","13.1.2"],"91.0.4472.106":["13.1.3","13.1.4"],"91.0.4472.124":["13.1.5","13.1.6","13.1.7"],"91.0.4472.164":["13.1.8","13.1.9","13.2.0","13.2.1","13.2.2","13.2.3","13.3.0","13.4.0","13.5.0","13.5.1","13.5.2","13.6.0","13.6.1","13.6.2","13.6.3","13.6.6","13.6.7","13.6.8","13.6.9"],"92.0.4511.0":["14.0.0-beta.1","14.0.0-beta.2","14.0.0-beta.3","14.0.0-nightly.20210520","14.0.0-nightly.20210523","14.0.0-nightly.20210524","15.0.0-nightly.20210527","15.0.0-nightly.20210528","15.0.0-nightly.20210531","15.0.0-nightly.20210601","15.0.0-nightly.20210602"],"93.0.4536.0":["14.0.0-beta.5","14.0.0-beta.6","14.0.0-beta.7","14.0.0-beta.8","15.0.0-nightly.20210609","15.0.0-nightly.20210610","15.0.0-nightly.20210611","15.0.0-nightly.20210614","15.0.0-nightly.20210615","15.0.0-nightly.20210616"],"93.0.4539.0":["14.0.0-beta.9","14.0.0-beta.10","15.0.0-nightly.20210617","15.0.0-nightly.20210618","15.0.0-nightly.20210621","15.0.0-nightly.20210622"],"93.0.4557.4":["14.0.0-beta.11","14.0.0-beta.12"],"93.0.4566.0":["14.0.0-beta.13","14.0.0-beta.14","14.0.0-beta.15","14.0.0-beta.16","14.0.0-beta.17","15.0.0-alpha.1","15.0.0-alpha.2","15.0.0-nightly.20210706","15.0.0-nightly.20210707","15.0.0-nightly.20210708","15.0.0-nightly.20210709","15.0.0-nightly.20210712","15.0.0-nightly.20210713","15.0.0-nightly.20210714","15.0.0-nightly.20210715","15.0.0-nightly.20210716","15.0.0-nightly.20210719","15.0.0-nightly.20210720","15.0.0-nightly.20210721","16.0.0-nightly.20210722","16.0.0-nightly.20210723","16.0.0-nightly.20210726"],"93.0.4577.15":["14.0.0-beta.18","14.0.0-beta.19","14.0.0-beta.20","14.0.0-beta.21"],"93.0.4577.25":["14.0.0-beta.22","14.0.0-beta.23"],"93.0.4577.51":["14.0.0-beta.24","14.0.0-beta.25"],"92.0.4475.0":["14.0.0-nightly.20210426","14.0.0-nightly.20210427"],"92.0.4488.0":["14.0.0-nightly.20210430","14.0.0-nightly.20210503"],"92.0.4496.0":["14.0.0-nightly.20210505"],"92.0.4498.0":["14.0.0-nightly.20210506"],"92.0.4499.0":["14.0.0-nightly.20210507","14.0.0-nightly.20210510","14.0.0-nightly.20210511","14.0.0-nightly.20210512","14.0.0-nightly.20210513"],"92.0.4505.0":["14.0.0-nightly.20210514","14.0.0-nightly.20210517","14.0.0-nightly.20210518","14.0.0-nightly.20210519"],"93.0.4577.58":["14.0.0"],"93.0.4577.63":["14.0.1"],"93.0.4577.82":["14.0.2","14.1.0","14.1.1","14.2.0","14.2.1","14.2.2","14.2.3","14.2.4","14.2.5","14.2.6","14.2.7","14.2.8","14.2.9"],"94.0.4584.0":["15.0.0-alpha.3","15.0.0-alpha.4","15.0.0-alpha.5","15.0.0-alpha.6","16.0.0-nightly.20210727","16.0.0-nightly.20210728","16.0.0-nightly.20210729","16.0.0-nightly.20210730","16.0.0-nightly.20210802","16.0.0-nightly.20210803","16.0.0-nightly.20210804","16.0.0-nightly.20210805","16.0.0-nightly.20210806","16.0.0-nightly.20210809","16.0.0-nightly.20210810","16.0.0-nightly.20210811"],"94.0.4590.2":["15.0.0-alpha.7","15.0.0-alpha.8","15.0.0-alpha.9","16.0.0-nightly.20210812","16.0.0-nightly.20210813","16.0.0-nightly.20210816","16.0.0-nightly.20210817","16.0.0-nightly.20210818","16.0.0-nightly.20210819","16.0.0-nightly.20210820","16.0.0-nightly.20210823"],"94.0.4606.12":["15.0.0-alpha.10"],"94.0.4606.20":["15.0.0-beta.1","15.0.0-beta.2"],"94.0.4606.31":["15.0.0-beta.3","15.0.0-beta.4","15.0.0-beta.5","15.0.0-beta.6","15.0.0-beta.7"],"93.0.4530.0":["15.0.0-nightly.20210603","15.0.0-nightly.20210604"],"93.0.4535.0":["15.0.0-nightly.20210608"],"93.0.4550.0":["15.0.0-nightly.20210623","15.0.0-nightly.20210624"],"93.0.4552.0":["15.0.0-nightly.20210625","15.0.0-nightly.20210628","15.0.0-nightly.20210629"],"93.0.4558.0":["15.0.0-nightly.20210630","15.0.0-nightly.20210701","15.0.0-nightly.20210702","15.0.0-nightly.20210705"],"94.0.4606.51":["15.0.0"],"94.0.4606.61":["15.1.0","15.1.1"],"94.0.4606.71":["15.1.2"],"94.0.4606.81":["15.2.0","15.3.0","15.3.1","15.3.2","15.3.3","15.3.4","15.3.5","15.3.6","15.3.7","15.4.0","15.4.1","15.4.2","15.5.0","15.5.1","15.5.2","15.5.3","15.5.4","15.5.5","15.5.6","15.5.7"],"95.0.4629.0":["16.0.0-alpha.1","16.0.0-alpha.2","16.0.0-alpha.3","16.0.0-alpha.4","16.0.0-alpha.5","16.0.0-alpha.6","16.0.0-alpha.7","16.0.0-nightly.20210902","16.0.0-nightly.20210903","16.0.0-nightly.20210906","16.0.0-nightly.20210907","16.0.0-nightly.20210908","16.0.0-nightly.20210909","16.0.0-nightly.20210910","16.0.0-nightly.20210913","16.0.0-nightly.20210914","16.0.0-nightly.20210915","16.0.0-nightly.20210916","16.0.0-nightly.20210917","16.0.0-nightly.20210920","16.0.0-nightly.20210921","16.0.0-nightly.20210922","17.0.0-nightly.20210923","17.0.0-nightly.20210924","17.0.0-nightly.20210927","17.0.0-nightly.20210928","17.0.0-nightly.20210929","17.0.0-nightly.20210930","17.0.0-nightly.20211001","17.0.0-nightly.20211004","17.0.0-nightly.20211005"],"96.0.4647.0":["16.0.0-alpha.8","16.0.0-alpha.9","16.0.0-beta.1","16.0.0-beta.2","16.0.0-beta.3","17.0.0-nightly.20211006","17.0.0-nightly.20211007","17.0.0-nightly.20211008","17.0.0-nightly.20211011","17.0.0-nightly.20211012","17.0.0-nightly.20211013","17.0.0-nightly.20211014","17.0.0-nightly.20211015","17.0.0-nightly.20211018","17.0.0-nightly.20211019","17.0.0-nightly.20211020","17.0.0-nightly.20211021"],"96.0.4664.18":["16.0.0-beta.4","16.0.0-beta.5"],"96.0.4664.27":["16.0.0-beta.6","16.0.0-beta.7"],"96.0.4664.35":["16.0.0-beta.8","16.0.0-beta.9"],"95.0.4612.5":["16.0.0-nightly.20210824","16.0.0-nightly.20210825","16.0.0-nightly.20210826","16.0.0-nightly.20210827","16.0.0-nightly.20210830","16.0.0-nightly.20210831","16.0.0-nightly.20210901"],"96.0.4664.45":["16.0.0","16.0.1"],"96.0.4664.55":["16.0.2","16.0.3","16.0.4","16.0.5"],"96.0.4664.110":["16.0.6","16.0.7","16.0.8"],"96.0.4664.174":["16.0.9","16.0.10","16.1.0","16.1.1","16.2.0","16.2.1","16.2.2","16.2.3","16.2.4","16.2.5","16.2.6","16.2.7","16.2.8"],"96.0.4664.4":["17.0.0-alpha.1","17.0.0-alpha.2","17.0.0-alpha.3","17.0.0-nightly.20211022","17.0.0-nightly.20211025","17.0.0-nightly.20211026","17.0.0-nightly.20211027","17.0.0-nightly.20211028","17.0.0-nightly.20211029","17.0.0-nightly.20211101","17.0.0-nightly.20211102","17.0.0-nightly.20211103","17.0.0-nightly.20211104","17.0.0-nightly.20211105","17.0.0-nightly.20211108","17.0.0-nightly.20211109","17.0.0-nightly.20211110","17.0.0-nightly.20211111","17.0.0-nightly.20211112","17.0.0-nightly.20211115","17.0.0-nightly.20211116","17.0.0-nightly.20211117","18.0.0-nightly.20211118","18.0.0-nightly.20211119","18.0.0-nightly.20211122","18.0.0-nightly.20211123"],"98.0.4706.0":["17.0.0-alpha.4","17.0.0-alpha.5","17.0.0-alpha.6","17.0.0-beta.1","17.0.0-beta.2","18.0.0-nightly.20211124","18.0.0-nightly.20211125","18.0.0-nightly.20211126","18.0.0-nightly.20211129","18.0.0-nightly.20211130","18.0.0-nightly.20211201","18.0.0-nightly.20211202","18.0.0-nightly.20211203","18.0.0-nightly.20211206","18.0.0-nightly.20211207","18.0.0-nightly.20211208","18.0.0-nightly.20211209","18.0.0-nightly.20211210","18.0.0-nightly.20211213","18.0.0-nightly.20211214","18.0.0-nightly.20211215","18.0.0-nightly.20211216","18.0.0-nightly.20211217","18.0.0-nightly.20211220","18.0.0-nightly.20211221","18.0.0-nightly.20211222","18.0.0-nightly.20211223","18.0.0-nightly.20211228","18.0.0-nightly.20211229","18.0.0-nightly.20211231","18.0.0-nightly.20220103","18.0.0-nightly.20220104","18.0.0-nightly.20220105","18.0.0-nightly.20220106","18.0.0-nightly.20220107","18.0.0-nightly.20220110"],"98.0.4758.9":["17.0.0-beta.3"],"98.0.4758.11":["17.0.0-beta.4","17.0.0-beta.5","17.0.0-beta.6","17.0.0-beta.7","17.0.0-beta.8","17.0.0-beta.9"],"98.0.4758.74":["17.0.0"],"98.0.4758.82":["17.0.1"],"98.0.4758.102":["17.1.0"],"98.0.4758.109":["17.1.1","17.1.2","17.2.0"],"98.0.4758.141":["17.3.0","17.3.1","17.4.0","17.4.1","17.4.2","17.4.3","17.4.4","17.4.5","17.4.6","17.4.7","17.4.8","17.4.9","17.4.10","17.4.11"],"99.0.4767.0":["18.0.0-alpha.1","18.0.0-alpha.2","18.0.0-alpha.3","18.0.0-alpha.4","18.0.0-alpha.5","18.0.0-nightly.20220111","18.0.0-nightly.20220112","18.0.0-nightly.20220113","18.0.0-nightly.20220114","18.0.0-nightly.20220117","18.0.0-nightly.20220118","18.0.0-nightly.20220119","18.0.0-nightly.20220121","18.0.0-nightly.20220124","18.0.0-nightly.20220125","18.0.0-nightly.20220127","18.0.0-nightly.20220128","18.0.0-nightly.20220131","18.0.0-nightly.20220201","19.0.0-nightly.20220202","19.0.0-nightly.20220203","19.0.0-nightly.20220204","19.0.0-nightly.20220207","19.0.0-nightly.20220208","19.0.0-nightly.20220209"],"100.0.4894.0":["18.0.0-beta.1","18.0.0-beta.2","18.0.0-beta.3","18.0.0-beta.4","18.0.0-beta.5","18.0.0-beta.6","19.0.0-nightly.20220308","19.0.0-nightly.20220309","19.0.0-nightly.20220310","19.0.0-nightly.20220311","19.0.0-nightly.20220314","19.0.0-nightly.20220315","19.0.0-nightly.20220316","19.0.0-nightly.20220317","19.0.0-nightly.20220318","19.0.0-nightly.20220321","19.0.0-nightly.20220322","19.0.0-nightly.20220323","19.0.0-nightly.20220324"],"100.0.4896.56":["18.0.0"],"100.0.4896.60":["18.0.1","18.0.2"],"100.0.4896.75":["18.0.3","18.0.4"],"100.0.4896.127":["18.1.0"],"100.0.4896.143":["18.2.0","18.2.1","18.2.2","18.2.3"],"100.0.4896.160":["18.2.4","18.3.0","18.3.1","18.3.2","18.3.3","18.3.4","18.3.5","18.3.6","18.3.7","18.3.8","18.3.9","18.3.11","18.3.12","18.3.13","18.3.14","18.3.15"],"102.0.4962.3":["19.0.0-alpha.1","19.0.0-nightly.20220328","19.0.0-nightly.20220329","20.0.0-nightly.20220330"],"102.0.4971.0":["19.0.0-alpha.2","19.0.0-alpha.3","20.0.0-nightly.20220411"],"102.0.4989.0":["19.0.0-alpha.4","19.0.0-alpha.5","20.0.0-nightly.20220414","20.0.0-nightly.20220415","20.0.0-nightly.20220418","20.0.0-nightly.20220419","20.0.0-nightly.20220420","20.0.0-nightly.20220421"],"102.0.4999.0":["19.0.0-beta.1","19.0.0-beta.2","19.0.0-beta.3","20.0.0-nightly.20220425","20.0.0-nightly.20220426","20.0.0-nightly.20220427","20.0.0-nightly.20220428","20.0.0-nightly.20220429","20.0.0-nightly.20220502","20.0.0-nightly.20220503","20.0.0-nightly.20220504","20.0.0-nightly.20220505","20.0.0-nightly.20220506","20.0.0-nightly.20220509","20.0.0-nightly.20220511","20.0.0-nightly.20220512","20.0.0-nightly.20220513","20.0.0-nightly.20220516","20.0.0-nightly.20220517"],"102.0.5005.27":["19.0.0-beta.4"],"102.0.5005.40":["19.0.0-beta.5","19.0.0-beta.6","19.0.0-beta.7"],"102.0.5005.49":["19.0.0-beta.8"],"102.0.4961.0":["19.0.0-nightly.20220325"],"102.0.5005.61":["19.0.0","19.0.1"],"102.0.5005.63":["19.0.2","19.0.3","19.0.4"],"102.0.5005.115":["19.0.5","19.0.6"],"102.0.5005.134":["19.0.7"],"102.0.5005.148":["19.0.8"],"102.0.5005.167":["19.0.9","19.0.10","19.0.11","19.0.12","19.0.13","19.0.14","19.0.15","19.0.16","19.0.17","19.1.0","19.1.1","19.1.2","19.1.3","19.1.4","19.1.5","19.1.6","19.1.7","19.1.8","19.1.9"],"103.0.5044.0":["20.0.0-alpha.1","20.0.0-nightly.20220518","20.0.0-nightly.20220519","20.0.0-nightly.20220520","20.0.0-nightly.20220523","20.0.0-nightly.20220524","21.0.0-nightly.20220526","21.0.0-nightly.20220527","21.0.0-nightly.20220530","21.0.0-nightly.20220531"],"104.0.5073.0":["20.0.0-alpha.2","20.0.0-alpha.3","20.0.0-alpha.4","20.0.0-alpha.5","20.0.0-alpha.6","20.0.0-alpha.7","20.0.0-beta.1","20.0.0-beta.2","20.0.0-beta.3","20.0.0-beta.4","20.0.0-beta.5","20.0.0-beta.6","20.0.0-beta.7","20.0.0-beta.8","21.0.0-nightly.20220602","21.0.0-nightly.20220603","21.0.0-nightly.20220606","21.0.0-nightly.20220607","21.0.0-nightly.20220608","21.0.0-nightly.20220609","21.0.0-nightly.20220610","21.0.0-nightly.20220613","21.0.0-nightly.20220614","21.0.0-nightly.20220615","21.0.0-nightly.20220616","21.0.0-nightly.20220617","21.0.0-nightly.20220620","21.0.0-nightly.20220621","21.0.0-nightly.20220622","21.0.0-nightly.20220623","21.0.0-nightly.20220624","21.0.0-nightly.20220627"],"104.0.5112.39":["20.0.0-beta.9"],"104.0.5112.48":["20.0.0-beta.10","20.0.0-beta.11","20.0.0-beta.12"],"104.0.5112.57":["20.0.0-beta.13"],"104.0.5112.65":["20.0.0"],"104.0.5112.81":["20.0.1","20.0.2","20.0.3"],"104.0.5112.102":["20.1.0","20.1.1"],"104.0.5112.114":["20.1.2","20.1.3","20.1.4"],"104.0.5112.124":["20.2.0","20.3.0","20.3.1","20.3.2","20.3.3","20.3.4","20.3.5","20.3.6","20.3.7","20.3.8","20.3.9","20.3.10","20.3.11","20.3.12"],"105.0.5187.0":["21.0.0-alpha.1","21.0.0-alpha.2","21.0.0-alpha.3","21.0.0-alpha.4","21.0.0-alpha.5","21.0.0-nightly.20220720","21.0.0-nightly.20220721","21.0.0-nightly.20220722","21.0.0-nightly.20220725","21.0.0-nightly.20220726","21.0.0-nightly.20220727","21.0.0-nightly.20220728","21.0.0-nightly.20220801","21.0.0-nightly.20220802","22.0.0-nightly.20220808","22.0.0-nightly.20220809","22.0.0-nightly.20220810","22.0.0-nightly.20220811","22.0.0-nightly.20220812","22.0.0-nightly.20220815","22.0.0-nightly.20220816","22.0.0-nightly.20220817"],"106.0.5216.0":["21.0.0-alpha.6","21.0.0-beta.1","21.0.0-beta.2","21.0.0-beta.3","21.0.0-beta.4","21.0.0-beta.5","22.0.0-nightly.20220822","22.0.0-nightly.20220823","22.0.0-nightly.20220824","22.0.0-nightly.20220825","22.0.0-nightly.20220829","22.0.0-nightly.20220830","22.0.0-nightly.20220831","22.0.0-nightly.20220901","22.0.0-nightly.20220902","22.0.0-nightly.20220905"],"106.0.5249.40":["21.0.0-beta.6","21.0.0-beta.7","21.0.0-beta.8"],"105.0.5129.0":["21.0.0-nightly.20220628","21.0.0-nightly.20220629","21.0.0-nightly.20220630","21.0.0-nightly.20220701","21.0.0-nightly.20220704","21.0.0-nightly.20220705","21.0.0-nightly.20220706","21.0.0-nightly.20220707","21.0.0-nightly.20220708","21.0.0-nightly.20220711","21.0.0-nightly.20220712","21.0.0-nightly.20220713"],"105.0.5173.0":["21.0.0-nightly.20220715","21.0.0-nightly.20220718","21.0.0-nightly.20220719"],"106.0.5249.51":["21.0.0"],"106.0.5249.61":["21.0.1"],"106.0.5249.91":["21.1.0"],"106.0.5249.103":["21.1.1"],"106.0.5249.119":["21.2.0"],"106.0.5249.165":["21.2.1"],"106.0.5249.168":["21.2.2","21.2.3"],"106.0.5249.181":["21.3.0","21.3.1"],"106.0.5249.199":["21.3.3","21.3.4","21.3.5","21.4.0","21.4.1","21.4.2","21.4.3","21.4.4"],"107.0.5286.0":["22.0.0-alpha.1","22.0.0-nightly.20220909","22.0.0-nightly.20220912","22.0.0-nightly.20220913","22.0.0-nightly.20220914","22.0.0-nightly.20220915","22.0.0-nightly.20220916","22.0.0-nightly.20220919","22.0.0-nightly.20220920","22.0.0-nightly.20220921","22.0.0-nightly.20220922","22.0.0-nightly.20220923","22.0.0-nightly.20220926","22.0.0-nightly.20220927","22.0.0-nightly.20220928","23.0.0-nightly.20220929","23.0.0-nightly.20220930","23.0.0-nightly.20221003"],"108.0.5329.0":["22.0.0-alpha.3","22.0.0-alpha.4","22.0.0-alpha.5","22.0.0-alpha.6","23.0.0-nightly.20221004","23.0.0-nightly.20221005","23.0.0-nightly.20221006","23.0.0-nightly.20221007","23.0.0-nightly.20221010","23.0.0-nightly.20221011","23.0.0-nightly.20221012","23.0.0-nightly.20221013","23.0.0-nightly.20221014","23.0.0-nightly.20221017"],"108.0.5355.0":["22.0.0-alpha.7","23.0.0-nightly.20221018","23.0.0-nightly.20221019","23.0.0-nightly.20221020","23.0.0-nightly.20221021","23.0.0-nightly.20221024","23.0.0-nightly.20221026"],"108.0.5359.10":["22.0.0-alpha.8","22.0.0-beta.1","22.0.0-beta.2","22.0.0-beta.3"],"108.0.5359.29":["22.0.0-beta.4"],"108.0.5359.40":["22.0.0-beta.5","22.0.0-beta.6"],"108.0.5359.48":["22.0.0-beta.7","22.0.0-beta.8"],"107.0.5274.0":["22.0.0-nightly.20220908"],"108.0.5359.62":["22.0.0"],"108.0.5359.125":["22.0.1"],"108.0.5359.179":["22.0.2","22.0.3","22.1.0"],"108.0.5359.215":["22.2.0","22.2.1","22.3.0","22.3.1","22.3.2","22.3.3","22.3.4","22.3.5","22.3.6","22.3.7","22.3.8","22.3.9","22.3.10","22.3.11"],"110.0.5415.0":["23.0.0-alpha.1","23.0.0-nightly.20221118","23.0.0-nightly.20221121","23.0.0-nightly.20221122","23.0.0-nightly.20221123","23.0.0-nightly.20221124","23.0.0-nightly.20221125","23.0.0-nightly.20221128","23.0.0-nightly.20221129","23.0.0-nightly.20221130","24.0.0-nightly.20221201","24.0.0-nightly.20221202","24.0.0-nightly.20221205"],"110.0.5451.0":["23.0.0-alpha.2","23.0.0-alpha.3","24.0.0-nightly.20221206","24.0.0-nightly.20221207","24.0.0-nightly.20221208","24.0.0-nightly.20221213","24.0.0-nightly.20221214","24.0.0-nightly.20221215","24.0.0-nightly.20221216"],"110.0.5478.5":["23.0.0-beta.1","23.0.0-beta.2","23.0.0-beta.3"],"110.0.5481.30":["23.0.0-beta.4"],"110.0.5481.38":["23.0.0-beta.5"],"110.0.5481.52":["23.0.0-beta.6","23.0.0-beta.8"],"109.0.5382.0":["23.0.0-nightly.20221027","23.0.0-nightly.20221028","23.0.0-nightly.20221031","23.0.0-nightly.20221101","23.0.0-nightly.20221102","23.0.0-nightly.20221103","23.0.0-nightly.20221104","23.0.0-nightly.20221107","23.0.0-nightly.20221108","23.0.0-nightly.20221109","23.0.0-nightly.20221110","23.0.0-nightly.20221111","23.0.0-nightly.20221114","23.0.0-nightly.20221115","23.0.0-nightly.20221116","23.0.0-nightly.20221117"],"110.0.5481.77":["23.0.0"],"110.0.5481.100":["23.1.0"],"110.0.5481.104":["23.1.1"],"110.0.5481.177":["23.1.2"],"110.0.5481.179":["23.1.3"],"110.0.5481.192":["23.1.4","23.2.0"],"110.0.5481.208":["23.2.1","23.2.2","23.2.3","23.2.4","23.3.0","23.3.1","23.3.2","23.3.3","23.3.4"],"111.0.5560.0":["24.0.0-alpha.1","24.0.0-alpha.2","24.0.0-alpha.3","24.0.0-alpha.4","24.0.0-alpha.5","24.0.0-alpha.6","24.0.0-alpha.7","24.0.0-nightly.20230203","24.0.0-nightly.20230206","24.0.0-nightly.20230207","24.0.0-nightly.20230208","24.0.0-nightly.20230209","25.0.0-nightly.20230210","25.0.0-nightly.20230214","25.0.0-nightly.20230215","25.0.0-nightly.20230216","25.0.0-nightly.20230217","25.0.0-nightly.20230220","25.0.0-nightly.20230221","25.0.0-nightly.20230222","25.0.0-nightly.20230223","25.0.0-nightly.20230224","25.0.0-nightly.20230227","25.0.0-nightly.20230228","25.0.0-nightly.20230301","25.0.0-nightly.20230302","25.0.0-nightly.20230303","25.0.0-nightly.20230306","25.0.0-nightly.20230307","25.0.0-nightly.20230308","25.0.0-nightly.20230309","25.0.0-nightly.20230310"],"111.0.5563.50":["24.0.0-beta.1","24.0.0-beta.2"],"112.0.5615.20":["24.0.0-beta.3","24.0.0-beta.4"],"112.0.5615.29":["24.0.0-beta.5"],"112.0.5615.39":["24.0.0-beta.6","24.0.0-beta.7"],"111.0.5518.0":["24.0.0-nightly.20230109","24.0.0-nightly.20230110","24.0.0-nightly.20230111","24.0.0-nightly.20230112","24.0.0-nightly.20230113","24.0.0-nightly.20230116","24.0.0-nightly.20230117","24.0.0-nightly.20230118","24.0.0-nightly.20230119","24.0.0-nightly.20230120","24.0.0-nightly.20230123","24.0.0-nightly.20230124","24.0.0-nightly.20230125","24.0.0-nightly.20230126","24.0.0-nightly.20230127","24.0.0-nightly.20230131","24.0.0-nightly.20230201","24.0.0-nightly.20230202"],"112.0.5615.49":["24.0.0"],"112.0.5615.50":["24.1.0","24.1.1"],"112.0.5615.87":["24.1.2"],"112.0.5615.165":["24.1.3","24.2.0","24.3.0"],"112.0.5615.183":["24.3.1"],"112.0.5615.204":["24.4.0","24.4.1"],"114.0.5694.0":["25.0.0-alpha.1","25.0.0-alpha.2","25.0.0-nightly.20230405","26.0.0-nightly.20230406","26.0.0-nightly.20230407","26.0.0-nightly.20230410","26.0.0-nightly.20230411"],"114.0.5710.0":["25.0.0-alpha.3","25.0.0-alpha.4","26.0.0-nightly.20230413","26.0.0-nightly.20230414","26.0.0-nightly.20230417"],"114.0.5719.0":["25.0.0-alpha.5","25.0.0-alpha.6","25.0.0-beta.1","25.0.0-beta.2","25.0.0-beta.3","26.0.0-nightly.20230421","26.0.0-nightly.20230424","26.0.0-nightly.20230425","26.0.0-nightly.20230426","26.0.0-nightly.20230427","26.0.0-nightly.20230428","26.0.0-nightly.20230501","26.0.0-nightly.20230502","26.0.0-nightly.20230503","26.0.0-nightly.20230504","26.0.0-nightly.20230505","26.0.0-nightly.20230508","26.0.0-nightly.20230509","26.0.0-nightly.20230510"],"114.0.5735.16":["25.0.0-beta.4","25.0.0-beta.5","25.0.0-beta.6","25.0.0-beta.7"],"114.0.5735.35":["25.0.0-beta.8"],"114.0.5735.45":["25.0.0-beta.9","25.0.0"],"113.0.5636.0":["25.0.0-nightly.20230314"],"113.0.5651.0":["25.0.0-nightly.20230315"],"113.0.5653.0":["25.0.0-nightly.20230317"],"113.0.5660.0":["25.0.0-nightly.20230320"],"113.0.5664.0":["25.0.0-nightly.20230321"],"113.0.5666.0":["25.0.0-nightly.20230322"],"113.0.5668.0":["25.0.0-nightly.20230323"],"113.0.5670.0":["25.0.0-nightly.20230324","25.0.0-nightly.20230327","25.0.0-nightly.20230328","25.0.0-nightly.20230329","25.0.0-nightly.20230330"],"114.0.5684.0":["25.0.0-nightly.20230331","25.0.0-nightly.20230403"],"114.0.5692.0":["25.0.0-nightly.20230404"],"114.0.5708.0":["26.0.0-nightly.20230412"],"114.0.5715.0":["26.0.0-nightly.20230418"],"115.0.5760.0":["26.0.0-nightly.20230511","26.0.0-nightly.20230512","26.0.0-nightly.20230515","26.0.0-nightly.20230516","26.0.0-nightly.20230517","26.0.0-nightly.20230518","26.0.0-nightly.20230519","26.0.0-nightly.20230522","26.0.0-nightly.20230523"],"115.0.5786.0":["26.0.0-nightly.20230524"],"115.0.5790.0":["26.0.0-nightly.20230525"],"116.0.5791.0":["26.0.0-nightly.20230526","26.0.0-nightly.20230529"]}
\ No newline at end of file
diff --git a/node_modules/electron-to-chromium/full-versions.js b/node_modules/electron-to-chromium/full-versions.js
new file mode 100644
index 0000000..453e89d
--- /dev/null
+++ b/node_modules/electron-to-chromium/full-versions.js
@@ -0,0 +1,1895 @@
+module.exports = {
+ "0.20.0": "39.0.2171.65",
+ "0.20.1": "39.0.2171.65",
+ "0.20.2": "39.0.2171.65",
+ "0.20.3": "39.0.2171.65",
+ "0.20.4": "39.0.2171.65",
+ "0.20.5": "39.0.2171.65",
+ "0.20.6": "39.0.2171.65",
+ "0.20.7": "39.0.2171.65",
+ "0.20.8": "39.0.2171.65",
+ "0.21.0": "40.0.2214.91",
+ "0.21.1": "40.0.2214.91",
+ "0.21.2": "40.0.2214.91",
+ "0.21.3": "41.0.2272.76",
+ "0.22.1": "41.0.2272.76",
+ "0.22.2": "41.0.2272.76",
+ "0.22.3": "41.0.2272.76",
+ "0.23.0": "41.0.2272.76",
+ "0.24.0": "41.0.2272.76",
+ "0.25.0": "42.0.2311.107",
+ "0.25.1": "42.0.2311.107",
+ "0.25.2": "42.0.2311.107",
+ "0.25.3": "42.0.2311.107",
+ "0.26.0": "42.0.2311.107",
+ "0.26.1": "42.0.2311.107",
+ "0.27.0": "42.0.2311.107",
+ "0.27.1": "42.0.2311.107",
+ "0.27.2": "43.0.2357.65",
+ "0.27.3": "43.0.2357.65",
+ "0.28.0": "43.0.2357.65",
+ "0.28.1": "43.0.2357.65",
+ "0.28.2": "43.0.2357.65",
+ "0.28.3": "43.0.2357.65",
+ "0.29.1": "43.0.2357.65",
+ "0.29.2": "43.0.2357.65",
+ "0.30.4": "44.0.2403.125",
+ "0.31.0": "44.0.2403.125",
+ "0.31.2": "45.0.2454.85",
+ "0.32.2": "45.0.2454.85",
+ "0.32.3": "45.0.2454.85",
+ "0.33.0": "45.0.2454.85",
+ "0.33.1": "45.0.2454.85",
+ "0.33.2": "45.0.2454.85",
+ "0.33.3": "45.0.2454.85",
+ "0.33.4": "45.0.2454.85",
+ "0.33.6": "45.0.2454.85",
+ "0.33.7": "45.0.2454.85",
+ "0.33.8": "45.0.2454.85",
+ "0.33.9": "45.0.2454.85",
+ "0.34.0": "45.0.2454.85",
+ "0.34.1": "45.0.2454.85",
+ "0.34.2": "45.0.2454.85",
+ "0.34.3": "45.0.2454.85",
+ "0.34.4": "45.0.2454.85",
+ "0.35.1": "45.0.2454.85",
+ "0.35.2": "45.0.2454.85",
+ "0.35.3": "45.0.2454.85",
+ "0.35.4": "45.0.2454.85",
+ "0.35.5": "45.0.2454.85",
+ "0.36.0": "47.0.2526.73",
+ "0.36.2": "47.0.2526.73",
+ "0.36.3": "47.0.2526.73",
+ "0.36.4": "47.0.2526.73",
+ "0.36.5": "47.0.2526.110",
+ "0.36.6": "47.0.2526.110",
+ "0.36.7": "47.0.2526.110",
+ "0.36.8": "47.0.2526.110",
+ "0.36.9": "47.0.2526.110",
+ "0.36.10": "47.0.2526.110",
+ "0.36.11": "47.0.2526.110",
+ "0.36.12": "47.0.2526.110",
+ "0.37.0": "49.0.2623.75",
+ "0.37.1": "49.0.2623.75",
+ "0.37.3": "49.0.2623.75",
+ "0.37.4": "49.0.2623.75",
+ "0.37.5": "49.0.2623.75",
+ "0.37.6": "49.0.2623.75",
+ "0.37.7": "49.0.2623.75",
+ "0.37.8": "49.0.2623.75",
+ "1.0.0": "49.0.2623.75",
+ "1.0.1": "49.0.2623.75",
+ "1.0.2": "49.0.2623.75",
+ "1.1.0": "50.0.2661.102",
+ "1.1.1": "50.0.2661.102",
+ "1.1.2": "50.0.2661.102",
+ "1.1.3": "50.0.2661.102",
+ "1.2.0": "51.0.2704.63",
+ "1.2.1": "51.0.2704.63",
+ "1.2.2": "51.0.2704.84",
+ "1.2.3": "51.0.2704.84",
+ "1.2.4": "51.0.2704.103",
+ "1.2.5": "51.0.2704.103",
+ "1.2.6": "51.0.2704.106",
+ "1.2.7": "51.0.2704.106",
+ "1.2.8": "51.0.2704.106",
+ "1.3.0": "52.0.2743.82",
+ "1.3.1": "52.0.2743.82",
+ "1.3.2": "52.0.2743.82",
+ "1.3.3": "52.0.2743.82",
+ "1.3.4": "52.0.2743.82",
+ "1.3.5": "52.0.2743.82",
+ "1.3.6": "52.0.2743.82",
+ "1.3.7": "52.0.2743.82",
+ "1.3.9": "52.0.2743.82",
+ "1.3.10": "52.0.2743.82",
+ "1.3.13": "52.0.2743.82",
+ "1.3.14": "52.0.2743.82",
+ "1.3.15": "52.0.2743.82",
+ "1.4.0": "53.0.2785.113",
+ "1.4.1": "53.0.2785.113",
+ "1.4.2": "53.0.2785.113",
+ "1.4.3": "53.0.2785.113",
+ "1.4.4": "53.0.2785.113",
+ "1.4.5": "53.0.2785.113",
+ "1.4.6": "53.0.2785.143",
+ "1.4.7": "53.0.2785.143",
+ "1.4.8": "53.0.2785.143",
+ "1.4.10": "53.0.2785.143",
+ "1.4.11": "53.0.2785.143",
+ "1.4.12": "54.0.2840.51",
+ "1.4.13": "53.0.2785.143",
+ "1.4.14": "53.0.2785.143",
+ "1.4.15": "53.0.2785.143",
+ "1.4.16": "53.0.2785.143",
+ "1.5.0": "54.0.2840.101",
+ "1.5.1": "54.0.2840.101",
+ "1.6.0": "56.0.2924.87",
+ "1.6.1": "56.0.2924.87",
+ "1.6.2": "56.0.2924.87",
+ "1.6.3": "56.0.2924.87",
+ "1.6.4": "56.0.2924.87",
+ "1.6.5": "56.0.2924.87",
+ "1.6.6": "56.0.2924.87",
+ "1.6.7": "56.0.2924.87",
+ "1.6.8": "56.0.2924.87",
+ "1.6.9": "56.0.2924.87",
+ "1.6.10": "56.0.2924.87",
+ "1.6.11": "56.0.2924.87",
+ "1.6.12": "56.0.2924.87",
+ "1.6.13": "56.0.2924.87",
+ "1.6.14": "56.0.2924.87",
+ "1.6.15": "56.0.2924.87",
+ "1.6.16": "56.0.2924.87",
+ "1.6.17": "56.0.2924.87",
+ "1.6.18": "56.0.2924.87",
+ "1.7.0": "58.0.3029.110",
+ "1.7.1": "58.0.3029.110",
+ "1.7.2": "58.0.3029.110",
+ "1.7.3": "58.0.3029.110",
+ "1.7.4": "58.0.3029.110",
+ "1.7.5": "58.0.3029.110",
+ "1.7.6": "58.0.3029.110",
+ "1.7.7": "58.0.3029.110",
+ "1.7.8": "58.0.3029.110",
+ "1.7.9": "58.0.3029.110",
+ "1.7.10": "58.0.3029.110",
+ "1.7.11": "58.0.3029.110",
+ "1.7.12": "58.0.3029.110",
+ "1.7.13": "58.0.3029.110",
+ "1.7.14": "58.0.3029.110",
+ "1.7.15": "58.0.3029.110",
+ "1.7.16": "58.0.3029.110",
+ "1.8.0": "59.0.3071.115",
+ "1.8.1": "59.0.3071.115",
+ "1.8.2-beta.1": "59.0.3071.115",
+ "1.8.2-beta.2": "59.0.3071.115",
+ "1.8.2-beta.3": "59.0.3071.115",
+ "1.8.2-beta.4": "59.0.3071.115",
+ "1.8.2-beta.5": "59.0.3071.115",
+ "1.8.2": "59.0.3071.115",
+ "1.8.3": "59.0.3071.115",
+ "1.8.4": "59.0.3071.115",
+ "1.8.5": "59.0.3071.115",
+ "1.8.6": "59.0.3071.115",
+ "1.8.7": "59.0.3071.115",
+ "1.8.8": "59.0.3071.115",
+ "2.0.0-beta.1": "61.0.3163.100",
+ "2.0.0-beta.2": "61.0.3163.100",
+ "2.0.0-beta.3": "61.0.3163.100",
+ "2.0.0-beta.4": "61.0.3163.100",
+ "2.0.0-beta.5": "61.0.3163.100",
+ "2.0.0-beta.6": "61.0.3163.100",
+ "2.0.0-beta.7": "61.0.3163.100",
+ "2.0.0-beta.8": "61.0.3163.100",
+ "2.0.0": "61.0.3163.100",
+ "2.0.1": "61.0.3163.100",
+ "2.0.2": "61.0.3163.100",
+ "2.0.3": "61.0.3163.100",
+ "2.0.4": "61.0.3163.100",
+ "2.0.5": "61.0.3163.100",
+ "2.0.6": "61.0.3163.100",
+ "2.0.7": "61.0.3163.100",
+ "2.0.8-nightly.20180819": "61.0.3163.100",
+ "2.0.8-nightly.20180820": "61.0.3163.100",
+ "2.0.8": "61.0.3163.100",
+ "2.0.9": "61.0.3163.100",
+ "2.0.10": "61.0.3163.100",
+ "2.0.11": "61.0.3163.100",
+ "2.0.12": "61.0.3163.100",
+ "2.0.13": "61.0.3163.100",
+ "2.0.14": "61.0.3163.100",
+ "2.0.15": "61.0.3163.100",
+ "2.0.16": "61.0.3163.100",
+ "2.0.17": "61.0.3163.100",
+ "2.0.18": "61.0.3163.100",
+ "2.1.0-unsupported.20180809": "61.0.3163.100",
+ "3.0.0-beta.1": "66.0.3359.181",
+ "3.0.0-beta.2": "66.0.3359.181",
+ "3.0.0-beta.3": "66.0.3359.181",
+ "3.0.0-beta.4": "66.0.3359.181",
+ "3.0.0-beta.5": "66.0.3359.181",
+ "3.0.0-beta.6": "66.0.3359.181",
+ "3.0.0-beta.7": "66.0.3359.181",
+ "3.0.0-beta.8": "66.0.3359.181",
+ "3.0.0-beta.9": "66.0.3359.181",
+ "3.0.0-beta.10": "66.0.3359.181",
+ "3.0.0-beta.11": "66.0.3359.181",
+ "3.0.0-beta.12": "66.0.3359.181",
+ "3.0.0-beta.13": "66.0.3359.181",
+ "3.0.0-nightly.20180818": "66.0.3359.181",
+ "3.0.0-nightly.20180821": "66.0.3359.181",
+ "3.0.0-nightly.20180823": "66.0.3359.181",
+ "3.0.0-nightly.20180904": "66.0.3359.181",
+ "3.0.0": "66.0.3359.181",
+ "3.0.1": "66.0.3359.181",
+ "3.0.2": "66.0.3359.181",
+ "3.0.3": "66.0.3359.181",
+ "3.0.4": "66.0.3359.181",
+ "3.0.5": "66.0.3359.181",
+ "3.0.6": "66.0.3359.181",
+ "3.0.7": "66.0.3359.181",
+ "3.0.8": "66.0.3359.181",
+ "3.0.9": "66.0.3359.181",
+ "3.0.10": "66.0.3359.181",
+ "3.0.11": "66.0.3359.181",
+ "3.0.12": "66.0.3359.181",
+ "3.0.13": "66.0.3359.181",
+ "3.0.14": "66.0.3359.181",
+ "3.0.15": "66.0.3359.181",
+ "3.0.16": "66.0.3359.181",
+ "3.1.0-beta.1": "66.0.3359.181",
+ "3.1.0-beta.2": "66.0.3359.181",
+ "3.1.0-beta.3": "66.0.3359.181",
+ "3.1.0-beta.4": "66.0.3359.181",
+ "3.1.0-beta.5": "66.0.3359.181",
+ "3.1.0": "66.0.3359.181",
+ "3.1.1": "66.0.3359.181",
+ "3.1.2": "66.0.3359.181",
+ "3.1.3": "66.0.3359.181",
+ "3.1.4": "66.0.3359.181",
+ "3.1.5": "66.0.3359.181",
+ "3.1.6": "66.0.3359.181",
+ "3.1.7": "66.0.3359.181",
+ "3.1.8": "66.0.3359.181",
+ "3.1.9": "66.0.3359.181",
+ "3.1.10": "66.0.3359.181",
+ "3.1.11": "66.0.3359.181",
+ "3.1.12": "66.0.3359.181",
+ "3.1.13": "66.0.3359.181",
+ "4.0.0-beta.1": "69.0.3497.106",
+ "4.0.0-beta.2": "69.0.3497.106",
+ "4.0.0-beta.3": "69.0.3497.106",
+ "4.0.0-beta.4": "69.0.3497.106",
+ "4.0.0-beta.5": "69.0.3497.106",
+ "4.0.0-beta.6": "69.0.3497.106",
+ "4.0.0-beta.7": "69.0.3497.106",
+ "4.0.0-beta.8": "69.0.3497.106",
+ "4.0.0-beta.9": "69.0.3497.106",
+ "4.0.0-beta.10": "69.0.3497.106",
+ "4.0.0-beta.11": "69.0.3497.106",
+ "4.0.0-nightly.20180817": "66.0.3359.181",
+ "4.0.0-nightly.20180819": "66.0.3359.181",
+ "4.0.0-nightly.20180821": "66.0.3359.181",
+ "4.0.0-nightly.20180929": "67.0.3396.99",
+ "4.0.0-nightly.20181006": "68.0.3440.128",
+ "4.0.0-nightly.20181010": "69.0.3497.106",
+ "4.0.0": "69.0.3497.106",
+ "4.0.1": "69.0.3497.106",
+ "4.0.2": "69.0.3497.106",
+ "4.0.3": "69.0.3497.106",
+ "4.0.4": "69.0.3497.106",
+ "4.0.5": "69.0.3497.106",
+ "4.0.6": "69.0.3497.106",
+ "4.0.7": "69.0.3497.128",
+ "4.0.8": "69.0.3497.128",
+ "4.1.0": "69.0.3497.128",
+ "4.1.1": "69.0.3497.128",
+ "4.1.2": "69.0.3497.128",
+ "4.1.3": "69.0.3497.128",
+ "4.1.4": "69.0.3497.128",
+ "4.1.5": "69.0.3497.128",
+ "4.2.0": "69.0.3497.128",
+ "4.2.1": "69.0.3497.128",
+ "4.2.2": "69.0.3497.128",
+ "4.2.3": "69.0.3497.128",
+ "4.2.4": "69.0.3497.128",
+ "4.2.5": "69.0.3497.128",
+ "4.2.6": "69.0.3497.128",
+ "4.2.7": "69.0.3497.128",
+ "4.2.8": "69.0.3497.128",
+ "4.2.9": "69.0.3497.128",
+ "4.2.10": "69.0.3497.128",
+ "4.2.11": "69.0.3497.128",
+ "4.2.12": "69.0.3497.128",
+ "5.0.0-beta.1": "72.0.3626.52",
+ "5.0.0-beta.2": "72.0.3626.52",
+ "5.0.0-beta.3": "73.0.3683.27",
+ "5.0.0-beta.4": "73.0.3683.54",
+ "5.0.0-beta.5": "73.0.3683.61",
+ "5.0.0-beta.6": "73.0.3683.84",
+ "5.0.0-beta.7": "73.0.3683.94",
+ "5.0.0-beta.8": "73.0.3683.104",
+ "5.0.0-beta.9": "73.0.3683.117",
+ "5.0.0-nightly.20190107": "70.0.3538.110",
+ "5.0.0-nightly.20190121": "71.0.3578.98",
+ "5.0.0-nightly.20190122": "71.0.3578.98",
+ "5.0.0": "73.0.3683.119",
+ "5.0.1": "73.0.3683.121",
+ "5.0.2": "73.0.3683.121",
+ "5.0.3": "73.0.3683.121",
+ "5.0.4": "73.0.3683.121",
+ "5.0.5": "73.0.3683.121",
+ "5.0.6": "73.0.3683.121",
+ "5.0.7": "73.0.3683.121",
+ "5.0.8": "73.0.3683.121",
+ "5.0.9": "73.0.3683.121",
+ "5.0.10": "73.0.3683.121",
+ "5.0.11": "73.0.3683.121",
+ "5.0.12": "73.0.3683.121",
+ "5.0.13": "73.0.3683.121",
+ "6.0.0-beta.1": "76.0.3774.1",
+ "6.0.0-beta.2": "76.0.3783.1",
+ "6.0.0-beta.3": "76.0.3783.1",
+ "6.0.0-beta.4": "76.0.3783.1",
+ "6.0.0-beta.5": "76.0.3805.4",
+ "6.0.0-beta.6": "76.0.3809.3",
+ "6.0.0-beta.7": "76.0.3809.22",
+ "6.0.0-beta.8": "76.0.3809.26",
+ "6.0.0-beta.9": "76.0.3809.26",
+ "6.0.0-beta.10": "76.0.3809.37",
+ "6.0.0-beta.11": "76.0.3809.42",
+ "6.0.0-beta.12": "76.0.3809.54",
+ "6.0.0-beta.13": "76.0.3809.60",
+ "6.0.0-beta.14": "76.0.3809.68",
+ "6.0.0-beta.15": "76.0.3809.74",
+ "6.0.0-nightly.20190123": "72.0.3626.52",
+ "6.0.0-nightly.20190212": "72.0.3626.107",
+ "6.0.0-nightly.20190213": "72.0.3626.110",
+ "6.0.0-nightly.20190311": "74.0.3724.8",
+ "6.0.0": "76.0.3809.88",
+ "6.0.1": "76.0.3809.102",
+ "6.0.2": "76.0.3809.110",
+ "6.0.3": "76.0.3809.126",
+ "6.0.4": "76.0.3809.131",
+ "6.0.5": "76.0.3809.136",
+ "6.0.6": "76.0.3809.138",
+ "6.0.7": "76.0.3809.139",
+ "6.0.8": "76.0.3809.146",
+ "6.0.9": "76.0.3809.146",
+ "6.0.10": "76.0.3809.146",
+ "6.0.11": "76.0.3809.146",
+ "6.0.12": "76.0.3809.146",
+ "6.1.0": "76.0.3809.146",
+ "6.1.1": "76.0.3809.146",
+ "6.1.2": "76.0.3809.146",
+ "6.1.3": "76.0.3809.146",
+ "6.1.4": "76.0.3809.146",
+ "6.1.5": "76.0.3809.146",
+ "6.1.6": "76.0.3809.146",
+ "6.1.7": "76.0.3809.146",
+ "6.1.8": "76.0.3809.146",
+ "6.1.9": "76.0.3809.146",
+ "6.1.10": "76.0.3809.146",
+ "6.1.11": "76.0.3809.146",
+ "6.1.12": "76.0.3809.146",
+ "7.0.0-beta.1": "78.0.3866.0",
+ "7.0.0-beta.2": "78.0.3866.0",
+ "7.0.0-beta.3": "78.0.3866.0",
+ "7.0.0-beta.4": "78.0.3896.6",
+ "7.0.0-beta.5": "78.0.3905.1",
+ "7.0.0-beta.6": "78.0.3905.1",
+ "7.0.0-beta.7": "78.0.3905.1",
+ "7.0.0-nightly.20190521": "76.0.3784.0",
+ "7.0.0-nightly.20190529": "76.0.3806.0",
+ "7.0.0-nightly.20190530": "76.0.3806.0",
+ "7.0.0-nightly.20190531": "76.0.3806.0",
+ "7.0.0-nightly.20190602": "76.0.3806.0",
+ "7.0.0-nightly.20190603": "76.0.3806.0",
+ "7.0.0-nightly.20190604": "77.0.3814.0",
+ "7.0.0-nightly.20190605": "77.0.3815.0",
+ "7.0.0-nightly.20190606": "77.0.3815.0",
+ "7.0.0-nightly.20190607": "77.0.3815.0",
+ "7.0.0-nightly.20190608": "77.0.3815.0",
+ "7.0.0-nightly.20190609": "77.0.3815.0",
+ "7.0.0-nightly.20190611": "77.0.3815.0",
+ "7.0.0-nightly.20190612": "77.0.3815.0",
+ "7.0.0-nightly.20190613": "77.0.3815.0",
+ "7.0.0-nightly.20190615": "77.0.3815.0",
+ "7.0.0-nightly.20190616": "77.0.3815.0",
+ "7.0.0-nightly.20190618": "77.0.3815.0",
+ "7.0.0-nightly.20190619": "77.0.3815.0",
+ "7.0.0-nightly.20190622": "77.0.3815.0",
+ "7.0.0-nightly.20190623": "77.0.3815.0",
+ "7.0.0-nightly.20190624": "77.0.3815.0",
+ "7.0.0-nightly.20190627": "77.0.3815.0",
+ "7.0.0-nightly.20190629": "77.0.3815.0",
+ "7.0.0-nightly.20190630": "77.0.3815.0",
+ "7.0.0-nightly.20190701": "77.0.3815.0",
+ "7.0.0-nightly.20190702": "77.0.3815.0",
+ "7.0.0-nightly.20190704": "77.0.3843.0",
+ "7.0.0-nightly.20190705": "77.0.3843.0",
+ "7.0.0-nightly.20190719": "77.0.3848.0",
+ "7.0.0-nightly.20190720": "77.0.3848.0",
+ "7.0.0-nightly.20190721": "77.0.3848.0",
+ "7.0.0-nightly.20190726": "77.0.3864.0",
+ "7.0.0-nightly.20190727": "78.0.3866.0",
+ "7.0.0-nightly.20190728": "78.0.3866.0",
+ "7.0.0-nightly.20190729": "78.0.3866.0",
+ "7.0.0-nightly.20190730": "78.0.3866.0",
+ "7.0.0-nightly.20190731": "78.0.3866.0",
+ "7.0.0": "78.0.3905.1",
+ "7.0.1": "78.0.3904.92",
+ "7.1.0": "78.0.3904.94",
+ "7.1.1": "78.0.3904.99",
+ "7.1.2": "78.0.3904.113",
+ "7.1.3": "78.0.3904.126",
+ "7.1.4": "78.0.3904.130",
+ "7.1.5": "78.0.3904.130",
+ "7.1.6": "78.0.3904.130",
+ "7.1.7": "78.0.3904.130",
+ "7.1.8": "78.0.3904.130",
+ "7.1.9": "78.0.3904.130",
+ "7.1.10": "78.0.3904.130",
+ "7.1.11": "78.0.3904.130",
+ "7.1.12": "78.0.3904.130",
+ "7.1.13": "78.0.3904.130",
+ "7.1.14": "78.0.3904.130",
+ "7.2.0": "78.0.3904.130",
+ "7.2.1": "78.0.3904.130",
+ "7.2.2": "78.0.3904.130",
+ "7.2.3": "78.0.3904.130",
+ "7.2.4": "78.0.3904.130",
+ "7.3.0": "78.0.3904.130",
+ "7.3.1": "78.0.3904.130",
+ "7.3.2": "78.0.3904.130",
+ "7.3.3": "78.0.3904.130",
+ "8.0.0-beta.1": "79.0.3931.0",
+ "8.0.0-beta.2": "79.0.3931.0",
+ "8.0.0-beta.3": "80.0.3955.0",
+ "8.0.0-beta.4": "80.0.3955.0",
+ "8.0.0-beta.5": "80.0.3987.14",
+ "8.0.0-beta.6": "80.0.3987.51",
+ "8.0.0-beta.7": "80.0.3987.59",
+ "8.0.0-beta.8": "80.0.3987.75",
+ "8.0.0-beta.9": "80.0.3987.75",
+ "8.0.0-nightly.20190801": "78.0.3866.0",
+ "8.0.0-nightly.20190802": "78.0.3866.0",
+ "8.0.0-nightly.20190803": "78.0.3871.0",
+ "8.0.0-nightly.20190806": "78.0.3871.0",
+ "8.0.0-nightly.20190807": "78.0.3871.0",
+ "8.0.0-nightly.20190808": "78.0.3871.0",
+ "8.0.0-nightly.20190809": "78.0.3871.0",
+ "8.0.0-nightly.20190810": "78.0.3871.0",
+ "8.0.0-nightly.20190811": "78.0.3871.0",
+ "8.0.0-nightly.20190812": "78.0.3871.0",
+ "8.0.0-nightly.20190813": "78.0.3871.0",
+ "8.0.0-nightly.20190814": "78.0.3871.0",
+ "8.0.0-nightly.20190815": "78.0.3871.0",
+ "8.0.0-nightly.20190816": "78.0.3881.0",
+ "8.0.0-nightly.20190817": "78.0.3881.0",
+ "8.0.0-nightly.20190818": "78.0.3881.0",
+ "8.0.0-nightly.20190819": "78.0.3881.0",
+ "8.0.0-nightly.20190820": "78.0.3881.0",
+ "8.0.0-nightly.20190824": "78.0.3892.0",
+ "8.0.0-nightly.20190825": "78.0.3892.0",
+ "8.0.0-nightly.20190827": "78.0.3892.0",
+ "8.0.0-nightly.20190828": "78.0.3892.0",
+ "8.0.0-nightly.20190830": "78.0.3892.0",
+ "8.0.0-nightly.20190901": "78.0.3892.0",
+ "8.0.0-nightly.20190902": "78.0.3892.0",
+ "8.0.0-nightly.20190907": "78.0.3892.0",
+ "8.0.0-nightly.20190909": "78.0.3892.0",
+ "8.0.0-nightly.20190910": "78.0.3892.0",
+ "8.0.0-nightly.20190911": "78.0.3892.0",
+ "8.0.0-nightly.20190912": "78.0.3892.0",
+ "8.0.0-nightly.20190913": "78.0.3892.0",
+ "8.0.0-nightly.20190914": "78.0.3892.0",
+ "8.0.0-nightly.20190915": "78.0.3892.0",
+ "8.0.0-nightly.20190917": "78.0.3892.0",
+ "8.0.0-nightly.20190919": "79.0.3915.0",
+ "8.0.0-nightly.20190920": "79.0.3915.0",
+ "8.0.0-nightly.20190922": "79.0.3919.0",
+ "8.0.0-nightly.20190923": "79.0.3919.0",
+ "8.0.0-nightly.20190924": "79.0.3919.0",
+ "8.0.0-nightly.20190926": "79.0.3919.0",
+ "8.0.0-nightly.20190928": "79.0.3919.0",
+ "8.0.0-nightly.20190929": "79.0.3919.0",
+ "8.0.0-nightly.20190930": "79.0.3919.0",
+ "8.0.0-nightly.20191001": "79.0.3919.0",
+ "8.0.0-nightly.20191004": "79.0.3919.0",
+ "8.0.0-nightly.20191005": "79.0.3919.0",
+ "8.0.0-nightly.20191006": "79.0.3919.0",
+ "8.0.0-nightly.20191009": "79.0.3919.0",
+ "8.0.0-nightly.20191011": "79.0.3919.0",
+ "8.0.0-nightly.20191012": "79.0.3919.0",
+ "8.0.0-nightly.20191017": "79.0.3919.0",
+ "8.0.0-nightly.20191019": "79.0.3931.0",
+ "8.0.0-nightly.20191020": "79.0.3931.0",
+ "8.0.0-nightly.20191021": "79.0.3931.0",
+ "8.0.0-nightly.20191023": "79.0.3931.0",
+ "8.0.0-nightly.20191101": "80.0.3952.0",
+ "8.0.0-nightly.20191103": "80.0.3952.0",
+ "8.0.0-nightly.20191105": "80.0.3952.0",
+ "8.0.0": "80.0.3987.86",
+ "8.0.1": "80.0.3987.86",
+ "8.0.2": "80.0.3987.86",
+ "8.0.3": "80.0.3987.134",
+ "8.1.0": "80.0.3987.137",
+ "8.1.1": "80.0.3987.141",
+ "8.2.0": "80.0.3987.158",
+ "8.2.1": "80.0.3987.163",
+ "8.2.2": "80.0.3987.163",
+ "8.2.3": "80.0.3987.163",
+ "8.2.4": "80.0.3987.165",
+ "8.2.5": "80.0.3987.165",
+ "8.3.0": "80.0.3987.165",
+ "8.3.1": "80.0.3987.165",
+ "8.3.2": "80.0.3987.165",
+ "8.3.3": "80.0.3987.165",
+ "8.3.4": "80.0.3987.165",
+ "8.4.0": "80.0.3987.165",
+ "8.4.1": "80.0.3987.165",
+ "8.5.0": "80.0.3987.165",
+ "8.5.1": "80.0.3987.165",
+ "8.5.2": "80.0.3987.165",
+ "8.5.3": "80.0.3987.163",
+ "8.5.4": "80.0.3987.163",
+ "8.5.5": "80.0.3987.163",
+ "9.0.0-beta.1": "82.0.4048.0",
+ "9.0.0-beta.2": "82.0.4048.0",
+ "9.0.0-beta.3": "82.0.4048.0",
+ "9.0.0-beta.4": "82.0.4048.0",
+ "9.0.0-beta.5": "82.0.4048.0",
+ "9.0.0-beta.6": "82.0.4058.2",
+ "9.0.0-beta.7": "82.0.4058.2",
+ "9.0.0-beta.9": "82.0.4058.2",
+ "9.0.0-beta.10": "82.0.4085.10",
+ "9.0.0-beta.11": "82.0.4085.14",
+ "9.0.0-beta.12": "82.0.4085.14",
+ "9.0.0-beta.13": "82.0.4085.14",
+ "9.0.0-beta.14": "82.0.4085.27",
+ "9.0.0-beta.15": "83.0.4102.3",
+ "9.0.0-beta.16": "83.0.4102.3",
+ "9.0.0-beta.17": "83.0.4103.14",
+ "9.0.0-beta.18": "83.0.4103.16",
+ "9.0.0-beta.19": "83.0.4103.24",
+ "9.0.0-beta.20": "83.0.4103.26",
+ "9.0.0-beta.21": "83.0.4103.26",
+ "9.0.0-beta.22": "83.0.4103.34",
+ "9.0.0-beta.23": "83.0.4103.44",
+ "9.0.0-beta.24": "83.0.4103.45",
+ "9.0.0-nightly.20191121": "80.0.3954.0",
+ "9.0.0-nightly.20191122": "80.0.3954.0",
+ "9.0.0-nightly.20191123": "80.0.3954.0",
+ "9.0.0-nightly.20191124": "80.0.3954.0",
+ "9.0.0-nightly.20191126": "80.0.3954.0",
+ "9.0.0-nightly.20191128": "80.0.3954.0",
+ "9.0.0-nightly.20191129": "80.0.3954.0",
+ "9.0.0-nightly.20191130": "80.0.3954.0",
+ "9.0.0-nightly.20191201": "80.0.3954.0",
+ "9.0.0-nightly.20191202": "80.0.3954.0",
+ "9.0.0-nightly.20191203": "80.0.3954.0",
+ "9.0.0-nightly.20191204": "80.0.3954.0",
+ "9.0.0-nightly.20191205": "80.0.3954.0",
+ "9.0.0-nightly.20191210": "80.0.3954.0",
+ "9.0.0-nightly.20191220": "81.0.3994.0",
+ "9.0.0-nightly.20191221": "81.0.3994.0",
+ "9.0.0-nightly.20191222": "81.0.3994.0",
+ "9.0.0-nightly.20191223": "81.0.3994.0",
+ "9.0.0-nightly.20191224": "81.0.3994.0",
+ "9.0.0-nightly.20191225": "81.0.3994.0",
+ "9.0.0-nightly.20191226": "81.0.3994.0",
+ "9.0.0-nightly.20191228": "81.0.3994.0",
+ "9.0.0-nightly.20191229": "81.0.3994.0",
+ "9.0.0-nightly.20191230": "81.0.3994.0",
+ "9.0.0-nightly.20191231": "81.0.3994.0",
+ "9.0.0-nightly.20200101": "81.0.3994.0",
+ "9.0.0-nightly.20200103": "81.0.3994.0",
+ "9.0.0-nightly.20200104": "81.0.3994.0",
+ "9.0.0-nightly.20200105": "81.0.3994.0",
+ "9.0.0-nightly.20200106": "81.0.3994.0",
+ "9.0.0-nightly.20200108": "81.0.3994.0",
+ "9.0.0-nightly.20200109": "81.0.3994.0",
+ "9.0.0-nightly.20200110": "81.0.3994.0",
+ "9.0.0-nightly.20200111": "81.0.3994.0",
+ "9.0.0-nightly.20200113": "81.0.3994.0",
+ "9.0.0-nightly.20200115": "81.0.3994.0",
+ "9.0.0-nightly.20200116": "81.0.3994.0",
+ "9.0.0-nightly.20200117": "81.0.3994.0",
+ "9.0.0-nightly.20200119": "81.0.4030.0",
+ "9.0.0-nightly.20200121": "81.0.4030.0",
+ "9.0.0": "83.0.4103.64",
+ "9.0.1": "83.0.4103.94",
+ "9.0.2": "83.0.4103.94",
+ "9.0.3": "83.0.4103.100",
+ "9.0.4": "83.0.4103.104",
+ "9.0.5": "83.0.4103.119",
+ "9.1.0": "83.0.4103.122",
+ "9.1.1": "83.0.4103.122",
+ "9.1.2": "83.0.4103.122",
+ "9.2.0": "83.0.4103.122",
+ "9.2.1": "83.0.4103.122",
+ "9.3.0": "83.0.4103.122",
+ "9.3.1": "83.0.4103.122",
+ "9.3.2": "83.0.4103.122",
+ "9.3.3": "83.0.4103.122",
+ "9.3.4": "83.0.4103.122",
+ "9.3.5": "83.0.4103.122",
+ "9.4.0": "83.0.4103.122",
+ "9.4.1": "83.0.4103.122",
+ "9.4.2": "83.0.4103.122",
+ "9.4.3": "83.0.4103.122",
+ "9.4.4": "83.0.4103.122",
+ "10.0.0-beta.1": "84.0.4129.0",
+ "10.0.0-beta.2": "84.0.4129.0",
+ "10.0.0-beta.3": "85.0.4161.2",
+ "10.0.0-beta.4": "85.0.4161.2",
+ "10.0.0-beta.8": "85.0.4181.1",
+ "10.0.0-beta.9": "85.0.4181.1",
+ "10.0.0-beta.10": "85.0.4183.19",
+ "10.0.0-beta.11": "85.0.4183.20",
+ "10.0.0-beta.12": "85.0.4183.26",
+ "10.0.0-beta.13": "85.0.4183.39",
+ "10.0.0-beta.14": "85.0.4183.39",
+ "10.0.0-beta.15": "85.0.4183.39",
+ "10.0.0-beta.17": "85.0.4183.39",
+ "10.0.0-beta.19": "85.0.4183.39",
+ "10.0.0-beta.20": "85.0.4183.39",
+ "10.0.0-beta.21": "85.0.4183.39",
+ "10.0.0-beta.23": "85.0.4183.70",
+ "10.0.0-beta.24": "85.0.4183.78",
+ "10.0.0-beta.25": "85.0.4183.80",
+ "10.0.0-nightly.20200209": "82.0.4050.0",
+ "10.0.0-nightly.20200210": "82.0.4050.0",
+ "10.0.0-nightly.20200211": "82.0.4050.0",
+ "10.0.0-nightly.20200216": "82.0.4050.0",
+ "10.0.0-nightly.20200217": "82.0.4050.0",
+ "10.0.0-nightly.20200218": "82.0.4050.0",
+ "10.0.0-nightly.20200221": "82.0.4050.0",
+ "10.0.0-nightly.20200222": "82.0.4050.0",
+ "10.0.0-nightly.20200223": "82.0.4050.0",
+ "10.0.0-nightly.20200226": "82.0.4050.0",
+ "10.0.0-nightly.20200303": "82.0.4050.0",
+ "10.0.0-nightly.20200304": "82.0.4076.0",
+ "10.0.0-nightly.20200305": "82.0.4076.0",
+ "10.0.0-nightly.20200306": "82.0.4076.0",
+ "10.0.0-nightly.20200309": "82.0.4076.0",
+ "10.0.0-nightly.20200310": "82.0.4076.0",
+ "10.0.0-nightly.20200311": "82.0.4083.0",
+ "10.0.0-nightly.20200316": "83.0.4086.0",
+ "10.0.0-nightly.20200317": "83.0.4087.0",
+ "10.0.0-nightly.20200318": "83.0.4087.0",
+ "10.0.0-nightly.20200320": "83.0.4087.0",
+ "10.0.0-nightly.20200323": "83.0.4087.0",
+ "10.0.0-nightly.20200324": "83.0.4087.0",
+ "10.0.0-nightly.20200325": "83.0.4087.0",
+ "10.0.0-nightly.20200326": "83.0.4087.0",
+ "10.0.0-nightly.20200327": "83.0.4087.0",
+ "10.0.0-nightly.20200330": "83.0.4087.0",
+ "10.0.0-nightly.20200331": "83.0.4087.0",
+ "10.0.0-nightly.20200401": "83.0.4087.0",
+ "10.0.0-nightly.20200402": "83.0.4087.0",
+ "10.0.0-nightly.20200403": "83.0.4087.0",
+ "10.0.0-nightly.20200406": "83.0.4087.0",
+ "10.0.0-nightly.20200408": "83.0.4095.0",
+ "10.0.0-nightly.20200410": "83.0.4095.0",
+ "10.0.0-nightly.20200413": "83.0.4095.0",
+ "10.0.0-nightly.20200414": "84.0.4114.0",
+ "10.0.0-nightly.20200415": "84.0.4115.0",
+ "10.0.0-nightly.20200416": "84.0.4115.0",
+ "10.0.0-nightly.20200417": "84.0.4115.0",
+ "10.0.0-nightly.20200422": "84.0.4121.0",
+ "10.0.0-nightly.20200423": "84.0.4121.0",
+ "10.0.0-nightly.20200427": "84.0.4125.0",
+ "10.0.0-nightly.20200428": "84.0.4125.0",
+ "10.0.0-nightly.20200429": "84.0.4125.0",
+ "10.0.0-nightly.20200430": "84.0.4125.0",
+ "10.0.0-nightly.20200501": "84.0.4129.0",
+ "10.0.0-nightly.20200504": "84.0.4129.0",
+ "10.0.0-nightly.20200505": "84.0.4129.0",
+ "10.0.0-nightly.20200506": "84.0.4129.0",
+ "10.0.0-nightly.20200507": "84.0.4129.0",
+ "10.0.0-nightly.20200508": "84.0.4129.0",
+ "10.0.0-nightly.20200511": "84.0.4129.0",
+ "10.0.0-nightly.20200512": "84.0.4129.0",
+ "10.0.0-nightly.20200513": "84.0.4129.0",
+ "10.0.0-nightly.20200514": "84.0.4129.0",
+ "10.0.0-nightly.20200515": "84.0.4129.0",
+ "10.0.0-nightly.20200518": "84.0.4129.0",
+ "10.0.0-nightly.20200519": "84.0.4129.0",
+ "10.0.0-nightly.20200520": "84.0.4129.0",
+ "10.0.0-nightly.20200521": "84.0.4129.0",
+ "10.0.0": "85.0.4183.84",
+ "10.0.1": "85.0.4183.86",
+ "10.1.0": "85.0.4183.87",
+ "10.1.1": "85.0.4183.93",
+ "10.1.2": "85.0.4183.98",
+ "10.1.3": "85.0.4183.121",
+ "10.1.4": "85.0.4183.121",
+ "10.1.5": "85.0.4183.121",
+ "10.1.6": "85.0.4183.121",
+ "10.1.7": "85.0.4183.121",
+ "10.2.0": "85.0.4183.121",
+ "10.3.0": "85.0.4183.121",
+ "10.3.1": "85.0.4183.121",
+ "10.3.2": "85.0.4183.121",
+ "10.4.0": "85.0.4183.121",
+ "10.4.1": "85.0.4183.121",
+ "10.4.2": "85.0.4183.121",
+ "10.4.3": "85.0.4183.121",
+ "10.4.4": "85.0.4183.121",
+ "10.4.5": "85.0.4183.121",
+ "10.4.6": "85.0.4183.121",
+ "10.4.7": "85.0.4183.121",
+ "11.0.0-beta.1": "86.0.4234.0",
+ "11.0.0-beta.3": "86.0.4234.0",
+ "11.0.0-beta.4": "86.0.4234.0",
+ "11.0.0-beta.5": "86.0.4234.0",
+ "11.0.0-beta.6": "86.0.4234.0",
+ "11.0.0-beta.7": "86.0.4234.0",
+ "11.0.0-beta.8": "87.0.4251.1",
+ "11.0.0-beta.9": "87.0.4251.1",
+ "11.0.0-beta.11": "87.0.4251.1",
+ "11.0.0-beta.12": "87.0.4280.11",
+ "11.0.0-beta.13": "87.0.4280.11",
+ "11.0.0-beta.16": "87.0.4280.27",
+ "11.0.0-beta.17": "87.0.4280.27",
+ "11.0.0-beta.18": "87.0.4280.27",
+ "11.0.0-beta.19": "87.0.4280.27",
+ "11.0.0-beta.20": "87.0.4280.40",
+ "11.0.0-beta.22": "87.0.4280.47",
+ "11.0.0-beta.23": "87.0.4280.47",
+ "11.0.0-nightly.20200525": "84.0.4129.0",
+ "11.0.0-nightly.20200526": "84.0.4129.0",
+ "11.0.0-nightly.20200529": "85.0.4156.0",
+ "11.0.0-nightly.20200602": "85.0.4162.0",
+ "11.0.0-nightly.20200603": "85.0.4162.0",
+ "11.0.0-nightly.20200604": "85.0.4162.0",
+ "11.0.0-nightly.20200609": "85.0.4162.0",
+ "11.0.0-nightly.20200610": "85.0.4162.0",
+ "11.0.0-nightly.20200611": "85.0.4162.0",
+ "11.0.0-nightly.20200615": "85.0.4162.0",
+ "11.0.0-nightly.20200616": "85.0.4162.0",
+ "11.0.0-nightly.20200617": "85.0.4162.0",
+ "11.0.0-nightly.20200618": "85.0.4162.0",
+ "11.0.0-nightly.20200619": "85.0.4162.0",
+ "11.0.0-nightly.20200701": "85.0.4179.0",
+ "11.0.0-nightly.20200702": "85.0.4179.0",
+ "11.0.0-nightly.20200703": "85.0.4179.0",
+ "11.0.0-nightly.20200706": "85.0.4179.0",
+ "11.0.0-nightly.20200707": "85.0.4179.0",
+ "11.0.0-nightly.20200708": "85.0.4179.0",
+ "11.0.0-nightly.20200709": "85.0.4179.0",
+ "11.0.0-nightly.20200716": "86.0.4203.0",
+ "11.0.0-nightly.20200717": "86.0.4203.0",
+ "11.0.0-nightly.20200720": "86.0.4203.0",
+ "11.0.0-nightly.20200721": "86.0.4203.0",
+ "11.0.0-nightly.20200723": "86.0.4209.0",
+ "11.0.0-nightly.20200724": "86.0.4209.0",
+ "11.0.0-nightly.20200729": "86.0.4209.0",
+ "11.0.0-nightly.20200730": "86.0.4209.0",
+ "11.0.0-nightly.20200731": "86.0.4209.0",
+ "11.0.0-nightly.20200803": "86.0.4209.0",
+ "11.0.0-nightly.20200804": "86.0.4209.0",
+ "11.0.0-nightly.20200805": "86.0.4209.0",
+ "11.0.0-nightly.20200811": "86.0.4209.0",
+ "11.0.0-nightly.20200812": "86.0.4209.0",
+ "11.0.0-nightly.20200822": "86.0.4234.0",
+ "11.0.0-nightly.20200824": "86.0.4234.0",
+ "11.0.0-nightly.20200825": "86.0.4234.0",
+ "11.0.0-nightly.20200826": "86.0.4234.0",
+ "11.0.0": "87.0.4280.60",
+ "11.0.1": "87.0.4280.60",
+ "11.0.2": "87.0.4280.67",
+ "11.0.3": "87.0.4280.67",
+ "11.0.4": "87.0.4280.67",
+ "11.0.5": "87.0.4280.88",
+ "11.1.0": "87.0.4280.88",
+ "11.1.1": "87.0.4280.88",
+ "11.2.0": "87.0.4280.141",
+ "11.2.1": "87.0.4280.141",
+ "11.2.2": "87.0.4280.141",
+ "11.2.3": "87.0.4280.141",
+ "11.3.0": "87.0.4280.141",
+ "11.4.0": "87.0.4280.141",
+ "11.4.1": "87.0.4280.141",
+ "11.4.2": "87.0.4280.141",
+ "11.4.3": "87.0.4280.141",
+ "11.4.4": "87.0.4280.141",
+ "11.4.5": "87.0.4280.141",
+ "11.4.6": "87.0.4280.141",
+ "11.4.7": "87.0.4280.141",
+ "11.4.8": "87.0.4280.141",
+ "11.4.9": "87.0.4280.141",
+ "11.4.10": "87.0.4280.141",
+ "11.4.11": "87.0.4280.141",
+ "11.4.12": "87.0.4280.141",
+ "11.5.0": "87.0.4280.141",
+ "12.0.0-beta.1": "89.0.4328.0",
+ "12.0.0-beta.3": "89.0.4328.0",
+ "12.0.0-beta.4": "89.0.4328.0",
+ "12.0.0-beta.5": "89.0.4328.0",
+ "12.0.0-beta.6": "89.0.4328.0",
+ "12.0.0-beta.7": "89.0.4328.0",
+ "12.0.0-beta.8": "89.0.4328.0",
+ "12.0.0-beta.9": "89.0.4328.0",
+ "12.0.0-beta.10": "89.0.4328.0",
+ "12.0.0-beta.11": "89.0.4328.0",
+ "12.0.0-beta.12": "89.0.4328.0",
+ "12.0.0-beta.14": "89.0.4328.0",
+ "12.0.0-beta.16": "89.0.4348.1",
+ "12.0.0-beta.18": "89.0.4348.1",
+ "12.0.0-beta.19": "89.0.4348.1",
+ "12.0.0-beta.20": "89.0.4348.1",
+ "12.0.0-beta.21": "89.0.4388.2",
+ "12.0.0-beta.22": "89.0.4388.2",
+ "12.0.0-beta.23": "89.0.4388.2",
+ "12.0.0-beta.24": "89.0.4388.2",
+ "12.0.0-beta.25": "89.0.4388.2",
+ "12.0.0-beta.26": "89.0.4388.2",
+ "12.0.0-beta.27": "89.0.4389.23",
+ "12.0.0-beta.28": "89.0.4389.23",
+ "12.0.0-beta.29": "89.0.4389.23",
+ "12.0.0-beta.30": "89.0.4389.58",
+ "12.0.0-beta.31": "89.0.4389.58",
+ "12.0.0-nightly.20200827": "86.0.4234.0",
+ "12.0.0-nightly.20200831": "86.0.4234.0",
+ "12.0.0-nightly.20200902": "86.0.4234.0",
+ "12.0.0-nightly.20200903": "86.0.4234.0",
+ "12.0.0-nightly.20200907": "86.0.4234.0",
+ "12.0.0-nightly.20200910": "86.0.4234.0",
+ "12.0.0-nightly.20200911": "86.0.4234.0",
+ "12.0.0-nightly.20200914": "86.0.4234.0",
+ "12.0.0-nightly.20201002": "87.0.4268.0",
+ "12.0.0-nightly.20201007": "87.0.4268.0",
+ "12.0.0-nightly.20201009": "87.0.4268.0",
+ "12.0.0-nightly.20201012": "87.0.4268.0",
+ "12.0.0-nightly.20201013": "87.0.4268.0",
+ "12.0.0-nightly.20201014": "87.0.4268.0",
+ "12.0.0-nightly.20201015": "87.0.4268.0",
+ "12.0.0-nightly.20201023": "88.0.4292.0",
+ "12.0.0-nightly.20201026": "88.0.4292.0",
+ "12.0.0-nightly.20201030": "88.0.4306.0",
+ "12.0.0-nightly.20201102": "88.0.4306.0",
+ "12.0.0-nightly.20201103": "88.0.4306.0",
+ "12.0.0-nightly.20201104": "88.0.4306.0",
+ "12.0.0-nightly.20201105": "88.0.4306.0",
+ "12.0.0-nightly.20201106": "88.0.4306.0",
+ "12.0.0-nightly.20201111": "88.0.4306.0",
+ "12.0.0-nightly.20201112": "88.0.4306.0",
+ "12.0.0-nightly.20201116": "88.0.4324.0",
+ "12.0.0": "89.0.4389.69",
+ "12.0.1": "89.0.4389.82",
+ "12.0.2": "89.0.4389.90",
+ "12.0.3": "89.0.4389.114",
+ "12.0.4": "89.0.4389.114",
+ "12.0.5": "89.0.4389.128",
+ "12.0.6": "89.0.4389.128",
+ "12.0.7": "89.0.4389.128",
+ "12.0.8": "89.0.4389.128",
+ "12.0.9": "89.0.4389.128",
+ "12.0.10": "89.0.4389.128",
+ "12.0.11": "89.0.4389.128",
+ "12.0.12": "89.0.4389.128",
+ "12.0.13": "89.0.4389.128",
+ "12.0.14": "89.0.4389.128",
+ "12.0.15": "89.0.4389.128",
+ "12.0.16": "89.0.4389.128",
+ "12.0.17": "89.0.4389.128",
+ "12.0.18": "89.0.4389.128",
+ "12.1.0": "89.0.4389.128",
+ "12.1.1": "89.0.4389.128",
+ "12.1.2": "89.0.4389.128",
+ "12.2.0": "89.0.4389.128",
+ "12.2.1": "89.0.4389.128",
+ "12.2.2": "89.0.4389.128",
+ "12.2.3": "89.0.4389.128",
+ "13.0.0-beta.2": "90.0.4402.0",
+ "13.0.0-beta.3": "90.0.4402.0",
+ "13.0.0-beta.4": "90.0.4415.0",
+ "13.0.0-beta.5": "90.0.4415.0",
+ "13.0.0-beta.6": "90.0.4415.0",
+ "13.0.0-beta.7": "90.0.4415.0",
+ "13.0.0-beta.8": "90.0.4415.0",
+ "13.0.0-beta.9": "90.0.4415.0",
+ "13.0.0-beta.10": "90.0.4415.0",
+ "13.0.0-beta.11": "90.0.4415.0",
+ "13.0.0-beta.12": "90.0.4415.0",
+ "13.0.0-beta.13": "90.0.4415.0",
+ "13.0.0-beta.14": "91.0.4448.0",
+ "13.0.0-beta.16": "91.0.4448.0",
+ "13.0.0-beta.17": "91.0.4448.0",
+ "13.0.0-beta.18": "91.0.4448.0",
+ "13.0.0-beta.20": "91.0.4448.0",
+ "13.0.0-beta.21": "91.0.4472.33",
+ "13.0.0-beta.22": "91.0.4472.33",
+ "13.0.0-beta.23": "91.0.4472.33",
+ "13.0.0-beta.24": "91.0.4472.38",
+ "13.0.0-beta.25": "91.0.4472.38",
+ "13.0.0-beta.26": "91.0.4472.38",
+ "13.0.0-beta.27": "91.0.4472.38",
+ "13.0.0-beta.28": "91.0.4472.38",
+ "13.0.0-nightly.20201119": "89.0.4328.0",
+ "13.0.0-nightly.20201123": "89.0.4328.0",
+ "13.0.0-nightly.20201124": "89.0.4328.0",
+ "13.0.0-nightly.20201126": "89.0.4328.0",
+ "13.0.0-nightly.20201127": "89.0.4328.0",
+ "13.0.0-nightly.20201130": "89.0.4328.0",
+ "13.0.0-nightly.20201201": "89.0.4328.0",
+ "13.0.0-nightly.20201202": "89.0.4328.0",
+ "13.0.0-nightly.20201203": "89.0.4328.0",
+ "13.0.0-nightly.20201204": "89.0.4328.0",
+ "13.0.0-nightly.20201207": "89.0.4328.0",
+ "13.0.0-nightly.20201208": "89.0.4328.0",
+ "13.0.0-nightly.20201209": "89.0.4328.0",
+ "13.0.0-nightly.20201210": "89.0.4328.0",
+ "13.0.0-nightly.20201211": "89.0.4328.0",
+ "13.0.0-nightly.20201214": "89.0.4328.0",
+ "13.0.0-nightly.20201215": "89.0.4349.0",
+ "13.0.0-nightly.20201216": "89.0.4349.0",
+ "13.0.0-nightly.20201221": "89.0.4349.0",
+ "13.0.0-nightly.20201222": "89.0.4349.0",
+ "13.0.0-nightly.20201223": "89.0.4359.0",
+ "13.0.0-nightly.20210104": "89.0.4359.0",
+ "13.0.0-nightly.20210108": "89.0.4359.0",
+ "13.0.0-nightly.20210111": "89.0.4359.0",
+ "13.0.0-nightly.20210113": "89.0.4386.0",
+ "13.0.0-nightly.20210114": "89.0.4386.0",
+ "13.0.0-nightly.20210118": "89.0.4386.0",
+ "13.0.0-nightly.20210122": "89.0.4386.0",
+ "13.0.0-nightly.20210125": "89.0.4386.0",
+ "13.0.0-nightly.20210127": "89.0.4389.0",
+ "13.0.0-nightly.20210128": "89.0.4389.0",
+ "13.0.0-nightly.20210129": "89.0.4389.0",
+ "13.0.0-nightly.20210201": "89.0.4389.0",
+ "13.0.0-nightly.20210202": "89.0.4389.0",
+ "13.0.0-nightly.20210203": "89.0.4389.0",
+ "13.0.0-nightly.20210205": "89.0.4389.0",
+ "13.0.0-nightly.20210208": "89.0.4389.0",
+ "13.0.0-nightly.20210209": "89.0.4389.0",
+ "13.0.0-nightly.20210210": "90.0.4402.0",
+ "13.0.0-nightly.20210211": "90.0.4402.0",
+ "13.0.0-nightly.20210212": "90.0.4402.0",
+ "13.0.0-nightly.20210216": "90.0.4402.0",
+ "13.0.0-nightly.20210217": "90.0.4402.0",
+ "13.0.0-nightly.20210218": "90.0.4402.0",
+ "13.0.0-nightly.20210219": "90.0.4402.0",
+ "13.0.0-nightly.20210222": "90.0.4402.0",
+ "13.0.0-nightly.20210225": "90.0.4402.0",
+ "13.0.0-nightly.20210226": "90.0.4402.0",
+ "13.0.0-nightly.20210301": "90.0.4402.0",
+ "13.0.0-nightly.20210302": "90.0.4402.0",
+ "13.0.0-nightly.20210303": "90.0.4402.0",
+ "13.0.0": "91.0.4472.69",
+ "13.0.1": "91.0.4472.69",
+ "13.1.0": "91.0.4472.77",
+ "13.1.1": "91.0.4472.77",
+ "13.1.2": "91.0.4472.77",
+ "13.1.3": "91.0.4472.106",
+ "13.1.4": "91.0.4472.106",
+ "13.1.5": "91.0.4472.124",
+ "13.1.6": "91.0.4472.124",
+ "13.1.7": "91.0.4472.124",
+ "13.1.8": "91.0.4472.164",
+ "13.1.9": "91.0.4472.164",
+ "13.2.0": "91.0.4472.164",
+ "13.2.1": "91.0.4472.164",
+ "13.2.2": "91.0.4472.164",
+ "13.2.3": "91.0.4472.164",
+ "13.3.0": "91.0.4472.164",
+ "13.4.0": "91.0.4472.164",
+ "13.5.0": "91.0.4472.164",
+ "13.5.1": "91.0.4472.164",
+ "13.5.2": "91.0.4472.164",
+ "13.6.0": "91.0.4472.164",
+ "13.6.1": "91.0.4472.164",
+ "13.6.2": "91.0.4472.164",
+ "13.6.3": "91.0.4472.164",
+ "13.6.6": "91.0.4472.164",
+ "13.6.7": "91.0.4472.164",
+ "13.6.8": "91.0.4472.164",
+ "13.6.9": "91.0.4472.164",
+ "14.0.0-beta.1": "92.0.4511.0",
+ "14.0.0-beta.2": "92.0.4511.0",
+ "14.0.0-beta.3": "92.0.4511.0",
+ "14.0.0-beta.5": "93.0.4536.0",
+ "14.0.0-beta.6": "93.0.4536.0",
+ "14.0.0-beta.7": "93.0.4536.0",
+ "14.0.0-beta.8": "93.0.4536.0",
+ "14.0.0-beta.9": "93.0.4539.0",
+ "14.0.0-beta.10": "93.0.4539.0",
+ "14.0.0-beta.11": "93.0.4557.4",
+ "14.0.0-beta.12": "93.0.4557.4",
+ "14.0.0-beta.13": "93.0.4566.0",
+ "14.0.0-beta.14": "93.0.4566.0",
+ "14.0.0-beta.15": "93.0.4566.0",
+ "14.0.0-beta.16": "93.0.4566.0",
+ "14.0.0-beta.17": "93.0.4566.0",
+ "14.0.0-beta.18": "93.0.4577.15",
+ "14.0.0-beta.19": "93.0.4577.15",
+ "14.0.0-beta.20": "93.0.4577.15",
+ "14.0.0-beta.21": "93.0.4577.15",
+ "14.0.0-beta.22": "93.0.4577.25",
+ "14.0.0-beta.23": "93.0.4577.25",
+ "14.0.0-beta.24": "93.0.4577.51",
+ "14.0.0-beta.25": "93.0.4577.51",
+ "14.0.0-nightly.20210304": "90.0.4402.0",
+ "14.0.0-nightly.20210305": "90.0.4415.0",
+ "14.0.0-nightly.20210308": "90.0.4415.0",
+ "14.0.0-nightly.20210309": "90.0.4415.0",
+ "14.0.0-nightly.20210311": "90.0.4415.0",
+ "14.0.0-nightly.20210315": "90.0.4415.0",
+ "14.0.0-nightly.20210316": "90.0.4415.0",
+ "14.0.0-nightly.20210317": "90.0.4415.0",
+ "14.0.0-nightly.20210318": "90.0.4415.0",
+ "14.0.0-nightly.20210319": "90.0.4415.0",
+ "14.0.0-nightly.20210323": "90.0.4415.0",
+ "14.0.0-nightly.20210324": "90.0.4415.0",
+ "14.0.0-nightly.20210325": "90.0.4415.0",
+ "14.0.0-nightly.20210326": "90.0.4415.0",
+ "14.0.0-nightly.20210329": "90.0.4415.0",
+ "14.0.0-nightly.20210330": "90.0.4415.0",
+ "14.0.0-nightly.20210331": "91.0.4448.0",
+ "14.0.0-nightly.20210401": "91.0.4448.0",
+ "14.0.0-nightly.20210402": "91.0.4448.0",
+ "14.0.0-nightly.20210406": "91.0.4448.0",
+ "14.0.0-nightly.20210407": "91.0.4448.0",
+ "14.0.0-nightly.20210408": "91.0.4448.0",
+ "14.0.0-nightly.20210409": "91.0.4448.0",
+ "14.0.0-nightly.20210413": "91.0.4448.0",
+ "14.0.0-nightly.20210426": "92.0.4475.0",
+ "14.0.0-nightly.20210427": "92.0.4475.0",
+ "14.0.0-nightly.20210430": "92.0.4488.0",
+ "14.0.0-nightly.20210503": "92.0.4488.0",
+ "14.0.0-nightly.20210505": "92.0.4496.0",
+ "14.0.0-nightly.20210506": "92.0.4498.0",
+ "14.0.0-nightly.20210507": "92.0.4499.0",
+ "14.0.0-nightly.20210510": "92.0.4499.0",
+ "14.0.0-nightly.20210511": "92.0.4499.0",
+ "14.0.0-nightly.20210512": "92.0.4499.0",
+ "14.0.0-nightly.20210513": "92.0.4499.0",
+ "14.0.0-nightly.20210514": "92.0.4505.0",
+ "14.0.0-nightly.20210517": "92.0.4505.0",
+ "14.0.0-nightly.20210518": "92.0.4505.0",
+ "14.0.0-nightly.20210519": "92.0.4505.0",
+ "14.0.0-nightly.20210520": "92.0.4511.0",
+ "14.0.0-nightly.20210523": "92.0.4511.0",
+ "14.0.0-nightly.20210524": "92.0.4511.0",
+ "14.0.0": "93.0.4577.58",
+ "14.0.1": "93.0.4577.63",
+ "14.0.2": "93.0.4577.82",
+ "14.1.0": "93.0.4577.82",
+ "14.1.1": "93.0.4577.82",
+ "14.2.0": "93.0.4577.82",
+ "14.2.1": "93.0.4577.82",
+ "14.2.2": "93.0.4577.82",
+ "14.2.3": "93.0.4577.82",
+ "14.2.4": "93.0.4577.82",
+ "14.2.5": "93.0.4577.82",
+ "14.2.6": "93.0.4577.82",
+ "14.2.7": "93.0.4577.82",
+ "14.2.8": "93.0.4577.82",
+ "14.2.9": "93.0.4577.82",
+ "15.0.0-alpha.1": "93.0.4566.0",
+ "15.0.0-alpha.2": "93.0.4566.0",
+ "15.0.0-alpha.3": "94.0.4584.0",
+ "15.0.0-alpha.4": "94.0.4584.0",
+ "15.0.0-alpha.5": "94.0.4584.0",
+ "15.0.0-alpha.6": "94.0.4584.0",
+ "15.0.0-alpha.7": "94.0.4590.2",
+ "15.0.0-alpha.8": "94.0.4590.2",
+ "15.0.0-alpha.9": "94.0.4590.2",
+ "15.0.0-alpha.10": "94.0.4606.12",
+ "15.0.0-beta.1": "94.0.4606.20",
+ "15.0.0-beta.2": "94.0.4606.20",
+ "15.0.0-beta.3": "94.0.4606.31",
+ "15.0.0-beta.4": "94.0.4606.31",
+ "15.0.0-beta.5": "94.0.4606.31",
+ "15.0.0-beta.6": "94.0.4606.31",
+ "15.0.0-beta.7": "94.0.4606.31",
+ "15.0.0-nightly.20210527": "92.0.4511.0",
+ "15.0.0-nightly.20210528": "92.0.4511.0",
+ "15.0.0-nightly.20210531": "92.0.4511.0",
+ "15.0.0-nightly.20210601": "92.0.4511.0",
+ "15.0.0-nightly.20210602": "92.0.4511.0",
+ "15.0.0-nightly.20210603": "93.0.4530.0",
+ "15.0.0-nightly.20210604": "93.0.4530.0",
+ "15.0.0-nightly.20210608": "93.0.4535.0",
+ "15.0.0-nightly.20210609": "93.0.4536.0",
+ "15.0.0-nightly.20210610": "93.0.4536.0",
+ "15.0.0-nightly.20210611": "93.0.4536.0",
+ "15.0.0-nightly.20210614": "93.0.4536.0",
+ "15.0.0-nightly.20210615": "93.0.4536.0",
+ "15.0.0-nightly.20210616": "93.0.4536.0",
+ "15.0.0-nightly.20210617": "93.0.4539.0",
+ "15.0.0-nightly.20210618": "93.0.4539.0",
+ "15.0.0-nightly.20210621": "93.0.4539.0",
+ "15.0.0-nightly.20210622": "93.0.4539.0",
+ "15.0.0-nightly.20210623": "93.0.4550.0",
+ "15.0.0-nightly.20210624": "93.0.4550.0",
+ "15.0.0-nightly.20210625": "93.0.4552.0",
+ "15.0.0-nightly.20210628": "93.0.4552.0",
+ "15.0.0-nightly.20210629": "93.0.4552.0",
+ "15.0.0-nightly.20210630": "93.0.4558.0",
+ "15.0.0-nightly.20210701": "93.0.4558.0",
+ "15.0.0-nightly.20210702": "93.0.4558.0",
+ "15.0.0-nightly.20210705": "93.0.4558.0",
+ "15.0.0-nightly.20210706": "93.0.4566.0",
+ "15.0.0-nightly.20210707": "93.0.4566.0",
+ "15.0.0-nightly.20210708": "93.0.4566.0",
+ "15.0.0-nightly.20210709": "93.0.4566.0",
+ "15.0.0-nightly.20210712": "93.0.4566.0",
+ "15.0.0-nightly.20210713": "93.0.4566.0",
+ "15.0.0-nightly.20210714": "93.0.4566.0",
+ "15.0.0-nightly.20210715": "93.0.4566.0",
+ "15.0.0-nightly.20210716": "93.0.4566.0",
+ "15.0.0-nightly.20210719": "93.0.4566.0",
+ "15.0.0-nightly.20210720": "93.0.4566.0",
+ "15.0.0-nightly.20210721": "93.0.4566.0",
+ "15.0.0": "94.0.4606.51",
+ "15.1.0": "94.0.4606.61",
+ "15.1.1": "94.0.4606.61",
+ "15.1.2": "94.0.4606.71",
+ "15.2.0": "94.0.4606.81",
+ "15.3.0": "94.0.4606.81",
+ "15.3.1": "94.0.4606.81",
+ "15.3.2": "94.0.4606.81",
+ "15.3.3": "94.0.4606.81",
+ "15.3.4": "94.0.4606.81",
+ "15.3.5": "94.0.4606.81",
+ "15.3.6": "94.0.4606.81",
+ "15.3.7": "94.0.4606.81",
+ "15.4.0": "94.0.4606.81",
+ "15.4.1": "94.0.4606.81",
+ "15.4.2": "94.0.4606.81",
+ "15.5.0": "94.0.4606.81",
+ "15.5.1": "94.0.4606.81",
+ "15.5.2": "94.0.4606.81",
+ "15.5.3": "94.0.4606.81",
+ "15.5.4": "94.0.4606.81",
+ "15.5.5": "94.0.4606.81",
+ "15.5.6": "94.0.4606.81",
+ "15.5.7": "94.0.4606.81",
+ "16.0.0-alpha.1": "95.0.4629.0",
+ "16.0.0-alpha.2": "95.0.4629.0",
+ "16.0.0-alpha.3": "95.0.4629.0",
+ "16.0.0-alpha.4": "95.0.4629.0",
+ "16.0.0-alpha.5": "95.0.4629.0",
+ "16.0.0-alpha.6": "95.0.4629.0",
+ "16.0.0-alpha.7": "95.0.4629.0",
+ "16.0.0-alpha.8": "96.0.4647.0",
+ "16.0.0-alpha.9": "96.0.4647.0",
+ "16.0.0-beta.1": "96.0.4647.0",
+ "16.0.0-beta.2": "96.0.4647.0",
+ "16.0.0-beta.3": "96.0.4647.0",
+ "16.0.0-beta.4": "96.0.4664.18",
+ "16.0.0-beta.5": "96.0.4664.18",
+ "16.0.0-beta.6": "96.0.4664.27",
+ "16.0.0-beta.7": "96.0.4664.27",
+ "16.0.0-beta.8": "96.0.4664.35",
+ "16.0.0-beta.9": "96.0.4664.35",
+ "16.0.0-nightly.20210722": "93.0.4566.0",
+ "16.0.0-nightly.20210723": "93.0.4566.0",
+ "16.0.0-nightly.20210726": "93.0.4566.0",
+ "16.0.0-nightly.20210727": "94.0.4584.0",
+ "16.0.0-nightly.20210728": "94.0.4584.0",
+ "16.0.0-nightly.20210729": "94.0.4584.0",
+ "16.0.0-nightly.20210730": "94.0.4584.0",
+ "16.0.0-nightly.20210802": "94.0.4584.0",
+ "16.0.0-nightly.20210803": "94.0.4584.0",
+ "16.0.0-nightly.20210804": "94.0.4584.0",
+ "16.0.0-nightly.20210805": "94.0.4584.0",
+ "16.0.0-nightly.20210806": "94.0.4584.0",
+ "16.0.0-nightly.20210809": "94.0.4584.0",
+ "16.0.0-nightly.20210810": "94.0.4584.0",
+ "16.0.0-nightly.20210811": "94.0.4584.0",
+ "16.0.0-nightly.20210812": "94.0.4590.2",
+ "16.0.0-nightly.20210813": "94.0.4590.2",
+ "16.0.0-nightly.20210816": "94.0.4590.2",
+ "16.0.0-nightly.20210817": "94.0.4590.2",
+ "16.0.0-nightly.20210818": "94.0.4590.2",
+ "16.0.0-nightly.20210819": "94.0.4590.2",
+ "16.0.0-nightly.20210820": "94.0.4590.2",
+ "16.0.0-nightly.20210823": "94.0.4590.2",
+ "16.0.0-nightly.20210824": "95.0.4612.5",
+ "16.0.0-nightly.20210825": "95.0.4612.5",
+ "16.0.0-nightly.20210826": "95.0.4612.5",
+ "16.0.0-nightly.20210827": "95.0.4612.5",
+ "16.0.0-nightly.20210830": "95.0.4612.5",
+ "16.0.0-nightly.20210831": "95.0.4612.5",
+ "16.0.0-nightly.20210901": "95.0.4612.5",
+ "16.0.0-nightly.20210902": "95.0.4629.0",
+ "16.0.0-nightly.20210903": "95.0.4629.0",
+ "16.0.0-nightly.20210906": "95.0.4629.0",
+ "16.0.0-nightly.20210907": "95.0.4629.0",
+ "16.0.0-nightly.20210908": "95.0.4629.0",
+ "16.0.0-nightly.20210909": "95.0.4629.0",
+ "16.0.0-nightly.20210910": "95.0.4629.0",
+ "16.0.0-nightly.20210913": "95.0.4629.0",
+ "16.0.0-nightly.20210914": "95.0.4629.0",
+ "16.0.0-nightly.20210915": "95.0.4629.0",
+ "16.0.0-nightly.20210916": "95.0.4629.0",
+ "16.0.0-nightly.20210917": "95.0.4629.0",
+ "16.0.0-nightly.20210920": "95.0.4629.0",
+ "16.0.0-nightly.20210921": "95.0.4629.0",
+ "16.0.0-nightly.20210922": "95.0.4629.0",
+ "16.0.0": "96.0.4664.45",
+ "16.0.1": "96.0.4664.45",
+ "16.0.2": "96.0.4664.55",
+ "16.0.3": "96.0.4664.55",
+ "16.0.4": "96.0.4664.55",
+ "16.0.5": "96.0.4664.55",
+ "16.0.6": "96.0.4664.110",
+ "16.0.7": "96.0.4664.110",
+ "16.0.8": "96.0.4664.110",
+ "16.0.9": "96.0.4664.174",
+ "16.0.10": "96.0.4664.174",
+ "16.1.0": "96.0.4664.174",
+ "16.1.1": "96.0.4664.174",
+ "16.2.0": "96.0.4664.174",
+ "16.2.1": "96.0.4664.174",
+ "16.2.2": "96.0.4664.174",
+ "16.2.3": "96.0.4664.174",
+ "16.2.4": "96.0.4664.174",
+ "16.2.5": "96.0.4664.174",
+ "16.2.6": "96.0.4664.174",
+ "16.2.7": "96.0.4664.174",
+ "16.2.8": "96.0.4664.174",
+ "17.0.0-alpha.1": "96.0.4664.4",
+ "17.0.0-alpha.2": "96.0.4664.4",
+ "17.0.0-alpha.3": "96.0.4664.4",
+ "17.0.0-alpha.4": "98.0.4706.0",
+ "17.0.0-alpha.5": "98.0.4706.0",
+ "17.0.0-alpha.6": "98.0.4706.0",
+ "17.0.0-beta.1": "98.0.4706.0",
+ "17.0.0-beta.2": "98.0.4706.0",
+ "17.0.0-beta.3": "98.0.4758.9",
+ "17.0.0-beta.4": "98.0.4758.11",
+ "17.0.0-beta.5": "98.0.4758.11",
+ "17.0.0-beta.6": "98.0.4758.11",
+ "17.0.0-beta.7": "98.0.4758.11",
+ "17.0.0-beta.8": "98.0.4758.11",
+ "17.0.0-beta.9": "98.0.4758.11",
+ "17.0.0-nightly.20210923": "95.0.4629.0",
+ "17.0.0-nightly.20210924": "95.0.4629.0",
+ "17.0.0-nightly.20210927": "95.0.4629.0",
+ "17.0.0-nightly.20210928": "95.0.4629.0",
+ "17.0.0-nightly.20210929": "95.0.4629.0",
+ "17.0.0-nightly.20210930": "95.0.4629.0",
+ "17.0.0-nightly.20211001": "95.0.4629.0",
+ "17.0.0-nightly.20211004": "95.0.4629.0",
+ "17.0.0-nightly.20211005": "95.0.4629.0",
+ "17.0.0-nightly.20211006": "96.0.4647.0",
+ "17.0.0-nightly.20211007": "96.0.4647.0",
+ "17.0.0-nightly.20211008": "96.0.4647.0",
+ "17.0.0-nightly.20211011": "96.0.4647.0",
+ "17.0.0-nightly.20211012": "96.0.4647.0",
+ "17.0.0-nightly.20211013": "96.0.4647.0",
+ "17.0.0-nightly.20211014": "96.0.4647.0",
+ "17.0.0-nightly.20211015": "96.0.4647.0",
+ "17.0.0-nightly.20211018": "96.0.4647.0",
+ "17.0.0-nightly.20211019": "96.0.4647.0",
+ "17.0.0-nightly.20211020": "96.0.4647.0",
+ "17.0.0-nightly.20211021": "96.0.4647.0",
+ "17.0.0-nightly.20211022": "96.0.4664.4",
+ "17.0.0-nightly.20211025": "96.0.4664.4",
+ "17.0.0-nightly.20211026": "96.0.4664.4",
+ "17.0.0-nightly.20211027": "96.0.4664.4",
+ "17.0.0-nightly.20211028": "96.0.4664.4",
+ "17.0.0-nightly.20211029": "96.0.4664.4",
+ "17.0.0-nightly.20211101": "96.0.4664.4",
+ "17.0.0-nightly.20211102": "96.0.4664.4",
+ "17.0.0-nightly.20211103": "96.0.4664.4",
+ "17.0.0-nightly.20211104": "96.0.4664.4",
+ "17.0.0-nightly.20211105": "96.0.4664.4",
+ "17.0.0-nightly.20211108": "96.0.4664.4",
+ "17.0.0-nightly.20211109": "96.0.4664.4",
+ "17.0.0-nightly.20211110": "96.0.4664.4",
+ "17.0.0-nightly.20211111": "96.0.4664.4",
+ "17.0.0-nightly.20211112": "96.0.4664.4",
+ "17.0.0-nightly.20211115": "96.0.4664.4",
+ "17.0.0-nightly.20211116": "96.0.4664.4",
+ "17.0.0-nightly.20211117": "96.0.4664.4",
+ "17.0.0": "98.0.4758.74",
+ "17.0.1": "98.0.4758.82",
+ "17.1.0": "98.0.4758.102",
+ "17.1.1": "98.0.4758.109",
+ "17.1.2": "98.0.4758.109",
+ "17.2.0": "98.0.4758.109",
+ "17.3.0": "98.0.4758.141",
+ "17.3.1": "98.0.4758.141",
+ "17.4.0": "98.0.4758.141",
+ "17.4.1": "98.0.4758.141",
+ "17.4.2": "98.0.4758.141",
+ "17.4.3": "98.0.4758.141",
+ "17.4.4": "98.0.4758.141",
+ "17.4.5": "98.0.4758.141",
+ "17.4.6": "98.0.4758.141",
+ "17.4.7": "98.0.4758.141",
+ "17.4.8": "98.0.4758.141",
+ "17.4.9": "98.0.4758.141",
+ "17.4.10": "98.0.4758.141",
+ "17.4.11": "98.0.4758.141",
+ "18.0.0-alpha.1": "99.0.4767.0",
+ "18.0.0-alpha.2": "99.0.4767.0",
+ "18.0.0-alpha.3": "99.0.4767.0",
+ "18.0.0-alpha.4": "99.0.4767.0",
+ "18.0.0-alpha.5": "99.0.4767.0",
+ "18.0.0-beta.1": "100.0.4894.0",
+ "18.0.0-beta.2": "100.0.4894.0",
+ "18.0.0-beta.3": "100.0.4894.0",
+ "18.0.0-beta.4": "100.0.4894.0",
+ "18.0.0-beta.5": "100.0.4894.0",
+ "18.0.0-beta.6": "100.0.4894.0",
+ "18.0.0-nightly.20211118": "96.0.4664.4",
+ "18.0.0-nightly.20211119": "96.0.4664.4",
+ "18.0.0-nightly.20211122": "96.0.4664.4",
+ "18.0.0-nightly.20211123": "96.0.4664.4",
+ "18.0.0-nightly.20211124": "98.0.4706.0",
+ "18.0.0-nightly.20211125": "98.0.4706.0",
+ "18.0.0-nightly.20211126": "98.0.4706.0",
+ "18.0.0-nightly.20211129": "98.0.4706.0",
+ "18.0.0-nightly.20211130": "98.0.4706.0",
+ "18.0.0-nightly.20211201": "98.0.4706.0",
+ "18.0.0-nightly.20211202": "98.0.4706.0",
+ "18.0.0-nightly.20211203": "98.0.4706.0",
+ "18.0.0-nightly.20211206": "98.0.4706.0",
+ "18.0.0-nightly.20211207": "98.0.4706.0",
+ "18.0.0-nightly.20211208": "98.0.4706.0",
+ "18.0.0-nightly.20211209": "98.0.4706.0",
+ "18.0.0-nightly.20211210": "98.0.4706.0",
+ "18.0.0-nightly.20211213": "98.0.4706.0",
+ "18.0.0-nightly.20211214": "98.0.4706.0",
+ "18.0.0-nightly.20211215": "98.0.4706.0",
+ "18.0.0-nightly.20211216": "98.0.4706.0",
+ "18.0.0-nightly.20211217": "98.0.4706.0",
+ "18.0.0-nightly.20211220": "98.0.4706.0",
+ "18.0.0-nightly.20211221": "98.0.4706.0",
+ "18.0.0-nightly.20211222": "98.0.4706.0",
+ "18.0.0-nightly.20211223": "98.0.4706.0",
+ "18.0.0-nightly.20211228": "98.0.4706.0",
+ "18.0.0-nightly.20211229": "98.0.4706.0",
+ "18.0.0-nightly.20211231": "98.0.4706.0",
+ "18.0.0-nightly.20220103": "98.0.4706.0",
+ "18.0.0-nightly.20220104": "98.0.4706.0",
+ "18.0.0-nightly.20220105": "98.0.4706.0",
+ "18.0.0-nightly.20220106": "98.0.4706.0",
+ "18.0.0-nightly.20220107": "98.0.4706.0",
+ "18.0.0-nightly.20220110": "98.0.4706.0",
+ "18.0.0-nightly.20220111": "99.0.4767.0",
+ "18.0.0-nightly.20220112": "99.0.4767.0",
+ "18.0.0-nightly.20220113": "99.0.4767.0",
+ "18.0.0-nightly.20220114": "99.0.4767.0",
+ "18.0.0-nightly.20220117": "99.0.4767.0",
+ "18.0.0-nightly.20220118": "99.0.4767.0",
+ "18.0.0-nightly.20220119": "99.0.4767.0",
+ "18.0.0-nightly.20220121": "99.0.4767.0",
+ "18.0.0-nightly.20220124": "99.0.4767.0",
+ "18.0.0-nightly.20220125": "99.0.4767.0",
+ "18.0.0-nightly.20220127": "99.0.4767.0",
+ "18.0.0-nightly.20220128": "99.0.4767.0",
+ "18.0.0-nightly.20220131": "99.0.4767.0",
+ "18.0.0-nightly.20220201": "99.0.4767.0",
+ "18.0.0": "100.0.4896.56",
+ "18.0.1": "100.0.4896.60",
+ "18.0.2": "100.0.4896.60",
+ "18.0.3": "100.0.4896.75",
+ "18.0.4": "100.0.4896.75",
+ "18.1.0": "100.0.4896.127",
+ "18.2.0": "100.0.4896.143",
+ "18.2.1": "100.0.4896.143",
+ "18.2.2": "100.0.4896.143",
+ "18.2.3": "100.0.4896.143",
+ "18.2.4": "100.0.4896.160",
+ "18.3.0": "100.0.4896.160",
+ "18.3.1": "100.0.4896.160",
+ "18.3.2": "100.0.4896.160",
+ "18.3.3": "100.0.4896.160",
+ "18.3.4": "100.0.4896.160",
+ "18.3.5": "100.0.4896.160",
+ "18.3.6": "100.0.4896.160",
+ "18.3.7": "100.0.4896.160",
+ "18.3.8": "100.0.4896.160",
+ "18.3.9": "100.0.4896.160",
+ "18.3.11": "100.0.4896.160",
+ "18.3.12": "100.0.4896.160",
+ "18.3.13": "100.0.4896.160",
+ "18.3.14": "100.0.4896.160",
+ "18.3.15": "100.0.4896.160",
+ "19.0.0-alpha.1": "102.0.4962.3",
+ "19.0.0-alpha.2": "102.0.4971.0",
+ "19.0.0-alpha.3": "102.0.4971.0",
+ "19.0.0-alpha.4": "102.0.4989.0",
+ "19.0.0-alpha.5": "102.0.4989.0",
+ "19.0.0-beta.1": "102.0.4999.0",
+ "19.0.0-beta.2": "102.0.4999.0",
+ "19.0.0-beta.3": "102.0.4999.0",
+ "19.0.0-beta.4": "102.0.5005.27",
+ "19.0.0-beta.5": "102.0.5005.40",
+ "19.0.0-beta.6": "102.0.5005.40",
+ "19.0.0-beta.7": "102.0.5005.40",
+ "19.0.0-beta.8": "102.0.5005.49",
+ "19.0.0-nightly.20220202": "99.0.4767.0",
+ "19.0.0-nightly.20220203": "99.0.4767.0",
+ "19.0.0-nightly.20220204": "99.0.4767.0",
+ "19.0.0-nightly.20220207": "99.0.4767.0",
+ "19.0.0-nightly.20220208": "99.0.4767.0",
+ "19.0.0-nightly.20220209": "99.0.4767.0",
+ "19.0.0-nightly.20220308": "100.0.4894.0",
+ "19.0.0-nightly.20220309": "100.0.4894.0",
+ "19.0.0-nightly.20220310": "100.0.4894.0",
+ "19.0.0-nightly.20220311": "100.0.4894.0",
+ "19.0.0-nightly.20220314": "100.0.4894.0",
+ "19.0.0-nightly.20220315": "100.0.4894.0",
+ "19.0.0-nightly.20220316": "100.0.4894.0",
+ "19.0.0-nightly.20220317": "100.0.4894.0",
+ "19.0.0-nightly.20220318": "100.0.4894.0",
+ "19.0.0-nightly.20220321": "100.0.4894.0",
+ "19.0.0-nightly.20220322": "100.0.4894.0",
+ "19.0.0-nightly.20220323": "100.0.4894.0",
+ "19.0.0-nightly.20220324": "100.0.4894.0",
+ "19.0.0-nightly.20220325": "102.0.4961.0",
+ "19.0.0-nightly.20220328": "102.0.4962.3",
+ "19.0.0-nightly.20220329": "102.0.4962.3",
+ "19.0.0": "102.0.5005.61",
+ "19.0.1": "102.0.5005.61",
+ "19.0.2": "102.0.5005.63",
+ "19.0.3": "102.0.5005.63",
+ "19.0.4": "102.0.5005.63",
+ "19.0.5": "102.0.5005.115",
+ "19.0.6": "102.0.5005.115",
+ "19.0.7": "102.0.5005.134",
+ "19.0.8": "102.0.5005.148",
+ "19.0.9": "102.0.5005.167",
+ "19.0.10": "102.0.5005.167",
+ "19.0.11": "102.0.5005.167",
+ "19.0.12": "102.0.5005.167",
+ "19.0.13": "102.0.5005.167",
+ "19.0.14": "102.0.5005.167",
+ "19.0.15": "102.0.5005.167",
+ "19.0.16": "102.0.5005.167",
+ "19.0.17": "102.0.5005.167",
+ "19.1.0": "102.0.5005.167",
+ "19.1.1": "102.0.5005.167",
+ "19.1.2": "102.0.5005.167",
+ "19.1.3": "102.0.5005.167",
+ "19.1.4": "102.0.5005.167",
+ "19.1.5": "102.0.5005.167",
+ "19.1.6": "102.0.5005.167",
+ "19.1.7": "102.0.5005.167",
+ "19.1.8": "102.0.5005.167",
+ "19.1.9": "102.0.5005.167",
+ "20.0.0-alpha.1": "103.0.5044.0",
+ "20.0.0-alpha.2": "104.0.5073.0",
+ "20.0.0-alpha.3": "104.0.5073.0",
+ "20.0.0-alpha.4": "104.0.5073.0",
+ "20.0.0-alpha.5": "104.0.5073.0",
+ "20.0.0-alpha.6": "104.0.5073.0",
+ "20.0.0-alpha.7": "104.0.5073.0",
+ "20.0.0-beta.1": "104.0.5073.0",
+ "20.0.0-beta.2": "104.0.5073.0",
+ "20.0.0-beta.3": "104.0.5073.0",
+ "20.0.0-beta.4": "104.0.5073.0",
+ "20.0.0-beta.5": "104.0.5073.0",
+ "20.0.0-beta.6": "104.0.5073.0",
+ "20.0.0-beta.7": "104.0.5073.0",
+ "20.0.0-beta.8": "104.0.5073.0",
+ "20.0.0-beta.9": "104.0.5112.39",
+ "20.0.0-beta.10": "104.0.5112.48",
+ "20.0.0-beta.11": "104.0.5112.48",
+ "20.0.0-beta.12": "104.0.5112.48",
+ "20.0.0-beta.13": "104.0.5112.57",
+ "20.0.0-nightly.20220330": "102.0.4962.3",
+ "20.0.0-nightly.20220411": "102.0.4971.0",
+ "20.0.0-nightly.20220414": "102.0.4989.0",
+ "20.0.0-nightly.20220415": "102.0.4989.0",
+ "20.0.0-nightly.20220418": "102.0.4989.0",
+ "20.0.0-nightly.20220419": "102.0.4989.0",
+ "20.0.0-nightly.20220420": "102.0.4989.0",
+ "20.0.0-nightly.20220421": "102.0.4989.0",
+ "20.0.0-nightly.20220425": "102.0.4999.0",
+ "20.0.0-nightly.20220426": "102.0.4999.0",
+ "20.0.0-nightly.20220427": "102.0.4999.0",
+ "20.0.0-nightly.20220428": "102.0.4999.0",
+ "20.0.0-nightly.20220429": "102.0.4999.0",
+ "20.0.0-nightly.20220502": "102.0.4999.0",
+ "20.0.0-nightly.20220503": "102.0.4999.0",
+ "20.0.0-nightly.20220504": "102.0.4999.0",
+ "20.0.0-nightly.20220505": "102.0.4999.0",
+ "20.0.0-nightly.20220506": "102.0.4999.0",
+ "20.0.0-nightly.20220509": "102.0.4999.0",
+ "20.0.0-nightly.20220511": "102.0.4999.0",
+ "20.0.0-nightly.20220512": "102.0.4999.0",
+ "20.0.0-nightly.20220513": "102.0.4999.0",
+ "20.0.0-nightly.20220516": "102.0.4999.0",
+ "20.0.0-nightly.20220517": "102.0.4999.0",
+ "20.0.0-nightly.20220518": "103.0.5044.0",
+ "20.0.0-nightly.20220519": "103.0.5044.0",
+ "20.0.0-nightly.20220520": "103.0.5044.0",
+ "20.0.0-nightly.20220523": "103.0.5044.0",
+ "20.0.0-nightly.20220524": "103.0.5044.0",
+ "20.0.0": "104.0.5112.65",
+ "20.0.1": "104.0.5112.81",
+ "20.0.2": "104.0.5112.81",
+ "20.0.3": "104.0.5112.81",
+ "20.1.0": "104.0.5112.102",
+ "20.1.1": "104.0.5112.102",
+ "20.1.2": "104.0.5112.114",
+ "20.1.3": "104.0.5112.114",
+ "20.1.4": "104.0.5112.114",
+ "20.2.0": "104.0.5112.124",
+ "20.3.0": "104.0.5112.124",
+ "20.3.1": "104.0.5112.124",
+ "20.3.2": "104.0.5112.124",
+ "20.3.3": "104.0.5112.124",
+ "20.3.4": "104.0.5112.124",
+ "20.3.5": "104.0.5112.124",
+ "20.3.6": "104.0.5112.124",
+ "20.3.7": "104.0.5112.124",
+ "20.3.8": "104.0.5112.124",
+ "20.3.9": "104.0.5112.124",
+ "20.3.10": "104.0.5112.124",
+ "20.3.11": "104.0.5112.124",
+ "20.3.12": "104.0.5112.124",
+ "21.0.0-alpha.1": "105.0.5187.0",
+ "21.0.0-alpha.2": "105.0.5187.0",
+ "21.0.0-alpha.3": "105.0.5187.0",
+ "21.0.0-alpha.4": "105.0.5187.0",
+ "21.0.0-alpha.5": "105.0.5187.0",
+ "21.0.0-alpha.6": "106.0.5216.0",
+ "21.0.0-beta.1": "106.0.5216.0",
+ "21.0.0-beta.2": "106.0.5216.0",
+ "21.0.0-beta.3": "106.0.5216.0",
+ "21.0.0-beta.4": "106.0.5216.0",
+ "21.0.0-beta.5": "106.0.5216.0",
+ "21.0.0-beta.6": "106.0.5249.40",
+ "21.0.0-beta.7": "106.0.5249.40",
+ "21.0.0-beta.8": "106.0.5249.40",
+ "21.0.0-nightly.20220526": "103.0.5044.0",
+ "21.0.0-nightly.20220527": "103.0.5044.0",
+ "21.0.0-nightly.20220530": "103.0.5044.0",
+ "21.0.0-nightly.20220531": "103.0.5044.0",
+ "21.0.0-nightly.20220602": "104.0.5073.0",
+ "21.0.0-nightly.20220603": "104.0.5073.0",
+ "21.0.0-nightly.20220606": "104.0.5073.0",
+ "21.0.0-nightly.20220607": "104.0.5073.0",
+ "21.0.0-nightly.20220608": "104.0.5073.0",
+ "21.0.0-nightly.20220609": "104.0.5073.0",
+ "21.0.0-nightly.20220610": "104.0.5073.0",
+ "21.0.0-nightly.20220613": "104.0.5073.0",
+ "21.0.0-nightly.20220614": "104.0.5073.0",
+ "21.0.0-nightly.20220615": "104.0.5073.0",
+ "21.0.0-nightly.20220616": "104.0.5073.0",
+ "21.0.0-nightly.20220617": "104.0.5073.0",
+ "21.0.0-nightly.20220620": "104.0.5073.0",
+ "21.0.0-nightly.20220621": "104.0.5073.0",
+ "21.0.0-nightly.20220622": "104.0.5073.0",
+ "21.0.0-nightly.20220623": "104.0.5073.0",
+ "21.0.0-nightly.20220624": "104.0.5073.0",
+ "21.0.0-nightly.20220627": "104.0.5073.0",
+ "21.0.0-nightly.20220628": "105.0.5129.0",
+ "21.0.0-nightly.20220629": "105.0.5129.0",
+ "21.0.0-nightly.20220630": "105.0.5129.0",
+ "21.0.0-nightly.20220701": "105.0.5129.0",
+ "21.0.0-nightly.20220704": "105.0.5129.0",
+ "21.0.0-nightly.20220705": "105.0.5129.0",
+ "21.0.0-nightly.20220706": "105.0.5129.0",
+ "21.0.0-nightly.20220707": "105.0.5129.0",
+ "21.0.0-nightly.20220708": "105.0.5129.0",
+ "21.0.0-nightly.20220711": "105.0.5129.0",
+ "21.0.0-nightly.20220712": "105.0.5129.0",
+ "21.0.0-nightly.20220713": "105.0.5129.0",
+ "21.0.0-nightly.20220715": "105.0.5173.0",
+ "21.0.0-nightly.20220718": "105.0.5173.0",
+ "21.0.0-nightly.20220719": "105.0.5173.0",
+ "21.0.0-nightly.20220720": "105.0.5187.0",
+ "21.0.0-nightly.20220721": "105.0.5187.0",
+ "21.0.0-nightly.20220722": "105.0.5187.0",
+ "21.0.0-nightly.20220725": "105.0.5187.0",
+ "21.0.0-nightly.20220726": "105.0.5187.0",
+ "21.0.0-nightly.20220727": "105.0.5187.0",
+ "21.0.0-nightly.20220728": "105.0.5187.0",
+ "21.0.0-nightly.20220801": "105.0.5187.0",
+ "21.0.0-nightly.20220802": "105.0.5187.0",
+ "21.0.0": "106.0.5249.51",
+ "21.0.1": "106.0.5249.61",
+ "21.1.0": "106.0.5249.91",
+ "21.1.1": "106.0.5249.103",
+ "21.2.0": "106.0.5249.119",
+ "21.2.1": "106.0.5249.165",
+ "21.2.2": "106.0.5249.168",
+ "21.2.3": "106.0.5249.168",
+ "21.3.0": "106.0.5249.181",
+ "21.3.1": "106.0.5249.181",
+ "21.3.3": "106.0.5249.199",
+ "21.3.4": "106.0.5249.199",
+ "21.3.5": "106.0.5249.199",
+ "21.4.0": "106.0.5249.199",
+ "21.4.1": "106.0.5249.199",
+ "21.4.2": "106.0.5249.199",
+ "21.4.3": "106.0.5249.199",
+ "21.4.4": "106.0.5249.199",
+ "22.0.0-alpha.1": "107.0.5286.0",
+ "22.0.0-alpha.3": "108.0.5329.0",
+ "22.0.0-alpha.4": "108.0.5329.0",
+ "22.0.0-alpha.5": "108.0.5329.0",
+ "22.0.0-alpha.6": "108.0.5329.0",
+ "22.0.0-alpha.7": "108.0.5355.0",
+ "22.0.0-alpha.8": "108.0.5359.10",
+ "22.0.0-beta.1": "108.0.5359.10",
+ "22.0.0-beta.2": "108.0.5359.10",
+ "22.0.0-beta.3": "108.0.5359.10",
+ "22.0.0-beta.4": "108.0.5359.29",
+ "22.0.0-beta.5": "108.0.5359.40",
+ "22.0.0-beta.6": "108.0.5359.40",
+ "22.0.0-beta.7": "108.0.5359.48",
+ "22.0.0-beta.8": "108.0.5359.48",
+ "22.0.0-nightly.20220808": "105.0.5187.0",
+ "22.0.0-nightly.20220809": "105.0.5187.0",
+ "22.0.0-nightly.20220810": "105.0.5187.0",
+ "22.0.0-nightly.20220811": "105.0.5187.0",
+ "22.0.0-nightly.20220812": "105.0.5187.0",
+ "22.0.0-nightly.20220815": "105.0.5187.0",
+ "22.0.0-nightly.20220816": "105.0.5187.0",
+ "22.0.0-nightly.20220817": "105.0.5187.0",
+ "22.0.0-nightly.20220822": "106.0.5216.0",
+ "22.0.0-nightly.20220823": "106.0.5216.0",
+ "22.0.0-nightly.20220824": "106.0.5216.0",
+ "22.0.0-nightly.20220825": "106.0.5216.0",
+ "22.0.0-nightly.20220829": "106.0.5216.0",
+ "22.0.0-nightly.20220830": "106.0.5216.0",
+ "22.0.0-nightly.20220831": "106.0.5216.0",
+ "22.0.0-nightly.20220901": "106.0.5216.0",
+ "22.0.0-nightly.20220902": "106.0.5216.0",
+ "22.0.0-nightly.20220905": "106.0.5216.0",
+ "22.0.0-nightly.20220908": "107.0.5274.0",
+ "22.0.0-nightly.20220909": "107.0.5286.0",
+ "22.0.0-nightly.20220912": "107.0.5286.0",
+ "22.0.0-nightly.20220913": "107.0.5286.0",
+ "22.0.0-nightly.20220914": "107.0.5286.0",
+ "22.0.0-nightly.20220915": "107.0.5286.0",
+ "22.0.0-nightly.20220916": "107.0.5286.0",
+ "22.0.0-nightly.20220919": "107.0.5286.0",
+ "22.0.0-nightly.20220920": "107.0.5286.0",
+ "22.0.0-nightly.20220921": "107.0.5286.0",
+ "22.0.0-nightly.20220922": "107.0.5286.0",
+ "22.0.0-nightly.20220923": "107.0.5286.0",
+ "22.0.0-nightly.20220926": "107.0.5286.0",
+ "22.0.0-nightly.20220927": "107.0.5286.0",
+ "22.0.0-nightly.20220928": "107.0.5286.0",
+ "22.0.0": "108.0.5359.62",
+ "22.0.1": "108.0.5359.125",
+ "22.0.2": "108.0.5359.179",
+ "22.0.3": "108.0.5359.179",
+ "22.1.0": "108.0.5359.179",
+ "22.2.0": "108.0.5359.215",
+ "22.2.1": "108.0.5359.215",
+ "22.3.0": "108.0.5359.215",
+ "22.3.1": "108.0.5359.215",
+ "22.3.2": "108.0.5359.215",
+ "22.3.3": "108.0.5359.215",
+ "22.3.4": "108.0.5359.215",
+ "22.3.5": "108.0.5359.215",
+ "22.3.6": "108.0.5359.215",
+ "22.3.7": "108.0.5359.215",
+ "22.3.8": "108.0.5359.215",
+ "22.3.9": "108.0.5359.215",
+ "22.3.10": "108.0.5359.215",
+ "22.3.11": "108.0.5359.215",
+ "23.0.0-alpha.1": "110.0.5415.0",
+ "23.0.0-alpha.2": "110.0.5451.0",
+ "23.0.0-alpha.3": "110.0.5451.0",
+ "23.0.0-beta.1": "110.0.5478.5",
+ "23.0.0-beta.2": "110.0.5478.5",
+ "23.0.0-beta.3": "110.0.5478.5",
+ "23.0.0-beta.4": "110.0.5481.30",
+ "23.0.0-beta.5": "110.0.5481.38",
+ "23.0.0-beta.6": "110.0.5481.52",
+ "23.0.0-beta.8": "110.0.5481.52",
+ "23.0.0-nightly.20220929": "107.0.5286.0",
+ "23.0.0-nightly.20220930": "107.0.5286.0",
+ "23.0.0-nightly.20221003": "107.0.5286.0",
+ "23.0.0-nightly.20221004": "108.0.5329.0",
+ "23.0.0-nightly.20221005": "108.0.5329.0",
+ "23.0.0-nightly.20221006": "108.0.5329.0",
+ "23.0.0-nightly.20221007": "108.0.5329.0",
+ "23.0.0-nightly.20221010": "108.0.5329.0",
+ "23.0.0-nightly.20221011": "108.0.5329.0",
+ "23.0.0-nightly.20221012": "108.0.5329.0",
+ "23.0.0-nightly.20221013": "108.0.5329.0",
+ "23.0.0-nightly.20221014": "108.0.5329.0",
+ "23.0.0-nightly.20221017": "108.0.5329.0",
+ "23.0.0-nightly.20221018": "108.0.5355.0",
+ "23.0.0-nightly.20221019": "108.0.5355.0",
+ "23.0.0-nightly.20221020": "108.0.5355.0",
+ "23.0.0-nightly.20221021": "108.0.5355.0",
+ "23.0.0-nightly.20221024": "108.0.5355.0",
+ "23.0.0-nightly.20221026": "108.0.5355.0",
+ "23.0.0-nightly.20221027": "109.0.5382.0",
+ "23.0.0-nightly.20221028": "109.0.5382.0",
+ "23.0.0-nightly.20221031": "109.0.5382.0",
+ "23.0.0-nightly.20221101": "109.0.5382.0",
+ "23.0.0-nightly.20221102": "109.0.5382.0",
+ "23.0.0-nightly.20221103": "109.0.5382.0",
+ "23.0.0-nightly.20221104": "109.0.5382.0",
+ "23.0.0-nightly.20221107": "109.0.5382.0",
+ "23.0.0-nightly.20221108": "109.0.5382.0",
+ "23.0.0-nightly.20221109": "109.0.5382.0",
+ "23.0.0-nightly.20221110": "109.0.5382.0",
+ "23.0.0-nightly.20221111": "109.0.5382.0",
+ "23.0.0-nightly.20221114": "109.0.5382.0",
+ "23.0.0-nightly.20221115": "109.0.5382.0",
+ "23.0.0-nightly.20221116": "109.0.5382.0",
+ "23.0.0-nightly.20221117": "109.0.5382.0",
+ "23.0.0-nightly.20221118": "110.0.5415.0",
+ "23.0.0-nightly.20221121": "110.0.5415.0",
+ "23.0.0-nightly.20221122": "110.0.5415.0",
+ "23.0.0-nightly.20221123": "110.0.5415.0",
+ "23.0.0-nightly.20221124": "110.0.5415.0",
+ "23.0.0-nightly.20221125": "110.0.5415.0",
+ "23.0.0-nightly.20221128": "110.0.5415.0",
+ "23.0.0-nightly.20221129": "110.0.5415.0",
+ "23.0.0-nightly.20221130": "110.0.5415.0",
+ "23.0.0": "110.0.5481.77",
+ "23.1.0": "110.0.5481.100",
+ "23.1.1": "110.0.5481.104",
+ "23.1.2": "110.0.5481.177",
+ "23.1.3": "110.0.5481.179",
+ "23.1.4": "110.0.5481.192",
+ "23.2.0": "110.0.5481.192",
+ "23.2.1": "110.0.5481.208",
+ "23.2.2": "110.0.5481.208",
+ "23.2.3": "110.0.5481.208",
+ "23.2.4": "110.0.5481.208",
+ "23.3.0": "110.0.5481.208",
+ "23.3.1": "110.0.5481.208",
+ "23.3.2": "110.0.5481.208",
+ "23.3.3": "110.0.5481.208",
+ "23.3.4": "110.0.5481.208",
+ "24.0.0-alpha.1": "111.0.5560.0",
+ "24.0.0-alpha.2": "111.0.5560.0",
+ "24.0.0-alpha.3": "111.0.5560.0",
+ "24.0.0-alpha.4": "111.0.5560.0",
+ "24.0.0-alpha.5": "111.0.5560.0",
+ "24.0.0-alpha.6": "111.0.5560.0",
+ "24.0.0-alpha.7": "111.0.5560.0",
+ "24.0.0-beta.1": "111.0.5563.50",
+ "24.0.0-beta.2": "111.0.5563.50",
+ "24.0.0-beta.3": "112.0.5615.20",
+ "24.0.0-beta.4": "112.0.5615.20",
+ "24.0.0-beta.5": "112.0.5615.29",
+ "24.0.0-beta.6": "112.0.5615.39",
+ "24.0.0-beta.7": "112.0.5615.39",
+ "24.0.0-nightly.20221201": "110.0.5415.0",
+ "24.0.0-nightly.20221202": "110.0.5415.0",
+ "24.0.0-nightly.20221205": "110.0.5415.0",
+ "24.0.0-nightly.20221206": "110.0.5451.0",
+ "24.0.0-nightly.20221207": "110.0.5451.0",
+ "24.0.0-nightly.20221208": "110.0.5451.0",
+ "24.0.0-nightly.20221213": "110.0.5451.0",
+ "24.0.0-nightly.20221214": "110.0.5451.0",
+ "24.0.0-nightly.20221215": "110.0.5451.0",
+ "24.0.0-nightly.20221216": "110.0.5451.0",
+ "24.0.0-nightly.20230109": "111.0.5518.0",
+ "24.0.0-nightly.20230110": "111.0.5518.0",
+ "24.0.0-nightly.20230111": "111.0.5518.0",
+ "24.0.0-nightly.20230112": "111.0.5518.0",
+ "24.0.0-nightly.20230113": "111.0.5518.0",
+ "24.0.0-nightly.20230116": "111.0.5518.0",
+ "24.0.0-nightly.20230117": "111.0.5518.0",
+ "24.0.0-nightly.20230118": "111.0.5518.0",
+ "24.0.0-nightly.20230119": "111.0.5518.0",
+ "24.0.0-nightly.20230120": "111.0.5518.0",
+ "24.0.0-nightly.20230123": "111.0.5518.0",
+ "24.0.0-nightly.20230124": "111.0.5518.0",
+ "24.0.0-nightly.20230125": "111.0.5518.0",
+ "24.0.0-nightly.20230126": "111.0.5518.0",
+ "24.0.0-nightly.20230127": "111.0.5518.0",
+ "24.0.0-nightly.20230131": "111.0.5518.0",
+ "24.0.0-nightly.20230201": "111.0.5518.0",
+ "24.0.0-nightly.20230202": "111.0.5518.0",
+ "24.0.0-nightly.20230203": "111.0.5560.0",
+ "24.0.0-nightly.20230206": "111.0.5560.0",
+ "24.0.0-nightly.20230207": "111.0.5560.0",
+ "24.0.0-nightly.20230208": "111.0.5560.0",
+ "24.0.0-nightly.20230209": "111.0.5560.0",
+ "24.0.0": "112.0.5615.49",
+ "24.1.0": "112.0.5615.50",
+ "24.1.1": "112.0.5615.50",
+ "24.1.2": "112.0.5615.87",
+ "24.1.3": "112.0.5615.165",
+ "24.2.0": "112.0.5615.165",
+ "24.3.0": "112.0.5615.165",
+ "24.3.1": "112.0.5615.183",
+ "24.4.0": "112.0.5615.204",
+ "24.4.1": "112.0.5615.204",
+ "25.0.0-alpha.1": "114.0.5694.0",
+ "25.0.0-alpha.2": "114.0.5694.0",
+ "25.0.0-alpha.3": "114.0.5710.0",
+ "25.0.0-alpha.4": "114.0.5710.0",
+ "25.0.0-alpha.5": "114.0.5719.0",
+ "25.0.0-alpha.6": "114.0.5719.0",
+ "25.0.0-beta.1": "114.0.5719.0",
+ "25.0.0-beta.2": "114.0.5719.0",
+ "25.0.0-beta.3": "114.0.5719.0",
+ "25.0.0-beta.4": "114.0.5735.16",
+ "25.0.0-beta.5": "114.0.5735.16",
+ "25.0.0-beta.6": "114.0.5735.16",
+ "25.0.0-beta.7": "114.0.5735.16",
+ "25.0.0-beta.8": "114.0.5735.35",
+ "25.0.0-beta.9": "114.0.5735.45",
+ "25.0.0-nightly.20230210": "111.0.5560.0",
+ "25.0.0-nightly.20230214": "111.0.5560.0",
+ "25.0.0-nightly.20230215": "111.0.5560.0",
+ "25.0.0-nightly.20230216": "111.0.5560.0",
+ "25.0.0-nightly.20230217": "111.0.5560.0",
+ "25.0.0-nightly.20230220": "111.0.5560.0",
+ "25.0.0-nightly.20230221": "111.0.5560.0",
+ "25.0.0-nightly.20230222": "111.0.5560.0",
+ "25.0.0-nightly.20230223": "111.0.5560.0",
+ "25.0.0-nightly.20230224": "111.0.5560.0",
+ "25.0.0-nightly.20230227": "111.0.5560.0",
+ "25.0.0-nightly.20230228": "111.0.5560.0",
+ "25.0.0-nightly.20230301": "111.0.5560.0",
+ "25.0.0-nightly.20230302": "111.0.5560.0",
+ "25.0.0-nightly.20230303": "111.0.5560.0",
+ "25.0.0-nightly.20230306": "111.0.5560.0",
+ "25.0.0-nightly.20230307": "111.0.5560.0",
+ "25.0.0-nightly.20230308": "111.0.5560.0",
+ "25.0.0-nightly.20230309": "111.0.5560.0",
+ "25.0.0-nightly.20230310": "111.0.5560.0",
+ "25.0.0-nightly.20230314": "113.0.5636.0",
+ "25.0.0-nightly.20230315": "113.0.5651.0",
+ "25.0.0-nightly.20230317": "113.0.5653.0",
+ "25.0.0-nightly.20230320": "113.0.5660.0",
+ "25.0.0-nightly.20230321": "113.0.5664.0",
+ "25.0.0-nightly.20230322": "113.0.5666.0",
+ "25.0.0-nightly.20230323": "113.0.5668.0",
+ "25.0.0-nightly.20230324": "113.0.5670.0",
+ "25.0.0-nightly.20230327": "113.0.5670.0",
+ "25.0.0-nightly.20230328": "113.0.5670.0",
+ "25.0.0-nightly.20230329": "113.0.5670.0",
+ "25.0.0-nightly.20230330": "113.0.5670.0",
+ "25.0.0-nightly.20230331": "114.0.5684.0",
+ "25.0.0-nightly.20230403": "114.0.5684.0",
+ "25.0.0-nightly.20230404": "114.0.5692.0",
+ "25.0.0-nightly.20230405": "114.0.5694.0",
+ "25.0.0": "114.0.5735.45",
+ "26.0.0-nightly.20230406": "114.0.5694.0",
+ "26.0.0-nightly.20230407": "114.0.5694.0",
+ "26.0.0-nightly.20230410": "114.0.5694.0",
+ "26.0.0-nightly.20230411": "114.0.5694.0",
+ "26.0.0-nightly.20230412": "114.0.5708.0",
+ "26.0.0-nightly.20230413": "114.0.5710.0",
+ "26.0.0-nightly.20230414": "114.0.5710.0",
+ "26.0.0-nightly.20230417": "114.0.5710.0",
+ "26.0.0-nightly.20230418": "114.0.5715.0",
+ "26.0.0-nightly.20230421": "114.0.5719.0",
+ "26.0.0-nightly.20230424": "114.0.5719.0",
+ "26.0.0-nightly.20230425": "114.0.5719.0",
+ "26.0.0-nightly.20230426": "114.0.5719.0",
+ "26.0.0-nightly.20230427": "114.0.5719.0",
+ "26.0.0-nightly.20230428": "114.0.5719.0",
+ "26.0.0-nightly.20230501": "114.0.5719.0",
+ "26.0.0-nightly.20230502": "114.0.5719.0",
+ "26.0.0-nightly.20230503": "114.0.5719.0",
+ "26.0.0-nightly.20230504": "114.0.5719.0",
+ "26.0.0-nightly.20230505": "114.0.5719.0",
+ "26.0.0-nightly.20230508": "114.0.5719.0",
+ "26.0.0-nightly.20230509": "114.0.5719.0",
+ "26.0.0-nightly.20230510": "114.0.5719.0",
+ "26.0.0-nightly.20230511": "115.0.5760.0",
+ "26.0.0-nightly.20230512": "115.0.5760.0",
+ "26.0.0-nightly.20230515": "115.0.5760.0",
+ "26.0.0-nightly.20230516": "115.0.5760.0",
+ "26.0.0-nightly.20230517": "115.0.5760.0",
+ "26.0.0-nightly.20230518": "115.0.5760.0",
+ "26.0.0-nightly.20230519": "115.0.5760.0",
+ "26.0.0-nightly.20230522": "115.0.5760.0",
+ "26.0.0-nightly.20230523": "115.0.5760.0",
+ "26.0.0-nightly.20230524": "115.0.5786.0",
+ "26.0.0-nightly.20230525": "115.0.5790.0",
+ "26.0.0-nightly.20230526": "116.0.5791.0",
+ "26.0.0-nightly.20230529": "116.0.5791.0"
+};
\ No newline at end of file
diff --git a/node_modules/electron-to-chromium/full-versions.json b/node_modules/electron-to-chromium/full-versions.json
new file mode 100644
index 0000000..b2a15bd
--- /dev/null
+++ b/node_modules/electron-to-chromium/full-versions.json
@@ -0,0 +1 @@
+{"0.20.0":"39.0.2171.65","0.20.1":"39.0.2171.65","0.20.2":"39.0.2171.65","0.20.3":"39.0.2171.65","0.20.4":"39.0.2171.65","0.20.5":"39.0.2171.65","0.20.6":"39.0.2171.65","0.20.7":"39.0.2171.65","0.20.8":"39.0.2171.65","0.21.0":"40.0.2214.91","0.21.1":"40.0.2214.91","0.21.2":"40.0.2214.91","0.21.3":"41.0.2272.76","0.22.1":"41.0.2272.76","0.22.2":"41.0.2272.76","0.22.3":"41.0.2272.76","0.23.0":"41.0.2272.76","0.24.0":"41.0.2272.76","0.25.0":"42.0.2311.107","0.25.1":"42.0.2311.107","0.25.2":"42.0.2311.107","0.25.3":"42.0.2311.107","0.26.0":"42.0.2311.107","0.26.1":"42.0.2311.107","0.27.0":"42.0.2311.107","0.27.1":"42.0.2311.107","0.27.2":"43.0.2357.65","0.27.3":"43.0.2357.65","0.28.0":"43.0.2357.65","0.28.1":"43.0.2357.65","0.28.2":"43.0.2357.65","0.28.3":"43.0.2357.65","0.29.1":"43.0.2357.65","0.29.2":"43.0.2357.65","0.30.4":"44.0.2403.125","0.31.0":"44.0.2403.125","0.31.2":"45.0.2454.85","0.32.2":"45.0.2454.85","0.32.3":"45.0.2454.85","0.33.0":"45.0.2454.85","0.33.1":"45.0.2454.85","0.33.2":"45.0.2454.85","0.33.3":"45.0.2454.85","0.33.4":"45.0.2454.85","0.33.6":"45.0.2454.85","0.33.7":"45.0.2454.85","0.33.8":"45.0.2454.85","0.33.9":"45.0.2454.85","0.34.0":"45.0.2454.85","0.34.1":"45.0.2454.85","0.34.2":"45.0.2454.85","0.34.3":"45.0.2454.85","0.34.4":"45.0.2454.85","0.35.1":"45.0.2454.85","0.35.2":"45.0.2454.85","0.35.3":"45.0.2454.85","0.35.4":"45.0.2454.85","0.35.5":"45.0.2454.85","0.36.0":"47.0.2526.73","0.36.2":"47.0.2526.73","0.36.3":"47.0.2526.73","0.36.4":"47.0.2526.73","0.36.5":"47.0.2526.110","0.36.6":"47.0.2526.110","0.36.7":"47.0.2526.110","0.36.8":"47.0.2526.110","0.36.9":"47.0.2526.110","0.36.10":"47.0.2526.110","0.36.11":"47.0.2526.110","0.36.12":"47.0.2526.110","0.37.0":"49.0.2623.75","0.37.1":"49.0.2623.75","0.37.3":"49.0.2623.75","0.37.4":"49.0.2623.75","0.37.5":"49.0.2623.75","0.37.6":"49.0.2623.75","0.37.7":"49.0.2623.75","0.37.8":"49.0.2623.75","1.0.0":"49.0.2623.75","1.0.1":"49.0.2623.75","1.0.2":"49.0.2623.75","1.1.0":"50.0.2661.102","1.1.1":"50.0.2661.102","1.1.2":"50.0.2661.102","1.1.3":"50.0.2661.102","1.2.0":"51.0.2704.63","1.2.1":"51.0.2704.63","1.2.2":"51.0.2704.84","1.2.3":"51.0.2704.84","1.2.4":"51.0.2704.103","1.2.5":"51.0.2704.103","1.2.6":"51.0.2704.106","1.2.7":"51.0.2704.106","1.2.8":"51.0.2704.106","1.3.0":"52.0.2743.82","1.3.1":"52.0.2743.82","1.3.2":"52.0.2743.82","1.3.3":"52.0.2743.82","1.3.4":"52.0.2743.82","1.3.5":"52.0.2743.82","1.3.6":"52.0.2743.82","1.3.7":"52.0.2743.82","1.3.9":"52.0.2743.82","1.3.10":"52.0.2743.82","1.3.13":"52.0.2743.82","1.3.14":"52.0.2743.82","1.3.15":"52.0.2743.82","1.4.0":"53.0.2785.113","1.4.1":"53.0.2785.113","1.4.2":"53.0.2785.113","1.4.3":"53.0.2785.113","1.4.4":"53.0.2785.113","1.4.5":"53.0.2785.113","1.4.6":"53.0.2785.143","1.4.7":"53.0.2785.143","1.4.8":"53.0.2785.143","1.4.10":"53.0.2785.143","1.4.11":"53.0.2785.143","1.4.12":"54.0.2840.51","1.4.13":"53.0.2785.143","1.4.14":"53.0.2785.143","1.4.15":"53.0.2785.143","1.4.16":"53.0.2785.143","1.5.0":"54.0.2840.101","1.5.1":"54.0.2840.101","1.6.0":"56.0.2924.87","1.6.1":"56.0.2924.87","1.6.2":"56.0.2924.87","1.6.3":"56.0.2924.87","1.6.4":"56.0.2924.87","1.6.5":"56.0.2924.87","1.6.6":"56.0.2924.87","1.6.7":"56.0.2924.87","1.6.8":"56.0.2924.87","1.6.9":"56.0.2924.87","1.6.10":"56.0.2924.87","1.6.11":"56.0.2924.87","1.6.12":"56.0.2924.87","1.6.13":"56.0.2924.87","1.6.14":"56.0.2924.87","1.6.15":"56.0.2924.87","1.6.16":"56.0.2924.87","1.6.17":"56.0.2924.87","1.6.18":"56.0.2924.87","1.7.0":"58.0.3029.110","1.7.1":"58.0.3029.110","1.7.2":"58.0.3029.110","1.7.3":"58.0.3029.110","1.7.4":"58.0.3029.110","1.7.5":"58.0.3029.110","1.7.6":"58.0.3029.110","1.7.7":"58.0.3029.110","1.7.8":"58.0.3029.110","1.7.9":"58.0.3029.110","1.7.10":"58.0.3029.110","1.7.11":"58.0.3029.110","1.7.12":"58.0.3029.110","1.7.13":"58.0.3029.110","1.7.14":"58.0.3029.110","1.7.15":"58.0.3029.110","1.7.16":"58.0.3029.110","1.8.0":"59.0.3071.115","1.8.1":"59.0.3071.115","1.8.2-beta.1":"59.0.3071.115","1.8.2-beta.2":"59.0.3071.115","1.8.2-beta.3":"59.0.3071.115","1.8.2-beta.4":"59.0.3071.115","1.8.2-beta.5":"59.0.3071.115","1.8.2":"59.0.3071.115","1.8.3":"59.0.3071.115","1.8.4":"59.0.3071.115","1.8.5":"59.0.3071.115","1.8.6":"59.0.3071.115","1.8.7":"59.0.3071.115","1.8.8":"59.0.3071.115","2.0.0-beta.1":"61.0.3163.100","2.0.0-beta.2":"61.0.3163.100","2.0.0-beta.3":"61.0.3163.100","2.0.0-beta.4":"61.0.3163.100","2.0.0-beta.5":"61.0.3163.100","2.0.0-beta.6":"61.0.3163.100","2.0.0-beta.7":"61.0.3163.100","2.0.0-beta.8":"61.0.3163.100","2.0.0":"61.0.3163.100","2.0.1":"61.0.3163.100","2.0.2":"61.0.3163.100","2.0.3":"61.0.3163.100","2.0.4":"61.0.3163.100","2.0.5":"61.0.3163.100","2.0.6":"61.0.3163.100","2.0.7":"61.0.3163.100","2.0.8-nightly.20180819":"61.0.3163.100","2.0.8-nightly.20180820":"61.0.3163.100","2.0.8":"61.0.3163.100","2.0.9":"61.0.3163.100","2.0.10":"61.0.3163.100","2.0.11":"61.0.3163.100","2.0.12":"61.0.3163.100","2.0.13":"61.0.3163.100","2.0.14":"61.0.3163.100","2.0.15":"61.0.3163.100","2.0.16":"61.0.3163.100","2.0.17":"61.0.3163.100","2.0.18":"61.0.3163.100","2.1.0-unsupported.20180809":"61.0.3163.100","3.0.0-beta.1":"66.0.3359.181","3.0.0-beta.2":"66.0.3359.181","3.0.0-beta.3":"66.0.3359.181","3.0.0-beta.4":"66.0.3359.181","3.0.0-beta.5":"66.0.3359.181","3.0.0-beta.6":"66.0.3359.181","3.0.0-beta.7":"66.0.3359.181","3.0.0-beta.8":"66.0.3359.181","3.0.0-beta.9":"66.0.3359.181","3.0.0-beta.10":"66.0.3359.181","3.0.0-beta.11":"66.0.3359.181","3.0.0-beta.12":"66.0.3359.181","3.0.0-beta.13":"66.0.3359.181","3.0.0-nightly.20180818":"66.0.3359.181","3.0.0-nightly.20180821":"66.0.3359.181","3.0.0-nightly.20180823":"66.0.3359.181","3.0.0-nightly.20180904":"66.0.3359.181","3.0.0":"66.0.3359.181","3.0.1":"66.0.3359.181","3.0.2":"66.0.3359.181","3.0.3":"66.0.3359.181","3.0.4":"66.0.3359.181","3.0.5":"66.0.3359.181","3.0.6":"66.0.3359.181","3.0.7":"66.0.3359.181","3.0.8":"66.0.3359.181","3.0.9":"66.0.3359.181","3.0.10":"66.0.3359.181","3.0.11":"66.0.3359.181","3.0.12":"66.0.3359.181","3.0.13":"66.0.3359.181","3.0.14":"66.0.3359.181","3.0.15":"66.0.3359.181","3.0.16":"66.0.3359.181","3.1.0-beta.1":"66.0.3359.181","3.1.0-beta.2":"66.0.3359.181","3.1.0-beta.3":"66.0.3359.181","3.1.0-beta.4":"66.0.3359.181","3.1.0-beta.5":"66.0.3359.181","3.1.0":"66.0.3359.181","3.1.1":"66.0.3359.181","3.1.2":"66.0.3359.181","3.1.3":"66.0.3359.181","3.1.4":"66.0.3359.181","3.1.5":"66.0.3359.181","3.1.6":"66.0.3359.181","3.1.7":"66.0.3359.181","3.1.8":"66.0.3359.181","3.1.9":"66.0.3359.181","3.1.10":"66.0.3359.181","3.1.11":"66.0.3359.181","3.1.12":"66.0.3359.181","3.1.13":"66.0.3359.181","4.0.0-beta.1":"69.0.3497.106","4.0.0-beta.2":"69.0.3497.106","4.0.0-beta.3":"69.0.3497.106","4.0.0-beta.4":"69.0.3497.106","4.0.0-beta.5":"69.0.3497.106","4.0.0-beta.6":"69.0.3497.106","4.0.0-beta.7":"69.0.3497.106","4.0.0-beta.8":"69.0.3497.106","4.0.0-beta.9":"69.0.3497.106","4.0.0-beta.10":"69.0.3497.106","4.0.0-beta.11":"69.0.3497.106","4.0.0-nightly.20180817":"66.0.3359.181","4.0.0-nightly.20180819":"66.0.3359.181","4.0.0-nightly.20180821":"66.0.3359.181","4.0.0-nightly.20180929":"67.0.3396.99","4.0.0-nightly.20181006":"68.0.3440.128","4.0.0-nightly.20181010":"69.0.3497.106","4.0.0":"69.0.3497.106","4.0.1":"69.0.3497.106","4.0.2":"69.0.3497.106","4.0.3":"69.0.3497.106","4.0.4":"69.0.3497.106","4.0.5":"69.0.3497.106","4.0.6":"69.0.3497.106","4.0.7":"69.0.3497.128","4.0.8":"69.0.3497.128","4.1.0":"69.0.3497.128","4.1.1":"69.0.3497.128","4.1.2":"69.0.3497.128","4.1.3":"69.0.3497.128","4.1.4":"69.0.3497.128","4.1.5":"69.0.3497.128","4.2.0":"69.0.3497.128","4.2.1":"69.0.3497.128","4.2.2":"69.0.3497.128","4.2.3":"69.0.3497.128","4.2.4":"69.0.3497.128","4.2.5":"69.0.3497.128","4.2.6":"69.0.3497.128","4.2.7":"69.0.3497.128","4.2.8":"69.0.3497.128","4.2.9":"69.0.3497.128","4.2.10":"69.0.3497.128","4.2.11":"69.0.3497.128","4.2.12":"69.0.3497.128","5.0.0-beta.1":"72.0.3626.52","5.0.0-beta.2":"72.0.3626.52","5.0.0-beta.3":"73.0.3683.27","5.0.0-beta.4":"73.0.3683.54","5.0.0-beta.5":"73.0.3683.61","5.0.0-beta.6":"73.0.3683.84","5.0.0-beta.7":"73.0.3683.94","5.0.0-beta.8":"73.0.3683.104","5.0.0-beta.9":"73.0.3683.117","5.0.0-nightly.20190107":"70.0.3538.110","5.0.0-nightly.20190121":"71.0.3578.98","5.0.0-nightly.20190122":"71.0.3578.98","5.0.0":"73.0.3683.119","5.0.1":"73.0.3683.121","5.0.2":"73.0.3683.121","5.0.3":"73.0.3683.121","5.0.4":"73.0.3683.121","5.0.5":"73.0.3683.121","5.0.6":"73.0.3683.121","5.0.7":"73.0.3683.121","5.0.8":"73.0.3683.121","5.0.9":"73.0.3683.121","5.0.10":"73.0.3683.121","5.0.11":"73.0.3683.121","5.0.12":"73.0.3683.121","5.0.13":"73.0.3683.121","6.0.0-beta.1":"76.0.3774.1","6.0.0-beta.2":"76.0.3783.1","6.0.0-beta.3":"76.0.3783.1","6.0.0-beta.4":"76.0.3783.1","6.0.0-beta.5":"76.0.3805.4","6.0.0-beta.6":"76.0.3809.3","6.0.0-beta.7":"76.0.3809.22","6.0.0-beta.8":"76.0.3809.26","6.0.0-beta.9":"76.0.3809.26","6.0.0-beta.10":"76.0.3809.37","6.0.0-beta.11":"76.0.3809.42","6.0.0-beta.12":"76.0.3809.54","6.0.0-beta.13":"76.0.3809.60","6.0.0-beta.14":"76.0.3809.68","6.0.0-beta.15":"76.0.3809.74","6.0.0-nightly.20190123":"72.0.3626.52","6.0.0-nightly.20190212":"72.0.3626.107","6.0.0-nightly.20190213":"72.0.3626.110","6.0.0-nightly.20190311":"74.0.3724.8","6.0.0":"76.0.3809.88","6.0.1":"76.0.3809.102","6.0.2":"76.0.3809.110","6.0.3":"76.0.3809.126","6.0.4":"76.0.3809.131","6.0.5":"76.0.3809.136","6.0.6":"76.0.3809.138","6.0.7":"76.0.3809.139","6.0.8":"76.0.3809.146","6.0.9":"76.0.3809.146","6.0.10":"76.0.3809.146","6.0.11":"76.0.3809.146","6.0.12":"76.0.3809.146","6.1.0":"76.0.3809.146","6.1.1":"76.0.3809.146","6.1.2":"76.0.3809.146","6.1.3":"76.0.3809.146","6.1.4":"76.0.3809.146","6.1.5":"76.0.3809.146","6.1.6":"76.0.3809.146","6.1.7":"76.0.3809.146","6.1.8":"76.0.3809.146","6.1.9":"76.0.3809.146","6.1.10":"76.0.3809.146","6.1.11":"76.0.3809.146","6.1.12":"76.0.3809.146","7.0.0-beta.1":"78.0.3866.0","7.0.0-beta.2":"78.0.3866.0","7.0.0-beta.3":"78.0.3866.0","7.0.0-beta.4":"78.0.3896.6","7.0.0-beta.5":"78.0.3905.1","7.0.0-beta.6":"78.0.3905.1","7.0.0-beta.7":"78.0.3905.1","7.0.0-nightly.20190521":"76.0.3784.0","7.0.0-nightly.20190529":"76.0.3806.0","7.0.0-nightly.20190530":"76.0.3806.0","7.0.0-nightly.20190531":"76.0.3806.0","7.0.0-nightly.20190602":"76.0.3806.0","7.0.0-nightly.20190603":"76.0.3806.0","7.0.0-nightly.20190604":"77.0.3814.0","7.0.0-nightly.20190605":"77.0.3815.0","7.0.0-nightly.20190606":"77.0.3815.0","7.0.0-nightly.20190607":"77.0.3815.0","7.0.0-nightly.20190608":"77.0.3815.0","7.0.0-nightly.20190609":"77.0.3815.0","7.0.0-nightly.20190611":"77.0.3815.0","7.0.0-nightly.20190612":"77.0.3815.0","7.0.0-nightly.20190613":"77.0.3815.0","7.0.0-nightly.20190615":"77.0.3815.0","7.0.0-nightly.20190616":"77.0.3815.0","7.0.0-nightly.20190618":"77.0.3815.0","7.0.0-nightly.20190619":"77.0.3815.0","7.0.0-nightly.20190622":"77.0.3815.0","7.0.0-nightly.20190623":"77.0.3815.0","7.0.0-nightly.20190624":"77.0.3815.0","7.0.0-nightly.20190627":"77.0.3815.0","7.0.0-nightly.20190629":"77.0.3815.0","7.0.0-nightly.20190630":"77.0.3815.0","7.0.0-nightly.20190701":"77.0.3815.0","7.0.0-nightly.20190702":"77.0.3815.0","7.0.0-nightly.20190704":"77.0.3843.0","7.0.0-nightly.20190705":"77.0.3843.0","7.0.0-nightly.20190719":"77.0.3848.0","7.0.0-nightly.20190720":"77.0.3848.0","7.0.0-nightly.20190721":"77.0.3848.0","7.0.0-nightly.20190726":"77.0.3864.0","7.0.0-nightly.20190727":"78.0.3866.0","7.0.0-nightly.20190728":"78.0.3866.0","7.0.0-nightly.20190729":"78.0.3866.0","7.0.0-nightly.20190730":"78.0.3866.0","7.0.0-nightly.20190731":"78.0.3866.0","7.0.0":"78.0.3905.1","7.0.1":"78.0.3904.92","7.1.0":"78.0.3904.94","7.1.1":"78.0.3904.99","7.1.2":"78.0.3904.113","7.1.3":"78.0.3904.126","7.1.4":"78.0.3904.130","7.1.5":"78.0.3904.130","7.1.6":"78.0.3904.130","7.1.7":"78.0.3904.130","7.1.8":"78.0.3904.130","7.1.9":"78.0.3904.130","7.1.10":"78.0.3904.130","7.1.11":"78.0.3904.130","7.1.12":"78.0.3904.130","7.1.13":"78.0.3904.130","7.1.14":"78.0.3904.130","7.2.0":"78.0.3904.130","7.2.1":"78.0.3904.130","7.2.2":"78.0.3904.130","7.2.3":"78.0.3904.130","7.2.4":"78.0.3904.130","7.3.0":"78.0.3904.130","7.3.1":"78.0.3904.130","7.3.2":"78.0.3904.130","7.3.3":"78.0.3904.130","8.0.0-beta.1":"79.0.3931.0","8.0.0-beta.2":"79.0.3931.0","8.0.0-beta.3":"80.0.3955.0","8.0.0-beta.4":"80.0.3955.0","8.0.0-beta.5":"80.0.3987.14","8.0.0-beta.6":"80.0.3987.51","8.0.0-beta.7":"80.0.3987.59","8.0.0-beta.8":"80.0.3987.75","8.0.0-beta.9":"80.0.3987.75","8.0.0-nightly.20190801":"78.0.3866.0","8.0.0-nightly.20190802":"78.0.3866.0","8.0.0-nightly.20190803":"78.0.3871.0","8.0.0-nightly.20190806":"78.0.3871.0","8.0.0-nightly.20190807":"78.0.3871.0","8.0.0-nightly.20190808":"78.0.3871.0","8.0.0-nightly.20190809":"78.0.3871.0","8.0.0-nightly.20190810":"78.0.3871.0","8.0.0-nightly.20190811":"78.0.3871.0","8.0.0-nightly.20190812":"78.0.3871.0","8.0.0-nightly.20190813":"78.0.3871.0","8.0.0-nightly.20190814":"78.0.3871.0","8.0.0-nightly.20190815":"78.0.3871.0","8.0.0-nightly.20190816":"78.0.3881.0","8.0.0-nightly.20190817":"78.0.3881.0","8.0.0-nightly.20190818":"78.0.3881.0","8.0.0-nightly.20190819":"78.0.3881.0","8.0.0-nightly.20190820":"78.0.3881.0","8.0.0-nightly.20190824":"78.0.3892.0","8.0.0-nightly.20190825":"78.0.3892.0","8.0.0-nightly.20190827":"78.0.3892.0","8.0.0-nightly.20190828":"78.0.3892.0","8.0.0-nightly.20190830":"78.0.3892.0","8.0.0-nightly.20190901":"78.0.3892.0","8.0.0-nightly.20190902":"78.0.3892.0","8.0.0-nightly.20190907":"78.0.3892.0","8.0.0-nightly.20190909":"78.0.3892.0","8.0.0-nightly.20190910":"78.0.3892.0","8.0.0-nightly.20190911":"78.0.3892.0","8.0.0-nightly.20190912":"78.0.3892.0","8.0.0-nightly.20190913":"78.0.3892.0","8.0.0-nightly.20190914":"78.0.3892.0","8.0.0-nightly.20190915":"78.0.3892.0","8.0.0-nightly.20190917":"78.0.3892.0","8.0.0-nightly.20190919":"79.0.3915.0","8.0.0-nightly.20190920":"79.0.3915.0","8.0.0-nightly.20190922":"79.0.3919.0","8.0.0-nightly.20190923":"79.0.3919.0","8.0.0-nightly.20190924":"79.0.3919.0","8.0.0-nightly.20190926":"79.0.3919.0","8.0.0-nightly.20190928":"79.0.3919.0","8.0.0-nightly.20190929":"79.0.3919.0","8.0.0-nightly.20190930":"79.0.3919.0","8.0.0-nightly.20191001":"79.0.3919.0","8.0.0-nightly.20191004":"79.0.3919.0","8.0.0-nightly.20191005":"79.0.3919.0","8.0.0-nightly.20191006":"79.0.3919.0","8.0.0-nightly.20191009":"79.0.3919.0","8.0.0-nightly.20191011":"79.0.3919.0","8.0.0-nightly.20191012":"79.0.3919.0","8.0.0-nightly.20191017":"79.0.3919.0","8.0.0-nightly.20191019":"79.0.3931.0","8.0.0-nightly.20191020":"79.0.3931.0","8.0.0-nightly.20191021":"79.0.3931.0","8.0.0-nightly.20191023":"79.0.3931.0","8.0.0-nightly.20191101":"80.0.3952.0","8.0.0-nightly.20191103":"80.0.3952.0","8.0.0-nightly.20191105":"80.0.3952.0","8.0.0":"80.0.3987.86","8.0.1":"80.0.3987.86","8.0.2":"80.0.3987.86","8.0.3":"80.0.3987.134","8.1.0":"80.0.3987.137","8.1.1":"80.0.3987.141","8.2.0":"80.0.3987.158","8.2.1":"80.0.3987.163","8.2.2":"80.0.3987.163","8.2.3":"80.0.3987.163","8.2.4":"80.0.3987.165","8.2.5":"80.0.3987.165","8.3.0":"80.0.3987.165","8.3.1":"80.0.3987.165","8.3.2":"80.0.3987.165","8.3.3":"80.0.3987.165","8.3.4":"80.0.3987.165","8.4.0":"80.0.3987.165","8.4.1":"80.0.3987.165","8.5.0":"80.0.3987.165","8.5.1":"80.0.3987.165","8.5.2":"80.0.3987.165","8.5.3":"80.0.3987.163","8.5.4":"80.0.3987.163","8.5.5":"80.0.3987.163","9.0.0-beta.1":"82.0.4048.0","9.0.0-beta.2":"82.0.4048.0","9.0.0-beta.3":"82.0.4048.0","9.0.0-beta.4":"82.0.4048.0","9.0.0-beta.5":"82.0.4048.0","9.0.0-beta.6":"82.0.4058.2","9.0.0-beta.7":"82.0.4058.2","9.0.0-beta.9":"82.0.4058.2","9.0.0-beta.10":"82.0.4085.10","9.0.0-beta.11":"82.0.4085.14","9.0.0-beta.12":"82.0.4085.14","9.0.0-beta.13":"82.0.4085.14","9.0.0-beta.14":"82.0.4085.27","9.0.0-beta.15":"83.0.4102.3","9.0.0-beta.16":"83.0.4102.3","9.0.0-beta.17":"83.0.4103.14","9.0.0-beta.18":"83.0.4103.16","9.0.0-beta.19":"83.0.4103.24","9.0.0-beta.20":"83.0.4103.26","9.0.0-beta.21":"83.0.4103.26","9.0.0-beta.22":"83.0.4103.34","9.0.0-beta.23":"83.0.4103.44","9.0.0-beta.24":"83.0.4103.45","9.0.0-nightly.20191121":"80.0.3954.0","9.0.0-nightly.20191122":"80.0.3954.0","9.0.0-nightly.20191123":"80.0.3954.0","9.0.0-nightly.20191124":"80.0.3954.0","9.0.0-nightly.20191126":"80.0.3954.0","9.0.0-nightly.20191128":"80.0.3954.0","9.0.0-nightly.20191129":"80.0.3954.0","9.0.0-nightly.20191130":"80.0.3954.0","9.0.0-nightly.20191201":"80.0.3954.0","9.0.0-nightly.20191202":"80.0.3954.0","9.0.0-nightly.20191203":"80.0.3954.0","9.0.0-nightly.20191204":"80.0.3954.0","9.0.0-nightly.20191205":"80.0.3954.0","9.0.0-nightly.20191210":"80.0.3954.0","9.0.0-nightly.20191220":"81.0.3994.0","9.0.0-nightly.20191221":"81.0.3994.0","9.0.0-nightly.20191222":"81.0.3994.0","9.0.0-nightly.20191223":"81.0.3994.0","9.0.0-nightly.20191224":"81.0.3994.0","9.0.0-nightly.20191225":"81.0.3994.0","9.0.0-nightly.20191226":"81.0.3994.0","9.0.0-nightly.20191228":"81.0.3994.0","9.0.0-nightly.20191229":"81.0.3994.0","9.0.0-nightly.20191230":"81.0.3994.0","9.0.0-nightly.20191231":"81.0.3994.0","9.0.0-nightly.20200101":"81.0.3994.0","9.0.0-nightly.20200103":"81.0.3994.0","9.0.0-nightly.20200104":"81.0.3994.0","9.0.0-nightly.20200105":"81.0.3994.0","9.0.0-nightly.20200106":"81.0.3994.0","9.0.0-nightly.20200108":"81.0.3994.0","9.0.0-nightly.20200109":"81.0.3994.0","9.0.0-nightly.20200110":"81.0.3994.0","9.0.0-nightly.20200111":"81.0.3994.0","9.0.0-nightly.20200113":"81.0.3994.0","9.0.0-nightly.20200115":"81.0.3994.0","9.0.0-nightly.20200116":"81.0.3994.0","9.0.0-nightly.20200117":"81.0.3994.0","9.0.0-nightly.20200119":"81.0.4030.0","9.0.0-nightly.20200121":"81.0.4030.0","9.0.0":"83.0.4103.64","9.0.1":"83.0.4103.94","9.0.2":"83.0.4103.94","9.0.3":"83.0.4103.100","9.0.4":"83.0.4103.104","9.0.5":"83.0.4103.119","9.1.0":"83.0.4103.122","9.1.1":"83.0.4103.122","9.1.2":"83.0.4103.122","9.2.0":"83.0.4103.122","9.2.1":"83.0.4103.122","9.3.0":"83.0.4103.122","9.3.1":"83.0.4103.122","9.3.2":"83.0.4103.122","9.3.3":"83.0.4103.122","9.3.4":"83.0.4103.122","9.3.5":"83.0.4103.122","9.4.0":"83.0.4103.122","9.4.1":"83.0.4103.122","9.4.2":"83.0.4103.122","9.4.3":"83.0.4103.122","9.4.4":"83.0.4103.122","10.0.0-beta.1":"84.0.4129.0","10.0.0-beta.2":"84.0.4129.0","10.0.0-beta.3":"85.0.4161.2","10.0.0-beta.4":"85.0.4161.2","10.0.0-beta.8":"85.0.4181.1","10.0.0-beta.9":"85.0.4181.1","10.0.0-beta.10":"85.0.4183.19","10.0.0-beta.11":"85.0.4183.20","10.0.0-beta.12":"85.0.4183.26","10.0.0-beta.13":"85.0.4183.39","10.0.0-beta.14":"85.0.4183.39","10.0.0-beta.15":"85.0.4183.39","10.0.0-beta.17":"85.0.4183.39","10.0.0-beta.19":"85.0.4183.39","10.0.0-beta.20":"85.0.4183.39","10.0.0-beta.21":"85.0.4183.39","10.0.0-beta.23":"85.0.4183.70","10.0.0-beta.24":"85.0.4183.78","10.0.0-beta.25":"85.0.4183.80","10.0.0-nightly.20200209":"82.0.4050.0","10.0.0-nightly.20200210":"82.0.4050.0","10.0.0-nightly.20200211":"82.0.4050.0","10.0.0-nightly.20200216":"82.0.4050.0","10.0.0-nightly.20200217":"82.0.4050.0","10.0.0-nightly.20200218":"82.0.4050.0","10.0.0-nightly.20200221":"82.0.4050.0","10.0.0-nightly.20200222":"82.0.4050.0","10.0.0-nightly.20200223":"82.0.4050.0","10.0.0-nightly.20200226":"82.0.4050.0","10.0.0-nightly.20200303":"82.0.4050.0","10.0.0-nightly.20200304":"82.0.4076.0","10.0.0-nightly.20200305":"82.0.4076.0","10.0.0-nightly.20200306":"82.0.4076.0","10.0.0-nightly.20200309":"82.0.4076.0","10.0.0-nightly.20200310":"82.0.4076.0","10.0.0-nightly.20200311":"82.0.4083.0","10.0.0-nightly.20200316":"83.0.4086.0","10.0.0-nightly.20200317":"83.0.4087.0","10.0.0-nightly.20200318":"83.0.4087.0","10.0.0-nightly.20200320":"83.0.4087.0","10.0.0-nightly.20200323":"83.0.4087.0","10.0.0-nightly.20200324":"83.0.4087.0","10.0.0-nightly.20200325":"83.0.4087.0","10.0.0-nightly.20200326":"83.0.4087.0","10.0.0-nightly.20200327":"83.0.4087.0","10.0.0-nightly.20200330":"83.0.4087.0","10.0.0-nightly.20200331":"83.0.4087.0","10.0.0-nightly.20200401":"83.0.4087.0","10.0.0-nightly.20200402":"83.0.4087.0","10.0.0-nightly.20200403":"83.0.4087.0","10.0.0-nightly.20200406":"83.0.4087.0","10.0.0-nightly.20200408":"83.0.4095.0","10.0.0-nightly.20200410":"83.0.4095.0","10.0.0-nightly.20200413":"83.0.4095.0","10.0.0-nightly.20200414":"84.0.4114.0","10.0.0-nightly.20200415":"84.0.4115.0","10.0.0-nightly.20200416":"84.0.4115.0","10.0.0-nightly.20200417":"84.0.4115.0","10.0.0-nightly.20200422":"84.0.4121.0","10.0.0-nightly.20200423":"84.0.4121.0","10.0.0-nightly.20200427":"84.0.4125.0","10.0.0-nightly.20200428":"84.0.4125.0","10.0.0-nightly.20200429":"84.0.4125.0","10.0.0-nightly.20200430":"84.0.4125.0","10.0.0-nightly.20200501":"84.0.4129.0","10.0.0-nightly.20200504":"84.0.4129.0","10.0.0-nightly.20200505":"84.0.4129.0","10.0.0-nightly.20200506":"84.0.4129.0","10.0.0-nightly.20200507":"84.0.4129.0","10.0.0-nightly.20200508":"84.0.4129.0","10.0.0-nightly.20200511":"84.0.4129.0","10.0.0-nightly.20200512":"84.0.4129.0","10.0.0-nightly.20200513":"84.0.4129.0","10.0.0-nightly.20200514":"84.0.4129.0","10.0.0-nightly.20200515":"84.0.4129.0","10.0.0-nightly.20200518":"84.0.4129.0","10.0.0-nightly.20200519":"84.0.4129.0","10.0.0-nightly.20200520":"84.0.4129.0","10.0.0-nightly.20200521":"84.0.4129.0","10.0.0":"85.0.4183.84","10.0.1":"85.0.4183.86","10.1.0":"85.0.4183.87","10.1.1":"85.0.4183.93","10.1.2":"85.0.4183.98","10.1.3":"85.0.4183.121","10.1.4":"85.0.4183.121","10.1.5":"85.0.4183.121","10.1.6":"85.0.4183.121","10.1.7":"85.0.4183.121","10.2.0":"85.0.4183.121","10.3.0":"85.0.4183.121","10.3.1":"85.0.4183.121","10.3.2":"85.0.4183.121","10.4.0":"85.0.4183.121","10.4.1":"85.0.4183.121","10.4.2":"85.0.4183.121","10.4.3":"85.0.4183.121","10.4.4":"85.0.4183.121","10.4.5":"85.0.4183.121","10.4.6":"85.0.4183.121","10.4.7":"85.0.4183.121","11.0.0-beta.1":"86.0.4234.0","11.0.0-beta.3":"86.0.4234.0","11.0.0-beta.4":"86.0.4234.0","11.0.0-beta.5":"86.0.4234.0","11.0.0-beta.6":"86.0.4234.0","11.0.0-beta.7":"86.0.4234.0","11.0.0-beta.8":"87.0.4251.1","11.0.0-beta.9":"87.0.4251.1","11.0.0-beta.11":"87.0.4251.1","11.0.0-beta.12":"87.0.4280.11","11.0.0-beta.13":"87.0.4280.11","11.0.0-beta.16":"87.0.4280.27","11.0.0-beta.17":"87.0.4280.27","11.0.0-beta.18":"87.0.4280.27","11.0.0-beta.19":"87.0.4280.27","11.0.0-beta.20":"87.0.4280.40","11.0.0-beta.22":"87.0.4280.47","11.0.0-beta.23":"87.0.4280.47","11.0.0-nightly.20200525":"84.0.4129.0","11.0.0-nightly.20200526":"84.0.4129.0","11.0.0-nightly.20200529":"85.0.4156.0","11.0.0-nightly.20200602":"85.0.4162.0","11.0.0-nightly.20200603":"85.0.4162.0","11.0.0-nightly.20200604":"85.0.4162.0","11.0.0-nightly.20200609":"85.0.4162.0","11.0.0-nightly.20200610":"85.0.4162.0","11.0.0-nightly.20200611":"85.0.4162.0","11.0.0-nightly.20200615":"85.0.4162.0","11.0.0-nightly.20200616":"85.0.4162.0","11.0.0-nightly.20200617":"85.0.4162.0","11.0.0-nightly.20200618":"85.0.4162.0","11.0.0-nightly.20200619":"85.0.4162.0","11.0.0-nightly.20200701":"85.0.4179.0","11.0.0-nightly.20200702":"85.0.4179.0","11.0.0-nightly.20200703":"85.0.4179.0","11.0.0-nightly.20200706":"85.0.4179.0","11.0.0-nightly.20200707":"85.0.4179.0","11.0.0-nightly.20200708":"85.0.4179.0","11.0.0-nightly.20200709":"85.0.4179.0","11.0.0-nightly.20200716":"86.0.4203.0","11.0.0-nightly.20200717":"86.0.4203.0","11.0.0-nightly.20200720":"86.0.4203.0","11.0.0-nightly.20200721":"86.0.4203.0","11.0.0-nightly.20200723":"86.0.4209.0","11.0.0-nightly.20200724":"86.0.4209.0","11.0.0-nightly.20200729":"86.0.4209.0","11.0.0-nightly.20200730":"86.0.4209.0","11.0.0-nightly.20200731":"86.0.4209.0","11.0.0-nightly.20200803":"86.0.4209.0","11.0.0-nightly.20200804":"86.0.4209.0","11.0.0-nightly.20200805":"86.0.4209.0","11.0.0-nightly.20200811":"86.0.4209.0","11.0.0-nightly.20200812":"86.0.4209.0","11.0.0-nightly.20200822":"86.0.4234.0","11.0.0-nightly.20200824":"86.0.4234.0","11.0.0-nightly.20200825":"86.0.4234.0","11.0.0-nightly.20200826":"86.0.4234.0","11.0.0":"87.0.4280.60","11.0.1":"87.0.4280.60","11.0.2":"87.0.4280.67","11.0.3":"87.0.4280.67","11.0.4":"87.0.4280.67","11.0.5":"87.0.4280.88","11.1.0":"87.0.4280.88","11.1.1":"87.0.4280.88","11.2.0":"87.0.4280.141","11.2.1":"87.0.4280.141","11.2.2":"87.0.4280.141","11.2.3":"87.0.4280.141","11.3.0":"87.0.4280.141","11.4.0":"87.0.4280.141","11.4.1":"87.0.4280.141","11.4.2":"87.0.4280.141","11.4.3":"87.0.4280.141","11.4.4":"87.0.4280.141","11.4.5":"87.0.4280.141","11.4.6":"87.0.4280.141","11.4.7":"87.0.4280.141","11.4.8":"87.0.4280.141","11.4.9":"87.0.4280.141","11.4.10":"87.0.4280.141","11.4.11":"87.0.4280.141","11.4.12":"87.0.4280.141","11.5.0":"87.0.4280.141","12.0.0-beta.1":"89.0.4328.0","12.0.0-beta.3":"89.0.4328.0","12.0.0-beta.4":"89.0.4328.0","12.0.0-beta.5":"89.0.4328.0","12.0.0-beta.6":"89.0.4328.0","12.0.0-beta.7":"89.0.4328.0","12.0.0-beta.8":"89.0.4328.0","12.0.0-beta.9":"89.0.4328.0","12.0.0-beta.10":"89.0.4328.0","12.0.0-beta.11":"89.0.4328.0","12.0.0-beta.12":"89.0.4328.0","12.0.0-beta.14":"89.0.4328.0","12.0.0-beta.16":"89.0.4348.1","12.0.0-beta.18":"89.0.4348.1","12.0.0-beta.19":"89.0.4348.1","12.0.0-beta.20":"89.0.4348.1","12.0.0-beta.21":"89.0.4388.2","12.0.0-beta.22":"89.0.4388.2","12.0.0-beta.23":"89.0.4388.2","12.0.0-beta.24":"89.0.4388.2","12.0.0-beta.25":"89.0.4388.2","12.0.0-beta.26":"89.0.4388.2","12.0.0-beta.27":"89.0.4389.23","12.0.0-beta.28":"89.0.4389.23","12.0.0-beta.29":"89.0.4389.23","12.0.0-beta.30":"89.0.4389.58","12.0.0-beta.31":"89.0.4389.58","12.0.0-nightly.20200827":"86.0.4234.0","12.0.0-nightly.20200831":"86.0.4234.0","12.0.0-nightly.20200902":"86.0.4234.0","12.0.0-nightly.20200903":"86.0.4234.0","12.0.0-nightly.20200907":"86.0.4234.0","12.0.0-nightly.20200910":"86.0.4234.0","12.0.0-nightly.20200911":"86.0.4234.0","12.0.0-nightly.20200914":"86.0.4234.0","12.0.0-nightly.20201002":"87.0.4268.0","12.0.0-nightly.20201007":"87.0.4268.0","12.0.0-nightly.20201009":"87.0.4268.0","12.0.0-nightly.20201012":"87.0.4268.0","12.0.0-nightly.20201013":"87.0.4268.0","12.0.0-nightly.20201014":"87.0.4268.0","12.0.0-nightly.20201015":"87.0.4268.0","12.0.0-nightly.20201023":"88.0.4292.0","12.0.0-nightly.20201026":"88.0.4292.0","12.0.0-nightly.20201030":"88.0.4306.0","12.0.0-nightly.20201102":"88.0.4306.0","12.0.0-nightly.20201103":"88.0.4306.0","12.0.0-nightly.20201104":"88.0.4306.0","12.0.0-nightly.20201105":"88.0.4306.0","12.0.0-nightly.20201106":"88.0.4306.0","12.0.0-nightly.20201111":"88.0.4306.0","12.0.0-nightly.20201112":"88.0.4306.0","12.0.0-nightly.20201116":"88.0.4324.0","12.0.0":"89.0.4389.69","12.0.1":"89.0.4389.82","12.0.2":"89.0.4389.90","12.0.3":"89.0.4389.114","12.0.4":"89.0.4389.114","12.0.5":"89.0.4389.128","12.0.6":"89.0.4389.128","12.0.7":"89.0.4389.128","12.0.8":"89.0.4389.128","12.0.9":"89.0.4389.128","12.0.10":"89.0.4389.128","12.0.11":"89.0.4389.128","12.0.12":"89.0.4389.128","12.0.13":"89.0.4389.128","12.0.14":"89.0.4389.128","12.0.15":"89.0.4389.128","12.0.16":"89.0.4389.128","12.0.17":"89.0.4389.128","12.0.18":"89.0.4389.128","12.1.0":"89.0.4389.128","12.1.1":"89.0.4389.128","12.1.2":"89.0.4389.128","12.2.0":"89.0.4389.128","12.2.1":"89.0.4389.128","12.2.2":"89.0.4389.128","12.2.3":"89.0.4389.128","13.0.0-beta.2":"90.0.4402.0","13.0.0-beta.3":"90.0.4402.0","13.0.0-beta.4":"90.0.4415.0","13.0.0-beta.5":"90.0.4415.0","13.0.0-beta.6":"90.0.4415.0","13.0.0-beta.7":"90.0.4415.0","13.0.0-beta.8":"90.0.4415.0","13.0.0-beta.9":"90.0.4415.0","13.0.0-beta.10":"90.0.4415.0","13.0.0-beta.11":"90.0.4415.0","13.0.0-beta.12":"90.0.4415.0","13.0.0-beta.13":"90.0.4415.0","13.0.0-beta.14":"91.0.4448.0","13.0.0-beta.16":"91.0.4448.0","13.0.0-beta.17":"91.0.4448.0","13.0.0-beta.18":"91.0.4448.0","13.0.0-beta.20":"91.0.4448.0","13.0.0-beta.21":"91.0.4472.33","13.0.0-beta.22":"91.0.4472.33","13.0.0-beta.23":"91.0.4472.33","13.0.0-beta.24":"91.0.4472.38","13.0.0-beta.25":"91.0.4472.38","13.0.0-beta.26":"91.0.4472.38","13.0.0-beta.27":"91.0.4472.38","13.0.0-beta.28":"91.0.4472.38","13.0.0-nightly.20201119":"89.0.4328.0","13.0.0-nightly.20201123":"89.0.4328.0","13.0.0-nightly.20201124":"89.0.4328.0","13.0.0-nightly.20201126":"89.0.4328.0","13.0.0-nightly.20201127":"89.0.4328.0","13.0.0-nightly.20201130":"89.0.4328.0","13.0.0-nightly.20201201":"89.0.4328.0","13.0.0-nightly.20201202":"89.0.4328.0","13.0.0-nightly.20201203":"89.0.4328.0","13.0.0-nightly.20201204":"89.0.4328.0","13.0.0-nightly.20201207":"89.0.4328.0","13.0.0-nightly.20201208":"89.0.4328.0","13.0.0-nightly.20201209":"89.0.4328.0","13.0.0-nightly.20201210":"89.0.4328.0","13.0.0-nightly.20201211":"89.0.4328.0","13.0.0-nightly.20201214":"89.0.4328.0","13.0.0-nightly.20201215":"89.0.4349.0","13.0.0-nightly.20201216":"89.0.4349.0","13.0.0-nightly.20201221":"89.0.4349.0","13.0.0-nightly.20201222":"89.0.4349.0","13.0.0-nightly.20201223":"89.0.4359.0","13.0.0-nightly.20210104":"89.0.4359.0","13.0.0-nightly.20210108":"89.0.4359.0","13.0.0-nightly.20210111":"89.0.4359.0","13.0.0-nightly.20210113":"89.0.4386.0","13.0.0-nightly.20210114":"89.0.4386.0","13.0.0-nightly.20210118":"89.0.4386.0","13.0.0-nightly.20210122":"89.0.4386.0","13.0.0-nightly.20210125":"89.0.4386.0","13.0.0-nightly.20210127":"89.0.4389.0","13.0.0-nightly.20210128":"89.0.4389.0","13.0.0-nightly.20210129":"89.0.4389.0","13.0.0-nightly.20210201":"89.0.4389.0","13.0.0-nightly.20210202":"89.0.4389.0","13.0.0-nightly.20210203":"89.0.4389.0","13.0.0-nightly.20210205":"89.0.4389.0","13.0.0-nightly.20210208":"89.0.4389.0","13.0.0-nightly.20210209":"89.0.4389.0","13.0.0-nightly.20210210":"90.0.4402.0","13.0.0-nightly.20210211":"90.0.4402.0","13.0.0-nightly.20210212":"90.0.4402.0","13.0.0-nightly.20210216":"90.0.4402.0","13.0.0-nightly.20210217":"90.0.4402.0","13.0.0-nightly.20210218":"90.0.4402.0","13.0.0-nightly.20210219":"90.0.4402.0","13.0.0-nightly.20210222":"90.0.4402.0","13.0.0-nightly.20210225":"90.0.4402.0","13.0.0-nightly.20210226":"90.0.4402.0","13.0.0-nightly.20210301":"90.0.4402.0","13.0.0-nightly.20210302":"90.0.4402.0","13.0.0-nightly.20210303":"90.0.4402.0","13.0.0":"91.0.4472.69","13.0.1":"91.0.4472.69","13.1.0":"91.0.4472.77","13.1.1":"91.0.4472.77","13.1.2":"91.0.4472.77","13.1.3":"91.0.4472.106","13.1.4":"91.0.4472.106","13.1.5":"91.0.4472.124","13.1.6":"91.0.4472.124","13.1.7":"91.0.4472.124","13.1.8":"91.0.4472.164","13.1.9":"91.0.4472.164","13.2.0":"91.0.4472.164","13.2.1":"91.0.4472.164","13.2.2":"91.0.4472.164","13.2.3":"91.0.4472.164","13.3.0":"91.0.4472.164","13.4.0":"91.0.4472.164","13.5.0":"91.0.4472.164","13.5.1":"91.0.4472.164","13.5.2":"91.0.4472.164","13.6.0":"91.0.4472.164","13.6.1":"91.0.4472.164","13.6.2":"91.0.4472.164","13.6.3":"91.0.4472.164","13.6.6":"91.0.4472.164","13.6.7":"91.0.4472.164","13.6.8":"91.0.4472.164","13.6.9":"91.0.4472.164","14.0.0-beta.1":"92.0.4511.0","14.0.0-beta.2":"92.0.4511.0","14.0.0-beta.3":"92.0.4511.0","14.0.0-beta.5":"93.0.4536.0","14.0.0-beta.6":"93.0.4536.0","14.0.0-beta.7":"93.0.4536.0","14.0.0-beta.8":"93.0.4536.0","14.0.0-beta.9":"93.0.4539.0","14.0.0-beta.10":"93.0.4539.0","14.0.0-beta.11":"93.0.4557.4","14.0.0-beta.12":"93.0.4557.4","14.0.0-beta.13":"93.0.4566.0","14.0.0-beta.14":"93.0.4566.0","14.0.0-beta.15":"93.0.4566.0","14.0.0-beta.16":"93.0.4566.0","14.0.0-beta.17":"93.0.4566.0","14.0.0-beta.18":"93.0.4577.15","14.0.0-beta.19":"93.0.4577.15","14.0.0-beta.20":"93.0.4577.15","14.0.0-beta.21":"93.0.4577.15","14.0.0-beta.22":"93.0.4577.25","14.0.0-beta.23":"93.0.4577.25","14.0.0-beta.24":"93.0.4577.51","14.0.0-beta.25":"93.0.4577.51","14.0.0-nightly.20210304":"90.0.4402.0","14.0.0-nightly.20210305":"90.0.4415.0","14.0.0-nightly.20210308":"90.0.4415.0","14.0.0-nightly.20210309":"90.0.4415.0","14.0.0-nightly.20210311":"90.0.4415.0","14.0.0-nightly.20210315":"90.0.4415.0","14.0.0-nightly.20210316":"90.0.4415.0","14.0.0-nightly.20210317":"90.0.4415.0","14.0.0-nightly.20210318":"90.0.4415.0","14.0.0-nightly.20210319":"90.0.4415.0","14.0.0-nightly.20210323":"90.0.4415.0","14.0.0-nightly.20210324":"90.0.4415.0","14.0.0-nightly.20210325":"90.0.4415.0","14.0.0-nightly.20210326":"90.0.4415.0","14.0.0-nightly.20210329":"90.0.4415.0","14.0.0-nightly.20210330":"90.0.4415.0","14.0.0-nightly.20210331":"91.0.4448.0","14.0.0-nightly.20210401":"91.0.4448.0","14.0.0-nightly.20210402":"91.0.4448.0","14.0.0-nightly.20210406":"91.0.4448.0","14.0.0-nightly.20210407":"91.0.4448.0","14.0.0-nightly.20210408":"91.0.4448.0","14.0.0-nightly.20210409":"91.0.4448.0","14.0.0-nightly.20210413":"91.0.4448.0","14.0.0-nightly.20210426":"92.0.4475.0","14.0.0-nightly.20210427":"92.0.4475.0","14.0.0-nightly.20210430":"92.0.4488.0","14.0.0-nightly.20210503":"92.0.4488.0","14.0.0-nightly.20210505":"92.0.4496.0","14.0.0-nightly.20210506":"92.0.4498.0","14.0.0-nightly.20210507":"92.0.4499.0","14.0.0-nightly.20210510":"92.0.4499.0","14.0.0-nightly.20210511":"92.0.4499.0","14.0.0-nightly.20210512":"92.0.4499.0","14.0.0-nightly.20210513":"92.0.4499.0","14.0.0-nightly.20210514":"92.0.4505.0","14.0.0-nightly.20210517":"92.0.4505.0","14.0.0-nightly.20210518":"92.0.4505.0","14.0.0-nightly.20210519":"92.0.4505.0","14.0.0-nightly.20210520":"92.0.4511.0","14.0.0-nightly.20210523":"92.0.4511.0","14.0.0-nightly.20210524":"92.0.4511.0","14.0.0":"93.0.4577.58","14.0.1":"93.0.4577.63","14.0.2":"93.0.4577.82","14.1.0":"93.0.4577.82","14.1.1":"93.0.4577.82","14.2.0":"93.0.4577.82","14.2.1":"93.0.4577.82","14.2.2":"93.0.4577.82","14.2.3":"93.0.4577.82","14.2.4":"93.0.4577.82","14.2.5":"93.0.4577.82","14.2.6":"93.0.4577.82","14.2.7":"93.0.4577.82","14.2.8":"93.0.4577.82","14.2.9":"93.0.4577.82","15.0.0-alpha.1":"93.0.4566.0","15.0.0-alpha.2":"93.0.4566.0","15.0.0-alpha.3":"94.0.4584.0","15.0.0-alpha.4":"94.0.4584.0","15.0.0-alpha.5":"94.0.4584.0","15.0.0-alpha.6":"94.0.4584.0","15.0.0-alpha.7":"94.0.4590.2","15.0.0-alpha.8":"94.0.4590.2","15.0.0-alpha.9":"94.0.4590.2","15.0.0-alpha.10":"94.0.4606.12","15.0.0-beta.1":"94.0.4606.20","15.0.0-beta.2":"94.0.4606.20","15.0.0-beta.3":"94.0.4606.31","15.0.0-beta.4":"94.0.4606.31","15.0.0-beta.5":"94.0.4606.31","15.0.0-beta.6":"94.0.4606.31","15.0.0-beta.7":"94.0.4606.31","15.0.0-nightly.20210527":"92.0.4511.0","15.0.0-nightly.20210528":"92.0.4511.0","15.0.0-nightly.20210531":"92.0.4511.0","15.0.0-nightly.20210601":"92.0.4511.0","15.0.0-nightly.20210602":"92.0.4511.0","15.0.0-nightly.20210603":"93.0.4530.0","15.0.0-nightly.20210604":"93.0.4530.0","15.0.0-nightly.20210608":"93.0.4535.0","15.0.0-nightly.20210609":"93.0.4536.0","15.0.0-nightly.20210610":"93.0.4536.0","15.0.0-nightly.20210611":"93.0.4536.0","15.0.0-nightly.20210614":"93.0.4536.0","15.0.0-nightly.20210615":"93.0.4536.0","15.0.0-nightly.20210616":"93.0.4536.0","15.0.0-nightly.20210617":"93.0.4539.0","15.0.0-nightly.20210618":"93.0.4539.0","15.0.0-nightly.20210621":"93.0.4539.0","15.0.0-nightly.20210622":"93.0.4539.0","15.0.0-nightly.20210623":"93.0.4550.0","15.0.0-nightly.20210624":"93.0.4550.0","15.0.0-nightly.20210625":"93.0.4552.0","15.0.0-nightly.20210628":"93.0.4552.0","15.0.0-nightly.20210629":"93.0.4552.0","15.0.0-nightly.20210630":"93.0.4558.0","15.0.0-nightly.20210701":"93.0.4558.0","15.0.0-nightly.20210702":"93.0.4558.0","15.0.0-nightly.20210705":"93.0.4558.0","15.0.0-nightly.20210706":"93.0.4566.0","15.0.0-nightly.20210707":"93.0.4566.0","15.0.0-nightly.20210708":"93.0.4566.0","15.0.0-nightly.20210709":"93.0.4566.0","15.0.0-nightly.20210712":"93.0.4566.0","15.0.0-nightly.20210713":"93.0.4566.0","15.0.0-nightly.20210714":"93.0.4566.0","15.0.0-nightly.20210715":"93.0.4566.0","15.0.0-nightly.20210716":"93.0.4566.0","15.0.0-nightly.20210719":"93.0.4566.0","15.0.0-nightly.20210720":"93.0.4566.0","15.0.0-nightly.20210721":"93.0.4566.0","15.0.0":"94.0.4606.51","15.1.0":"94.0.4606.61","15.1.1":"94.0.4606.61","15.1.2":"94.0.4606.71","15.2.0":"94.0.4606.81","15.3.0":"94.0.4606.81","15.3.1":"94.0.4606.81","15.3.2":"94.0.4606.81","15.3.3":"94.0.4606.81","15.3.4":"94.0.4606.81","15.3.5":"94.0.4606.81","15.3.6":"94.0.4606.81","15.3.7":"94.0.4606.81","15.4.0":"94.0.4606.81","15.4.1":"94.0.4606.81","15.4.2":"94.0.4606.81","15.5.0":"94.0.4606.81","15.5.1":"94.0.4606.81","15.5.2":"94.0.4606.81","15.5.3":"94.0.4606.81","15.5.4":"94.0.4606.81","15.5.5":"94.0.4606.81","15.5.6":"94.0.4606.81","15.5.7":"94.0.4606.81","16.0.0-alpha.1":"95.0.4629.0","16.0.0-alpha.2":"95.0.4629.0","16.0.0-alpha.3":"95.0.4629.0","16.0.0-alpha.4":"95.0.4629.0","16.0.0-alpha.5":"95.0.4629.0","16.0.0-alpha.6":"95.0.4629.0","16.0.0-alpha.7":"95.0.4629.0","16.0.0-alpha.8":"96.0.4647.0","16.0.0-alpha.9":"96.0.4647.0","16.0.0-beta.1":"96.0.4647.0","16.0.0-beta.2":"96.0.4647.0","16.0.0-beta.3":"96.0.4647.0","16.0.0-beta.4":"96.0.4664.18","16.0.0-beta.5":"96.0.4664.18","16.0.0-beta.6":"96.0.4664.27","16.0.0-beta.7":"96.0.4664.27","16.0.0-beta.8":"96.0.4664.35","16.0.0-beta.9":"96.0.4664.35","16.0.0-nightly.20210722":"93.0.4566.0","16.0.0-nightly.20210723":"93.0.4566.0","16.0.0-nightly.20210726":"93.0.4566.0","16.0.0-nightly.20210727":"94.0.4584.0","16.0.0-nightly.20210728":"94.0.4584.0","16.0.0-nightly.20210729":"94.0.4584.0","16.0.0-nightly.20210730":"94.0.4584.0","16.0.0-nightly.20210802":"94.0.4584.0","16.0.0-nightly.20210803":"94.0.4584.0","16.0.0-nightly.20210804":"94.0.4584.0","16.0.0-nightly.20210805":"94.0.4584.0","16.0.0-nightly.20210806":"94.0.4584.0","16.0.0-nightly.20210809":"94.0.4584.0","16.0.0-nightly.20210810":"94.0.4584.0","16.0.0-nightly.20210811":"94.0.4584.0","16.0.0-nightly.20210812":"94.0.4590.2","16.0.0-nightly.20210813":"94.0.4590.2","16.0.0-nightly.20210816":"94.0.4590.2","16.0.0-nightly.20210817":"94.0.4590.2","16.0.0-nightly.20210818":"94.0.4590.2","16.0.0-nightly.20210819":"94.0.4590.2","16.0.0-nightly.20210820":"94.0.4590.2","16.0.0-nightly.20210823":"94.0.4590.2","16.0.0-nightly.20210824":"95.0.4612.5","16.0.0-nightly.20210825":"95.0.4612.5","16.0.0-nightly.20210826":"95.0.4612.5","16.0.0-nightly.20210827":"95.0.4612.5","16.0.0-nightly.20210830":"95.0.4612.5","16.0.0-nightly.20210831":"95.0.4612.5","16.0.0-nightly.20210901":"95.0.4612.5","16.0.0-nightly.20210902":"95.0.4629.0","16.0.0-nightly.20210903":"95.0.4629.0","16.0.0-nightly.20210906":"95.0.4629.0","16.0.0-nightly.20210907":"95.0.4629.0","16.0.0-nightly.20210908":"95.0.4629.0","16.0.0-nightly.20210909":"95.0.4629.0","16.0.0-nightly.20210910":"95.0.4629.0","16.0.0-nightly.20210913":"95.0.4629.0","16.0.0-nightly.20210914":"95.0.4629.0","16.0.0-nightly.20210915":"95.0.4629.0","16.0.0-nightly.20210916":"95.0.4629.0","16.0.0-nightly.20210917":"95.0.4629.0","16.0.0-nightly.20210920":"95.0.4629.0","16.0.0-nightly.20210921":"95.0.4629.0","16.0.0-nightly.20210922":"95.0.4629.0","16.0.0":"96.0.4664.45","16.0.1":"96.0.4664.45","16.0.2":"96.0.4664.55","16.0.3":"96.0.4664.55","16.0.4":"96.0.4664.55","16.0.5":"96.0.4664.55","16.0.6":"96.0.4664.110","16.0.7":"96.0.4664.110","16.0.8":"96.0.4664.110","16.0.9":"96.0.4664.174","16.0.10":"96.0.4664.174","16.1.0":"96.0.4664.174","16.1.1":"96.0.4664.174","16.2.0":"96.0.4664.174","16.2.1":"96.0.4664.174","16.2.2":"96.0.4664.174","16.2.3":"96.0.4664.174","16.2.4":"96.0.4664.174","16.2.5":"96.0.4664.174","16.2.6":"96.0.4664.174","16.2.7":"96.0.4664.174","16.2.8":"96.0.4664.174","17.0.0-alpha.1":"96.0.4664.4","17.0.0-alpha.2":"96.0.4664.4","17.0.0-alpha.3":"96.0.4664.4","17.0.0-alpha.4":"98.0.4706.0","17.0.0-alpha.5":"98.0.4706.0","17.0.0-alpha.6":"98.0.4706.0","17.0.0-beta.1":"98.0.4706.0","17.0.0-beta.2":"98.0.4706.0","17.0.0-beta.3":"98.0.4758.9","17.0.0-beta.4":"98.0.4758.11","17.0.0-beta.5":"98.0.4758.11","17.0.0-beta.6":"98.0.4758.11","17.0.0-beta.7":"98.0.4758.11","17.0.0-beta.8":"98.0.4758.11","17.0.0-beta.9":"98.0.4758.11","17.0.0-nightly.20210923":"95.0.4629.0","17.0.0-nightly.20210924":"95.0.4629.0","17.0.0-nightly.20210927":"95.0.4629.0","17.0.0-nightly.20210928":"95.0.4629.0","17.0.0-nightly.20210929":"95.0.4629.0","17.0.0-nightly.20210930":"95.0.4629.0","17.0.0-nightly.20211001":"95.0.4629.0","17.0.0-nightly.20211004":"95.0.4629.0","17.0.0-nightly.20211005":"95.0.4629.0","17.0.0-nightly.20211006":"96.0.4647.0","17.0.0-nightly.20211007":"96.0.4647.0","17.0.0-nightly.20211008":"96.0.4647.0","17.0.0-nightly.20211011":"96.0.4647.0","17.0.0-nightly.20211012":"96.0.4647.0","17.0.0-nightly.20211013":"96.0.4647.0","17.0.0-nightly.20211014":"96.0.4647.0","17.0.0-nightly.20211015":"96.0.4647.0","17.0.0-nightly.20211018":"96.0.4647.0","17.0.0-nightly.20211019":"96.0.4647.0","17.0.0-nightly.20211020":"96.0.4647.0","17.0.0-nightly.20211021":"96.0.4647.0","17.0.0-nightly.20211022":"96.0.4664.4","17.0.0-nightly.20211025":"96.0.4664.4","17.0.0-nightly.20211026":"96.0.4664.4","17.0.0-nightly.20211027":"96.0.4664.4","17.0.0-nightly.20211028":"96.0.4664.4","17.0.0-nightly.20211029":"96.0.4664.4","17.0.0-nightly.20211101":"96.0.4664.4","17.0.0-nightly.20211102":"96.0.4664.4","17.0.0-nightly.20211103":"96.0.4664.4","17.0.0-nightly.20211104":"96.0.4664.4","17.0.0-nightly.20211105":"96.0.4664.4","17.0.0-nightly.20211108":"96.0.4664.4","17.0.0-nightly.20211109":"96.0.4664.4","17.0.0-nightly.20211110":"96.0.4664.4","17.0.0-nightly.20211111":"96.0.4664.4","17.0.0-nightly.20211112":"96.0.4664.4","17.0.0-nightly.20211115":"96.0.4664.4","17.0.0-nightly.20211116":"96.0.4664.4","17.0.0-nightly.20211117":"96.0.4664.4","17.0.0":"98.0.4758.74","17.0.1":"98.0.4758.82","17.1.0":"98.0.4758.102","17.1.1":"98.0.4758.109","17.1.2":"98.0.4758.109","17.2.0":"98.0.4758.109","17.3.0":"98.0.4758.141","17.3.1":"98.0.4758.141","17.4.0":"98.0.4758.141","17.4.1":"98.0.4758.141","17.4.2":"98.0.4758.141","17.4.3":"98.0.4758.141","17.4.4":"98.0.4758.141","17.4.5":"98.0.4758.141","17.4.6":"98.0.4758.141","17.4.7":"98.0.4758.141","17.4.8":"98.0.4758.141","17.4.9":"98.0.4758.141","17.4.10":"98.0.4758.141","17.4.11":"98.0.4758.141","18.0.0-alpha.1":"99.0.4767.0","18.0.0-alpha.2":"99.0.4767.0","18.0.0-alpha.3":"99.0.4767.0","18.0.0-alpha.4":"99.0.4767.0","18.0.0-alpha.5":"99.0.4767.0","18.0.0-beta.1":"100.0.4894.0","18.0.0-beta.2":"100.0.4894.0","18.0.0-beta.3":"100.0.4894.0","18.0.0-beta.4":"100.0.4894.0","18.0.0-beta.5":"100.0.4894.0","18.0.0-beta.6":"100.0.4894.0","18.0.0-nightly.20211118":"96.0.4664.4","18.0.0-nightly.20211119":"96.0.4664.4","18.0.0-nightly.20211122":"96.0.4664.4","18.0.0-nightly.20211123":"96.0.4664.4","18.0.0-nightly.20211124":"98.0.4706.0","18.0.0-nightly.20211125":"98.0.4706.0","18.0.0-nightly.20211126":"98.0.4706.0","18.0.0-nightly.20211129":"98.0.4706.0","18.0.0-nightly.20211130":"98.0.4706.0","18.0.0-nightly.20211201":"98.0.4706.0","18.0.0-nightly.20211202":"98.0.4706.0","18.0.0-nightly.20211203":"98.0.4706.0","18.0.0-nightly.20211206":"98.0.4706.0","18.0.0-nightly.20211207":"98.0.4706.0","18.0.0-nightly.20211208":"98.0.4706.0","18.0.0-nightly.20211209":"98.0.4706.0","18.0.0-nightly.20211210":"98.0.4706.0","18.0.0-nightly.20211213":"98.0.4706.0","18.0.0-nightly.20211214":"98.0.4706.0","18.0.0-nightly.20211215":"98.0.4706.0","18.0.0-nightly.20211216":"98.0.4706.0","18.0.0-nightly.20211217":"98.0.4706.0","18.0.0-nightly.20211220":"98.0.4706.0","18.0.0-nightly.20211221":"98.0.4706.0","18.0.0-nightly.20211222":"98.0.4706.0","18.0.0-nightly.20211223":"98.0.4706.0","18.0.0-nightly.20211228":"98.0.4706.0","18.0.0-nightly.20211229":"98.0.4706.0","18.0.0-nightly.20211231":"98.0.4706.0","18.0.0-nightly.20220103":"98.0.4706.0","18.0.0-nightly.20220104":"98.0.4706.0","18.0.0-nightly.20220105":"98.0.4706.0","18.0.0-nightly.20220106":"98.0.4706.0","18.0.0-nightly.20220107":"98.0.4706.0","18.0.0-nightly.20220110":"98.0.4706.0","18.0.0-nightly.20220111":"99.0.4767.0","18.0.0-nightly.20220112":"99.0.4767.0","18.0.0-nightly.20220113":"99.0.4767.0","18.0.0-nightly.20220114":"99.0.4767.0","18.0.0-nightly.20220117":"99.0.4767.0","18.0.0-nightly.20220118":"99.0.4767.0","18.0.0-nightly.20220119":"99.0.4767.0","18.0.0-nightly.20220121":"99.0.4767.0","18.0.0-nightly.20220124":"99.0.4767.0","18.0.0-nightly.20220125":"99.0.4767.0","18.0.0-nightly.20220127":"99.0.4767.0","18.0.0-nightly.20220128":"99.0.4767.0","18.0.0-nightly.20220131":"99.0.4767.0","18.0.0-nightly.20220201":"99.0.4767.0","18.0.0":"100.0.4896.56","18.0.1":"100.0.4896.60","18.0.2":"100.0.4896.60","18.0.3":"100.0.4896.75","18.0.4":"100.0.4896.75","18.1.0":"100.0.4896.127","18.2.0":"100.0.4896.143","18.2.1":"100.0.4896.143","18.2.2":"100.0.4896.143","18.2.3":"100.0.4896.143","18.2.4":"100.0.4896.160","18.3.0":"100.0.4896.160","18.3.1":"100.0.4896.160","18.3.2":"100.0.4896.160","18.3.3":"100.0.4896.160","18.3.4":"100.0.4896.160","18.3.5":"100.0.4896.160","18.3.6":"100.0.4896.160","18.3.7":"100.0.4896.160","18.3.8":"100.0.4896.160","18.3.9":"100.0.4896.160","18.3.11":"100.0.4896.160","18.3.12":"100.0.4896.160","18.3.13":"100.0.4896.160","18.3.14":"100.0.4896.160","18.3.15":"100.0.4896.160","19.0.0-alpha.1":"102.0.4962.3","19.0.0-alpha.2":"102.0.4971.0","19.0.0-alpha.3":"102.0.4971.0","19.0.0-alpha.4":"102.0.4989.0","19.0.0-alpha.5":"102.0.4989.0","19.0.0-beta.1":"102.0.4999.0","19.0.0-beta.2":"102.0.4999.0","19.0.0-beta.3":"102.0.4999.0","19.0.0-beta.4":"102.0.5005.27","19.0.0-beta.5":"102.0.5005.40","19.0.0-beta.6":"102.0.5005.40","19.0.0-beta.7":"102.0.5005.40","19.0.0-beta.8":"102.0.5005.49","19.0.0-nightly.20220202":"99.0.4767.0","19.0.0-nightly.20220203":"99.0.4767.0","19.0.0-nightly.20220204":"99.0.4767.0","19.0.0-nightly.20220207":"99.0.4767.0","19.0.0-nightly.20220208":"99.0.4767.0","19.0.0-nightly.20220209":"99.0.4767.0","19.0.0-nightly.20220308":"100.0.4894.0","19.0.0-nightly.20220309":"100.0.4894.0","19.0.0-nightly.20220310":"100.0.4894.0","19.0.0-nightly.20220311":"100.0.4894.0","19.0.0-nightly.20220314":"100.0.4894.0","19.0.0-nightly.20220315":"100.0.4894.0","19.0.0-nightly.20220316":"100.0.4894.0","19.0.0-nightly.20220317":"100.0.4894.0","19.0.0-nightly.20220318":"100.0.4894.0","19.0.0-nightly.20220321":"100.0.4894.0","19.0.0-nightly.20220322":"100.0.4894.0","19.0.0-nightly.20220323":"100.0.4894.0","19.0.0-nightly.20220324":"100.0.4894.0","19.0.0-nightly.20220325":"102.0.4961.0","19.0.0-nightly.20220328":"102.0.4962.3","19.0.0-nightly.20220329":"102.0.4962.3","19.0.0":"102.0.5005.61","19.0.1":"102.0.5005.61","19.0.2":"102.0.5005.63","19.0.3":"102.0.5005.63","19.0.4":"102.0.5005.63","19.0.5":"102.0.5005.115","19.0.6":"102.0.5005.115","19.0.7":"102.0.5005.134","19.0.8":"102.0.5005.148","19.0.9":"102.0.5005.167","19.0.10":"102.0.5005.167","19.0.11":"102.0.5005.167","19.0.12":"102.0.5005.167","19.0.13":"102.0.5005.167","19.0.14":"102.0.5005.167","19.0.15":"102.0.5005.167","19.0.16":"102.0.5005.167","19.0.17":"102.0.5005.167","19.1.0":"102.0.5005.167","19.1.1":"102.0.5005.167","19.1.2":"102.0.5005.167","19.1.3":"102.0.5005.167","19.1.4":"102.0.5005.167","19.1.5":"102.0.5005.167","19.1.6":"102.0.5005.167","19.1.7":"102.0.5005.167","19.1.8":"102.0.5005.167","19.1.9":"102.0.5005.167","20.0.0-alpha.1":"103.0.5044.0","20.0.0-alpha.2":"104.0.5073.0","20.0.0-alpha.3":"104.0.5073.0","20.0.0-alpha.4":"104.0.5073.0","20.0.0-alpha.5":"104.0.5073.0","20.0.0-alpha.6":"104.0.5073.0","20.0.0-alpha.7":"104.0.5073.0","20.0.0-beta.1":"104.0.5073.0","20.0.0-beta.2":"104.0.5073.0","20.0.0-beta.3":"104.0.5073.0","20.0.0-beta.4":"104.0.5073.0","20.0.0-beta.5":"104.0.5073.0","20.0.0-beta.6":"104.0.5073.0","20.0.0-beta.7":"104.0.5073.0","20.0.0-beta.8":"104.0.5073.0","20.0.0-beta.9":"104.0.5112.39","20.0.0-beta.10":"104.0.5112.48","20.0.0-beta.11":"104.0.5112.48","20.0.0-beta.12":"104.0.5112.48","20.0.0-beta.13":"104.0.5112.57","20.0.0-nightly.20220330":"102.0.4962.3","20.0.0-nightly.20220411":"102.0.4971.0","20.0.0-nightly.20220414":"102.0.4989.0","20.0.0-nightly.20220415":"102.0.4989.0","20.0.0-nightly.20220418":"102.0.4989.0","20.0.0-nightly.20220419":"102.0.4989.0","20.0.0-nightly.20220420":"102.0.4989.0","20.0.0-nightly.20220421":"102.0.4989.0","20.0.0-nightly.20220425":"102.0.4999.0","20.0.0-nightly.20220426":"102.0.4999.0","20.0.0-nightly.20220427":"102.0.4999.0","20.0.0-nightly.20220428":"102.0.4999.0","20.0.0-nightly.20220429":"102.0.4999.0","20.0.0-nightly.20220502":"102.0.4999.0","20.0.0-nightly.20220503":"102.0.4999.0","20.0.0-nightly.20220504":"102.0.4999.0","20.0.0-nightly.20220505":"102.0.4999.0","20.0.0-nightly.20220506":"102.0.4999.0","20.0.0-nightly.20220509":"102.0.4999.0","20.0.0-nightly.20220511":"102.0.4999.0","20.0.0-nightly.20220512":"102.0.4999.0","20.0.0-nightly.20220513":"102.0.4999.0","20.0.0-nightly.20220516":"102.0.4999.0","20.0.0-nightly.20220517":"102.0.4999.0","20.0.0-nightly.20220518":"103.0.5044.0","20.0.0-nightly.20220519":"103.0.5044.0","20.0.0-nightly.20220520":"103.0.5044.0","20.0.0-nightly.20220523":"103.0.5044.0","20.0.0-nightly.20220524":"103.0.5044.0","20.0.0":"104.0.5112.65","20.0.1":"104.0.5112.81","20.0.2":"104.0.5112.81","20.0.3":"104.0.5112.81","20.1.0":"104.0.5112.102","20.1.1":"104.0.5112.102","20.1.2":"104.0.5112.114","20.1.3":"104.0.5112.114","20.1.4":"104.0.5112.114","20.2.0":"104.0.5112.124","20.3.0":"104.0.5112.124","20.3.1":"104.0.5112.124","20.3.2":"104.0.5112.124","20.3.3":"104.0.5112.124","20.3.4":"104.0.5112.124","20.3.5":"104.0.5112.124","20.3.6":"104.0.5112.124","20.3.7":"104.0.5112.124","20.3.8":"104.0.5112.124","20.3.9":"104.0.5112.124","20.3.10":"104.0.5112.124","20.3.11":"104.0.5112.124","20.3.12":"104.0.5112.124","21.0.0-alpha.1":"105.0.5187.0","21.0.0-alpha.2":"105.0.5187.0","21.0.0-alpha.3":"105.0.5187.0","21.0.0-alpha.4":"105.0.5187.0","21.0.0-alpha.5":"105.0.5187.0","21.0.0-alpha.6":"106.0.5216.0","21.0.0-beta.1":"106.0.5216.0","21.0.0-beta.2":"106.0.5216.0","21.0.0-beta.3":"106.0.5216.0","21.0.0-beta.4":"106.0.5216.0","21.0.0-beta.5":"106.0.5216.0","21.0.0-beta.6":"106.0.5249.40","21.0.0-beta.7":"106.0.5249.40","21.0.0-beta.8":"106.0.5249.40","21.0.0-nightly.20220526":"103.0.5044.0","21.0.0-nightly.20220527":"103.0.5044.0","21.0.0-nightly.20220530":"103.0.5044.0","21.0.0-nightly.20220531":"103.0.5044.0","21.0.0-nightly.20220602":"104.0.5073.0","21.0.0-nightly.20220603":"104.0.5073.0","21.0.0-nightly.20220606":"104.0.5073.0","21.0.0-nightly.20220607":"104.0.5073.0","21.0.0-nightly.20220608":"104.0.5073.0","21.0.0-nightly.20220609":"104.0.5073.0","21.0.0-nightly.20220610":"104.0.5073.0","21.0.0-nightly.20220613":"104.0.5073.0","21.0.0-nightly.20220614":"104.0.5073.0","21.0.0-nightly.20220615":"104.0.5073.0","21.0.0-nightly.20220616":"104.0.5073.0","21.0.0-nightly.20220617":"104.0.5073.0","21.0.0-nightly.20220620":"104.0.5073.0","21.0.0-nightly.20220621":"104.0.5073.0","21.0.0-nightly.20220622":"104.0.5073.0","21.0.0-nightly.20220623":"104.0.5073.0","21.0.0-nightly.20220624":"104.0.5073.0","21.0.0-nightly.20220627":"104.0.5073.0","21.0.0-nightly.20220628":"105.0.5129.0","21.0.0-nightly.20220629":"105.0.5129.0","21.0.0-nightly.20220630":"105.0.5129.0","21.0.0-nightly.20220701":"105.0.5129.0","21.0.0-nightly.20220704":"105.0.5129.0","21.0.0-nightly.20220705":"105.0.5129.0","21.0.0-nightly.20220706":"105.0.5129.0","21.0.0-nightly.20220707":"105.0.5129.0","21.0.0-nightly.20220708":"105.0.5129.0","21.0.0-nightly.20220711":"105.0.5129.0","21.0.0-nightly.20220712":"105.0.5129.0","21.0.0-nightly.20220713":"105.0.5129.0","21.0.0-nightly.20220715":"105.0.5173.0","21.0.0-nightly.20220718":"105.0.5173.0","21.0.0-nightly.20220719":"105.0.5173.0","21.0.0-nightly.20220720":"105.0.5187.0","21.0.0-nightly.20220721":"105.0.5187.0","21.0.0-nightly.20220722":"105.0.5187.0","21.0.0-nightly.20220725":"105.0.5187.0","21.0.0-nightly.20220726":"105.0.5187.0","21.0.0-nightly.20220727":"105.0.5187.0","21.0.0-nightly.20220728":"105.0.5187.0","21.0.0-nightly.20220801":"105.0.5187.0","21.0.0-nightly.20220802":"105.0.5187.0","21.0.0":"106.0.5249.51","21.0.1":"106.0.5249.61","21.1.0":"106.0.5249.91","21.1.1":"106.0.5249.103","21.2.0":"106.0.5249.119","21.2.1":"106.0.5249.165","21.2.2":"106.0.5249.168","21.2.3":"106.0.5249.168","21.3.0":"106.0.5249.181","21.3.1":"106.0.5249.181","21.3.3":"106.0.5249.199","21.3.4":"106.0.5249.199","21.3.5":"106.0.5249.199","21.4.0":"106.0.5249.199","21.4.1":"106.0.5249.199","21.4.2":"106.0.5249.199","21.4.3":"106.0.5249.199","21.4.4":"106.0.5249.199","22.0.0-alpha.1":"107.0.5286.0","22.0.0-alpha.3":"108.0.5329.0","22.0.0-alpha.4":"108.0.5329.0","22.0.0-alpha.5":"108.0.5329.0","22.0.0-alpha.6":"108.0.5329.0","22.0.0-alpha.7":"108.0.5355.0","22.0.0-alpha.8":"108.0.5359.10","22.0.0-beta.1":"108.0.5359.10","22.0.0-beta.2":"108.0.5359.10","22.0.0-beta.3":"108.0.5359.10","22.0.0-beta.4":"108.0.5359.29","22.0.0-beta.5":"108.0.5359.40","22.0.0-beta.6":"108.0.5359.40","22.0.0-beta.7":"108.0.5359.48","22.0.0-beta.8":"108.0.5359.48","22.0.0-nightly.20220808":"105.0.5187.0","22.0.0-nightly.20220809":"105.0.5187.0","22.0.0-nightly.20220810":"105.0.5187.0","22.0.0-nightly.20220811":"105.0.5187.0","22.0.0-nightly.20220812":"105.0.5187.0","22.0.0-nightly.20220815":"105.0.5187.0","22.0.0-nightly.20220816":"105.0.5187.0","22.0.0-nightly.20220817":"105.0.5187.0","22.0.0-nightly.20220822":"106.0.5216.0","22.0.0-nightly.20220823":"106.0.5216.0","22.0.0-nightly.20220824":"106.0.5216.0","22.0.0-nightly.20220825":"106.0.5216.0","22.0.0-nightly.20220829":"106.0.5216.0","22.0.0-nightly.20220830":"106.0.5216.0","22.0.0-nightly.20220831":"106.0.5216.0","22.0.0-nightly.20220901":"106.0.5216.0","22.0.0-nightly.20220902":"106.0.5216.0","22.0.0-nightly.20220905":"106.0.5216.0","22.0.0-nightly.20220908":"107.0.5274.0","22.0.0-nightly.20220909":"107.0.5286.0","22.0.0-nightly.20220912":"107.0.5286.0","22.0.0-nightly.20220913":"107.0.5286.0","22.0.0-nightly.20220914":"107.0.5286.0","22.0.0-nightly.20220915":"107.0.5286.0","22.0.0-nightly.20220916":"107.0.5286.0","22.0.0-nightly.20220919":"107.0.5286.0","22.0.0-nightly.20220920":"107.0.5286.0","22.0.0-nightly.20220921":"107.0.5286.0","22.0.0-nightly.20220922":"107.0.5286.0","22.0.0-nightly.20220923":"107.0.5286.0","22.0.0-nightly.20220926":"107.0.5286.0","22.0.0-nightly.20220927":"107.0.5286.0","22.0.0-nightly.20220928":"107.0.5286.0","22.0.0":"108.0.5359.62","22.0.1":"108.0.5359.125","22.0.2":"108.0.5359.179","22.0.3":"108.0.5359.179","22.1.0":"108.0.5359.179","22.2.0":"108.0.5359.215","22.2.1":"108.0.5359.215","22.3.0":"108.0.5359.215","22.3.1":"108.0.5359.215","22.3.2":"108.0.5359.215","22.3.3":"108.0.5359.215","22.3.4":"108.0.5359.215","22.3.5":"108.0.5359.215","22.3.6":"108.0.5359.215","22.3.7":"108.0.5359.215","22.3.8":"108.0.5359.215","22.3.9":"108.0.5359.215","22.3.10":"108.0.5359.215","22.3.11":"108.0.5359.215","23.0.0-alpha.1":"110.0.5415.0","23.0.0-alpha.2":"110.0.5451.0","23.0.0-alpha.3":"110.0.5451.0","23.0.0-beta.1":"110.0.5478.5","23.0.0-beta.2":"110.0.5478.5","23.0.0-beta.3":"110.0.5478.5","23.0.0-beta.4":"110.0.5481.30","23.0.0-beta.5":"110.0.5481.38","23.0.0-beta.6":"110.0.5481.52","23.0.0-beta.8":"110.0.5481.52","23.0.0-nightly.20220929":"107.0.5286.0","23.0.0-nightly.20220930":"107.0.5286.0","23.0.0-nightly.20221003":"107.0.5286.0","23.0.0-nightly.20221004":"108.0.5329.0","23.0.0-nightly.20221005":"108.0.5329.0","23.0.0-nightly.20221006":"108.0.5329.0","23.0.0-nightly.20221007":"108.0.5329.0","23.0.0-nightly.20221010":"108.0.5329.0","23.0.0-nightly.20221011":"108.0.5329.0","23.0.0-nightly.20221012":"108.0.5329.0","23.0.0-nightly.20221013":"108.0.5329.0","23.0.0-nightly.20221014":"108.0.5329.0","23.0.0-nightly.20221017":"108.0.5329.0","23.0.0-nightly.20221018":"108.0.5355.0","23.0.0-nightly.20221019":"108.0.5355.0","23.0.0-nightly.20221020":"108.0.5355.0","23.0.0-nightly.20221021":"108.0.5355.0","23.0.0-nightly.20221024":"108.0.5355.0","23.0.0-nightly.20221026":"108.0.5355.0","23.0.0-nightly.20221027":"109.0.5382.0","23.0.0-nightly.20221028":"109.0.5382.0","23.0.0-nightly.20221031":"109.0.5382.0","23.0.0-nightly.20221101":"109.0.5382.0","23.0.0-nightly.20221102":"109.0.5382.0","23.0.0-nightly.20221103":"109.0.5382.0","23.0.0-nightly.20221104":"109.0.5382.0","23.0.0-nightly.20221107":"109.0.5382.0","23.0.0-nightly.20221108":"109.0.5382.0","23.0.0-nightly.20221109":"109.0.5382.0","23.0.0-nightly.20221110":"109.0.5382.0","23.0.0-nightly.20221111":"109.0.5382.0","23.0.0-nightly.20221114":"109.0.5382.0","23.0.0-nightly.20221115":"109.0.5382.0","23.0.0-nightly.20221116":"109.0.5382.0","23.0.0-nightly.20221117":"109.0.5382.0","23.0.0-nightly.20221118":"110.0.5415.0","23.0.0-nightly.20221121":"110.0.5415.0","23.0.0-nightly.20221122":"110.0.5415.0","23.0.0-nightly.20221123":"110.0.5415.0","23.0.0-nightly.20221124":"110.0.5415.0","23.0.0-nightly.20221125":"110.0.5415.0","23.0.0-nightly.20221128":"110.0.5415.0","23.0.0-nightly.20221129":"110.0.5415.0","23.0.0-nightly.20221130":"110.0.5415.0","23.0.0":"110.0.5481.77","23.1.0":"110.0.5481.100","23.1.1":"110.0.5481.104","23.1.2":"110.0.5481.177","23.1.3":"110.0.5481.179","23.1.4":"110.0.5481.192","23.2.0":"110.0.5481.192","23.2.1":"110.0.5481.208","23.2.2":"110.0.5481.208","23.2.3":"110.0.5481.208","23.2.4":"110.0.5481.208","23.3.0":"110.0.5481.208","23.3.1":"110.0.5481.208","23.3.2":"110.0.5481.208","23.3.3":"110.0.5481.208","23.3.4":"110.0.5481.208","24.0.0-alpha.1":"111.0.5560.0","24.0.0-alpha.2":"111.0.5560.0","24.0.0-alpha.3":"111.0.5560.0","24.0.0-alpha.4":"111.0.5560.0","24.0.0-alpha.5":"111.0.5560.0","24.0.0-alpha.6":"111.0.5560.0","24.0.0-alpha.7":"111.0.5560.0","24.0.0-beta.1":"111.0.5563.50","24.0.0-beta.2":"111.0.5563.50","24.0.0-beta.3":"112.0.5615.20","24.0.0-beta.4":"112.0.5615.20","24.0.0-beta.5":"112.0.5615.29","24.0.0-beta.6":"112.0.5615.39","24.0.0-beta.7":"112.0.5615.39","24.0.0-nightly.20221201":"110.0.5415.0","24.0.0-nightly.20221202":"110.0.5415.0","24.0.0-nightly.20221205":"110.0.5415.0","24.0.0-nightly.20221206":"110.0.5451.0","24.0.0-nightly.20221207":"110.0.5451.0","24.0.0-nightly.20221208":"110.0.5451.0","24.0.0-nightly.20221213":"110.0.5451.0","24.0.0-nightly.20221214":"110.0.5451.0","24.0.0-nightly.20221215":"110.0.5451.0","24.0.0-nightly.20221216":"110.0.5451.0","24.0.0-nightly.20230109":"111.0.5518.0","24.0.0-nightly.20230110":"111.0.5518.0","24.0.0-nightly.20230111":"111.0.5518.0","24.0.0-nightly.20230112":"111.0.5518.0","24.0.0-nightly.20230113":"111.0.5518.0","24.0.0-nightly.20230116":"111.0.5518.0","24.0.0-nightly.20230117":"111.0.5518.0","24.0.0-nightly.20230118":"111.0.5518.0","24.0.0-nightly.20230119":"111.0.5518.0","24.0.0-nightly.20230120":"111.0.5518.0","24.0.0-nightly.20230123":"111.0.5518.0","24.0.0-nightly.20230124":"111.0.5518.0","24.0.0-nightly.20230125":"111.0.5518.0","24.0.0-nightly.20230126":"111.0.5518.0","24.0.0-nightly.20230127":"111.0.5518.0","24.0.0-nightly.20230131":"111.0.5518.0","24.0.0-nightly.20230201":"111.0.5518.0","24.0.0-nightly.20230202":"111.0.5518.0","24.0.0-nightly.20230203":"111.0.5560.0","24.0.0-nightly.20230206":"111.0.5560.0","24.0.0-nightly.20230207":"111.0.5560.0","24.0.0-nightly.20230208":"111.0.5560.0","24.0.0-nightly.20230209":"111.0.5560.0","24.0.0":"112.0.5615.49","24.1.0":"112.0.5615.50","24.1.1":"112.0.5615.50","24.1.2":"112.0.5615.87","24.1.3":"112.0.5615.165","24.2.0":"112.0.5615.165","24.3.0":"112.0.5615.165","24.3.1":"112.0.5615.183","24.4.0":"112.0.5615.204","24.4.1":"112.0.5615.204","25.0.0-alpha.1":"114.0.5694.0","25.0.0-alpha.2":"114.0.5694.0","25.0.0-alpha.3":"114.0.5710.0","25.0.0-alpha.4":"114.0.5710.0","25.0.0-alpha.5":"114.0.5719.0","25.0.0-alpha.6":"114.0.5719.0","25.0.0-beta.1":"114.0.5719.0","25.0.0-beta.2":"114.0.5719.0","25.0.0-beta.3":"114.0.5719.0","25.0.0-beta.4":"114.0.5735.16","25.0.0-beta.5":"114.0.5735.16","25.0.0-beta.6":"114.0.5735.16","25.0.0-beta.7":"114.0.5735.16","25.0.0-beta.8":"114.0.5735.35","25.0.0-beta.9":"114.0.5735.45","25.0.0-nightly.20230210":"111.0.5560.0","25.0.0-nightly.20230214":"111.0.5560.0","25.0.0-nightly.20230215":"111.0.5560.0","25.0.0-nightly.20230216":"111.0.5560.0","25.0.0-nightly.20230217":"111.0.5560.0","25.0.0-nightly.20230220":"111.0.5560.0","25.0.0-nightly.20230221":"111.0.5560.0","25.0.0-nightly.20230222":"111.0.5560.0","25.0.0-nightly.20230223":"111.0.5560.0","25.0.0-nightly.20230224":"111.0.5560.0","25.0.0-nightly.20230227":"111.0.5560.0","25.0.0-nightly.20230228":"111.0.5560.0","25.0.0-nightly.20230301":"111.0.5560.0","25.0.0-nightly.20230302":"111.0.5560.0","25.0.0-nightly.20230303":"111.0.5560.0","25.0.0-nightly.20230306":"111.0.5560.0","25.0.0-nightly.20230307":"111.0.5560.0","25.0.0-nightly.20230308":"111.0.5560.0","25.0.0-nightly.20230309":"111.0.5560.0","25.0.0-nightly.20230310":"111.0.5560.0","25.0.0-nightly.20230314":"113.0.5636.0","25.0.0-nightly.20230315":"113.0.5651.0","25.0.0-nightly.20230317":"113.0.5653.0","25.0.0-nightly.20230320":"113.0.5660.0","25.0.0-nightly.20230321":"113.0.5664.0","25.0.0-nightly.20230322":"113.0.5666.0","25.0.0-nightly.20230323":"113.0.5668.0","25.0.0-nightly.20230324":"113.0.5670.0","25.0.0-nightly.20230327":"113.0.5670.0","25.0.0-nightly.20230328":"113.0.5670.0","25.0.0-nightly.20230329":"113.0.5670.0","25.0.0-nightly.20230330":"113.0.5670.0","25.0.0-nightly.20230331":"114.0.5684.0","25.0.0-nightly.20230403":"114.0.5684.0","25.0.0-nightly.20230404":"114.0.5692.0","25.0.0-nightly.20230405":"114.0.5694.0","25.0.0":"114.0.5735.45","26.0.0-nightly.20230406":"114.0.5694.0","26.0.0-nightly.20230407":"114.0.5694.0","26.0.0-nightly.20230410":"114.0.5694.0","26.0.0-nightly.20230411":"114.0.5694.0","26.0.0-nightly.20230412":"114.0.5708.0","26.0.0-nightly.20230413":"114.0.5710.0","26.0.0-nightly.20230414":"114.0.5710.0","26.0.0-nightly.20230417":"114.0.5710.0","26.0.0-nightly.20230418":"114.0.5715.0","26.0.0-nightly.20230421":"114.0.5719.0","26.0.0-nightly.20230424":"114.0.5719.0","26.0.0-nightly.20230425":"114.0.5719.0","26.0.0-nightly.20230426":"114.0.5719.0","26.0.0-nightly.20230427":"114.0.5719.0","26.0.0-nightly.20230428":"114.0.5719.0","26.0.0-nightly.20230501":"114.0.5719.0","26.0.0-nightly.20230502":"114.0.5719.0","26.0.0-nightly.20230503":"114.0.5719.0","26.0.0-nightly.20230504":"114.0.5719.0","26.0.0-nightly.20230505":"114.0.5719.0","26.0.0-nightly.20230508":"114.0.5719.0","26.0.0-nightly.20230509":"114.0.5719.0","26.0.0-nightly.20230510":"114.0.5719.0","26.0.0-nightly.20230511":"115.0.5760.0","26.0.0-nightly.20230512":"115.0.5760.0","26.0.0-nightly.20230515":"115.0.5760.0","26.0.0-nightly.20230516":"115.0.5760.0","26.0.0-nightly.20230517":"115.0.5760.0","26.0.0-nightly.20230518":"115.0.5760.0","26.0.0-nightly.20230519":"115.0.5760.0","26.0.0-nightly.20230522":"115.0.5760.0","26.0.0-nightly.20230523":"115.0.5760.0","26.0.0-nightly.20230524":"115.0.5786.0","26.0.0-nightly.20230525":"115.0.5790.0","26.0.0-nightly.20230526":"116.0.5791.0","26.0.0-nightly.20230529":"116.0.5791.0"}
\ No newline at end of file
diff --git a/node_modules/electron-to-chromium/index.js b/node_modules/electron-to-chromium/index.js
new file mode 100644
index 0000000..1818281
--- /dev/null
+++ b/node_modules/electron-to-chromium/index.js
@@ -0,0 +1,36 @@
+var versions = require('./versions');
+var fullVersions = require('./full-versions');
+var chromiumVersions = require('./chromium-versions');
+var fullChromiumVersions = require('./full-chromium-versions');
+
+var electronToChromium = function (query) {
+ var number = getQueryString(query);
+ return number.split('.').length > 2 ? fullVersions[number] : versions[number] || undefined;
+};
+
+var chromiumToElectron = function (query) {
+ var number = getQueryString(query);
+ return number.split('.').length > 2 ? fullChromiumVersions[number] : chromiumVersions[number] || undefined;
+};
+
+var electronToBrowserList = function (query) {
+ var number = getQueryString(query);
+ return versions[number] ? "Chrome >= " + versions[number] : undefined;
+};
+
+var getQueryString = function (query) {
+ var number = query;
+ if (query === 1) { number = "1.0" }
+ if (typeof query === 'number') { number += ''; }
+ return number;
+};
+
+module.exports = {
+ versions: versions,
+ fullVersions: fullVersions,
+ chromiumVersions: chromiumVersions,
+ fullChromiumVersions: fullChromiumVersions,
+ electronToChromium: electronToChromium,
+ electronToBrowserList: electronToBrowserList,
+ chromiumToElectron: chromiumToElectron
+};
diff --git a/node_modules/electron-to-chromium/package.json b/node_modules/electron-to-chromium/package.json
new file mode 100644
index 0000000..f534970
--- /dev/null
+++ b/node_modules/electron-to-chromium/package.json
@@ -0,0 +1,44 @@
+{
+ "name": "electron-to-chromium",
+ "version": "1.4.413",
+ "description": "Provides a list of electron-to-chromium version mappings",
+ "main": "index.js",
+ "files": [
+ "versions.js",
+ "full-versions.js",
+ "chromium-versions.js",
+ "full-chromium-versions.js",
+ "versions.json",
+ "full-versions.json",
+ "chromium-versions.json",
+ "full-chromium-versions.json",
+ "LICENSE"
+ ],
+ "scripts": {
+ "build": "node build.mjs",
+ "update": "node automated-update.js",
+ "test": "nyc ava --verbose",
+ "report": "nyc report --reporter=text-lcov > coverage.lcov && codecov"
+ },
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/kilian/electron-to-chromium/"
+ },
+ "keywords": [
+ "electron",
+ "chrome",
+ "chromium",
+ "browserslist",
+ "browserlist"
+ ],
+ "author": "Kilian Valkhof",
+ "license": "ISC",
+ "devDependencies": {
+ "ava": "^5.1.1",
+ "codecov": "^3.8.2",
+ "compare-versions": "^6.0.0-rc.1",
+ "node-fetch": "^3.3.0",
+ "nyc": "^15.1.0",
+ "shelljs": "^0.8.5"
+ }
+}
diff --git a/node_modules/electron-to-chromium/versions.js b/node_modules/electron-to-chromium/versions.js
new file mode 100644
index 0000000..cda5ec4
--- /dev/null
+++ b/node_modules/electron-to-chromium/versions.js
@@ -0,0 +1,121 @@
+module.exports = {
+ "0.20": "39",
+ "0.21": "41",
+ "0.22": "41",
+ "0.23": "41",
+ "0.24": "41",
+ "0.25": "42",
+ "0.26": "42",
+ "0.27": "43",
+ "0.28": "43",
+ "0.29": "43",
+ "0.30": "44",
+ "0.31": "45",
+ "0.32": "45",
+ "0.33": "45",
+ "0.34": "45",
+ "0.35": "45",
+ "0.36": "47",
+ "0.37": "49",
+ "1.0": "49",
+ "1.1": "50",
+ "1.2": "51",
+ "1.3": "52",
+ "1.4": "53",
+ "1.5": "54",
+ "1.6": "56",
+ "1.7": "58",
+ "1.8": "59",
+ "2.0": "61",
+ "2.1": "61",
+ "3.0": "66",
+ "3.1": "66",
+ "4.0": "69",
+ "4.1": "69",
+ "4.2": "69",
+ "5.0": "73",
+ "6.0": "76",
+ "6.1": "76",
+ "7.0": "78",
+ "7.1": "78",
+ "7.2": "78",
+ "7.3": "78",
+ "8.0": "80",
+ "8.1": "80",
+ "8.2": "80",
+ "8.3": "80",
+ "8.4": "80",
+ "8.5": "80",
+ "9.0": "83",
+ "9.1": "83",
+ "9.2": "83",
+ "9.3": "83",
+ "9.4": "83",
+ "10.0": "85",
+ "10.1": "85",
+ "10.2": "85",
+ "10.3": "85",
+ "10.4": "85",
+ "11.0": "87",
+ "11.1": "87",
+ "11.2": "87",
+ "11.3": "87",
+ "11.4": "87",
+ "11.5": "87",
+ "12.0": "89",
+ "12.1": "89",
+ "12.2": "89",
+ "13.0": "91",
+ "13.1": "91",
+ "13.2": "91",
+ "13.3": "91",
+ "13.4": "91",
+ "13.5": "91",
+ "13.6": "91",
+ "14.0": "93",
+ "14.1": "93",
+ "14.2": "93",
+ "15.0": "94",
+ "15.1": "94",
+ "15.2": "94",
+ "15.3": "94",
+ "15.4": "94",
+ "15.5": "94",
+ "16.0": "96",
+ "16.1": "96",
+ "16.2": "96",
+ "17.0": "98",
+ "17.1": "98",
+ "17.2": "98",
+ "17.3": "98",
+ "17.4": "98",
+ "18.0": "100",
+ "18.1": "100",
+ "18.2": "100",
+ "18.3": "100",
+ "19.0": "102",
+ "19.1": "102",
+ "20.0": "104",
+ "20.1": "104",
+ "20.2": "104",
+ "20.3": "104",
+ "21.0": "106",
+ "21.1": "106",
+ "21.2": "106",
+ "21.3": "106",
+ "21.4": "106",
+ "22.0": "108",
+ "22.1": "108",
+ "22.2": "108",
+ "22.3": "108",
+ "23.0": "110",
+ "23.1": "110",
+ "23.2": "110",
+ "23.3": "110",
+ "24.0": "112",
+ "24.1": "112",
+ "24.2": "112",
+ "24.3": "112",
+ "24.4": "112",
+ "25.0": "114"
+};
\ No newline at end of file
diff --git a/node_modules/electron-to-chromium/versions.json b/node_modules/electron-to-chromium/versions.json
new file mode 100644
index 0000000..ac430c6
--- /dev/null
+++ b/node_modules/electron-to-chromium/versions.json
@@ -0,0 +1 @@
+{"0.20":"39","0.21":"41","0.22":"41","0.23":"41","0.24":"41","0.25":"42","0.26":"42","0.27":"43","0.28":"43","0.29":"43","0.30":"44","0.31":"45","0.32":"45","0.33":"45","0.34":"45","0.35":"45","0.36":"47","0.37":"49","1.0":"49","1.1":"50","1.2":"51","1.3":"52","1.4":"53","1.5":"54","1.6":"56","1.7":"58","1.8":"59","2.0":"61","2.1":"61","3.0":"66","3.1":"66","4.0":"69","4.1":"69","4.2":"69","5.0":"73","6.0":"76","6.1":"76","7.0":"78","7.1":"78","7.2":"78","7.3":"78","8.0":"80","8.1":"80","8.2":"80","8.3":"80","8.4":"80","8.5":"80","9.0":"83","9.1":"83","9.2":"83","9.3":"83","9.4":"83","10.0":"85","10.1":"85","10.2":"85","10.3":"85","10.4":"85","11.0":"87","11.1":"87","11.2":"87","11.3":"87","11.4":"87","11.5":"87","12.0":"89","12.1":"89","12.2":"89","13.0":"91","13.1":"91","13.2":"91","13.3":"91","13.4":"91","13.5":"91","13.6":"91","14.0":"93","14.1":"93","14.2":"93","15.0":"94","15.1":"94","15.2":"94","15.3":"94","15.4":"94","15.5":"94","16.0":"96","16.1":"96","16.2":"96","17.0":"98","17.1":"98","17.2":"98","17.3":"98","17.4":"98","18.0":"100","18.1":"100","18.2":"100","18.3":"100","19.0":"102","19.1":"102","20.0":"104","20.1":"104","20.2":"104","20.3":"104","21.0":"106","21.1":"106","21.2":"106","21.3":"106","21.4":"106","22.0":"108","22.1":"108","22.2":"108","22.3":"108","23.0":"110","23.1":"110","23.2":"110","23.3":"110","24.0":"112","24.1":"112","24.2":"112","24.3":"112","24.4":"112","25.0":"114"}
\ No newline at end of file
diff --git a/node_modules/emoji-regex/LICENSE-MIT.txt b/node_modules/emoji-regex/LICENSE-MIT.txt
new file mode 100644
index 0000000..a41e0a7
--- /dev/null
+++ b/node_modules/emoji-regex/LICENSE-MIT.txt
@@ -0,0 +1,20 @@
+Copyright Mathias Bynens
+
+Permission is hereby granted, free of charge, to any person obtaining
+a copy of this software and associated documentation files (the
+"Software"), to deal in the Software without restriction, including
+without limitation the rights to use, copy, modify, merge, publish,
+distribute, sublicense, and/or sell copies of the Software, and to
+permit persons to whom the Software is furnished to do so, subject to
+the following conditions:
+
+The above copyright notice and this permission notice shall be
+included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
diff --git a/node_modules/emoji-regex/README.md b/node_modules/emoji-regex/README.md
new file mode 100644
index 0000000..f10e173
--- /dev/null
+++ b/node_modules/emoji-regex/README.md
@@ -0,0 +1,73 @@
+# emoji-regex [![Build status](https://travis-ci.org/mathiasbynens/emoji-regex.svg?branch=master)](https://travis-ci.org/mathiasbynens/emoji-regex)
+
+_emoji-regex_ offers a regular expression to match all emoji symbols (including textual representations of emoji) as per the Unicode Standard.
+
+This repository contains a script that generates this regular expression based on [the data from Unicode v12](https://github.com/mathiasbynens/unicode-12.0.0). Because of this, the regular expression can easily be updated whenever new emoji are added to the Unicode standard.
+
+## Installation
+
+Via [npm](https://www.npmjs.com/):
+
+```bash
+npm install emoji-regex
+```
+
+In [Node.js](https://nodejs.org/):
+
+```js
+const emojiRegex = require('emoji-regex');
+// Note: because the regular expression has the global flag set, this module
+// exports a function that returns the regex rather than exporting the regular
+// expression itself, to make it impossible to (accidentally) mutate the
+// original regular expression.
+
+const text = `
+\u{231A}: ⌚ default emoji presentation character (Emoji_Presentation)
+\u{2194}\u{FE0F}: ↔️ default text presentation character rendered as emoji
+\u{1F469}: 👩 emoji modifier base (Emoji_Modifier_Base)
+\u{1F469}\u{1F3FF}: 👩🏿 emoji modifier base followed by a modifier
+`;
+
+const regex = emojiRegex();
+let match;
+while (match = regex.exec(text)) {
+ const emoji = match[0];
+ console.log(`Matched sequence ${ emoji } — code points: ${ [...emoji].length }`);
+}
+```
+
+Console output:
+
+```
+Matched sequence ⌚ — code points: 1
+Matched sequence ⌚ — code points: 1
+Matched sequence ↔️ — code points: 2
+Matched sequence ↔️ — code points: 2
+Matched sequence 👩 — code points: 1
+Matched sequence 👩 — code points: 1
+Matched sequence 👩🏿 — code points: 2
+Matched sequence 👩🏿 — code points: 2
+```
+
+To match emoji in their textual representation as well (i.e. emoji that are not `Emoji_Presentation` symbols and that aren’t forced to render as emoji by a variation selector), `require` the other regex:
+
+```js
+const emojiRegex = require('emoji-regex/text.js');
+```
+
+Additionally, in environments which support ES2015 Unicode escapes, you may `require` ES2015-style versions of the regexes:
+
+```js
+const emojiRegex = require('emoji-regex/es2015/index.js');
+const emojiRegexText = require('emoji-regex/es2015/text.js');
+```
+
+## Author
+
+| [![twitter/mathias](https://gravatar.com/avatar/24e08a9ea84deb17ae121074d0f17125?s=70)](https://twitter.com/mathias "Follow @mathias on Twitter") |
+|---|
+| [Mathias Bynens](https://mathiasbynens.be/) |
+
+## License
+
+_emoji-regex_ is available under the [MIT](https://mths.be/mit) license.
diff --git a/node_modules/emoji-regex/es2015/index.js b/node_modules/emoji-regex/es2015/index.js
new file mode 100644
index 0000000..b4cf3dc
--- /dev/null
+++ b/node_modules/emoji-regex/es2015/index.js
@@ -0,0 +1,6 @@
+"use strict";
+
+module.exports = () => {
+ // https://mths.be/emoji
+ return /\u{1F3F4}\u{E0067}\u{E0062}(?:\u{E0065}\u{E006E}\u{E0067}|\u{E0073}\u{E0063}\u{E0074}|\u{E0077}\u{E006C}\u{E0073})\u{E007F}|\u{1F468}(?:\u{1F3FC}\u200D(?:\u{1F91D}\u200D\u{1F468}\u{1F3FB}|[\u{1F33E}\u{1F373}\u{1F393}\u{1F3A4}\u{1F3A8}\u{1F3EB}\u{1F3ED}\u{1F4BB}\u{1F4BC}\u{1F527}\u{1F52C}\u{1F680}\u{1F692}\u{1F9AF}-\u{1F9B3}\u{1F9BC}\u{1F9BD}])|\u{1F3FF}\u200D(?:\u{1F91D}\u200D\u{1F468}[\u{1F3FB}-\u{1F3FE}]|[\u{1F33E}\u{1F373}\u{1F393}\u{1F3A4}\u{1F3A8}\u{1F3EB}\u{1F3ED}\u{1F4BB}\u{1F4BC}\u{1F527}\u{1F52C}\u{1F680}\u{1F692}\u{1F9AF}-\u{1F9B3}\u{1F9BC}\u{1F9BD}])|\u{1F3FE}\u200D(?:\u{1F91D}\u200D\u{1F468}[\u{1F3FB}-\u{1F3FD}]|[\u{1F33E}\u{1F373}\u{1F393}\u{1F3A4}\u{1F3A8}\u{1F3EB}\u{1F3ED}\u{1F4BB}\u{1F4BC}\u{1F527}\u{1F52C}\u{1F680}\u{1F692}\u{1F9AF}-\u{1F9B3}\u{1F9BC}\u{1F9BD}])|\u{1F3FD}\u200D(?:\u{1F91D}\u200D\u{1F468}[\u{1F3FB}\u{1F3FC}]|[\u{1F33E}\u{1F373}\u{1F393}\u{1F3A4}\u{1F3A8}\u{1F3EB}\u{1F3ED}\u{1F4BB}\u{1F4BC}\u{1F527}\u{1F52C}\u{1F680}\u{1F692}\u{1F9AF}-\u{1F9B3}\u{1F9BC}\u{1F9BD}])|\u200D(?:\u2764\uFE0F\u200D(?:\u{1F48B}\u200D)?\u{1F468}|[\u{1F468}\u{1F469}]\u200D(?:\u{1F466}\u200D\u{1F466}|\u{1F467}\u200D[\u{1F466}\u{1F467}])|\u{1F466}\u200D\u{1F466}|\u{1F467}\u200D[\u{1F466}\u{1F467}]|[\u{1F468}\u{1F469}]\u200D[\u{1F466}\u{1F467}]|[\u2695\u2696\u2708]\uFE0F|[\u{1F466}\u{1F467}]|[\u{1F33E}\u{1F373}\u{1F393}\u{1F3A4}\u{1F3A8}\u{1F3EB}\u{1F3ED}\u{1F4BB}\u{1F4BC}\u{1F527}\u{1F52C}\u{1F680}\u{1F692}\u{1F9AF}-\u{1F9B3}\u{1F9BC}\u{1F9BD}])|(?:\u{1F3FB}\u200D[\u2695\u2696\u2708]|\u{1F3FF}\u200D[\u2695\u2696\u2708]|\u{1F3FE}\u200D[\u2695\u2696\u2708]|\u{1F3FD}\u200D[\u2695\u2696\u2708]|\u{1F3FC}\u200D[\u2695\u2696\u2708])\uFE0F|\u{1F3FB}\u200D[\u{1F33E}\u{1F373}\u{1F393}\u{1F3A4}\u{1F3A8}\u{1F3EB}\u{1F3ED}\u{1F4BB}\u{1F4BC}\u{1F527}\u{1F52C}\u{1F680}\u{1F692}\u{1F9AF}-\u{1F9B3}\u{1F9BC}\u{1F9BD}]|[\u{1F3FB}-\u{1F3FF}])|(?:\u{1F9D1}\u{1F3FB}\u200D\u{1F91D}\u200D\u{1F9D1}|\u{1F469}\u{1F3FC}\u200D\u{1F91D}\u200D\u{1F469})\u{1F3FB}|\u{1F9D1}(?:\u{1F3FF}\u200D\u{1F91D}\u200D\u{1F9D1}[\u{1F3FB}-\u{1F3FF}]|\u200D\u{1F91D}\u200D\u{1F9D1})|(?:\u{1F9D1}\u{1F3FE}\u200D\u{1F91D}\u200D\u{1F9D1}|\u{1F469}\u{1F3FF}\u200D\u{1F91D}\u200D[\u{1F468}\u{1F469}])[\u{1F3FB}-\u{1F3FE}]|(?:\u{1F9D1}\u{1F3FC}\u200D\u{1F91D}\u200D\u{1F9D1}|\u{1F469}\u{1F3FD}\u200D\u{1F91D}\u200D\u{1F469})[\u{1F3FB}\u{1F3FC}]|\u{1F469}(?:\u{1F3FE}\u200D(?:\u{1F91D}\u200D\u{1F468}[\u{1F3FB}-\u{1F3FD}\u{1F3FF}]|[\u{1F33E}\u{1F373}\u{1F393}\u{1F3A4}\u{1F3A8}\u{1F3EB}\u{1F3ED}\u{1F4BB}\u{1F4BC}\u{1F527}\u{1F52C}\u{1F680}\u{1F692}\u{1F9AF}-\u{1F9B3}\u{1F9BC}\u{1F9BD}])|\u{1F3FC}\u200D(?:\u{1F91D}\u200D\u{1F468}[\u{1F3FB}\u{1F3FD}-\u{1F3FF}]|[\u{1F33E}\u{1F373}\u{1F393}\u{1F3A4}\u{1F3A8}\u{1F3EB}\u{1F3ED}\u{1F4BB}\u{1F4BC}\u{1F527}\u{1F52C}\u{1F680}\u{1F692}\u{1F9AF}-\u{1F9B3}\u{1F9BC}\u{1F9BD}])|\u{1F3FB}\u200D(?:\u{1F91D}\u200D\u{1F468}[\u{1F3FC}-\u{1F3FF}]|[\u{1F33E}\u{1F373}\u{1F393}\u{1F3A4}\u{1F3A8}\u{1F3EB}\u{1F3ED}\u{1F4BB}\u{1F4BC}\u{1F527}\u{1F52C}\u{1F680}\u{1F692}\u{1F9AF}-\u{1F9B3}\u{1F9BC}\u{1F9BD}])|\u{1F3FD}\u200D(?:\u{1F91D}\u200D\u{1F468}[\u{1F3FB}\u{1F3FC}\u{1F3FE}\u{1F3FF}]|[\u{1F33E}\u{1F373}\u{1F393}\u{1F3A4}\u{1F3A8}\u{1F3EB}\u{1F3ED}\u{1F4BB}\u{1F4BC}\u{1F527}\u{1F52C}\u{1F680}\u{1F692}\u{1F9AF}-\u{1F9B3}\u{1F9BC}\u{1F9BD}])|\u200D(?:\u2764\uFE0F\u200D(?:\u{1F48B}\u200D[\u{1F468}\u{1F469}]|[\u{1F468}\u{1F469}])|[\u{1F33E}\u{1F373}\u{1F393}\u{1F3A4}\u{1F3A8}\u{1F3EB}\u{1F3ED}\u{1F4BB}\u{1F4BC}\u{1F527}\u{1F52C}\u{1F680}\u{1F692}\u{1F9AF}-\u{1F9B3}\u{1F9BC}\u{1F9BD}])|\u{1F3FF}\u200D[\u{1F33E}\u{1F373}\u{1F393}\u{1F3A4}\u{1F3A8}\u{1F3EB}\u{1F3ED}\u{1F4BB}\u{1F4BC}\u{1F527}\u{1F52C}\u{1F680}\u{1F692}\u{1F9AF}-\u{1F9B3}\u{1F9BC}\u{1F9BD}])|\u{1F469}\u200D\u{1F469}\u200D(?:\u{1F466}\u200D\u{1F466}|\u{1F467}\u200D[\u{1F466}\u{1F467}])|(?:\u{1F9D1}\u{1F3FD}\u200D\u{1F91D}\u200D\u{1F9D1}|\u{1F469}\u{1F3FE}\u200D\u{1F91D}\u200D\u{1F469})[\u{1F3FB}-\u{1F3FD}]|\u{1F469}\u200D\u{1F466}\u200D\u{1F466}|\u{1F469}\u200D\u{1F469}\u200D[\u{1F466}\u{1F467}]|(?:\u{1F441}\uFE0F\u200D\u{1F5E8}|\u{1F469}(?:\u{1F3FF}\u200D[\u2695\u2696\u2708]|\u{1F3FE}\u200D[\u2695\u2696\u2708]|\u{1F3FC}\u200D[\u2695\u2696\u2708]|\u{1F3FB}\u200D[\u2695\u2696\u2708]|\u{1F3FD}\u200D[\u2695\u2696\u2708]|\u200D[\u2695\u2696\u2708])|(?:[\u26F9\u{1F3CB}\u{1F3CC}\u{1F575}]\uFE0F|[\u{1F46F}\u{1F93C}\u{1F9DE}\u{1F9DF}])\u200D[\u2640\u2642]|[\u26F9\u{1F3CB}\u{1F3CC}\u{1F575}][\u{1F3FB}-\u{1F3FF}]\u200D[\u2640\u2642]|[\u{1F3C3}\u{1F3C4}\u{1F3CA}\u{1F46E}\u{1F471}\u{1F473}\u{1F477}\u{1F481}\u{1F482}\u{1F486}\u{1F487}\u{1F645}-\u{1F647}\u{1F64B}\u{1F64D}\u{1F64E}\u{1F6A3}\u{1F6B4}-\u{1F6B6}\u{1F926}\u{1F937}-\u{1F939}\u{1F93D}\u{1F93E}\u{1F9B8}\u{1F9B9}\u{1F9CD}-\u{1F9CF}\u{1F9D6}-\u{1F9DD}](?:[\u{1F3FB}-\u{1F3FF}]\u200D[\u2640\u2642]|\u200D[\u2640\u2642])|\u{1F3F4}\u200D\u2620)\uFE0F|\u{1F469}\u200D\u{1F467}\u200D[\u{1F466}\u{1F467}]|\u{1F3F3}\uFE0F\u200D\u{1F308}|\u{1F415}\u200D\u{1F9BA}|\u{1F469}\u200D\u{1F466}|\u{1F469}\u200D\u{1F467}|\u{1F1FD}\u{1F1F0}|\u{1F1F4}\u{1F1F2}|\u{1F1F6}\u{1F1E6}|[#\*0-9]\uFE0F\u20E3|\u{1F1E7}[\u{1F1E6}\u{1F1E7}\u{1F1E9}-\u{1F1EF}\u{1F1F1}-\u{1F1F4}\u{1F1F6}-\u{1F1F9}\u{1F1FB}\u{1F1FC}\u{1F1FE}\u{1F1FF}]|\u{1F1F9}[\u{1F1E6}\u{1F1E8}\u{1F1E9}\u{1F1EB}-\u{1F1ED}\u{1F1EF}-\u{1F1F4}\u{1F1F7}\u{1F1F9}\u{1F1FB}\u{1F1FC}\u{1F1FF}]|\u{1F1EA}[\u{1F1E6}\u{1F1E8}\u{1F1EA}\u{1F1EC}\u{1F1ED}\u{1F1F7}-\u{1F1FA}]|\u{1F9D1}[\u{1F3FB}-\u{1F3FF}]|\u{1F1F7}[\u{1F1EA}\u{1F1F4}\u{1F1F8}\u{1F1FA}\u{1F1FC}]|\u{1F469}[\u{1F3FB}-\u{1F3FF}]|\u{1F1F2}[\u{1F1E6}\u{1F1E8}-\u{1F1ED}\u{1F1F0}-\u{1F1FF}]|\u{1F1E6}[\u{1F1E8}-\u{1F1EC}\u{1F1EE}\u{1F1F1}\u{1F1F2}\u{1F1F4}\u{1F1F6}-\u{1F1FA}\u{1F1FC}\u{1F1FD}\u{1F1FF}]|\u{1F1F0}[\u{1F1EA}\u{1F1EC}-\u{1F1EE}\u{1F1F2}\u{1F1F3}\u{1F1F5}\u{1F1F7}\u{1F1FC}\u{1F1FE}\u{1F1FF}]|\u{1F1ED}[\u{1F1F0}\u{1F1F2}\u{1F1F3}\u{1F1F7}\u{1F1F9}\u{1F1FA}]|\u{1F1E9}[\u{1F1EA}\u{1F1EC}\u{1F1EF}\u{1F1F0}\u{1F1F2}\u{1F1F4}\u{1F1FF}]|\u{1F1FE}[\u{1F1EA}\u{1F1F9}]|\u{1F1EC}[\u{1F1E6}\u{1F1E7}\u{1F1E9}-\u{1F1EE}\u{1F1F1}-\u{1F1F3}\u{1F1F5}-\u{1F1FA}\u{1F1FC}\u{1F1FE}]|\u{1F1F8}[\u{1F1E6}-\u{1F1EA}\u{1F1EC}-\u{1F1F4}\u{1F1F7}-\u{1F1F9}\u{1F1FB}\u{1F1FD}-\u{1F1FF}]|\u{1F1EB}[\u{1F1EE}-\u{1F1F0}\u{1F1F2}\u{1F1F4}\u{1F1F7}]|\u{1F1F5}[\u{1F1E6}\u{1F1EA}-\u{1F1ED}\u{1F1F0}-\u{1F1F3}\u{1F1F7}-\u{1F1F9}\u{1F1FC}\u{1F1FE}]|\u{1F1FB}[\u{1F1E6}\u{1F1E8}\u{1F1EA}\u{1F1EC}\u{1F1EE}\u{1F1F3}\u{1F1FA}]|\u{1F1F3}[\u{1F1E6}\u{1F1E8}\u{1F1EA}-\u{1F1EC}\u{1F1EE}\u{1F1F1}\u{1F1F4}\u{1F1F5}\u{1F1F7}\u{1F1FA}\u{1F1FF}]|\u{1F1E8}[\u{1F1E6}\u{1F1E8}\u{1F1E9}\u{1F1EB}-\u{1F1EE}\u{1F1F0}-\u{1F1F5}\u{1F1F7}\u{1F1FA}-\u{1F1FF}]|\u{1F1F1}[\u{1F1E6}-\u{1F1E8}\u{1F1EE}\u{1F1F0}\u{1F1F7}-\u{1F1FB}\u{1F1FE}]|\u{1F1FF}[\u{1F1E6}\u{1F1F2}\u{1F1FC}]|\u{1F1FC}[\u{1F1EB}\u{1F1F8}]|\u{1F1FA}[\u{1F1E6}\u{1F1EC}\u{1F1F2}\u{1F1F3}\u{1F1F8}\u{1F1FE}\u{1F1FF}]|\u{1F1EE}[\u{1F1E8}-\u{1F1EA}\u{1F1F1}-\u{1F1F4}\u{1F1F6}-\u{1F1F9}]|\u{1F1EF}[\u{1F1EA}\u{1F1F2}\u{1F1F4}\u{1F1F5}]|[\u{1F3C3}\u{1F3C4}\u{1F3CA}\u{1F46E}\u{1F471}\u{1F473}\u{1F477}\u{1F481}\u{1F482}\u{1F486}\u{1F487}\u{1F645}-\u{1F647}\u{1F64B}\u{1F64D}\u{1F64E}\u{1F6A3}\u{1F6B4}-\u{1F6B6}\u{1F926}\u{1F937}-\u{1F939}\u{1F93D}\u{1F93E}\u{1F9B8}\u{1F9B9}\u{1F9CD}-\u{1F9CF}\u{1F9D6}-\u{1F9DD}][\u{1F3FB}-\u{1F3FF}]|[\u26F9\u{1F3CB}\u{1F3CC}\u{1F575}][\u{1F3FB}-\u{1F3FF}]|[\u261D\u270A-\u270D\u{1F385}\u{1F3C2}\u{1F3C7}\u{1F442}\u{1F443}\u{1F446}-\u{1F450}\u{1F466}\u{1F467}\u{1F46B}-\u{1F46D}\u{1F470}\u{1F472}\u{1F474}-\u{1F476}\u{1F478}\u{1F47C}\u{1F483}\u{1F485}\u{1F4AA}\u{1F574}\u{1F57A}\u{1F590}\u{1F595}\u{1F596}\u{1F64C}\u{1F64F}\u{1F6C0}\u{1F6CC}\u{1F90F}\u{1F918}-\u{1F91C}\u{1F91E}\u{1F91F}\u{1F930}-\u{1F936}\u{1F9B5}\u{1F9B6}\u{1F9BB}\u{1F9D2}-\u{1F9D5}][\u{1F3FB}-\u{1F3FF}]|[\u231A\u231B\u23E9-\u23EC\u23F0\u23F3\u25FD\u25FE\u2614\u2615\u2648-\u2653\u267F\u2693\u26A1\u26AA\u26AB\u26BD\u26BE\u26C4\u26C5\u26CE\u26D4\u26EA\u26F2\u26F3\u26F5\u26FA\u26FD\u2705\u270A\u270B\u2728\u274C\u274E\u2753-\u2755\u2757\u2795-\u2797\u27B0\u27BF\u2B1B\u2B1C\u2B50\u2B55\u{1F004}\u{1F0CF}\u{1F18E}\u{1F191}-\u{1F19A}\u{1F1E6}-\u{1F1FF}\u{1F201}\u{1F21A}\u{1F22F}\u{1F232}-\u{1F236}\u{1F238}-\u{1F23A}\u{1F250}\u{1F251}\u{1F300}-\u{1F320}\u{1F32D}-\u{1F335}\u{1F337}-\u{1F37C}\u{1F37E}-\u{1F393}\u{1F3A0}-\u{1F3CA}\u{1F3CF}-\u{1F3D3}\u{1F3E0}-\u{1F3F0}\u{1F3F4}\u{1F3F8}-\u{1F43E}\u{1F440}\u{1F442}-\u{1F4FC}\u{1F4FF}-\u{1F53D}\u{1F54B}-\u{1F54E}\u{1F550}-\u{1F567}\u{1F57A}\u{1F595}\u{1F596}\u{1F5A4}\u{1F5FB}-\u{1F64F}\u{1F680}-\u{1F6C5}\u{1F6CC}\u{1F6D0}-\u{1F6D2}\u{1F6D5}\u{1F6EB}\u{1F6EC}\u{1F6F4}-\u{1F6FA}\u{1F7E0}-\u{1F7EB}\u{1F90D}-\u{1F93A}\u{1F93C}-\u{1F945}\u{1F947}-\u{1F971}\u{1F973}-\u{1F976}\u{1F97A}-\u{1F9A2}\u{1F9A5}-\u{1F9AA}\u{1F9AE}-\u{1F9CA}\u{1F9CD}-\u{1F9FF}\u{1FA70}-\u{1FA73}\u{1FA78}-\u{1FA7A}\u{1FA80}-\u{1FA82}\u{1FA90}-\u{1FA95}]|[#\*0-9\xA9\xAE\u203C\u2049\u2122\u2139\u2194-\u2199\u21A9\u21AA\u231A\u231B\u2328\u23CF\u23E9-\u23F3\u23F8-\u23FA\u24C2\u25AA\u25AB\u25B6\u25C0\u25FB-\u25FE\u2600-\u2604\u260E\u2611\u2614\u2615\u2618\u261D\u2620\u2622\u2623\u2626\u262A\u262E\u262F\u2638-\u263A\u2640\u2642\u2648-\u2653\u265F\u2660\u2663\u2665\u2666\u2668\u267B\u267E\u267F\u2692-\u2697\u2699\u269B\u269C\u26A0\u26A1\u26AA\u26AB\u26B0\u26B1\u26BD\u26BE\u26C4\u26C5\u26C8\u26CE\u26CF\u26D1\u26D3\u26D4\u26E9\u26EA\u26F0-\u26F5\u26F7-\u26FA\u26FD\u2702\u2705\u2708-\u270D\u270F\u2712\u2714\u2716\u271D\u2721\u2728\u2733\u2734\u2744\u2747\u274C\u274E\u2753-\u2755\u2757\u2763\u2764\u2795-\u2797\u27A1\u27B0\u27BF\u2934\u2935\u2B05-\u2B07\u2B1B\u2B1C\u2B50\u2B55\u3030\u303D\u3297\u3299\u{1F004}\u{1F0CF}\u{1F170}\u{1F171}\u{1F17E}\u{1F17F}\u{1F18E}\u{1F191}-\u{1F19A}\u{1F1E6}-\u{1F1FF}\u{1F201}\u{1F202}\u{1F21A}\u{1F22F}\u{1F232}-\u{1F23A}\u{1F250}\u{1F251}\u{1F300}-\u{1F321}\u{1F324}-\u{1F393}\u{1F396}\u{1F397}\u{1F399}-\u{1F39B}\u{1F39E}-\u{1F3F0}\u{1F3F3}-\u{1F3F5}\u{1F3F7}-\u{1F4FD}\u{1F4FF}-\u{1F53D}\u{1F549}-\u{1F54E}\u{1F550}-\u{1F567}\u{1F56F}\u{1F570}\u{1F573}-\u{1F57A}\u{1F587}\u{1F58A}-\u{1F58D}\u{1F590}\u{1F595}\u{1F596}\u{1F5A4}\u{1F5A5}\u{1F5A8}\u{1F5B1}\u{1F5B2}\u{1F5BC}\u{1F5C2}-\u{1F5C4}\u{1F5D1}-\u{1F5D3}\u{1F5DC}-\u{1F5DE}\u{1F5E1}\u{1F5E3}\u{1F5E8}\u{1F5EF}\u{1F5F3}\u{1F5FA}-\u{1F64F}\u{1F680}-\u{1F6C5}\u{1F6CB}-\u{1F6D2}\u{1F6D5}\u{1F6E0}-\u{1F6E5}\u{1F6E9}\u{1F6EB}\u{1F6EC}\u{1F6F0}\u{1F6F3}-\u{1F6FA}\u{1F7E0}-\u{1F7EB}\u{1F90D}-\u{1F93A}\u{1F93C}-\u{1F945}\u{1F947}-\u{1F971}\u{1F973}-\u{1F976}\u{1F97A}-\u{1F9A2}\u{1F9A5}-\u{1F9AA}\u{1F9AE}-\u{1F9CA}\u{1F9CD}-\u{1F9FF}\u{1FA70}-\u{1FA73}\u{1FA78}-\u{1FA7A}\u{1FA80}-\u{1FA82}\u{1FA90}-\u{1FA95}]\uFE0F|[\u261D\u26F9\u270A-\u270D\u{1F385}\u{1F3C2}-\u{1F3C4}\u{1F3C7}\u{1F3CA}-\u{1F3CC}\u{1F442}\u{1F443}\u{1F446}-\u{1F450}\u{1F466}-\u{1F478}\u{1F47C}\u{1F481}-\u{1F483}\u{1F485}-\u{1F487}\u{1F48F}\u{1F491}\u{1F4AA}\u{1F574}\u{1F575}\u{1F57A}\u{1F590}\u{1F595}\u{1F596}\u{1F645}-\u{1F647}\u{1F64B}-\u{1F64F}\u{1F6A3}\u{1F6B4}-\u{1F6B6}\u{1F6C0}\u{1F6CC}\u{1F90F}\u{1F918}-\u{1F91F}\u{1F926}\u{1F930}-\u{1F939}\u{1F93C}-\u{1F93E}\u{1F9B5}\u{1F9B6}\u{1F9B8}\u{1F9B9}\u{1F9BB}\u{1F9CD}-\u{1F9CF}\u{1F9D1}-\u{1F9DD}]/gu;
+};
diff --git a/node_modules/emoji-regex/es2015/text.js b/node_modules/emoji-regex/es2015/text.js
new file mode 100644
index 0000000..780309d
--- /dev/null
+++ b/node_modules/emoji-regex/es2015/text.js
@@ -0,0 +1,6 @@
+"use strict";
+
+module.exports = () => {
+ // https://mths.be/emoji
+ return /\u{1F3F4}\u{E0067}\u{E0062}(?:\u{E0065}\u{E006E}\u{E0067}|\u{E0073}\u{E0063}\u{E0074}|\u{E0077}\u{E006C}\u{E0073})\u{E007F}|\u{1F468}(?:\u{1F3FC}\u200D(?:\u{1F91D}\u200D\u{1F468}\u{1F3FB}|[\u{1F33E}\u{1F373}\u{1F393}\u{1F3A4}\u{1F3A8}\u{1F3EB}\u{1F3ED}\u{1F4BB}\u{1F4BC}\u{1F527}\u{1F52C}\u{1F680}\u{1F692}\u{1F9AF}-\u{1F9B3}\u{1F9BC}\u{1F9BD}])|\u{1F3FF}\u200D(?:\u{1F91D}\u200D\u{1F468}[\u{1F3FB}-\u{1F3FE}]|[\u{1F33E}\u{1F373}\u{1F393}\u{1F3A4}\u{1F3A8}\u{1F3EB}\u{1F3ED}\u{1F4BB}\u{1F4BC}\u{1F527}\u{1F52C}\u{1F680}\u{1F692}\u{1F9AF}-\u{1F9B3}\u{1F9BC}\u{1F9BD}])|\u{1F3FE}\u200D(?:\u{1F91D}\u200D\u{1F468}[\u{1F3FB}-\u{1F3FD}]|[\u{1F33E}\u{1F373}\u{1F393}\u{1F3A4}\u{1F3A8}\u{1F3EB}\u{1F3ED}\u{1F4BB}\u{1F4BC}\u{1F527}\u{1F52C}\u{1F680}\u{1F692}\u{1F9AF}-\u{1F9B3}\u{1F9BC}\u{1F9BD}])|\u{1F3FD}\u200D(?:\u{1F91D}\u200D\u{1F468}[\u{1F3FB}\u{1F3FC}]|[\u{1F33E}\u{1F373}\u{1F393}\u{1F3A4}\u{1F3A8}\u{1F3EB}\u{1F3ED}\u{1F4BB}\u{1F4BC}\u{1F527}\u{1F52C}\u{1F680}\u{1F692}\u{1F9AF}-\u{1F9B3}\u{1F9BC}\u{1F9BD}])|\u200D(?:\u2764\uFE0F\u200D(?:\u{1F48B}\u200D)?\u{1F468}|[\u{1F468}\u{1F469}]\u200D(?:\u{1F466}\u200D\u{1F466}|\u{1F467}\u200D[\u{1F466}\u{1F467}])|\u{1F466}\u200D\u{1F466}|\u{1F467}\u200D[\u{1F466}\u{1F467}]|[\u{1F468}\u{1F469}]\u200D[\u{1F466}\u{1F467}]|[\u2695\u2696\u2708]\uFE0F|[\u{1F466}\u{1F467}]|[\u{1F33E}\u{1F373}\u{1F393}\u{1F3A4}\u{1F3A8}\u{1F3EB}\u{1F3ED}\u{1F4BB}\u{1F4BC}\u{1F527}\u{1F52C}\u{1F680}\u{1F692}\u{1F9AF}-\u{1F9B3}\u{1F9BC}\u{1F9BD}])|(?:\u{1F3FB}\u200D[\u2695\u2696\u2708]|\u{1F3FF}\u200D[\u2695\u2696\u2708]|\u{1F3FE}\u200D[\u2695\u2696\u2708]|\u{1F3FD}\u200D[\u2695\u2696\u2708]|\u{1F3FC}\u200D[\u2695\u2696\u2708])\uFE0F|\u{1F3FB}\u200D[\u{1F33E}\u{1F373}\u{1F393}\u{1F3A4}\u{1F3A8}\u{1F3EB}\u{1F3ED}\u{1F4BB}\u{1F4BC}\u{1F527}\u{1F52C}\u{1F680}\u{1F692}\u{1F9AF}-\u{1F9B3}\u{1F9BC}\u{1F9BD}]|[\u{1F3FB}-\u{1F3FF}])|(?:\u{1F9D1}\u{1F3FB}\u200D\u{1F91D}\u200D\u{1F9D1}|\u{1F469}\u{1F3FC}\u200D\u{1F91D}\u200D\u{1F469})\u{1F3FB}|\u{1F9D1}(?:\u{1F3FF}\u200D\u{1F91D}\u200D\u{1F9D1}[\u{1F3FB}-\u{1F3FF}]|\u200D\u{1F91D}\u200D\u{1F9D1})|(?:\u{1F9D1}\u{1F3FE}\u200D\u{1F91D}\u200D\u{1F9D1}|\u{1F469}\u{1F3FF}\u200D\u{1F91D}\u200D[\u{1F468}\u{1F469}])[\u{1F3FB}-\u{1F3FE}]|(?:\u{1F9D1}\u{1F3FC}\u200D\u{1F91D}\u200D\u{1F9D1}|\u{1F469}\u{1F3FD}\u200D\u{1F91D}\u200D\u{1F469})[\u{1F3FB}\u{1F3FC}]|\u{1F469}(?:\u{1F3FE}\u200D(?:\u{1F91D}\u200D\u{1F468}[\u{1F3FB}-\u{1F3FD}\u{1F3FF}]|[\u{1F33E}\u{1F373}\u{1F393}\u{1F3A4}\u{1F3A8}\u{1F3EB}\u{1F3ED}\u{1F4BB}\u{1F4BC}\u{1F527}\u{1F52C}\u{1F680}\u{1F692}\u{1F9AF}-\u{1F9B3}\u{1F9BC}\u{1F9BD}])|\u{1F3FC}\u200D(?:\u{1F91D}\u200D\u{1F468}[\u{1F3FB}\u{1F3FD}-\u{1F3FF}]|[\u{1F33E}\u{1F373}\u{1F393}\u{1F3A4}\u{1F3A8}\u{1F3EB}\u{1F3ED}\u{1F4BB}\u{1F4BC}\u{1F527}\u{1F52C}\u{1F680}\u{1F692}\u{1F9AF}-\u{1F9B3}\u{1F9BC}\u{1F9BD}])|\u{1F3FB}\u200D(?:\u{1F91D}\u200D\u{1F468}[\u{1F3FC}-\u{1F3FF}]|[\u{1F33E}\u{1F373}\u{1F393}\u{1F3A4}\u{1F3A8}\u{1F3EB}\u{1F3ED}\u{1F4BB}\u{1F4BC}\u{1F527}\u{1F52C}\u{1F680}\u{1F692}\u{1F9AF}-\u{1F9B3}\u{1F9BC}\u{1F9BD}])|\u{1F3FD}\u200D(?:\u{1F91D}\u200D\u{1F468}[\u{1F3FB}\u{1F3FC}\u{1F3FE}\u{1F3FF}]|[\u{1F33E}\u{1F373}\u{1F393}\u{1F3A4}\u{1F3A8}\u{1F3EB}\u{1F3ED}\u{1F4BB}\u{1F4BC}\u{1F527}\u{1F52C}\u{1F680}\u{1F692}\u{1F9AF}-\u{1F9B3}\u{1F9BC}\u{1F9BD}])|\u200D(?:\u2764\uFE0F\u200D(?:\u{1F48B}\u200D[\u{1F468}\u{1F469}]|[\u{1F468}\u{1F469}])|[\u{1F33E}\u{1F373}\u{1F393}\u{1F3A4}\u{1F3A8}\u{1F3EB}\u{1F3ED}\u{1F4BB}\u{1F4BC}\u{1F527}\u{1F52C}\u{1F680}\u{1F692}\u{1F9AF}-\u{1F9B3}\u{1F9BC}\u{1F9BD}])|\u{1F3FF}\u200D[\u{1F33E}\u{1F373}\u{1F393}\u{1F3A4}\u{1F3A8}\u{1F3EB}\u{1F3ED}\u{1F4BB}\u{1F4BC}\u{1F527}\u{1F52C}\u{1F680}\u{1F692}\u{1F9AF}-\u{1F9B3}\u{1F9BC}\u{1F9BD}])|\u{1F469}\u200D\u{1F469}\u200D(?:\u{1F466}\u200D\u{1F466}|\u{1F467}\u200D[\u{1F466}\u{1F467}])|(?:\u{1F9D1}\u{1F3FD}\u200D\u{1F91D}\u200D\u{1F9D1}|\u{1F469}\u{1F3FE}\u200D\u{1F91D}\u200D\u{1F469})[\u{1F3FB}-\u{1F3FD}]|\u{1F469}\u200D\u{1F466}\u200D\u{1F466}|\u{1F469}\u200D\u{1F469}\u200D[\u{1F466}\u{1F467}]|(?:\u{1F441}\uFE0F\u200D\u{1F5E8}|\u{1F469}(?:\u{1F3FF}\u200D[\u2695\u2696\u2708]|\u{1F3FE}\u200D[\u2695\u2696\u2708]|\u{1F3FC}\u200D[\u2695\u2696\u2708]|\u{1F3FB}\u200D[\u2695\u2696\u2708]|\u{1F3FD}\u200D[\u2695\u2696\u2708]|\u200D[\u2695\u2696\u2708])|(?:[\u26F9\u{1F3CB}\u{1F3CC}\u{1F575}]\uFE0F|[\u{1F46F}\u{1F93C}\u{1F9DE}\u{1F9DF}])\u200D[\u2640\u2642]|[\u26F9\u{1F3CB}\u{1F3CC}\u{1F575}][\u{1F3FB}-\u{1F3FF}]\u200D[\u2640\u2642]|[\u{1F3C3}\u{1F3C4}\u{1F3CA}\u{1F46E}\u{1F471}\u{1F473}\u{1F477}\u{1F481}\u{1F482}\u{1F486}\u{1F487}\u{1F645}-\u{1F647}\u{1F64B}\u{1F64D}\u{1F64E}\u{1F6A3}\u{1F6B4}-\u{1F6B6}\u{1F926}\u{1F937}-\u{1F939}\u{1F93D}\u{1F93E}\u{1F9B8}\u{1F9B9}\u{1F9CD}-\u{1F9CF}\u{1F9D6}-\u{1F9DD}](?:[\u{1F3FB}-\u{1F3FF}]\u200D[\u2640\u2642]|\u200D[\u2640\u2642])|\u{1F3F4}\u200D\u2620)\uFE0F|\u{1F469}\u200D\u{1F467}\u200D[\u{1F466}\u{1F467}]|\u{1F3F3}\uFE0F\u200D\u{1F308}|\u{1F415}\u200D\u{1F9BA}|\u{1F469}\u200D\u{1F466}|\u{1F469}\u200D\u{1F467}|\u{1F1FD}\u{1F1F0}|\u{1F1F4}\u{1F1F2}|\u{1F1F6}\u{1F1E6}|[#\*0-9]\uFE0F\u20E3|\u{1F1E7}[\u{1F1E6}\u{1F1E7}\u{1F1E9}-\u{1F1EF}\u{1F1F1}-\u{1F1F4}\u{1F1F6}-\u{1F1F9}\u{1F1FB}\u{1F1FC}\u{1F1FE}\u{1F1FF}]|\u{1F1F9}[\u{1F1E6}\u{1F1E8}\u{1F1E9}\u{1F1EB}-\u{1F1ED}\u{1F1EF}-\u{1F1F4}\u{1F1F7}\u{1F1F9}\u{1F1FB}\u{1F1FC}\u{1F1FF}]|\u{1F1EA}[\u{1F1E6}\u{1F1E8}\u{1F1EA}\u{1F1EC}\u{1F1ED}\u{1F1F7}-\u{1F1FA}]|\u{1F9D1}[\u{1F3FB}-\u{1F3FF}]|\u{1F1F7}[\u{1F1EA}\u{1F1F4}\u{1F1F8}\u{1F1FA}\u{1F1FC}]|\u{1F469}[\u{1F3FB}-\u{1F3FF}]|\u{1F1F2}[\u{1F1E6}\u{1F1E8}-\u{1F1ED}\u{1F1F0}-\u{1F1FF}]|\u{1F1E6}[\u{1F1E8}-\u{1F1EC}\u{1F1EE}\u{1F1F1}\u{1F1F2}\u{1F1F4}\u{1F1F6}-\u{1F1FA}\u{1F1FC}\u{1F1FD}\u{1F1FF}]|\u{1F1F0}[\u{1F1EA}\u{1F1EC}-\u{1F1EE}\u{1F1F2}\u{1F1F3}\u{1F1F5}\u{1F1F7}\u{1F1FC}\u{1F1FE}\u{1F1FF}]|\u{1F1ED}[\u{1F1F0}\u{1F1F2}\u{1F1F3}\u{1F1F7}\u{1F1F9}\u{1F1FA}]|\u{1F1E9}[\u{1F1EA}\u{1F1EC}\u{1F1EF}\u{1F1F0}\u{1F1F2}\u{1F1F4}\u{1F1FF}]|\u{1F1FE}[\u{1F1EA}\u{1F1F9}]|\u{1F1EC}[\u{1F1E6}\u{1F1E7}\u{1F1E9}-\u{1F1EE}\u{1F1F1}-\u{1F1F3}\u{1F1F5}-\u{1F1FA}\u{1F1FC}\u{1F1FE}]|\u{1F1F8}[\u{1F1E6}-\u{1F1EA}\u{1F1EC}-\u{1F1F4}\u{1F1F7}-\u{1F1F9}\u{1F1FB}\u{1F1FD}-\u{1F1FF}]|\u{1F1EB}[\u{1F1EE}-\u{1F1F0}\u{1F1F2}\u{1F1F4}\u{1F1F7}]|\u{1F1F5}[\u{1F1E6}\u{1F1EA}-\u{1F1ED}\u{1F1F0}-\u{1F1F3}\u{1F1F7}-\u{1F1F9}\u{1F1FC}\u{1F1FE}]|\u{1F1FB}[\u{1F1E6}\u{1F1E8}\u{1F1EA}\u{1F1EC}\u{1F1EE}\u{1F1F3}\u{1F1FA}]|\u{1F1F3}[\u{1F1E6}\u{1F1E8}\u{1F1EA}-\u{1F1EC}\u{1F1EE}\u{1F1F1}\u{1F1F4}\u{1F1F5}\u{1F1F7}\u{1F1FA}\u{1F1FF}]|\u{1F1E8}[\u{1F1E6}\u{1F1E8}\u{1F1E9}\u{1F1EB}-\u{1F1EE}\u{1F1F0}-\u{1F1F5}\u{1F1F7}\u{1F1FA}-\u{1F1FF}]|\u{1F1F1}[\u{1F1E6}-\u{1F1E8}\u{1F1EE}\u{1F1F0}\u{1F1F7}-\u{1F1FB}\u{1F1FE}]|\u{1F1FF}[\u{1F1E6}\u{1F1F2}\u{1F1FC}]|\u{1F1FC}[\u{1F1EB}\u{1F1F8}]|\u{1F1FA}[\u{1F1E6}\u{1F1EC}\u{1F1F2}\u{1F1F3}\u{1F1F8}\u{1F1FE}\u{1F1FF}]|\u{1F1EE}[\u{1F1E8}-\u{1F1EA}\u{1F1F1}-\u{1F1F4}\u{1F1F6}-\u{1F1F9}]|\u{1F1EF}[\u{1F1EA}\u{1F1F2}\u{1F1F4}\u{1F1F5}]|[\u{1F3C3}\u{1F3C4}\u{1F3CA}\u{1F46E}\u{1F471}\u{1F473}\u{1F477}\u{1F481}\u{1F482}\u{1F486}\u{1F487}\u{1F645}-\u{1F647}\u{1F64B}\u{1F64D}\u{1F64E}\u{1F6A3}\u{1F6B4}-\u{1F6B6}\u{1F926}\u{1F937}-\u{1F939}\u{1F93D}\u{1F93E}\u{1F9B8}\u{1F9B9}\u{1F9CD}-\u{1F9CF}\u{1F9D6}-\u{1F9DD}][\u{1F3FB}-\u{1F3FF}]|[\u26F9\u{1F3CB}\u{1F3CC}\u{1F575}][\u{1F3FB}-\u{1F3FF}]|[\u261D\u270A-\u270D\u{1F385}\u{1F3C2}\u{1F3C7}\u{1F442}\u{1F443}\u{1F446}-\u{1F450}\u{1F466}\u{1F467}\u{1F46B}-\u{1F46D}\u{1F470}\u{1F472}\u{1F474}-\u{1F476}\u{1F478}\u{1F47C}\u{1F483}\u{1F485}\u{1F4AA}\u{1F574}\u{1F57A}\u{1F590}\u{1F595}\u{1F596}\u{1F64C}\u{1F64F}\u{1F6C0}\u{1F6CC}\u{1F90F}\u{1F918}-\u{1F91C}\u{1F91E}\u{1F91F}\u{1F930}-\u{1F936}\u{1F9B5}\u{1F9B6}\u{1F9BB}\u{1F9D2}-\u{1F9D5}][\u{1F3FB}-\u{1F3FF}]|[\u231A\u231B\u23E9-\u23EC\u23F0\u23F3\u25FD\u25FE\u2614\u2615\u2648-\u2653\u267F\u2693\u26A1\u26AA\u26AB\u26BD\u26BE\u26C4\u26C5\u26CE\u26D4\u26EA\u26F2\u26F3\u26F5\u26FA\u26FD\u2705\u270A\u270B\u2728\u274C\u274E\u2753-\u2755\u2757\u2795-\u2797\u27B0\u27BF\u2B1B\u2B1C\u2B50\u2B55\u{1F004}\u{1F0CF}\u{1F18E}\u{1F191}-\u{1F19A}\u{1F1E6}-\u{1F1FF}\u{1F201}\u{1F21A}\u{1F22F}\u{1F232}-\u{1F236}\u{1F238}-\u{1F23A}\u{1F250}\u{1F251}\u{1F300}-\u{1F320}\u{1F32D}-\u{1F335}\u{1F337}-\u{1F37C}\u{1F37E}-\u{1F393}\u{1F3A0}-\u{1F3CA}\u{1F3CF}-\u{1F3D3}\u{1F3E0}-\u{1F3F0}\u{1F3F4}\u{1F3F8}-\u{1F43E}\u{1F440}\u{1F442}-\u{1F4FC}\u{1F4FF}-\u{1F53D}\u{1F54B}-\u{1F54E}\u{1F550}-\u{1F567}\u{1F57A}\u{1F595}\u{1F596}\u{1F5A4}\u{1F5FB}-\u{1F64F}\u{1F680}-\u{1F6C5}\u{1F6CC}\u{1F6D0}-\u{1F6D2}\u{1F6D5}\u{1F6EB}\u{1F6EC}\u{1F6F4}-\u{1F6FA}\u{1F7E0}-\u{1F7EB}\u{1F90D}-\u{1F93A}\u{1F93C}-\u{1F945}\u{1F947}-\u{1F971}\u{1F973}-\u{1F976}\u{1F97A}-\u{1F9A2}\u{1F9A5}-\u{1F9AA}\u{1F9AE}-\u{1F9CA}\u{1F9CD}-\u{1F9FF}\u{1FA70}-\u{1FA73}\u{1FA78}-\u{1FA7A}\u{1FA80}-\u{1FA82}\u{1FA90}-\u{1FA95}]|[#\*0-9\xA9\xAE\u203C\u2049\u2122\u2139\u2194-\u2199\u21A9\u21AA\u231A\u231B\u2328\u23CF\u23E9-\u23F3\u23F8-\u23FA\u24C2\u25AA\u25AB\u25B6\u25C0\u25FB-\u25FE\u2600-\u2604\u260E\u2611\u2614\u2615\u2618\u261D\u2620\u2622\u2623\u2626\u262A\u262E\u262F\u2638-\u263A\u2640\u2642\u2648-\u2653\u265F\u2660\u2663\u2665\u2666\u2668\u267B\u267E\u267F\u2692-\u2697\u2699\u269B\u269C\u26A0\u26A1\u26AA\u26AB\u26B0\u26B1\u26BD\u26BE\u26C4\u26C5\u26C8\u26CE\u26CF\u26D1\u26D3\u26D4\u26E9\u26EA\u26F0-\u26F5\u26F7-\u26FA\u26FD\u2702\u2705\u2708-\u270D\u270F\u2712\u2714\u2716\u271D\u2721\u2728\u2733\u2734\u2744\u2747\u274C\u274E\u2753-\u2755\u2757\u2763\u2764\u2795-\u2797\u27A1\u27B0\u27BF\u2934\u2935\u2B05-\u2B07\u2B1B\u2B1C\u2B50\u2B55\u3030\u303D\u3297\u3299\u{1F004}\u{1F0CF}\u{1F170}\u{1F171}\u{1F17E}\u{1F17F}\u{1F18E}\u{1F191}-\u{1F19A}\u{1F1E6}-\u{1F1FF}\u{1F201}\u{1F202}\u{1F21A}\u{1F22F}\u{1F232}-\u{1F23A}\u{1F250}\u{1F251}\u{1F300}-\u{1F321}\u{1F324}-\u{1F393}\u{1F396}\u{1F397}\u{1F399}-\u{1F39B}\u{1F39E}-\u{1F3F0}\u{1F3F3}-\u{1F3F5}\u{1F3F7}-\u{1F4FD}\u{1F4FF}-\u{1F53D}\u{1F549}-\u{1F54E}\u{1F550}-\u{1F567}\u{1F56F}\u{1F570}\u{1F573}-\u{1F57A}\u{1F587}\u{1F58A}-\u{1F58D}\u{1F590}\u{1F595}\u{1F596}\u{1F5A4}\u{1F5A5}\u{1F5A8}\u{1F5B1}\u{1F5B2}\u{1F5BC}\u{1F5C2}-\u{1F5C4}\u{1F5D1}-\u{1F5D3}\u{1F5DC}-\u{1F5DE}\u{1F5E1}\u{1F5E3}\u{1F5E8}\u{1F5EF}\u{1F5F3}\u{1F5FA}-\u{1F64F}\u{1F680}-\u{1F6C5}\u{1F6CB}-\u{1F6D2}\u{1F6D5}\u{1F6E0}-\u{1F6E5}\u{1F6E9}\u{1F6EB}\u{1F6EC}\u{1F6F0}\u{1F6F3}-\u{1F6FA}\u{1F7E0}-\u{1F7EB}\u{1F90D}-\u{1F93A}\u{1F93C}-\u{1F945}\u{1F947}-\u{1F971}\u{1F973}-\u{1F976}\u{1F97A}-\u{1F9A2}\u{1F9A5}-\u{1F9AA}\u{1F9AE}-\u{1F9CA}\u{1F9CD}-\u{1F9FF}\u{1FA70}-\u{1FA73}\u{1FA78}-\u{1FA7A}\u{1FA80}-\u{1FA82}\u{1FA90}-\u{1FA95}]\uFE0F?|[\u261D\u26F9\u270A-\u270D\u{1F385}\u{1F3C2}-\u{1F3C4}\u{1F3C7}\u{1F3CA}-\u{1F3CC}\u{1F442}\u{1F443}\u{1F446}-\u{1F450}\u{1F466}-\u{1F478}\u{1F47C}\u{1F481}-\u{1F483}\u{1F485}-\u{1F487}\u{1F48F}\u{1F491}\u{1F4AA}\u{1F574}\u{1F575}\u{1F57A}\u{1F590}\u{1F595}\u{1F596}\u{1F645}-\u{1F647}\u{1F64B}-\u{1F64F}\u{1F6A3}\u{1F6B4}-\u{1F6B6}\u{1F6C0}\u{1F6CC}\u{1F90F}\u{1F918}-\u{1F91F}\u{1F926}\u{1F930}-\u{1F939}\u{1F93C}-\u{1F93E}\u{1F9B5}\u{1F9B6}\u{1F9B8}\u{1F9B9}\u{1F9BB}\u{1F9CD}-\u{1F9CF}\u{1F9D1}-\u{1F9DD}]/gu;
+};
diff --git a/node_modules/emoji-regex/index.d.ts b/node_modules/emoji-regex/index.d.ts
new file mode 100644
index 0000000..1955b47
--- /dev/null
+++ b/node_modules/emoji-regex/index.d.ts
@@ -0,0 +1,23 @@
+declare module 'emoji-regex' {
+ function emojiRegex(): RegExp;
+
+ export default emojiRegex;
+}
+
+declare module 'emoji-regex/text' {
+ function emojiRegex(): RegExp;
+
+ export default emojiRegex;
+}
+
+declare module 'emoji-regex/es2015' {
+ function emojiRegex(): RegExp;
+
+ export default emojiRegex;
+}
+
+declare module 'emoji-regex/es2015/text' {
+ function emojiRegex(): RegExp;
+
+ export default emojiRegex;
+}
diff --git a/node_modules/emoji-regex/index.js b/node_modules/emoji-regex/index.js
new file mode 100644
index 0000000..d993a3a
--- /dev/null
+++ b/node_modules/emoji-regex/index.js
@@ -0,0 +1,6 @@
+"use strict";
+
+module.exports = function () {
+ // https://mths.be/emoji
+ return /\uD83C\uDFF4\uDB40\uDC67\uDB40\uDC62(?:\uDB40\uDC65\uDB40\uDC6E\uDB40\uDC67|\uDB40\uDC73\uDB40\uDC63\uDB40\uDC74|\uDB40\uDC77\uDB40\uDC6C\uDB40\uDC73)\uDB40\uDC7F|\uD83D\uDC68(?:\uD83C\uDFFC\u200D(?:\uD83E\uDD1D\u200D\uD83D\uDC68\uD83C\uDFFB|\uD83C[\uDF3E\uDF73\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFF\u200D(?:\uD83E\uDD1D\u200D\uD83D\uDC68(?:\uD83C[\uDFFB-\uDFFE])|\uD83C[\uDF3E\uDF73\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFE\u200D(?:\uD83E\uDD1D\u200D\uD83D\uDC68(?:\uD83C[\uDFFB-\uDFFD])|\uD83C[\uDF3E\uDF73\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFD\u200D(?:\uD83E\uDD1D\u200D\uD83D\uDC68(?:\uD83C[\uDFFB\uDFFC])|\uD83C[\uDF3E\uDF73\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\u200D(?:\u2764\uFE0F\u200D(?:\uD83D\uDC8B\u200D)?\uD83D\uDC68|(?:\uD83D[\uDC68\uDC69])\u200D(?:\uD83D\uDC66\u200D\uD83D\uDC66|\uD83D\uDC67\u200D(?:\uD83D[\uDC66\uDC67]))|\uD83D\uDC66\u200D\uD83D\uDC66|\uD83D\uDC67\u200D(?:\uD83D[\uDC66\uDC67])|(?:\uD83D[\uDC68\uDC69])\u200D(?:\uD83D[\uDC66\uDC67])|[\u2695\u2696\u2708]\uFE0F|\uD83D[\uDC66\uDC67]|\uD83C[\uDF3E\uDF73\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|(?:\uD83C\uDFFB\u200D[\u2695\u2696\u2708]|\uD83C\uDFFF\u200D[\u2695\u2696\u2708]|\uD83C\uDFFE\u200D[\u2695\u2696\u2708]|\uD83C\uDFFD\u200D[\u2695\u2696\u2708]|\uD83C\uDFFC\u200D[\u2695\u2696\u2708])\uFE0F|\uD83C\uDFFB\u200D(?:\uD83C[\uDF3E\uDF73\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C[\uDFFB-\uDFFF])|(?:\uD83E\uDDD1\uD83C\uDFFB\u200D\uD83E\uDD1D\u200D\uD83E\uDDD1|\uD83D\uDC69\uD83C\uDFFC\u200D\uD83E\uDD1D\u200D\uD83D\uDC69)\uD83C\uDFFB|\uD83E\uDDD1(?:\uD83C\uDFFF\u200D\uD83E\uDD1D\u200D\uD83E\uDDD1(?:\uD83C[\uDFFB-\uDFFF])|\u200D\uD83E\uDD1D\u200D\uD83E\uDDD1)|(?:\uD83E\uDDD1\uD83C\uDFFE\u200D\uD83E\uDD1D\u200D\uD83E\uDDD1|\uD83D\uDC69\uD83C\uDFFF\u200D\uD83E\uDD1D\u200D(?:\uD83D[\uDC68\uDC69]))(?:\uD83C[\uDFFB-\uDFFE])|(?:\uD83E\uDDD1\uD83C\uDFFC\u200D\uD83E\uDD1D\u200D\uD83E\uDDD1|\uD83D\uDC69\uD83C\uDFFD\u200D\uD83E\uDD1D\u200D\uD83D\uDC69)(?:\uD83C[\uDFFB\uDFFC])|\uD83D\uDC69(?:\uD83C\uDFFE\u200D(?:\uD83E\uDD1D\u200D\uD83D\uDC68(?:\uD83C[\uDFFB-\uDFFD\uDFFF])|\uD83C[\uDF3E\uDF73\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFC\u200D(?:\uD83E\uDD1D\u200D\uD83D\uDC68(?:\uD83C[\uDFFB\uDFFD-\uDFFF])|\uD83C[\uDF3E\uDF73\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFB\u200D(?:\uD83E\uDD1D\u200D\uD83D\uDC68(?:\uD83C[\uDFFC-\uDFFF])|\uD83C[\uDF3E\uDF73\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFD\u200D(?:\uD83E\uDD1D\u200D\uD83D\uDC68(?:\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF])|\uD83C[\uDF3E\uDF73\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\u200D(?:\u2764\uFE0F\u200D(?:\uD83D\uDC8B\u200D(?:\uD83D[\uDC68\uDC69])|\uD83D[\uDC68\uDC69])|\uD83C[\uDF3E\uDF73\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFF\u200D(?:\uD83C[\uDF3E\uDF73\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD]))|\uD83D\uDC69\u200D\uD83D\uDC69\u200D(?:\uD83D\uDC66\u200D\uD83D\uDC66|\uD83D\uDC67\u200D(?:\uD83D[\uDC66\uDC67]))|(?:\uD83E\uDDD1\uD83C\uDFFD\u200D\uD83E\uDD1D\u200D\uD83E\uDDD1|\uD83D\uDC69\uD83C\uDFFE\u200D\uD83E\uDD1D\u200D\uD83D\uDC69)(?:\uD83C[\uDFFB-\uDFFD])|\uD83D\uDC69\u200D\uD83D\uDC66\u200D\uD83D\uDC66|\uD83D\uDC69\u200D\uD83D\uDC69\u200D(?:\uD83D[\uDC66\uDC67])|(?:\uD83D\uDC41\uFE0F\u200D\uD83D\uDDE8|\uD83D\uDC69(?:\uD83C\uDFFF\u200D[\u2695\u2696\u2708]|\uD83C\uDFFE\u200D[\u2695\u2696\u2708]|\uD83C\uDFFC\u200D[\u2695\u2696\u2708]|\uD83C\uDFFB\u200D[\u2695\u2696\u2708]|\uD83C\uDFFD\u200D[\u2695\u2696\u2708]|\u200D[\u2695\u2696\u2708])|(?:(?:\u26F9|\uD83C[\uDFCB\uDFCC]|\uD83D\uDD75)\uFE0F|\uD83D\uDC6F|\uD83E[\uDD3C\uDDDE\uDDDF])\u200D[\u2640\u2642]|(?:\u26F9|\uD83C[\uDFCB\uDFCC]|\uD83D\uDD75)(?:\uD83C[\uDFFB-\uDFFF])\u200D[\u2640\u2642]|(?:\uD83C[\uDFC3\uDFC4\uDFCA]|\uD83D[\uDC6E\uDC71\uDC73\uDC77\uDC81\uDC82\uDC86\uDC87\uDE45-\uDE47\uDE4B\uDE4D\uDE4E\uDEA3\uDEB4-\uDEB6]|\uD83E[\uDD26\uDD37-\uDD39\uDD3D\uDD3E\uDDB8\uDDB9\uDDCD-\uDDCF\uDDD6-\uDDDD])(?:(?:\uD83C[\uDFFB-\uDFFF])\u200D[\u2640\u2642]|\u200D[\u2640\u2642])|\uD83C\uDFF4\u200D\u2620)\uFE0F|\uD83D\uDC69\u200D\uD83D\uDC67\u200D(?:\uD83D[\uDC66\uDC67])|\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08|\uD83D\uDC15\u200D\uD83E\uDDBA|\uD83D\uDC69\u200D\uD83D\uDC66|\uD83D\uDC69\u200D\uD83D\uDC67|\uD83C\uDDFD\uD83C\uDDF0|\uD83C\uDDF4\uD83C\uDDF2|\uD83C\uDDF6\uD83C\uDDE6|[#\*0-9]\uFE0F\u20E3|\uD83C\uDDE7(?:\uD83C[\uDDE6\uDDE7\uDDE9-\uDDEF\uDDF1-\uDDF4\uDDF6-\uDDF9\uDDFB\uDDFC\uDDFE\uDDFF])|\uD83C\uDDF9(?:\uD83C[\uDDE6\uDDE8\uDDE9\uDDEB-\uDDED\uDDEF-\uDDF4\uDDF7\uDDF9\uDDFB\uDDFC\uDDFF])|\uD83C\uDDEA(?:\uD83C[\uDDE6\uDDE8\uDDEA\uDDEC\uDDED\uDDF7-\uDDFA])|\uD83E\uDDD1(?:\uD83C[\uDFFB-\uDFFF])|\uD83C\uDDF7(?:\uD83C[\uDDEA\uDDF4\uDDF8\uDDFA\uDDFC])|\uD83D\uDC69(?:\uD83C[\uDFFB-\uDFFF])|\uD83C\uDDF2(?:\uD83C[\uDDE6\uDDE8-\uDDED\uDDF0-\uDDFF])|\uD83C\uDDE6(?:\uD83C[\uDDE8-\uDDEC\uDDEE\uDDF1\uDDF2\uDDF4\uDDF6-\uDDFA\uDDFC\uDDFD\uDDFF])|\uD83C\uDDF0(?:\uD83C[\uDDEA\uDDEC-\uDDEE\uDDF2\uDDF3\uDDF5\uDDF7\uDDFC\uDDFE\uDDFF])|\uD83C\uDDED(?:\uD83C[\uDDF0\uDDF2\uDDF3\uDDF7\uDDF9\uDDFA])|\uD83C\uDDE9(?:\uD83C[\uDDEA\uDDEC\uDDEF\uDDF0\uDDF2\uDDF4\uDDFF])|\uD83C\uDDFE(?:\uD83C[\uDDEA\uDDF9])|\uD83C\uDDEC(?:\uD83C[\uDDE6\uDDE7\uDDE9-\uDDEE\uDDF1-\uDDF3\uDDF5-\uDDFA\uDDFC\uDDFE])|\uD83C\uDDF8(?:\uD83C[\uDDE6-\uDDEA\uDDEC-\uDDF4\uDDF7-\uDDF9\uDDFB\uDDFD-\uDDFF])|\uD83C\uDDEB(?:\uD83C[\uDDEE-\uDDF0\uDDF2\uDDF4\uDDF7])|\uD83C\uDDF5(?:\uD83C[\uDDE6\uDDEA-\uDDED\uDDF0-\uDDF3\uDDF7-\uDDF9\uDDFC\uDDFE])|\uD83C\uDDFB(?:\uD83C[\uDDE6\uDDE8\uDDEA\uDDEC\uDDEE\uDDF3\uDDFA])|\uD83C\uDDF3(?:\uD83C[\uDDE6\uDDE8\uDDEA-\uDDEC\uDDEE\uDDF1\uDDF4\uDDF5\uDDF7\uDDFA\uDDFF])|\uD83C\uDDE8(?:\uD83C[\uDDE6\uDDE8\uDDE9\uDDEB-\uDDEE\uDDF0-\uDDF5\uDDF7\uDDFA-\uDDFF])|\uD83C\uDDF1(?:\uD83C[\uDDE6-\uDDE8\uDDEE\uDDF0\uDDF7-\uDDFB\uDDFE])|\uD83C\uDDFF(?:\uD83C[\uDDE6\uDDF2\uDDFC])|\uD83C\uDDFC(?:\uD83C[\uDDEB\uDDF8])|\uD83C\uDDFA(?:\uD83C[\uDDE6\uDDEC\uDDF2\uDDF3\uDDF8\uDDFE\uDDFF])|\uD83C\uDDEE(?:\uD83C[\uDDE8-\uDDEA\uDDF1-\uDDF4\uDDF6-\uDDF9])|\uD83C\uDDEF(?:\uD83C[\uDDEA\uDDF2\uDDF4\uDDF5])|(?:\uD83C[\uDFC3\uDFC4\uDFCA]|\uD83D[\uDC6E\uDC71\uDC73\uDC77\uDC81\uDC82\uDC86\uDC87\uDE45-\uDE47\uDE4B\uDE4D\uDE4E\uDEA3\uDEB4-\uDEB6]|\uD83E[\uDD26\uDD37-\uDD39\uDD3D\uDD3E\uDDB8\uDDB9\uDDCD-\uDDCF\uDDD6-\uDDDD])(?:\uD83C[\uDFFB-\uDFFF])|(?:\u26F9|\uD83C[\uDFCB\uDFCC]|\uD83D\uDD75)(?:\uD83C[\uDFFB-\uDFFF])|(?:[\u261D\u270A-\u270D]|\uD83C[\uDF85\uDFC2\uDFC7]|\uD83D[\uDC42\uDC43\uDC46-\uDC50\uDC66\uDC67\uDC6B-\uDC6D\uDC70\uDC72\uDC74-\uDC76\uDC78\uDC7C\uDC83\uDC85\uDCAA\uDD74\uDD7A\uDD90\uDD95\uDD96\uDE4C\uDE4F\uDEC0\uDECC]|\uD83E[\uDD0F\uDD18-\uDD1C\uDD1E\uDD1F\uDD30-\uDD36\uDDB5\uDDB6\uDDBB\uDDD2-\uDDD5])(?:\uD83C[\uDFFB-\uDFFF])|(?:[\u231A\u231B\u23E9-\u23EC\u23F0\u23F3\u25FD\u25FE\u2614\u2615\u2648-\u2653\u267F\u2693\u26A1\u26AA\u26AB\u26BD\u26BE\u26C4\u26C5\u26CE\u26D4\u26EA\u26F2\u26F3\u26F5\u26FA\u26FD\u2705\u270A\u270B\u2728\u274C\u274E\u2753-\u2755\u2757\u2795-\u2797\u27B0\u27BF\u2B1B\u2B1C\u2B50\u2B55]|\uD83C[\uDC04\uDCCF\uDD8E\uDD91-\uDD9A\uDDE6-\uDDFF\uDE01\uDE1A\uDE2F\uDE32-\uDE36\uDE38-\uDE3A\uDE50\uDE51\uDF00-\uDF20\uDF2D-\uDF35\uDF37-\uDF7C\uDF7E-\uDF93\uDFA0-\uDFCA\uDFCF-\uDFD3\uDFE0-\uDFF0\uDFF4\uDFF8-\uDFFF]|\uD83D[\uDC00-\uDC3E\uDC40\uDC42-\uDCFC\uDCFF-\uDD3D\uDD4B-\uDD4E\uDD50-\uDD67\uDD7A\uDD95\uDD96\uDDA4\uDDFB-\uDE4F\uDE80-\uDEC5\uDECC\uDED0-\uDED2\uDED5\uDEEB\uDEEC\uDEF4-\uDEFA\uDFE0-\uDFEB]|\uD83E[\uDD0D-\uDD3A\uDD3C-\uDD45\uDD47-\uDD71\uDD73-\uDD76\uDD7A-\uDDA2\uDDA5-\uDDAA\uDDAE-\uDDCA\uDDCD-\uDDFF\uDE70-\uDE73\uDE78-\uDE7A\uDE80-\uDE82\uDE90-\uDE95])|(?:[#\*0-9\xA9\xAE\u203C\u2049\u2122\u2139\u2194-\u2199\u21A9\u21AA\u231A\u231B\u2328\u23CF\u23E9-\u23F3\u23F8-\u23FA\u24C2\u25AA\u25AB\u25B6\u25C0\u25FB-\u25FE\u2600-\u2604\u260E\u2611\u2614\u2615\u2618\u261D\u2620\u2622\u2623\u2626\u262A\u262E\u262F\u2638-\u263A\u2640\u2642\u2648-\u2653\u265F\u2660\u2663\u2665\u2666\u2668\u267B\u267E\u267F\u2692-\u2697\u2699\u269B\u269C\u26A0\u26A1\u26AA\u26AB\u26B0\u26B1\u26BD\u26BE\u26C4\u26C5\u26C8\u26CE\u26CF\u26D1\u26D3\u26D4\u26E9\u26EA\u26F0-\u26F5\u26F7-\u26FA\u26FD\u2702\u2705\u2708-\u270D\u270F\u2712\u2714\u2716\u271D\u2721\u2728\u2733\u2734\u2744\u2747\u274C\u274E\u2753-\u2755\u2757\u2763\u2764\u2795-\u2797\u27A1\u27B0\u27BF\u2934\u2935\u2B05-\u2B07\u2B1B\u2B1C\u2B50\u2B55\u3030\u303D\u3297\u3299]|\uD83C[\uDC04\uDCCF\uDD70\uDD71\uDD7E\uDD7F\uDD8E\uDD91-\uDD9A\uDDE6-\uDDFF\uDE01\uDE02\uDE1A\uDE2F\uDE32-\uDE3A\uDE50\uDE51\uDF00-\uDF21\uDF24-\uDF93\uDF96\uDF97\uDF99-\uDF9B\uDF9E-\uDFF0\uDFF3-\uDFF5\uDFF7-\uDFFF]|\uD83D[\uDC00-\uDCFD\uDCFF-\uDD3D\uDD49-\uDD4E\uDD50-\uDD67\uDD6F\uDD70\uDD73-\uDD7A\uDD87\uDD8A-\uDD8D\uDD90\uDD95\uDD96\uDDA4\uDDA5\uDDA8\uDDB1\uDDB2\uDDBC\uDDC2-\uDDC4\uDDD1-\uDDD3\uDDDC-\uDDDE\uDDE1\uDDE3\uDDE8\uDDEF\uDDF3\uDDFA-\uDE4F\uDE80-\uDEC5\uDECB-\uDED2\uDED5\uDEE0-\uDEE5\uDEE9\uDEEB\uDEEC\uDEF0\uDEF3-\uDEFA\uDFE0-\uDFEB]|\uD83E[\uDD0D-\uDD3A\uDD3C-\uDD45\uDD47-\uDD71\uDD73-\uDD76\uDD7A-\uDDA2\uDDA5-\uDDAA\uDDAE-\uDDCA\uDDCD-\uDDFF\uDE70-\uDE73\uDE78-\uDE7A\uDE80-\uDE82\uDE90-\uDE95])\uFE0F|(?:[\u261D\u26F9\u270A-\u270D]|\uD83C[\uDF85\uDFC2-\uDFC4\uDFC7\uDFCA-\uDFCC]|\uD83D[\uDC42\uDC43\uDC46-\uDC50\uDC66-\uDC78\uDC7C\uDC81-\uDC83\uDC85-\uDC87\uDC8F\uDC91\uDCAA\uDD74\uDD75\uDD7A\uDD90\uDD95\uDD96\uDE45-\uDE47\uDE4B-\uDE4F\uDEA3\uDEB4-\uDEB6\uDEC0\uDECC]|\uD83E[\uDD0F\uDD18-\uDD1F\uDD26\uDD30-\uDD39\uDD3C-\uDD3E\uDDB5\uDDB6\uDDB8\uDDB9\uDDBB\uDDCD-\uDDCF\uDDD1-\uDDDD])/g;
+};
diff --git a/node_modules/emoji-regex/package.json b/node_modules/emoji-regex/package.json
new file mode 100644
index 0000000..6d32352
--- /dev/null
+++ b/node_modules/emoji-regex/package.json
@@ -0,0 +1,50 @@
+{
+ "name": "emoji-regex",
+ "version": "8.0.0",
+ "description": "A regular expression to match all Emoji-only symbols as per the Unicode Standard.",
+ "homepage": "https://mths.be/emoji-regex",
+ "main": "index.js",
+ "types": "index.d.ts",
+ "keywords": [
+ "unicode",
+ "regex",
+ "regexp",
+ "regular expressions",
+ "code points",
+ "symbols",
+ "characters",
+ "emoji"
+ ],
+ "license": "MIT",
+ "author": {
+ "name": "Mathias Bynens",
+ "url": "https://mathiasbynens.be/"
+ },
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/mathiasbynens/emoji-regex.git"
+ },
+ "bugs": "https://github.com/mathiasbynens/emoji-regex/issues",
+ "files": [
+ "LICENSE-MIT.txt",
+ "index.js",
+ "index.d.ts",
+ "text.js",
+ "es2015/index.js",
+ "es2015/text.js"
+ ],
+ "scripts": {
+ "build": "rm -rf -- es2015; babel src -d .; NODE_ENV=es2015 babel src -d ./es2015; node script/inject-sequences.js",
+ "test": "mocha",
+ "test:watch": "npm run test -- --watch"
+ },
+ "devDependencies": {
+ "@babel/cli": "^7.2.3",
+ "@babel/core": "^7.3.4",
+ "@babel/plugin-proposal-unicode-property-regex": "^7.2.0",
+ "@babel/preset-env": "^7.3.4",
+ "mocha": "^6.0.2",
+ "regexgen": "^1.3.0",
+ "unicode-12.0.0": "^0.7.9"
+ }
+}
diff --git a/node_modules/emoji-regex/text.js b/node_modules/emoji-regex/text.js
new file mode 100644
index 0000000..0a55ce2
--- /dev/null
+++ b/node_modules/emoji-regex/text.js
@@ -0,0 +1,6 @@
+"use strict";
+
+module.exports = function () {
+ // https://mths.be/emoji
+ return /\uD83C\uDFF4\uDB40\uDC67\uDB40\uDC62(?:\uDB40\uDC65\uDB40\uDC6E\uDB40\uDC67|\uDB40\uDC73\uDB40\uDC63\uDB40\uDC74|\uDB40\uDC77\uDB40\uDC6C\uDB40\uDC73)\uDB40\uDC7F|\uD83D\uDC68(?:\uD83C\uDFFC\u200D(?:\uD83E\uDD1D\u200D\uD83D\uDC68\uD83C\uDFFB|\uD83C[\uDF3E\uDF73\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFF\u200D(?:\uD83E\uDD1D\u200D\uD83D\uDC68(?:\uD83C[\uDFFB-\uDFFE])|\uD83C[\uDF3E\uDF73\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFE\u200D(?:\uD83E\uDD1D\u200D\uD83D\uDC68(?:\uD83C[\uDFFB-\uDFFD])|\uD83C[\uDF3E\uDF73\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFD\u200D(?:\uD83E\uDD1D\u200D\uD83D\uDC68(?:\uD83C[\uDFFB\uDFFC])|\uD83C[\uDF3E\uDF73\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\u200D(?:\u2764\uFE0F\u200D(?:\uD83D\uDC8B\u200D)?\uD83D\uDC68|(?:\uD83D[\uDC68\uDC69])\u200D(?:\uD83D\uDC66\u200D\uD83D\uDC66|\uD83D\uDC67\u200D(?:\uD83D[\uDC66\uDC67]))|\uD83D\uDC66\u200D\uD83D\uDC66|\uD83D\uDC67\u200D(?:\uD83D[\uDC66\uDC67])|(?:\uD83D[\uDC68\uDC69])\u200D(?:\uD83D[\uDC66\uDC67])|[\u2695\u2696\u2708]\uFE0F|\uD83D[\uDC66\uDC67]|\uD83C[\uDF3E\uDF73\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|(?:\uD83C\uDFFB\u200D[\u2695\u2696\u2708]|\uD83C\uDFFF\u200D[\u2695\u2696\u2708]|\uD83C\uDFFE\u200D[\u2695\u2696\u2708]|\uD83C\uDFFD\u200D[\u2695\u2696\u2708]|\uD83C\uDFFC\u200D[\u2695\u2696\u2708])\uFE0F|\uD83C\uDFFB\u200D(?:\uD83C[\uDF3E\uDF73\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C[\uDFFB-\uDFFF])|(?:\uD83E\uDDD1\uD83C\uDFFB\u200D\uD83E\uDD1D\u200D\uD83E\uDDD1|\uD83D\uDC69\uD83C\uDFFC\u200D\uD83E\uDD1D\u200D\uD83D\uDC69)\uD83C\uDFFB|\uD83E\uDDD1(?:\uD83C\uDFFF\u200D\uD83E\uDD1D\u200D\uD83E\uDDD1(?:\uD83C[\uDFFB-\uDFFF])|\u200D\uD83E\uDD1D\u200D\uD83E\uDDD1)|(?:\uD83E\uDDD1\uD83C\uDFFE\u200D\uD83E\uDD1D\u200D\uD83E\uDDD1|\uD83D\uDC69\uD83C\uDFFF\u200D\uD83E\uDD1D\u200D(?:\uD83D[\uDC68\uDC69]))(?:\uD83C[\uDFFB-\uDFFE])|(?:\uD83E\uDDD1\uD83C\uDFFC\u200D\uD83E\uDD1D\u200D\uD83E\uDDD1|\uD83D\uDC69\uD83C\uDFFD\u200D\uD83E\uDD1D\u200D\uD83D\uDC69)(?:\uD83C[\uDFFB\uDFFC])|\uD83D\uDC69(?:\uD83C\uDFFE\u200D(?:\uD83E\uDD1D\u200D\uD83D\uDC68(?:\uD83C[\uDFFB-\uDFFD\uDFFF])|\uD83C[\uDF3E\uDF73\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFC\u200D(?:\uD83E\uDD1D\u200D\uD83D\uDC68(?:\uD83C[\uDFFB\uDFFD-\uDFFF])|\uD83C[\uDF3E\uDF73\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFB\u200D(?:\uD83E\uDD1D\u200D\uD83D\uDC68(?:\uD83C[\uDFFC-\uDFFF])|\uD83C[\uDF3E\uDF73\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFD\u200D(?:\uD83E\uDD1D\u200D\uD83D\uDC68(?:\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF])|\uD83C[\uDF3E\uDF73\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\u200D(?:\u2764\uFE0F\u200D(?:\uD83D\uDC8B\u200D(?:\uD83D[\uDC68\uDC69])|\uD83D[\uDC68\uDC69])|\uD83C[\uDF3E\uDF73\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFF\u200D(?:\uD83C[\uDF3E\uDF73\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD]))|\uD83D\uDC69\u200D\uD83D\uDC69\u200D(?:\uD83D\uDC66\u200D\uD83D\uDC66|\uD83D\uDC67\u200D(?:\uD83D[\uDC66\uDC67]))|(?:\uD83E\uDDD1\uD83C\uDFFD\u200D\uD83E\uDD1D\u200D\uD83E\uDDD1|\uD83D\uDC69\uD83C\uDFFE\u200D\uD83E\uDD1D\u200D\uD83D\uDC69)(?:\uD83C[\uDFFB-\uDFFD])|\uD83D\uDC69\u200D\uD83D\uDC66\u200D\uD83D\uDC66|\uD83D\uDC69\u200D\uD83D\uDC69\u200D(?:\uD83D[\uDC66\uDC67])|(?:\uD83D\uDC41\uFE0F\u200D\uD83D\uDDE8|\uD83D\uDC69(?:\uD83C\uDFFF\u200D[\u2695\u2696\u2708]|\uD83C\uDFFE\u200D[\u2695\u2696\u2708]|\uD83C\uDFFC\u200D[\u2695\u2696\u2708]|\uD83C\uDFFB\u200D[\u2695\u2696\u2708]|\uD83C\uDFFD\u200D[\u2695\u2696\u2708]|\u200D[\u2695\u2696\u2708])|(?:(?:\u26F9|\uD83C[\uDFCB\uDFCC]|\uD83D\uDD75)\uFE0F|\uD83D\uDC6F|\uD83E[\uDD3C\uDDDE\uDDDF])\u200D[\u2640\u2642]|(?:\u26F9|\uD83C[\uDFCB\uDFCC]|\uD83D\uDD75)(?:\uD83C[\uDFFB-\uDFFF])\u200D[\u2640\u2642]|(?:\uD83C[\uDFC3\uDFC4\uDFCA]|\uD83D[\uDC6E\uDC71\uDC73\uDC77\uDC81\uDC82\uDC86\uDC87\uDE45-\uDE47\uDE4B\uDE4D\uDE4E\uDEA3\uDEB4-\uDEB6]|\uD83E[\uDD26\uDD37-\uDD39\uDD3D\uDD3E\uDDB8\uDDB9\uDDCD-\uDDCF\uDDD6-\uDDDD])(?:(?:\uD83C[\uDFFB-\uDFFF])\u200D[\u2640\u2642]|\u200D[\u2640\u2642])|\uD83C\uDFF4\u200D\u2620)\uFE0F|\uD83D\uDC69\u200D\uD83D\uDC67\u200D(?:\uD83D[\uDC66\uDC67])|\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08|\uD83D\uDC15\u200D\uD83E\uDDBA|\uD83D\uDC69\u200D\uD83D\uDC66|\uD83D\uDC69\u200D\uD83D\uDC67|\uD83C\uDDFD\uD83C\uDDF0|\uD83C\uDDF4\uD83C\uDDF2|\uD83C\uDDF6\uD83C\uDDE6|[#\*0-9]\uFE0F\u20E3|\uD83C\uDDE7(?:\uD83C[\uDDE6\uDDE7\uDDE9-\uDDEF\uDDF1-\uDDF4\uDDF6-\uDDF9\uDDFB\uDDFC\uDDFE\uDDFF])|\uD83C\uDDF9(?:\uD83C[\uDDE6\uDDE8\uDDE9\uDDEB-\uDDED\uDDEF-\uDDF4\uDDF7\uDDF9\uDDFB\uDDFC\uDDFF])|\uD83C\uDDEA(?:\uD83C[\uDDE6\uDDE8\uDDEA\uDDEC\uDDED\uDDF7-\uDDFA])|\uD83E\uDDD1(?:\uD83C[\uDFFB-\uDFFF])|\uD83C\uDDF7(?:\uD83C[\uDDEA\uDDF4\uDDF8\uDDFA\uDDFC])|\uD83D\uDC69(?:\uD83C[\uDFFB-\uDFFF])|\uD83C\uDDF2(?:\uD83C[\uDDE6\uDDE8-\uDDED\uDDF0-\uDDFF])|\uD83C\uDDE6(?:\uD83C[\uDDE8-\uDDEC\uDDEE\uDDF1\uDDF2\uDDF4\uDDF6-\uDDFA\uDDFC\uDDFD\uDDFF])|\uD83C\uDDF0(?:\uD83C[\uDDEA\uDDEC-\uDDEE\uDDF2\uDDF3\uDDF5\uDDF7\uDDFC\uDDFE\uDDFF])|\uD83C\uDDED(?:\uD83C[\uDDF0\uDDF2\uDDF3\uDDF7\uDDF9\uDDFA])|\uD83C\uDDE9(?:\uD83C[\uDDEA\uDDEC\uDDEF\uDDF0\uDDF2\uDDF4\uDDFF])|\uD83C\uDDFE(?:\uD83C[\uDDEA\uDDF9])|\uD83C\uDDEC(?:\uD83C[\uDDE6\uDDE7\uDDE9-\uDDEE\uDDF1-\uDDF3\uDDF5-\uDDFA\uDDFC\uDDFE])|\uD83C\uDDF8(?:\uD83C[\uDDE6-\uDDEA\uDDEC-\uDDF4\uDDF7-\uDDF9\uDDFB\uDDFD-\uDDFF])|\uD83C\uDDEB(?:\uD83C[\uDDEE-\uDDF0\uDDF2\uDDF4\uDDF7])|\uD83C\uDDF5(?:\uD83C[\uDDE6\uDDEA-\uDDED\uDDF0-\uDDF3\uDDF7-\uDDF9\uDDFC\uDDFE])|\uD83C\uDDFB(?:\uD83C[\uDDE6\uDDE8\uDDEA\uDDEC\uDDEE\uDDF3\uDDFA])|\uD83C\uDDF3(?:\uD83C[\uDDE6\uDDE8\uDDEA-\uDDEC\uDDEE\uDDF1\uDDF4\uDDF5\uDDF7\uDDFA\uDDFF])|\uD83C\uDDE8(?:\uD83C[\uDDE6\uDDE8\uDDE9\uDDEB-\uDDEE\uDDF0-\uDDF5\uDDF7\uDDFA-\uDDFF])|\uD83C\uDDF1(?:\uD83C[\uDDE6-\uDDE8\uDDEE\uDDF0\uDDF7-\uDDFB\uDDFE])|\uD83C\uDDFF(?:\uD83C[\uDDE6\uDDF2\uDDFC])|\uD83C\uDDFC(?:\uD83C[\uDDEB\uDDF8])|\uD83C\uDDFA(?:\uD83C[\uDDE6\uDDEC\uDDF2\uDDF3\uDDF8\uDDFE\uDDFF])|\uD83C\uDDEE(?:\uD83C[\uDDE8-\uDDEA\uDDF1-\uDDF4\uDDF6-\uDDF9])|\uD83C\uDDEF(?:\uD83C[\uDDEA\uDDF2\uDDF4\uDDF5])|(?:\uD83C[\uDFC3\uDFC4\uDFCA]|\uD83D[\uDC6E\uDC71\uDC73\uDC77\uDC81\uDC82\uDC86\uDC87\uDE45-\uDE47\uDE4B\uDE4D\uDE4E\uDEA3\uDEB4-\uDEB6]|\uD83E[\uDD26\uDD37-\uDD39\uDD3D\uDD3E\uDDB8\uDDB9\uDDCD-\uDDCF\uDDD6-\uDDDD])(?:\uD83C[\uDFFB-\uDFFF])|(?:\u26F9|\uD83C[\uDFCB\uDFCC]|\uD83D\uDD75)(?:\uD83C[\uDFFB-\uDFFF])|(?:[\u261D\u270A-\u270D]|\uD83C[\uDF85\uDFC2\uDFC7]|\uD83D[\uDC42\uDC43\uDC46-\uDC50\uDC66\uDC67\uDC6B-\uDC6D\uDC70\uDC72\uDC74-\uDC76\uDC78\uDC7C\uDC83\uDC85\uDCAA\uDD74\uDD7A\uDD90\uDD95\uDD96\uDE4C\uDE4F\uDEC0\uDECC]|\uD83E[\uDD0F\uDD18-\uDD1C\uDD1E\uDD1F\uDD30-\uDD36\uDDB5\uDDB6\uDDBB\uDDD2-\uDDD5])(?:\uD83C[\uDFFB-\uDFFF])|(?:[\u231A\u231B\u23E9-\u23EC\u23F0\u23F3\u25FD\u25FE\u2614\u2615\u2648-\u2653\u267F\u2693\u26A1\u26AA\u26AB\u26BD\u26BE\u26C4\u26C5\u26CE\u26D4\u26EA\u26F2\u26F3\u26F5\u26FA\u26FD\u2705\u270A\u270B\u2728\u274C\u274E\u2753-\u2755\u2757\u2795-\u2797\u27B0\u27BF\u2B1B\u2B1C\u2B50\u2B55]|\uD83C[\uDC04\uDCCF\uDD8E\uDD91-\uDD9A\uDDE6-\uDDFF\uDE01\uDE1A\uDE2F\uDE32-\uDE36\uDE38-\uDE3A\uDE50\uDE51\uDF00-\uDF20\uDF2D-\uDF35\uDF37-\uDF7C\uDF7E-\uDF93\uDFA0-\uDFCA\uDFCF-\uDFD3\uDFE0-\uDFF0\uDFF4\uDFF8-\uDFFF]|\uD83D[\uDC00-\uDC3E\uDC40\uDC42-\uDCFC\uDCFF-\uDD3D\uDD4B-\uDD4E\uDD50-\uDD67\uDD7A\uDD95\uDD96\uDDA4\uDDFB-\uDE4F\uDE80-\uDEC5\uDECC\uDED0-\uDED2\uDED5\uDEEB\uDEEC\uDEF4-\uDEFA\uDFE0-\uDFEB]|\uD83E[\uDD0D-\uDD3A\uDD3C-\uDD45\uDD47-\uDD71\uDD73-\uDD76\uDD7A-\uDDA2\uDDA5-\uDDAA\uDDAE-\uDDCA\uDDCD-\uDDFF\uDE70-\uDE73\uDE78-\uDE7A\uDE80-\uDE82\uDE90-\uDE95])|(?:[#\*0-9\xA9\xAE\u203C\u2049\u2122\u2139\u2194-\u2199\u21A9\u21AA\u231A\u231B\u2328\u23CF\u23E9-\u23F3\u23F8-\u23FA\u24C2\u25AA\u25AB\u25B6\u25C0\u25FB-\u25FE\u2600-\u2604\u260E\u2611\u2614\u2615\u2618\u261D\u2620\u2622\u2623\u2626\u262A\u262E\u262F\u2638-\u263A\u2640\u2642\u2648-\u2653\u265F\u2660\u2663\u2665\u2666\u2668\u267B\u267E\u267F\u2692-\u2697\u2699\u269B\u269C\u26A0\u26A1\u26AA\u26AB\u26B0\u26B1\u26BD\u26BE\u26C4\u26C5\u26C8\u26CE\u26CF\u26D1\u26D3\u26D4\u26E9\u26EA\u26F0-\u26F5\u26F7-\u26FA\u26FD\u2702\u2705\u2708-\u270D\u270F\u2712\u2714\u2716\u271D\u2721\u2728\u2733\u2734\u2744\u2747\u274C\u274E\u2753-\u2755\u2757\u2763\u2764\u2795-\u2797\u27A1\u27B0\u27BF\u2934\u2935\u2B05-\u2B07\u2B1B\u2B1C\u2B50\u2B55\u3030\u303D\u3297\u3299]|\uD83C[\uDC04\uDCCF\uDD70\uDD71\uDD7E\uDD7F\uDD8E\uDD91-\uDD9A\uDDE6-\uDDFF\uDE01\uDE02\uDE1A\uDE2F\uDE32-\uDE3A\uDE50\uDE51\uDF00-\uDF21\uDF24-\uDF93\uDF96\uDF97\uDF99-\uDF9B\uDF9E-\uDFF0\uDFF3-\uDFF5\uDFF7-\uDFFF]|\uD83D[\uDC00-\uDCFD\uDCFF-\uDD3D\uDD49-\uDD4E\uDD50-\uDD67\uDD6F\uDD70\uDD73-\uDD7A\uDD87\uDD8A-\uDD8D\uDD90\uDD95\uDD96\uDDA4\uDDA5\uDDA8\uDDB1\uDDB2\uDDBC\uDDC2-\uDDC4\uDDD1-\uDDD3\uDDDC-\uDDDE\uDDE1\uDDE3\uDDE8\uDDEF\uDDF3\uDDFA-\uDE4F\uDE80-\uDEC5\uDECB-\uDED2\uDED5\uDEE0-\uDEE5\uDEE9\uDEEB\uDEEC\uDEF0\uDEF3-\uDEFA\uDFE0-\uDFEB]|\uD83E[\uDD0D-\uDD3A\uDD3C-\uDD45\uDD47-\uDD71\uDD73-\uDD76\uDD7A-\uDDA2\uDDA5-\uDDAA\uDDAE-\uDDCA\uDDCD-\uDDFF\uDE70-\uDE73\uDE78-\uDE7A\uDE80-\uDE82\uDE90-\uDE95])\uFE0F?|(?:[\u261D\u26F9\u270A-\u270D]|\uD83C[\uDF85\uDFC2-\uDFC4\uDFC7\uDFCA-\uDFCC]|\uD83D[\uDC42\uDC43\uDC46-\uDC50\uDC66-\uDC78\uDC7C\uDC81-\uDC83\uDC85-\uDC87\uDC8F\uDC91\uDCAA\uDD74\uDD75\uDD7A\uDD90\uDD95\uDD96\uDE45-\uDE47\uDE4B-\uDE4F\uDEA3\uDEB4-\uDEB6\uDEC0\uDECC]|\uD83E[\uDD0F\uDD18-\uDD1F\uDD26\uDD30-\uDD39\uDD3C-\uDD3E\uDDB5\uDDB6\uDDB8\uDDB9\uDDBB\uDDCD-\uDDCF\uDDD1-\uDDDD])/g;
+};
diff --git a/node_modules/escalade/dist/index.js b/node_modules/escalade/dist/index.js
new file mode 100644
index 0000000..ad236c4
--- /dev/null
+++ b/node_modules/escalade/dist/index.js
@@ -0,0 +1,22 @@
+const { dirname, resolve } = require('path');
+const { readdir, stat } = require('fs');
+const { promisify } = require('util');
+
+const toStats = promisify(stat);
+const toRead = promisify(readdir);
+
+module.exports = async function (start, callback) {
+ let dir = resolve('.', start);
+ let tmp, stats = await toStats(dir);
+
+ if (!stats.isDirectory()) {
+ dir = dirname(dir);
+ }
+
+ while (true) {
+ tmp = await callback(dir, await toRead(dir));
+ if (tmp) return resolve(dir, tmp);
+ dir = dirname(tmp = dir);
+ if (tmp === dir) break;
+ }
+}
diff --git a/node_modules/escalade/dist/index.mjs b/node_modules/escalade/dist/index.mjs
new file mode 100644
index 0000000..bf95be0
--- /dev/null
+++ b/node_modules/escalade/dist/index.mjs
@@ -0,0 +1,22 @@
+import { dirname, resolve } from 'path';
+import { readdir, stat } from 'fs';
+import { promisify } from 'util';
+
+const toStats = promisify(stat);
+const toRead = promisify(readdir);
+
+export default async function (start, callback) {
+ let dir = resolve('.', start);
+ let tmp, stats = await toStats(dir);
+
+ if (!stats.isDirectory()) {
+ dir = dirname(dir);
+ }
+
+ while (true) {
+ tmp = await callback(dir, await toRead(dir));
+ if (tmp) return resolve(dir, tmp);
+ dir = dirname(tmp = dir);
+ if (tmp === dir) break;
+ }
+}
diff --git a/node_modules/escalade/index.d.ts b/node_modules/escalade/index.d.ts
new file mode 100644
index 0000000..283e398
--- /dev/null
+++ b/node_modules/escalade/index.d.ts
@@ -0,0 +1,3 @@
+type Promisable = T | Promise;
+export type Callback = (directory: string, files: string[]) => Promisable;
+export default function (directory: string, callback: Callback): Promise;
diff --git a/node_modules/escalade/license b/node_modules/escalade/license
new file mode 100644
index 0000000..fa6089f
--- /dev/null
+++ b/node_modules/escalade/license
@@ -0,0 +1,9 @@
+MIT License
+
+Copyright (c) Luke Edwards (lukeed.com)
+
+Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
diff --git a/node_modules/escalade/package.json b/node_modules/escalade/package.json
new file mode 100644
index 0000000..0d1bfce
--- /dev/null
+++ b/node_modules/escalade/package.json
@@ -0,0 +1,61 @@
+{
+ "name": "escalade",
+ "version": "3.1.1",
+ "repository": "lukeed/escalade",
+ "description": "A tiny (183B to 210B) and fast utility to ascend parent directories",
+ "module": "dist/index.mjs",
+ "main": "dist/index.js",
+ "types": "index.d.ts",
+ "license": "MIT",
+ "author": {
+ "name": "Luke Edwards",
+ "email": "luke.edwards05@gmail.com",
+ "url": "https://lukeed.com"
+ },
+ "exports": {
+ ".": [
+ {
+ "import": "./dist/index.mjs",
+ "require": "./dist/index.js"
+ },
+ "./dist/index.js"
+ ],
+ "./sync": [
+ {
+ "import": "./sync/index.mjs",
+ "require": "./sync/index.js"
+ },
+ "./sync/index.js"
+ ]
+ },
+ "files": [
+ "*.d.ts",
+ "dist",
+ "sync"
+ ],
+ "modes": {
+ "sync": "src/sync.js",
+ "default": "src/async.js"
+ },
+ "engines": {
+ "node": ">=6"
+ },
+ "scripts": {
+ "build": "bundt",
+ "pretest": "npm run build",
+ "test": "uvu -r esm test -i fixtures"
+ },
+ "keywords": [
+ "find",
+ "parent",
+ "parents",
+ "directory",
+ "search",
+ "walk"
+ ],
+ "devDependencies": {
+ "bundt": "1.1.1",
+ "esm": "3.2.25",
+ "uvu": "0.3.3"
+ }
+}
diff --git a/node_modules/escalade/readme.md b/node_modules/escalade/readme.md
new file mode 100644
index 0000000..4e2195c
--- /dev/null
+++ b/node_modules/escalade/readme.md
@@ -0,0 +1,211 @@
+# escalade [![CI](https://github.com/lukeed/escalade/workflows/CI/badge.svg)](https://github.com/lukeed/escalade/actions) [![codecov](https://badgen.now.sh/codecov/c/github/lukeed/escalade)](https://codecov.io/gh/lukeed/escalade)
+
+> A tiny (183B to 210B) and [fast](#benchmarks) utility to ascend parent directories
+
+With [escalade](https://en.wikipedia.org/wiki/Escalade), you can scale parent directories until you've found what you're looking for. Given an input file or directory, `escalade` will continue executing your callback function until either:
+
+1) the callback returns a truthy value
+2) `escalade` has reached the system root directory (eg, `/`)
+
+> **Important:** Please note that `escalade` only deals with direct ancestry – it will not dive into parents' sibling directories.
+
+---
+
+**Notice:** As of v3.1.0, `escalade` now includes [Deno support](http://deno.land/x/escalade)! Please see [Deno Usage](#deno) below.
+
+---
+
+## Install
+
+```
+$ npm install --save escalade
+```
+
+
+## Modes
+
+There are two "versions" of `escalade` available:
+
+#### "async"
+> **Node.js:** >= 8.x
+> **Size (gzip):** 210 bytes
+> **Availability:** [CommonJS](https://unpkg.com/escalade/dist/index.js), [ES Module](https://unpkg.com/escalade/dist/index.mjs)
+
+This is the primary/default mode. It makes use of `async`/`await` and [`util.promisify`](https://nodejs.org/api/util.html#util_util_promisify_original).
+
+#### "sync"
+> **Node.js:** >= 6.x
+> **Size (gzip):** 183 bytes
+> **Availability:** [CommonJS](https://unpkg.com/escalade/sync/index.js), [ES Module](https://unpkg.com/escalade/sync/index.mjs)
+
+This is the opt-in mode, ideal for scenarios where `async` usage cannot be supported.
+
+
+## Usage
+
+***Example Structure***
+
+```
+/Users/lukeed
+ └── oss
+ ├── license
+ └── escalade
+ ├── package.json
+ └── test
+ └── fixtures
+ ├── index.js
+ └── foobar
+ └── demo.js
+```
+
+***Example Usage***
+
+```js
+//~> demo.js
+import { join } from 'path';
+import escalade from 'escalade';
+
+const input = join(__dirname, 'demo.js');
+// or: const input = __dirname;
+
+const pkg = await escalade(input, (dir, names) => {
+ console.log('~> dir:', dir);
+ console.log('~> names:', names);
+ console.log('---');
+
+ if (names.includes('package.json')) {
+ // will be resolved into absolute
+ return 'package.json';
+ }
+});
+
+//~> dir: /Users/lukeed/oss/escalade/test/fixtures/foobar
+//~> names: ['demo.js']
+//---
+//~> dir: /Users/lukeed/oss/escalade/test/fixtures
+//~> names: ['index.js', 'foobar']
+//---
+//~> dir: /Users/lukeed/oss/escalade/test
+//~> names: ['fixtures']
+//---
+//~> dir: /Users/lukeed/oss/escalade
+//~> names: ['package.json', 'test']
+//---
+
+console.log(pkg);
+//=> /Users/lukeed/oss/escalade/package.json
+
+// Now search for "missing123.txt"
+// (Assume it doesn't exist anywhere!)
+const missing = await escalade(input, (dir, names) => {
+ console.log('~> dir:', dir);
+ return names.includes('missing123.txt') && 'missing123.txt';
+});
+
+//~> dir: /Users/lukeed/oss/escalade/test/fixtures/foobar
+//~> dir: /Users/lukeed/oss/escalade/test/fixtures
+//~> dir: /Users/lukeed/oss/escalade/test
+//~> dir: /Users/lukeed/oss/escalade
+//~> dir: /Users/lukeed/oss
+//~> dir: /Users/lukeed
+//~> dir: /Users
+//~> dir: /
+
+console.log(missing);
+//=> undefined
+```
+
+> **Note:** To run the above example with "sync" mode, import from `escalade/sync` and remove the `await` keyword.
+
+
+## API
+
+### escalade(input, callback)
+Returns: `string|void` or `Promise`
+
+When your `callback` locates a file, `escalade` will resolve/return with an absolute path.
+If your `callback` was never satisfied, then `escalade` will resolve/return with nothing (undefined).
+
+> **Important:** The `sync` and `async` versions share the same API. The **only** difference is that `sync` is not Promise-based.
+
+#### input
+Type: `string`
+
+The path from which to start ascending.
+
+This may be a file or a directory path. However, when `input` is a file, `escalade` will begin with its parent directory.
+
+> **Important:** Unless given an absolute path, `input` will be resolved from `process.cwd()` location.
+
+#### callback
+Type: `Function`
+
+The callback to execute for each ancestry level. It always is given two arguments:
+
+1) `dir` - an absolute path of the current parent directory
+2) `names` - a list (`string[]`) of contents _relative to_ the `dir` parent
+
+> **Note:** The `names` list can contain names of files _and_ directories.
+
+When your callback returns a _falsey_ value, then `escalade` will continue with `dir`'s parent directory, re-invoking your callback with new argument values.
+
+When your callback returns a string, then `escalade` stops iteration immediately.
+If the string is an absolute path, then it's left as is. Otherwise, the string is resolved into an absolute path _from_ the `dir` that housed the satisfying condition.
+
+> **Important:** Your `callback` can be a `Promise/AsyncFunction` when using the "async" version of `escalade`.
+
+## Benchmarks
+
+> Running on Node.js v10.13.0
+
+```
+# Load Time
+ find-up 3.891ms
+ escalade 0.485ms
+ escalade/sync 0.309ms
+
+# Levels: 6 (target = "foo.txt"):
+ find-up x 24,856 ops/sec ±6.46% (55 runs sampled)
+ escalade x 73,084 ops/sec ±4.23% (73 runs sampled)
+ find-up.sync x 3,663 ops/sec ±1.12% (83 runs sampled)
+ escalade/sync x 9,360 ops/sec ±0.62% (88 runs sampled)
+
+# Levels: 12 (target = "package.json"):
+ find-up x 29,300 ops/sec ±10.68% (70 runs sampled)
+ escalade x 73,685 ops/sec ± 5.66% (66 runs sampled)
+ find-up.sync x 1,707 ops/sec ± 0.58% (91 runs sampled)
+ escalade/sync x 4,667 ops/sec ± 0.68% (94 runs sampled)
+
+# Levels: 18 (target = "missing123.txt"):
+ find-up x 21,818 ops/sec ±17.37% (14 runs sampled)
+ escalade x 67,101 ops/sec ±21.60% (20 runs sampled)
+ find-up.sync x 1,037 ops/sec ± 2.86% (88 runs sampled)
+ escalade/sync x 1,248 ops/sec ± 0.50% (93 runs sampled)
+```
+
+## Deno
+
+As of v3.1.0, `escalade` is available on the Deno registry.
+
+Please note that the [API](#api) is identical and that there are still [two modes](#modes) from which to choose:
+
+```ts
+// Choose "async" mode
+import escalade from 'https://deno.land/escalade/async.ts';
+
+// Choose "sync" mode
+import escalade from 'https://deno.land/escalade/sync.ts';
+```
+
+> **Important:** The `allow-read` permission is required!
+
+
+## Related
+
+- [premove](https://github.com/lukeed/premove) - A tiny (247B) utility to remove items recursively
+- [totalist](https://github.com/lukeed/totalist) - A tiny (195B to 224B) utility to recursively list all (total) files in a directory
+- [mk-dirs](https://github.com/lukeed/mk-dirs) - A tiny (420B) utility to make a directory and its parents, recursively
+
+## License
+
+MIT © [Luke Edwards](https://lukeed.com)
diff --git a/node_modules/escalade/sync/index.d.ts b/node_modules/escalade/sync/index.d.ts
new file mode 100644
index 0000000..746ddd3
--- /dev/null
+++ b/node_modules/escalade/sync/index.d.ts
@@ -0,0 +1,2 @@
+export type Callback = (directory: string, files: string[]) => string | false | void;
+export default function (directory: string, callback: Callback): string | void;
diff --git a/node_modules/escalade/sync/index.js b/node_modules/escalade/sync/index.js
new file mode 100644
index 0000000..902cc46
--- /dev/null
+++ b/node_modules/escalade/sync/index.js
@@ -0,0 +1,18 @@
+const { dirname, resolve } = require('path');
+const { readdirSync, statSync } = require('fs');
+
+module.exports = function (start, callback) {
+ let dir = resolve('.', start);
+ let tmp, stats = statSync(dir);
+
+ if (!stats.isDirectory()) {
+ dir = dirname(dir);
+ }
+
+ while (true) {
+ tmp = callback(dir, readdirSync(dir));
+ if (tmp) return resolve(dir, tmp);
+ dir = dirname(tmp = dir);
+ if (tmp === dir) break;
+ }
+}
diff --git a/node_modules/escalade/sync/index.mjs b/node_modules/escalade/sync/index.mjs
new file mode 100644
index 0000000..3cdc5bd
--- /dev/null
+++ b/node_modules/escalade/sync/index.mjs
@@ -0,0 +1,18 @@
+import { dirname, resolve } from 'path';
+import { readdirSync, statSync } from 'fs';
+
+export default function (start, callback) {
+ let dir = resolve('.', start);
+ let tmp, stats = statSync(dir);
+
+ if (!stats.isDirectory()) {
+ dir = dirname(dir);
+ }
+
+ while (true) {
+ tmp = callback(dir, readdirSync(dir));
+ if (tmp) return resolve(dir, tmp);
+ dir = dirname(tmp = dir);
+ if (tmp === dir) break;
+ }
+}
diff --git a/node_modules/fast-glob/LICENSE b/node_modules/fast-glob/LICENSE
new file mode 100644
index 0000000..65a9994
--- /dev/null
+++ b/node_modules/fast-glob/LICENSE
@@ -0,0 +1,21 @@
+The MIT License (MIT)
+
+Copyright (c) Denis Malinochkin
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
diff --git a/node_modules/fast-glob/README.md b/node_modules/fast-glob/README.md
new file mode 100644
index 0000000..393f4fe
--- /dev/null
+++ b/node_modules/fast-glob/README.md
@@ -0,0 +1,795 @@
+# fast-glob
+
+> It's a very fast and efficient [glob][glob_definition] library for [Node.js][node_js].
+
+This package provides methods for traversing the file system and returning pathnames that matched a defined set of a specified pattern according to the rules used by the Unix Bash shell with some simplifications, meanwhile results are returned in **arbitrary order**. Quick, simple, effective.
+
+## Table of Contents
+
+
+Details
+
+* [Highlights](#highlights)
+* [Donation](#donation)
+* [Old and modern mode](#old-and-modern-mode)
+* [Pattern syntax](#pattern-syntax)
+ * [Basic syntax](#basic-syntax)
+ * [Advanced syntax](#advanced-syntax)
+* [Installation](#installation)
+* [API](#api)
+ * [Asynchronous](#asynchronous)
+ * [Synchronous](#synchronous)
+ * [Stream](#stream)
+ * [patterns](#patterns)
+ * [[options]](#options)
+ * [Helpers](#helpers)
+ * [generateTasks](#generatetaskspatterns-options)
+ * [isDynamicPattern](#isdynamicpatternpattern-options)
+ * [escapePath](#escapepathpattern)
+* [Options](#options-3)
+ * [Common](#common)
+ * [concurrency](#concurrency)
+ * [cwd](#cwd)
+ * [deep](#deep)
+ * [followSymbolicLinks](#followsymboliclinks)
+ * [fs](#fs)
+ * [ignore](#ignore)
+ * [suppressErrors](#suppresserrors)
+ * [throwErrorOnBrokenSymbolicLink](#throwerroronbrokensymboliclink)
+ * [Output control](#output-control)
+ * [absolute](#absolute)
+ * [markDirectories](#markdirectories)
+ * [objectMode](#objectmode)
+ * [onlyDirectories](#onlydirectories)
+ * [onlyFiles](#onlyfiles)
+ * [stats](#stats)
+ * [unique](#unique)
+ * [Matching control](#matching-control)
+ * [braceExpansion](#braceexpansion)
+ * [caseSensitiveMatch](#casesensitivematch)
+ * [dot](#dot)
+ * [extglob](#extglob)
+ * [globstar](#globstar)
+ * [baseNameMatch](#basenamematch)
+* [FAQ](#faq)
+ * [What is a static or dynamic pattern?](#what-is-a-static-or-dynamic-pattern)
+ * [How to write patterns on Windows?](#how-to-write-patterns-on-windows)
+ * [Why are parentheses match wrong?](#why-are-parentheses-match-wrong)
+ * [How to exclude directory from reading?](#how-to-exclude-directory-from-reading)
+ * [How to use UNC path?](#how-to-use-unc-path)
+ * [Compatible with `node-glob`?](#compatible-with-node-glob)
+* [Benchmarks](#benchmarks)
+ * [Server](#server)
+ * [Nettop](#nettop)
+* [Changelog](#changelog)
+* [License](#license)
+
+
+
+## Highlights
+
+* Fast. Probably the fastest.
+* Supports multiple and negative patterns.
+* Synchronous, Promise and Stream API.
+* Object mode. Can return more than just strings.
+* Error-tolerant.
+
+## Donation
+
+Do you like this project? Support it by donating, creating an issue or pull request.
+
+[![Donate](https://img.shields.io/badge/Donate-PayPal-green.svg)][paypal_mrmlnc]
+
+## Old and modern mode
+
+This package works in two modes, depending on the environment in which it is used.
+
+* **Old mode**. Node.js below 10.10 or when the [`stats`](#stats) option is *enabled*.
+* **Modern mode**. Node.js 10.10+ and the [`stats`](#stats) option is *disabled*.
+
+The modern mode is faster. Learn more about the [internal mechanism][nodelib_fs_scandir_old_and_modern_modern].
+
+## Pattern syntax
+
+> :warning: Always use forward-slashes in glob expressions (patterns and [`ignore`](#ignore) option). Use backslashes for escaping characters.
+
+There is more than one form of syntax: basic and advanced. Below is a brief overview of the supported features. Also pay attention to our [FAQ](#faq).
+
+> :book: This package uses a [`micromatch`][micromatch] as a library for pattern matching.
+
+### Basic syntax
+
+* An asterisk (`*`) — matches everything except slashes (path separators), hidden files (names starting with `.`).
+* A double star or globstar (`**`) — matches zero or more directories.
+* Question mark (`?`) – matches any single character except slashes (path separators).
+* Sequence (`[seq]`) — matches any character in sequence.
+
+> :book: A few additional words about the [basic matching behavior][picomatch_matching_behavior].
+
+Some examples:
+
+* `src/**/*.js` — matches all files in the `src` directory (any level of nesting) that have the `.js` extension.
+* `src/*.??` — matches all files in the `src` directory (only first level of nesting) that have a two-character extension.
+* `file-[01].js` — matches files: `file-0.js`, `file-1.js`.
+
+### Advanced syntax
+
+* [Escapes characters][micromatch_backslashes] (`\\`) — matching special characters (`$^*+?()[]`) as literals.
+* [POSIX character classes][picomatch_posix_brackets] (`[[:digit:]]`).
+* [Extended globs][micromatch_extglobs] (`?(pattern-list)`).
+* [Bash style brace expansions][micromatch_braces] (`{}`).
+* [Regexp character classes][micromatch_regex_character_classes] (`[1-5]`).
+* [Regex groups][regular_expressions_brackets] (`(a|b)`).
+
+> :book: A few additional words about the [advanced matching behavior][micromatch_extended_globbing].
+
+Some examples:
+
+* `src/**/*.{css,scss}` — matches all files in the `src` directory (any level of nesting) that have the `.css` or `.scss` extension.
+* `file-[[:digit:]].js` — matches files: `file-0.js`, `file-1.js`, …, `file-9.js`.
+* `file-{1..3}.js` — matches files: `file-1.js`, `file-2.js`, `file-3.js`.
+* `file-(1|2)` — matches files: `file-1.js`, `file-2.js`.
+
+## Installation
+
+```console
+npm install fast-glob
+```
+
+## API
+
+### Asynchronous
+
+```js
+fg(patterns, [options])
+```
+
+Returns a `Promise` with an array of matching entries.
+
+```js
+const fg = require('fast-glob');
+
+const entries = await fg(['.editorconfig', '**/index.js'], { dot: true });
+
+// ['.editorconfig', 'services/index.js']
+```
+
+### Synchronous
+
+```js
+fg.sync(patterns, [options])
+```
+
+Returns an array of matching entries.
+
+```js
+const fg = require('fast-glob');
+
+const entries = fg.sync(['.editorconfig', '**/index.js'], { dot: true });
+
+// ['.editorconfig', 'services/index.js']
+```
+
+### Stream
+
+```js
+fg.stream(patterns, [options])
+```
+
+Returns a [`ReadableStream`][node_js_stream_readable_streams] when the `data` event will be emitted with matching entry.
+
+```js
+const fg = require('fast-glob');
+
+const stream = fg.stream(['.editorconfig', '**/index.js'], { dot: true });
+
+for await (const entry of stream) {
+ // .editorconfig
+ // services/index.js
+}
+```
+
+#### patterns
+
+* Required: `true`
+* Type: `string | string[]`
+
+Any correct pattern(s).
+
+> :1234: [Pattern syntax](#pattern-syntax)
+>
+> :warning: This package does not respect the order of patterns. First, all the negative patterns are applied, and only then the positive patterns. If you want to get a certain order of records, use sorting or split calls.
+
+#### [options]
+
+* Required: `false`
+* Type: [`Options`](#options-3)
+
+See [Options](#options-3) section.
+
+### Helpers
+
+#### `generateTasks(patterns, [options])`
+
+Returns the internal representation of patterns ([`Task`](./src/managers/tasks.ts) is a combining patterns by base directory).
+
+```js
+fg.generateTasks('*');
+
+[{
+ base: '.', // Parent directory for all patterns inside this task
+ dynamic: true, // Dynamic or static patterns are in this task
+ patterns: ['*'],
+ positive: ['*'],
+ negative: []
+}]
+```
+
+##### patterns
+
+* Required: `true`
+* Type: `string | string[]`
+
+Any correct pattern(s).
+
+##### [options]
+
+* Required: `false`
+* Type: [`Options`](#options-3)
+
+See [Options](#options-3) section.
+
+#### `isDynamicPattern(pattern, [options])`
+
+Returns `true` if the passed pattern is a dynamic pattern.
+
+> :1234: [What is a static or dynamic pattern?](#what-is-a-static-or-dynamic-pattern)
+
+```js
+fg.isDynamicPattern('*'); // true
+fg.isDynamicPattern('abc'); // false
+```
+
+##### pattern
+
+* Required: `true`
+* Type: `string`
+
+Any correct pattern.
+
+##### [options]
+
+* Required: `false`
+* Type: [`Options`](#options-3)
+
+See [Options](#options-3) section.
+
+#### `escapePath(pattern)`
+
+Returns a path with escaped special characters (`*?|(){}[]`, `!` at the beginning of line, `@+!` before the opening parenthesis).
+
+```js
+fg.escapePath('!abc'); // \\!abc
+fg.escapePath('C:/Program Files (x86)'); // C:/Program Files \\(x86\\)
+```
+
+##### pattern
+
+* Required: `true`
+* Type: `string`
+
+Any string, for example, a path to a file.
+
+## Options
+
+### Common options
+
+#### concurrency
+
+* Type: `number`
+* Default: `os.cpus().length`
+
+Specifies the maximum number of concurrent requests from a reader to read directories.
+
+> :book: The higher the number, the higher the performance and load on the file system. If you want to read in quiet mode, set the value to a comfortable number or `1`.
+
+#### cwd
+
+* Type: `string`
+* Default: `process.cwd()`
+
+The current working directory in which to search.
+
+#### deep
+
+* Type: `number`
+* Default: `Infinity`
+
+Specifies the maximum depth of a read directory relative to the start directory.
+
+For example, you have the following tree:
+
+```js
+dir/
+└── one/ // 1
+ └── two/ // 2
+ └── file.js // 3
+```
+
+```js
+// With base directory
+fg.sync('dir/**', { onlyFiles: false, deep: 1 }); // ['dir/one']
+fg.sync('dir/**', { onlyFiles: false, deep: 2 }); // ['dir/one', 'dir/one/two']
+
+// With cwd option
+fg.sync('**', { onlyFiles: false, cwd: 'dir', deep: 1 }); // ['one']
+fg.sync('**', { onlyFiles: false, cwd: 'dir', deep: 2 }); // ['one', 'one/two']
+```
+
+> :book: If you specify a pattern with some base directory, this directory will not participate in the calculation of the depth of the found directories. Think of it as a [`cwd`](#cwd) option.
+
+#### followSymbolicLinks
+
+* Type: `boolean`
+* Default: `true`
+
+Indicates whether to traverse descendants of symbolic link directories when expanding `**` patterns.
+
+> :book: Note that this option does not affect the base directory of the pattern. For example, if `./a` is a symlink to directory `./b` and you specified `['./a**', './b/**']` patterns, then directory `./a` will still be read.
+
+> :book: If the [`stats`](#stats) option is specified, the information about the symbolic link (`fs.lstat`) will be replaced with information about the entry (`fs.stat`) behind it.
+
+#### fs
+
+* Type: `FileSystemAdapter`
+* Default: `fs.*`
+
+Custom implementation of methods for working with the file system.
+
+```ts
+export interface FileSystemAdapter {
+ lstat?: typeof fs.lstat;
+ stat?: typeof fs.stat;
+ lstatSync?: typeof fs.lstatSync;
+ statSync?: typeof fs.statSync;
+ readdir?: typeof fs.readdir;
+ readdirSync?: typeof fs.readdirSync;
+}
+```
+
+#### ignore
+
+* Type: `string[]`
+* Default: `[]`
+
+An array of glob patterns to exclude matches. This is an alternative way to use negative patterns.
+
+```js
+dir/
+├── package-lock.json
+└── package.json
+```
+
+```js
+fg.sync(['*.json', '!package-lock.json']); // ['package.json']
+fg.sync('*.json', { ignore: ['package-lock.json'] }); // ['package.json']
+```
+
+#### suppressErrors
+
+* Type: `boolean`
+* Default: `false`
+
+By default this package suppress only `ENOENT` errors. Set to `true` to suppress any error.
+
+> :book: Can be useful when the directory has entries with a special level of access.
+
+#### throwErrorOnBrokenSymbolicLink
+
+* Type: `boolean`
+* Default: `false`
+
+Throw an error when symbolic link is broken if `true` or safely return `lstat` call if `false`.
+
+> :book: This option has no effect on errors when reading the symbolic link directory.
+
+### Output control
+
+#### absolute
+
+* Type: `boolean`
+* Default: `false`
+
+Return the absolute path for entries.
+
+```js
+fg.sync('*.js', { absolute: false }); // ['index.js']
+fg.sync('*.js', { absolute: true }); // ['/home/user/index.js']
+```
+
+> :book: This option is required if you want to use negative patterns with absolute path, for example, `!${__dirname}/*.js`.
+
+#### markDirectories
+
+* Type: `boolean`
+* Default: `false`
+
+Mark the directory path with the final slash.
+
+```js
+fg.sync('*', { onlyFiles: false, markDirectories: false }); // ['index.js', 'controllers']
+fg.sync('*', { onlyFiles: false, markDirectories: true }); // ['index.js', 'controllers/']
+```
+
+#### objectMode
+
+* Type: `boolean`
+* Default: `false`
+
+Returns objects (instead of strings) describing entries.
+
+```js
+fg.sync('*', { objectMode: false }); // ['src/index.js']
+fg.sync('*', { objectMode: true }); // [{ name: 'index.js', path: 'src/index.js', dirent: }]
+```
+
+The object has the following fields:
+
+* name (`string`) — the last part of the path (basename)
+* path (`string`) — full path relative to the pattern base directory
+* dirent ([`fs.Dirent`][node_js_fs_class_fs_dirent]) — instance of `fs.Dirent`
+
+> :book: An object is an internal representation of entry, so getting it does not affect performance.
+
+#### onlyDirectories
+
+* Type: `boolean`
+* Default: `false`
+
+Return only directories.
+
+```js
+fg.sync('*', { onlyDirectories: false }); // ['index.js', 'src']
+fg.sync('*', { onlyDirectories: true }); // ['src']
+```
+
+> :book: If `true`, the [`onlyFiles`](#onlyfiles) option is automatically `false`.
+
+#### onlyFiles
+
+* Type: `boolean`
+* Default: `true`
+
+Return only files.
+
+```js
+fg.sync('*', { onlyFiles: false }); // ['index.js', 'src']
+fg.sync('*', { onlyFiles: true }); // ['index.js']
+```
+
+#### stats
+
+* Type: `boolean`
+* Default: `false`
+
+Enables an [object mode](#objectmode) with an additional field:
+
+* stats ([`fs.Stats`][node_js_fs_class_fs_stats]) — instance of `fs.Stats`
+
+```js
+fg.sync('*', { stats: false }); // ['src/index.js']
+fg.sync('*', { stats: true }); // [{ name: 'index.js', path: 'src/index.js', dirent: , stats: }]
+```
+
+> :book: Returns `fs.stat` instead of `fs.lstat` for symbolic links when the [`followSymbolicLinks`](#followsymboliclinks) option is specified.
+>
+> :warning: Unlike [object mode](#objectmode) this mode requires additional calls to the file system. On average, this mode is slower at least twice. See [old and modern mode](#old-and-modern-mode) for more details.
+
+#### unique
+
+* Type: `boolean`
+* Default: `true`
+
+Ensures that the returned entries are unique.
+
+```js
+fg.sync(['*.json', 'package.json'], { unique: false }); // ['package.json', 'package.json']
+fg.sync(['*.json', 'package.json'], { unique: true }); // ['package.json']
+```
+
+If `true` and similar entries are found, the result is the first found.
+
+### Matching control
+
+#### braceExpansion
+
+* Type: `boolean`
+* Default: `true`
+
+Enables Bash-like brace expansion.
+
+> :1234: [Syntax description][bash_hackers_syntax_expansion_brace] or more [detailed description][micromatch_braces].
+
+```js
+dir/
+├── abd
+├── acd
+└── a{b,c}d
+```
+
+```js
+fg.sync('a{b,c}d', { braceExpansion: false }); // ['a{b,c}d']
+fg.sync('a{b,c}d', { braceExpansion: true }); // ['abd', 'acd']
+```
+
+#### caseSensitiveMatch
+
+* Type: `boolean`
+* Default: `true`
+
+Enables a [case-sensitive][wikipedia_case_sensitivity] mode for matching files.
+
+```js
+dir/
+├── file.txt
+└── File.txt
+```
+
+```js
+fg.sync('file.txt', { caseSensitiveMatch: false }); // ['file.txt', 'File.txt']
+fg.sync('file.txt', { caseSensitiveMatch: true }); // ['file.txt']
+```
+
+#### dot
+
+* Type: `boolean`
+* Default: `false`
+
+Allow patterns to match entries that begin with a period (`.`).
+
+> :book: Note that an explicit dot in a portion of the pattern will always match dot files.
+
+```js
+dir/
+├── .editorconfig
+└── package.json
+```
+
+```js
+fg.sync('*', { dot: false }); // ['package.json']
+fg.sync('*', { dot: true }); // ['.editorconfig', 'package.json']
+```
+
+#### extglob
+
+* Type: `boolean`
+* Default: `true`
+
+Enables Bash-like `extglob` functionality.
+
+> :1234: [Syntax description][micromatch_extglobs].
+
+```js
+dir/
+├── README.md
+└── package.json
+```
+
+```js
+fg.sync('*.+(json|md)', { extglob: false }); // []
+fg.sync('*.+(json|md)', { extglob: true }); // ['README.md', 'package.json']
+```
+
+#### globstar
+
+* Type: `boolean`
+* Default: `true`
+
+Enables recursively repeats a pattern containing `**`. If `false`, `**` behaves exactly like `*`.
+
+```js
+dir/
+└── a
+ └── b
+```
+
+```js
+fg.sync('**', { onlyFiles: false, globstar: false }); // ['a']
+fg.sync('**', { onlyFiles: false, globstar: true }); // ['a', 'a/b']
+```
+
+#### baseNameMatch
+
+* Type: `boolean`
+* Default: `false`
+
+If set to `true`, then patterns without slashes will be matched against the basename of the path if it contains slashes.
+
+```js
+dir/
+└── one/
+ └── file.md
+```
+
+```js
+fg.sync('*.md', { baseNameMatch: false }); // []
+fg.sync('*.md', { baseNameMatch: true }); // ['one/file.md']
+```
+
+## FAQ
+
+## What is a static or dynamic pattern?
+
+All patterns can be divided into two types:
+
+* **static**. A pattern is considered static if it can be used to get an entry on the file system without using matching mechanisms. For example, the `file.js` pattern is a static pattern because we can just verify that it exists on the file system.
+* **dynamic**. A pattern is considered dynamic if it cannot be used directly to find occurrences without using a matching mechanisms. For example, the `*` pattern is a dynamic pattern because we cannot use this pattern directly.
+
+A pattern is considered dynamic if it contains the following characters (`…` — any characters or their absence) or options:
+
+* The [`caseSensitiveMatch`](#casesensitivematch) option is disabled
+* `\\` (the escape character)
+* `*`, `?`, `!` (at the beginning of line)
+* `[…]`
+* `(…|…)`
+* `@(…)`, `!(…)`, `*(…)`, `?(…)`, `+(…)` (respects the [`extglob`](#extglob) option)
+* `{…,…}`, `{…..…}` (respects the [`braceExpansion`](#braceexpansion) option)
+
+## How to write patterns on Windows?
+
+Always use forward-slashes in glob expressions (patterns and [`ignore`](#ignore) option). Use backslashes for escaping characters. With the [`cwd`](#cwd) option use a convenient format.
+
+**Bad**
+
+```ts
+[
+ 'directory\\*',
+ path.join(process.cwd(), '**')
+]
+```
+
+**Good**
+
+```ts
+[
+ 'directory/*',
+ path.join(process.cwd(), '**').replace(/\\/g, '/')
+]
+```
+
+> :book: Use the [`normalize-path`][npm_normalize_path] or the [`unixify`][npm_unixify] package to convert Windows-style path to a Unix-style path.
+
+Read more about [matching with backslashes][micromatch_backslashes].
+
+## Why are parentheses match wrong?
+
+```js
+dir/
+└── (special-*file).txt
+```
+
+```js
+fg.sync(['(special-*file).txt']) // []
+```
+
+Refers to Bash. You need to escape special characters:
+
+```js
+fg.sync(['\\(special-*file\\).txt']) // ['(special-*file).txt']
+```
+
+Read more about [matching special characters as literals][picomatch_matching_special_characters_as_literals].
+
+## How to exclude directory from reading?
+
+You can use a negative pattern like this: `!**/node_modules` or `!**/node_modules/**`. Also you can use [`ignore`](#ignore) option. Just look at the example below.
+
+```js
+first/
+├── file.md
+└── second/
+ └── file.txt
+```
+
+If you don't want to read the `second` directory, you must write the following pattern: `!**/second` or `!**/second/**`.
+
+```js
+fg.sync(['**/*.md', '!**/second']); // ['first/file.md']
+fg.sync(['**/*.md'], { ignore: ['**/second/**'] }); // ['first/file.md']
+```
+
+> :warning: When you write `!**/second/**/*` it means that the directory will be **read**, but all the entries will not be included in the results.
+
+You have to understand that if you write the pattern to exclude directories, then the directory will not be read under any circumstances.
+
+## How to use UNC path?
+
+You cannot use [Uniform Naming Convention (UNC)][unc_path] paths as patterns (due to syntax), but you can use them as [`cwd`](#cwd) directory.
+
+```ts
+fg.sync('*', { cwd: '\\\\?\\C:\\Python27' /* or //?/C:/Python27 */ });
+fg.sync('Python27/*', { cwd: '\\\\?\\C:\\' /* or //?/C:/ */ });
+```
+
+## Compatible with `node-glob`?
+
+| node-glob | fast-glob |
+| :----------: | :-------: |
+| `cwd` | [`cwd`](#cwd) |
+| `root` | – |
+| `dot` | [`dot`](#dot) |
+| `nomount` | – |
+| `mark` | [`markDirectories`](#markdirectories) |
+| `nosort` | – |
+| `nounique` | [`unique`](#unique) |
+| `nobrace` | [`braceExpansion`](#braceexpansion) |
+| `noglobstar` | [`globstar`](#globstar) |
+| `noext` | [`extglob`](#extglob) |
+| `nocase` | [`caseSensitiveMatch`](#casesensitivematch) |
+| `matchBase` | [`baseNameMatch`](#basenamematch) |
+| `nodir` | [`onlyFiles`](#onlyfiles) |
+| `ignore` | [`ignore`](#ignore) |
+| `follow` | [`followSymbolicLinks`](#followsymboliclinks) |
+| `realpath` | – |
+| `absolute` | [`absolute`](#absolute) |
+
+## Benchmarks
+
+### Server
+
+Link: [Vultr Bare Metal][vultr_pricing_baremetal]
+
+* Processor: E3-1270v6 (8 CPU)
+* RAM: 32GB
+* Disk: SSD ([Intel DC S3520 SSDSC2BB240G7][intel_ssd])
+
+You can see results [here][github_gist_benchmark_server] for latest release.
+
+### Nettop
+
+Link: [Zotac bi323][zotac_bi323]
+
+* Processor: Intel N3150 (4 CPU)
+* RAM: 8GB
+* Disk: SSD ([Silicon Power SP060GBSS3S55S25][silicon_power_ssd])
+
+You can see results [here][github_gist_benchmark_nettop] for latest release.
+
+## Changelog
+
+See the [Releases section of our GitHub project][github_releases] for changelog for each release version.
+
+## License
+
+This software is released under the terms of the MIT license.
+
+[bash_hackers_syntax_expansion_brace]: https://wiki.bash-hackers.org/syntax/expansion/brace
+[github_gist_benchmark_nettop]: https://gist.github.com/mrmlnc/f06246b197f53c356895fa35355a367c#file-fg-benchmark-nettop-product-txt
+[github_gist_benchmark_server]: https://gist.github.com/mrmlnc/f06246b197f53c356895fa35355a367c#file-fg-benchmark-server-product-txt
+[github_releases]: https://github.com/mrmlnc/fast-glob/releases
+[glob_definition]: https://en.wikipedia.org/wiki/Glob_(programming)
+[glob_linux_man]: http://man7.org/linux/man-pages/man3/glob.3.html
+[intel_ssd]: https://ark.intel.com/content/www/us/en/ark/products/93012/intel-ssd-dc-s3520-series-240gb-2-5in-sata-6gb-s-3d1-mlc.html
+[micromatch_backslashes]: https://github.com/micromatch/micromatch#backslashes
+[micromatch_braces]: https://github.com/micromatch/braces
+[micromatch_extended_globbing]: https://github.com/micromatch/micromatch#extended-globbing
+[micromatch_extglobs]: https://github.com/micromatch/micromatch#extglobs
+[micromatch_regex_character_classes]: https://github.com/micromatch/micromatch#regex-character-classes
+[micromatch]: https://github.com/micromatch/micromatch
+[node_js_fs_class_fs_dirent]: https://nodejs.org/api/fs.html#fs_class_fs_dirent
+[node_js_fs_class_fs_stats]: https://nodejs.org/api/fs.html#fs_class_fs_stats
+[node_js_stream_readable_streams]: https://nodejs.org/api/stream.html#stream_readable_streams
+[node_js]: https://nodejs.org/en
+[nodelib_fs_scandir_old_and_modern_modern]: https://github.com/nodelib/nodelib/blob/master/packages/fs/fs.scandir/README.md#old-and-modern-mode
+[npm_normalize_path]: https://www.npmjs.com/package/normalize-path
+[npm_unixify]: https://www.npmjs.com/package/unixify
+[paypal_mrmlnc]:https://paypal.me/mrmlnc
+[picomatch_matching_behavior]: https://github.com/micromatch/picomatch#matching-behavior-vs-bash
+[picomatch_matching_special_characters_as_literals]: https://github.com/micromatch/picomatch#matching-special-characters-as-literals
+[picomatch_posix_brackets]: https://github.com/micromatch/picomatch#posix-brackets
+[regular_expressions_brackets]: https://www.regular-expressions.info/brackets.html
+[silicon_power_ssd]: https://www.silicon-power.com/web/product-1
+[unc_path]: https://docs.microsoft.com/en-us/openspecs/windows_protocols/ms-dtyp/62e862f4-2a51-452e-8eeb-dc4ff5ee33cc
+[vultr_pricing_baremetal]: https://www.vultr.com/pricing/baremetal
+[wikipedia_case_sensitivity]: https://en.wikipedia.org/wiki/Case_sensitivity
+[zotac_bi323]: https://www.zotac.com/ee/product/mini_pcs/zbox-bi323
diff --git a/node_modules/fast-glob/out/index.d.ts b/node_modules/fast-glob/out/index.d.ts
new file mode 100644
index 0000000..54daa45
--- /dev/null
+++ b/node_modules/fast-glob/out/index.d.ts
@@ -0,0 +1,27 @@
+///
+import * as taskManager from './managers/tasks';
+import { Options as OptionsInternal } from './settings';
+import { Entry as EntryInternal, FileSystemAdapter as FileSystemAdapterInternal, Pattern as PatternInternal } from './types';
+declare type EntryObjectModePredicate = {
+ [TKey in keyof Pick]-?: true;
+};
+declare type EntryStatsPredicate = {
+ [TKey in keyof Pick]-?: true;
+};
+declare type EntryObjectPredicate = EntryObjectModePredicate | EntryStatsPredicate;
+declare function FastGlob(source: PatternInternal | PatternInternal[], options: OptionsInternal & EntryObjectPredicate): Promise;
+declare function FastGlob(source: PatternInternal | PatternInternal[], options?: OptionsInternal): Promise;
+declare namespace FastGlob {
+ type Options = OptionsInternal;
+ type Entry = EntryInternal;
+ type Task = taskManager.Task;
+ type Pattern = PatternInternal;
+ type FileSystemAdapter = FileSystemAdapterInternal;
+ function sync(source: PatternInternal | PatternInternal[], options: OptionsInternal & EntryObjectPredicate): EntryInternal[];
+ function sync(source: PatternInternal | PatternInternal[], options?: OptionsInternal): string[];
+ function stream(source: PatternInternal | PatternInternal[], options?: OptionsInternal): NodeJS.ReadableStream;
+ function generateTasks(source: PatternInternal | PatternInternal[], options?: OptionsInternal): Task[];
+ function isDynamicPattern(source: PatternInternal, options?: OptionsInternal): boolean;
+ function escapePath(source: PatternInternal): PatternInternal;
+}
+export = FastGlob;
diff --git a/node_modules/fast-glob/out/index.js b/node_modules/fast-glob/out/index.js
new file mode 100644
index 0000000..5397852
--- /dev/null
+++ b/node_modules/fast-glob/out/index.js
@@ -0,0 +1,68 @@
+"use strict";
+const taskManager = require("./managers/tasks");
+const patternManager = require("./managers/patterns");
+const async_1 = require("./providers/async");
+const stream_1 = require("./providers/stream");
+const sync_1 = require("./providers/sync");
+const settings_1 = require("./settings");
+const utils = require("./utils");
+async function FastGlob(source, options) {
+ assertPatternsInput(source);
+ const works = getWorks(source, async_1.default, options);
+ const result = await Promise.all(works);
+ return utils.array.flatten(result);
+}
+// https://github.com/typescript-eslint/typescript-eslint/issues/60
+// eslint-disable-next-line no-redeclare
+(function (FastGlob) {
+ function sync(source, options) {
+ assertPatternsInput(source);
+ const works = getWorks(source, sync_1.default, options);
+ return utils.array.flatten(works);
+ }
+ FastGlob.sync = sync;
+ function stream(source, options) {
+ assertPatternsInput(source);
+ const works = getWorks(source, stream_1.default, options);
+ /**
+ * The stream returned by the provider cannot work with an asynchronous iterator.
+ * To support asynchronous iterators, regardless of the number of tasks, we always multiplex streams.
+ * This affects performance (+25%). I don't see best solution right now.
+ */
+ return utils.stream.merge(works);
+ }
+ FastGlob.stream = stream;
+ function generateTasks(source, options) {
+ assertPatternsInput(source);
+ const patterns = patternManager.transform([].concat(source));
+ const settings = new settings_1.default(options);
+ return taskManager.generate(patterns, settings);
+ }
+ FastGlob.generateTasks = generateTasks;
+ function isDynamicPattern(source, options) {
+ assertPatternsInput(source);
+ const settings = new settings_1.default(options);
+ return utils.pattern.isDynamicPattern(source, settings);
+ }
+ FastGlob.isDynamicPattern = isDynamicPattern;
+ function escapePath(source) {
+ assertPatternsInput(source);
+ return utils.path.escape(source);
+ }
+ FastGlob.escapePath = escapePath;
+})(FastGlob || (FastGlob = {}));
+function getWorks(source, _Provider, options) {
+ const patterns = patternManager.transform([].concat(source));
+ const settings = new settings_1.default(options);
+ const tasks = taskManager.generate(patterns, settings);
+ const provider = new _Provider(settings);
+ return tasks.map(provider.read, provider);
+}
+function assertPatternsInput(input) {
+ const source = [].concat(input);
+ const isValidSource = source.every((item) => utils.string.isString(item) && !utils.string.isEmpty(item));
+ if (!isValidSource) {
+ throw new TypeError('Patterns must be a string (non empty) or an array of strings');
+ }
+}
+module.exports = FastGlob;
diff --git a/node_modules/fast-glob/out/managers/patterns.d.ts b/node_modules/fast-glob/out/managers/patterns.d.ts
new file mode 100644
index 0000000..2a7d7ae
--- /dev/null
+++ b/node_modules/fast-glob/out/managers/patterns.d.ts
@@ -0,0 +1,6 @@
+export declare function transform(patterns: string[]): string[];
+/**
+ * This package only works with forward slashes as a path separator.
+ * Because of this, we cannot use the standard `path.normalize` method, because on Windows platform it will use of backslashes.
+ */
+export declare function removeDuplicateSlashes(pattern: string): string;
diff --git a/node_modules/fast-glob/out/managers/patterns.js b/node_modules/fast-glob/out/managers/patterns.js
new file mode 100644
index 0000000..a2f0593
--- /dev/null
+++ b/node_modules/fast-glob/out/managers/patterns.js
@@ -0,0 +1,21 @@
+"use strict";
+Object.defineProperty(exports, "__esModule", { value: true });
+exports.removeDuplicateSlashes = exports.transform = void 0;
+/**
+ * Matches a sequence of two or more consecutive slashes, excluding the first two slashes at the beginning of the string.
+ * The latter is due to the presence of the device path at the beginning of the UNC path.
+ * @todo rewrite to negative lookbehind with the next major release.
+ */
+const DOUBLE_SLASH_RE = /(?!^)\/{2,}/g;
+function transform(patterns) {
+ return patterns.map((pattern) => removeDuplicateSlashes(pattern));
+}
+exports.transform = transform;
+/**
+ * This package only works with forward slashes as a path separator.
+ * Because of this, we cannot use the standard `path.normalize` method, because on Windows platform it will use of backslashes.
+ */
+function removeDuplicateSlashes(pattern) {
+ return pattern.replace(DOUBLE_SLASH_RE, '/');
+}
+exports.removeDuplicateSlashes = removeDuplicateSlashes;
diff --git a/node_modules/fast-glob/out/managers/tasks.d.ts b/node_modules/fast-glob/out/managers/tasks.d.ts
new file mode 100644
index 0000000..aa746a8
--- /dev/null
+++ b/node_modules/fast-glob/out/managers/tasks.d.ts
@@ -0,0 +1,22 @@
+import Settings from '../settings';
+import { Pattern, PatternsGroup } from '../types';
+export declare type Task = {
+ base: string;
+ dynamic: boolean;
+ patterns: Pattern[];
+ positive: Pattern[];
+ negative: Pattern[];
+};
+export declare function generate(patterns: Pattern[], settings: Settings): Task[];
+/**
+ * Returns tasks grouped by basic pattern directories.
+ *
+ * Patterns that can be found inside (`./`) and outside (`../`) the current directory are handled separately.
+ * This is necessary because directory traversal starts at the base directory and goes deeper.
+ */
+export declare function convertPatternsToTasks(positive: Pattern[], negative: Pattern[], dynamic: boolean): Task[];
+export declare function getPositivePatterns(patterns: Pattern[]): Pattern[];
+export declare function getNegativePatternsAsPositive(patterns: Pattern[], ignore: Pattern[]): Pattern[];
+export declare function groupPatternsByBaseDirectory(patterns: Pattern[]): PatternsGroup;
+export declare function convertPatternGroupsToTasks(positive: PatternsGroup, negative: Pattern[], dynamic: boolean): Task[];
+export declare function convertPatternGroupToTask(base: string, positive: Pattern[], negative: Pattern[], dynamic: boolean): Task;
diff --git a/node_modules/fast-glob/out/managers/tasks.js b/node_modules/fast-glob/out/managers/tasks.js
new file mode 100644
index 0000000..b69ce87
--- /dev/null
+++ b/node_modules/fast-glob/out/managers/tasks.js
@@ -0,0 +1,80 @@
+"use strict";
+Object.defineProperty(exports, "__esModule", { value: true });
+exports.convertPatternGroupToTask = exports.convertPatternGroupsToTasks = exports.groupPatternsByBaseDirectory = exports.getNegativePatternsAsPositive = exports.getPositivePatterns = exports.convertPatternsToTasks = exports.generate = void 0;
+const utils = require("../utils");
+function generate(patterns, settings) {
+ const positivePatterns = getPositivePatterns(patterns);
+ const negativePatterns = getNegativePatternsAsPositive(patterns, settings.ignore);
+ const staticPatterns = positivePatterns.filter((pattern) => utils.pattern.isStaticPattern(pattern, settings));
+ const dynamicPatterns = positivePatterns.filter((pattern) => utils.pattern.isDynamicPattern(pattern, settings));
+ const staticTasks = convertPatternsToTasks(staticPatterns, negativePatterns, /* dynamic */ false);
+ const dynamicTasks = convertPatternsToTasks(dynamicPatterns, negativePatterns, /* dynamic */ true);
+ return staticTasks.concat(dynamicTasks);
+}
+exports.generate = generate;
+/**
+ * Returns tasks grouped by basic pattern directories.
+ *
+ * Patterns that can be found inside (`./`) and outside (`../`) the current directory are handled separately.
+ * This is necessary because directory traversal starts at the base directory and goes deeper.
+ */
+function convertPatternsToTasks(positive, negative, dynamic) {
+ const tasks = [];
+ const patternsOutsideCurrentDirectory = utils.pattern.getPatternsOutsideCurrentDirectory(positive);
+ const patternsInsideCurrentDirectory = utils.pattern.getPatternsInsideCurrentDirectory(positive);
+ const outsideCurrentDirectoryGroup = groupPatternsByBaseDirectory(patternsOutsideCurrentDirectory);
+ const insideCurrentDirectoryGroup = groupPatternsByBaseDirectory(patternsInsideCurrentDirectory);
+ tasks.push(...convertPatternGroupsToTasks(outsideCurrentDirectoryGroup, negative, dynamic));
+ /*
+ * For the sake of reducing future accesses to the file system, we merge all tasks within the current directory
+ * into a global task, if at least one pattern refers to the root (`.`). In this case, the global task covers the rest.
+ */
+ if ('.' in insideCurrentDirectoryGroup) {
+ tasks.push(convertPatternGroupToTask('.', patternsInsideCurrentDirectory, negative, dynamic));
+ }
+ else {
+ tasks.push(...convertPatternGroupsToTasks(insideCurrentDirectoryGroup, negative, dynamic));
+ }
+ return tasks;
+}
+exports.convertPatternsToTasks = convertPatternsToTasks;
+function getPositivePatterns(patterns) {
+ return utils.pattern.getPositivePatterns(patterns);
+}
+exports.getPositivePatterns = getPositivePatterns;
+function getNegativePatternsAsPositive(patterns, ignore) {
+ const negative = utils.pattern.getNegativePatterns(patterns).concat(ignore);
+ const positive = negative.map(utils.pattern.convertToPositivePattern);
+ return positive;
+}
+exports.getNegativePatternsAsPositive = getNegativePatternsAsPositive;
+function groupPatternsByBaseDirectory(patterns) {
+ const group = {};
+ return patterns.reduce((collection, pattern) => {
+ const base = utils.pattern.getBaseDirectory(pattern);
+ if (base in collection) {
+ collection[base].push(pattern);
+ }
+ else {
+ collection[base] = [pattern];
+ }
+ return collection;
+ }, group);
+}
+exports.groupPatternsByBaseDirectory = groupPatternsByBaseDirectory;
+function convertPatternGroupsToTasks(positive, negative, dynamic) {
+ return Object.keys(positive).map((base) => {
+ return convertPatternGroupToTask(base, positive[base], negative, dynamic);
+ });
+}
+exports.convertPatternGroupsToTasks = convertPatternGroupsToTasks;
+function convertPatternGroupToTask(base, positive, negative, dynamic) {
+ return {
+ dynamic,
+ positive,
+ negative,
+ base,
+ patterns: [].concat(positive, negative.map(utils.pattern.convertToNegativePattern))
+ };
+}
+exports.convertPatternGroupToTask = convertPatternGroupToTask;
diff --git a/node_modules/fast-glob/out/providers/async.d.ts b/node_modules/fast-glob/out/providers/async.d.ts
new file mode 100644
index 0000000..14665b1
--- /dev/null
+++ b/node_modules/fast-glob/out/providers/async.d.ts
@@ -0,0 +1,9 @@
+import { Task } from '../managers/tasks';
+import { Entry, EntryItem, ReaderOptions } from '../types';
+import ReaderAsync from '../readers/async';
+import Provider from './provider';
+export default class ProviderAsync extends Provider> {
+ protected _reader: ReaderAsync;
+ read(task: Task): Promise;
+ api(root: string, task: Task, options: ReaderOptions): Promise;
+}
diff --git a/node_modules/fast-glob/out/providers/async.js b/node_modules/fast-glob/out/providers/async.js
new file mode 100644
index 0000000..c8732e0
--- /dev/null
+++ b/node_modules/fast-glob/out/providers/async.js
@@ -0,0 +1,23 @@
+"use strict";
+Object.defineProperty(exports, "__esModule", { value: true });
+const async_1 = require("../readers/async");
+const provider_1 = require("./provider");
+class ProviderAsync extends provider_1.default {
+ constructor() {
+ super(...arguments);
+ this._reader = new async_1.default(this._settings);
+ }
+ async read(task) {
+ const root = this._getRootDirectory(task);
+ const options = this._getReaderOptions(task);
+ const entries = await this.api(root, task, options);
+ return entries.map((entry) => options.transform(entry));
+ }
+ api(root, task, options) {
+ if (task.dynamic) {
+ return this._reader.dynamic(root, options);
+ }
+ return this._reader.static(task.patterns, options);
+ }
+}
+exports.default = ProviderAsync;
diff --git a/node_modules/fast-glob/out/providers/filters/deep.d.ts b/node_modules/fast-glob/out/providers/filters/deep.d.ts
new file mode 100644
index 0000000..22586a9
--- /dev/null
+++ b/node_modules/fast-glob/out/providers/filters/deep.d.ts
@@ -0,0 +1,16 @@
+import { MicromatchOptions, EntryFilterFunction, Pattern } from '../../types';
+import Settings from '../../settings';
+export default class DeepFilter {
+ private readonly _settings;
+ private readonly _micromatchOptions;
+ constructor(_settings: Settings, _micromatchOptions: MicromatchOptions);
+ getFilter(basePath: string, positive: Pattern[], negative: Pattern[]): EntryFilterFunction;
+ private _getMatcher;
+ private _getNegativePatternsRe;
+ private _filter;
+ private _isSkippedByDeep;
+ private _getEntryLevel;
+ private _isSkippedSymbolicLink;
+ private _isSkippedByPositivePatterns;
+ private _isSkippedByNegativePatterns;
+}
diff --git a/node_modules/fast-glob/out/providers/filters/deep.js b/node_modules/fast-glob/out/providers/filters/deep.js
new file mode 100644
index 0000000..819c260
--- /dev/null
+++ b/node_modules/fast-glob/out/providers/filters/deep.js
@@ -0,0 +1,62 @@
+"use strict";
+Object.defineProperty(exports, "__esModule", { value: true });
+const utils = require("../../utils");
+const partial_1 = require("../matchers/partial");
+class DeepFilter {
+ constructor(_settings, _micromatchOptions) {
+ this._settings = _settings;
+ this._micromatchOptions = _micromatchOptions;
+ }
+ getFilter(basePath, positive, negative) {
+ const matcher = this._getMatcher(positive);
+ const negativeRe = this._getNegativePatternsRe(negative);
+ return (entry) => this._filter(basePath, entry, matcher, negativeRe);
+ }
+ _getMatcher(patterns) {
+ return new partial_1.default(patterns, this._settings, this._micromatchOptions);
+ }
+ _getNegativePatternsRe(patterns) {
+ const affectDepthOfReadingPatterns = patterns.filter(utils.pattern.isAffectDepthOfReadingPattern);
+ return utils.pattern.convertPatternsToRe(affectDepthOfReadingPatterns, this._micromatchOptions);
+ }
+ _filter(basePath, entry, matcher, negativeRe) {
+ if (this._isSkippedByDeep(basePath, entry.path)) {
+ return false;
+ }
+ if (this._isSkippedSymbolicLink(entry)) {
+ return false;
+ }
+ const filepath = utils.path.removeLeadingDotSegment(entry.path);
+ if (this._isSkippedByPositivePatterns(filepath, matcher)) {
+ return false;
+ }
+ return this._isSkippedByNegativePatterns(filepath, negativeRe);
+ }
+ _isSkippedByDeep(basePath, entryPath) {
+ /**
+ * Avoid unnecessary depth calculations when it doesn't matter.
+ */
+ if (this._settings.deep === Infinity) {
+ return false;
+ }
+ return this._getEntryLevel(basePath, entryPath) >= this._settings.deep;
+ }
+ _getEntryLevel(basePath, entryPath) {
+ const entryPathDepth = entryPath.split('/').length;
+ if (basePath === '') {
+ return entryPathDepth;
+ }
+ const basePathDepth = basePath.split('/').length;
+ return entryPathDepth - basePathDepth;
+ }
+ _isSkippedSymbolicLink(entry) {
+ return !this._settings.followSymbolicLinks && entry.dirent.isSymbolicLink();
+ }
+ _isSkippedByPositivePatterns(entryPath, matcher) {
+ return !this._settings.baseNameMatch && !matcher.match(entryPath);
+ }
+ _isSkippedByNegativePatterns(entryPath, patternsRe) {
+ return !utils.pattern.matchAny(entryPath, patternsRe);
+ }
+}
+exports.default = DeepFilter;
diff --git a/node_modules/fast-glob/out/providers/filters/entry.d.ts b/node_modules/fast-glob/out/providers/filters/entry.d.ts
new file mode 100644
index 0000000..2f21c43
--- /dev/null
+++ b/node_modules/fast-glob/out/providers/filters/entry.d.ts
@@ -0,0 +1,16 @@
+import Settings from '../../settings';
+import { EntryFilterFunction, MicromatchOptions, Pattern } from '../../types';
+export default class EntryFilter {
+ private readonly _settings;
+ private readonly _micromatchOptions;
+ readonly index: Map;
+ constructor(_settings: Settings, _micromatchOptions: MicromatchOptions);
+ getFilter(positive: Pattern[], negative: Pattern[]): EntryFilterFunction;
+ private _filter;
+ private _isDuplicateEntry;
+ private _createIndexRecord;
+ private _onlyFileFilter;
+ private _onlyDirectoryFilter;
+ private _isSkippedByAbsoluteNegativePatterns;
+ private _isMatchToPatterns;
+}
diff --git a/node_modules/fast-glob/out/providers/filters/entry.js b/node_modules/fast-glob/out/providers/filters/entry.js
new file mode 100644
index 0000000..bf11320
--- /dev/null
+++ b/node_modules/fast-glob/out/providers/filters/entry.js
@@ -0,0 +1,64 @@
+"use strict";
+Object.defineProperty(exports, "__esModule", { value: true });
+const utils = require("../../utils");
+class EntryFilter {
+ constructor(_settings, _micromatchOptions) {
+ this._settings = _settings;
+ this._micromatchOptions = _micromatchOptions;
+ this.index = new Map();
+ }
+ getFilter(positive, negative) {
+ const positiveRe = utils.pattern.convertPatternsToRe(positive, this._micromatchOptions);
+ const negativeRe = utils.pattern.convertPatternsToRe(negative, this._micromatchOptions);
+ return (entry) => this._filter(entry, positiveRe, negativeRe);
+ }
+ _filter(entry, positiveRe, negativeRe) {
+ if (this._settings.unique && this._isDuplicateEntry(entry)) {
+ return false;
+ }
+ if (this._onlyFileFilter(entry) || this._onlyDirectoryFilter(entry)) {
+ return false;
+ }
+ if (this._isSkippedByAbsoluteNegativePatterns(entry.path, negativeRe)) {
+ return false;
+ }
+ const filepath = this._settings.baseNameMatch ? entry.name : entry.path;
+ const isDirectory = entry.dirent.isDirectory();
+ const isMatched = this._isMatchToPatterns(filepath, positiveRe, isDirectory) && !this._isMatchToPatterns(entry.path, negativeRe, isDirectory);
+ if (this._settings.unique && isMatched) {
+ this._createIndexRecord(entry);
+ }
+ return isMatched;
+ }
+ _isDuplicateEntry(entry) {
+ return this.index.has(entry.path);
+ }
+ _createIndexRecord(entry) {
+ this.index.set(entry.path, undefined);
+ }
+ _onlyFileFilter(entry) {
+ return this._settings.onlyFiles && !entry.dirent.isFile();
+ }
+ _onlyDirectoryFilter(entry) {
+ return this._settings.onlyDirectories && !entry.dirent.isDirectory();
+ }
+ _isSkippedByAbsoluteNegativePatterns(entryPath, patternsRe) {
+ if (!this._settings.absolute) {
+ return false;
+ }
+ const fullpath = utils.path.makeAbsolute(this._settings.cwd, entryPath);
+ return utils.pattern.matchAny(fullpath, patternsRe);
+ }
+ _isMatchToPatterns(entryPath, patternsRe, isDirectory) {
+ const filepath = utils.path.removeLeadingDotSegment(entryPath);
+ // Trying to match files and directories by patterns.
+ const isMatched = utils.pattern.matchAny(filepath, patternsRe);
+ // A pattern with a trailling slash can be used for directory matching.
+ // To apply such pattern, we need to add a tralling slash to the path.
+ if (!isMatched && isDirectory) {
+ return utils.pattern.matchAny(filepath + '/', patternsRe);
+ }
+ return isMatched;
+ }
+}
+exports.default = EntryFilter;
diff --git a/node_modules/fast-glob/out/providers/filters/error.d.ts b/node_modules/fast-glob/out/providers/filters/error.d.ts
new file mode 100644
index 0000000..1e9d738
--- /dev/null
+++ b/node_modules/fast-glob/out/providers/filters/error.d.ts
@@ -0,0 +1,8 @@
+import Settings from '../../settings';
+import { ErrorFilterFunction } from '../../types';
+export default class ErrorFilter {
+ private readonly _settings;
+ constructor(_settings: Settings);
+ getFilter(): ErrorFilterFunction;
+ private _isNonFatalError;
+}
diff --git a/node_modules/fast-glob/out/providers/filters/error.js b/node_modules/fast-glob/out/providers/filters/error.js
new file mode 100644
index 0000000..f93bdc0
--- /dev/null
+++ b/node_modules/fast-glob/out/providers/filters/error.js
@@ -0,0 +1,15 @@
+"use strict";
+Object.defineProperty(exports, "__esModule", { value: true });
+const utils = require("../../utils");
+class ErrorFilter {
+ constructor(_settings) {
+ this._settings = _settings;
+ }
+ getFilter() {
+ return (error) => this._isNonFatalError(error);
+ }
+ _isNonFatalError(error) {
+ return utils.errno.isEnoentCodeError(error) || this._settings.suppressErrors;
+ }
+}
+exports.default = ErrorFilter;
diff --git a/node_modules/fast-glob/out/providers/matchers/matcher.d.ts b/node_modules/fast-glob/out/providers/matchers/matcher.d.ts
new file mode 100644
index 0000000..fde0bd5
--- /dev/null
+++ b/node_modules/fast-glob/out/providers/matchers/matcher.d.ts
@@ -0,0 +1,33 @@
+import { Pattern, MicromatchOptions, PatternRe } from '../../types';
+import Settings from '../../settings';
+export declare type PatternSegment = StaticPatternSegment | DynamicPatternSegment;
+declare type StaticPatternSegment = {
+ dynamic: false;
+ pattern: Pattern;
+};
+declare type DynamicPatternSegment = {
+ dynamic: true;
+ pattern: Pattern;
+ patternRe: PatternRe;
+};
+export declare type PatternSection = PatternSegment[];
+export declare type PatternInfo = {
+ /**
+ * Indicates that the pattern has a globstar (more than a single section).
+ */
+ complete: boolean;
+ pattern: Pattern;
+ segments: PatternSegment[];
+ sections: PatternSection[];
+};
+export default abstract class Matcher {
+ private readonly _patterns;
+ private readonly _settings;
+ private readonly _micromatchOptions;
+ protected readonly _storage: PatternInfo[];
+ constructor(_patterns: Pattern[], _settings: Settings, _micromatchOptions: MicromatchOptions);
+ private _fillStorage;
+ private _getPatternSegments;
+ private _splitSegmentsIntoSections;
+}
+export {};
diff --git a/node_modules/fast-glob/out/providers/matchers/matcher.js b/node_modules/fast-glob/out/providers/matchers/matcher.js
new file mode 100644
index 0000000..44b2cc7
--- /dev/null
+++ b/node_modules/fast-glob/out/providers/matchers/matcher.js
@@ -0,0 +1,50 @@
+"use strict";
+Object.defineProperty(exports, "__esModule", { value: true });
+const utils = require("../../utils");
+class Matcher {
+ constructor(_patterns, _settings, _micromatchOptions) {
+ this._patterns = _patterns;
+ this._settings = _settings;
+ this._micromatchOptions = _micromatchOptions;
+ this._storage = [];
+ this._fillStorage();
+ }
+ _fillStorage() {
+ /**
+ * The original pattern may include `{,*,**,a/*}`, which will lead to problems with matching (unresolved level).
+ * So, before expand patterns with brace expansion into separated patterns.
+ */
+ const patterns = utils.pattern.expandPatternsWithBraceExpansion(this._patterns);
+ for (const pattern of patterns) {
+ const segments = this._getPatternSegments(pattern);
+ const sections = this._splitSegmentsIntoSections(segments);
+ this._storage.push({
+ complete: sections.length <= 1,
+ pattern,
+ segments,
+ sections
+ });
+ }
+ }
+ _getPatternSegments(pattern) {
+ const parts = utils.pattern.getPatternParts(pattern, this._micromatchOptions);
+ return parts.map((part) => {
+ const dynamic = utils.pattern.isDynamicPattern(part, this._settings);
+ if (!dynamic) {
+ return {
+ dynamic: false,
+ pattern: part
+ };
+ }
+ return {
+ dynamic: true,
+ pattern: part,
+ patternRe: utils.pattern.makeRe(part, this._micromatchOptions)
+ };
+ });
+ }
+ _splitSegmentsIntoSections(segments) {
+ return utils.array.splitWhen(segments, (segment) => segment.dynamic && utils.pattern.hasGlobStar(segment.pattern));
+ }
+}
+exports.default = Matcher;
diff --git a/node_modules/fast-glob/out/providers/matchers/partial.d.ts b/node_modules/fast-glob/out/providers/matchers/partial.d.ts
new file mode 100644
index 0000000..a5c93ba
--- /dev/null
+++ b/node_modules/fast-glob/out/providers/matchers/partial.d.ts
@@ -0,0 +1,4 @@
+import Matcher from './matcher';
+export default class PartialMatcher extends Matcher {
+ match(filepath: string): boolean;
+}
diff --git a/node_modules/fast-glob/out/providers/matchers/partial.js b/node_modules/fast-glob/out/providers/matchers/partial.js
new file mode 100644
index 0000000..f6a77e0
--- /dev/null
+++ b/node_modules/fast-glob/out/providers/matchers/partial.js
@@ -0,0 +1,38 @@
+"use strict";
+Object.defineProperty(exports, "__esModule", { value: true });
+const matcher_1 = require("./matcher");
+class PartialMatcher extends matcher_1.default {
+ match(filepath) {
+ const parts = filepath.split('/');
+ const levels = parts.length;
+ const patterns = this._storage.filter((info) => !info.complete || info.segments.length > levels);
+ for (const pattern of patterns) {
+ const section = pattern.sections[0];
+ /**
+ * In this case, the pattern has a globstar and we must read all directories unconditionally,
+ * but only if the level has reached the end of the first group.
+ *
+ * fixtures/{a,b}/**
+ * ^ true/false ^ always true
+ */
+ if (!pattern.complete && levels > section.length) {
+ return true;
+ }
+ const match = parts.every((part, index) => {
+ const segment = pattern.segments[index];
+ if (segment.dynamic && segment.patternRe.test(part)) {
+ return true;
+ }
+ if (!segment.dynamic && segment.pattern === part) {
+ return true;
+ }
+ return false;
+ });
+ if (match) {
+ return true;
+ }
+ }
+ return false;
+ }
+}
+exports.default = PartialMatcher;
diff --git a/node_modules/fast-glob/out/providers/provider.d.ts b/node_modules/fast-glob/out/providers/provider.d.ts
new file mode 100644
index 0000000..ccafd17
--- /dev/null
+++ b/node_modules/fast-glob/out/providers/provider.d.ts
@@ -0,0 +1,19 @@
+import { Task } from '../managers/tasks';
+import Settings from '../settings';
+import { MicromatchOptions, ReaderOptions } from '../types';
+import DeepFilter from './filters/deep';
+import EntryFilter from './filters/entry';
+import ErrorFilter from './filters/error';
+import EntryTransformer from './transformers/entry';
+export default abstract class Provider {
+ protected readonly _settings: Settings;
+ readonly errorFilter: ErrorFilter;
+ readonly entryFilter: EntryFilter;
+ readonly deepFilter: DeepFilter;
+ readonly entryTransformer: EntryTransformer;
+ constructor(_settings: Settings);
+ abstract read(_task: Task): T;
+ protected _getRootDirectory(task: Task): string;
+ protected _getReaderOptions(task: Task): ReaderOptions;
+ protected _getMicromatchOptions(): MicromatchOptions;
+}
diff --git a/node_modules/fast-glob/out/providers/provider.js b/node_modules/fast-glob/out/providers/provider.js
new file mode 100644
index 0000000..5afb389
--- /dev/null
+++ b/node_modules/fast-glob/out/providers/provider.js
@@ -0,0 +1,48 @@
+"use strict";
+Object.defineProperty(exports, "__esModule", { value: true });
+const path = require("path");
+const deep_1 = require("./filters/deep");
+const entry_1 = require("./filters/entry");
+const error_1 = require("./filters/error");
+const entry_2 = require("./transformers/entry");
+class Provider {
+ constructor(_settings) {
+ this._settings = _settings;
+ this.errorFilter = new error_1.default(this._settings);
+ this.entryFilter = new entry_1.default(this._settings, this._getMicromatchOptions());
+ this.deepFilter = new deep_1.default(this._settings, this._getMicromatchOptions());
+ this.entryTransformer = new entry_2.default(this._settings);
+ }
+ _getRootDirectory(task) {
+ return path.resolve(this._settings.cwd, task.base);
+ }
+ _getReaderOptions(task) {
+ const basePath = task.base === '.' ? '' : task.base;
+ return {
+ basePath,
+ pathSegmentSeparator: '/',
+ concurrency: this._settings.concurrency,
+ deepFilter: this.deepFilter.getFilter(basePath, task.positive, task.negative),
+ entryFilter: this.entryFilter.getFilter(task.positive, task.negative),
+ errorFilter: this.errorFilter.getFilter(),
+ followSymbolicLinks: this._settings.followSymbolicLinks,
+ fs: this._settings.fs,
+ stats: this._settings.stats,
+ throwErrorOnBrokenSymbolicLink: this._settings.throwErrorOnBrokenSymbolicLink,
+ transform: this.entryTransformer.getTransformer()
+ };
+ }
+ _getMicromatchOptions() {
+ return {
+ dot: this._settings.dot,
+ matchBase: this._settings.baseNameMatch,
+ nobrace: !this._settings.braceExpansion,
+ nocase: !this._settings.caseSensitiveMatch,
+ noext: !this._settings.extglob,
+ noglobstar: !this._settings.globstar,
+ posix: true,
+ strictSlashes: false
+ };
+ }
+}
+exports.default = Provider;
diff --git a/node_modules/fast-glob/out/providers/stream.d.ts b/node_modules/fast-glob/out/providers/stream.d.ts
new file mode 100644
index 0000000..bfa9201
--- /dev/null
+++ b/node_modules/fast-glob/out/providers/stream.d.ts
@@ -0,0 +1,11 @@
+///
+import { Readable } from 'stream';
+import { Task } from '../managers/tasks';
+import ReaderStream from '../readers/stream';
+import { ReaderOptions } from '../types';
+import Provider from './provider';
+export default class ProviderStream extends Provider {
+ protected _reader: ReaderStream;
+ read(task: Task): Readable;
+ api(root: string, task: Task, options: ReaderOptions): Readable;
+}
diff --git a/node_modules/fast-glob/out/providers/stream.js b/node_modules/fast-glob/out/providers/stream.js
new file mode 100644
index 0000000..9e81c21
--- /dev/null
+++ b/node_modules/fast-glob/out/providers/stream.js
@@ -0,0 +1,31 @@
+"use strict";
+Object.defineProperty(exports, "__esModule", { value: true });
+const stream_1 = require("stream");
+const stream_2 = require("../readers/stream");
+const provider_1 = require("./provider");
+class ProviderStream extends provider_1.default {
+ constructor() {
+ super(...arguments);
+ this._reader = new stream_2.default(this._settings);
+ }
+ read(task) {
+ const root = this._getRootDirectory(task);
+ const options = this._getReaderOptions(task);
+ const source = this.api(root, task, options);
+ const destination = new stream_1.Readable({ objectMode: true, read: () => { } });
+ source
+ .once('error', (error) => destination.emit('error', error))
+ .on('data', (entry) => destination.emit('data', options.transform(entry)))
+ .once('end', () => destination.emit('end'));
+ destination
+ .once('close', () => source.destroy());
+ return destination;
+ }
+ api(root, task, options) {
+ if (task.dynamic) {
+ return this._reader.dynamic(root, options);
+ }
+ return this._reader.static(task.patterns, options);
+ }
+}
+exports.default = ProviderStream;
diff --git a/node_modules/fast-glob/out/providers/sync.d.ts b/node_modules/fast-glob/out/providers/sync.d.ts
new file mode 100644
index 0000000..5861db4
--- /dev/null
+++ b/node_modules/fast-glob/out/providers/sync.d.ts
@@ -0,0 +1,9 @@
+import { Task } from '../managers/tasks';
+import ReaderSync from '../readers/sync';
+import { Entry, EntryItem, ReaderOptions } from '../types';
+import Provider from './provider';
+export default class ProviderSync extends Provider {
+ protected _reader: ReaderSync;
+ read(task: Task): EntryItem[];
+ api(root: string, task: Task, options: ReaderOptions): Entry[];
+}
diff --git a/node_modules/fast-glob/out/providers/sync.js b/node_modules/fast-glob/out/providers/sync.js
new file mode 100644
index 0000000..9ed8f7c
--- /dev/null
+++ b/node_modules/fast-glob/out/providers/sync.js
@@ -0,0 +1,23 @@
+"use strict";
+Object.defineProperty(exports, "__esModule", { value: true });
+const sync_1 = require("../readers/sync");
+const provider_1 = require("./provider");
+class ProviderSync extends provider_1.default {
+ constructor() {
+ super(...arguments);
+ this._reader = new sync_1.default(this._settings);
+ }
+ read(task) {
+ const root = this._getRootDirectory(task);
+ const options = this._getReaderOptions(task);
+ const entries = this.api(root, task, options);
+ return entries.map(options.transform);
+ }
+ api(root, task, options) {
+ if (task.dynamic) {
+ return this._reader.dynamic(root, options);
+ }
+ return this._reader.static(task.patterns, options);
+ }
+}
+exports.default = ProviderSync;
diff --git a/node_modules/fast-glob/out/providers/transformers/entry.d.ts b/node_modules/fast-glob/out/providers/transformers/entry.d.ts
new file mode 100644
index 0000000..1874a38
--- /dev/null
+++ b/node_modules/fast-glob/out/providers/transformers/entry.d.ts
@@ -0,0 +1,8 @@
+import Settings from '../../settings';
+import { EntryTransformerFunction } from '../../types';
+export default class EntryTransformer {
+ private readonly _settings;
+ constructor(_settings: Settings);
+ getTransformer(): EntryTransformerFunction;
+ private _transform;
+}
diff --git a/node_modules/fast-glob/out/providers/transformers/entry.js b/node_modules/fast-glob/out/providers/transformers/entry.js
new file mode 100644
index 0000000..3bef803
--- /dev/null
+++ b/node_modules/fast-glob/out/providers/transformers/entry.js
@@ -0,0 +1,26 @@
+"use strict";
+Object.defineProperty(exports, "__esModule", { value: true });
+const utils = require("../../utils");
+class EntryTransformer {
+ constructor(_settings) {
+ this._settings = _settings;
+ }
+ getTransformer() {
+ return (entry) => this._transform(entry);
+ }
+ _transform(entry) {
+ let filepath = entry.path;
+ if (this._settings.absolute) {
+ filepath = utils.path.makeAbsolute(this._settings.cwd, filepath);
+ filepath = utils.path.unixify(filepath);
+ }
+ if (this._settings.markDirectories && entry.dirent.isDirectory()) {
+ filepath += '/';
+ }
+ if (!this._settings.objectMode) {
+ return filepath;
+ }
+ return Object.assign(Object.assign({}, entry), { path: filepath });
+ }
+}
+exports.default = EntryTransformer;
diff --git a/node_modules/fast-glob/out/readers/async.d.ts b/node_modules/fast-glob/out/readers/async.d.ts
new file mode 100644
index 0000000..4bfa296
--- /dev/null
+++ b/node_modules/fast-glob/out/readers/async.d.ts
@@ -0,0 +1,10 @@
+import * as fsWalk from '@nodelib/fs.walk';
+import { Entry, ReaderOptions, Pattern } from '../types';
+import Reader from './reader';
+import ReaderStream from './stream';
+export default class ReaderAsync extends Reader> {
+ protected _walkAsync: typeof fsWalk.walk;
+ protected _readerStream: ReaderStream;
+ dynamic(root: string, options: ReaderOptions): Promise;
+ static(patterns: Pattern[], options: ReaderOptions): Promise;
+}
diff --git a/node_modules/fast-glob/out/readers/async.js b/node_modules/fast-glob/out/readers/async.js
new file mode 100644
index 0000000..c43e34a
--- /dev/null
+++ b/node_modules/fast-glob/out/readers/async.js
@@ -0,0 +1,35 @@
+"use strict";
+Object.defineProperty(exports, "__esModule", { value: true });
+const fsWalk = require("@nodelib/fs.walk");
+const reader_1 = require("./reader");
+const stream_1 = require("./stream");
+class ReaderAsync extends reader_1.default {
+ constructor() {
+ super(...arguments);
+ this._walkAsync = fsWalk.walk;
+ this._readerStream = new stream_1.default(this._settings);
+ }
+ dynamic(root, options) {
+ return new Promise((resolve, reject) => {
+ this._walkAsync(root, options, (error, entries) => {
+ if (error === null) {
+ resolve(entries);
+ }
+ else {
+ reject(error);
+ }
+ });
+ });
+ }
+ async static(patterns, options) {
+ const entries = [];
+ const stream = this._readerStream.static(patterns, options);
+ // After #235, replace it with an asynchronous iterator.
+ return new Promise((resolve, reject) => {
+ stream.once('error', reject);
+ stream.on('data', (entry) => entries.push(entry));
+ stream.once('end', () => resolve(entries));
+ });
+ }
+}
+exports.default = ReaderAsync;
diff --git a/node_modules/fast-glob/out/readers/reader.d.ts b/node_modules/fast-glob/out/readers/reader.d.ts
new file mode 100644
index 0000000..293b588
--- /dev/null
+++ b/node_modules/fast-glob/out/readers/reader.d.ts
@@ -0,0 +1,15 @@
+///
+import * as fs from 'fs';
+import * as fsStat from '@nodelib/fs.stat';
+import Settings from '../settings';
+import { Entry, ErrnoException, Pattern, ReaderOptions } from '../types';
+export default abstract class Reader {
+ protected readonly _settings: Settings;
+ protected readonly _fsStatSettings: fsStat.Settings;
+ constructor(_settings: Settings);
+ abstract dynamic(root: string, options: ReaderOptions): T;
+ abstract static(patterns: Pattern[], options: ReaderOptions): T;
+ protected _getFullEntryPath(filepath: string): string;
+ protected _makeEntry(stats: fs.Stats, pattern: Pattern): Entry;
+ protected _isFatalError(error: ErrnoException): boolean;
+}
diff --git a/node_modules/fast-glob/out/readers/reader.js b/node_modules/fast-glob/out/readers/reader.js
new file mode 100644
index 0000000..9e9469c
--- /dev/null
+++ b/node_modules/fast-glob/out/readers/reader.js
@@ -0,0 +1,33 @@
+"use strict";
+Object.defineProperty(exports, "__esModule", { value: true });
+const path = require("path");
+const fsStat = require("@nodelib/fs.stat");
+const utils = require("../utils");
+class Reader {
+ constructor(_settings) {
+ this._settings = _settings;
+ this._fsStatSettings = new fsStat.Settings({
+ followSymbolicLink: this._settings.followSymbolicLinks,
+ fs: this._settings.fs,
+ throwErrorOnBrokenSymbolicLink: this._settings.followSymbolicLinks
+ });
+ }
+ _getFullEntryPath(filepath) {
+ return path.resolve(this._settings.cwd, filepath);
+ }
+ _makeEntry(stats, pattern) {
+ const entry = {
+ name: pattern,
+ path: pattern,
+ dirent: utils.fs.createDirentFromStats(pattern, stats)
+ };
+ if (this._settings.stats) {
+ entry.stats = stats;
+ }
+ return entry;
+ }
+ _isFatalError(error) {
+ return !utils.errno.isEnoentCodeError(error) && !this._settings.suppressErrors;
+ }
+}
+exports.default = Reader;
diff --git a/node_modules/fast-glob/out/readers/stream.d.ts b/node_modules/fast-glob/out/readers/stream.d.ts
new file mode 100644
index 0000000..b0c7018
--- /dev/null
+++ b/node_modules/fast-glob/out/readers/stream.d.ts
@@ -0,0 +1,14 @@
+///
+import { Readable } from 'stream';
+import * as fsStat from '@nodelib/fs.stat';
+import * as fsWalk from '@nodelib/fs.walk';
+import { Pattern, ReaderOptions } from '../types';
+import Reader from './reader';
+export default class ReaderStream extends Reader {
+ protected _walkStream: typeof fsWalk.walkStream;
+ protected _stat: typeof fsStat.stat;
+ dynamic(root: string, options: ReaderOptions): Readable;
+ static(patterns: Pattern[], options: ReaderOptions): Readable;
+ private _getEntry;
+ private _getStat;
+}
diff --git a/node_modules/fast-glob/out/readers/stream.js b/node_modules/fast-glob/out/readers/stream.js
new file mode 100644
index 0000000..33b96f5
--- /dev/null
+++ b/node_modules/fast-glob/out/readers/stream.js
@@ -0,0 +1,55 @@
+"use strict";
+Object.defineProperty(exports, "__esModule", { value: true });
+const stream_1 = require("stream");
+const fsStat = require("@nodelib/fs.stat");
+const fsWalk = require("@nodelib/fs.walk");
+const reader_1 = require("./reader");
+class ReaderStream extends reader_1.default {
+ constructor() {
+ super(...arguments);
+ this._walkStream = fsWalk.walkStream;
+ this._stat = fsStat.stat;
+ }
+ dynamic(root, options) {
+ return this._walkStream(root, options);
+ }
+ static(patterns, options) {
+ const filepaths = patterns.map(this._getFullEntryPath, this);
+ const stream = new stream_1.PassThrough({ objectMode: true });
+ stream._write = (index, _enc, done) => {
+ return this._getEntry(filepaths[index], patterns[index], options)
+ .then((entry) => {
+ if (entry !== null && options.entryFilter(entry)) {
+ stream.push(entry);
+ }
+ if (index === filepaths.length - 1) {
+ stream.end();
+ }
+ done();
+ })
+ .catch(done);
+ };
+ for (let i = 0; i < filepaths.length; i++) {
+ stream.write(i);
+ }
+ return stream;
+ }
+ _getEntry(filepath, pattern, options) {
+ return this._getStat(filepath)
+ .then((stats) => this._makeEntry(stats, pattern))
+ .catch((error) => {
+ if (options.errorFilter(error)) {
+ return null;
+ }
+ throw error;
+ });
+ }
+ _getStat(filepath) {
+ return new Promise((resolve, reject) => {
+ this._stat(filepath, this._fsStatSettings, (error, stats) => {
+ return error === null ? resolve(stats) : reject(error);
+ });
+ });
+ }
+}
+exports.default = ReaderStream;
diff --git a/node_modules/fast-glob/out/readers/sync.d.ts b/node_modules/fast-glob/out/readers/sync.d.ts
new file mode 100644
index 0000000..1943ac6
--- /dev/null
+++ b/node_modules/fast-glob/out/readers/sync.d.ts
@@ -0,0 +1,12 @@
+import * as fsStat from '@nodelib/fs.stat';
+import * as fsWalk from '@nodelib/fs.walk';
+import { Entry, Pattern, ReaderOptions } from '../types';
+import Reader from './reader';
+export default class ReaderSync extends Reader {
+ protected _walkSync: typeof fsWalk.walkSync;
+ protected _statSync: typeof fsStat.statSync;
+ dynamic(root: string, options: ReaderOptions): Entry[];
+ static(patterns: Pattern[], options: ReaderOptions): Entry[];
+ private _getEntry;
+ private _getStat;
+}
diff --git a/node_modules/fast-glob/out/readers/sync.js b/node_modules/fast-glob/out/readers/sync.js
new file mode 100644
index 0000000..c4e4a01
--- /dev/null
+++ b/node_modules/fast-glob/out/readers/sync.js
@@ -0,0 +1,43 @@
+"use strict";
+Object.defineProperty(exports, "__esModule", { value: true });
+const fsStat = require("@nodelib/fs.stat");
+const fsWalk = require("@nodelib/fs.walk");
+const reader_1 = require("./reader");
+class ReaderSync extends reader_1.default {
+ constructor() {
+ super(...arguments);
+ this._walkSync = fsWalk.walkSync;
+ this._statSync = fsStat.statSync;
+ }
+ dynamic(root, options) {
+ return this._walkSync(root, options);
+ }
+ static(patterns, options) {
+ const entries = [];
+ for (const pattern of patterns) {
+ const filepath = this._getFullEntryPath(pattern);
+ const entry = this._getEntry(filepath, pattern, options);
+ if (entry === null || !options.entryFilter(entry)) {
+ continue;
+ }
+ entries.push(entry);
+ }
+ return entries;
+ }
+ _getEntry(filepath, pattern, options) {
+ try {
+ const stats = this._getStat(filepath);
+ return this._makeEntry(stats, pattern);
+ }
+ catch (error) {
+ if (options.errorFilter(error)) {
+ return null;
+ }
+ throw error;
+ }
+ }
+ _getStat(filepath) {
+ return this._statSync(filepath, this._fsStatSettings);
+ }
+}
+exports.default = ReaderSync;
diff --git a/node_modules/fast-glob/out/settings.d.ts b/node_modules/fast-glob/out/settings.d.ts
new file mode 100644
index 0000000..4e97c9b
--- /dev/null
+++ b/node_modules/fast-glob/out/settings.d.ts
@@ -0,0 +1,164 @@
+import { FileSystemAdapter, Pattern } from './types';
+export declare const DEFAULT_FILE_SYSTEM_ADAPTER: FileSystemAdapter;
+export declare type Options = {
+ /**
+ * Return the absolute path for entries.
+ *
+ * @default false
+ */
+ absolute?: boolean;
+ /**
+ * If set to `true`, then patterns without slashes will be matched against
+ * the basename of the path if it contains slashes.
+ *
+ * @default false
+ */
+ baseNameMatch?: boolean;
+ /**
+ * Enables Bash-like brace expansion.
+ *
+ * @default true
+ */
+ braceExpansion?: boolean;
+ /**
+ * Enables a case-sensitive mode for matching files.
+ *
+ * @default true
+ */
+ caseSensitiveMatch?: boolean;
+ /**
+ * Specifies the maximum number of concurrent requests from a reader to read
+ * directories.
+ *
+ * @default os.cpus().length
+ */
+ concurrency?: number;
+ /**
+ * The current working directory in which to search.
+ *
+ * @default process.cwd()
+ */
+ cwd?: string;
+ /**
+ * Specifies the maximum depth of a read directory relative to the start
+ * directory.
+ *
+ * @default Infinity
+ */
+ deep?: number;
+ /**
+ * Allow patterns to match entries that begin with a period (`.`).
+ *
+ * @default false
+ */
+ dot?: boolean;
+ /**
+ * Enables Bash-like `extglob` functionality.
+ *
+ * @default true
+ */
+ extglob?: boolean;
+ /**
+ * Indicates whether to traverse descendants of symbolic link directories.
+ *
+ * @default true
+ */
+ followSymbolicLinks?: boolean;
+ /**
+ * Custom implementation of methods for working with the file system.
+ *
+ * @default fs.*
+ */
+ fs?: Partial;
+ /**
+ * Enables recursively repeats a pattern containing `**`.
+ * If `false`, `**` behaves exactly like `*`.
+ *
+ * @default true
+ */
+ globstar?: boolean;
+ /**
+ * An array of glob patterns to exclude matches.
+ * This is an alternative way to use negative patterns.
+ *
+ * @default []
+ */
+ ignore?: Pattern[];
+ /**
+ * Mark the directory path with the final slash.
+ *
+ * @default false
+ */
+ markDirectories?: boolean;
+ /**
+ * Returns objects (instead of strings) describing entries.
+ *
+ * @default false
+ */
+ objectMode?: boolean;
+ /**
+ * Return only directories.
+ *
+ * @default false
+ */
+ onlyDirectories?: boolean;
+ /**
+ * Return only files.
+ *
+ * @default true
+ */
+ onlyFiles?: boolean;
+ /**
+ * Enables an object mode (`objectMode`) with an additional `stats` field.
+ *
+ * @default false
+ */
+ stats?: boolean;
+ /**
+ * By default this package suppress only `ENOENT` errors.
+ * Set to `true` to suppress any error.
+ *
+ * @default false
+ */
+ suppressErrors?: boolean;
+ /**
+ * Throw an error when symbolic link is broken if `true` or safely
+ * return `lstat` call if `false`.
+ *
+ * @default false
+ */
+ throwErrorOnBrokenSymbolicLink?: boolean;
+ /**
+ * Ensures that the returned entries are unique.
+ *
+ * @default true
+ */
+ unique?: boolean;
+};
+export default class Settings {
+ private readonly _options;
+ readonly absolute: boolean;
+ readonly baseNameMatch: boolean;
+ readonly braceExpansion: boolean;
+ readonly caseSensitiveMatch: boolean;
+ readonly concurrency: number;
+ readonly cwd: string;
+ readonly deep: number;
+ readonly dot: boolean;
+ readonly extglob: boolean;
+ readonly followSymbolicLinks: boolean;
+ readonly fs: FileSystemAdapter;
+ readonly globstar: boolean;
+ readonly ignore: Pattern[];
+ readonly markDirectories: boolean;
+ readonly objectMode: boolean;
+ readonly onlyDirectories: boolean;
+ readonly onlyFiles: boolean;
+ readonly stats: boolean;
+ readonly suppressErrors: boolean;
+ readonly throwErrorOnBrokenSymbolicLink: boolean;
+ readonly unique: boolean;
+ constructor(_options?: Options);
+ private _getValue;
+ private _getFileSystemMethods;
+}
diff --git a/node_modules/fast-glob/out/settings.js b/node_modules/fast-glob/out/settings.js
new file mode 100644
index 0000000..f95ac8f
--- /dev/null
+++ b/node_modules/fast-glob/out/settings.js
@@ -0,0 +1,57 @@
+"use strict";
+Object.defineProperty(exports, "__esModule", { value: true });
+exports.DEFAULT_FILE_SYSTEM_ADAPTER = void 0;
+const fs = require("fs");
+const os = require("os");
+/**
+ * The `os.cpus` method can return zero. We expect the number of cores to be greater than zero.
+ * https://github.com/nodejs/node/blob/7faeddf23a98c53896f8b574a6e66589e8fb1eb8/lib/os.js#L106-L107
+ */
+const CPU_COUNT = Math.max(os.cpus().length, 1);
+exports.DEFAULT_FILE_SYSTEM_ADAPTER = {
+ lstat: fs.lstat,
+ lstatSync: fs.lstatSync,
+ stat: fs.stat,
+ statSync: fs.statSync,
+ readdir: fs.readdir,
+ readdirSync: fs.readdirSync
+};
+class Settings {
+ constructor(_options = {}) {
+ this._options = _options;
+ this.absolute = this._getValue(this._options.absolute, false);
+ this.baseNameMatch = this._getValue(this._options.baseNameMatch, false);
+ this.braceExpansion = this._getValue(this._options.braceExpansion, true);
+ this.caseSensitiveMatch = this._getValue(this._options.caseSensitiveMatch, true);
+ this.concurrency = this._getValue(this._options.concurrency, CPU_COUNT);
+ this.cwd = this._getValue(this._options.cwd, process.cwd());
+ this.deep = this._getValue(this._options.deep, Infinity);
+ this.dot = this._getValue(this._options.dot, false);
+ this.extglob = this._getValue(this._options.extglob, true);
+ this.followSymbolicLinks = this._getValue(this._options.followSymbolicLinks, true);
+ this.fs = this._getFileSystemMethods(this._options.fs);
+ this.globstar = this._getValue(this._options.globstar, true);
+ this.ignore = this._getValue(this._options.ignore, []);
+ this.markDirectories = this._getValue(this._options.markDirectories, false);
+ this.objectMode = this._getValue(this._options.objectMode, false);
+ this.onlyDirectories = this._getValue(this._options.onlyDirectories, false);
+ this.onlyFiles = this._getValue(this._options.onlyFiles, true);
+ this.stats = this._getValue(this._options.stats, false);
+ this.suppressErrors = this._getValue(this._options.suppressErrors, false);
+ this.throwErrorOnBrokenSymbolicLink = this._getValue(this._options.throwErrorOnBrokenSymbolicLink, false);
+ this.unique = this._getValue(this._options.unique, true);
+ if (this.onlyDirectories) {
+ this.onlyFiles = false;
+ }
+ if (this.stats) {
+ this.objectMode = true;
+ }
+ }
+ _getValue(option, value) {
+ return option === undefined ? value : option;
+ }
+ _getFileSystemMethods(methods = {}) {
+ return Object.assign(Object.assign({}, exports.DEFAULT_FILE_SYSTEM_ADAPTER), methods);
+ }
+}
+exports.default = Settings;
diff --git a/node_modules/fast-glob/out/types/index.d.ts b/node_modules/fast-glob/out/types/index.d.ts
new file mode 100644
index 0000000..e828689
--- /dev/null
+++ b/node_modules/fast-glob/out/types/index.d.ts
@@ -0,0 +1,31 @@
+///
+import * as fsWalk from '@nodelib/fs.walk';
+export declare type ErrnoException = NodeJS.ErrnoException;
+export declare type Entry = fsWalk.Entry;
+export declare type EntryItem = string | Entry;
+export declare type Pattern = string;
+export declare type PatternRe = RegExp;
+export declare type PatternsGroup = Record;
+export declare type ReaderOptions = fsWalk.Options & {
+ transform(entry: Entry): EntryItem;
+ deepFilter: DeepFilterFunction;
+ entryFilter: EntryFilterFunction;
+ errorFilter: ErrorFilterFunction;
+ fs: FileSystemAdapter;
+ stats: boolean;
+};
+export declare type ErrorFilterFunction = fsWalk.ErrorFilterFunction;
+export declare type EntryFilterFunction = fsWalk.EntryFilterFunction;
+export declare type DeepFilterFunction = fsWalk.DeepFilterFunction;
+export declare type EntryTransformerFunction = (entry: Entry) => EntryItem;
+export declare type MicromatchOptions = {
+ dot?: boolean;
+ matchBase?: boolean;
+ nobrace?: boolean;
+ nocase?: boolean;
+ noext?: boolean;
+ noglobstar?: boolean;
+ posix?: boolean;
+ strictSlashes?: boolean;
+};
+export declare type FileSystemAdapter = fsWalk.FileSystemAdapter;
diff --git a/node_modules/fast-glob/out/types/index.js b/node_modules/fast-glob/out/types/index.js
new file mode 100644
index 0000000..ce03781
--- /dev/null
+++ b/node_modules/fast-glob/out/types/index.js
@@ -0,0 +1,2 @@
+"use strict";
+Object.defineProperty(exports, "__esModule", { value: true });
diff --git a/node_modules/fast-glob/out/utils/array.d.ts b/node_modules/fast-glob/out/utils/array.d.ts
new file mode 100644
index 0000000..7e585bc
--- /dev/null
+++ b/node_modules/fast-glob/out/utils/array.d.ts
@@ -0,0 +1,2 @@
+export declare function flatten(items: T[][]): T[];
+export declare function splitWhen(items: T[], predicate: (item: T) => boolean): T[][];
diff --git a/node_modules/fast-glob/out/utils/array.js b/node_modules/fast-glob/out/utils/array.js
new file mode 100644
index 0000000..f43f114
--- /dev/null
+++ b/node_modules/fast-glob/out/utils/array.js
@@ -0,0 +1,22 @@
+"use strict";
+Object.defineProperty(exports, "__esModule", { value: true });
+exports.splitWhen = exports.flatten = void 0;
+function flatten(items) {
+ return items.reduce((collection, item) => [].concat(collection, item), []);
+}
+exports.flatten = flatten;
+function splitWhen(items, predicate) {
+ const result = [[]];
+ let groupIndex = 0;
+ for (const item of items) {
+ if (predicate(item)) {
+ groupIndex++;
+ result[groupIndex] = [];
+ }
+ else {
+ result[groupIndex].push(item);
+ }
+ }
+ return result;
+}
+exports.splitWhen = splitWhen;
diff --git a/node_modules/fast-glob/out/utils/errno.d.ts b/node_modules/fast-glob/out/utils/errno.d.ts
new file mode 100644
index 0000000..0e52c0d
--- /dev/null
+++ b/node_modules/fast-glob/out/utils/errno.d.ts
@@ -0,0 +1,2 @@
+import { ErrnoException } from '../types';
+export declare function isEnoentCodeError(error: ErrnoException): boolean;
diff --git a/node_modules/fast-glob/out/utils/errno.js b/node_modules/fast-glob/out/utils/errno.js
new file mode 100644
index 0000000..178ace6
--- /dev/null
+++ b/node_modules/fast-glob/out/utils/errno.js
@@ -0,0 +1,7 @@
+"use strict";
+Object.defineProperty(exports, "__esModule", { value: true });
+exports.isEnoentCodeError = void 0;
+function isEnoentCodeError(error) {
+ return error.code === 'ENOENT';
+}
+exports.isEnoentCodeError = isEnoentCodeError;
diff --git a/node_modules/fast-glob/out/utils/fs.d.ts b/node_modules/fast-glob/out/utils/fs.d.ts
new file mode 100644
index 0000000..926c5ae
--- /dev/null
+++ b/node_modules/fast-glob/out/utils/fs.d.ts
@@ -0,0 +1,4 @@
+///
+import * as fs from 'fs';
+import { Dirent } from '@nodelib/fs.walk';
+export declare function createDirentFromStats(name: string, stats: fs.Stats): Dirent;
diff --git a/node_modules/fast-glob/out/utils/fs.js b/node_modules/fast-glob/out/utils/fs.js
new file mode 100644
index 0000000..f15b8cf
--- /dev/null
+++ b/node_modules/fast-glob/out/utils/fs.js
@@ -0,0 +1,19 @@
+"use strict";
+Object.defineProperty(exports, "__esModule", { value: true });
+exports.createDirentFromStats = void 0;
+class DirentFromStats {
+ constructor(name, stats) {
+ this.name = name;
+ this.isBlockDevice = stats.isBlockDevice.bind(stats);
+ this.isCharacterDevice = stats.isCharacterDevice.bind(stats);
+ this.isDirectory = stats.isDirectory.bind(stats);
+ this.isFIFO = stats.isFIFO.bind(stats);
+ this.isFile = stats.isFile.bind(stats);
+ this.isSocket = stats.isSocket.bind(stats);
+ this.isSymbolicLink = stats.isSymbolicLink.bind(stats);
+ }
+}
+function createDirentFromStats(name, stats) {
+ return new DirentFromStats(name, stats);
+}
+exports.createDirentFromStats = createDirentFromStats;
diff --git a/node_modules/fast-glob/out/utils/index.d.ts b/node_modules/fast-glob/out/utils/index.d.ts
new file mode 100644
index 0000000..d3e4f8f
--- /dev/null
+++ b/node_modules/fast-glob/out/utils/index.d.ts
@@ -0,0 +1,8 @@
+import * as array from './array';
+import * as errno from './errno';
+import * as fs from './fs';
+import * as path from './path';
+import * as pattern from './pattern';
+import * as stream from './stream';
+import * as string from './string';
+export { array, errno, fs, path, pattern, stream, string };
diff --git a/node_modules/fast-glob/out/utils/index.js b/node_modules/fast-glob/out/utils/index.js
new file mode 100644
index 0000000..8fc6703
--- /dev/null
+++ b/node_modules/fast-glob/out/utils/index.js
@@ -0,0 +1,17 @@
+"use strict";
+Object.defineProperty(exports, "__esModule", { value: true });
+exports.string = exports.stream = exports.pattern = exports.path = exports.fs = exports.errno = exports.array = void 0;
+const array = require("./array");
+exports.array = array;
+const errno = require("./errno");
+exports.errno = errno;
+const fs = require("./fs");
+exports.fs = fs;
+const path = require("./path");
+exports.path = path;
+const pattern = require("./pattern");
+exports.pattern = pattern;
+const stream = require("./stream");
+exports.stream = stream;
+const string = require("./string");
+exports.string = string;
diff --git a/node_modules/fast-glob/out/utils/path.d.ts b/node_modules/fast-glob/out/utils/path.d.ts
new file mode 100644
index 0000000..f90dc54
--- /dev/null
+++ b/node_modules/fast-glob/out/utils/path.d.ts
@@ -0,0 +1,8 @@
+import { Pattern } from '../types';
+/**
+ * Designed to work only with simple paths: `dir\\file`.
+ */
+export declare function unixify(filepath: string): string;
+export declare function makeAbsolute(cwd: string, filepath: string): string;
+export declare function escape(pattern: Pattern): Pattern;
+export declare function removeLeadingDotSegment(entry: string): string;
diff --git a/node_modules/fast-glob/out/utils/path.js b/node_modules/fast-glob/out/utils/path.js
new file mode 100644
index 0000000..966fcc9
--- /dev/null
+++ b/node_modules/fast-glob/out/utils/path.js
@@ -0,0 +1,33 @@
+"use strict";
+Object.defineProperty(exports, "__esModule", { value: true });
+exports.removeLeadingDotSegment = exports.escape = exports.makeAbsolute = exports.unixify = void 0;
+const path = require("path");
+const LEADING_DOT_SEGMENT_CHARACTERS_COUNT = 2; // ./ or .\\
+const UNESCAPED_GLOB_SYMBOLS_RE = /(\\?)([()*?[\]{|}]|^!|[!+@](?=\())/g;
+/**
+ * Designed to work only with simple paths: `dir\\file`.
+ */
+function unixify(filepath) {
+ return filepath.replace(/\\/g, '/');
+}
+exports.unixify = unixify;
+function makeAbsolute(cwd, filepath) {
+ return path.resolve(cwd, filepath);
+}
+exports.makeAbsolute = makeAbsolute;
+function escape(pattern) {
+ return pattern.replace(UNESCAPED_GLOB_SYMBOLS_RE, '\\$2');
+}
+exports.escape = escape;
+function removeLeadingDotSegment(entry) {
+ // We do not use `startsWith` because this is 10x slower than current implementation for some cases.
+ // eslint-disable-next-line @typescript-eslint/prefer-string-starts-ends-with
+ if (entry.charAt(0) === '.') {
+ const secondCharactery = entry.charAt(1);
+ if (secondCharactery === '/' || secondCharactery === '\\') {
+ return entry.slice(LEADING_DOT_SEGMENT_CHARACTERS_COUNT);
+ }
+ }
+ return entry;
+}
+exports.removeLeadingDotSegment = removeLeadingDotSegment;
diff --git a/node_modules/fast-glob/out/utils/pattern.d.ts b/node_modules/fast-glob/out/utils/pattern.d.ts
new file mode 100644
index 0000000..23b1eed
--- /dev/null
+++ b/node_modules/fast-glob/out/utils/pattern.d.ts
@@ -0,0 +1,42 @@
+import { MicromatchOptions, Pattern, PatternRe } from '../types';
+declare type PatternTypeOptions = {
+ braceExpansion?: boolean;
+ caseSensitiveMatch?: boolean;
+ extglob?: boolean;
+};
+export declare function isStaticPattern(pattern: Pattern, options?: PatternTypeOptions): boolean;
+export declare function isDynamicPattern(pattern: Pattern, options?: PatternTypeOptions): boolean;
+export declare function convertToPositivePattern(pattern: Pattern): Pattern;
+export declare function convertToNegativePattern(pattern: Pattern): Pattern;
+export declare function isNegativePattern(pattern: Pattern): boolean;
+export declare function isPositivePattern(pattern: Pattern): boolean;
+export declare function getNegativePatterns(patterns: Pattern[]): Pattern[];
+export declare function getPositivePatterns(patterns: Pattern[]): Pattern[];
+/**
+ * Returns patterns that can be applied inside the current directory.
+ *
+ * @example
+ * // ['./*', '*', 'a/*']
+ * getPatternsInsideCurrentDirectory(['./*', '*', 'a/*', '../*', './../*'])
+ */
+export declare function getPatternsInsideCurrentDirectory(patterns: Pattern[]): Pattern[];
+/**
+ * Returns patterns to be expanded relative to (outside) the current directory.
+ *
+ * @example
+ * // ['../*', './../*']
+ * getPatternsInsideCurrentDirectory(['./*', '*', 'a/*', '../*', './../*'])
+ */
+export declare function getPatternsOutsideCurrentDirectory(patterns: Pattern[]): Pattern[];
+export declare function isPatternRelatedToParentDirectory(pattern: Pattern): boolean;
+export declare function getBaseDirectory(pattern: Pattern): string;
+export declare function hasGlobStar(pattern: Pattern): boolean;
+export declare function endsWithSlashGlobStar(pattern: Pattern): boolean;
+export declare function isAffectDepthOfReadingPattern(pattern: Pattern): boolean;
+export declare function expandPatternsWithBraceExpansion(patterns: Pattern[]): Pattern[];
+export declare function expandBraceExpansion(pattern: Pattern): Pattern[];
+export declare function getPatternParts(pattern: Pattern, options: MicromatchOptions): Pattern[];
+export declare function makeRe(pattern: Pattern, options: MicromatchOptions): PatternRe;
+export declare function convertPatternsToRe(patterns: Pattern[], options: MicromatchOptions): PatternRe[];
+export declare function matchAny(entry: string, patternsRe: PatternRe[]): boolean;
+export {};
diff --git a/node_modules/fast-glob/out/utils/pattern.js b/node_modules/fast-glob/out/utils/pattern.js
new file mode 100644
index 0000000..0eafc75
--- /dev/null
+++ b/node_modules/fast-glob/out/utils/pattern.js
@@ -0,0 +1,169 @@
+"use strict";
+Object.defineProperty(exports, "__esModule", { value: true });
+exports.matchAny = exports.convertPatternsToRe = exports.makeRe = exports.getPatternParts = exports.expandBraceExpansion = exports.expandPatternsWithBraceExpansion = exports.isAffectDepthOfReadingPattern = exports.endsWithSlashGlobStar = exports.hasGlobStar = exports.getBaseDirectory = exports.isPatternRelatedToParentDirectory = exports.getPatternsOutsideCurrentDirectory = exports.getPatternsInsideCurrentDirectory = exports.getPositivePatterns = exports.getNegativePatterns = exports.isPositivePattern = exports.isNegativePattern = exports.convertToNegativePattern = exports.convertToPositivePattern = exports.isDynamicPattern = exports.isStaticPattern = void 0;
+const path = require("path");
+const globParent = require("glob-parent");
+const micromatch = require("micromatch");
+const GLOBSTAR = '**';
+const ESCAPE_SYMBOL = '\\';
+const COMMON_GLOB_SYMBOLS_RE = /[*?]|^!/;
+const REGEX_CHARACTER_CLASS_SYMBOLS_RE = /\[[^[]*]/;
+const REGEX_GROUP_SYMBOLS_RE = /(?:^|[^!*+?@])\([^(]*\|[^|]*\)/;
+const GLOB_EXTENSION_SYMBOLS_RE = /[!*+?@]\([^(]*\)/;
+const BRACE_EXPANSION_SEPARATORS_RE = /,|\.\./;
+function isStaticPattern(pattern, options = {}) {
+ return !isDynamicPattern(pattern, options);
+}
+exports.isStaticPattern = isStaticPattern;
+function isDynamicPattern(pattern, options = {}) {
+ /**
+ * A special case with an empty string is necessary for matching patterns that start with a forward slash.
+ * An empty string cannot be a dynamic pattern.
+ * For example, the pattern `/lib/*` will be spread into parts: '', 'lib', '*'.
+ */
+ if (pattern === '') {
+ return false;
+ }
+ /**
+ * When the `caseSensitiveMatch` option is disabled, all patterns must be marked as dynamic, because we cannot check
+ * filepath directly (without read directory).
+ */
+ if (options.caseSensitiveMatch === false || pattern.includes(ESCAPE_SYMBOL)) {
+ return true;
+ }
+ if (COMMON_GLOB_SYMBOLS_RE.test(pattern) || REGEX_CHARACTER_CLASS_SYMBOLS_RE.test(pattern) || REGEX_GROUP_SYMBOLS_RE.test(pattern)) {
+ return true;
+ }
+ if (options.extglob !== false && GLOB_EXTENSION_SYMBOLS_RE.test(pattern)) {
+ return true;
+ }
+ if (options.braceExpansion !== false && hasBraceExpansion(pattern)) {
+ return true;
+ }
+ return false;
+}
+exports.isDynamicPattern = isDynamicPattern;
+function hasBraceExpansion(pattern) {
+ const openingBraceIndex = pattern.indexOf('{');
+ if (openingBraceIndex === -1) {
+ return false;
+ }
+ const closingBraceIndex = pattern.indexOf('}', openingBraceIndex + 1);
+ if (closingBraceIndex === -1) {
+ return false;
+ }
+ const braceContent = pattern.slice(openingBraceIndex, closingBraceIndex);
+ return BRACE_EXPANSION_SEPARATORS_RE.test(braceContent);
+}
+function convertToPositivePattern(pattern) {
+ return isNegativePattern(pattern) ? pattern.slice(1) : pattern;
+}
+exports.convertToPositivePattern = convertToPositivePattern;
+function convertToNegativePattern(pattern) {
+ return '!' + pattern;
+}
+exports.convertToNegativePattern = convertToNegativePattern;
+function isNegativePattern(pattern) {
+ return pattern.startsWith('!') && pattern[1] !== '(';
+}
+exports.isNegativePattern = isNegativePattern;
+function isPositivePattern(pattern) {
+ return !isNegativePattern(pattern);
+}
+exports.isPositivePattern = isPositivePattern;
+function getNegativePatterns(patterns) {
+ return patterns.filter(isNegativePattern);
+}
+exports.getNegativePatterns = getNegativePatterns;
+function getPositivePatterns(patterns) {
+ return patterns.filter(isPositivePattern);
+}
+exports.getPositivePatterns = getPositivePatterns;
+/**
+ * Returns patterns that can be applied inside the current directory.
+ *
+ * @example
+ * // ['./*', '*', 'a/*']
+ * getPatternsInsideCurrentDirectory(['./*', '*', 'a/*', '../*', './../*'])
+ */
+function getPatternsInsideCurrentDirectory(patterns) {
+ return patterns.filter((pattern) => !isPatternRelatedToParentDirectory(pattern));
+}
+exports.getPatternsInsideCurrentDirectory = getPatternsInsideCurrentDirectory;
+/**
+ * Returns patterns to be expanded relative to (outside) the current directory.
+ *
+ * @example
+ * // ['../*', './../*']
+ * getPatternsInsideCurrentDirectory(['./*', '*', 'a/*', '../*', './../*'])
+ */
+function getPatternsOutsideCurrentDirectory(patterns) {
+ return patterns.filter(isPatternRelatedToParentDirectory);
+}
+exports.getPatternsOutsideCurrentDirectory = getPatternsOutsideCurrentDirectory;
+function isPatternRelatedToParentDirectory(pattern) {
+ return pattern.startsWith('..') || pattern.startsWith('./..');
+}
+exports.isPatternRelatedToParentDirectory = isPatternRelatedToParentDirectory;
+function getBaseDirectory(pattern) {
+ return globParent(pattern, { flipBackslashes: false });
+}
+exports.getBaseDirectory = getBaseDirectory;
+function hasGlobStar(pattern) {
+ return pattern.includes(GLOBSTAR);
+}
+exports.hasGlobStar = hasGlobStar;
+function endsWithSlashGlobStar(pattern) {
+ return pattern.endsWith('/' + GLOBSTAR);
+}
+exports.endsWithSlashGlobStar = endsWithSlashGlobStar;
+function isAffectDepthOfReadingPattern(pattern) {
+ const basename = path.basename(pattern);
+ return endsWithSlashGlobStar(pattern) || isStaticPattern(basename);
+}
+exports.isAffectDepthOfReadingPattern = isAffectDepthOfReadingPattern;
+function expandPatternsWithBraceExpansion(patterns) {
+ return patterns.reduce((collection, pattern) => {
+ return collection.concat(expandBraceExpansion(pattern));
+ }, []);
+}
+exports.expandPatternsWithBraceExpansion = expandPatternsWithBraceExpansion;
+function expandBraceExpansion(pattern) {
+ return micromatch.braces(pattern, {
+ expand: true,
+ nodupes: true
+ });
+}
+exports.expandBraceExpansion = expandBraceExpansion;
+function getPatternParts(pattern, options) {
+ let { parts } = micromatch.scan(pattern, Object.assign(Object.assign({}, options), { parts: true }));
+ /**
+ * The scan method returns an empty array in some cases.
+ * See micromatch/picomatch#58 for more details.
+ */
+ if (parts.length === 0) {
+ parts = [pattern];
+ }
+ /**
+ * The scan method does not return an empty part for the pattern with a forward slash.
+ * This is another part of micromatch/picomatch#58.
+ */
+ if (parts[0].startsWith('/')) {
+ parts[0] = parts[0].slice(1);
+ parts.unshift('');
+ }
+ return parts;
+}
+exports.getPatternParts = getPatternParts;
+function makeRe(pattern, options) {
+ return micromatch.makeRe(pattern, options);
+}
+exports.makeRe = makeRe;
+function convertPatternsToRe(patterns, options) {
+ return patterns.map((pattern) => makeRe(pattern, options));
+}
+exports.convertPatternsToRe = convertPatternsToRe;
+function matchAny(entry, patternsRe) {
+ return patternsRe.some((patternRe) => patternRe.test(entry));
+}
+exports.matchAny = matchAny;
diff --git a/node_modules/fast-glob/out/utils/stream.d.ts b/node_modules/fast-glob/out/utils/stream.d.ts
new file mode 100644
index 0000000..167fab0
--- /dev/null
+++ b/node_modules/fast-glob/out/utils/stream.d.ts
@@ -0,0 +1,3 @@
+///
+import { Readable } from 'stream';
+export declare function merge(streams: Readable[]): NodeJS.ReadableStream;
diff --git a/node_modules/fast-glob/out/utils/stream.js b/node_modules/fast-glob/out/utils/stream.js
new file mode 100644
index 0000000..f1ab1f5
--- /dev/null
+++ b/node_modules/fast-glob/out/utils/stream.js
@@ -0,0 +1,17 @@
+"use strict";
+Object.defineProperty(exports, "__esModule", { value: true });
+exports.merge = void 0;
+const merge2 = require("merge2");
+function merge(streams) {
+ const mergedStream = merge2(streams);
+ streams.forEach((stream) => {
+ stream.once('error', (error) => mergedStream.emit('error', error));
+ });
+ mergedStream.once('close', () => propagateCloseEventToSources(streams));
+ mergedStream.once('end', () => propagateCloseEventToSources(streams));
+ return mergedStream;
+}
+exports.merge = merge;
+function propagateCloseEventToSources(streams) {
+ streams.forEach((stream) => stream.emit('close'));
+}
diff --git a/node_modules/fast-glob/out/utils/string.d.ts b/node_modules/fast-glob/out/utils/string.d.ts
new file mode 100644
index 0000000..d306bc9
--- /dev/null
+++ b/node_modules/fast-glob/out/utils/string.d.ts
@@ -0,0 +1,2 @@
+export declare function isString(input: unknown): input is string;
+export declare function isEmpty(input: string): boolean;
diff --git a/node_modules/fast-glob/out/utils/string.js b/node_modules/fast-glob/out/utils/string.js
new file mode 100644
index 0000000..738c227
--- /dev/null
+++ b/node_modules/fast-glob/out/utils/string.js
@@ -0,0 +1,11 @@
+"use strict";
+Object.defineProperty(exports, "__esModule", { value: true });
+exports.isEmpty = exports.isString = void 0;
+function isString(input) {
+ return typeof input === 'string';
+}
+exports.isString = isString;
+function isEmpty(input) {
+ return input === '';
+}
+exports.isEmpty = isEmpty;
diff --git a/node_modules/fast-glob/package.json b/node_modules/fast-glob/package.json
new file mode 100644
index 0000000..d74e403
--- /dev/null
+++ b/node_modules/fast-glob/package.json
@@ -0,0 +1,94 @@
+{
+ "name": "fast-glob",
+ "version": "3.2.12",
+ "description": "It's a very fast and efficient glob library for Node.js",
+ "license": "MIT",
+ "repository": "mrmlnc/fast-glob",
+ "author": {
+ "name": "Denis Malinochkin",
+ "url": "https://mrmlnc.com"
+ },
+ "engines": {
+ "node": ">=8.6.0"
+ },
+ "main": "out/index.js",
+ "typings": "out/index.d.ts",
+ "files": [
+ "out",
+ "!out/{benchmark,tests}",
+ "!out/**/*.map",
+ "!out/**/*.spec.*"
+ ],
+ "keywords": [
+ "glob",
+ "patterns",
+ "fast",
+ "implementation"
+ ],
+ "devDependencies": {
+ "@nodelib/fs.macchiato": "^1.0.1",
+ "@types/compute-stdev": "^1.0.0",
+ "@types/easy-table": "^0.0.32",
+ "@types/glob": "^7.1.1",
+ "@types/glob-parent": "^5.1.0",
+ "@types/is-ci": "^2.0.0",
+ "@types/merge2": "^1.1.4",
+ "@types/micromatch": "^4.0.0",
+ "@types/minimist": "^1.2.0",
+ "@types/mocha": "^5.2.7",
+ "@types/node": "^12.7.8",
+ "@types/rimraf": "^2.0.2",
+ "@types/sinon": "^7.5.0",
+ "compute-stdev": "^1.0.0",
+ "easy-table": "^1.1.1",
+ "eslint": "^6.5.1",
+ "eslint-config-mrmlnc": "^1.1.0",
+ "execa": "^2.0.4",
+ "fast-glob": "^3.0.4",
+ "fdir": "^5.1.0",
+ "glob": "^7.1.4",
+ "is-ci": "^2.0.0",
+ "log-update": "^4.0.0",
+ "minimist": "^1.2.0",
+ "mocha": "^6.2.1",
+ "rimraf": "^3.0.0",
+ "sinon": "^7.5.0",
+ "tiny-glob": "^0.2.6",
+ "typescript": "^3.6.3"
+ },
+ "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"
+ },
+ "scripts": {
+ "clean": "rimraf out",
+ "lint": "eslint \"src/**/*.ts\" --cache",
+ "compile": "tsc",
+ "test": "mocha \"out/**/*.spec.js\" -s 0",
+ "smoke": "mocha \"out/**/*.smoke.js\" -s 0",
+ "smoke:sync": "mocha \"out/**/*.smoke.js\" -s 0 --grep \"\\(sync\\)\"",
+ "smoke:async": "mocha \"out/**/*.smoke.js\" -s 0 --grep \"\\(async\\)\"",
+ "smoke:stream": "mocha \"out/**/*.smoke.js\" -s 0 --grep \"\\(stream\\)\"",
+ "build": "npm run clean && npm run compile && npm run lint && npm test",
+ "watch": "npm run clean && npm run compile -- --sourceMap --watch",
+ "bench": "npm run bench-async && npm run bench-stream && npm run bench-sync",
+ "bench-async": "npm run bench-async-flatten && npm run bench-async-deep && npm run bench-async-partial-flatten && npm run bench-async-partial-deep",
+ "bench-stream": "npm run bench-stream-flatten && npm run bench-stream-deep && npm run bench-stream-partial-flatten && npm run bench-stream-partial-deep",
+ "bench-sync": "npm run bench-sync-flatten && npm run bench-sync-deep && npm run bench-sync-partial-flatten && npm run bench-sync-partial-deep",
+ "bench-async-flatten": "node ./out/benchmark --mode async --pattern \"*\"",
+ "bench-async-deep": "node ./out/benchmark --mode async --pattern \"**\"",
+ "bench-async-partial-flatten": "node ./out/benchmark --mode async --pattern \"{fixtures,out}/{first,second}/*\"",
+ "bench-async-partial-deep": "node ./out/benchmark --mode async --pattern \"{fixtures,out}/**\"",
+ "bench-stream-flatten": "node ./out/benchmark --mode stream --pattern \"*\"",
+ "bench-stream-deep": "node ./out/benchmark --mode stream --pattern \"**\"",
+ "bench-stream-partial-flatten": "node ./out/benchmark --mode stream --pattern \"{fixtures,out}/{first,second}/*\"",
+ "bench-stream-partial-deep": "node ./out/benchmark --mode stream --pattern \"{fixtures,out}/**\"",
+ "bench-sync-flatten": "node ./out/benchmark --mode sync --pattern \"*\"",
+ "bench-sync-deep": "node ./out/benchmark --mode sync --pattern \"**\"",
+ "bench-sync-partial-flatten": "node ./out/benchmark --mode sync --pattern \"{fixtures,out}/{first,second}/*\"",
+ "bench-sync-partial-deep": "node ./out/benchmark --mode sync --pattern \"{fixtures,out}/**\""
+ }
+}
diff --git a/node_modules/fastq/.github/dependabot.yml b/node_modules/fastq/.github/dependabot.yml
new file mode 100644
index 0000000..7e7cbe1
--- /dev/null
+++ b/node_modules/fastq/.github/dependabot.yml
@@ -0,0 +1,11 @@
+version: 2
+updates:
+- package-ecosystem: npm
+ directory: "/"
+ schedule:
+ interval: daily
+ open-pull-requests-limit: 10
+ ignore:
+ - dependency-name: standard
+ versions:
+ - 16.0.3
diff --git a/node_modules/fastq/.github/workflows/ci.yml b/node_modules/fastq/.github/workflows/ci.yml
new file mode 100644
index 0000000..50e66b5
--- /dev/null
+++ b/node_modules/fastq/.github/workflows/ci.yml
@@ -0,0 +1,50 @@
+name: ci
+
+on: [push, pull_request]
+
+jobs:
+ legacy:
+ runs-on: ubuntu-latest
+
+ strategy:
+ matrix:
+ node-version: ['0.10', '0.12', 4.x, 6.x, 8.x]
+
+ steps:
+ - uses: actions/checkout@v2
+
+ - name: Use Node.js
+ uses: actions/setup-node@v1
+ with:
+ node-version: ${{ matrix.node-version }}
+
+ - name: Install
+ run: |
+ npm install --production && npm install tape
+
+ - name: Run tests
+ run: |
+ npm run legacy
+
+ test:
+ runs-on: ubuntu-latest
+
+ strategy:
+ matrix:
+ node-version: [10.x, 12.x, 13.x, 14.x, 15.x, 16.x]
+
+ steps:
+ - uses: actions/checkout@v2
+
+ - name: Use Node.js
+ uses: actions/setup-node@v1
+ with:
+ node-version: ${{ matrix.node-version }}
+
+ - name: Install
+ run: |
+ npm install
+
+ - name: Run tests
+ run: |
+ npm run test
diff --git a/node_modules/fastq/LICENSE b/node_modules/fastq/LICENSE
new file mode 100644
index 0000000..27c7bb4
--- /dev/null
+++ b/node_modules/fastq/LICENSE
@@ -0,0 +1,13 @@
+Copyright (c) 2015-2020, Matteo Collina
+
+Permission to use, copy, modify, and/or distribute this software for any
+purpose with or without fee is hereby granted, provided that the above
+copyright notice and this permission notice appear in all copies.
+
+THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
+ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
+OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
diff --git a/node_modules/fastq/README.md b/node_modules/fastq/README.md
new file mode 100644
index 0000000..8a25fef
--- /dev/null
+++ b/node_modules/fastq/README.md
@@ -0,0 +1,309 @@
+# fastq
+
+![ci][ci-url]
+[![npm version][npm-badge]][npm-url]
+[![Dependency Status][david-badge]][david-url]
+
+Fast, in memory work queue.
+
+Benchmarks (1 million tasks):
+
+* setImmediate: 812ms
+* fastq: 854ms
+* async.queue: 1298ms
+* neoAsync.queue: 1249ms
+
+Obtained on node 12.16.1, on a dedicated server.
+
+If you need zero-overhead series function call, check out
+[fastseries](http://npm.im/fastseries). For zero-overhead parallel
+function call, check out [fastparallel](http://npm.im/fastparallel).
+
+[![js-standard-style](https://raw.githubusercontent.com/feross/standard/master/badge.png)](https://github.com/feross/standard)
+
+ * Installation
+ * Usage
+ * API
+ * Licence & copyright
+
+## Install
+
+`npm i fastq --save`
+
+## Usage (callback API)
+
+```js
+'use strict'
+
+const queue = require('fastq')(worker, 1)
+
+queue.push(42, function (err, result) {
+ if (err) { throw err }
+ console.log('the result is', result)
+})
+
+function worker (arg, cb) {
+ cb(null, arg * 2)
+}
+```
+
+## Usage (promise API)
+
+```js
+const queue = require('fastq').promise(worker, 1)
+
+async function worker (arg) {
+ return arg * 2
+}
+
+async function run () {
+ const result = await queue.push(42)
+ console.log('the result is', result)
+}
+
+run()
+```
+
+### Setting "this"
+
+```js
+'use strict'
+
+const that = { hello: 'world' }
+const queue = require('fastq')(that, worker, 1)
+
+queue.push(42, function (err, result) {
+ if (err) { throw err }
+ console.log(this)
+ console.log('the result is', result)
+})
+
+function worker (arg, cb) {
+ console.log(this)
+ cb(null, arg * 2)
+}
+```
+
+### Using with TypeScript (callback API)
+
+```ts
+'use strict'
+
+import * as fastq from "fastq";
+import type { queue, done } from "fastq";
+
+type Task = {
+ id: number
+}
+
+const q: queue = fastq(worker, 1)
+
+q.push({ id: 42})
+
+function worker (arg: Task, cb: done) {
+ console.log(arg.id)
+ cb(null)
+}
+```
+
+### Using with TypeScript (promise API)
+
+```ts
+'use strict'
+
+import * as fastq from "fastq";
+import type { queueAsPromised } from "fastq";
+
+type Task = {
+ id: number
+}
+
+const q: queueAsPromised = fastq.promise(asyncWorker, 1)
+
+q.push({ id: 42}).catch((err) => console.error(err))
+
+async function asyncWorker (arg: Task): Promise {
+ // No need for a try-catch block, fastq handles errors automatically
+ console.log(arg.id)
+}
+```
+
+## API
+
+* fastqueue()
+* queue#push()
+* queue#unshift()
+* queue#pause()
+* queue#resume()
+* queue#idle()
+* queue#length()
+* queue#getQueue()
+* queue#kill()
+* queue#killAndDrain()
+* queue#error()
+* queue#concurrency
+* queue#drain
+* queue#empty
+* queue#saturated
+* fastqueue.promise()
+
+-------------------------------------------------------
+
+### fastqueue([that], worker, concurrency)
+
+Creates a new queue.
+
+Arguments:
+
+* `that`, optional context of the `worker` function.
+* `worker`, worker function, it would be called with `that` as `this`,
+ if that is specified.
+* `concurrency`, number of concurrent tasks that could be executed in
+ parallel.
+
+-------------------------------------------------------
+
+### queue.push(task, done)
+
+Add a task at the end of the queue. `done(err, result)` will be called
+when the task was processed.
+
+-------------------------------------------------------
+
+### queue.unshift(task, done)
+
+Add a task at the beginning of the queue. `done(err, result)` will be called
+when the task was processed.
+
+-------------------------------------------------------
+
+### queue.pause()
+
+Pause the processing of tasks. Currently worked tasks are not
+stopped.
+
+-------------------------------------------------------
+
+### queue.resume()
+
+Resume the processing of tasks.
+
+-------------------------------------------------------
+
+### queue.idle()
+
+Returns `false` if there are tasks being processed or waiting to be processed.
+`true` otherwise.
+
+-------------------------------------------------------
+
+### queue.length()
+
+Returns the number of tasks waiting to be processed (in the queue).
+
+-------------------------------------------------------
+
+### queue.getQueue()
+
+Returns all the tasks be processed (in the queue). Returns empty array when there are no tasks
+
+-------------------------------------------------------
+
+### queue.kill()
+
+Removes all tasks waiting to be processed, and reset `drain` to an empty
+function.
+
+-------------------------------------------------------
+
+### queue.killAndDrain()
+
+Same than `kill` but the `drain` function will be called before reset to empty.
+
+-------------------------------------------------------
+
+### queue.error(handler)
+
+Set a global error handler. `handler(err, task)` will be called
+each time a task is completed, `err` will be not null if the task has thrown an error.
+
+-------------------------------------------------------
+
+### queue.concurrency
+
+Property that returns the number of concurrent tasks that could be executed in
+parallel. It can be altered at runtime.
+
+-------------------------------------------------------
+
+### queue.drain
+
+Function that will be called when the last
+item from the queue has been processed by a worker.
+It can be altered at runtime.
+
+-------------------------------------------------------
+
+### queue.empty
+
+Function that will be called when the last
+item from the queue has been assigned to a worker.
+It can be altered at runtime.
+
+-------------------------------------------------------
+
+### queue.saturated
+
+Function that will be called when the queue hits the concurrency
+limit.
+It can be altered at runtime.
+
+-------------------------------------------------------
+
+### fastqueue.promise([that], worker(arg), concurrency)
+
+Creates a new queue with `Promise` apis. It also offers all the methods
+and properties of the object returned by [`fastqueue`](#fastqueue) with the modified
+[`push`](#pushPromise) and [`unshift`](#unshiftPromise) methods.
+
+Node v10+ is required to use the promisified version.
+
+Arguments:
+* `that`, optional context of the `worker` function.
+* `worker`, worker function, it would be called with `that` as `this`,
+ if that is specified. It MUST return a `Promise`.
+* `concurrency`, number of concurrent tasks that could be executed in
+ parallel.
+
+
+#### queue.push(task) => Promise
+
+Add a task at the end of the queue. The returned `Promise` will be fulfilled (rejected)
+when the task is completed successfully (unsuccessfully).
+
+This promise could be ignored as it will not lead to a `'unhandledRejection'`.
+
+
+#### queue.unshift(task) => Promise
+
+Add a task at the beginning of the queue. The returned `Promise` will be fulfilled (rejected)
+when the task is completed successfully (unsuccessfully).
+
+This promise could be ignored as it will not lead to a `'unhandledRejection'`.
+
+
+#### queue.drained() => Promise
+
+Wait for the queue to be drained. The returned `Promise` will be resolved when all tasks in the queue have been processed by a worker.
+
+This promise could be ignored as it will not lead to a `'unhandledRejection'`.
+
+## License
+
+ISC
+
+[ci-url]: https://github.com/mcollina/fastq/workflows/ci/badge.svg
+[npm-badge]: https://badge.fury.io/js/fastq.svg
+[npm-url]: https://badge.fury.io/js/fastq
+[david-badge]: https://david-dm.org/mcollina/fastq.svg
+[david-url]: https://david-dm.org/mcollina/fastq
diff --git a/node_modules/fastq/bench.js b/node_modules/fastq/bench.js
new file mode 100644
index 0000000..4eaa829
--- /dev/null
+++ b/node_modules/fastq/bench.js
@@ -0,0 +1,66 @@
+'use strict'
+
+const max = 1000000
+const fastqueue = require('./')(worker, 1)
+const { promisify } = require('util')
+const immediate = promisify(setImmediate)
+const qPromise = require('./').promise(immediate, 1)
+const async = require('async')
+const neo = require('neo-async')
+const asyncqueue = async.queue(worker, 1)
+const neoqueue = neo.queue(worker, 1)
+
+function bench (func, done) {
+ const key = max + '*' + func.name
+ let count = -1
+
+ console.time(key)
+ end()
+
+ function end () {
+ if (++count < max) {
+ func(end)
+ } else {
+ console.timeEnd(key)
+ if (done) {
+ done()
+ }
+ }
+ }
+}
+
+function benchFastQ (done) {
+ fastqueue.push(42, done)
+}
+
+function benchAsyncQueue (done) {
+ asyncqueue.push(42, done)
+}
+
+function benchNeoQueue (done) {
+ neoqueue.push(42, done)
+}
+
+function worker (arg, cb) {
+ setImmediate(cb)
+}
+
+function benchSetImmediate (cb) {
+ worker(42, cb)
+}
+
+function benchFastQPromise (done) {
+ qPromise.push(42).then(function () { done() }, done)
+}
+
+function runBench (done) {
+ async.eachSeries([
+ benchSetImmediate,
+ benchFastQ,
+ benchNeoQueue,
+ benchAsyncQueue,
+ benchFastQPromise
+ ], bench, done)
+}
+
+runBench(runBench)
diff --git a/node_modules/fastq/example.js b/node_modules/fastq/example.js
new file mode 100644
index 0000000..665fdc8
--- /dev/null
+++ b/node_modules/fastq/example.js
@@ -0,0 +1,14 @@
+'use strict'
+
+/* eslint-disable no-var */
+
+var queue = require('./')(worker, 1)
+
+queue.push(42, function (err, result) {
+ if (err) { throw err }
+ console.log('the result is', result)
+})
+
+function worker (arg, cb) {
+ cb(null, 42 * 2)
+}
diff --git a/node_modules/fastq/example.mjs b/node_modules/fastq/example.mjs
new file mode 100644
index 0000000..81be789
--- /dev/null
+++ b/node_modules/fastq/example.mjs
@@ -0,0 +1,11 @@
+import { promise as queueAsPromised } from './queue.js'
+
+/* eslint-disable */
+
+const queue = queueAsPromised(worker, 1)
+
+console.log('the result is', await queue.push(42))
+
+async function worker (arg) {
+ return 42 * 2
+}
diff --git a/node_modules/fastq/index.d.ts b/node_modules/fastq/index.d.ts
new file mode 100644
index 0000000..65ebe65
--- /dev/null
+++ b/node_modules/fastq/index.d.ts
@@ -0,0 +1,37 @@
+declare function fastq(context: C, worker: fastq.worker, concurrency: number): fastq.queue
+declare function fastq(worker: fastq.worker, concurrency: number): fastq.queue
+
+declare namespace fastq {
+ type worker = (this: C, task: T, cb: fastq.done) => void
+ type asyncWorker = (this: C, task: T) => Promise
+ type done = (err: Error | null, result?: R) => void
+ type errorHandler = (err: Error, task: T) => void
+
+ interface queue {
+ push(task: T, done?: done): void
+ unshift(task: T, done?: done): void
+ pause(): any
+ resume(): any
+ idle(): boolean
+ length(): number
+ getQueue(): T[]
+ kill(): any
+ killAndDrain(): any
+ error(handler: errorHandler): void
+ concurrency: number
+ drain(): any
+ empty: () => void
+ saturated: () => void
+ }
+
+ interface queueAsPromised extends queue {
+ push(task: T): Promise
+ unshift(task: T): Promise
+ drained(): Promise
+ }
+
+ function promise(context: C, worker: fastq.asyncWorker, concurrency: number): fastq.queueAsPromised
+ function promise(worker: fastq.asyncWorker, concurrency: number): fastq.queueAsPromised
+}
+
+export = fastq
diff --git a/node_modules/fastq/package.json b/node_modules/fastq/package.json
new file mode 100644
index 0000000..bf572e3
--- /dev/null
+++ b/node_modules/fastq/package.json
@@ -0,0 +1,52 @@
+{
+ "name": "fastq",
+ "version": "1.15.0",
+ "description": "Fast, in memory work queue",
+ "main": "queue.js",
+ "scripts": {
+ "lint": "standard --verbose | snazzy",
+ "unit": "nyc --lines 100 --branches 100 --functions 100 --check-coverage --reporter=text tape test/test.js test/promise.js",
+ "coverage": "nyc --reporter=html --reporter=cobertura --reporter=text tape test/test.js test/promise.js",
+ "test:report": "npm run lint && npm run unit:report",
+ "test": "npm run lint && npm run unit && npm run typescript",
+ "typescript": "tsc --project ./test/tsconfig.json",
+ "legacy": "tape test/test.js"
+ },
+ "pre-commit": [
+ "test"
+ ],
+ "repository": {
+ "type": "git",
+ "url": "git+https://github.com/mcollina/fastq.git"
+ },
+ "keywords": [
+ "fast",
+ "queue",
+ "async",
+ "worker"
+ ],
+ "author": "Matteo Collina ",
+ "license": "ISC",
+ "bugs": {
+ "url": "https://github.com/mcollina/fastq/issues"
+ },
+ "homepage": "https://github.com/mcollina/fastq#readme",
+ "devDependencies": {
+ "async": "^3.1.0",
+ "neo-async": "^2.6.1",
+ "nyc": "^15.0.0",
+ "pre-commit": "^1.2.2",
+ "snazzy": "^9.0.0",
+ "standard": "^16.0.0",
+ "tape": "^5.0.0",
+ "typescript": "^4.0.2"
+ },
+ "dependencies": {
+ "reusify": "^1.0.4"
+ },
+ "standard": {
+ "ignore": [
+ "example.mjs"
+ ]
+ }
+}
diff --git a/node_modules/fastq/queue.js b/node_modules/fastq/queue.js
new file mode 100644
index 0000000..03fe112
--- /dev/null
+++ b/node_modules/fastq/queue.js
@@ -0,0 +1,289 @@
+'use strict'
+
+/* eslint-disable no-var */
+
+var reusify = require('reusify')
+
+function fastqueue (context, worker, concurrency) {
+ if (typeof context === 'function') {
+ concurrency = worker
+ worker = context
+ context = null
+ }
+
+ if (concurrency < 1) {
+ throw new Error('fastqueue concurrency must be greater than 1')
+ }
+
+ var cache = reusify(Task)
+ var queueHead = null
+ var queueTail = null
+ var _running = 0
+ var errorHandler = null
+
+ var self = {
+ push: push,
+ drain: noop,
+ saturated: noop,
+ pause: pause,
+ paused: false,
+ concurrency: concurrency,
+ running: running,
+ resume: resume,
+ idle: idle,
+ length: length,
+ getQueue: getQueue,
+ unshift: unshift,
+ empty: noop,
+ kill: kill,
+ killAndDrain: killAndDrain,
+ error: error
+ }
+
+ return self
+
+ function running () {
+ return _running
+ }
+
+ function pause () {
+ self.paused = true
+ }
+
+ function length () {
+ var current = queueHead
+ var counter = 0
+
+ while (current) {
+ current = current.next
+ counter++
+ }
+
+ return counter
+ }
+
+ function getQueue () {
+ var current = queueHead
+ var tasks = []
+
+ while (current) {
+ tasks.push(current.value)
+ current = current.next
+ }
+
+ return tasks
+ }
+
+ function resume () {
+ if (!self.paused) return
+ self.paused = false
+ for (var i = 0; i < self.concurrency; i++) {
+ _running++
+ release()
+ }
+ }
+
+ function idle () {
+ return _running === 0 && self.length() === 0
+ }
+
+ function push (value, done) {
+ var current = cache.get()
+
+ current.context = context
+ current.release = release
+ current.value = value
+ current.callback = done || noop
+ current.errorHandler = errorHandler
+
+ if (_running === self.concurrency || self.paused) {
+ if (queueTail) {
+ queueTail.next = current
+ queueTail = current
+ } else {
+ queueHead = current
+ queueTail = current
+ self.saturated()
+ }
+ } else {
+ _running++
+ worker.call(context, current.value, current.worked)
+ }
+ }
+
+ function unshift (value, done) {
+ var current = cache.get()
+
+ current.context = context
+ current.release = release
+ current.value = value
+ current.callback = done || noop
+
+ if (_running === self.concurrency || self.paused) {
+ if (queueHead) {
+ current.next = queueHead
+ queueHead = current
+ } else {
+ queueHead = current
+ queueTail = current
+ self.saturated()
+ }
+ } else {
+ _running++
+ worker.call(context, current.value, current.worked)
+ }
+ }
+
+ function release (holder) {
+ if (holder) {
+ cache.release(holder)
+ }
+ var next = queueHead
+ if (next) {
+ if (!self.paused) {
+ if (queueTail === queueHead) {
+ queueTail = null
+ }
+ queueHead = next.next
+ next.next = null
+ worker.call(context, next.value, next.worked)
+ if (queueTail === null) {
+ self.empty()
+ }
+ } else {
+ _running--
+ }
+ } else if (--_running === 0) {
+ self.drain()
+ }
+ }
+
+ function kill () {
+ queueHead = null
+ queueTail = null
+ self.drain = noop
+ }
+
+ function killAndDrain () {
+ queueHead = null
+ queueTail = null
+ self.drain()
+ self.drain = noop
+ }
+
+ function error (handler) {
+ errorHandler = handler
+ }
+}
+
+function noop () {}
+
+function Task () {
+ this.value = null
+ this.callback = noop
+ this.next = null
+ this.release = noop
+ this.context = null
+ this.errorHandler = null
+
+ var self = this
+
+ this.worked = function worked (err, result) {
+ var callback = self.callback
+ var errorHandler = self.errorHandler
+ var val = self.value
+ self.value = null
+ self.callback = noop
+ if (self.errorHandler) {
+ errorHandler(err, val)
+ }
+ callback.call(self.context, err, result)
+ self.release(self)
+ }
+}
+
+function queueAsPromised (context, worker, concurrency) {
+ if (typeof context === 'function') {
+ concurrency = worker
+ worker = context
+ context = null
+ }
+
+ function asyncWrapper (arg, cb) {
+ worker.call(this, arg)
+ .then(function (res) {
+ cb(null, res)
+ }, cb)
+ }
+
+ var queue = fastqueue(context, asyncWrapper, concurrency)
+
+ var pushCb = queue.push
+ var unshiftCb = queue.unshift
+
+ queue.push = push
+ queue.unshift = unshift
+ queue.drained = drained
+
+ return queue
+
+ function push (value) {
+ var p = new Promise(function (resolve, reject) {
+ pushCb(value, function (err, result) {
+ if (err) {
+ reject(err)
+ return
+ }
+ resolve(result)
+ })
+ })
+
+ // Let's fork the promise chain to
+ // make the error bubble up to the user but
+ // not lead to a unhandledRejection
+ p.catch(noop)
+
+ return p
+ }
+
+ function unshift (value) {
+ var p = new Promise(function (resolve, reject) {
+ unshiftCb(value, function (err, result) {
+ if (err) {
+ reject(err)
+ return
+ }
+ resolve(result)
+ })
+ })
+
+ // Let's fork the promise chain to
+ // make the error bubble up to the user but
+ // not lead to a unhandledRejection
+ p.catch(noop)
+
+ return p
+ }
+
+ function drained () {
+ if (queue.idle()) {
+ return new Promise(function (resolve) {
+ resolve()
+ })
+ }
+
+ var previousDrain = queue.drain
+
+ var p = new Promise(function (resolve) {
+ queue.drain = function () {
+ previousDrain()
+ resolve()
+ }
+ })
+
+ return p
+ }
+}
+
+module.exports = fastqueue
+module.exports.promise = queueAsPromised
diff --git a/node_modules/fastq/test/example.ts b/node_modules/fastq/test/example.ts
new file mode 100644
index 0000000..c454e9d
--- /dev/null
+++ b/node_modules/fastq/test/example.ts
@@ -0,0 +1,81 @@
+import * as fastq from '../'
+import { promise as queueAsPromised } from '../'
+
+// Basic example
+
+const queue = fastq(worker, 1)
+
+queue.push('world', (err, result) => {
+ if (err) throw err
+ console.log('the result is', result)
+})
+
+queue.push('push without cb')
+
+queue.concurrency
+
+queue.drain()
+
+queue.empty = () => undefined
+
+console.log('the queue tasks are', queue.getQueue())
+
+queue.idle()
+
+queue.kill()
+
+queue.killAndDrain()
+
+queue.length
+
+queue.pause()
+
+queue.resume()
+
+queue.saturated = () => undefined
+
+queue.unshift('world', (err, result) => {
+ if (err) throw err
+ console.log('the result is', result)
+})
+
+queue.unshift('unshift without cb')
+
+function worker(task: any, cb: fastq.done) {
+ cb(null, 'hello ' + task)
+}
+
+// Generics example
+
+interface GenericsContext {
+ base: number;
+}
+
+const genericsQueue = fastq({ base: 6 }, genericsWorker, 1)
+
+genericsQueue.push(7, (err, done) => {
+ if (err) throw err
+ console.log('the result is', done)
+})
+
+genericsQueue.unshift(7, (err, done) => {
+ if (err) throw err
+ console.log('the result is', done)
+})
+
+function genericsWorker(this: GenericsContext, task: number, cb: fastq.done) {
+ cb(null, 'the meaning of life is ' + (this.base * task))
+}
+
+const queue2 = queueAsPromised(asyncWorker, 1)
+
+async function asyncWorker(task: any) {
+ return 'hello ' + task
+}
+
+async function run () {
+ await queue.push(42)
+ await queue.unshift(42)
+}
+
+run()
diff --git a/node_modules/fastq/test/promise.js b/node_modules/fastq/test/promise.js
new file mode 100644
index 0000000..fe014ff
--- /dev/null
+++ b/node_modules/fastq/test/promise.js
@@ -0,0 +1,248 @@
+'use strict'
+
+const test = require('tape')
+const buildQueue = require('../').promise
+const { promisify } = require('util')
+const sleep = promisify(setTimeout)
+const immediate = promisify(setImmediate)
+
+test('concurrency', function (t) {
+ t.plan(2)
+ t.throws(buildQueue.bind(null, worker, 0))
+ t.doesNotThrow(buildQueue.bind(null, worker, 1))
+
+ async function worker (arg) {
+ return true
+ }
+})
+
+test('worker execution', async function (t) {
+ const queue = buildQueue(worker, 1)
+
+ const result = await queue.push(42)
+
+ t.equal(result, true, 'result matches')
+
+ async function worker (arg) {
+ t.equal(arg, 42)
+ return true
+ }
+})
+
+test('limit', async function (t) {
+ const queue = buildQueue(worker, 1)
+
+ const [res1, res2] = await Promise.all([queue.push(10), queue.push(0)])
+ t.equal(res1, 10, 'the result matches')
+ t.equal(res2, 0, 'the result matches')
+
+ async function worker (arg) {
+ await sleep(arg)
+ return arg
+ }
+})
+
+test('multiple executions', async function (t) {
+ const queue = buildQueue(worker, 1)
+ const toExec = [1, 2, 3, 4, 5]
+ const expected = ['a', 'b', 'c', 'd', 'e']
+ let count = 0
+
+ await Promise.all(toExec.map(async function (task, i) {
+ const result = await queue.push(task)
+ t.equal(result, expected[i], 'the result matches')
+ }))
+
+ async function worker (arg) {
+ t.equal(arg, toExec[count], 'arg matches')
+ return expected[count++]
+ }
+})
+
+test('drained', async function (t) {
+ const queue = buildQueue(worker, 2)
+
+ const toExec = new Array(10).fill(10)
+ let count = 0
+
+ async function worker (arg) {
+ await sleep(arg)
+ count++
+ }
+
+ toExec.forEach(function (i) {
+ queue.push(i)
+ })
+
+ await queue.drained()
+
+ t.equal(count, toExec.length)
+
+ toExec.forEach(function (i) {
+ queue.push(i)
+ })
+
+ await queue.drained()
+
+ t.equal(count, toExec.length * 2)
+})
+
+test('drained with exception should not throw', async function (t) {
+ const queue = buildQueue(worker, 2)
+
+ const toExec = new Array(10).fill(10)
+
+ async function worker () {
+ throw new Error('foo')
+ }
+
+ toExec.forEach(function (i) {
+ queue.push(i)
+ })
+
+ await queue.drained()
+})
+
+test('drained with drain function', async function (t) {
+ let drainCalled = false
+ const queue = buildQueue(worker, 2)
+
+ queue.drain = function () {
+ drainCalled = true
+ }
+
+ const toExec = new Array(10).fill(10)
+ let count = 0
+
+ async function worker (arg) {
+ await sleep(arg)
+ count++
+ }
+
+ toExec.forEach(function () {
+ queue.push()
+ })
+
+ await queue.drained()
+
+ t.equal(count, toExec.length)
+ t.equal(drainCalled, true)
+})
+
+test('drained while idle should resolve', async function (t) {
+ const queue = buildQueue(worker, 2)
+
+ async function worker (arg) {
+ await sleep(arg)
+ }
+
+ await queue.drained()
+})
+
+test('drained while idle should not call the drain function', async function (t) {
+ let drainCalled = false
+ const queue = buildQueue(worker, 2)
+
+ queue.drain = function () {
+ drainCalled = true
+ }
+
+ async function worker (arg) {
+ await sleep(arg)
+ }
+
+ await queue.drained()
+
+ t.equal(drainCalled, false)
+})
+
+test('set this', async function (t) {
+ t.plan(1)
+ const that = {}
+ const queue = buildQueue(that, worker, 1)
+
+ await queue.push(42)
+
+ async function worker (arg) {
+ t.equal(this, that, 'this matches')
+ }
+})
+
+test('unshift', async function (t) {
+ const queue = buildQueue(worker, 1)
+ const expected = [1, 2, 3, 4]
+
+ await Promise.all([
+ queue.push(1),
+ queue.push(4),
+ queue.unshift(3),
+ queue.unshift(2)
+ ])
+
+ t.is(expected.length, 0)
+
+ async function worker (arg) {
+ t.equal(expected.shift(), arg, 'tasks come in order')
+ }
+})
+
+test('push with worker throwing error', async function (t) {
+ t.plan(5)
+ const q = buildQueue(async function (task, cb) {
+ throw new Error('test error')
+ }, 1)
+ q.error(function (err, task) {
+ t.ok(err instanceof Error, 'global error handler should catch the error')
+ t.match(err.message, /test error/, 'error message should be "test error"')
+ t.equal(task, 42, 'The task executed should be passed')
+ })
+ try {
+ await q.push(42)
+ } catch (err) {
+ t.ok(err instanceof Error, 'push callback should catch the error')
+ t.match(err.message, /test error/, 'error message should be "test error"')
+ }
+})
+
+test('unshift with worker throwing error', async function (t) {
+ t.plan(2)
+ const q = buildQueue(async function (task, cb) {
+ throw new Error('test error')
+ }, 1)
+ try {
+ await q.unshift(42)
+ } catch (err) {
+ t.ok(err instanceof Error, 'push callback should catch the error')
+ t.match(err.message, /test error/, 'error message should be "test error"')
+ }
+})
+
+test('no unhandledRejection (push)', async function (t) {
+ function handleRejection () {
+ t.fail('unhandledRejection')
+ }
+ process.once('unhandledRejection', handleRejection)
+ const q = buildQueue(async function (task, cb) {
+ throw new Error('test error')
+ }, 1)
+
+ q.push(42)
+
+ await immediate()
+ process.removeListener('unhandledRejection', handleRejection)
+})
+
+test('no unhandledRejection (unshift)', async function (t) {
+ function handleRejection () {
+ t.fail('unhandledRejection')
+ }
+ process.once('unhandledRejection', handleRejection)
+ const q = buildQueue(async function (task, cb) {
+ throw new Error('test error')
+ }, 1)
+
+ q.unshift(42)
+
+ await immediate()
+ process.removeListener('unhandledRejection', handleRejection)
+})
diff --git a/node_modules/fastq/test/test.js b/node_modules/fastq/test/test.js
new file mode 100644
index 0000000..1cc78a5
--- /dev/null
+++ b/node_modules/fastq/test/test.js
@@ -0,0 +1,566 @@
+'use strict'
+
+/* eslint-disable no-var */
+
+var test = require('tape')
+var buildQueue = require('../')
+
+test('concurrency', function (t) {
+ t.plan(2)
+ t.throws(buildQueue.bind(null, worker, 0))
+ t.doesNotThrow(buildQueue.bind(null, worker, 1))
+
+ function worker (arg, cb) {
+ cb(null, true)
+ }
+})
+
+test('worker execution', function (t) {
+ t.plan(3)
+
+ var queue = buildQueue(worker, 1)
+
+ queue.push(42, function (err, result) {
+ t.error(err, 'no error')
+ t.equal(result, true, 'result matches')
+ })
+
+ function worker (arg, cb) {
+ t.equal(arg, 42)
+ cb(null, true)
+ }
+})
+
+test('limit', function (t) {
+ t.plan(4)
+
+ var expected = [10, 0]
+ var queue = buildQueue(worker, 1)
+
+ queue.push(10, result)
+ queue.push(0, result)
+
+ function result (err, arg) {
+ t.error(err, 'no error')
+ t.equal(arg, expected.shift(), 'the result matches')
+ }
+
+ function worker (arg, cb) {
+ setTimeout(cb, arg, null, arg)
+ }
+})
+
+test('multiple executions', function (t) {
+ t.plan(15)
+
+ var queue = buildQueue(worker, 1)
+ var toExec = [1, 2, 3, 4, 5]
+ var count = 0
+
+ toExec.forEach(function (task) {
+ queue.push(task, done)
+ })
+
+ function done (err, result) {
+ t.error(err, 'no error')
+ t.equal(result, toExec[count - 1], 'the result matches')
+ }
+
+ function worker (arg, cb) {
+ t.equal(arg, toExec[count], 'arg matches')
+ count++
+ setImmediate(cb, null, arg)
+ }
+})
+
+test('multiple executions, one after another', function (t) {
+ t.plan(15)
+
+ var queue = buildQueue(worker, 1)
+ var toExec = [1, 2, 3, 4, 5]
+ var count = 0
+
+ queue.push(toExec[0], done)
+
+ function done (err, result) {
+ t.error(err, 'no error')
+ t.equal(result, toExec[count - 1], 'the result matches')
+ if (count < toExec.length) {
+ queue.push(toExec[count], done)
+ }
+ }
+
+ function worker (arg, cb) {
+ t.equal(arg, toExec[count], 'arg matches')
+ count++
+ setImmediate(cb, null, arg)
+ }
+})
+
+test('set this', function (t) {
+ t.plan(3)
+
+ var that = {}
+ var queue = buildQueue(that, worker, 1)
+
+ queue.push(42, function (err, result) {
+ t.error(err, 'no error')
+ t.equal(this, that, 'this matches')
+ })
+
+ function worker (arg, cb) {
+ t.equal(this, that, 'this matches')
+ cb(null, true)
+ }
+})
+
+test('drain', function (t) {
+ t.plan(4)
+
+ var queue = buildQueue(worker, 1)
+ var worked = false
+
+ queue.push(42, function (err, result) {
+ t.error(err, 'no error')
+ t.equal(result, true, 'result matches')
+ })
+
+ queue.drain = function () {
+ t.equal(true, worked, 'drained')
+ }
+
+ function worker (arg, cb) {
+ t.equal(arg, 42)
+ worked = true
+ setImmediate(cb, null, true)
+ }
+})
+
+test('pause && resume', function (t) {
+ t.plan(7)
+
+ var queue = buildQueue(worker, 1)
+ var worked = false
+
+ t.notOk(queue.paused, 'it should not be paused')
+
+ queue.pause()
+
+ queue.push(42, function (err, result) {
+ t.error(err, 'no error')
+ t.equal(result, true, 'result matches')
+ })
+
+ t.notOk(worked, 'it should be paused')
+ t.ok(queue.paused, 'it should be paused')
+
+ queue.resume()
+ queue.resume() // second resume is a no-op
+
+ t.notOk(queue.paused, 'it should not be paused')
+
+ function worker (arg, cb) {
+ t.equal(arg, 42)
+ worked = true
+ cb(null, true)
+ }
+})
+
+test('pause in flight && resume', function (t) {
+ t.plan(9)
+
+ var queue = buildQueue(worker, 1)
+ var expected = [42, 24]
+
+ t.notOk(queue.paused, 'it should not be paused')
+
+ queue.push(42, function (err, result) {
+ t.error(err, 'no error')
+ t.equal(result, true, 'result matches')
+ t.ok(queue.paused, 'it should be paused')
+ process.nextTick(function () { queue.resume() })
+ })
+
+ queue.push(24, function (err, result) {
+ t.error(err, 'no error')
+ t.equal(result, true, 'result matches')
+ t.notOk(queue.paused, 'it should not be paused')
+ })
+
+ queue.pause()
+
+ function worker (arg, cb) {
+ t.equal(arg, expected.shift())
+ process.nextTick(function () { cb(null, true) })
+ }
+})
+
+test('altering concurrency', function (t) {
+ t.plan(7)
+
+ var queue = buildQueue(worker, 1)
+ var count = 0
+
+ queue.pause()
+
+ queue.push(24, workDone)
+ queue.push(24, workDone)
+
+ queue.concurrency = 2
+
+ queue.resume()
+
+ t.equal(queue.running(), 2, '2 jobs running')
+
+ function workDone (err, result) {
+ t.error(err, 'no error')
+ t.equal(result, true, 'result matches')
+ }
+
+ function worker (arg, cb) {
+ t.equal(0, count, 'works in parallel')
+ setImmediate(function () {
+ count++
+ cb(null, true)
+ })
+ }
+})
+
+test('idle()', function (t) {
+ t.plan(12)
+
+ var queue = buildQueue(worker, 1)
+
+ t.ok(queue.idle(), 'queue is idle')
+
+ queue.push(42, function (err, result) {
+ t.error(err, 'no error')
+ t.equal(result, true, 'result matches')
+ t.notOk(queue.idle(), 'queue is not idle')
+ })
+
+ queue.push(42, function (err, result) {
+ t.error(err, 'no error')
+ t.equal(result, true, 'result matches')
+ // it will go idle after executing this function
+ setImmediate(function () {
+ t.ok(queue.idle(), 'queue is now idle')
+ })
+ })
+
+ t.notOk(queue.idle(), 'queue is not idle')
+
+ function worker (arg, cb) {
+ t.notOk(queue.idle(), 'queue is not idle')
+ t.equal(arg, 42)
+ setImmediate(cb, null, true)
+ }
+})
+
+test('saturated', function (t) {
+ t.plan(9)
+
+ var queue = buildQueue(worker, 1)
+ var preworked = 0
+ var worked = 0
+
+ queue.saturated = function () {
+ t.pass('saturated')
+ t.equal(preworked, 1, 'started 1 task')
+ t.equal(worked, 0, 'worked zero task')
+ }
+
+ queue.push(42, done)
+ queue.push(42, done)
+
+ function done (err, result) {
+ t.error(err, 'no error')
+ t.equal(result, true, 'result matches')
+ }
+
+ function worker (arg, cb) {
+ t.equal(arg, 42)
+ preworked++
+ setImmediate(function () {
+ worked++
+ cb(null, true)
+ })
+ }
+})
+
+test('length', function (t) {
+ t.plan(7)
+
+ var queue = buildQueue(worker, 1)
+
+ t.equal(queue.length(), 0, 'nothing waiting')
+ queue.push(42, done)
+ t.equal(queue.length(), 0, 'nothing waiting')
+ queue.push(42, done)
+ t.equal(queue.length(), 1, 'one task waiting')
+ queue.push(42, done)
+ t.equal(queue.length(), 2, 'two tasks waiting')
+
+ function done (err, result) {
+ t.error(err, 'no error')
+ }
+
+ function worker (arg, cb) {
+ setImmediate(function () {
+ cb(null, true)
+ })
+ }
+})
+
+test('getQueue', function (t) {
+ t.plan(10)
+
+ var queue = buildQueue(worker, 1)
+
+ t.equal(queue.getQueue().length, 0, 'nothing waiting')
+ queue.push(42, done)
+ t.equal(queue.getQueue().length, 0, 'nothing waiting')
+ queue.push(42, done)
+ t.equal(queue.getQueue().length, 1, 'one task waiting')
+ t.equal(queue.getQueue()[0], 42, 'should be equal')
+ queue.push(43, done)
+ t.equal(queue.getQueue().length, 2, 'two tasks waiting')
+ t.equal(queue.getQueue()[0], 42, 'should be equal')
+ t.equal(queue.getQueue()[1], 43, 'should be equal')
+
+ function done (err, result) {
+ t.error(err, 'no error')
+ }
+
+ function worker (arg, cb) {
+ setImmediate(function () {
+ cb(null, true)
+ })
+ }
+})
+
+test('unshift', function (t) {
+ t.plan(8)
+
+ var queue = buildQueue(worker, 1)
+ var expected = [1, 2, 3, 4]
+
+ queue.push(1, done)
+ queue.push(4, done)
+ queue.unshift(3, done)
+ queue.unshift(2, done)
+
+ function done (err, result) {
+ t.error(err, 'no error')
+ }
+
+ function worker (arg, cb) {
+ t.equal(expected.shift(), arg, 'tasks come in order')
+ setImmediate(function () {
+ cb(null, true)
+ })
+ }
+})
+
+test('unshift && empty', function (t) {
+ t.plan(2)
+
+ var queue = buildQueue(worker, 1)
+ var completed = false
+
+ queue.pause()
+
+ queue.empty = function () {
+ t.notOk(completed, 'the task has not completed yet')
+ }
+
+ queue.unshift(1, done)
+
+ queue.resume()
+
+ function done (err, result) {
+ completed = true
+ t.error(err, 'no error')
+ }
+
+ function worker (arg, cb) {
+ setImmediate(function () {
+ cb(null, true)
+ })
+ }
+})
+
+test('push && empty', function (t) {
+ t.plan(2)
+
+ var queue = buildQueue(worker, 1)
+ var completed = false
+
+ queue.pause()
+
+ queue.empty = function () {
+ t.notOk(completed, 'the task has not completed yet')
+ }
+
+ queue.push(1, done)
+
+ queue.resume()
+
+ function done (err, result) {
+ completed = true
+ t.error(err, 'no error')
+ }
+
+ function worker (arg, cb) {
+ setImmediate(function () {
+ cb(null, true)
+ })
+ }
+})
+
+test('kill', function (t) {
+ t.plan(5)
+
+ var queue = buildQueue(worker, 1)
+ var expected = [1]
+
+ var predrain = queue.drain
+
+ queue.drain = function drain () {
+ t.fail('drain should never be called')
+ }
+
+ queue.push(1, done)
+ queue.push(4, done)
+ queue.unshift(3, done)
+ queue.unshift(2, done)
+ queue.kill()
+
+ function done (err, result) {
+ t.error(err, 'no error')
+ setImmediate(function () {
+ t.equal(queue.length(), 0, 'no queued tasks')
+ t.equal(queue.running(), 0, 'no running tasks')
+ t.equal(queue.drain, predrain, 'drain is back to default')
+ })
+ }
+
+ function worker (arg, cb) {
+ t.equal(expected.shift(), arg, 'tasks come in order')
+ setImmediate(function () {
+ cb(null, true)
+ })
+ }
+})
+
+test('killAndDrain', function (t) {
+ t.plan(6)
+
+ var queue = buildQueue(worker, 1)
+ var expected = [1]
+
+ var predrain = queue.drain
+
+ queue.drain = function drain () {
+ t.pass('drain has been called')
+ }
+
+ queue.push(1, done)
+ queue.push(4, done)
+ queue.unshift(3, done)
+ queue.unshift(2, done)
+ queue.killAndDrain()
+
+ function done (err, result) {
+ t.error(err, 'no error')
+ setImmediate(function () {
+ t.equal(queue.length(), 0, 'no queued tasks')
+ t.equal(queue.running(), 0, 'no running tasks')
+ t.equal(queue.drain, predrain, 'drain is back to default')
+ })
+ }
+
+ function worker (arg, cb) {
+ t.equal(expected.shift(), arg, 'tasks come in order')
+ setImmediate(function () {
+ cb(null, true)
+ })
+ }
+})
+
+test('pause && idle', function (t) {
+ t.plan(11)
+
+ var queue = buildQueue(worker, 1)
+ var worked = false
+
+ t.notOk(queue.paused, 'it should not be paused')
+ t.ok(queue.idle(), 'should be idle')
+
+ queue.pause()
+
+ queue.push(42, function (err, result) {
+ t.error(err, 'no error')
+ t.equal(result, true, 'result matches')
+ })
+
+ t.notOk(worked, 'it should be paused')
+ t.ok(queue.paused, 'it should be paused')
+ t.notOk(queue.idle(), 'should not be idle')
+
+ queue.resume()
+
+ t.notOk(queue.paused, 'it should not be paused')
+ t.notOk(queue.idle(), 'it should not be idle')
+
+ function worker (arg, cb) {
+ t.equal(arg, 42)
+ worked = true
+ process.nextTick(cb.bind(null, null, true))
+ process.nextTick(function () {
+ t.ok(queue.idle(), 'is should be idle')
+ })
+ }
+})
+
+test('push without cb', function (t) {
+ t.plan(1)
+
+ var queue = buildQueue(worker, 1)
+
+ queue.push(42)
+
+ function worker (arg, cb) {
+ t.equal(arg, 42)
+ cb()
+ }
+})
+
+test('unshift without cb', function (t) {
+ t.plan(1)
+
+ var queue = buildQueue(worker, 1)
+
+ queue.unshift(42)
+
+ function worker (arg, cb) {
+ t.equal(arg, 42)
+ cb()
+ }
+})
+
+test('push with worker throwing error', function (t) {
+ t.plan(5)
+ var q = buildQueue(function (task, cb) {
+ cb(new Error('test error'), null)
+ }, 1)
+ q.error(function (err, task) {
+ t.ok(err instanceof Error, 'global error handler should catch the error')
+ t.match(err.message, /test error/, 'error message should be "test error"')
+ t.equal(task, 42, 'The task executed should be passed')
+ })
+ q.push(42, function (err) {
+ t.ok(err instanceof Error, 'push callback should catch the error')
+ t.match(err.message, /test error/, 'error message should be "test error"')
+ })
+})
diff --git a/node_modules/fastq/test/tsconfig.json b/node_modules/fastq/test/tsconfig.json
new file mode 100644
index 0000000..66e16e9
--- /dev/null
+++ b/node_modules/fastq/test/tsconfig.json
@@ -0,0 +1,11 @@
+{
+ "compilerOptions": {
+ "target": "es6",
+ "module": "commonjs",
+ "noEmit": true,
+ "strict": true
+ },
+ "files": [
+ "./example.ts"
+ ]
+}
diff --git a/node_modules/fill-range/LICENSE b/node_modules/fill-range/LICENSE
new file mode 100644
index 0000000..9af4a67
--- /dev/null
+++ b/node_modules/fill-range/LICENSE
@@ -0,0 +1,21 @@
+The MIT License (MIT)
+
+Copyright (c) 2014-present, Jon Schlinkert.
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.
diff --git a/node_modules/fill-range/README.md b/node_modules/fill-range/README.md
new file mode 100644
index 0000000..8d756fe
--- /dev/null
+++ b/node_modules/fill-range/README.md
@@ -0,0 +1,237 @@
+# fill-range [![Donate](https://img.shields.io/badge/Donate-PayPal-green.svg)](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=W8YFZ425KND68) [![NPM version](https://img.shields.io/npm/v/fill-range.svg?style=flat)](https://www.npmjs.com/package/fill-range) [![NPM monthly downloads](https://img.shields.io/npm/dm/fill-range.svg?style=flat)](https://npmjs.org/package/fill-range) [![NPM total downloads](https://img.shields.io/npm/dt/fill-range.svg?style=flat)](https://npmjs.org/package/fill-range) [![Linux Build Status](https://img.shields.io/travis/jonschlinkert/fill-range.svg?style=flat&label=Travis)](https://travis-ci.org/jonschlinkert/fill-range)
+
+> Fill in a range of numbers or letters, optionally passing an increment or `step` to use, or create a regex-compatible range with `options.toRegex`
+
+Please consider following this project's author, [Jon Schlinkert](https://github.com/jonschlinkert), and consider starring the project to show your :heart: and support.
+
+## Install
+
+Install with [npm](https://www.npmjs.com/):
+
+```sh
+$ npm install --save fill-range
+```
+
+## Usage
+
+Expands numbers and letters, optionally using a `step` as the last argument. _(Numbers may be defined as JavaScript numbers or strings)_.
+
+```js
+const fill = require('fill-range');
+// fill(from, to[, step, options]);
+
+console.log(fill('1', '10')); //=> ['1', '2', '3', '4', '5', '6', '7', '8', '9', '10']
+console.log(fill('1', '10', { toRegex: true })); //=> [1-9]|10
+```
+
+**Params**
+
+* `from`: **{String|Number}** the number or letter to start with
+* `to`: **{String|Number}** the number or letter to end with
+* `step`: **{String|Number|Object|Function}** Optionally pass a [step](#optionsstep) to use.
+* `options`: **{Object|Function}**: See all available [options](#options)
+
+## Examples
+
+By default, an array of values is returned.
+
+**Alphabetical ranges**
+
+```js
+console.log(fill('a', 'e')); //=> ['a', 'b', 'c', 'd', 'e']
+console.log(fill('A', 'E')); //=> [ 'A', 'B', 'C', 'D', 'E' ]
+```
+
+**Numerical ranges**
+
+Numbers can be defined as actual numbers or strings.
+
+```js
+console.log(fill(1, 5)); //=> [ 1, 2, 3, 4, 5 ]
+console.log(fill('1', '5')); //=> [ 1, 2, 3, 4, 5 ]
+```
+
+**Negative ranges**
+
+Numbers can be defined as actual numbers or strings.
+
+```js
+console.log(fill('-5', '-1')); //=> [ '-5', '-4', '-3', '-2', '-1' ]
+console.log(fill('-5', '5')); //=> [ '-5', '-4', '-3', '-2', '-1', '0', '1', '2', '3', '4', '5' ]
+```
+
+**Steps (increments)**
+
+```js
+// numerical ranges with increments
+console.log(fill('0', '25', 4)); //=> [ '0', '4', '8', '12', '16', '20', '24' ]
+console.log(fill('0', '25', 5)); //=> [ '0', '5', '10', '15', '20', '25' ]
+console.log(fill('0', '25', 6)); //=> [ '0', '6', '12', '18', '24' ]
+
+// alphabetical ranges with increments
+console.log(fill('a', 'z', 4)); //=> [ 'a', 'e', 'i', 'm', 'q', 'u', 'y' ]
+console.log(fill('a', 'z', 5)); //=> [ 'a', 'f', 'k', 'p', 'u', 'z' ]
+console.log(fill('a', 'z', 6)); //=> [ 'a', 'g', 'm', 's', 'y' ]
+```
+
+## Options
+
+### options.step
+
+**Type**: `number` (formatted as a string or number)
+
+**Default**: `undefined`
+
+**Description**: The increment to use for the range. Can be used with letters or numbers.
+
+**Example(s)**
+
+```js
+// numbers
+console.log(fill('1', '10', 2)); //=> [ '1', '3', '5', '7', '9' ]
+console.log(fill('1', '10', 3)); //=> [ '1', '4', '7', '10' ]
+console.log(fill('1', '10', 4)); //=> [ '1', '5', '9' ]
+
+// letters
+console.log(fill('a', 'z', 5)); //=> [ 'a', 'f', 'k', 'p', 'u', 'z' ]
+console.log(fill('a', 'z', 7)); //=> [ 'a', 'h', 'o', 'v' ]
+console.log(fill('a', 'z', 9)); //=> [ 'a', 'j', 's' ]
+```
+
+### options.strictRanges
+
+**Type**: `boolean`
+
+**Default**: `false`
+
+**Description**: By default, `null` is returned when an invalid range is passed. Enable this option to throw a `RangeError` on invalid ranges.
+
+**Example(s)**
+
+The following are all invalid:
+
+```js
+fill('1.1', '2'); // decimals not supported in ranges
+fill('a', '2'); // incompatible range values
+fill(1, 10, 'foo'); // invalid "step" argument
+```
+
+### options.stringify
+
+**Type**: `boolean`
+
+**Default**: `undefined`
+
+**Description**: Cast all returned values to strings. By default, integers are returned as numbers.
+
+**Example(s)**
+
+```js
+console.log(fill(1, 5)); //=> [ 1, 2, 3, 4, 5 ]
+console.log(fill(1, 5, { stringify: true })); //=> [ '1', '2', '3', '4', '5' ]
+```
+
+### options.toRegex
+
+**Type**: `boolean`
+
+**Default**: `undefined`
+
+**Description**: Create a regex-compatible source string, instead of expanding values to an array.
+
+**Example(s)**
+
+```js
+// alphabetical range
+console.log(fill('a', 'e', { toRegex: true })); //=> '[a-e]'
+// alphabetical with step
+console.log(fill('a', 'z', 3, { toRegex: true })); //=> 'a|d|g|j|m|p|s|v|y'
+// numerical range
+console.log(fill('1', '100', { toRegex: true })); //=> '[1-9]|[1-9][0-9]|100'
+// numerical range with zero padding
+console.log(fill('000001', '100000', { toRegex: true }));
+//=> '0{5}[1-9]|0{4}[1-9][0-9]|0{3}[1-9][0-9]{2}|0{2}[1-9][0-9]{3}|0[1-9][0-9]{4}|100000'
+```
+
+### options.transform
+
+**Type**: `function`
+
+**Default**: `undefined`
+
+**Description**: Customize each value in the returned array (or [string](#optionstoRegex)). _(you can also pass this function as the last argument to `fill()`)_.
+
+**Example(s)**
+
+```js
+// add zero padding
+console.log(fill(1, 5, value => String(value).padStart(4, '0')));
+//=> ['0001', '0002', '0003', '0004', '0005']
+```
+
+## About
+
+
+Contributing
+
+Pull requests and stars are always welcome. For bugs and feature requests, [please create an issue](../../issues/new).
+
+
+
+
+Running Tests
+
+Running and reviewing unit tests is a great way to get familiarized with a library and its API. You can install dependencies and run tests with the following command:
+
+```sh
+$ npm install && npm test
+```
+
+
+
+
+Building docs
+
+_(This project's readme.md is generated by [verb](https://github.com/verbose/verb-generate-readme), please don't edit the readme directly. Any changes to the readme must be made in the [.verb.md](.verb.md) readme template.)_
+
+To generate the readme, run the following command:
+
+```sh
+$ npm install -g verbose/verb#dev verb-generate-readme && verb
+```
+
+
+
+### Contributors
+
+| **Commits** | **Contributor** |
+| --- | --- |
+| 116 | [jonschlinkert](https://github.com/jonschlinkert) |
+| 4 | [paulmillr](https://github.com/paulmillr) |
+| 2 | [realityking](https://github.com/realityking) |
+| 2 | [bluelovers](https://github.com/bluelovers) |
+| 1 | [edorivai](https://github.com/edorivai) |
+| 1 | [wtgtybhertgeghgtwtg](https://github.com/wtgtybhertgeghgtwtg) |
+
+### Author
+
+**Jon Schlinkert**
+
+* [GitHub Profile](https://github.com/jonschlinkert)
+* [Twitter Profile](https://twitter.com/jonschlinkert)
+* [LinkedIn Profile](https://linkedin.com/in/jonschlinkert)
+
+Please consider supporting me on Patreon, or [start your own Patreon page](https://patreon.com/invite/bxpbvm)!
+
+
+
+
+
+### License
+
+Copyright © 2019, [Jon Schlinkert](https://github.com/jonschlinkert).
+Released under the [MIT License](LICENSE).
+
+***
+
+_This file was generated by [verb-generate-readme](https://github.com/verbose/verb-generate-readme), v0.8.0, on April 08, 2019._
\ No newline at end of file
diff --git a/node_modules/fill-range/index.js b/node_modules/fill-range/index.js
new file mode 100644
index 0000000..97ce35a
--- /dev/null
+++ b/node_modules/fill-range/index.js
@@ -0,0 +1,249 @@
+/*!
+ * fill-range
+ *
+ * Copyright (c) 2014-present, Jon Schlinkert.
+ * Licensed under the MIT License.
+ */
+
+'use strict';
+
+const util = require('util');
+const toRegexRange = require('to-regex-range');
+
+const isObject = val => val !== null && typeof val === 'object' && !Array.isArray(val);
+
+const transform = toNumber => {
+ return value => toNumber === true ? Number(value) : String(value);
+};
+
+const isValidValue = value => {
+ return typeof value === 'number' || (typeof value === 'string' && value !== '');
+};
+
+const isNumber = num => Number.isInteger(+num);
+
+const zeros = input => {
+ let value = `${input}`;
+ let index = -1;
+ if (value[0] === '-') value = value.slice(1);
+ if (value === '0') return false;
+ while (value[++index] === '0');
+ return index > 0;
+};
+
+const stringify = (start, end, options) => {
+ if (typeof start === 'string' || typeof end === 'string') {
+ return true;
+ }
+ return options.stringify === true;
+};
+
+const pad = (input, maxLength, toNumber) => {
+ if (maxLength > 0) {
+ let dash = input[0] === '-' ? '-' : '';
+ if (dash) input = input.slice(1);
+ input = (dash + input.padStart(dash ? maxLength - 1 : maxLength, '0'));
+ }
+ if (toNumber === false) {
+ return String(input);
+ }
+ return input;
+};
+
+const toMaxLen = (input, maxLength) => {
+ let negative = input[0] === '-' ? '-' : '';
+ if (negative) {
+ input = input.slice(1);
+ maxLength--;
+ }
+ while (input.length < maxLength) input = '0' + input;
+ return negative ? ('-' + input) : input;
+};
+
+const toSequence = (parts, options) => {
+ parts.negatives.sort((a, b) => a < b ? -1 : a > b ? 1 : 0);
+ parts.positives.sort((a, b) => a < b ? -1 : a > b ? 1 : 0);
+
+ let prefix = options.capture ? '' : '?:';
+ let positives = '';
+ let negatives = '';
+ let result;
+
+ if (parts.positives.length) {
+ positives = parts.positives.join('|');
+ }
+
+ if (parts.negatives.length) {
+ negatives = `-(${prefix}${parts.negatives.join('|')})`;
+ }
+
+ if (positives && negatives) {
+ result = `${positives}|${negatives}`;
+ } else {
+ result = positives || negatives;
+ }
+
+ if (options.wrap) {
+ return `(${prefix}${result})`;
+ }
+
+ return result;
+};
+
+const toRange = (a, b, isNumbers, options) => {
+ if (isNumbers) {
+ return toRegexRange(a, b, { wrap: false, ...options });
+ }
+
+ let start = String.fromCharCode(a);
+ if (a === b) return start;
+
+ let stop = String.fromCharCode(b);
+ return `[${start}-${stop}]`;
+};
+
+const toRegex = (start, end, options) => {
+ if (Array.isArray(start)) {
+ let wrap = options.wrap === true;
+ let prefix = options.capture ? '' : '?:';
+ return wrap ? `(${prefix}${start.join('|')})` : start.join('|');
+ }
+ return toRegexRange(start, end, options);
+};
+
+const rangeError = (...args) => {
+ return new RangeError('Invalid range arguments: ' + util.inspect(...args));
+};
+
+const invalidRange = (start, end, options) => {
+ if (options.strictRanges === true) throw rangeError([start, end]);
+ return [];
+};
+
+const invalidStep = (step, options) => {
+ if (options.strictRanges === true) {
+ throw new TypeError(`Expected step "${step}" to be a number`);
+ }
+ return [];
+};
+
+const fillNumbers = (start, end, step = 1, options = {}) => {
+ let a = Number(start);
+ let b = Number(end);
+
+ if (!Number.isInteger(a) || !Number.isInteger(b)) {
+ if (options.strictRanges === true) throw rangeError([start, end]);
+ return [];
+ }
+
+ // fix negative zero
+ if (a === 0) a = 0;
+ if (b === 0) b = 0;
+
+ let descending = a > b;
+ let startString = String(start);
+ let endString = String(end);
+ let stepString = String(step);
+ step = Math.max(Math.abs(step), 1);
+
+ let padded = zeros(startString) || zeros(endString) || zeros(stepString);
+ let maxLen = padded ? Math.max(startString.length, endString.length, stepString.length) : 0;
+ let toNumber = padded === false && stringify(start, end, options) === false;
+ let format = options.transform || transform(toNumber);
+
+ if (options.toRegex && step === 1) {
+ return toRange(toMaxLen(start, maxLen), toMaxLen(end, maxLen), true, options);
+ }
+
+ let parts = { negatives: [], positives: [] };
+ let push = num => parts[num < 0 ? 'negatives' : 'positives'].push(Math.abs(num));
+ let range = [];
+ let index = 0;
+
+ while (descending ? a >= b : a <= b) {
+ if (options.toRegex === true && step > 1) {
+ push(a);
+ } else {
+ range.push(pad(format(a, index), maxLen, toNumber));
+ }
+ a = descending ? a - step : a + step;
+ index++;
+ }
+
+ if (options.toRegex === true) {
+ return step > 1
+ ? toSequence(parts, options)
+ : toRegex(range, null, { wrap: false, ...options });
+ }
+
+ return range;
+};
+
+const fillLetters = (start, end, step = 1, options = {}) => {
+ if ((!isNumber(start) && start.length > 1) || (!isNumber(end) && end.length > 1)) {
+ return invalidRange(start, end, options);
+ }
+
+
+ let format = options.transform || (val => String.fromCharCode(val));
+ let a = `${start}`.charCodeAt(0);
+ let b = `${end}`.charCodeAt(0);
+
+ let descending = a > b;
+ let min = Math.min(a, b);
+ let max = Math.max(a, b);
+
+ if (options.toRegex && step === 1) {
+ return toRange(min, max, false, options);
+ }
+
+ let range = [];
+ let index = 0;
+
+ while (descending ? a >= b : a <= b) {
+ range.push(format(a, index));
+ a = descending ? a - step : a + step;
+ index++;
+ }
+
+ if (options.toRegex === true) {
+ return toRegex(range, null, { wrap: false, options });
+ }
+
+ return range;
+};
+
+const fill = (start, end, step, options = {}) => {
+ if (end == null && isValidValue(start)) {
+ return [start];
+ }
+
+ if (!isValidValue(start) || !isValidValue(end)) {
+ return invalidRange(start, end, options);
+ }
+
+ if (typeof step === 'function') {
+ return fill(start, end, 1, { transform: step });
+ }
+
+ if (isObject(step)) {
+ return fill(start, end, 0, step);
+ }
+
+ let opts = { ...options };
+ if (opts.capture === true) opts.wrap = true;
+ step = step || opts.step || 1;
+
+ if (!isNumber(step)) {
+ if (step != null && !isObject(step)) return invalidStep(step, opts);
+ return fill(start, end, 1, step);
+ }
+
+ if (isNumber(start) && isNumber(end)) {
+ return fillNumbers(start, end, step, opts);
+ }
+
+ return fillLetters(start, end, Math.max(Math.abs(step), 1), opts);
+};
+
+module.exports = fill;
diff --git a/node_modules/fill-range/package.json b/node_modules/fill-range/package.json
new file mode 100644
index 0000000..07d3076
--- /dev/null
+++ b/node_modules/fill-range/package.json
@@ -0,0 +1,69 @@
+{
+ "name": "fill-range",
+ "description": "Fill in a range of numbers or letters, optionally passing an increment or `step` to use, or create a regex-compatible range with `options.toRegex`",
+ "version": "7.0.1",
+ "homepage": "https://github.com/jonschlinkert/fill-range",
+ "author": "Jon Schlinkert (https://github.com/jonschlinkert)",
+ "contributors": [
+ "Edo Rivai (edo.rivai.nl)",
+ "Jon Schlinkert (http://twitter.com/jonschlinkert)",
+ "Paul Miller (paulmillr.com)",
+ "Rouven Weßling (www.rouvenwessling.de)",
+ "(https://github.com/wtgtybhertgeghgtwtg)"
+ ],
+ "repository": "jonschlinkert/fill-range",
+ "bugs": {
+ "url": "https://github.com/jonschlinkert/fill-range/issues"
+ },
+ "license": "MIT",
+ "files": [
+ "index.js"
+ ],
+ "main": "index.js",
+ "engines": {
+ "node": ">=8"
+ },
+ "scripts": {
+ "test": "mocha"
+ },
+ "dependencies": {
+ "to-regex-range": "^5.0.1"
+ },
+ "devDependencies": {
+ "gulp-format-md": "^2.0.0",
+ "mocha": "^6.1.1"
+ },
+ "keywords": [
+ "alpha",
+ "alphabetical",
+ "array",
+ "bash",
+ "brace",
+ "expand",
+ "expansion",
+ "fill",
+ "glob",
+ "match",
+ "matches",
+ "matching",
+ "number",
+ "numerical",
+ "range",
+ "ranges",
+ "regex",
+ "sh"
+ ],
+ "verb": {
+ "toc": false,
+ "layout": "default",
+ "tasks": [
+ "readme"
+ ],
+ "plugins": [
+ "gulp-format-md"
+ ],
+ "lint": {
+ "reflinks": true
+ }
+ }
+}
diff --git a/node_modules/fraction.js/LICENSE b/node_modules/fraction.js/LICENSE
new file mode 100644
index 0000000..49057d3
--- /dev/null
+++ b/node_modules/fraction.js/LICENSE
@@ -0,0 +1,21 @@
+MIT License
+
+Copyright (c) 2017 Robert Eisele
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
diff --git a/node_modules/fraction.js/README.md b/node_modules/fraction.js/README.md
new file mode 100644
index 0000000..8ae1963
--- /dev/null
+++ b/node_modules/fraction.js/README.md
@@ -0,0 +1,492 @@
+# Fraction.js - ℚ in JavaScript
+
+[![NPM Package](https://nodei.co/npm-dl/fraction.js.png?months=6&height=1)](https://npmjs.org/package/fraction.js)
+
+[![Build Status](https://travis-ci.org/infusion/Fraction.js.svg?branch=master)](https://travis-ci.org/infusion/Fraction.js)
+[![MIT license](http://img.shields.io/badge/license-MIT-brightgreen.svg)](http://opensource.org/licenses/MIT)
+
+
+Tired of inprecise numbers represented by doubles, which have to store rational and irrational numbers like PI or sqrt(2) the same way? Obviously the following problem is preventable:
+
+```javascript
+1 / 98 * 98 // = 0.9999999999999999
+```
+
+If you need more precision or just want a fraction as a result, have a look at *Fraction.js*:
+
+```javascript
+var Fraction = require('fraction.js');
+
+Fraction(1).div(98).mul(98) // = 1
+```
+
+Internally, numbers are represented as *numerator / denominator*, which adds just a little overhead. However, the library is written with performance in mind and outperforms any other implementation, as you can see [here](http://jsperf.com/convert-a-rational-number-to-a-babylonian-fractions/28). This basic data-type makes it the perfect basis for [Polynomial.js](https://github.com/infusion/Polynomial.js) and [Math.js](https://github.com/josdejong/mathjs).
+
+Convert decimal to fraction
+===
+The simplest job for fraction.js is to get a fraction out of a decimal:
+```javascript
+var x = new Fraction(1.88);
+var res = x.toFraction(true); // String "1 22/25"
+```
+
+Examples / Motivation
+===
+A simple example might be
+
+```javascript
+var f = new Fraction("9.4'31'"); // 9.4313131313131...
+f.mul([-4, 3]).mod("4.'8'"); // 4.88888888888888...
+```
+The result is
+
+```javascript
+console.log(f.toFraction()); // -4154 / 1485
+```
+You could of course also access the sign (s), numerator (n) and denominator (d) on your own:
+```javascript
+f.s * f.n / f.d = -1 * 4154 / 1485 = -2.797306...
+```
+
+If you would try to calculate it yourself, you would come up with something like:
+
+```javascript
+(9.4313131 * (-4 / 3)) % 4.888888 = -2.797308133...
+```
+
+Quite okay, but yea - not as accurate as it could be.
+
+
+Laplace Probability
+===
+Simple example. What's the probability of throwing a 3, and 1 or 4, and 2 or 4 or 6 with a fair dice?
+
+P({3}):
+```javascript
+var p = new Fraction([3].length, 6).toString(); // 0.1(6)
+```
+
+P({1, 4}):
+```javascript
+var p = new Fraction([1, 4].length, 6).toString(); // 0.(3)
+```
+
+P({2, 4, 6}):
+```javascript
+var p = new Fraction([2, 4, 6].length, 6).toString(); // 0.5
+```
+
+Convert degrees/minutes/seconds to precise rational representation:
+===
+
+57+45/60+17/3600
+```javascript
+var deg = 57; // 57°
+var min = 45; // 45 Minutes
+var sec = 17; // 17 Seconds
+
+new Fraction(deg).add(min, 60).add(sec, 3600).toString() // -> 57.7547(2)
+```
+
+Rounding a fraction to the closest tape measure value
+===
+
+A tape measure is usually divided in parts of `1/16`. Rounding a given fraction to the closest value on a tape measure can be determined by
+
+```javascript
+function closestTapeMeasure(frac) {
+
+ /*
+ k/16 ≤ a/b < (k+1)/16
+ ⇔ k ≤ 16*a/b < (k+1)
+ ⇔ k = floor(16*a/b)
+ */
+ return new Fraction(Math.round(16 * Fraction(frac).valueOf()), 16);
+}
+// closestTapeMeasure("1/3") // 5/16
+```
+
+Rational approximation of irrational numbers
+===
+
+Now it's getting messy ;d To approximate a number like *sqrt(5) - 2* with a numerator and denominator, you can reformat the equation as follows: *pow(n / d + 2, 2) = 5*.
+
+Then the following algorithm will generate the rational number besides the binary representation.
+
+```javascript
+var x = "/", s = "";
+
+var a = new Fraction(0),
+ b = new Fraction(1);
+for (var n = 0; n <= 10; n++) {
+
+ var c = a.add(b).div(2);
+
+ console.log(n + "\t" + a + "\t" + b + "\t" + c + "\t" + x);
+
+ if (c.add(2).pow(2) < 5) {
+ a = c;
+ x = "1";
+ } else {
+ b = c;
+ x = "0";
+ }
+ s+= x;
+}
+console.log(s)
+```
+
+The result is
+
+```
+n a[n] b[n] c[n] x[n]
+0 0/1 1/1 1/2 /
+1 0/1 1/2 1/4 0
+2 0/1 1/4 1/8 0
+3 1/8 1/4 3/16 1
+4 3/16 1/4 7/32 1
+5 7/32 1/4 15/64 1
+6 15/64 1/4 31/128 1
+7 15/64 31/128 61/256 0
+8 15/64 61/256 121/512 0
+9 15/64 121/512 241/1024 0
+10 241/1024 121/512 483/2048 1
+```
+Thus the approximation after 11 iterations of the bisection method is *483 / 2048* and the binary representation is 0.00111100011 (see [WolframAlpha](http://www.wolframalpha.com/input/?i=sqrt%285%29-2+binary))
+
+
+I published another example on how to approximate PI with fraction.js on my [blog](http://www.xarg.org/2014/03/precise-calculations-in-javascript/) (Still not the best idea to approximate irrational numbers, but it illustrates the capabilities of Fraction.js perfectly).
+
+
+Get the exact fractional part of a number
+---
+```javascript
+var f = new Fraction("-6.(3416)");
+console.log("" + f.mod(1).abs()); // Will print 0.(3416)
+```
+
+Mathematical correct modulo
+---
+The behaviour on negative congruences is different to most modulo implementations in computer science. Even the *mod()* function of Fraction.js behaves in the typical way. To solve the problem of having the mathematical correct modulo with Fraction.js you could come up with this:
+
+```javascript
+var a = -1;
+var b = 10.99;
+
+console.log(new Fraction(a)
+ .mod(b)); // Not correct, usual Modulo
+
+console.log(new Fraction(a)
+ .mod(b).add(b).mod(b)); // Correct! Mathematical Modulo
+```
+
+fmod() impreciseness circumvented
+---
+It turns out that Fraction.js outperforms almost any fmod() implementation, including JavaScript itself, [php.js](http://phpjs.org/functions/fmod/), C++, Python, Java and even Wolframalpha due to the fact that numbers like 0.05, 0.1, ... are infinite decimal in base 2.
+
+The equation *fmod(4.55, 0.05)* gives *0.04999999999999957*, wolframalpha says *1/20*. The correct answer should be **zero**, as 0.05 divides 4.55 without any remainder.
+
+
+Parser
+===
+
+Any function (see below) as well as the constructor of the *Fraction* class parses its input and reduce it to the smallest term.
+
+You can pass either Arrays, Objects, Integers, Doubles or Strings.
+
+Arrays / Objects
+---
+```javascript
+new Fraction(numerator, denominator);
+new Fraction([numerator, denominator]);
+new Fraction({n: numerator, d: denominator});
+```
+
+Integers
+---
+```javascript
+new Fraction(123);
+```
+
+Doubles
+---
+```javascript
+new Fraction(55.4);
+```
+
+**Note:** If you pass a double as it is, Fraction.js will perform a number analysis based on Farey Sequences. If you concern performance, cache Fraction.js objects and pass arrays/objects.
+
+The method is really precise, but too large exact numbers, like 1234567.9991829 will result in a wrong approximation. If you want to keep the number as it is, convert it to a string, as the string parser will not perform any further observations. If you have problems with the approximation, in the file `examples/approx.js` is a different approximation algorithm, which might work better in some more specific use-cases.
+
+
+Strings
+---
+```javascript
+new Fraction("123.45");
+new Fraction("123/45"); // A rational number represented as two decimals, separated by a slash
+new Fraction("123:45"); // A rational number represented as two decimals, separated by a colon
+new Fraction("4 123/45"); // A rational number represented as a whole number and a fraction
+new Fraction("123.'456'"); // Note the quotes, see below!
+new Fraction("123.(456)"); // Note the brackets, see below!
+new Fraction("123.45'6'"); // Note the quotes, see below!
+new Fraction("123.45(6)"); // Note the brackets, see below!
+```
+
+Two arguments
+---
+```javascript
+new Fraction(3, 2); // 3/2 = 1.5
+```
+
+Repeating decimal places
+---
+*Fraction.js* can easily handle repeating decimal places. For example *1/3* is *0.3333...*. There is only one repeating digit. As you can see in the examples above, you can pass a number like *1/3* as "0.'3'" or "0.(3)", which are synonym. There are no tests to parse something like 0.166666666 to 1/6! If you really want to handle this number, wrap around brackets on your own with the function below for example: 0.1(66666666)
+
+Assume you want to divide 123.32 / 33.6(567). [WolframAlpha](http://www.wolframalpha.com/input/?i=123.32+%2F+%2812453%2F370%29) states that you'll get a period of 1776 digits. *Fraction.js* comes to the same result. Give it a try:
+
+```javascript
+var f = new Fraction("123.32");
+console.log("Bam: " + f.div("33.6(567)"));
+```
+
+To automatically make a number like "0.123123123" to something more Fraction.js friendly like "0.(123)", I hacked this little brute force algorithm in a 10 minutes. Improvements are welcome...
+
+```javascript
+function formatDecimal(str) {
+
+ var comma, pre, offset, pad, times, repeat;
+
+ if (-1 === (comma = str.indexOf(".")))
+ return str;
+
+ pre = str.substr(0, comma + 1);
+ str = str.substr(comma + 1);
+
+ for (var i = 0; i < str.length; i++) {
+
+ offset = str.substr(0, i);
+
+ for (var j = 0; j < 5; j++) {
+
+ pad = str.substr(i, j + 1);
+
+ times = Math.ceil((str.length - offset.length) / pad.length);
+
+ repeat = new Array(times + 1).join(pad); // Silly String.repeat hack
+
+ if (0 === (offset + repeat).indexOf(str)) {
+ return pre + offset + "(" + pad + ")";
+ }
+ }
+ }
+ return null;
+}
+
+var f, x = formatDecimal("13.0123123123"); // = 13.0(123)
+if (x !== null) {
+ f = new Fraction(x);
+}
+```
+
+Attributes
+===
+
+The Fraction object allows direct access to the numerator, denominator and sign attributes. It is ensured that only the sign-attribute holds sign information so that a sign comparison is only necessary against this attribute.
+
+```javascript
+var f = new Fraction('-1/2');
+console.log(f.n); // Numerator: 1
+console.log(f.d); // Denominator: 2
+console.log(f.s); // Sign: -1
+```
+
+
+Functions
+===
+
+Fraction abs()
+---
+Returns the actual number without any sign information
+
+Fraction neg()
+---
+Returns the actual number with flipped sign in order to get the additive inverse
+
+Fraction add(n)
+---
+Returns the sum of the actual number and the parameter n
+
+Fraction sub(n)
+---
+Returns the difference of the actual number and the parameter n
+
+Fraction mul(n)
+---
+Returns the product of the actual number and the parameter n
+
+Fraction div(n)
+---
+Returns the quotient of the actual number and the parameter n
+
+Fraction pow(exp)
+---
+Returns the power of the actual number, raised to an possible rational exponent. If the result becomes non-rational the function returns `null`.
+
+Fraction mod(n)
+---
+Returns the modulus (rest of the division) of the actual object and n (this % n). It's a much more precise [fmod()](#fmod-impreciseness-circumvented) if you will. Please note that *mod()* is just like the modulo operator of most programming languages. If you want a mathematical correct modulo, see [here](#mathematical-correct-modulo).
+
+Fraction mod()
+---
+Returns the modulus (rest of the division) of the actual object (numerator mod denominator)
+
+Fraction gcd(n)
+---
+Returns the fractional greatest common divisor
+
+Fraction lcm(n)
+---
+Returns the fractional least common multiple
+
+Fraction ceil([places=0-16])
+---
+Returns the ceiling of a rational number with Math.ceil
+
+Fraction floor([places=0-16])
+---
+Returns the floor of a rational number with Math.floor
+
+Fraction round([places=0-16])
+---
+Returns the rational number rounded with Math.round
+
+Fraction inverse()
+---
+Returns the multiplicative inverse of the actual number (n / d becomes d / n) in order to get the reciprocal
+
+Fraction simplify([eps=0.001])
+---
+Simplifies the rational number under a certain error threshold. Ex. `0.333` will be `1/3` with `eps=0.001`
+
+boolean equals(n)
+---
+Check if two numbers are equal
+
+int compare(n)
+---
+Compare two numbers.
+```
+result < 0: n is greater than actual number
+result > 0: n is smaller than actual number
+result = 0: n is equal to the actual number
+```
+
+boolean divisible(n)
+---
+Check if two numbers are divisible (n divides this)
+
+double valueOf()
+---
+Returns a decimal representation of the fraction
+
+String toString([decimalPlaces=15])
+---
+Generates an exact string representation of the actual object. For repeated decimal places all digits are collected within brackets, like `1/3 = "0.(3)"`. For all other numbers, up to `decimalPlaces` significant digits are collected - which includes trailing zeros if the number is getting truncated. However, `1/2 = "0.5"` without trailing zeros of course.
+
+**Note:** As `valueOf()` and `toString()` are provided, `toString()` is only called implicitly in a real string context. Using the plus-operator like `"123" + new Fraction` will call valueOf(), because JavaScript tries to combine two primitives first and concatenates them later, as string will be the more dominant type. `alert(new Fraction)` or `String(new Fraction)` on the other hand will do what you expect. If you really want to have control, you should call `toString()` or `valueOf()` explicitly!
+
+String toLatex(excludeWhole=false)
+---
+Generates an exact LaTeX representation of the actual object. You can see a [live demo](http://www.xarg.org/2014/03/precise-calculations-in-javascript/) on my blog.
+
+The optional boolean parameter indicates if you want to exclude the whole part. "1 1/3" instead of "4/3"
+
+String toFraction(excludeWhole=false)
+---
+Gets a string representation of the fraction
+
+The optional boolean parameter indicates if you want to exclude the whole part. "1 1/3" instead of "4/3"
+
+Array toContinued()
+---
+Gets an array of the fraction represented as a continued fraction. The first element always contains the whole part.
+
+```javascript
+var f = new Fraction('88/33');
+var c = f.toContinued(); // [2, 1, 2]
+```
+
+Fraction clone()
+---
+Creates a copy of the actual Fraction object
+
+
+Exceptions
+===
+If a really hard error occurs (parsing error, division by zero), *fraction.js* throws exceptions! Please make sure you handle them correctly.
+
+
+
+Installation
+===
+Installing fraction.js is as easy as cloning this repo or use one of the following commands:
+
+```
+bower install fraction.js
+```
+or
+
+```
+npm install fraction.js
+```
+
+Using Fraction.js with the browser
+===
+```html
+
+
+```
+
+Using Fraction.js with require.js
+===
+```html
+
+
+```
+
+Using Fraction.js with TypeScript
+===
+```js
+import Fraction from "fraction.js";
+console.log(Fraction("123/456"));
+```
+
+Coding Style
+===
+As every library I publish, fraction.js is also built to be as small as possible after compressing it with Google Closure Compiler in advanced mode. Thus the coding style orientates a little on maxing-out the compression rate. Please make sure you keep this style if you plan to extend the library.
+
+
+Precision
+===
+Fraction.js tries to circumvent floating point errors, by having an internal representation of numerator and denominator. As it relies on JavaScript, there is also a limit. The biggest number representable is `Number.MAX_SAFE_INTEGER / 1` and the smallest is `-1 / Number.MAX_SAFE_INTEGER`, with `Number.MAX_SAFE_INTEGER=9007199254740991`. If this is not enough, there is `bigfraction.js` shipped experimentally, which relies on `BigInt` and should become the new Fraction.js eventually.
+
+Testing
+===
+If you plan to enhance the library, make sure you add test cases and all the previous tests are passing. You can test the library with
+
+```
+npm test
+```
+
+
+Copyright and licensing
+===
+Copyright (c) 2014-2019, [Robert Eisele](https://www.xarg.org/)
+Dual licensed under the MIT or GPL Version 2 licenses.
diff --git a/node_modules/fraction.js/bigfraction.js b/node_modules/fraction.js/bigfraction.js
new file mode 100644
index 0000000..2e504d7
--- /dev/null
+++ b/node_modules/fraction.js/bigfraction.js
@@ -0,0 +1,895 @@
+/**
+ * @license Fraction.js v4.2.0 23/05/2021
+ * https://www.xarg.org/2014/03/rational-numbers-in-javascript/
+ *
+ * Copyright (c) 2021, Robert Eisele (robert@xarg.org)
+ * Dual licensed under the MIT or GPL Version 2 licenses.
+ **/
+
+
+/**
+ *
+ * This class offers the possibility to calculate fractions.
+ * You can pass a fraction in different formats. Either as array, as double, as string or as an integer.
+ *
+ * Array/Object form
+ * [ 0 => , 1 => ]
+ * [ n => , d => ]
+ *
+ * Integer form
+ * - Single integer value
+ *
+ * Double form
+ * - Single double value
+ *
+ * String form
+ * 123.456 - a simple double
+ * 123/456 - a string fraction
+ * 123.'456' - a double with repeating decimal places
+ * 123.(456) - synonym
+ * 123.45'6' - a double with repeating last place
+ * 123.45(6) - synonym
+ *
+ * Example:
+ *
+ * let f = new Fraction("9.4'31'");
+ * f.mul([-4, 3]).div(4.9);
+ *
+ */
+
+(function(root) {
+
+ "use strict";
+
+ // Set Identity function to downgrade BigInt to Number if needed
+ if (!BigInt) BigInt = function(n) { if (isNaN(n)) throw new Error(""); return n; };
+
+ const C_ONE = BigInt(1);
+ const C_ZERO = BigInt(0);
+ const C_TEN = BigInt(10);
+ const C_TWO = BigInt(2);
+ const C_FIVE = BigInt(5);
+
+ // Maximum search depth for cyclic rational numbers. 2000 should be more than enough.
+ // Example: 1/7 = 0.(142857) has 6 repeating decimal places.
+ // If MAX_CYCLE_LEN gets reduced, long cycles will not be detected and toString() only gets the first 10 digits
+ const MAX_CYCLE_LEN = 2000;
+
+ // Parsed data to avoid calling "new" all the time
+ const P = {
+ "s": C_ONE,
+ "n": C_ZERO,
+ "d": C_ONE
+ };
+
+ function assign(n, s) {
+
+ try {
+ n = BigInt(n);
+ } catch (e) {
+ throw Fraction['InvalidParameter'];
+ }
+ return n * s;
+ }
+
+ // Creates a new Fraction internally without the need of the bulky constructor
+ function newFraction(n, d) {
+
+ if (d === C_ZERO) {
+ throw Fraction['DivisionByZero'];
+ }
+
+ const f = Object.create(Fraction.prototype);
+ f["s"] = n < C_ZERO ? -C_ONE : C_ONE;
+
+ n = n < C_ZERO ? -n : n;
+
+ const a = gcd(n, d);
+
+ f["n"] = n / a;
+ f["d"] = d / a;
+ return f;
+ }
+
+ function factorize(num) {
+
+ const factors = {};
+
+ let n = num;
+ let i = C_TWO;
+ let s = C_FIVE - C_ONE;
+
+ while (s <= n) {
+
+ while (n % i === C_ZERO) {
+ n/= i;
+ factors[i] = (factors[i] || C_ZERO) + C_ONE;
+ }
+ s+= C_ONE + C_TWO * i++;
+ }
+
+ if (n !== num) {
+ if (n > 1)
+ factors[n] = (factors[n] || C_ZERO) + C_ONE;
+ } else {
+ factors[num] = (factors[num] || C_ZERO) + C_ONE;
+ }
+ return factors;
+ }
+
+ const parse = function(p1, p2) {
+
+ let n = C_ZERO, d = C_ONE, s = C_ONE;
+
+ if (p1 === undefined || p1 === null) {
+ /* void */
+ } else if (p2 !== undefined) {
+ n = BigInt(p1);
+ d = BigInt(p2);
+ s = n * d;
+
+ if (n % C_ONE !== C_ZERO || d % C_ONE !== C_ZERO) {
+ throw Fraction['NonIntegerParameter'];
+ }
+
+ } else if (typeof p1 === "object") {
+ if ("d" in p1 && "n" in p1) {
+ n = BigInt(p1["n"]);
+ d = BigInt(p1["d"]);
+ if ("s" in p1)
+ n*= BigInt(p1["s"]);
+ } else if (0 in p1) {
+ n = BigInt(p1[0]);
+ if (1 in p1)
+ d = BigInt(p1[1]);
+ } else if (p1 instanceof BigInt) {
+ n = BigInt(p1);
+ } else {
+ throw Fraction['InvalidParameter'];
+ }
+ s = n * d;
+ } else if (typeof p1 === "bigint") {
+ n = p1;
+ s = p1;
+ d = BigInt(1);
+ } else if (typeof p1 === "number") {
+
+ if (isNaN(p1)) {
+ throw Fraction['InvalidParameter'];
+ }
+
+ if (p1 < 0) {
+ s = -C_ONE;
+ p1 = -p1;
+ }
+
+ if (p1 % 1 === 0) {
+ n = BigInt(p1);
+ } else if (p1 > 0) { // check for != 0, scale would become NaN (log(0)), which converges really slow
+
+ let z = 1;
+
+ let A = 0, B = 1;
+ let C = 1, D = 1;
+
+ let N = 10000000;
+
+ if (p1 >= 1) {
+ z = 10 ** Math.floor(1 + Math.log10(p1));
+ p1/= z;
+ }
+
+ // Using Farey Sequences
+
+ while (B <= N && D <= N) {
+ let M = (A + C) / (B + D);
+
+ if (p1 === M) {
+ if (B + D <= N) {
+ n = A + C;
+ d = B + D;
+ } else if (D > B) {
+ n = C;
+ d = D;
+ } else {
+ n = A;
+ d = B;
+ }
+ break;
+
+ } else {
+
+ if (p1 > M) {
+ A+= C;
+ B+= D;
+ } else {
+ C+= A;
+ D+= B;
+ }
+
+ if (B > N) {
+ n = C;
+ d = D;
+ } else {
+ n = A;
+ d = B;
+ }
+ }
+ }
+ n = BigInt(n) * BigInt(z);
+ d = BigInt(d);
+
+ }
+
+ } else if (typeof p1 === "string") {
+
+ let ndx = 0;
+
+ let v = C_ZERO, w = C_ZERO, x = C_ZERO, y = C_ONE, z = C_ONE;
+
+ let match = p1.match(/\d+|./g);
+
+ if (match === null)
+ throw Fraction['InvalidParameter'];
+
+ if (match[ndx] === '-') {// Check for minus sign at the beginning
+ s = -C_ONE;
+ ndx++;
+ } else if (match[ndx] === '+') {// Check for plus sign at the beginning
+ ndx++;
+ }
+
+ if (match.length === ndx + 1) { // Check if it's just a simple number "1234"
+ w = assign(match[ndx++], s);
+ } else if (match[ndx + 1] === '.' || match[ndx] === '.') { // Check if it's a decimal number
+
+ if (match[ndx] !== '.') { // Handle 0.5 and .5
+ v = assign(match[ndx++], s);
+ }
+ ndx++;
+
+ // Check for decimal places
+ if (ndx + 1 === match.length || match[ndx + 1] === '(' && match[ndx + 3] === ')' || match[ndx + 1] === "'" && match[ndx + 3] === "'") {
+ w = assign(match[ndx], s);
+ y = C_TEN ** BigInt(match[ndx].length);
+ ndx++;
+ }
+
+ // Check for repeating places
+ if (match[ndx] === '(' && match[ndx + 2] === ')' || match[ndx] === "'" && match[ndx + 2] === "'") {
+ x = assign(match[ndx + 1], s);
+ z = C_TEN ** BigInt(match[ndx + 1].length) - C_ONE;
+ ndx+= 3;
+ }
+
+ } else if (match[ndx + 1] === '/' || match[ndx + 1] === ':') { // Check for a simple fraction "123/456" or "123:456"
+ w = assign(match[ndx], s);
+ y = assign(match[ndx + 2], C_ONE);
+ ndx+= 3;
+ } else if (match[ndx + 3] === '/' && match[ndx + 1] === ' ') { // Check for a complex fraction "123 1/2"
+ v = assign(match[ndx], s);
+ w = assign(match[ndx + 2], s);
+ y = assign(match[ndx + 4], C_ONE);
+ ndx+= 5;
+ }
+
+ if (match.length <= ndx) { // Check for more tokens on the stack
+ d = y * z;
+ s = /* void */
+ n = x + d * v + z * w;
+ } else {
+ throw Fraction['InvalidParameter'];
+ }
+
+ } else {
+ throw Fraction['InvalidParameter'];
+ }
+
+ if (d === C_ZERO) {
+ throw Fraction['DivisionByZero'];
+ }
+
+ P["s"] = s < C_ZERO ? -C_ONE : C_ONE;
+ P["n"] = n < C_ZERO ? -n : n;
+ P["d"] = d < C_ZERO ? -d : d;
+ };
+
+ function modpow(b, e, m) {
+
+ let r = C_ONE;
+ for (; e > C_ZERO; b = (b * b) % m, e >>= C_ONE) {
+
+ if (e & C_ONE) {
+ r = (r * b) % m;
+ }
+ }
+ return r;
+ }
+
+ function cycleLen(n, d) {
+
+ for (; d % C_TWO === C_ZERO;
+ d/= C_TWO) {
+ }
+
+ for (; d % C_FIVE === C_ZERO;
+ d/= C_FIVE) {
+ }
+
+ if (d === C_ONE) // Catch non-cyclic numbers
+ return C_ZERO;
+
+ // If we would like to compute really large numbers quicker, we could make use of Fermat's little theorem:
+ // 10^(d-1) % d == 1
+ // However, we don't need such large numbers and MAX_CYCLE_LEN should be the capstone,
+ // as we want to translate the numbers to strings.
+
+ let rem = C_TEN % d;
+ let t = 1;
+
+ for (; rem !== C_ONE; t++) {
+ rem = rem * C_TEN % d;
+
+ if (t > MAX_CYCLE_LEN)
+ return C_ZERO; // Returning 0 here means that we don't print it as a cyclic number. It's likely that the answer is `d-1`
+ }
+ return BigInt(t);
+ }
+
+ function cycleStart(n, d, len) {
+
+ let rem1 = C_ONE;
+ let rem2 = modpow(C_TEN, len, d);
+
+ for (let t = 0; t < 300; t++) { // s < ~log10(Number.MAX_VALUE)
+ // Solve 10^s == 10^(s+t) (mod d)
+
+ if (rem1 === rem2)
+ return BigInt(t);
+
+ rem1 = rem1 * C_TEN % d;
+ rem2 = rem2 * C_TEN % d;
+ }
+ return 0;
+ }
+
+ function gcd(a, b) {
+
+ if (!a)
+ return b;
+ if (!b)
+ return a;
+
+ while (1) {
+ a%= b;
+ if (!a)
+ return b;
+ b%= a;
+ if (!b)
+ return a;
+ }
+ }
+
+ /**
+ * Module constructor
+ *
+ * @constructor
+ * @param {number|Fraction=} a
+ * @param {number=} b
+ */
+ function Fraction(a, b) {
+
+ parse(a, b);
+
+ if (this instanceof Fraction) {
+ a = gcd(P["d"], P["n"]); // Abuse a
+ this["s"] = P["s"];
+ this["n"] = P["n"] / a;
+ this["d"] = P["d"] / a;
+ } else {
+ return newFraction(P['s'] * P['n'], P['d']);
+ }
+ }
+
+ Fraction['DivisionByZero'] = new Error("Division by Zero");
+ Fraction['InvalidParameter'] = new Error("Invalid argument");
+ Fraction['NonIntegerParameter'] = new Error("Parameters must be integer");
+
+ Fraction.prototype = {
+
+ "s": C_ONE,
+ "n": C_ZERO,
+ "d": C_ONE,
+
+ /**
+ * Calculates the absolute value
+ *
+ * Ex: new Fraction(-4).abs() => 4
+ **/
+ "abs": function() {
+
+ return newFraction(this["n"], this["d"]);
+ },
+
+ /**
+ * Inverts the sign of the current fraction
+ *
+ * Ex: new Fraction(-4).neg() => 4
+ **/
+ "neg": function() {
+
+ return newFraction(-this["s"] * this["n"], this["d"]);
+ },
+
+ /**
+ * Adds two rational numbers
+ *
+ * Ex: new Fraction({n: 2, d: 3}).add("14.9") => 467 / 30
+ **/
+ "add": function(a, b) {
+
+ parse(a, b);
+ return newFraction(
+ this["s"] * this["n"] * P["d"] + P["s"] * this["d"] * P["n"],
+ this["d"] * P["d"]
+ );
+ },
+
+ /**
+ * Subtracts two rational numbers
+ *
+ * Ex: new Fraction({n: 2, d: 3}).add("14.9") => -427 / 30
+ **/
+ "sub": function(a, b) {
+
+ parse(a, b);
+ return newFraction(
+ this["s"] * this["n"] * P["d"] - P["s"] * this["d"] * P["n"],
+ this["d"] * P["d"]
+ );
+ },
+
+ /**
+ * Multiplies two rational numbers
+ *
+ * Ex: new Fraction("-17.(345)").mul(3) => 5776 / 111
+ **/
+ "mul": function(a, b) {
+
+ parse(a, b);
+ return newFraction(
+ this["s"] * P["s"] * this["n"] * P["n"],
+ this["d"] * P["d"]
+ );
+ },
+
+ /**
+ * Divides two rational numbers
+ *
+ * Ex: new Fraction("-17.(345)").inverse().div(3)
+ **/
+ "div": function(a, b) {
+
+ parse(a, b);
+ return newFraction(
+ this["s"] * P["s"] * this["n"] * P["d"],
+ this["d"] * P["n"]
+ );
+ },
+
+ /**
+ * Clones the actual object
+ *
+ * Ex: new Fraction("-17.(345)").clone()
+ **/
+ "clone": function() {
+ return newFraction(this['s'] * this['n'], this['d']);
+ },
+
+ /**
+ * Calculates the modulo of two rational numbers - a more precise fmod
+ *
+ * Ex: new Fraction('4.(3)').mod([7, 8]) => (13/3) % (7/8) = (5/6)
+ **/
+ "mod": function(a, b) {
+
+ if (a === undefined) {
+ return newFraction(this["s"] * this["n"] % this["d"], C_ONE);
+ }
+
+ parse(a, b);
+ if (0 === P["n"] && 0 === this["d"]) {
+ throw Fraction['DivisionByZero'];
+ }
+
+ /*
+ * First silly attempt, kinda slow
+ *
+ return that["sub"]({
+ "n": num["n"] * Math.floor((this.n / this.d) / (num.n / num.d)),
+ "d": num["d"],
+ "s": this["s"]
+ });*/
+
+ /*
+ * New attempt: a1 / b1 = a2 / b2 * q + r
+ * => b2 * a1 = a2 * b1 * q + b1 * b2 * r
+ * => (b2 * a1 % a2 * b1) / (b1 * b2)
+ */
+ return newFraction(
+ this["s"] * (P["d"] * this["n"]) % (P["n"] * this["d"]),
+ P["d"] * this["d"]
+ );
+ },
+
+ /**
+ * Calculates the fractional gcd of two rational numbers
+ *
+ * Ex: new Fraction(5,8).gcd(3,7) => 1/56
+ */
+ "gcd": function(a, b) {
+
+ parse(a, b);
+
+ // gcd(a / b, c / d) = gcd(a, c) / lcm(b, d)
+
+ return newFraction(gcd(P["n"], this["n"]) * gcd(P["d"], this["d"]), P["d"] * this["d"]);
+ },
+
+ /**
+ * Calculates the fractional lcm of two rational numbers
+ *
+ * Ex: new Fraction(5,8).lcm(3,7) => 15
+ */
+ "lcm": function(a, b) {
+
+ parse(a, b);
+
+ // lcm(a / b, c / d) = lcm(a, c) / gcd(b, d)
+
+ if (P["n"] === C_ZERO && this["n"] === C_ZERO) {
+ return newFraction(C_ZERO, C_ONE);
+ }
+ return newFraction(P["n"] * this["n"], gcd(P["n"], this["n"]) * gcd(P["d"], this["d"]));
+ },
+
+ /**
+ * Gets the inverse of the fraction, means numerator and denominator are exchanged
+ *
+ * Ex: new Fraction([-3, 4]).inverse() => -4 / 3
+ **/
+ "inverse": function() {
+ return newFraction(this["s"] * this["d"], this["n"]);
+ },
+
+ /**
+ * Calculates the fraction to some integer exponent
+ *
+ * Ex: new Fraction(-1,2).pow(-3) => -8
+ */
+ "pow": function(a, b) {
+
+ parse(a, b);
+
+ // Trivial case when exp is an integer
+
+ if (P['d'] === C_ONE) {
+
+ if (P['s'] < C_ZERO) {
+ return newFraction((this['s'] * this["d"]) ** P['n'], this["n"] ** P['n']);
+ } else {
+ return newFraction((this['s'] * this["n"]) ** P['n'], this["d"] ** P['n']);
+ }
+ }
+
+ // Negative roots become complex
+ // (-a/b)^(c/d) = x
+ // <=> (-1)^(c/d) * (a/b)^(c/d) = x
+ // <=> (cos(pi) + i*sin(pi))^(c/d) * (a/b)^(c/d) = x
+ // <=> (cos(c*pi/d) + i*sin(c*pi/d)) * (a/b)^(c/d) = x # DeMoivre's formula
+ // From which follows that only for c=0 the root is non-complex
+ if (this['s'] < C_ZERO) return null;
+
+ // Now prime factor n and d
+ let N = factorize(this['n']);
+ let D = factorize(this['d']);
+
+ // Exponentiate and take root for n and d individually
+ let n = C_ONE;
+ let d = C_ONE;
+ for (let k in N) {
+ if (k === '1') continue;
+ if (k === '0') {
+ n = C_ZERO;
+ break;
+ }
+ N[k]*= P['n'];
+
+ if (N[k] % P['d'] === C_ZERO) {
+ N[k]/= P['d'];
+ } else return null;
+ n*= BigInt(k) ** N[k];
+ }
+
+ for (let k in D) {
+ if (k === '1') continue;
+ D[k]*= P['n'];
+
+ if (D[k] % P['d'] === C_ZERO) {
+ D[k]/= P['d'];
+ } else return null;
+ d*= BigInt(k) ** D[k];
+ }
+
+ if (P['s'] < C_ZERO) {
+ return newFraction(d, n);
+ }
+ return newFraction(n, d);
+ },
+
+ /**
+ * Check if two rational numbers are the same
+ *
+ * Ex: new Fraction(19.6).equals([98, 5]);
+ **/
+ "equals": function(a, b) {
+
+ parse(a, b);
+ return this["s"] * this["n"] * P["d"] === P["s"] * P["n"] * this["d"]; // Same as compare() === 0
+ },
+
+ /**
+ * Check if two rational numbers are the same
+ *
+ * Ex: new Fraction(19.6).equals([98, 5]);
+ **/
+ "compare": function(a, b) {
+
+ parse(a, b);
+ let t = (this["s"] * this["n"] * P["d"] - P["s"] * P["n"] * this["d"]);
+
+ return (C_ZERO < t) - (t < C_ZERO);
+ },
+
+ /**
+ * Calculates the ceil of a rational number
+ *
+ * Ex: new Fraction('4.(3)').ceil() => (5 / 1)
+ **/
+ "ceil": function(places) {
+
+ places = C_TEN ** BigInt(places || 0);
+
+ return newFraction(this["s"] * places * this["n"] / this["d"] +
+ (places * this["n"] % this["d"] > C_ZERO && this["s"] >= C_ZERO ? C_ONE : C_ZERO),
+ places);
+ },
+
+ /**
+ * Calculates the floor of a rational number
+ *
+ * Ex: new Fraction('4.(3)').floor() => (4 / 1)
+ **/
+ "floor": function(places) {
+
+ places = C_TEN ** BigInt(places || 0);
+
+ return newFraction(this["s"] * places * this["n"] / this["d"] -
+ (places * this["n"] % this["d"] > C_ZERO && this["s"] < C_ZERO ? C_ONE : C_ZERO),
+ places);
+ },
+
+ /**
+ * Rounds a rational numbers
+ *
+ * Ex: new Fraction('4.(3)').round() => (4 / 1)
+ **/
+ "round": function(places) {
+
+ places = C_TEN ** BigInt(places || 0);
+
+ /* Derivation:
+
+ s >= 0:
+ round(n / d) = trunc(n / d) + (n % d) / d >= 0.5 ? 1 : 0
+ = trunc(n / d) + 2(n % d) >= d ? 1 : 0
+ s < 0:
+ round(n / d) =-trunc(n / d) - (n % d) / d > 0.5 ? 1 : 0
+ =-trunc(n / d) - 2(n % d) > d ? 1 : 0
+
+ =>:
+
+ round(s * n / d) = s * trunc(n / d) + s * (C + 2(n % d) > d ? 1 : 0)
+ where C = s >= 0 ? 1 : 0, to fix the >= for the positve case.
+ */
+
+ return newFraction(this["s"] * places * this["n"] / this["d"] +
+ this["s"] * ((this["s"] >= C_ZERO ? C_ONE : C_ZERO) + C_TWO * (places * this["n"] % this["d"]) > this["d"] ? C_ONE : C_ZERO),
+ places);
+ },
+
+ /**
+ * Check if two rational numbers are divisible
+ *
+ * Ex: new Fraction(19.6).divisible(1.5);
+ */
+ "divisible": function(a, b) {
+
+ parse(a, b);
+ return !(!(P["n"] * this["d"]) || ((this["n"] * P["d"]) % (P["n"] * this["d"])));
+ },
+
+ /**
+ * Returns a decimal representation of the fraction
+ *
+ * Ex: new Fraction("100.'91823'").valueOf() => 100.91823918239183
+ **/
+ 'valueOf': function() {
+ // Best we can do so far
+ return Number(this["s"] * this["n"]) / Number(this["d"]);
+ },
+
+ /**
+ * Creates a string representation of a fraction with all digits
+ *
+ * Ex: new Fraction("100.'91823'").toString() => "100.(91823)"
+ **/
+ 'toString': function(dec) {
+
+ let N = this["n"];
+ let D = this["d"];
+
+ dec = dec || 15; // 15 = decimal places when no repitation
+
+ let cycLen = cycleLen(N, D); // Cycle length
+ let cycOff = cycleStart(N, D, cycLen); // Cycle start
+
+ let str = this['s'] < C_ZERO ? "-" : "";
+
+ // Append integer part
+ str+= N / D;
+
+ N%= D;
+ N*= C_TEN;
+
+ if (N)
+ str+= ".";
+
+ if (cycLen) {
+
+ for (let i = cycOff; i--;) {
+ str+= N / D;
+ N%= D;
+ N*= C_TEN;
+ }
+ str+= "(";
+ for (let i = cycLen; i--;) {
+ str+= N / D;
+ N%= D;
+ N*= C_TEN;
+ }
+ str+= ")";
+ } else {
+ for (let i = dec; N && i--;) {
+ str+= N / D;
+ N%= D;
+ N*= C_TEN;
+ }
+ }
+ return str;
+ },
+
+ /**
+ * Returns a string-fraction representation of a Fraction object
+ *
+ * Ex: new Fraction("1.'3'").toFraction() => "4 1/3"
+ **/
+ 'toFraction': function(excludeWhole) {
+
+ let n = this["n"];
+ let d = this["d"];
+ let str = this['s'] < C_ZERO ? "-" : "";
+
+ if (d === C_ONE) {
+ str+= n;
+ } else {
+ let whole = n / d;
+ if (excludeWhole && whole > C_ZERO) {
+ str+= whole;
+ str+= " ";
+ n%= d;
+ }
+
+ str+= n;
+ str+= '/';
+ str+= d;
+ }
+ return str;
+ },
+
+ /**
+ * Returns a latex representation of a Fraction object
+ *
+ * Ex: new Fraction("1.'3'").toLatex() => "\frac{4}{3}"
+ **/
+ 'toLatex': function(excludeWhole) {
+
+ let n = this["n"];
+ let d = this["d"];
+ let str = this['s'] < C_ZERO ? "-" : "";
+
+ if (d === C_ONE) {
+ str+= n;
+ } else {
+ let whole = n / d;
+ if (excludeWhole && whole > C_ZERO) {
+ str+= whole;
+ n%= d;
+ }
+
+ str+= "\\frac{";
+ str+= n;
+ str+= '}{';
+ str+= d;
+ str+= '}';
+ }
+ return str;
+ },
+
+ /**
+ * Returns an array of continued fraction elements
+ *
+ * Ex: new Fraction("7/8").toContinued() => [0,1,7]
+ */
+ 'toContinued': function() {
+
+ let a = this['n'];
+ let b = this['d'];
+ let res = [];
+
+ do {
+ res.push(a / b);
+ let t = a % b;
+ a = b;
+ b = t;
+ } while (a !== C_ONE);
+
+ return res;
+ },
+
+ "simplify": function(eps) {
+
+ eps = eps || 0.001;
+
+ const thisABS = this['abs']();
+ const cont = thisABS['toContinued']();
+
+ for (let i = 1; i < cont.length; i++) {
+
+ let s = newFraction(cont[i - 1], C_ONE);
+ for (let k = i - 2; k >= 0; k--) {
+ s = s['inverse']()['add'](cont[k]);
+ }
+
+ if (s['sub'](thisABS)['abs']().valueOf() < eps) {
+ return s['mul'](this['s']);
+ }
+ }
+ return this;
+ }
+ };
+
+ if (typeof define === "function" && define["amd"]) {
+ define([], function() {
+ return Fraction;
+ });
+ } else if (typeof exports === "object") {
+ Object.defineProperty(exports, "__esModule", { 'value': true });
+ Fraction['default'] = Fraction;
+ Fraction['Fraction'] = Fraction;
+ module['exports'] = Fraction;
+ } else {
+ root['Fraction'] = Fraction;
+ }
+
+})(this);
diff --git a/node_modules/fraction.js/fraction.d.ts b/node_modules/fraction.js/fraction.d.ts
new file mode 100644
index 0000000..e62cfe1
--- /dev/null
+++ b/node_modules/fraction.js/fraction.d.ts
@@ -0,0 +1,60 @@
+declare module 'Fraction';
+
+export interface NumeratorDenominator {
+ n: number;
+ d: number;
+}
+
+type FractionConstructor = {
+ (fraction: Fraction): Fraction;
+ (num: number | string): Fraction;
+ (numerator: number, denominator: number): Fraction;
+ (numbers: [number | string, number | string]): Fraction;
+ (fraction: NumeratorDenominator): Fraction;
+ (firstValue: Fraction | number | string | [number | string, number | string] | NumeratorDenominator, secondValue?: number): Fraction;
+};
+
+export default class Fraction {
+ constructor (fraction: Fraction);
+ constructor (num: number | string);
+ constructor (numerator: number, denominator: number);
+ constructor (numbers: [number | string, number | string]);
+ constructor (fraction: NumeratorDenominator);
+ constructor (firstValue: Fraction | number | string | [number | string, number | string] | NumeratorDenominator, secondValue?: number);
+
+ s: number;
+ n: number;
+ d: number;
+
+ abs(): Fraction;
+ neg(): Fraction;
+
+ add: FractionConstructor;
+ sub: FractionConstructor;
+ mul: FractionConstructor;
+ div: FractionConstructor;
+ pow: FractionConstructor;
+ gcd: FractionConstructor;
+ lcm: FractionConstructor;
+
+ mod(n?: number | string | Fraction): Fraction;
+
+ ceil(places?: number): Fraction;
+ floor(places?: number): Fraction;
+ round(places?: number): Fraction;
+
+ inverse(): Fraction;
+
+ simplify(eps?: number): Fraction;
+
+ equals(n: number | string | Fraction): boolean;
+ compare(n: number | string | Fraction): number;
+ divisible(n: number | string | Fraction): boolean;
+
+ valueOf(): number;
+ toString(decimalPlaces?: number): string;
+ toLatex(excludeWhole?: boolean): string;
+ toFraction(excludeWhole?: boolean): string;
+ toContinued(): number[];
+ clone(): Fraction;
+}
diff --git a/node_modules/fraction.js/fraction.js b/node_modules/fraction.js/fraction.js
new file mode 100644
index 0000000..82d05d2
--- /dev/null
+++ b/node_modules/fraction.js/fraction.js
@@ -0,0 +1,891 @@
+/**
+ * @license Fraction.js v4.2.0 05/03/2022
+ * https://www.xarg.org/2014/03/rational-numbers-in-javascript/
+ *
+ * Copyright (c) 2021, Robert Eisele (robert@xarg.org)
+ * Dual licensed under the MIT or GPL Version 2 licenses.
+ **/
+
+
+/**
+ *
+ * This class offers the possibility to calculate fractions.
+ * You can pass a fraction in different formats. Either as array, as double, as string or as an integer.
+ *
+ * Array/Object form
+ * [ 0 => , 1 => ]
+ * [ n => , d => ]
+ *
+ * Integer form
+ * - Single integer value
+ *
+ * Double form
+ * - Single double value
+ *
+ * String form
+ * 123.456 - a simple double
+ * 123/456 - a string fraction
+ * 123.'456' - a double with repeating decimal places
+ * 123.(456) - synonym
+ * 123.45'6' - a double with repeating last place
+ * 123.45(6) - synonym
+ *
+ * Example:
+ *
+ * var f = new Fraction("9.4'31'");
+ * f.mul([-4, 3]).div(4.9);
+ *
+ */
+
+(function(root) {
+
+ "use strict";
+
+ // Maximum search depth for cyclic rational numbers. 2000 should be more than enough.
+ // Example: 1/7 = 0.(142857) has 6 repeating decimal places.
+ // If MAX_CYCLE_LEN gets reduced, long cycles will not be detected and toString() only gets the first 10 digits
+ var MAX_CYCLE_LEN = 2000;
+
+ // Parsed data to avoid calling "new" all the time
+ var P = {
+ "s": 1,
+ "n": 0,
+ "d": 1
+ };
+
+ function assign(n, s) {
+
+ if (isNaN(n = parseInt(n, 10))) {
+ throw Fraction['InvalidParameter'];
+ }
+ return n * s;
+ }
+
+ // Creates a new Fraction internally without the need of the bulky constructor
+ function newFraction(n, d) {
+
+ if (d === 0) {
+ throw Fraction['DivisionByZero'];
+ }
+
+ var f = Object.create(Fraction.prototype);
+ f["s"] = n < 0 ? -1 : 1;
+
+ n = n < 0 ? -n : n;
+
+ var a = gcd(n, d);
+
+ f["n"] = n / a;
+ f["d"] = d / a;
+ return f;
+ }
+
+ function factorize(num) {
+
+ var factors = {};
+
+ var n = num;
+ var i = 2;
+ var s = 4;
+
+ while (s <= n) {
+
+ while (n % i === 0) {
+ n/= i;
+ factors[i] = (factors[i] || 0) + 1;
+ }
+ s+= 1 + 2 * i++;
+ }
+
+ if (n !== num) {
+ if (n > 1)
+ factors[n] = (factors[n] || 0) + 1;
+ } else {
+ factors[num] = (factors[num] || 0) + 1;
+ }
+ return factors;
+ }
+
+ var parse = function(p1, p2) {
+
+ var n = 0, d = 1, s = 1;
+ var v = 0, w = 0, x = 0, y = 1, z = 1;
+
+ var A = 0, B = 1;
+ var C = 1, D = 1;
+
+ var N = 10000000;
+ var M;
+
+ if (p1 === undefined || p1 === null) {
+ /* void */
+ } else if (p2 !== undefined) {
+ n = p1;
+ d = p2;
+ s = n * d;
+
+ if (n % 1 !== 0 || d % 1 !== 0) {
+ throw Fraction['NonIntegerParameter'];
+ }
+
+ } else
+ switch (typeof p1) {
+
+ case "object":
+ {
+ if ("d" in p1 && "n" in p1) {
+ n = p1["n"];
+ d = p1["d"];
+ if ("s" in p1)
+ n*= p1["s"];
+ } else if (0 in p1) {
+ n = p1[0];
+ if (1 in p1)
+ d = p1[1];
+ } else {
+ throw Fraction['InvalidParameter'];
+ }
+ s = n * d;
+ break;
+ }
+ case "number":
+ {
+ if (p1 < 0) {
+ s = p1;
+ p1 = -p1;
+ }
+
+ if (p1 % 1 === 0) {
+ n = p1;
+ } else if (p1 > 0) { // check for != 0, scale would become NaN (log(0)), which converges really slow
+
+ if (p1 >= 1) {
+ z = Math.pow(10, Math.floor(1 + Math.log(p1) / Math.LN10));
+ p1/= z;
+ }
+
+ // Using Farey Sequences
+ // http://www.johndcook.com/blog/2010/10/20/best-rational-approximation/
+
+ while (B <= N && D <= N) {
+ M = (A + C) / (B + D);
+
+ if (p1 === M) {
+ if (B + D <= N) {
+ n = A + C;
+ d = B + D;
+ } else if (D > B) {
+ n = C;
+ d = D;
+ } else {
+ n = A;
+ d = B;
+ }
+ break;
+
+ } else {
+
+ if (p1 > M) {
+ A+= C;
+ B+= D;
+ } else {
+ C+= A;
+ D+= B;
+ }
+
+ if (B > N) {
+ n = C;
+ d = D;
+ } else {
+ n = A;
+ d = B;
+ }
+ }
+ }
+ n*= z;
+ } else if (isNaN(p1) || isNaN(p2)) {
+ d = n = NaN;
+ }
+ break;
+ }
+ case "string":
+ {
+ B = p1.match(/\d+|./g);
+
+ if (B === null)
+ throw Fraction['InvalidParameter'];
+
+ if (B[A] === '-') {// Check for minus sign at the beginning
+ s = -1;
+ A++;
+ } else if (B[A] === '+') {// Check for plus sign at the beginning
+ A++;
+ }
+
+ if (B.length === A + 1) { // Check if it's just a simple number "1234"
+ w = assign(B[A++], s);
+ } else if (B[A + 1] === '.' || B[A] === '.') { // Check if it's a decimal number
+
+ if (B[A] !== '.') { // Handle 0.5 and .5
+ v = assign(B[A++], s);
+ }
+ A++;
+
+ // Check for decimal places
+ if (A + 1 === B.length || B[A + 1] === '(' && B[A + 3] === ')' || B[A + 1] === "'" && B[A + 3] === "'") {
+ w = assign(B[A], s);
+ y = Math.pow(10, B[A].length);
+ A++;
+ }
+
+ // Check for repeating places
+ if (B[A] === '(' && B[A + 2] === ')' || B[A] === "'" && B[A + 2] === "'") {
+ x = assign(B[A + 1], s);
+ z = Math.pow(10, B[A + 1].length) - 1;
+ A+= 3;
+ }
+
+ } else if (B[A + 1] === '/' || B[A + 1] === ':') { // Check for a simple fraction "123/456" or "123:456"
+ w = assign(B[A], s);
+ y = assign(B[A + 2], 1);
+ A+= 3;
+ } else if (B[A + 3] === '/' && B[A + 1] === ' ') { // Check for a complex fraction "123 1/2"
+ v = assign(B[A], s);
+ w = assign(B[A + 2], s);
+ y = assign(B[A + 4], 1);
+ A+= 5;
+ }
+
+ if (B.length <= A) { // Check for more tokens on the stack
+ d = y * z;
+ s = /* void */
+ n = x + d * v + z * w;
+ break;
+ }
+
+ /* Fall through on error */
+ }
+ default:
+ throw Fraction['InvalidParameter'];
+ }
+
+ if (d === 0) {
+ throw Fraction['DivisionByZero'];
+ }
+
+ P["s"] = s < 0 ? -1 : 1;
+ P["n"] = Math.abs(n);
+ P["d"] = Math.abs(d);
+ };
+
+ function modpow(b, e, m) {
+
+ var r = 1;
+ for (; e > 0; b = (b * b) % m, e >>= 1) {
+
+ if (e & 1) {
+ r = (r * b) % m;
+ }
+ }
+ return r;
+ }
+
+
+ function cycleLen(n, d) {
+
+ for (; d % 2 === 0;
+ d/= 2) {
+ }
+
+ for (; d % 5 === 0;
+ d/= 5) {
+ }
+
+ if (d === 1) // Catch non-cyclic numbers
+ return 0;
+
+ // If we would like to compute really large numbers quicker, we could make use of Fermat's little theorem:
+ // 10^(d-1) % d == 1
+ // However, we don't need such large numbers and MAX_CYCLE_LEN should be the capstone,
+ // as we want to translate the numbers to strings.
+
+ var rem = 10 % d;
+ var t = 1;
+
+ for (; rem !== 1; t++) {
+ rem = rem * 10 % d;
+
+ if (t > MAX_CYCLE_LEN)
+ return 0; // Returning 0 here means that we don't print it as a cyclic number. It's likely that the answer is `d-1`
+ }
+ return t;
+ }
+
+
+ function cycleStart(n, d, len) {
+
+ var rem1 = 1;
+ var rem2 = modpow(10, len, d);
+
+ for (var t = 0; t < 300; t++) { // s < ~log10(Number.MAX_VALUE)
+ // Solve 10^s == 10^(s+t) (mod d)
+
+ if (rem1 === rem2)
+ return t;
+
+ rem1 = rem1 * 10 % d;
+ rem2 = rem2 * 10 % d;
+ }
+ return 0;
+ }
+
+ function gcd(a, b) {
+
+ if (!a)
+ return b;
+ if (!b)
+ return a;
+
+ while (1) {
+ a%= b;
+ if (!a)
+ return b;
+ b%= a;
+ if (!b)
+ return a;
+ }
+ };
+
+ /**
+ * Module constructor
+ *
+ * @constructor
+ * @param {number|Fraction=} a
+ * @param {number=} b
+ */
+ function Fraction(a, b) {
+
+ parse(a, b);
+
+ if (this instanceof Fraction) {
+ a = gcd(P["d"], P["n"]); // Abuse variable a
+ this["s"] = P["s"];
+ this["n"] = P["n"] / a;
+ this["d"] = P["d"] / a;
+ } else {
+ return newFraction(P['s'] * P['n'], P['d']);
+ }
+ }
+
+ Fraction['DivisionByZero'] = new Error("Division by Zero");
+ Fraction['InvalidParameter'] = new Error("Invalid argument");
+ Fraction['NonIntegerParameter'] = new Error("Parameters must be integer");
+
+ Fraction.prototype = {
+
+ "s": 1,
+ "n": 0,
+ "d": 1,
+
+ /**
+ * Calculates the absolute value
+ *
+ * Ex: new Fraction(-4).abs() => 4
+ **/
+ "abs": function() {
+
+ return newFraction(this["n"], this["d"]);
+ },
+
+ /**
+ * Inverts the sign of the current fraction
+ *
+ * Ex: new Fraction(-4).neg() => 4
+ **/
+ "neg": function() {
+
+ return newFraction(-this["s"] * this["n"], this["d"]);
+ },
+
+ /**
+ * Adds two rational numbers
+ *
+ * Ex: new Fraction({n: 2, d: 3}).add("14.9") => 467 / 30
+ **/
+ "add": function(a, b) {
+
+ parse(a, b);
+ return newFraction(
+ this["s"] * this["n"] * P["d"] + P["s"] * this["d"] * P["n"],
+ this["d"] * P["d"]
+ );
+ },
+
+ /**
+ * Subtracts two rational numbers
+ *
+ * Ex: new Fraction({n: 2, d: 3}).add("14.9") => -427 / 30
+ **/
+ "sub": function(a, b) {
+
+ parse(a, b);
+ return newFraction(
+ this["s"] * this["n"] * P["d"] - P["s"] * this["d"] * P["n"],
+ this["d"] * P["d"]
+ );
+ },
+
+ /**
+ * Multiplies two rational numbers
+ *
+ * Ex: new Fraction("-17.(345)").mul(3) => 5776 / 111
+ **/
+ "mul": function(a, b) {
+
+ parse(a, b);
+ return newFraction(
+ this["s"] * P["s"] * this["n"] * P["n"],
+ this["d"] * P["d"]
+ );
+ },
+
+ /**
+ * Divides two rational numbers
+ *
+ * Ex: new Fraction("-17.(345)").inverse().div(3)
+ **/
+ "div": function(a, b) {
+
+ parse(a, b);
+ return newFraction(
+ this["s"] * P["s"] * this["n"] * P["d"],
+ this["d"] * P["n"]
+ );
+ },
+
+ /**
+ * Clones the actual object
+ *
+ * Ex: new Fraction("-17.(345)").clone()
+ **/
+ "clone": function() {
+ return newFraction(this['s'] * this['n'], this['d']);
+ },
+
+ /**
+ * Calculates the modulo of two rational numbers - a more precise fmod
+ *
+ * Ex: new Fraction('4.(3)').mod([7, 8]) => (13/3) % (7/8) = (5/6)
+ **/
+ "mod": function(a, b) {
+
+ if (isNaN(this['n']) || isNaN(this['d'])) {
+ return new Fraction(NaN);
+ }
+
+ if (a === undefined) {
+ return newFraction(this["s"] * this["n"] % this["d"], 1);
+ }
+
+ parse(a, b);
+ if (0 === P["n"] && 0 === this["d"]) {
+ throw Fraction['DivisionByZero'];
+ }
+
+ /*
+ * First silly attempt, kinda slow
+ *
+ return that["sub"]({
+ "n": num["n"] * Math.floor((this.n / this.d) / (num.n / num.d)),
+ "d": num["d"],
+ "s": this["s"]
+ });*/
+
+ /*
+ * New attempt: a1 / b1 = a2 / b2 * q + r
+ * => b2 * a1 = a2 * b1 * q + b1 * b2 * r
+ * => (b2 * a1 % a2 * b1) / (b1 * b2)
+ */
+ return newFraction(
+ this["s"] * (P["d"] * this["n"]) % (P["n"] * this["d"]),
+ P["d"] * this["d"]
+ );
+ },
+
+ /**
+ * Calculates the fractional gcd of two rational numbers
+ *
+ * Ex: new Fraction(5,8).gcd(3,7) => 1/56
+ */
+ "gcd": function(a, b) {
+
+ parse(a, b);
+
+ // gcd(a / b, c / d) = gcd(a, c) / lcm(b, d)
+
+ return newFraction(gcd(P["n"], this["n"]) * gcd(P["d"], this["d"]), P["d"] * this["d"]);
+ },
+
+ /**
+ * Calculates the fractional lcm of two rational numbers
+ *
+ * Ex: new Fraction(5,8).lcm(3,7) => 15
+ */
+ "lcm": function(a, b) {
+
+ parse(a, b);
+
+ // lcm(a / b, c / d) = lcm(a, c) / gcd(b, d)
+
+ if (P["n"] === 0 && this["n"] === 0) {
+ return newFraction(0, 1);
+ }
+ return newFraction(P["n"] * this["n"], gcd(P["n"], this["n"]) * gcd(P["d"], this["d"]));
+ },
+
+ /**
+ * Calculates the ceil of a rational number
+ *
+ * Ex: new Fraction('4.(3)').ceil() => (5 / 1)
+ **/
+ "ceil": function(places) {
+
+ places = Math.pow(10, places || 0);
+
+ if (isNaN(this["n"]) || isNaN(this["d"])) {
+ return new Fraction(NaN);
+ }
+ return newFraction(Math.ceil(places * this["s"] * this["n"] / this["d"]), places);
+ },
+
+ /**
+ * Calculates the floor of a rational number
+ *
+ * Ex: new Fraction('4.(3)').floor() => (4 / 1)
+ **/
+ "floor": function(places) {
+
+ places = Math.pow(10, places || 0);
+
+ if (isNaN(this["n"]) || isNaN(this["d"])) {
+ return new Fraction(NaN);
+ }
+ return newFraction(Math.floor(places * this["s"] * this["n"] / this["d"]), places);
+ },
+
+ /**
+ * Rounds a rational numbers
+ *
+ * Ex: new Fraction('4.(3)').round() => (4 / 1)
+ **/
+ "round": function(places) {
+
+ places = Math.pow(10, places || 0);
+
+ if (isNaN(this["n"]) || isNaN(this["d"])) {
+ return new Fraction(NaN);
+ }
+ return newFraction(Math.round(places * this["s"] * this["n"] / this["d"]), places);
+ },
+
+ /**
+ * Gets the inverse of the fraction, means numerator and denominator are exchanged
+ *
+ * Ex: new Fraction([-3, 4]).inverse() => -4 / 3
+ **/
+ "inverse": function() {
+
+ return newFraction(this["s"] * this["d"], this["n"]);
+ },
+
+ /**
+ * Calculates the fraction to some rational exponent, if possible
+ *
+ * Ex: new Fraction(-1,2).pow(-3) => -8
+ */
+ "pow": function(a, b) {
+
+ parse(a, b);
+
+ // Trivial case when exp is an integer
+
+ if (P['d'] === 1) {
+
+ if (P['s'] < 0) {
+ return newFraction(Math.pow(this['s'] * this["d"], P['n']), Math.pow(this["n"], P['n']));
+ } else {
+ return newFraction(Math.pow(this['s'] * this["n"], P['n']), Math.pow(this["d"], P['n']));
+ }
+ }
+
+ // Negative roots become complex
+ // (-a/b)^(c/d) = x
+ // <=> (-1)^(c/d) * (a/b)^(c/d) = x
+ // <=> (cos(pi) + i*sin(pi))^(c/d) * (a/b)^(c/d) = x # rotate 1 by 180°
+ // <=> (cos(c*pi/d) + i*sin(c*pi/d)) * (a/b)^(c/d) = x # DeMoivre's formula in Q ( https://proofwiki.org/wiki/De_Moivre%27s_Formula/Rational_Index )
+ // From which follows that only for c=0 the root is non-complex. c/d is a reduced fraction, so that sin(c/dpi)=0 occurs for d=1, which is handled by our trivial case.
+ if (this['s'] < 0) return null;
+
+ // Now prime factor n and d
+ var N = factorize(this['n']);
+ var D = factorize(this['d']);
+
+ // Exponentiate and take root for n and d individually
+ var n = 1;
+ var d = 1;
+ for (var k in N) {
+ if (k === '1') continue;
+ if (k === '0') {
+ n = 0;
+ break;
+ }
+ N[k]*= P['n'];
+
+ if (N[k] % P['d'] === 0) {
+ N[k]/= P['d'];
+ } else return null;
+ n*= Math.pow(k, N[k]);
+ }
+
+ for (var k in D) {
+ if (k === '1') continue;
+ D[k]*= P['n'];
+
+ if (D[k] % P['d'] === 0) {
+ D[k]/= P['d'];
+ } else return null;
+ d*= Math.pow(k, D[k]);
+ }
+
+ if (P['s'] < 0) {
+ return newFraction(d, n);
+ }
+ return newFraction(n, d);
+ },
+
+ /**
+ * Check if two rational numbers are the same
+ *
+ * Ex: new Fraction(19.6).equals([98, 5]);
+ **/
+ "equals": function(a, b) {
+
+ parse(a, b);
+ return this["s"] * this["n"] * P["d"] === P["s"] * P["n"] * this["d"]; // Same as compare() === 0
+ },
+
+ /**
+ * Check if two rational numbers are the same
+ *
+ * Ex: new Fraction(19.6).equals([98, 5]);
+ **/
+ "compare": function(a, b) {
+
+ parse(a, b);
+ var t = (this["s"] * this["n"] * P["d"] - P["s"] * P["n"] * this["d"]);
+ return (0 < t) - (t < 0);
+ },
+
+ "simplify": function(eps) {
+
+ if (isNaN(this['n']) || isNaN(this['d'])) {
+ return this;
+ }
+
+ eps = eps || 0.001;
+
+ var thisABS = this['abs']();
+ var cont = thisABS['toContinued']();
+
+ for (var i = 1; i < cont.length; i++) {
+
+ var s = newFraction(cont[i - 1], 1);
+ for (var k = i - 2; k >= 0; k--) {
+ s = s['inverse']()['add'](cont[k]);
+ }
+
+ if (s['sub'](thisABS)['abs']().valueOf() < eps) {
+ return s['mul'](this['s']);
+ }
+ }
+ return this;
+ },
+
+ /**
+ * Check if two rational numbers are divisible
+ *
+ * Ex: new Fraction(19.6).divisible(1.5);
+ */
+ "divisible": function(a, b) {
+
+ parse(a, b);
+ return !(!(P["n"] * this["d"]) || ((this["n"] * P["d"]) % (P["n"] * this["d"])));
+ },
+
+ /**
+ * Returns a decimal representation of the fraction
+ *
+ * Ex: new Fraction("100.'91823'").valueOf() => 100.91823918239183
+ **/
+ 'valueOf': function() {
+
+ return this["s"] * this["n"] / this["d"];
+ },
+
+ /**
+ * Returns a string-fraction representation of a Fraction object
+ *
+ * Ex: new Fraction("1.'3'").toFraction(true) => "4 1/3"
+ **/
+ 'toFraction': function(excludeWhole) {
+
+ var whole, str = "";
+ var n = this["n"];
+ var d = this["d"];
+ if (this["s"] < 0) {
+ str+= '-';
+ }
+
+ if (d === 1) {
+ str+= n;
+ } else {
+
+ if (excludeWhole && (whole = Math.floor(n / d)) > 0) {
+ str+= whole;
+ str+= " ";
+ n%= d;
+ }
+
+ str+= n;
+ str+= '/';
+ str+= d;
+ }
+ return str;
+ },
+
+ /**
+ * Returns a latex representation of a Fraction object
+ *
+ * Ex: new Fraction("1.'3'").toLatex() => "\frac{4}{3}"
+ **/
+ 'toLatex': function(excludeWhole) {
+
+ var whole, str = "";
+ var n = this["n"];
+ var d = this["d"];
+ if (this["s"] < 0) {
+ str+= '-';
+ }
+
+ if (d === 1) {
+ str+= n;
+ } else {
+
+ if (excludeWhole && (whole = Math.floor(n / d)) > 0) {
+ str+= whole;
+ n%= d;
+ }
+
+ str+= "\\frac{";
+ str+= n;
+ str+= '}{';
+ str+= d;
+ str+= '}';
+ }
+ return str;
+ },
+
+ /**
+ * Returns an array of continued fraction elements
+ *
+ * Ex: new Fraction("7/8").toContinued() => [0,1,7]
+ */
+ 'toContinued': function() {
+
+ var t;
+ var a = this['n'];
+ var b = this['d'];
+ var res = [];
+
+ if (isNaN(a) || isNaN(b)) {
+ return res;
+ }
+
+ do {
+ res.push(Math.floor(a / b));
+ t = a % b;
+ a = b;
+ b = t;
+ } while (a !== 1);
+
+ return res;
+ },
+
+ /**
+ * Creates a string representation of a fraction with all digits
+ *
+ * Ex: new Fraction("100.'91823'").toString() => "100.(91823)"
+ **/
+ 'toString': function(dec) {
+
+ var N = this["n"];
+ var D = this["d"];
+
+ if (isNaN(N) || isNaN(D)) {
+ return "NaN";
+ }
+
+ dec = dec || 15; // 15 = decimal places when no repetation
+
+ var cycLen = cycleLen(N, D); // Cycle length
+ var cycOff = cycleStart(N, D, cycLen); // Cycle start
+
+ var str = this['s'] < 0 ? "-" : "";
+
+ str+= N / D | 0;
+
+ N%= D;
+ N*= 10;
+
+ if (N)
+ str+= ".";
+
+ if (cycLen) {
+
+ for (var i = cycOff; i--;) {
+ str+= N / D | 0;
+ N%= D;
+ N*= 10;
+ }
+ str+= "(";
+ for (var i = cycLen; i--;) {
+ str+= N / D | 0;
+ N%= D;
+ N*= 10;
+ }
+ str+= ")";
+ } else {
+ for (var i = dec; N && i--;) {
+ str+= N / D | 0;
+ N%= D;
+ N*= 10;
+ }
+ }
+ return str;
+ }
+ };
+
+ if (typeof define === "function" && define["amd"]) {
+ define([], function() {
+ return Fraction;
+ });
+ } else if (typeof exports === "object") {
+ Object.defineProperty(Fraction, "__esModule", { 'value': true });
+ Fraction['default'] = Fraction;
+ Fraction['Fraction'] = Fraction;
+ module['exports'] = Fraction;
+ } else {
+ root['Fraction'] = Fraction;
+ }
+
+})(this);
diff --git a/node_modules/fraction.js/fraction.min.js b/node_modules/fraction.js/fraction.min.js
new file mode 100644
index 0000000..f0cc9d5
--- /dev/null
+++ b/node_modules/fraction.js/fraction.min.js
@@ -0,0 +1,19 @@
+/*
+Fraction.js v4.2.0 05/03/2022
+https://www.xarg.org/2014/03/rational-numbers-in-javascript/
+
+Copyright (c) 2021, Robert Eisele (robert@xarg.org)
+Dual licensed under the MIT or GPL Version 2 licenses.
+*/
+(function(z){function p(a,c){var b=0,d=1,f=1,l=0,k=0,t=0,x=1,u=1,g=0,h=1,v=1,q=1;if(void 0!==a&&null!==a)if(void 0!==c){if(b=a,d=c,f=b*d,0!==b%1||0!==d%1)throw m.NonIntegerParameter;}else switch(typeof a){case "object":if("d"in a&&"n"in a)b=a.n,d=a.d,"s"in a&&(b*=a.s);else if(0 in a)b=a[0],1 in a&&(d=a[1]);else throw m.InvalidParameter;f=b*d;break;case "number":0>a&&(f=a,a=-a);if(0===a%1)b=a;else if(0=h&&1E7>=q;)if(b=(g+
+v)/(h+q),a===b){1E7>=h+q?(b=g+v,d=h+q):q>h?(b=v,d=q):(b=g,d=h);break}else a>b?(g+=v,h+=q):(v+=g,q+=h),1E7f?-1:1;e.n=Math.abs(b);e.d=Math.abs(d)}function r(a,c){if(isNaN(a=parseInt(a,10)))throw m.InvalidParameter;return a*c}function n(a,c){if(0===c)throw m.DivisionByZero;
+var b=Object.create(m.prototype);b.s=0>a?-1:1;a=0>a?-a:a;var d=w(a,c);b.n=a/d;b.d=c/d;return b}function y(a){for(var c={},b=a,d=2,f=4;f<=b;){for(;0===b%d;)b/=d,c[d]=(c[d]||0)+1;f+=1+2*d++}b!==a?1e.s?n(Math.pow(this.s*this.d,e.n),Math.pow(this.n,e.n)):n(Math.pow(this.s*this.n,e.n),Math.pow(this.d,
+e.n));if(0>this.s)return null;var b=y(this.n),d=y(this.d),f=1,l=1,k;for(k in b)if("1"!==k){if("0"===k){f=0;break}b[k]*=e.n;if(0===b[k]%e.d)b[k]/=e.d;else return null;f*=Math.pow(k,b[k])}for(k in d)if("1"!==k){d[k]*=e.n;if(0===d[k]%e.d)d[k]/=e.d;else return null;l*=Math.pow(k,d[k])}return 0>e.s?n(l,f):n(f,l)},equals:function(a,c){p(a,c);return this.s*this.n*e.d===e.s*e.n*this.d},compare:function(a,c){p(a,c);var b=this.s*this.n*e.d-e.s*e.n*this.d;return(0b)},simplify:function(a){if(isNaN(this.n)||
+isNaN(this.d))return this;a=a||.001;for(var c=this.abs(),b=c.toContinued(),d=1;dthis.s&&(b+="-");1===f?b+=d:(a&&0<(c=Math.floor(d/f))&&(b=b+c+" ",d%=f),b=b+d+"/",b+=f);return b},toLatex:function(a){var c,
+b="",d=this.n,f=this.d;0>this.s&&(b+="-");1===f?b+=d:(a&&0<(c=Math.floor(d/f))&&(b+=c,d%=f),b=b+"\\frac{"+d+"}{"+f,b+="}");return b},toContinued:function(){var a=this.n,c=this.d,b=[];if(isNaN(a)||isNaN(c))return b;do{b.push(Math.floor(a/c));var d=a%c;a=c;c=d}while(1!==a);return b},toString:function(a){var c=this.n,b=this.d;if(isNaN(c)||isNaN(b))return"NaN";var d;a:{for(d=b;0===d%2;d/=2);for(;0===d%5;d/=5);if(1===d)d=0;else{for(var f=10%d,l=1;1!==f;l++)if(f=10*f%d,2E3>=1)k&1&&(t=t*l%b);l=t;for(k=0;300>k;k++){if(f===l){l=k;break a}f=10*f%b;l=10*l%b}l=0}f=0>this.s?"-":"";f+=c/b|0;(c=c%b*10)&&(f+=".");if(d){for(a=l;a--;)f+=c/b|0,c%=b,c*=10;f+="(";for(a=d;a--;)f+=c/b|0,c%=b,c*=10;f+=")"}else for(a=a||15;c&&a--;)f+=c/b|0,c%=b,c*=10;return f}};"function"===typeof define&&define.amd?define([],function(){return m}):"object"===typeof exports?(Object.defineProperty(m,"__esModule",{value:!0}),m["default"]=m,m.Fraction=m,module.exports=m):
+z.Fraction=m})(this);
\ No newline at end of file
diff --git a/node_modules/fraction.js/package.json b/node_modules/fraction.js/package.json
new file mode 100644
index 0000000..9be0262
--- /dev/null
+++ b/node_modules/fraction.js/package.json
@@ -0,0 +1,43 @@
+{
+ "name": "fraction.js",
+ "title": "fraction.js",
+ "version": "4.2.0",
+ "homepage": "https://www.xarg.org/2014/03/rational-numbers-in-javascript/",
+ "bugs": "https://github.com/infusion/Fraction.js/issues",
+ "description": "A rational number library",
+ "keywords": [
+ "math",
+ "fraction",
+ "rational",
+ "rationals",
+ "number",
+ "parser",
+ "rational numbers"
+ ],
+ "author": "Robert Eisele (http://www.xarg.org/)",
+ "main": "fraction",
+ "types": "./fraction.d.ts",
+ "private": false,
+ "readmeFilename": "README.md",
+ "directories": {
+ "example": "examples"
+ },
+ "license": "MIT",
+ "repository": {
+ "type": "git",
+ "url": "git://github.com/infusion/Fraction.js.git"
+ },
+ "funding": {
+ "type": "patreon",
+ "url": "https://www.patreon.com/infusion"
+ },
+ "engines": {
+ "node": "*"
+ },
+ "scripts": {
+ "test": "mocha tests/*.js"
+ },
+ "devDependencies": {
+ "mocha": "*"
+ }
+}
diff --git a/node_modules/fs-extra/LICENSE b/node_modules/fs-extra/LICENSE
new file mode 100644
index 0000000..93546df
--- /dev/null
+++ b/node_modules/fs-extra/LICENSE
@@ -0,0 +1,15 @@
+(The MIT License)
+
+Copyright (c) 2011-2017 JP Richardson
+
+Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files
+(the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify,
+ merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is
+ furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
+WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS
+OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
+ ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
diff --git a/node_modules/fs-extra/README.md b/node_modules/fs-extra/README.md
new file mode 100644
index 0000000..6ed8b6a
--- /dev/null
+++ b/node_modules/fs-extra/README.md
@@ -0,0 +1,262 @@
+Node.js: fs-extra
+=================
+
+`fs-extra` adds file system methods that aren't included in the native `fs` module and adds promise support to the `fs` methods. It also uses [`graceful-fs`](https://github.com/isaacs/node-graceful-fs) to prevent `EMFILE` errors. It should be a drop in replacement for `fs`.
+
+[![npm Package](https://img.shields.io/npm/v/fs-extra.svg)](https://www.npmjs.org/package/fs-extra)
+[![License](https://img.shields.io/npm/l/fs-extra.svg)](https://github.com/jprichardson/node-fs-extra/blob/master/LICENSE)
+[![build status](https://img.shields.io/github/workflow/status/jprichardson/node-fs-extra/Node.js%20CI/master)](https://github.com/jprichardson/node-fs-extra/actions/workflows/ci.yml?query=branch%3Amaster)
+[![downloads per month](http://img.shields.io/npm/dm/fs-extra.svg)](https://www.npmjs.org/package/fs-extra)
+[![JavaScript Style Guide](https://img.shields.io/badge/code_style-standard-brightgreen.svg)](https://standardjs.com)
+
+Why?
+----
+
+I got tired of including `mkdirp`, `rimraf`, and `ncp` in most of my projects.
+
+
+
+
+Installation
+------------
+
+ npm install fs-extra
+
+
+
+Usage
+-----
+
+`fs-extra` is a drop in replacement for native `fs`. All methods in `fs` are attached to `fs-extra`. All `fs` methods return promises if the callback isn't passed.
+
+You don't ever need to include the original `fs` module again:
+
+```js
+const fs = require('fs') // this is no longer necessary
+```
+
+you can now do this:
+
+```js
+const fs = require('fs-extra')
+```
+
+or if you prefer to make it clear that you're using `fs-extra` and not `fs`, you may want
+to name your `fs` variable `fse` like so:
+
+```js
+const fse = require('fs-extra')
+```
+
+you can also keep both, but it's redundant:
+
+```js
+const fs = require('fs')
+const fse = require('fs-extra')
+```
+
+Sync vs Async vs Async/Await
+-------------
+Most methods are async by default. All async methods will return a promise if the callback isn't passed.
+
+Sync methods on the other hand will throw if an error occurs.
+
+Also Async/Await will throw an error if one occurs.
+
+Example:
+
+```js
+const fs = require('fs-extra')
+
+// Async with promises:
+fs.copy('/tmp/myfile', '/tmp/mynewfile')
+ .then(() => console.log('success!'))
+ .catch(err => console.error(err))
+
+// Async with callbacks:
+fs.copy('/tmp/myfile', '/tmp/mynewfile', err => {
+ if (err) return console.error(err)
+ console.log('success!')
+})
+
+// Sync:
+try {
+ fs.copySync('/tmp/myfile', '/tmp/mynewfile')
+ console.log('success!')
+} catch (err) {
+ console.error(err)
+}
+
+// Async/Await:
+async function copyFiles () {
+ try {
+ await fs.copy('/tmp/myfile', '/tmp/mynewfile')
+ console.log('success!')
+ } catch (err) {
+ console.error(err)
+ }
+}
+
+copyFiles()
+```
+
+
+Methods
+-------
+
+### Async
+
+- [copy](docs/copy.md)
+- [emptyDir](docs/emptyDir.md)
+- [ensureFile](docs/ensureFile.md)
+- [ensureDir](docs/ensureDir.md)
+- [ensureLink](docs/ensureLink.md)
+- [ensureSymlink](docs/ensureSymlink.md)
+- [mkdirp](docs/ensureDir.md)
+- [mkdirs](docs/ensureDir.md)
+- [move](docs/move.md)
+- [outputFile](docs/outputFile.md)
+- [outputJson](docs/outputJson.md)
+- [pathExists](docs/pathExists.md)
+- [readJson](docs/readJson.md)
+- [remove](docs/remove.md)
+- [writeJson](docs/writeJson.md)
+
+### Sync
+
+- [copySync](docs/copy-sync.md)
+- [emptyDirSync](docs/emptyDir-sync.md)
+- [ensureFileSync](docs/ensureFile-sync.md)
+- [ensureDirSync](docs/ensureDir-sync.md)
+- [ensureLinkSync](docs/ensureLink-sync.md)
+- [ensureSymlinkSync](docs/ensureSymlink-sync.md)
+- [mkdirpSync](docs/ensureDir-sync.md)
+- [mkdirsSync](docs/ensureDir-sync.md)
+- [moveSync](docs/move-sync.md)
+- [outputFileSync](docs/outputFile-sync.md)
+- [outputJsonSync](docs/outputJson-sync.md)
+- [pathExistsSync](docs/pathExists-sync.md)
+- [readJsonSync](docs/readJson-sync.md)
+- [removeSync](docs/remove-sync.md)
+- [writeJsonSync](docs/writeJson-sync.md)
+
+
+**NOTE:** You can still use the native Node.js methods. They are promisified and copied over to `fs-extra`. See [notes on `fs.read()`, `fs.write()`, & `fs.writev()`](docs/fs-read-write-writev.md)
+
+### What happened to `walk()` and `walkSync()`?
+
+They were removed from `fs-extra` in v2.0.0. If you need the functionality, `walk` and `walkSync` are available as separate packages, [`klaw`](https://github.com/jprichardson/node-klaw) and [`klaw-sync`](https://github.com/manidlou/node-klaw-sync).
+
+
+Third Party
+-----------
+
+### CLI
+
+[fse-cli](https://www.npmjs.com/package/@atao60/fse-cli) allows you to run `fs-extra` from a console or from [npm](https://www.npmjs.com) scripts.
+
+### TypeScript
+
+If you like TypeScript, you can use `fs-extra` with it: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/fs-extra
+
+
+### File / Directory Watching
+
+If you want to watch for changes to files or directories, then you should use [chokidar](https://github.com/paulmillr/chokidar).
+
+### Obtain Filesystem (Devices, Partitions) Information
+
+[fs-filesystem](https://github.com/arthurintelligence/node-fs-filesystem) allows you to read the state of the filesystem of the host on which it is run. It returns information about both the devices and the partitions (volumes) of the system.
+
+### Misc.
+
+- [fs-extra-debug](https://github.com/jdxcode/fs-extra-debug) - Send your fs-extra calls to [debug](https://npmjs.org/package/debug).
+- [mfs](https://github.com/cadorn/mfs) - Monitor your fs-extra calls.
+
+
+
+Hacking on fs-extra
+-------------------
+
+Wanna hack on `fs-extra`? Great! Your help is needed! [fs-extra is one of the most depended upon Node.js packages](http://nodei.co/npm/fs-extra.png?downloads=true&downloadRank=true&stars=true). This project
+uses [JavaScript Standard Style](https://github.com/feross/standard) - if the name or style choices bother you,
+you're gonna have to get over it :) If `standard` is good enough for `npm`, it's good enough for `fs-extra`.
+
+[![js-standard-style](https://cdn.rawgit.com/feross/standard/master/badge.svg)](https://github.com/feross/standard)
+
+What's needed?
+- First, take a look at existing issues. Those are probably going to be where the priority lies.
+- More tests for edge cases. Specifically on different platforms. There can never be enough tests.
+- Improve test coverage.
+
+Note: If you make any big changes, **you should definitely file an issue for discussion first.**
+
+### Running the Test Suite
+
+fs-extra contains hundreds of tests.
+
+- `npm run lint`: runs the linter ([standard](http://standardjs.com/))
+- `npm run unit`: runs the unit tests
+- `npm test`: runs both the linter and the tests
+
+
+### Windows
+
+If you run the tests on the Windows and receive a lot of symbolic link `EPERM` permission errors, it's
+because on Windows you need elevated privilege to create symbolic links. You can add this to your Windows's
+account by following the instructions here: http://superuser.com/questions/104845/permission-to-make-symbolic-links-in-windows-7
+However, I didn't have much luck doing this.
+
+Since I develop on Mac OS X, I use VMWare Fusion for Windows testing. I create a shared folder that I map to a drive on Windows.
+I open the `Node.js command prompt` and run as `Administrator`. I then map the network drive running the following command:
+
+ net use z: "\\vmware-host\Shared Folders"
+
+I can then navigate to my `fs-extra` directory and run the tests.
+
+
+Naming
+------
+
+I put a lot of thought into the naming of these functions. Inspired by @coolaj86's request. So he deserves much of the credit for raising the issue. See discussion(s) here:
+
+* https://github.com/jprichardson/node-fs-extra/issues/2
+* https://github.com/flatiron/utile/issues/11
+* https://github.com/ryanmcgrath/wrench-js/issues/29
+* https://github.com/substack/node-mkdirp/issues/17
+
+First, I believe that in as many cases as possible, the [Node.js naming schemes](http://nodejs.org/api/fs.html) should be chosen. However, there are problems with the Node.js own naming schemes.
+
+For example, `fs.readFile()` and `fs.readdir()`: the **F** is capitalized in *File* and the **d** is not capitalized in *dir*. Perhaps a bit pedantic, but they should still be consistent. Also, Node.js has chosen a lot of POSIX naming schemes, which I believe is great. See: `fs.mkdir()`, `fs.rmdir()`, `fs.chown()`, etc.
+
+We have a dilemma though. How do you consistently name methods that perform the following POSIX commands: `cp`, `cp -r`, `mkdir -p`, and `rm -rf`?
+
+My perspective: when in doubt, err on the side of simplicity. A directory is just a hierarchical grouping of directories and files. Consider that for a moment. So when you want to copy it or remove it, in most cases you'll want to copy or remove all of its contents. When you want to create a directory, if the directory that it's suppose to be contained in does not exist, then in most cases you'll want to create that too.
+
+So, if you want to remove a file or a directory regardless of whether it has contents, just call `fs.remove(path)`. If you want to copy a file or a directory whether it has contents, just call `fs.copy(source, destination)`. If you want to create a directory regardless of whether its parent directories exist, just call `fs.mkdirs(path)` or `fs.mkdirp(path)`.
+
+
+Credit
+------
+
+`fs-extra` wouldn't be possible without using the modules from the following authors:
+
+- [Isaac Shlueter](https://github.com/isaacs)
+- [Charlie McConnel](https://github.com/avianflu)
+- [James Halliday](https://github.com/substack)
+- [Andrew Kelley](https://github.com/andrewrk)
+
+
+
+
+License
+-------
+
+Licensed under MIT
+
+Copyright (c) 2011-2017 [JP Richardson](https://github.com/jprichardson)
+
+[1]: http://nodejs.org/docs/latest/api/fs.html
+
+
+[jsonfile]: https://github.com/jprichardson/node-jsonfile
diff --git a/node_modules/fs-extra/lib/copy/copy-sync.js b/node_modules/fs-extra/lib/copy/copy-sync.js
new file mode 100644
index 0000000..551abe0
--- /dev/null
+++ b/node_modules/fs-extra/lib/copy/copy-sync.js
@@ -0,0 +1,169 @@
+'use strict'
+
+const fs = require('graceful-fs')
+const path = require('path')
+const mkdirsSync = require('../mkdirs').mkdirsSync
+const utimesMillisSync = require('../util/utimes').utimesMillisSync
+const stat = require('../util/stat')
+
+function copySync (src, dest, opts) {
+ if (typeof opts === 'function') {
+ opts = { filter: opts }
+ }
+
+ opts = opts || {}
+ opts.clobber = 'clobber' in opts ? !!opts.clobber : true // default to true for now
+ opts.overwrite = 'overwrite' in opts ? !!opts.overwrite : opts.clobber // overwrite falls back to clobber
+
+ // Warn about using preserveTimestamps on 32-bit node
+ if (opts.preserveTimestamps && process.arch === 'ia32') {
+ process.emitWarning(
+ 'Using the preserveTimestamps option in 32-bit node is not recommended;\n\n' +
+ '\tsee https://github.com/jprichardson/node-fs-extra/issues/269',
+ 'Warning', 'fs-extra-WARN0002'
+ )
+ }
+
+ const { srcStat, destStat } = stat.checkPathsSync(src, dest, 'copy', opts)
+ stat.checkParentPathsSync(src, srcStat, dest, 'copy')
+ return handleFilterAndCopy(destStat, src, dest, opts)
+}
+
+function handleFilterAndCopy (destStat, src, dest, opts) {
+ if (opts.filter && !opts.filter(src, dest)) return
+ const destParent = path.dirname(dest)
+ if (!fs.existsSync(destParent)) mkdirsSync(destParent)
+ return getStats(destStat, src, dest, opts)
+}
+
+function startCopy (destStat, src, dest, opts) {
+ if (opts.filter && !opts.filter(src, dest)) return
+ return getStats(destStat, src, dest, opts)
+}
+
+function getStats (destStat, src, dest, opts) {
+ const statSync = opts.dereference ? fs.statSync : fs.lstatSync
+ const srcStat = statSync(src)
+
+ if (srcStat.isDirectory()) return onDir(srcStat, destStat, src, dest, opts)
+ else if (srcStat.isFile() ||
+ srcStat.isCharacterDevice() ||
+ srcStat.isBlockDevice()) return onFile(srcStat, destStat, src, dest, opts)
+ else if (srcStat.isSymbolicLink()) return onLink(destStat, src, dest, opts)
+ else if (srcStat.isSocket()) throw new Error(`Cannot copy a socket file: ${src}`)
+ else if (srcStat.isFIFO()) throw new Error(`Cannot copy a FIFO pipe: ${src}`)
+ throw new Error(`Unknown file: ${src}`)
+}
+
+function onFile (srcStat, destStat, src, dest, opts) {
+ if (!destStat) return copyFile(srcStat, src, dest, opts)
+ return mayCopyFile(srcStat, src, dest, opts)
+}
+
+function mayCopyFile (srcStat, src, dest, opts) {
+ if (opts.overwrite) {
+ fs.unlinkSync(dest)
+ return copyFile(srcStat, src, dest, opts)
+ } else if (opts.errorOnExist) {
+ throw new Error(`'${dest}' already exists`)
+ }
+}
+
+function copyFile (srcStat, src, dest, opts) {
+ fs.copyFileSync(src, dest)
+ if (opts.preserveTimestamps) handleTimestamps(srcStat.mode, src, dest)
+ return setDestMode(dest, srcStat.mode)
+}
+
+function handleTimestamps (srcMode, src, dest) {
+ // Make sure the file is writable before setting the timestamp
+ // otherwise open fails with EPERM when invoked with 'r+'
+ // (through utimes call)
+ if (fileIsNotWritable(srcMode)) makeFileWritable(dest, srcMode)
+ return setDestTimestamps(src, dest)
+}
+
+function fileIsNotWritable (srcMode) {
+ return (srcMode & 0o200) === 0
+}
+
+function makeFileWritable (dest, srcMode) {
+ return setDestMode(dest, srcMode | 0o200)
+}
+
+function setDestMode (dest, srcMode) {
+ return fs.chmodSync(dest, srcMode)
+}
+
+function setDestTimestamps (src, dest) {
+ // The initial srcStat.atime cannot be trusted
+ // because it is modified by the read(2) system call
+ // (See https://nodejs.org/api/fs.html#fs_stat_time_values)
+ const updatedSrcStat = fs.statSync(src)
+ return utimesMillisSync(dest, updatedSrcStat.atime, updatedSrcStat.mtime)
+}
+
+function onDir (srcStat, destStat, src, dest, opts) {
+ if (!destStat) return mkDirAndCopy(srcStat.mode, src, dest, opts)
+ return copyDir(src, dest, opts)
+}
+
+function mkDirAndCopy (srcMode, src, dest, opts) {
+ fs.mkdirSync(dest)
+ copyDir(src, dest, opts)
+ return setDestMode(dest, srcMode)
+}
+
+function copyDir (src, dest, opts) {
+ fs.readdirSync(src).forEach(item => copyDirItem(item, src, dest, opts))
+}
+
+function copyDirItem (item, src, dest, opts) {
+ const srcItem = path.join(src, item)
+ const destItem = path.join(dest, item)
+ const { destStat } = stat.checkPathsSync(srcItem, destItem, 'copy', opts)
+ return startCopy(destStat, srcItem, destItem, opts)
+}
+
+function onLink (destStat, src, dest, opts) {
+ let resolvedSrc = fs.readlinkSync(src)
+ if (opts.dereference) {
+ resolvedSrc = path.resolve(process.cwd(), resolvedSrc)
+ }
+
+ if (!destStat) {
+ return fs.symlinkSync(resolvedSrc, dest)
+ } else {
+ let resolvedDest
+ try {
+ resolvedDest = fs.readlinkSync(dest)
+ } catch (err) {
+ // dest exists and is a regular file or directory,
+ // Windows may throw UNKNOWN error. If dest already exists,
+ // fs throws error anyway, so no need to guard against it here.
+ if (err.code === 'EINVAL' || err.code === 'UNKNOWN') return fs.symlinkSync(resolvedSrc, dest)
+ throw err
+ }
+ if (opts.dereference) {
+ resolvedDest = path.resolve(process.cwd(), resolvedDest)
+ }
+ if (stat.isSrcSubdir(resolvedSrc, resolvedDest)) {
+ throw new Error(`Cannot copy '${resolvedSrc}' to a subdirectory of itself, '${resolvedDest}'.`)
+ }
+
+ // prevent copy if src is a subdir of dest since unlinking
+ // dest in this case would result in removing src contents
+ // and therefore a broken symlink would be created.
+ if (fs.statSync(dest).isDirectory() && stat.isSrcSubdir(resolvedDest, resolvedSrc)) {
+ throw new Error(`Cannot overwrite '${resolvedDest}' with '${resolvedSrc}'.`)
+ }
+ return copyLink(resolvedSrc, dest)
+ }
+}
+
+function copyLink (resolvedSrc, dest) {
+ fs.unlinkSync(dest)
+ return fs.symlinkSync(resolvedSrc, dest)
+}
+
+module.exports = copySync
diff --git a/node_modules/fs-extra/lib/copy/copy.js b/node_modules/fs-extra/lib/copy/copy.js
new file mode 100644
index 0000000..09d53df
--- /dev/null
+++ b/node_modules/fs-extra/lib/copy/copy.js
@@ -0,0 +1,235 @@
+'use strict'
+
+const fs = require('graceful-fs')
+const path = require('path')
+const mkdirs = require('../mkdirs').mkdirs
+const pathExists = require('../path-exists').pathExists
+const utimesMillis = require('../util/utimes').utimesMillis
+const stat = require('../util/stat')
+
+function copy (src, dest, opts, cb) {
+ if (typeof opts === 'function' && !cb) {
+ cb = opts
+ opts = {}
+ } else if (typeof opts === 'function') {
+ opts = { filter: opts }
+ }
+
+ cb = cb || function () {}
+ opts = opts || {}
+
+ opts.clobber = 'clobber' in opts ? !!opts.clobber : true // default to true for now
+ opts.overwrite = 'overwrite' in opts ? !!opts.overwrite : opts.clobber // overwrite falls back to clobber
+
+ // Warn about using preserveTimestamps on 32-bit node
+ if (opts.preserveTimestamps && process.arch === 'ia32') {
+ process.emitWarning(
+ 'Using the preserveTimestamps option in 32-bit node is not recommended;\n\n' +
+ '\tsee https://github.com/jprichardson/node-fs-extra/issues/269',
+ 'Warning', 'fs-extra-WARN0001'
+ )
+ }
+
+ stat.checkPaths(src, dest, 'copy', opts, (err, stats) => {
+ if (err) return cb(err)
+ const { srcStat, destStat } = stats
+ stat.checkParentPaths(src, srcStat, dest, 'copy', err => {
+ if (err) return cb(err)
+ if (opts.filter) return handleFilter(checkParentDir, destStat, src, dest, opts, cb)
+ return checkParentDir(destStat, src, dest, opts, cb)
+ })
+ })
+}
+
+function checkParentDir (destStat, src, dest, opts, cb) {
+ const destParent = path.dirname(dest)
+ pathExists(destParent, (err, dirExists) => {
+ if (err) return cb(err)
+ if (dirExists) return getStats(destStat, src, dest, opts, cb)
+ mkdirs(destParent, err => {
+ if (err) return cb(err)
+ return getStats(destStat, src, dest, opts, cb)
+ })
+ })
+}
+
+function handleFilter (onInclude, destStat, src, dest, opts, cb) {
+ Promise.resolve(opts.filter(src, dest)).then(include => {
+ if (include) return onInclude(destStat, src, dest, opts, cb)
+ return cb()
+ }, error => cb(error))
+}
+
+function startCopy (destStat, src, dest, opts, cb) {
+ if (opts.filter) return handleFilter(getStats, destStat, src, dest, opts, cb)
+ return getStats(destStat, src, dest, opts, cb)
+}
+
+function getStats (destStat, src, dest, opts, cb) {
+ const stat = opts.dereference ? fs.stat : fs.lstat
+ stat(src, (err, srcStat) => {
+ if (err) return cb(err)
+
+ if (srcStat.isDirectory()) return onDir(srcStat, destStat, src, dest, opts, cb)
+ else if (srcStat.isFile() ||
+ srcStat.isCharacterDevice() ||
+ srcStat.isBlockDevice()) return onFile(srcStat, destStat, src, dest, opts, cb)
+ else if (srcStat.isSymbolicLink()) return onLink(destStat, src, dest, opts, cb)
+ else if (srcStat.isSocket()) return cb(new Error(`Cannot copy a socket file: ${src}`))
+ else if (srcStat.isFIFO()) return cb(new Error(`Cannot copy a FIFO pipe: ${src}`))
+ return cb(new Error(`Unknown file: ${src}`))
+ })
+}
+
+function onFile (srcStat, destStat, src, dest, opts, cb) {
+ if (!destStat) return copyFile(srcStat, src, dest, opts, cb)
+ return mayCopyFile(srcStat, src, dest, opts, cb)
+}
+
+function mayCopyFile (srcStat, src, dest, opts, cb) {
+ if (opts.overwrite) {
+ fs.unlink(dest, err => {
+ if (err) return cb(err)
+ return copyFile(srcStat, src, dest, opts, cb)
+ })
+ } else if (opts.errorOnExist) {
+ return cb(new Error(`'${dest}' already exists`))
+ } else return cb()
+}
+
+function copyFile (srcStat, src, dest, opts, cb) {
+ fs.copyFile(src, dest, err => {
+ if (err) return cb(err)
+ if (opts.preserveTimestamps) return handleTimestampsAndMode(srcStat.mode, src, dest, cb)
+ return setDestMode(dest, srcStat.mode, cb)
+ })
+}
+
+function handleTimestampsAndMode (srcMode, src, dest, cb) {
+ // Make sure the file is writable before setting the timestamp
+ // otherwise open fails with EPERM when invoked with 'r+'
+ // (through utimes call)
+ if (fileIsNotWritable(srcMode)) {
+ return makeFileWritable(dest, srcMode, err => {
+ if (err) return cb(err)
+ return setDestTimestampsAndMode(srcMode, src, dest, cb)
+ })
+ }
+ return setDestTimestampsAndMode(srcMode, src, dest, cb)
+}
+
+function fileIsNotWritable (srcMode) {
+ return (srcMode & 0o200) === 0
+}
+
+function makeFileWritable (dest, srcMode, cb) {
+ return setDestMode(dest, srcMode | 0o200, cb)
+}
+
+function setDestTimestampsAndMode (srcMode, src, dest, cb) {
+ setDestTimestamps(src, dest, err => {
+ if (err) return cb(err)
+ return setDestMode(dest, srcMode, cb)
+ })
+}
+
+function setDestMode (dest, srcMode, cb) {
+ return fs.chmod(dest, srcMode, cb)
+}
+
+function setDestTimestamps (src, dest, cb) {
+ // The initial srcStat.atime cannot be trusted
+ // because it is modified by the read(2) system call
+ // (See https://nodejs.org/api/fs.html#fs_stat_time_values)
+ fs.stat(src, (err, updatedSrcStat) => {
+ if (err) return cb(err)
+ return utimesMillis(dest, updatedSrcStat.atime, updatedSrcStat.mtime, cb)
+ })
+}
+
+function onDir (srcStat, destStat, src, dest, opts, cb) {
+ if (!destStat) return mkDirAndCopy(srcStat.mode, src, dest, opts, cb)
+ return copyDir(src, dest, opts, cb)
+}
+
+function mkDirAndCopy (srcMode, src, dest, opts, cb) {
+ fs.mkdir(dest, err => {
+ if (err) return cb(err)
+ copyDir(src, dest, opts, err => {
+ if (err) return cb(err)
+ return setDestMode(dest, srcMode, cb)
+ })
+ })
+}
+
+function copyDir (src, dest, opts, cb) {
+ fs.readdir(src, (err, items) => {
+ if (err) return cb(err)
+ return copyDirItems(items, src, dest, opts, cb)
+ })
+}
+
+function copyDirItems (items, src, dest, opts, cb) {
+ const item = items.pop()
+ if (!item) return cb()
+ return copyDirItem(items, item, src, dest, opts, cb)
+}
+
+function copyDirItem (items, item, src, dest, opts, cb) {
+ const srcItem = path.join(src, item)
+ const destItem = path.join(dest, item)
+ stat.checkPaths(srcItem, destItem, 'copy', opts, (err, stats) => {
+ if (err) return cb(err)
+ const { destStat } = stats
+ startCopy(destStat, srcItem, destItem, opts, err => {
+ if (err) return cb(err)
+ return copyDirItems(items, src, dest, opts, cb)
+ })
+ })
+}
+
+function onLink (destStat, src, dest, opts, cb) {
+ fs.readlink(src, (err, resolvedSrc) => {
+ if (err) return cb(err)
+ if (opts.dereference) {
+ resolvedSrc = path.resolve(process.cwd(), resolvedSrc)
+ }
+
+ if (!destStat) {
+ return fs.symlink(resolvedSrc, dest, cb)
+ } else {
+ fs.readlink(dest, (err, resolvedDest) => {
+ if (err) {
+ // dest exists and is a regular file or directory,
+ // Windows may throw UNKNOWN error. If dest already exists,
+ // fs throws error anyway, so no need to guard against it here.
+ if (err.code === 'EINVAL' || err.code === 'UNKNOWN') return fs.symlink(resolvedSrc, dest, cb)
+ return cb(err)
+ }
+ if (opts.dereference) {
+ resolvedDest = path.resolve(process.cwd(), resolvedDest)
+ }
+ if (stat.isSrcSubdir(resolvedSrc, resolvedDest)) {
+ return cb(new Error(`Cannot copy '${resolvedSrc}' to a subdirectory of itself, '${resolvedDest}'.`))
+ }
+
+ // do not copy if src is a subdir of dest since unlinking
+ // dest in this case would result in removing src contents
+ // and therefore a broken symlink would be created.
+ if (destStat.isDirectory() && stat.isSrcSubdir(resolvedDest, resolvedSrc)) {
+ return cb(new Error(`Cannot overwrite '${resolvedDest}' with '${resolvedSrc}'.`))
+ }
+ return copyLink(resolvedSrc, dest, cb)
+ })
+ }
+ })
+}
+
+function copyLink (resolvedSrc, dest, cb) {
+ fs.unlink(dest, err => {
+ if (err) return cb(err)
+ return fs.symlink(resolvedSrc, dest, cb)
+ })
+}
+
+module.exports = copy
diff --git a/node_modules/fs-extra/lib/copy/index.js b/node_modules/fs-extra/lib/copy/index.js
new file mode 100644
index 0000000..45c07a2
--- /dev/null
+++ b/node_modules/fs-extra/lib/copy/index.js
@@ -0,0 +1,7 @@
+'use strict'
+
+const u = require('universalify').fromCallback
+module.exports = {
+ copy: u(require('./copy')),
+ copySync: require('./copy-sync')
+}
diff --git a/node_modules/fs-extra/lib/empty/index.js b/node_modules/fs-extra/lib/empty/index.js
new file mode 100644
index 0000000..b4a2e82
--- /dev/null
+++ b/node_modules/fs-extra/lib/empty/index.js
@@ -0,0 +1,39 @@
+'use strict'
+
+const u = require('universalify').fromPromise
+const fs = require('../fs')
+const path = require('path')
+const mkdir = require('../mkdirs')
+const remove = require('../remove')
+
+const emptyDir = u(async function emptyDir (dir) {
+ let items
+ try {
+ items = await fs.readdir(dir)
+ } catch {
+ return mkdir.mkdirs(dir)
+ }
+
+ return Promise.all(items.map(item => remove.remove(path.join(dir, item))))
+})
+
+function emptyDirSync (dir) {
+ let items
+ try {
+ items = fs.readdirSync(dir)
+ } catch {
+ return mkdir.mkdirsSync(dir)
+ }
+
+ items.forEach(item => {
+ item = path.join(dir, item)
+ remove.removeSync(item)
+ })
+}
+
+module.exports = {
+ emptyDirSync,
+ emptydirSync: emptyDirSync,
+ emptyDir,
+ emptydir: emptyDir
+}
diff --git a/node_modules/fs-extra/lib/ensure/file.js b/node_modules/fs-extra/lib/ensure/file.js
new file mode 100644
index 0000000..15cc473
--- /dev/null
+++ b/node_modules/fs-extra/lib/ensure/file.js
@@ -0,0 +1,69 @@
+'use strict'
+
+const u = require('universalify').fromCallback
+const path = require('path')
+const fs = require('graceful-fs')
+const mkdir = require('../mkdirs')
+
+function createFile (file, callback) {
+ function makeFile () {
+ fs.writeFile(file, '', err => {
+ if (err) return callback(err)
+ callback()
+ })
+ }
+
+ fs.stat(file, (err, stats) => { // eslint-disable-line handle-callback-err
+ if (!err && stats.isFile()) return callback()
+ const dir = path.dirname(file)
+ fs.stat(dir, (err, stats) => {
+ if (err) {
+ // if the directory doesn't exist, make it
+ if (err.code === 'ENOENT') {
+ return mkdir.mkdirs(dir, err => {
+ if (err) return callback(err)
+ makeFile()
+ })
+ }
+ return callback(err)
+ }
+
+ if (stats.isDirectory()) makeFile()
+ else {
+ // parent is not a directory
+ // This is just to cause an internal ENOTDIR error to be thrown
+ fs.readdir(dir, err => {
+ if (err) return callback(err)
+ })
+ }
+ })
+ })
+}
+
+function createFileSync (file) {
+ let stats
+ try {
+ stats = fs.statSync(file)
+ } catch {}
+ if (stats && stats.isFile()) return
+
+ const dir = path.dirname(file)
+ try {
+ if (!fs.statSync(dir).isDirectory()) {
+ // parent is not a directory
+ // This is just to cause an internal ENOTDIR error to be thrown
+ fs.readdirSync(dir)
+ }
+ } catch (err) {
+ // If the stat call above failed because the directory doesn't exist, create it
+ if (err && err.code === 'ENOENT') mkdir.mkdirsSync(dir)
+ else throw err
+ }
+
+ fs.writeFileSync(file, '')
+}
+
+module.exports = {
+ createFile: u(createFile),
+ createFileSync
+}
diff --git a/node_modules/fs-extra/lib/ensure/index.js b/node_modules/fs-extra/lib/ensure/index.js
new file mode 100644
index 0000000..ecbcdd0
--- /dev/null
+++ b/node_modules/fs-extra/lib/ensure/index.js
@@ -0,0 +1,23 @@
+'use strict'
+
+const { createFile, createFileSync } = require('./file')
+const { createLink, createLinkSync } = require('./link')
+const { createSymlink, createSymlinkSync } = require('./symlink')
+
+module.exports = {
+ // file
+ createFile,
+ createFileSync,
+ ensureFile: createFile,
+ ensureFileSync: createFileSync,
+ // link
+ createLink,
+ createLinkSync,
+ ensureLink: createLink,
+ ensureLinkSync: createLinkSync,
+ // symlink
+ createSymlink,
+ createSymlinkSync,
+ ensureSymlink: createSymlink,
+ ensureSymlinkSync: createSymlinkSync
+}
diff --git a/node_modules/fs-extra/lib/ensure/link.js b/node_modules/fs-extra/lib/ensure/link.js
new file mode 100644
index 0000000..f6d6748
--- /dev/null
+++ b/node_modules/fs-extra/lib/ensure/link.js
@@ -0,0 +1,64 @@
+'use strict'
+
+const u = require('universalify').fromCallback
+const path = require('path')
+const fs = require('graceful-fs')
+const mkdir = require('../mkdirs')
+const pathExists = require('../path-exists').pathExists
+const { areIdentical } = require('../util/stat')
+
+function createLink (srcpath, dstpath, callback) {
+ function makeLink (srcpath, dstpath) {
+ fs.link(srcpath, dstpath, err => {
+ if (err) return callback(err)
+ callback(null)
+ })
+ }
+
+ fs.lstat(dstpath, (_, dstStat) => {
+ fs.lstat(srcpath, (err, srcStat) => {
+ if (err) {
+ err.message = err.message.replace('lstat', 'ensureLink')
+ return callback(err)
+ }
+ if (dstStat && areIdentical(srcStat, dstStat)) return callback(null)
+
+ const dir = path.dirname(dstpath)
+ pathExists(dir, (err, dirExists) => {
+ if (err) return callback(err)
+ if (dirExists) return makeLink(srcpath, dstpath)
+ mkdir.mkdirs(dir, err => {
+ if (err) return callback(err)
+ makeLink(srcpath, dstpath)
+ })
+ })
+ })
+ })
+}
+
+function createLinkSync (srcpath, dstpath) {
+ let dstStat
+ try {
+ dstStat = fs.lstatSync(dstpath)
+ } catch {}
+
+ try {
+ const srcStat = fs.lstatSync(srcpath)
+ if (dstStat && areIdentical(srcStat, dstStat)) return
+ } catch (err) {
+ err.message = err.message.replace('lstat', 'ensureLink')
+ throw err
+ }
+
+ const dir = path.dirname(dstpath)
+ const dirExists = fs.existsSync(dir)
+ if (dirExists) return fs.linkSync(srcpath, dstpath)
+ mkdir.mkdirsSync(dir)
+
+ return fs.linkSync(srcpath, dstpath)
+}
+
+module.exports = {
+ createLink: u(createLink),
+ createLinkSync
+}
diff --git a/node_modules/fs-extra/lib/ensure/symlink-paths.js b/node_modules/fs-extra/lib/ensure/symlink-paths.js
new file mode 100644
index 0000000..33cd760
--- /dev/null
+++ b/node_modules/fs-extra/lib/ensure/symlink-paths.js
@@ -0,0 +1,99 @@
+'use strict'
+
+const path = require('path')
+const fs = require('graceful-fs')
+const pathExists = require('../path-exists').pathExists
+
+/**
+ * Function that returns two types of paths, one relative to symlink, and one
+ * relative to the current working directory. Checks if path is absolute or
+ * relative. If the path is relative, this function checks if the path is
+ * relative to symlink or relative to current working directory. This is an
+ * initiative to find a smarter `srcpath` to supply when building symlinks.
+ * This allows you to determine which path to use out of one of three possible
+ * types of source paths. The first is an absolute path. This is detected by
+ * `path.isAbsolute()`. When an absolute path is provided, it is checked to
+ * see if it exists. If it does it's used, if not an error is returned
+ * (callback)/ thrown (sync). The other two options for `srcpath` are a
+ * relative url. By default Node's `fs.symlink` works by creating a symlink
+ * using `dstpath` and expects the `srcpath` to be relative to the newly
+ * created symlink. If you provide a `srcpath` that does not exist on the file
+ * system it results in a broken symlink. To minimize this, the function
+ * checks to see if the 'relative to symlink' source file exists, and if it
+ * does it will use it. If it does not, it checks if there's a file that
+ * exists that is relative to the current working directory, if does its used.
+ * This preserves the expectations of the original fs.symlink spec and adds
+ * the ability to pass in `relative to current working direcotry` paths.
+ */
+
+function symlinkPaths (srcpath, dstpath, callback) {
+ if (path.isAbsolute(srcpath)) {
+ return fs.lstat(srcpath, (err) => {
+ if (err) {
+ err.message = err.message.replace('lstat', 'ensureSymlink')
+ return callback(err)
+ }
+ return callback(null, {
+ toCwd: srcpath,
+ toDst: srcpath
+ })
+ })
+ } else {
+ const dstdir = path.dirname(dstpath)
+ const relativeToDst = path.join(dstdir, srcpath)
+ return pathExists(relativeToDst, (err, exists) => {
+ if (err) return callback(err)
+ if (exists) {
+ return callback(null, {
+ toCwd: relativeToDst,
+ toDst: srcpath
+ })
+ } else {
+ return fs.lstat(srcpath, (err) => {
+ if (err) {
+ err.message = err.message.replace('lstat', 'ensureSymlink')
+ return callback(err)
+ }
+ return callback(null, {
+ toCwd: srcpath,
+ toDst: path.relative(dstdir, srcpath)
+ })
+ })
+ }
+ })
+ }
+}
+
+function symlinkPathsSync (srcpath, dstpath) {
+ let exists
+ if (path.isAbsolute(srcpath)) {
+ exists = fs.existsSync(srcpath)
+ if (!exists) throw new Error('absolute srcpath does not exist')
+ return {
+ toCwd: srcpath,
+ toDst: srcpath
+ }
+ } else {
+ const dstdir = path.dirname(dstpath)
+ const relativeToDst = path.join(dstdir, srcpath)
+ exists = fs.existsSync(relativeToDst)
+ if (exists) {
+ return {
+ toCwd: relativeToDst,
+ toDst: srcpath
+ }
+ } else {
+ exists = fs.existsSync(srcpath)
+ if (!exists) throw new Error('relative srcpath does not exist')
+ return {
+ toCwd: srcpath,
+ toDst: path.relative(dstdir, srcpath)
+ }
+ }
+ }
+}
+
+module.exports = {
+ symlinkPaths,
+ symlinkPathsSync
+}
diff --git a/node_modules/fs-extra/lib/ensure/symlink-type.js b/node_modules/fs-extra/lib/ensure/symlink-type.js
new file mode 100644
index 0000000..42dc0ce
--- /dev/null
+++ b/node_modules/fs-extra/lib/ensure/symlink-type.js
@@ -0,0 +1,31 @@
+'use strict'
+
+const fs = require('graceful-fs')
+
+function symlinkType (srcpath, type, callback) {
+ callback = (typeof type === 'function') ? type : callback
+ type = (typeof type === 'function') ? false : type
+ if (type) return callback(null, type)
+ fs.lstat(srcpath, (err, stats) => {
+ if (err) return callback(null, 'file')
+ type = (stats && stats.isDirectory()) ? 'dir' : 'file'
+ callback(null, type)
+ })
+}
+
+function symlinkTypeSync (srcpath, type) {
+ let stats
+
+ if (type) return type
+ try {
+ stats = fs.lstatSync(srcpath)
+ } catch {
+ return 'file'
+ }
+ return (stats && stats.isDirectory()) ? 'dir' : 'file'
+}
+
+module.exports = {
+ symlinkType,
+ symlinkTypeSync
+}
diff --git a/node_modules/fs-extra/lib/ensure/symlink.js b/node_modules/fs-extra/lib/ensure/symlink.js
new file mode 100644
index 0000000..2b93052
--- /dev/null
+++ b/node_modules/fs-extra/lib/ensure/symlink.js
@@ -0,0 +1,82 @@
+'use strict'
+
+const u = require('universalify').fromCallback
+const path = require('path')
+const fs = require('../fs')
+const _mkdirs = require('../mkdirs')
+const mkdirs = _mkdirs.mkdirs
+const mkdirsSync = _mkdirs.mkdirsSync
+
+const _symlinkPaths = require('./symlink-paths')
+const symlinkPaths = _symlinkPaths.symlinkPaths
+const symlinkPathsSync = _symlinkPaths.symlinkPathsSync
+
+const _symlinkType = require('./symlink-type')
+const symlinkType = _symlinkType.symlinkType
+const symlinkTypeSync = _symlinkType.symlinkTypeSync
+
+const pathExists = require('../path-exists').pathExists
+
+const { areIdentical } = require('../util/stat')
+
+function createSymlink (srcpath, dstpath, type, callback) {
+ callback = (typeof type === 'function') ? type : callback
+ type = (typeof type === 'function') ? false : type
+
+ fs.lstat(dstpath, (err, stats) => {
+ if (!err && stats.isSymbolicLink()) {
+ Promise.all([
+ fs.stat(srcpath),
+ fs.stat(dstpath)
+ ]).then(([srcStat, dstStat]) => {
+ if (areIdentical(srcStat, dstStat)) return callback(null)
+ _createSymlink(srcpath, dstpath, type, callback)
+ })
+ } else _createSymlink(srcpath, dstpath, type, callback)
+ })
+}
+
+function _createSymlink (srcpath, dstpath, type, callback) {
+ symlinkPaths(srcpath, dstpath, (err, relative) => {
+ if (err) return callback(err)
+ srcpath = relative.toDst
+ symlinkType(relative.toCwd, type, (err, type) => {
+ if (err) return callback(err)
+ const dir = path.dirname(dstpath)
+ pathExists(dir, (err, dirExists) => {
+ if (err) return callback(err)
+ if (dirExists) return fs.symlink(srcpath, dstpath, type, callback)
+ mkdirs(dir, err => {
+ if (err) return callback(err)
+ fs.symlink(srcpath, dstpath, type, callback)
+ })
+ })
+ })
+ })
+}
+
+function createSymlinkSync (srcpath, dstpath, type) {
+ let stats
+ try {
+ stats = fs.lstatSync(dstpath)
+ } catch {}
+ if (stats && stats.isSymbolicLink()) {
+ const srcStat = fs.statSync(srcpath)
+ const dstStat = fs.statSync(dstpath)
+ if (areIdentical(srcStat, dstStat)) return
+ }
+
+ const relative = symlinkPathsSync(srcpath, dstpath)
+ srcpath = relative.toDst
+ type = symlinkTypeSync(relative.toCwd, type)
+ const dir = path.dirname(dstpath)
+ const exists = fs.existsSync(dir)
+ if (exists) return fs.symlinkSync(srcpath, dstpath, type)
+ mkdirsSync(dir)
+ return fs.symlinkSync(srcpath, dstpath, type)
+}
+
+module.exports = {
+ createSymlink: u(createSymlink),
+ createSymlinkSync
+}
diff --git a/node_modules/fs-extra/lib/fs/index.js b/node_modules/fs-extra/lib/fs/index.js
new file mode 100644
index 0000000..7b025e2
--- /dev/null
+++ b/node_modules/fs-extra/lib/fs/index.js
@@ -0,0 +1,128 @@
+'use strict'
+// This is adapted from https://github.com/normalize/mz
+// Copyright (c) 2014-2016 Jonathan Ong me@jongleberry.com and Contributors
+const u = require('universalify').fromCallback
+const fs = require('graceful-fs')
+
+const api = [
+ 'access',
+ 'appendFile',
+ 'chmod',
+ 'chown',
+ 'close',
+ 'copyFile',
+ 'fchmod',
+ 'fchown',
+ 'fdatasync',
+ 'fstat',
+ 'fsync',
+ 'ftruncate',
+ 'futimes',
+ 'lchmod',
+ 'lchown',
+ 'link',
+ 'lstat',
+ 'mkdir',
+ 'mkdtemp',
+ 'open',
+ 'opendir',
+ 'readdir',
+ 'readFile',
+ 'readlink',
+ 'realpath',
+ 'rename',
+ 'rm',
+ 'rmdir',
+ 'stat',
+ 'symlink',
+ 'truncate',
+ 'unlink',
+ 'utimes',
+ 'writeFile'
+].filter(key => {
+ // Some commands are not available on some systems. Ex:
+ // fs.opendir was added in Node.js v12.12.0
+ // fs.rm was added in Node.js v14.14.0
+ // fs.lchown is not available on at least some Linux
+ return typeof fs[key] === 'function'
+})
+
+// Export cloned fs:
+Object.assign(exports, fs)
+
+// Universalify async methods:
+api.forEach(method => {
+ exports[method] = u(fs[method])
+})
+
+// We differ from mz/fs in that we still ship the old, broken, fs.exists()
+// since we are a drop-in replacement for the native module
+exports.exists = function (filename, callback) {
+ if (typeof callback === 'function') {
+ return fs.exists(filename, callback)
+ }
+ return new Promise(resolve => {
+ return fs.exists(filename, resolve)
+ })
+}
+
+// fs.read(), fs.write(), & fs.writev() need special treatment due to multiple callback args
+
+exports.read = function (fd, buffer, offset, length, position, callback) {
+ if (typeof callback === 'function') {
+ return fs.read(fd, buffer, offset, length, position, callback)
+ }
+ return new Promise((resolve, reject) => {
+ fs.read(fd, buffer, offset, length, position, (err, bytesRead, buffer) => {
+ if (err) return reject(err)
+ resolve({ bytesRead, buffer })
+ })
+ })
+}
+
+// Function signature can be
+// fs.write(fd, buffer[, offset[, length[, position]]], callback)
+// OR
+// fs.write(fd, string[, position[, encoding]], callback)
+// We need to handle both cases, so we use ...args
+exports.write = function (fd, buffer, ...args) {
+ if (typeof args[args.length - 1] === 'function') {
+ return fs.write(fd, buffer, ...args)
+ }
+
+ return new Promise((resolve, reject) => {
+ fs.write(fd, buffer, ...args, (err, bytesWritten, buffer) => {
+ if (err) return reject(err)
+ resolve({ bytesWritten, buffer })
+ })
+ })
+}
+
+// fs.writev only available in Node v12.9.0+
+if (typeof fs.writev === 'function') {
+ // Function signature is
+ // s.writev(fd, buffers[, position], callback)
+ // We need to handle the optional arg, so we use ...args
+ exports.writev = function (fd, buffers, ...args) {
+ if (typeof args[args.length - 1] === 'function') {
+ return fs.writev(fd, buffers, ...args)
+ }
+
+ return new Promise((resolve, reject) => {
+ fs.writev(fd, buffers, ...args, (err, bytesWritten, buffers) => {
+ if (err) return reject(err)
+ resolve({ bytesWritten, buffers })
+ })
+ })
+ }
+}
+
+// fs.realpath.native sometimes not available if fs is monkey-patched
+if (typeof fs.realpath.native === 'function') {
+ exports.realpath.native = u(fs.realpath.native)
+} else {
+ process.emitWarning(
+ 'fs.realpath.native is not a function. Is fs being monkey-patched?',
+ 'Warning', 'fs-extra-WARN0003'
+ )
+}
diff --git a/node_modules/fs-extra/lib/index.js b/node_modules/fs-extra/lib/index.js
new file mode 100644
index 0000000..da6711a
--- /dev/null
+++ b/node_modules/fs-extra/lib/index.js
@@ -0,0 +1,16 @@
+'use strict'
+
+module.exports = {
+ // Export promiseified graceful-fs:
+ ...require('./fs'),
+ // Export extra methods:
+ ...require('./copy'),
+ ...require('./empty'),
+ ...require('./ensure'),
+ ...require('./json'),
+ ...require('./mkdirs'),
+ ...require('./move'),
+ ...require('./output-file'),
+ ...require('./path-exists'),
+ ...require('./remove')
+}
diff --git a/node_modules/fs-extra/lib/json/index.js b/node_modules/fs-extra/lib/json/index.js
new file mode 100644
index 0000000..900126a
--- /dev/null
+++ b/node_modules/fs-extra/lib/json/index.js
@@ -0,0 +1,16 @@
+'use strict'
+
+const u = require('universalify').fromPromise
+const jsonFile = require('./jsonfile')
+
+jsonFile.outputJson = u(require('./output-json'))
+jsonFile.outputJsonSync = require('./output-json-sync')
+// aliases
+jsonFile.outputJSON = jsonFile.outputJson
+jsonFile.outputJSONSync = jsonFile.outputJsonSync
+jsonFile.writeJSON = jsonFile.writeJson
+jsonFile.writeJSONSync = jsonFile.writeJsonSync
+jsonFile.readJSON = jsonFile.readJson
+jsonFile.readJSONSync = jsonFile.readJsonSync
+
+module.exports = jsonFile
diff --git a/node_modules/fs-extra/lib/json/jsonfile.js b/node_modules/fs-extra/lib/json/jsonfile.js
new file mode 100644
index 0000000..f11d34d
--- /dev/null
+++ b/node_modules/fs-extra/lib/json/jsonfile.js
@@ -0,0 +1,11 @@
+'use strict'
+
+const jsonFile = require('jsonfile')
+
+module.exports = {
+ // jsonfile exports
+ readJson: jsonFile.readFile,
+ readJsonSync: jsonFile.readFileSync,
+ writeJson: jsonFile.writeFile,
+ writeJsonSync: jsonFile.writeFileSync
+}
diff --git a/node_modules/fs-extra/lib/json/output-json-sync.js b/node_modules/fs-extra/lib/json/output-json-sync.js
new file mode 100644
index 0000000..d4e564f
--- /dev/null
+++ b/node_modules/fs-extra/lib/json/output-json-sync.js
@@ -0,0 +1,12 @@
+'use strict'
+
+const { stringify } = require('jsonfile/utils')
+const { outputFileSync } = require('../output-file')
+
+function outputJsonSync (file, data, options) {
+ const str = stringify(data, options)
+
+ outputFileSync(file, str, options)
+}
+
+module.exports = outputJsonSync
diff --git a/node_modules/fs-extra/lib/json/output-json.js b/node_modules/fs-extra/lib/json/output-json.js
new file mode 100644
index 0000000..0afdeb6
--- /dev/null
+++ b/node_modules/fs-extra/lib/json/output-json.js
@@ -0,0 +1,12 @@
+'use strict'
+
+const { stringify } = require('jsonfile/utils')
+const { outputFile } = require('../output-file')
+
+async function outputJson (file, data, options = {}) {
+ const str = stringify(data, options)
+
+ await outputFile(file, str, options)
+}
+
+module.exports = outputJson
diff --git a/node_modules/fs-extra/lib/mkdirs/index.js b/node_modules/fs-extra/lib/mkdirs/index.js
new file mode 100644
index 0000000..9edecee
--- /dev/null
+++ b/node_modules/fs-extra/lib/mkdirs/index.js
@@ -0,0 +1,14 @@
+'use strict'
+const u = require('universalify').fromPromise
+const { makeDir: _makeDir, makeDirSync } = require('./make-dir')
+const makeDir = u(_makeDir)
+
+module.exports = {
+ mkdirs: makeDir,
+ mkdirsSync: makeDirSync,
+ // alias
+ mkdirp: makeDir,
+ mkdirpSync: makeDirSync,
+ ensureDir: makeDir,
+ ensureDirSync: makeDirSync
+}
diff --git a/node_modules/fs-extra/lib/mkdirs/make-dir.js b/node_modules/fs-extra/lib/mkdirs/make-dir.js
new file mode 100644
index 0000000..45ece64
--- /dev/null
+++ b/node_modules/fs-extra/lib/mkdirs/make-dir.js
@@ -0,0 +1,27 @@
+'use strict'
+const fs = require('../fs')
+const { checkPath } = require('./utils')
+
+const getMode = options => {
+ const defaults = { mode: 0o777 }
+ if (typeof options === 'number') return options
+ return ({ ...defaults, ...options }).mode
+}
+
+module.exports.makeDir = async (dir, options) => {
+ checkPath(dir)
+
+ return fs.mkdir(dir, {
+ mode: getMode(options),
+ recursive: true
+ })
+}
+
+module.exports.makeDirSync = (dir, options) => {
+ checkPath(dir)
+
+ return fs.mkdirSync(dir, {
+ mode: getMode(options),
+ recursive: true
+ })
+}
diff --git a/node_modules/fs-extra/lib/mkdirs/utils.js b/node_modules/fs-extra/lib/mkdirs/utils.js
new file mode 100644
index 0000000..a4059ad
--- /dev/null
+++ b/node_modules/fs-extra/lib/mkdirs/utils.js
@@ -0,0 +1,21 @@
+// Adapted from https://github.com/sindresorhus/make-dir
+// Copyright (c) Sindre Sorhus (sindresorhus.com)
+// Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
+// The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
+// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+'use strict'
+const path = require('path')
+
+// https://github.com/nodejs/node/issues/8987
+// https://github.com/libuv/libuv/pull/1088
+module.exports.checkPath = function checkPath (pth) {
+ if (process.platform === 'win32') {
+ const pathHasInvalidWinCharacters = /[<>:"|?*]/.test(pth.replace(path.parse(pth).root, ''))
+
+ if (pathHasInvalidWinCharacters) {
+ const error = new Error(`Path contains invalid characters: ${pth}`)
+ error.code = 'EINVAL'
+ throw error
+ }
+ }
+}
diff --git a/node_modules/fs-extra/lib/move/index.js b/node_modules/fs-extra/lib/move/index.js
new file mode 100644
index 0000000..fcee73c
--- /dev/null
+++ b/node_modules/fs-extra/lib/move/index.js
@@ -0,0 +1,7 @@
+'use strict'
+
+const u = require('universalify').fromCallback
+module.exports = {
+ move: u(require('./move')),
+ moveSync: require('./move-sync')
+}
diff --git a/node_modules/fs-extra/lib/move/move-sync.js b/node_modules/fs-extra/lib/move/move-sync.js
new file mode 100644
index 0000000..8453366
--- /dev/null
+++ b/node_modules/fs-extra/lib/move/move-sync.js
@@ -0,0 +1,54 @@
+'use strict'
+
+const fs = require('graceful-fs')
+const path = require('path')
+const copySync = require('../copy').copySync
+const removeSync = require('../remove').removeSync
+const mkdirpSync = require('../mkdirs').mkdirpSync
+const stat = require('../util/stat')
+
+function moveSync (src, dest, opts) {
+ opts = opts || {}
+ const overwrite = opts.overwrite || opts.clobber || false
+
+ const { srcStat, isChangingCase = false } = stat.checkPathsSync(src, dest, 'move', opts)
+ stat.checkParentPathsSync(src, srcStat, dest, 'move')
+ if (!isParentRoot(dest)) mkdirpSync(path.dirname(dest))
+ return doRename(src, dest, overwrite, isChangingCase)
+}
+
+function isParentRoot (dest) {
+ const parent = path.dirname(dest)
+ const parsedPath = path.parse(parent)
+ return parsedPath.root === parent
+}
+
+function doRename (src, dest, overwrite, isChangingCase) {
+ if (isChangingCase) return rename(src, dest, overwrite)
+ if (overwrite) {
+ removeSync(dest)
+ return rename(src, dest, overwrite)
+ }
+ if (fs.existsSync(dest)) throw new Error('dest already exists.')
+ return rename(src, dest, overwrite)
+}
+
+function rename (src, dest, overwrite) {
+ try {
+ fs.renameSync(src, dest)
+ } catch (err) {
+ if (err.code !== 'EXDEV') throw err
+ return moveAcrossDevice(src, dest, overwrite)
+ }
+}
+
+function moveAcrossDevice (src, dest, overwrite) {
+ const opts = {
+ overwrite,
+ errorOnExist: true
+ }
+ copySync(src, dest, opts)
+ return removeSync(src)
+}
+
+module.exports = moveSync
diff --git a/node_modules/fs-extra/lib/move/move.js b/node_modules/fs-extra/lib/move/move.js
new file mode 100644
index 0000000..7dc6ecd
--- /dev/null
+++ b/node_modules/fs-extra/lib/move/move.js
@@ -0,0 +1,75 @@
+'use strict'
+
+const fs = require('graceful-fs')
+const path = require('path')
+const copy = require('../copy').copy
+const remove = require('../remove').remove
+const mkdirp = require('../mkdirs').mkdirp
+const pathExists = require('../path-exists').pathExists
+const stat = require('../util/stat')
+
+function move (src, dest, opts, cb) {
+ if (typeof opts === 'function') {
+ cb = opts
+ opts = {}
+ }
+
+ opts = opts || {}
+
+ const overwrite = opts.overwrite || opts.clobber || false
+
+ stat.checkPaths(src, dest, 'move', opts, (err, stats) => {
+ if (err) return cb(err)
+ const { srcStat, isChangingCase = false } = stats
+ stat.checkParentPaths(src, srcStat, dest, 'move', err => {
+ if (err) return cb(err)
+ if (isParentRoot(dest)) return doRename(src, dest, overwrite, isChangingCase, cb)
+ mkdirp(path.dirname(dest), err => {
+ if (err) return cb(err)
+ return doRename(src, dest, overwrite, isChangingCase, cb)
+ })
+ })
+ })
+}
+
+function isParentRoot (dest) {
+ const parent = path.dirname(dest)
+ const parsedPath = path.parse(parent)
+ return parsedPath.root === parent
+}
+
+function doRename (src, dest, overwrite, isChangingCase, cb) {
+ if (isChangingCase) return rename(src, dest, overwrite, cb)
+ if (overwrite) {
+ return remove(dest, err => {
+ if (err) return cb(err)
+ return rename(src, dest, overwrite, cb)
+ })
+ }
+ pathExists(dest, (err, destExists) => {
+ if (err) return cb(err)
+ if (destExists) return cb(new Error('dest already exists.'))
+ return rename(src, dest, overwrite, cb)
+ })
+}
+
+function rename (src, dest, overwrite, cb) {
+ fs.rename(src, dest, err => {
+ if (!err) return cb()
+ if (err.code !== 'EXDEV') return cb(err)
+ return moveAcrossDevice(src, dest, overwrite, cb)
+ })
+}
+
+function moveAcrossDevice (src, dest, overwrite, cb) {
+ const opts = {
+ overwrite,
+ errorOnExist: true
+ }
+ copy(src, dest, opts, err => {
+ if (err) return cb(err)
+ return remove(src, cb)
+ })
+}
+
+module.exports = move
diff --git a/node_modules/fs-extra/lib/output-file/index.js b/node_modules/fs-extra/lib/output-file/index.js
new file mode 100644
index 0000000..92297ca
--- /dev/null
+++ b/node_modules/fs-extra/lib/output-file/index.js
@@ -0,0 +1,40 @@
+'use strict'
+
+const u = require('universalify').fromCallback
+const fs = require('graceful-fs')
+const path = require('path')
+const mkdir = require('../mkdirs')
+const pathExists = require('../path-exists').pathExists
+
+function outputFile (file, data, encoding, callback) {
+ if (typeof encoding === 'function') {
+ callback = encoding
+ encoding = 'utf8'
+ }
+
+ const dir = path.dirname(file)
+ pathExists(dir, (err, itDoes) => {
+ if (err) return callback(err)
+ if (itDoes) return fs.writeFile(file, data, encoding, callback)
+
+ mkdir.mkdirs(dir, err => {
+ if (err) return callback(err)
+
+ fs.writeFile(file, data, encoding, callback)
+ })
+ })
+}
+
+function outputFileSync (file, ...args) {
+ const dir = path.dirname(file)
+ if (fs.existsSync(dir)) {
+ return fs.writeFileSync(file, ...args)
+ }
+ mkdir.mkdirsSync(dir)
+ fs.writeFileSync(file, ...args)
+}
+
+module.exports = {
+ outputFile: u(outputFile),
+ outputFileSync
+}
diff --git a/node_modules/fs-extra/lib/path-exists/index.js b/node_modules/fs-extra/lib/path-exists/index.js
new file mode 100644
index 0000000..ddd9bc7
--- /dev/null
+++ b/node_modules/fs-extra/lib/path-exists/index.js
@@ -0,0 +1,12 @@
+'use strict'
+const u = require('universalify').fromPromise
+const fs = require('../fs')
+
+function pathExists (path) {
+ return fs.access(path).then(() => true).catch(() => false)
+}
+
+module.exports = {
+ pathExists: u(pathExists),
+ pathExistsSync: fs.existsSync
+}
diff --git a/node_modules/fs-extra/lib/remove/index.js b/node_modules/fs-extra/lib/remove/index.js
new file mode 100644
index 0000000..4428e59
--- /dev/null
+++ b/node_modules/fs-extra/lib/remove/index.js
@@ -0,0 +1,22 @@
+'use strict'
+
+const fs = require('graceful-fs')
+const u = require('universalify').fromCallback
+const rimraf = require('./rimraf')
+
+function remove (path, callback) {
+ // Node 14.14.0+
+ if (fs.rm) return fs.rm(path, { recursive: true, force: true }, callback)
+ rimraf(path, callback)
+}
+
+function removeSync (path) {
+ // Node 14.14.0+
+ if (fs.rmSync) return fs.rmSync(path, { recursive: true, force: true })
+ rimraf.sync(path)
+}
+
+module.exports = {
+ remove: u(remove),
+ removeSync
+}
diff --git a/node_modules/fs-extra/lib/remove/rimraf.js b/node_modules/fs-extra/lib/remove/rimraf.js
new file mode 100644
index 0000000..2c77102
--- /dev/null
+++ b/node_modules/fs-extra/lib/remove/rimraf.js
@@ -0,0 +1,302 @@
+'use strict'
+
+const fs = require('graceful-fs')
+const path = require('path')
+const assert = require('assert')
+
+const isWindows = (process.platform === 'win32')
+
+function defaults (options) {
+ const methods = [
+ 'unlink',
+ 'chmod',
+ 'stat',
+ 'lstat',
+ 'rmdir',
+ 'readdir'
+ ]
+ methods.forEach(m => {
+ options[m] = options[m] || fs[m]
+ m = m + 'Sync'
+ options[m] = options[m] || fs[m]
+ })
+
+ options.maxBusyTries = options.maxBusyTries || 3
+}
+
+function rimraf (p, options, cb) {
+ let busyTries = 0
+
+ if (typeof options === 'function') {
+ cb = options
+ options = {}
+ }
+
+ assert(p, 'rimraf: missing path')
+ assert.strictEqual(typeof p, 'string', 'rimraf: path should be a string')
+ assert.strictEqual(typeof cb, 'function', 'rimraf: callback function required')
+ assert(options, 'rimraf: invalid options argument provided')
+ assert.strictEqual(typeof options, 'object', 'rimraf: options should be object')
+
+ defaults(options)
+
+ rimraf_(p, options, function CB (er) {
+ if (er) {
+ if ((er.code === 'EBUSY' || er.code === 'ENOTEMPTY' || er.code === 'EPERM') &&
+ busyTries < options.maxBusyTries) {
+ busyTries++
+ const time = busyTries * 100
+ // try again, with the same exact callback as this one.
+ return setTimeout(() => rimraf_(p, options, CB), time)
+ }
+
+ // already gone
+ if (er.code === 'ENOENT') er = null
+ }
+
+ cb(er)
+ })
+}
+
+// Two possible strategies.
+// 1. Assume it's a file. unlink it, then do the dir stuff on EPERM or EISDIR
+// 2. Assume it's a directory. readdir, then do the file stuff on ENOTDIR
+//
+// Both result in an extra syscall when you guess wrong. However, there
+// are likely far more normal files in the world than directories. This
+// is based on the assumption that a the average number of files per
+// directory is >= 1.
+//
+// If anyone ever complains about this, then I guess the strategy could
+// be made configurable somehow. But until then, YAGNI.
+function rimraf_ (p, options, cb) {
+ assert(p)
+ assert(options)
+ assert(typeof cb === 'function')
+
+ // sunos lets the root user unlink directories, which is... weird.
+ // so we have to lstat here and make sure it's not a dir.
+ options.lstat(p, (er, st) => {
+ if (er && er.code === 'ENOENT') {
+ return cb(null)
+ }
+
+ // Windows can EPERM on stat. Life is suffering.
+ if (er && er.code === 'EPERM' && isWindows) {
+ return fixWinEPERM(p, options, er, cb)
+ }
+
+ if (st && st.isDirectory()) {
+ return rmdir(p, options, er, cb)
+ }
+
+ options.unlink(p, er => {
+ if (er) {
+ if (er.code === 'ENOENT') {
+ return cb(null)
+ }
+ if (er.code === 'EPERM') {
+ return (isWindows)
+ ? fixWinEPERM(p, options, er, cb)
+ : rmdir(p, options, er, cb)
+ }
+ if (er.code === 'EISDIR') {
+ return rmdir(p, options, er, cb)
+ }
+ }
+ return cb(er)
+ })
+ })
+}
+
+function fixWinEPERM (p, options, er, cb) {
+ assert(p)
+ assert(options)
+ assert(typeof cb === 'function')
+
+ options.chmod(p, 0o666, er2 => {
+ if (er2) {
+ cb(er2.code === 'ENOENT' ? null : er)
+ } else {
+ options.stat(p, (er3, stats) => {
+ if (er3) {
+ cb(er3.code === 'ENOENT' ? null : er)
+ } else if (stats.isDirectory()) {
+ rmdir(p, options, er, cb)
+ } else {
+ options.unlink(p, cb)
+ }
+ })
+ }
+ })
+}
+
+function fixWinEPERMSync (p, options, er) {
+ let stats
+
+ assert(p)
+ assert(options)
+
+ try {
+ options.chmodSync(p, 0o666)
+ } catch (er2) {
+ if (er2.code === 'ENOENT') {
+ return
+ } else {
+ throw er
+ }
+ }
+
+ try {
+ stats = options.statSync(p)
+ } catch (er3) {
+ if (er3.code === 'ENOENT') {
+ return
+ } else {
+ throw er
+ }
+ }
+
+ if (stats.isDirectory()) {
+ rmdirSync(p, options, er)
+ } else {
+ options.unlinkSync(p)
+ }
+}
+
+function rmdir (p, options, originalEr, cb) {
+ assert(p)
+ assert(options)
+ assert(typeof cb === 'function')
+
+ // try to rmdir first, and only readdir on ENOTEMPTY or EEXIST (SunOS)
+ // if we guessed wrong, and it's not a directory, then
+ // raise the original error.
+ options.rmdir(p, er => {
+ if (er && (er.code === 'ENOTEMPTY' || er.code === 'EEXIST' || er.code === 'EPERM')) {
+ rmkids(p, options, cb)
+ } else if (er && er.code === 'ENOTDIR') {
+ cb(originalEr)
+ } else {
+ cb(er)
+ }
+ })
+}
+
+function rmkids (p, options, cb) {
+ assert(p)
+ assert(options)
+ assert(typeof cb === 'function')
+
+ options.readdir(p, (er, files) => {
+ if (er) return cb(er)
+
+ let n = files.length
+ let errState
+
+ if (n === 0) return options.rmdir(p, cb)
+
+ files.forEach(f => {
+ rimraf(path.join(p, f), options, er => {
+ if (errState) {
+ return
+ }
+ if (er) return cb(errState = er)
+ if (--n === 0) {
+ options.rmdir(p, cb)
+ }
+ })
+ })
+ })
+}
+
+// this looks simpler, and is strictly *faster*, but will
+// tie up the JavaScript thread and fail on excessively
+// deep directory trees.
+function rimrafSync (p, options) {
+ let st
+
+ options = options || {}
+ defaults(options)
+
+ assert(p, 'rimraf: missing path')
+ assert.strictEqual(typeof p, 'string', 'rimraf: path should be a string')
+ assert(options, 'rimraf: missing options')
+ assert.strictEqual(typeof options, 'object', 'rimraf: options should be object')
+
+ try {
+ st = options.lstatSync(p)
+ } catch (er) {
+ if (er.code === 'ENOENT') {
+ return
+ }
+
+ // Windows can EPERM on stat. Life is suffering.
+ if (er.code === 'EPERM' && isWindows) {
+ fixWinEPERMSync(p, options, er)
+ }
+ }
+
+ try {
+ // sunos lets the root user unlink directories, which is... weird.
+ if (st && st.isDirectory()) {
+ rmdirSync(p, options, null)
+ } else {
+ options.unlinkSync(p)
+ }
+ } catch (er) {
+ if (er.code === 'ENOENT') {
+ return
+ } else if (er.code === 'EPERM') {
+ return isWindows ? fixWinEPERMSync(p, options, er) : rmdirSync(p, options, er)
+ } else if (er.code !== 'EISDIR') {
+ throw er
+ }
+ rmdirSync(p, options, er)
+ }
+}
+
+function rmdirSync (p, options, originalEr) {
+ assert(p)
+ assert(options)
+
+ try {
+ options.rmdirSync(p)
+ } catch (er) {
+ if (er.code === 'ENOTDIR') {
+ throw originalEr
+ } else if (er.code === 'ENOTEMPTY' || er.code === 'EEXIST' || er.code === 'EPERM') {
+ rmkidsSync(p, options)
+ } else if (er.code !== 'ENOENT') {
+ throw er
+ }
+ }
+}
+
+function rmkidsSync (p, options) {
+ assert(p)
+ assert(options)
+ options.readdirSync(p).forEach(f => rimrafSync(path.join(p, f), options))
+
+ if (isWindows) {
+ // We only end up here once we got ENOTEMPTY at least once, and
+ // at this point, we are guaranteed to have removed all the kids.
+ // So, we know that it won't be ENOENT or ENOTDIR or anything else.
+ // try really hard to delete stuff on windows, because it has a
+ // PROFOUNDLY annoying habit of not closing handles promptly when
+ // files are deleted, resulting in spurious ENOTEMPTY errors.
+ const startTime = Date.now()
+ do {
+ try {
+ const ret = options.rmdirSync(p, options)
+ return ret
+ } catch {}
+ } while (Date.now() - startTime < 500) // give up after 500ms
+ } else {
+ const ret = options.rmdirSync(p, options)
+ return ret
+ }
+}
+
+module.exports = rimraf
+rimraf.sync = rimrafSync
diff --git a/node_modules/fs-extra/lib/util/stat.js b/node_modules/fs-extra/lib/util/stat.js
new file mode 100644
index 0000000..0ed5aec
--- /dev/null
+++ b/node_modules/fs-extra/lib/util/stat.js
@@ -0,0 +1,154 @@
+'use strict'
+
+const fs = require('../fs')
+const path = require('path')
+const util = require('util')
+
+function getStats (src, dest, opts) {
+ const statFunc = opts.dereference
+ ? (file) => fs.stat(file, { bigint: true })
+ : (file) => fs.lstat(file, { bigint: true })
+ return Promise.all([
+ statFunc(src),
+ statFunc(dest).catch(err => {
+ if (err.code === 'ENOENT') return null
+ throw err
+ })
+ ]).then(([srcStat, destStat]) => ({ srcStat, destStat }))
+}
+
+function getStatsSync (src, dest, opts) {
+ let destStat
+ const statFunc = opts.dereference
+ ? (file) => fs.statSync(file, { bigint: true })
+ : (file) => fs.lstatSync(file, { bigint: true })
+ const srcStat = statFunc(src)
+ try {
+ destStat = statFunc(dest)
+ } catch (err) {
+ if (err.code === 'ENOENT') return { srcStat, destStat: null }
+ throw err
+ }
+ return { srcStat, destStat }
+}
+
+function checkPaths (src, dest, funcName, opts, cb) {
+ util.callbackify(getStats)(src, dest, opts, (err, stats) => {
+ if (err) return cb(err)
+ const { srcStat, destStat } = stats
+
+ if (destStat) {
+ if (areIdentical(srcStat, destStat)) {
+ const srcBaseName = path.basename(src)
+ const destBaseName = path.basename(dest)
+ if (funcName === 'move' &&
+ srcBaseName !== destBaseName &&
+ srcBaseName.toLowerCase() === destBaseName.toLowerCase()) {
+ return cb(null, { srcStat, destStat, isChangingCase: true })
+ }
+ return cb(new Error('Source and destination must not be the same.'))
+ }
+ if (srcStat.isDirectory() && !destStat.isDirectory()) {
+ return cb(new Error(`Cannot overwrite non-directory '${dest}' with directory '${src}'.`))
+ }
+ if (!srcStat.isDirectory() && destStat.isDirectory()) {
+ return cb(new Error(`Cannot overwrite directory '${dest}' with non-directory '${src}'.`))
+ }
+ }
+
+ if (srcStat.isDirectory() && isSrcSubdir(src, dest)) {
+ return cb(new Error(errMsg(src, dest, funcName)))
+ }
+ return cb(null, { srcStat, destStat })
+ })
+}
+
+function checkPathsSync (src, dest, funcName, opts) {
+ const { srcStat, destStat } = getStatsSync(src, dest, opts)
+
+ if (destStat) {
+ if (areIdentical(srcStat, destStat)) {
+ const srcBaseName = path.basename(src)
+ const destBaseName = path.basename(dest)
+ if (funcName === 'move' &&
+ srcBaseName !== destBaseName &&
+ srcBaseName.toLowerCase() === destBaseName.toLowerCase()) {
+ return { srcStat, destStat, isChangingCase: true }
+ }
+ throw new Error('Source and destination must not be the same.')
+ }
+ if (srcStat.isDirectory() && !destStat.isDirectory()) {
+ throw new Error(`Cannot overwrite non-directory '${dest}' with directory '${src}'.`)
+ }
+ if (!srcStat.isDirectory() && destStat.isDirectory()) {
+ throw new Error(`Cannot overwrite directory '${dest}' with non-directory '${src}'.`)
+ }
+ }
+
+ if (srcStat.isDirectory() && isSrcSubdir(src, dest)) {
+ throw new Error(errMsg(src, dest, funcName))
+ }
+ return { srcStat, destStat }
+}
+
+// recursively check if dest parent is a subdirectory of src.
+// It works for all file types including symlinks since it
+// checks the src and dest inodes. It starts from the deepest
+// parent and stops once it reaches the src parent or the root path.
+function checkParentPaths (src, srcStat, dest, funcName, cb) {
+ const srcParent = path.resolve(path.dirname(src))
+ const destParent = path.resolve(path.dirname(dest))
+ if (destParent === srcParent || destParent === path.parse(destParent).root) return cb()
+ fs.stat(destParent, { bigint: true }, (err, destStat) => {
+ if (err) {
+ if (err.code === 'ENOENT') return cb()
+ return cb(err)
+ }
+ if (areIdentical(srcStat, destStat)) {
+ return cb(new Error(errMsg(src, dest, funcName)))
+ }
+ return checkParentPaths(src, srcStat, destParent, funcName, cb)
+ })
+}
+
+function checkParentPathsSync (src, srcStat, dest, funcName) {
+ const srcParent = path.resolve(path.dirname(src))
+ const destParent = path.resolve(path.dirname(dest))
+ if (destParent === srcParent || destParent === path.parse(destParent).root) return
+ let destStat
+ try {
+ destStat = fs.statSync(destParent, { bigint: true })
+ } catch (err) {
+ if (err.code === 'ENOENT') return
+ throw err
+ }
+ if (areIdentical(srcStat, destStat)) {
+ throw new Error(errMsg(src, dest, funcName))
+ }
+ return checkParentPathsSync(src, srcStat, destParent, funcName)
+}
+
+function areIdentical (srcStat, destStat) {
+ return destStat.ino && destStat.dev && destStat.ino === srcStat.ino && destStat.dev === srcStat.dev
+}
+
+// return true if dest is a subdir of src, otherwise false.
+// It only checks the path strings.
+function isSrcSubdir (src, dest) {
+ const srcArr = path.resolve(src).split(path.sep).filter(i => i)
+ const destArr = path.resolve(dest).split(path.sep).filter(i => i)
+ return srcArr.reduce((acc, cur, i) => acc && destArr[i] === cur, true)
+}
+
+function errMsg (src, dest, funcName) {
+ return `Cannot ${funcName} '${src}' to a subdirectory of itself, '${dest}'.`
+}
+
+module.exports = {
+ checkPaths,
+ checkPathsSync,
+ checkParentPaths,
+ checkParentPathsSync,
+ isSrcSubdir,
+ areIdentical
+}
diff --git a/node_modules/fs-extra/lib/util/utimes.js b/node_modules/fs-extra/lib/util/utimes.js
new file mode 100644
index 0000000..75395de
--- /dev/null
+++ b/node_modules/fs-extra/lib/util/utimes.js
@@ -0,0 +1,26 @@
+'use strict'
+
+const fs = require('graceful-fs')
+
+function utimesMillis (path, atime, mtime, callback) {
+ // if (!HAS_MILLIS_RES) return fs.utimes(path, atime, mtime, callback)
+ fs.open(path, 'r+', (err, fd) => {
+ if (err) return callback(err)
+ fs.futimes(fd, atime, mtime, futimesErr => {
+ fs.close(fd, closeErr => {
+ if (callback) callback(futimesErr || closeErr)
+ })
+ })
+ })
+}
+
+function utimesMillisSync (path, atime, mtime) {
+ const fd = fs.openSync(path, 'r+')
+ fs.futimesSync(fd, atime, mtime)
+ return fs.closeSync(fd)
+}
+
+module.exports = {
+ utimesMillis,
+ utimesMillisSync
+}
diff --git a/node_modules/fs-extra/package.json b/node_modules/fs-extra/package.json
new file mode 100644
index 0000000..059000e
--- /dev/null
+++ b/node_modules/fs-extra/package.json
@@ -0,0 +1,67 @@
+{
+ "name": "fs-extra",
+ "version": "10.1.0",
+ "description": "fs-extra contains methods that aren't included in the vanilla Node.js fs package. Such as recursive mkdir, copy, and remove.",
+ "engines": {
+ "node": ">=12"
+ },
+ "homepage": "https://github.com/jprichardson/node-fs-extra",
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/jprichardson/node-fs-extra"
+ },
+ "keywords": [
+ "fs",
+ "file",
+ "file system",
+ "copy",
+ "directory",
+ "extra",
+ "mkdirp",
+ "mkdir",
+ "mkdirs",
+ "recursive",
+ "json",
+ "read",
+ "write",
+ "extra",
+ "delete",
+ "remove",
+ "touch",
+ "create",
+ "text",
+ "output",
+ "move",
+ "promise"
+ ],
+ "author": "JP Richardson ",
+ "license": "MIT",
+ "dependencies": {
+ "graceful-fs": "^4.2.0",
+ "jsonfile": "^6.0.1",
+ "universalify": "^2.0.0"
+ },
+ "devDependencies": {
+ "at-least-node": "^1.0.0",
+ "klaw": "^2.1.1",
+ "klaw-sync": "^3.0.2",
+ "minimist": "^1.1.1",
+ "mocha": "^5.0.5",
+ "nyc": "^15.0.0",
+ "proxyquire": "^2.0.1",
+ "read-dir-files": "^0.1.1",
+ "standard": "^16.0.3"
+ },
+ "main": "./lib/index.js",
+ "files": [
+ "lib/",
+ "!lib/**/__tests__/"
+ ],
+ "scripts": {
+ "lint": "standard",
+ "test-find": "find ./lib/**/__tests__ -name *.test.js | xargs mocha",
+ "test": "npm run lint && npm run unit",
+ "unit": "nyc node test.js"
+ },
+ "sideEffects": false
+}
diff --git a/node_modules/get-caller-file/LICENSE.md b/node_modules/get-caller-file/LICENSE.md
new file mode 100644
index 0000000..bf3e1c0
--- /dev/null
+++ b/node_modules/get-caller-file/LICENSE.md
@@ -0,0 +1,6 @@
+ISC License (ISC)
+Copyright 2018 Stefan Penner
+
+Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.
+
+THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
diff --git a/node_modules/get-caller-file/README.md b/node_modules/get-caller-file/README.md
new file mode 100644
index 0000000..a7d8c07
--- /dev/null
+++ b/node_modules/get-caller-file/README.md
@@ -0,0 +1,41 @@
+# get-caller-file
+
+[![Build Status](https://travis-ci.org/stefanpenner/get-caller-file.svg?branch=master)](https://travis-ci.org/stefanpenner/get-caller-file)
+[![Build status](https://ci.appveyor.com/api/projects/status/ol2q94g1932cy14a/branch/master?svg=true)](https://ci.appveyor.com/project/embercli/get-caller-file/branch/master)
+
+This is a utility, which allows a function to figure out from which file it was invoked. It does so by inspecting v8's stack trace at the time it is invoked.
+
+Inspired by http://stackoverflow.com/questions/13227489
+
+*note: this relies on Node/V8 specific APIs, as such other runtimes may not work*
+
+## Installation
+
+```bash
+yarn add get-caller-file
+```
+
+## Usage
+
+Given:
+
+```js
+// ./foo.js
+const getCallerFile = require('get-caller-file');
+
+module.exports = function() {
+ return getCallerFile(); // figures out who called it
+};
+```
+
+```js
+// index.js
+const foo = require('./foo');
+
+foo() // => /full/path/to/this/file/index.js
+```
+
+
+## Options:
+
+* `getCallerFile(position = 2)`: where position is stack frame whos fileName we want.
diff --git a/node_modules/get-caller-file/index.d.ts b/node_modules/get-caller-file/index.d.ts
new file mode 100644
index 0000000..babed69
--- /dev/null
+++ b/node_modules/get-caller-file/index.d.ts
@@ -0,0 +1,2 @@
+declare const _default: (position?: number) => any;
+export = _default;
diff --git a/node_modules/get-caller-file/index.js b/node_modules/get-caller-file/index.js
new file mode 100644
index 0000000..57304f8
--- /dev/null
+++ b/node_modules/get-caller-file/index.js
@@ -0,0 +1,22 @@
+"use strict";
+// Call this function in a another function to find out the file from
+// which that function was called from. (Inspects the v8 stack trace)
+//
+// Inspired by http://stackoverflow.com/questions/13227489
+module.exports = function getCallerFile(position) {
+ if (position === void 0) { position = 2; }
+ if (position >= Error.stackTraceLimit) {
+ throw new TypeError('getCallerFile(position) requires position be less then Error.stackTraceLimit but position was: `' + position + '` and Error.stackTraceLimit was: `' + Error.stackTraceLimit + '`');
+ }
+ var oldPrepareStackTrace = Error.prepareStackTrace;
+ Error.prepareStackTrace = function (_, stack) { return stack; };
+ var stack = new Error().stack;
+ Error.prepareStackTrace = oldPrepareStackTrace;
+ if (stack !== null && typeof stack === 'object') {
+ // stack[0] holds this file
+ // stack[1] holds where this function was called
+ // stack[2] holds the file we're interested in
+ return stack[position] ? stack[position].getFileName() : undefined;
+ }
+};
+//# sourceMappingURL=index.js.map
\ No newline at end of file
diff --git a/node_modules/get-caller-file/index.js.map b/node_modules/get-caller-file/index.js.map
new file mode 100644
index 0000000..89c655c
--- /dev/null
+++ b/node_modules/get-caller-file/index.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"index.js","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":";AAAA,qEAAqE;AACrE,qEAAqE;AACrE,EAAE;AACF,0DAA0D;AAE1D,iBAAS,SAAS,aAAa,CAAC,QAAY;IAAZ,yBAAA,EAAA,YAAY;IAC1C,IAAI,QAAQ,IAAI,KAAK,CAAC,eAAe,EAAE;QACrC,MAAM,IAAI,SAAS,CAAC,kGAAkG,GAAG,QAAQ,GAAG,oCAAoC,GAAG,KAAK,CAAC,eAAe,GAAG,GAAG,CAAC,CAAC;KACzM;IAED,IAAM,oBAAoB,GAAG,KAAK,CAAC,iBAAiB,CAAC;IACrD,KAAK,CAAC,iBAAiB,GAAG,UAAC,CAAC,EAAE,KAAK,IAAM,OAAA,KAAK,EAAL,CAAK,CAAC;IAC/C,IAAM,KAAK,GAAG,IAAI,KAAK,EAAE,CAAC,KAAK,CAAC;IAChC,KAAK,CAAC,iBAAiB,GAAG,oBAAoB,CAAC;IAG/C,IAAI,KAAK,KAAK,IAAI,IAAI,OAAO,KAAK,KAAK,QAAQ,EAAE;QAC/C,2BAA2B;QAC3B,gDAAgD;QAChD,8CAA8C;QAC9C,OAAO,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAE,KAAK,CAAC,QAAQ,CAAS,CAAC,WAAW,EAAE,CAAC,CAAC,CAAC,SAAS,CAAC;KAC7E;AACH,CAAC,CAAC"}
\ No newline at end of file
diff --git a/node_modules/get-caller-file/package.json b/node_modules/get-caller-file/package.json
new file mode 100644
index 0000000..b0dd571
--- /dev/null
+++ b/node_modules/get-caller-file/package.json
@@ -0,0 +1,42 @@
+{
+ "name": "get-caller-file",
+ "version": "2.0.5",
+ "description": "",
+ "main": "index.js",
+ "directories": {
+ "test": "tests"
+ },
+ "files": [
+ "index.js",
+ "index.js.map",
+ "index.d.ts"
+ ],
+ "scripts": {
+ "prepare": "tsc",
+ "test": "mocha test",
+ "test:debug": "mocha test"
+ },
+ "repository": {
+ "type": "git",
+ "url": "git+https://github.com/stefanpenner/get-caller-file.git"
+ },
+ "author": "Stefan Penner",
+ "license": "ISC",
+ "bugs": {
+ "url": "https://github.com/stefanpenner/get-caller-file/issues"
+ },
+ "homepage": "https://github.com/stefanpenner/get-caller-file#readme",
+ "devDependencies": {
+ "@types/chai": "^4.1.7",
+ "@types/ensure-posix-path": "^1.0.0",
+ "@types/mocha": "^5.2.6",
+ "@types/node": "^11.10.5",
+ "chai": "^4.1.2",
+ "ensure-posix-path": "^1.0.1",
+ "mocha": "^5.2.0",
+ "typescript": "^3.3.3333"
+ },
+ "engines": {
+ "node": "6.* || 8.* || >= 10.*"
+ }
+}
diff --git a/node_modules/get-stdin/index.d.ts b/node_modules/get-stdin/index.d.ts
new file mode 100644
index 0000000..c2a0605
--- /dev/null
+++ b/node_modules/get-stdin/index.d.ts
@@ -0,0 +1,29 @@
+declare const getStdin: {
+ /**
+ Get [`stdin`](https://nodejs.org/api/process.html#process_process_stdin) as a `string`.
+
+ @returns A promise that is resolved when the `end` event fires on the `stdin` stream, indicating that there is no more data to be read. In a TTY context, an empty `string` is returned.
+
+ @example
+ ```
+ // example.ts
+ import getStdin from 'get-stdin';
+
+ console.log(await getStdin());
+ //=> 'unicorns'
+
+ // $ echo unicorns | ts-node example.ts
+ // unicorns
+ ```
+ */
+ (): Promise;
+
+ /**
+ Get [`stdin`](https://nodejs.org/api/process.html#process_process_stdin) as a `Buffer`.
+
+ @returns A promise that is resolved when the `end` event fires on the `stdin` stream, indicating that there is no more data to be read. In a TTY context, an empty `Buffer` is returned.
+ */
+ buffer(): Promise;
+};
+
+export default getStdin;
diff --git a/node_modules/get-stdin/index.js b/node_modules/get-stdin/index.js
new file mode 100644
index 0000000..e8182da
--- /dev/null
+++ b/node_modules/get-stdin/index.js
@@ -0,0 +1,33 @@
+const {stdin} = process;
+
+export default async function getStdin() {
+ let result = '';
+
+ if (stdin.isTTY) {
+ return result;
+ }
+
+ stdin.setEncoding('utf8');
+
+ for await (const chunk of stdin) {
+ result += chunk;
+ }
+
+ return result;
+}
+
+getStdin.buffer = async () => {
+ const result = [];
+ let length = 0;
+
+ if (stdin.isTTY) {
+ return Buffer.concat([]);
+ }
+
+ for await (const chunk of stdin) {
+ result.push(chunk);
+ length += chunk.length;
+ }
+
+ return Buffer.concat(result, length);
+};
diff --git a/node_modules/get-stdin/license b/node_modules/get-stdin/license
new file mode 100644
index 0000000..fa7ceba
--- /dev/null
+++ b/node_modules/get-stdin/license
@@ -0,0 +1,9 @@
+MIT License
+
+Copyright (c) Sindre Sorhus (https://sindresorhus.com)
+
+Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
diff --git a/node_modules/get-stdin/package.json b/node_modules/get-stdin/package.json
new file mode 100644
index 0000000..bd758aa
--- /dev/null
+++ b/node_modules/get-stdin/package.json
@@ -0,0 +1,42 @@
+{
+ "name": "get-stdin",
+ "version": "9.0.0",
+ "description": "Get stdin as a string or buffer",
+ "license": "MIT",
+ "repository": "sindresorhus/get-stdin",
+ "funding": "https://github.com/sponsors/sindresorhus",
+ "author": {
+ "name": "Sindre Sorhus",
+ "email": "sindresorhus@gmail.com",
+ "url": "https://sindresorhus.com"
+ },
+ "type": "module",
+ "exports": "./index.js",
+ "engines": {
+ "node": ">=12"
+ },
+ "scripts": {
+ "test": "xo && ava test.js test-buffer.js && echo unicorns | node test-real.js && tsd"
+ },
+ "files": [
+ "index.js",
+ "index.d.ts"
+ ],
+ "keywords": [
+ "std",
+ "stdin",
+ "stdio",
+ "concat",
+ "buffer",
+ "stream",
+ "process",
+ "read"
+ ],
+ "devDependencies": {
+ "@types/node": "^14.14.41",
+ "ava": "^3.15.0",
+ "delay": "^5.0.0",
+ "tsd": "^0.14.0",
+ "xo": "^0.38.2"
+ }
+}
diff --git a/node_modules/get-stdin/readme.md b/node_modules/get-stdin/readme.md
new file mode 100644
index 0000000..ede347a
--- /dev/null
+++ b/node_modules/get-stdin/readme.md
@@ -0,0 +1,56 @@
+# get-stdin
+
+> Get [stdin](https://nodejs.org/api/process.html#process_process_stdin) as a string or buffer
+
+## Install
+
+```
+$ npm install get-stdin
+```
+
+## Usage
+
+```js
+// example.js
+import getStdin from 'get-stdin';
+
+console.log(await getStdin());
+//=> 'unicorns'
+```
+
+```
+$ echo unicorns | node example.js
+unicorns
+```
+
+## API
+
+Both methods returns a promise that is resolved when the `end` event fires on the `stdin` stream, indicating that there is no more data to be read.
+
+### getStdin()
+
+Get `stdin` as a `string`.
+
+In a TTY context, a promise that resolves to an empty `string` is returned.
+
+### getStdin.buffer()
+
+Get `stdin` as a `Buffer`.
+
+In a TTY context, a promise that resolves to an empty `Buffer` is returned.
+
+## Related
+
+- [get-stream](https://github.com/sindresorhus/get-stream) - Get a stream as a string or buffer
+
+---
+
+
diff --git a/node_modules/glob-parent/CHANGELOG.md b/node_modules/glob-parent/CHANGELOG.md
new file mode 100644
index 0000000..fb9de96
--- /dev/null
+++ b/node_modules/glob-parent/CHANGELOG.md
@@ -0,0 +1,110 @@
+### [5.1.2](https://github.com/gulpjs/glob-parent/compare/v5.1.1...v5.1.2) (2021-03-06)
+
+
+### Bug Fixes
+
+* eliminate ReDoS ([#36](https://github.com/gulpjs/glob-parent/issues/36)) ([f923116](https://github.com/gulpjs/glob-parent/commit/f9231168b0041fea3f8f954b3cceb56269fc6366))
+
+### [5.1.1](https://github.com/gulpjs/glob-parent/compare/v5.1.0...v5.1.1) (2021-01-27)
+
+
+### Bug Fixes
+
+* unescape exclamation mark ([#26](https://github.com/gulpjs/glob-parent/issues/26)) ([a98874f](https://github.com/gulpjs/glob-parent/commit/a98874f1a59e407f4fb1beb0db4efa8392da60bb))
+
+## [5.1.0](https://github.com/gulpjs/glob-parent/compare/v5.0.0...v5.1.0) (2021-01-27)
+
+
+### Features
+
+* add `flipBackslashes` option to disable auto conversion of slashes (closes [#24](https://github.com/gulpjs/glob-parent/issues/24)) ([#25](https://github.com/gulpjs/glob-parent/issues/25)) ([eecf91d](https://github.com/gulpjs/glob-parent/commit/eecf91d5e3834ed78aee39c4eaaae654d76b87b3))
+
+## [5.0.0](https://github.com/gulpjs/glob-parent/compare/v4.0.0...v5.0.0) (2021-01-27)
+
+
+### ⚠ BREAKING CHANGES
+
+* Drop support for node <6 & bump dependencies
+
+### Miscellaneous Chores
+
+* Drop support for node <6 & bump dependencies ([896c0c0](https://github.com/gulpjs/glob-parent/commit/896c0c00b4e7362f60b96e7fc295ae929245255a))
+
+## [4.0.0](https://github.com/gulpjs/glob-parent/compare/v3.1.0...v4.0.0) (2021-01-27)
+
+
+### ⚠ BREAKING CHANGES
+
+* question marks are valid path characters on Windows so avoid flagging as a glob when alone
+* Update is-glob dependency
+
+### Features
+
+* hoist regexps and strings for performance gains ([4a80667](https://github.com/gulpjs/glob-parent/commit/4a80667c69355c76a572a5892b0f133c8e1f457e))
+* question marks are valid path characters on Windows so avoid flagging as a glob when alone ([2a551dd](https://github.com/gulpjs/glob-parent/commit/2a551dd0dc3235e78bf3c94843d4107072d17841))
+* Update is-glob dependency ([e41fcd8](https://github.com/gulpjs/glob-parent/commit/e41fcd895d1f7bc617dba45c9d935a7949b9c281))
+
+## [3.1.0](https://github.com/gulpjs/glob-parent/compare/v3.0.1...v3.1.0) (2021-01-27)
+
+
+### Features
+
+* allow basic win32 backslash use ([272afa5](https://github.com/gulpjs/glob-parent/commit/272afa5fd070fc0f796386a5993d4ee4a846988b))
+* handle extglobs (parentheses) containing separators ([7db1bdb](https://github.com/gulpjs/glob-parent/commit/7db1bdb0756e55fd14619e8ce31aa31b17b117fd))
+* new approach to braces/brackets handling ([8269bd8](https://github.com/gulpjs/glob-parent/commit/8269bd89290d99fac9395a354fb56fdcdb80f0be))
+* pre-process braces/brackets sections ([9ef8a87](https://github.com/gulpjs/glob-parent/commit/9ef8a87f66b1a43d0591e7a8e4fc5a18415ee388))
+* preserve escaped brace/bracket at end of string ([8cfb0ba](https://github.com/gulpjs/glob-parent/commit/8cfb0ba84202d51571340dcbaf61b79d16a26c76))
+
+
+### Bug Fixes
+
+* trailing escaped square brackets ([99ec9fe](https://github.com/gulpjs/glob-parent/commit/99ec9fecc60ee488ded20a94dd4f18b4f55c4ccf))
+
+### [3.0.1](https://github.com/gulpjs/glob-parent/compare/v3.0.0...v3.0.1) (2021-01-27)
+
+
+### Features
+
+* use path-dirname ponyfill ([cdbea5f](https://github.com/gulpjs/glob-parent/commit/cdbea5f32a58a54e001a75ddd7c0fccd4776aacc))
+
+
+### Bug Fixes
+
+* unescape glob-escaped dirnames on output ([598c533](https://github.com/gulpjs/glob-parent/commit/598c533bdf49c1428bc063aa9b8db40c5a86b030))
+
+## [3.0.0](https://github.com/gulpjs/glob-parent/compare/v2.0.0...v3.0.0) (2021-01-27)
+
+
+### ⚠ BREAKING CHANGES
+
+* update is-glob dependency
+
+### Features
+
+* update is-glob dependency ([5c5f8ef](https://github.com/gulpjs/glob-parent/commit/5c5f8efcee362a8e7638cf8220666acd8784f6bd))
+
+## [2.0.0](https://github.com/gulpjs/glob-parent/compare/v1.3.0...v2.0.0) (2021-01-27)
+
+
+### Features
+
+* move up to dirname regardless of glob characters ([f97fb83](https://github.com/gulpjs/glob-parent/commit/f97fb83be2e0a9fc8d3b760e789d2ecadd6aa0c2))
+
+## [1.3.0](https://github.com/gulpjs/glob-parent/compare/v1.2.0...v1.3.0) (2021-01-27)
+
+## [1.2.0](https://github.com/gulpjs/glob-parent/compare/v1.1.0...v1.2.0) (2021-01-27)
+
+
+### Reverts
+
+* feat: make regex test strings smaller ([dc80fa9](https://github.com/gulpjs/glob-parent/commit/dc80fa9658dca20549cfeba44bbd37d5246fcce0))
+
+## [1.1.0](https://github.com/gulpjs/glob-parent/compare/v1.0.0...v1.1.0) (2021-01-27)
+
+
+### Features
+
+* make regex test strings smaller ([cd83220](https://github.com/gulpjs/glob-parent/commit/cd832208638f45169f986d80fcf66e401f35d233))
+
+## 1.0.0 (2021-01-27)
+
diff --git a/node_modules/glob-parent/LICENSE b/node_modules/glob-parent/LICENSE
new file mode 100644
index 0000000..63222d7
--- /dev/null
+++ b/node_modules/glob-parent/LICENSE
@@ -0,0 +1,15 @@
+The ISC License
+
+Copyright (c) 2015, 2019 Elan Shanker
+
+Permission to use, copy, modify, and/or distribute this software for any
+purpose with or without fee is hereby granted, provided that the above
+copyright notice and this permission notice appear in all copies.
+
+THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
+ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
+IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
diff --git a/node_modules/glob-parent/README.md b/node_modules/glob-parent/README.md
new file mode 100644
index 0000000..36a2793
--- /dev/null
+++ b/node_modules/glob-parent/README.md
@@ -0,0 +1,137 @@
+
+
+
+
+
+
+# glob-parent
+
+[![NPM version][npm-image]][npm-url] [![Downloads][downloads-image]][npm-url] [![Azure Pipelines Build Status][azure-pipelines-image]][azure-pipelines-url] [![Travis Build Status][travis-image]][travis-url] [![AppVeyor Build Status][appveyor-image]][appveyor-url] [![Coveralls Status][coveralls-image]][coveralls-url] [![Gitter chat][gitter-image]][gitter-url]
+
+Extract the non-magic parent path from a glob string.
+
+## Usage
+
+```js
+var globParent = require('glob-parent');
+
+globParent('path/to/*.js'); // 'path/to'
+globParent('/root/path/to/*.js'); // '/root/path/to'
+globParent('/*.js'); // '/'
+globParent('*.js'); // '.'
+globParent('**/*.js'); // '.'
+globParent('path/{to,from}'); // 'path'
+globParent('path/!(to|from)'); // 'path'
+globParent('path/?(to|from)'); // 'path'
+globParent('path/+(to|from)'); // 'path'
+globParent('path/*(to|from)'); // 'path'
+globParent('path/@(to|from)'); // 'path'
+globParent('path/**/*'); // 'path'
+
+// if provided a non-glob path, returns the nearest dir
+globParent('path/foo/bar.js'); // 'path/foo'
+globParent('path/foo/'); // 'path/foo'
+globParent('path/foo'); // 'path' (see issue #3 for details)
+```
+
+## API
+
+### `globParent(maybeGlobString, [options])`
+
+Takes a string and returns the part of the path before the glob begins. Be aware of Escaping rules and Limitations below.
+
+#### options
+
+```js
+{
+ // Disables the automatic conversion of slashes for Windows
+ flipBackslashes: true
+}
+```
+
+## Escaping
+
+The following characters have special significance in glob patterns and must be escaped if you want them to be treated as regular path characters:
+
+- `?` (question mark) unless used as a path segment alone
+- `*` (asterisk)
+- `|` (pipe)
+- `(` (opening parenthesis)
+- `)` (closing parenthesis)
+- `{` (opening curly brace)
+- `}` (closing curly brace)
+- `[` (opening bracket)
+- `]` (closing bracket)
+
+**Example**
+
+```js
+globParent('foo/[bar]/') // 'foo'
+globParent('foo/\\[bar]/') // 'foo/[bar]'
+```
+
+## Limitations
+
+### Braces & Brackets
+This library attempts a quick and imperfect method of determining which path
+parts have glob magic without fully parsing/lexing the pattern. There are some
+advanced use cases that can trip it up, such as nested braces where the outer
+pair is escaped and the inner one contains a path separator. If you find
+yourself in the unlikely circumstance of being affected by this or need to
+ensure higher-fidelity glob handling in your library, it is recommended that you
+pre-process your input with [expand-braces] and/or [expand-brackets].
+
+### Windows
+Backslashes are not valid path separators for globs. If a path with backslashes
+is provided anyway, for simple cases, glob-parent will replace the path
+separator for you and return the non-glob parent path (now with
+forward-slashes, which are still valid as Windows path separators).
+
+This cannot be used in conjunction with escape characters.
+
+```js
+// BAD
+globParent('C:\\Program Files \\(x86\\)\\*.ext') // 'C:/Program Files /(x86/)'
+
+// GOOD
+globParent('C:/Program Files\\(x86\\)/*.ext') // 'C:/Program Files (x86)'
+```
+
+If you are using escape characters for a pattern without path parts (i.e.
+relative to `cwd`), prefix with `./` to avoid confusing glob-parent.
+
+```js
+// BAD
+globParent('foo \\[bar]') // 'foo '
+globParent('foo \\[bar]*') // 'foo '
+
+// GOOD
+globParent('./foo \\[bar]') // 'foo [bar]'
+globParent('./foo \\[bar]*') // '.'
+```
+
+## License
+
+ISC
+
+[expand-braces]: https://github.com/jonschlinkert/expand-braces
+[expand-brackets]: https://github.com/jonschlinkert/expand-brackets
+
+[downloads-image]: https://img.shields.io/npm/dm/glob-parent.svg
+[npm-url]: https://www.npmjs.com/package/glob-parent
+[npm-image]: https://img.shields.io/npm/v/glob-parent.svg
+
+[azure-pipelines-url]: https://dev.azure.com/gulpjs/gulp/_build/latest?definitionId=2&branchName=master
+[azure-pipelines-image]: https://dev.azure.com/gulpjs/gulp/_apis/build/status/glob-parent?branchName=master
+
+[travis-url]: https://travis-ci.org/gulpjs/glob-parent
+[travis-image]: https://img.shields.io/travis/gulpjs/glob-parent.svg?label=travis-ci
+
+[appveyor-url]: https://ci.appveyor.com/project/gulpjs/glob-parent
+[appveyor-image]: https://img.shields.io/appveyor/ci/gulpjs/glob-parent.svg?label=appveyor
+
+[coveralls-url]: https://coveralls.io/r/gulpjs/glob-parent
+[coveralls-image]: https://img.shields.io/coveralls/gulpjs/glob-parent/master.svg
+
+[gitter-url]: https://gitter.im/gulpjs/gulp
+[gitter-image]: https://badges.gitter.im/gulpjs/gulp.svg
diff --git a/node_modules/glob-parent/index.js b/node_modules/glob-parent/index.js
new file mode 100644
index 0000000..09e257e
--- /dev/null
+++ b/node_modules/glob-parent/index.js
@@ -0,0 +1,42 @@
+'use strict';
+
+var isGlob = require('is-glob');
+var pathPosixDirname = require('path').posix.dirname;
+var isWin32 = require('os').platform() === 'win32';
+
+var slash = '/';
+var backslash = /\\/g;
+var enclosure = /[\{\[].*[\}\]]$/;
+var globby = /(^|[^\\])([\{\[]|\([^\)]+$)/;
+var escaped = /\\([\!\*\?\|\[\]\(\)\{\}])/g;
+
+/**
+ * @param {string} str
+ * @param {Object} opts
+ * @param {boolean} [opts.flipBackslashes=true]
+ * @returns {string}
+ */
+module.exports = function globParent(str, opts) {
+ var options = Object.assign({ flipBackslashes: true }, opts);
+
+ // flip windows path separators
+ if (options.flipBackslashes && isWin32 && str.indexOf(slash) < 0) {
+ str = str.replace(backslash, slash);
+ }
+
+ // special case for strings ending in enclosure containing path separator
+ if (enclosure.test(str)) {
+ str += slash;
+ }
+
+ // preserves full path in case of trailing path separator
+ str += 'a';
+
+ // remove path parts that are globby
+ do {
+ str = pathPosixDirname(str);
+ } while (isGlob(str) || globby.test(str));
+
+ // remove escape chars and return result
+ return str.replace(escaped, '$1');
+};
diff --git a/node_modules/glob-parent/package.json b/node_modules/glob-parent/package.json
new file mode 100644
index 0000000..125c971
--- /dev/null
+++ b/node_modules/glob-parent/package.json
@@ -0,0 +1,48 @@
+{
+ "name": "glob-parent",
+ "version": "5.1.2",
+ "description": "Extract the non-magic parent path from a glob string.",
+ "author": "Gulp Team (https://gulpjs.com/)",
+ "contributors": [
+ "Elan Shanker (https://github.com/es128)",
+ "Blaine Bublitz "
+ ],
+ "repository": "gulpjs/glob-parent",
+ "license": "ISC",
+ "engines": {
+ "node": ">= 6"
+ },
+ "main": "index.js",
+ "files": [
+ "LICENSE",
+ "index.js"
+ ],
+ "scripts": {
+ "lint": "eslint .",
+ "pretest": "npm run lint",
+ "test": "nyc mocha --async-only",
+ "azure-pipelines": "nyc mocha --async-only --reporter xunit -O output=test.xunit",
+ "coveralls": "nyc report --reporter=text-lcov | coveralls"
+ },
+ "dependencies": {
+ "is-glob": "^4.0.1"
+ },
+ "devDependencies": {
+ "coveralls": "^3.0.11",
+ "eslint": "^2.13.1",
+ "eslint-config-gulp": "^3.0.1",
+ "expect": "^1.20.2",
+ "mocha": "^6.0.2",
+ "nyc": "^13.3.0"
+ },
+ "keywords": [
+ "glob",
+ "parent",
+ "strip",
+ "path",
+ "dirname",
+ "directory",
+ "base",
+ "wildcard"
+ ]
+}
diff --git a/node_modules/globby/gitignore.js b/node_modules/globby/gitignore.js
new file mode 100644
index 0000000..dc26aa2
--- /dev/null
+++ b/node_modules/globby/gitignore.js
@@ -0,0 +1,108 @@
+import process from 'node:process';
+import fs from 'node:fs';
+import path from 'node:path';
+import fastGlob from 'fast-glob';
+import gitIgnore from 'ignore';
+import slash from 'slash';
+import toPath from './to-path.js';
+
+const DEFAULT_IGNORE = [
+ '**/node_modules/**',
+ '**/flow-typed/**',
+ '**/coverage/**',
+ '**/.git',
+];
+
+const mapGitIgnorePatternTo = base => ignore => {
+ if (ignore.startsWith('!')) {
+ return '!' + path.posix.join(base, ignore.slice(1));
+ }
+
+ return path.posix.join(base, ignore);
+};
+
+const parseGitIgnore = (content, options) => {
+ const base = slash(path.relative(options.cwd, path.dirname(options.fileName)));
+
+ return content
+ .split(/\r?\n/)
+ .filter(Boolean)
+ .filter(line => !line.startsWith('#'))
+ .map(mapGitIgnorePatternTo(base));
+};
+
+const reduceIgnore = files => {
+ const ignores = gitIgnore();
+ for (const file of files) {
+ ignores.add(parseGitIgnore(file.content, {
+ cwd: file.cwd,
+ fileName: file.filePath,
+ }));
+ }
+
+ return ignores;
+};
+
+const ensureAbsolutePathForCwd = (cwd, p) => {
+ cwd = slash(cwd);
+ if (path.isAbsolute(p)) {
+ if (slash(p).startsWith(cwd)) {
+ return p;
+ }
+
+ throw new Error(`Path ${p} is not in cwd ${cwd}`);
+ }
+
+ return path.join(cwd, p);
+};
+
+const getIsIgnoredPredicate = (ignores, cwd) => p => ignores.ignores(slash(path.relative(cwd, ensureAbsolutePathForCwd(cwd, toPath(p.path || p)))));
+
+const getFile = async (file, cwd) => {
+ const filePath = path.join(cwd, file);
+ const content = await fs.promises.readFile(filePath, 'utf8');
+
+ return {
+ cwd,
+ filePath,
+ content,
+ };
+};
+
+const getFileSync = (file, cwd) => {
+ const filePath = path.join(cwd, file);
+ const content = fs.readFileSync(filePath, 'utf8');
+
+ return {
+ cwd,
+ filePath,
+ content,
+ };
+};
+
+const normalizeOptions = ({
+ ignore = [],
+ cwd = slash(process.cwd()),
+} = {}) => ({ignore: [...DEFAULT_IGNORE, ...ignore], cwd: toPath(cwd)});
+
+export const isGitIgnored = async options => {
+ options = normalizeOptions(options);
+
+ const paths = await fastGlob('**/.gitignore', options);
+
+ const files = await Promise.all(paths.map(file => getFile(file, options.cwd)));
+ const ignores = reduceIgnore(files);
+
+ return getIsIgnoredPredicate(ignores, options.cwd);
+};
+
+export const isGitIgnoredSync = options => {
+ options = normalizeOptions(options);
+
+ const paths = fastGlob.sync('**/.gitignore', options);
+
+ const files = paths.map(file => getFileSync(file, options.cwd));
+ const ignores = reduceIgnore(files);
+
+ return getIsIgnoredPredicate(ignores, options.cwd);
+};
diff --git a/node_modules/globby/index.d.ts b/node_modules/globby/index.d.ts
new file mode 100644
index 0000000..b9571a6
--- /dev/null
+++ b/node_modules/globby/index.d.ts
@@ -0,0 +1,188 @@
+import {URL} from 'node:url'; // TODO: Remove this when https://github.com/DefinitelyTyped/DefinitelyTyped/issues/34960 is fixed.
+import {Options as FastGlobOptions, Entry} from 'fast-glob';
+
+export type GlobEntry = Entry;
+
+export interface GlobTask {
+ readonly pattern: string;
+ readonly options: Options;
+}
+
+export type ExpandDirectoriesOption =
+ | boolean
+ | readonly string[]
+ | {files?: readonly string[]; extensions?: readonly string[]};
+
+type FastGlobOptionsWithoutCwd = Omit;
+
+export interface Options extends FastGlobOptionsWithoutCwd {
+ /**
+ If set to `true`, `globby` will automatically glob directories for you. If you define an `Array` it will only glob files that matches the patterns inside the `Array`. You can also define an `Object` with `files` and `extensions` like in the example below.
+
+ Note that if you set this option to `false`, you won't get back matched directories unless you set `onlyFiles: false`.
+
+ @default true
+
+ @example
+ ```
+ import {globby} from 'globby';
+
+ const paths = await globby('images', {
+ expandDirectories: {
+ files: ['cat', 'unicorn', '*.jpg'],
+ extensions: ['png']
+ }
+ });
+
+ console.log(paths);
+ //=> ['cat.png', 'unicorn.png', 'cow.jpg', 'rainbow.jpg']
+ ```
+ */
+ readonly expandDirectories?: ExpandDirectoriesOption;
+
+ /**
+ Respect ignore patterns in `.gitignore` files that apply to the globbed files.
+
+ @default false
+ */
+ readonly gitignore?: boolean;
+
+ /**
+ The current working directory in which to search.
+
+ @default process.cwd()
+ */
+ readonly cwd?: URL | string;
+}
+
+export interface GitignoreOptions {
+ readonly cwd?: URL | string;
+ readonly ignore?: readonly string[];
+}
+
+export type GlobbyFilterFunction = (path: URL | string) => boolean;
+
+/**
+Find files and directories using glob patterns.
+
+Note that glob patterns can only contain forward-slashes, not backward-slashes, so if you want to construct a glob pattern from path components, you need to use `path.posix.join()` instead of `path.join()`.
+
+@param patterns - See the supported [glob patterns](https://github.com/sindresorhus/globby#globbing-patterns).
+@param options - See the [`fast-glob` options](https://github.com/mrmlnc/fast-glob#options-3) in addition to the ones in this package.
+@returns The matching paths.
+
+@example
+```
+import {globby} from 'globby';
+
+const paths = await globby(['*', '!cake']);
+
+console.log(paths);
+//=> ['unicorn', 'rainbow']
+```
+*/
+export function globby(
+ patterns: string | readonly string[],
+ options: Options & {objectMode: true}
+): Promise;
+export function globby(
+ patterns: string | readonly string[],
+ options?: Options
+): Promise;
+
+/**
+Find files and directories using glob patterns.
+
+Note that glob patterns can only contain forward-slashes, not backward-slashes, so if you want to construct a glob pattern from path components, you need to use `path.posix.join()` instead of `path.join()`.
+
+@param patterns - See the supported [glob patterns](https://github.com/sindresorhus/globby#globbing-patterns).
+@param options - See the [`fast-glob` options](https://github.com/mrmlnc/fast-glob#options-3) in addition to the ones in this package.
+@returns The matching paths.
+*/
+export function globbySync(
+ patterns: string | readonly string[],
+ options: Options & {objectMode: true}
+): GlobEntry[];
+export function globbySync(
+ patterns: string | readonly string[],
+ options?: Options
+): string[];
+
+/**
+Find files and directories using glob patterns.
+
+Note that glob patterns can only contain forward-slashes, not backward-slashes, so if you want to construct a glob pattern from path components, you need to use `path.posix.join()` instead of `path.join()`.
+
+@param patterns - See the supported [glob patterns](https://github.com/sindresorhus/globby#globbing-patterns).
+@param options - See the [`fast-glob` options](https://github.com/mrmlnc/fast-glob#options-3) in addition to the ones in this package.
+@returns The stream of matching paths.
+
+@example
+```
+import {globbyStream} from 'globby';
+
+for await (const path of globbyStream('*.tmp')) {
+ console.log(path);
+}
+```
+*/
+export function globbyStream(
+ patterns: string | readonly string[],
+ options?: Options
+): NodeJS.ReadableStream;
+
+/**
+Note that you should avoid running the same tasks multiple times as they contain a file system cache. Instead, run this method each time to ensure file system changes are taken into consideration.
+
+@param patterns - See the supported [glob patterns](https://github.com/sindresorhus/globby#globbing-patterns).
+@param options - See the [`fast-glob` options](https://github.com/mrmlnc/fast-glob#options-3) in addition to the ones in this package.
+@returns An object in the format `{pattern: string, options: object}`, which can be passed as arguments to [`fast-glob`](https://github.com/mrmlnc/fast-glob). This is useful for other globbing-related packages.
+*/
+export function generateGlobTasks(
+ patterns: string | readonly string[],
+ options?: Options
+): GlobTask[];
+
+/**
+Note that the options affect the results.
+
+This function is backed by [`fast-glob`](https://github.com/mrmlnc/fast-glob#isdynamicpatternpattern-options).
+
+@param patterns - See the supported [glob patterns](https://github.com/sindresorhus/globby#globbing-patterns).
+@param options - See the [`fast-glob` options](https://github.com/mrmlnc/fast-glob#options-3).
+@returns Whether there are any special glob characters in the `patterns`.
+*/
+export function isDynamicPattern(
+ patterns: string | readonly string[],
+ options?: FastGlobOptionsWithoutCwd & {
+ /**
+ The current working directory in which to search.
+
+ @default process.cwd()
+ */
+ readonly cwd?: URL | string;
+ }
+): boolean;
+
+/**
+`.gitignore` files matched by the ignore config are not used for the resulting filter function.
+
+@returns A filter function indicating whether a given path is ignored via a `.gitignore` file.
+
+@example
+```
+import {isGitIgnored} from 'globby';
+
+const isIgnored = await isGitIgnored();
+
+console.log(isIgnored('some/file'));
+```
+*/
+export function isGitIgnored(options?: GitignoreOptions): Promise;
+
+/**
+@see isGitIgnored
+
+@returns A filter function indicating whether a given path is ignored via a `.gitignore` file.
+*/
+export function isGitIgnoredSync(options?: GitignoreOptions): GlobbyFilterFunction;
diff --git a/node_modules/globby/index.js b/node_modules/globby/index.js
new file mode 100644
index 0000000..1ebc172
--- /dev/null
+++ b/node_modules/globby/index.js
@@ -0,0 +1,197 @@
+import fs from 'node:fs';
+import arrayUnion from 'array-union';
+import merge2 from 'merge2';
+import fastGlob from 'fast-glob';
+import dirGlob from 'dir-glob';
+import toPath from './to-path.js';
+import {isGitIgnored, isGitIgnoredSync} from './gitignore.js';
+import {FilterStream, UniqueStream} from './stream-utils.js';
+
+const DEFAULT_FILTER = () => false;
+
+const isNegative = pattern => pattern[0] === '!';
+
+const assertPatternsInput = patterns => {
+ if (!patterns.every(pattern => typeof pattern === 'string')) {
+ throw new TypeError('Patterns must be a string or an array of strings');
+ }
+};
+
+const checkCwdOption = options => {
+ if (!options.cwd) {
+ return;
+ }
+
+ let stat;
+ try {
+ stat = fs.statSync(options.cwd);
+ } catch {
+ return;
+ }
+
+ if (!stat.isDirectory()) {
+ throw new Error('The `cwd` option must be a path to a directory');
+ }
+};
+
+const getPathString = p => p.stats instanceof fs.Stats ? p.path : p;
+
+export const generateGlobTasks = (patterns, taskOptions = {}) => {
+ patterns = arrayUnion([patterns].flat());
+ assertPatternsInput(patterns);
+
+ const globTasks = [];
+
+ taskOptions = {
+ ignore: [],
+ expandDirectories: true,
+ ...taskOptions,
+ cwd: toPath(taskOptions.cwd),
+ };
+
+ checkCwdOption(taskOptions);
+
+ for (const [index, pattern] of patterns.entries()) {
+ if (isNegative(pattern)) {
+ continue;
+ }
+
+ const ignore = patterns
+ .slice(index)
+ .filter(pattern => isNegative(pattern))
+ .map(pattern => pattern.slice(1));
+
+ const options = {
+ ...taskOptions,
+ ignore: [...taskOptions.ignore, ...ignore],
+ };
+
+ globTasks.push({pattern, options});
+ }
+
+ return globTasks;
+};
+
+const globDirectories = (task, fn) => {
+ let options = {};
+ if (task.options.cwd) {
+ options.cwd = task.options.cwd;
+ }
+
+ if (Array.isArray(task.options.expandDirectories)) {
+ options = {
+ ...options,
+ files: task.options.expandDirectories,
+ };
+ } else if (typeof task.options.expandDirectories === 'object') {
+ options = {
+ ...options,
+ ...task.options.expandDirectories,
+ };
+ }
+
+ return fn(task.pattern, options);
+};
+
+const getPattern = (task, fn) => task.options.expandDirectories ? globDirectories(task, fn) : [task.pattern];
+
+const getFilterSync = options => options && options.gitignore
+ ? isGitIgnoredSync({cwd: options.cwd, ignore: options.ignore})
+ : DEFAULT_FILTER;
+
+const globToTask = task => async glob => {
+ const {options} = task;
+ if (options.ignore && Array.isArray(options.ignore) && options.expandDirectories) {
+ options.ignore = await dirGlob(options.ignore);
+ }
+
+ return {
+ pattern: glob,
+ options,
+ };
+};
+
+const globToTaskSync = task => glob => {
+ const {options} = task;
+ if (options.ignore && Array.isArray(options.ignore) && options.expandDirectories) {
+ options.ignore = dirGlob.sync(options.ignore);
+ }
+
+ return {
+ pattern: glob,
+ options,
+ };
+};
+
+export const globby = async (patterns, options) => {
+ const globTasks = generateGlobTasks(patterns, options);
+
+ const getFilter = async () => options && options.gitignore
+ ? isGitIgnored({cwd: options.cwd, ignore: options.ignore})
+ : DEFAULT_FILTER;
+
+ const getTasks = async () => {
+ const tasks = await Promise.all(globTasks.map(async task => {
+ const globs = await getPattern(task, dirGlob);
+ return Promise.all(globs.map(globToTask(task)));
+ }));
+
+ return arrayUnion(...tasks);
+ };
+
+ const [filter, tasks] = await Promise.all([getFilter(), getTasks()]);
+ const paths = await Promise.all(tasks.map(task => fastGlob(task.pattern, task.options)));
+
+ return arrayUnion(...paths).filter(path_ => !filter(getPathString(path_)));
+};
+
+export const globbySync = (patterns, options) => {
+ const globTasks = generateGlobTasks(patterns, options);
+
+ const tasks = [];
+ for (const task of globTasks) {
+ const newTask = getPattern(task, dirGlob.sync).map(globToTaskSync(task));
+ tasks.push(...newTask);
+ }
+
+ const filter = getFilterSync(options);
+
+ let matches = [];
+ for (const task of tasks) {
+ matches = arrayUnion(matches, fastGlob.sync(task.pattern, task.options));
+ }
+
+ return matches.filter(path_ => !filter(path_));
+};
+
+export const globbyStream = (patterns, options) => {
+ const globTasks = generateGlobTasks(patterns, options);
+
+ const tasks = [];
+ for (const task of globTasks) {
+ const newTask = getPattern(task, dirGlob.sync).map(globToTaskSync(task));
+ tasks.push(...newTask);
+ }
+
+ const filter = getFilterSync(options);
+ const filterStream = new FilterStream(p => !filter(p));
+ const uniqueStream = new UniqueStream();
+
+ return merge2(tasks.map(task => fastGlob.stream(task.pattern, task.options)))
+ .pipe(filterStream)
+ .pipe(uniqueStream);
+};
+
+export const isDynamicPattern = (patterns, options = {}) => {
+ options = {
+ ...options,
+ cwd: toPath(options.cwd),
+ };
+
+ return [patterns].flat().some(pattern => fastGlob.isDynamicPattern(pattern, options));
+};
+
+export {
+ isGitIgnored,
+ isGitIgnoredSync,
+} from './gitignore.js';
diff --git a/node_modules/globby/license b/node_modules/globby/license
new file mode 100644
index 0000000..fa7ceba
--- /dev/null
+++ b/node_modules/globby/license
@@ -0,0 +1,9 @@
+MIT License
+
+Copyright (c) Sindre Sorhus (https://sindresorhus.com)
+
+Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
diff --git a/node_modules/globby/package.json b/node_modules/globby/package.json
new file mode 100644
index 0000000..97dc494
--- /dev/null
+++ b/node_modules/globby/package.json
@@ -0,0 +1,87 @@
+{
+ "name": "globby",
+ "version": "12.2.0",
+ "description": "User-friendly glob matching",
+ "license": "MIT",
+ "repository": "sindresorhus/globby",
+ "funding": "https://github.com/sponsors/sindresorhus",
+ "author": {
+ "email": "sindresorhus@gmail.com",
+ "name": "Sindre Sorhus",
+ "url": "https://sindresorhus.com"
+ },
+ "type": "module",
+ "exports": "./index.js",
+ "engines": {
+ "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
+ },
+ "scripts": {
+ "bench": "npm update glob-stream fast-glob && matcha bench.js",
+ "test": "xo && ava && tsd"
+ },
+ "files": [
+ "index.js",
+ "index.d.ts",
+ "gitignore.js",
+ "stream-utils.js",
+ "to-path.js"
+ ],
+ "keywords": [
+ "all",
+ "array",
+ "directories",
+ "expand",
+ "files",
+ "filesystem",
+ "filter",
+ "find",
+ "fnmatch",
+ "folders",
+ "fs",
+ "glob",
+ "globbing",
+ "globs",
+ "gulpfriendly",
+ "match",
+ "matcher",
+ "minimatch",
+ "multi",
+ "multiple",
+ "paths",
+ "pattern",
+ "patterns",
+ "traverse",
+ "util",
+ "utility",
+ "wildcard",
+ "wildcards",
+ "promise",
+ "gitignore",
+ "git"
+ ],
+ "dependencies": {
+ "array-union": "^3.0.1",
+ "dir-glob": "^3.0.1",
+ "fast-glob": "^3.2.7",
+ "ignore": "^5.1.9",
+ "merge2": "^1.4.1",
+ "slash": "^4.0.0"
+ },
+ "devDependencies": {
+ "@types/node": "^16.11.11",
+ "ava": "^3.15.0",
+ "get-stream": "^6.0.1",
+ "glob-stream": "^7.0.0",
+ "globby": "sindresorhus/globby#main",
+ "matcha": "^0.7.0",
+ "rimraf": "^3.0.2",
+ "tsd": "^0.19.0",
+ "typescript": "^4.5.2",
+ "xo": "^0.47.0"
+ },
+ "xo": {
+ "ignores": [
+ "fixtures"
+ ]
+ }
+}
diff --git a/node_modules/globby/readme.md b/node_modules/globby/readme.md
new file mode 100644
index 0000000..315a53b
--- /dev/null
+++ b/node_modules/globby/readme.md
@@ -0,0 +1,168 @@
+# globby
+
+> User-friendly glob matching
+
+Based on [`fast-glob`](https://github.com/mrmlnc/fast-glob) but adds a bunch of useful features.
+
+## Features
+
+- Promise API
+- Multiple patterns
+- Negated patterns: `['foo*', '!foobar']`
+- Expands directories: `foo` → `foo/**/*`
+- Supports `.gitignore`
+- Supports `URL` as `cwd`
+
+## Install
+
+```
+$ npm install globby
+```
+
+## Usage
+
+```
+├── unicorn
+├── cake
+└── rainbow
+```
+
+```js
+import {globby} from 'globby';
+
+const paths = await globby(['*', '!cake']);
+
+console.log(paths);
+//=> ['unicorn', 'rainbow']
+```
+
+## API
+
+Note that glob patterns can only contain forward-slashes, not backward-slashes, so if you want to construct a glob pattern from path components, you need to use `path.posix.join()` instead of `path.join()`.
+
+### globby(patterns, options?)
+
+Returns a `Promise` of matching paths.
+
+#### patterns
+
+Type: `string | string[]`
+
+See supported `minimatch` [patterns](https://github.com/isaacs/minimatch#usage).
+
+#### options
+
+Type: `object`
+
+See the [`fast-glob` options](https://github.com/mrmlnc/fast-glob#options-3) in addition to the ones below.
+
+##### expandDirectories
+
+Type: `boolean | string[] | object`\
+Default: `true`
+
+If set to `true`, `globby` will automatically glob directories for you. If you define an `Array` it will only glob files that matches the patterns inside the `Array`. You can also define an `object` with `files` and `extensions` like below:
+
+```js
+import {globby} from 'globby';
+
+(async () => {
+ const paths = await globby('images', {
+ expandDirectories: {
+ files: ['cat', 'unicorn', '*.jpg'],
+ extensions: ['png']
+ }
+ });
+
+ console.log(paths);
+ //=> ['cat.png', 'unicorn.png', 'cow.jpg', 'rainbow.jpg']
+})();
+```
+
+Note that if you set this option to `false`, you won't get back matched directories unless you set `onlyFiles: false`.
+
+##### gitignore
+
+Type: `boolean`\
+Default: `false`
+
+Respect ignore patterns in `.gitignore` files that apply to the globbed files.
+
+### globbySync(patterns, options?)
+
+Returns `string[]` of matching paths.
+
+### globbyStream(patterns, options?)
+
+Returns a [`stream.Readable`](https://nodejs.org/api/stream.html#stream_readable_streams) of matching paths.
+
+Since Node.js 10, [readable streams are iterable](https://nodejs.org/api/stream.html#stream_readable_symbol_asynciterator), so you can loop over glob matches in a [`for await...of` loop](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/for-await...of) like this:
+
+```js
+import {globbyStream} from 'globby';
+
+(async () => {
+ for await (const path of globbyStream('*.tmp')) {
+ console.log(path);
+ }
+})();
+```
+
+### generateGlobTasks(patterns, options?)
+
+Returns an `object[]` in the format `{pattern: string, options: Object}`, which can be passed as arguments to [`fast-glob`](https://github.com/mrmlnc/fast-glob). This is useful for other globbing-related packages.
+
+Note that you should avoid running the same tasks multiple times as they contain a file system cache. Instead, run this method each time to ensure file system changes are taken into consideration.
+
+### isDynamicPattern(patterns, options?)
+
+Returns a `boolean` of whether there are any special glob characters in the `patterns`.
+
+Note that the options affect the results.
+
+This function is backed by [`fast-glob`](https://github.com/mrmlnc/fast-glob#isdynamicpatternpattern-options).
+
+### isGitIgnored(options?)
+
+Returns a `Promise<(path: URL | string) => boolean>` indicating whether a given path is ignored via a `.gitignore` file.
+
+Takes `cwd?: URL | string` and `ignore?: string[]` as options. `.gitignore` files matched by the ignore config are not used for the resulting filter function.
+
+```js
+import {isGitIgnored} from 'globby';
+
+const isIgnored = await isGitIgnored();
+
+console.log(isIgnored('some/file'));
+```
+
+### isGitIgnoredSync(options?)
+
+Returns a `(path: URL | string) => boolean` indicating whether a given path is ignored via a `.gitignore` file.
+
+Takes the same options as `isGitIgnored`.
+
+## Globbing patterns
+
+Just a quick overview.
+
+- `*` matches any number of characters, but not `/`
+- `?` matches a single character, but not `/`
+- `**` matches any number of characters, including `/`, as long as it's the only thing in a path part
+- `{}` allows for a comma-separated list of "or" expressions
+- `!` at the beginning of a pattern will negate the match
+
+[Various patterns and expected matches.](https://github.com/sindresorhus/multimatch/blob/main/test/test.js)
+
+## globby for enterprise
+
+Available as part of the Tidelift Subscription.
+
+The maintainers of globby and thousands of other packages are working with Tidelift to deliver commercial support and maintenance for the open source dependencies you use to build your applications. Save time, reduce risk, and improve code health, while paying the maintainers of the exact dependencies you use. [Learn more.](https://tidelift.com/subscription/pkg/npm-globby?utm_source=npm-globby&utm_medium=referral&utm_campaign=enterprise&utm_term=repo)
+
+## Related
+
+- [multimatch](https://github.com/sindresorhus/multimatch) - Match against a list instead of the filesystem
+- [matcher](https://github.com/sindresorhus/matcher) - Simple wildcard matching
+- [del](https://github.com/sindresorhus/del) - Delete files and directories
+- [make-dir](https://github.com/sindresorhus/make-dir) - Make a directory and its parents if needed
diff --git a/node_modules/globby/stream-utils.js b/node_modules/globby/stream-utils.js
new file mode 100644
index 0000000..91a99bb
--- /dev/null
+++ b/node_modules/globby/stream-utils.js
@@ -0,0 +1,40 @@
+import {Transform} from 'node:stream';
+
+class ObjectTransform extends Transform {
+ constructor() {
+ super({
+ objectMode: true,
+ });
+ }
+}
+
+export class FilterStream extends ObjectTransform {
+ constructor(filter) {
+ super();
+ this._filter = filter;
+ }
+
+ _transform(data, encoding, callback) {
+ if (this._filter(data)) {
+ this.push(data);
+ }
+
+ callback();
+ }
+}
+
+export class UniqueStream extends ObjectTransform {
+ constructor() {
+ super();
+ this._pushed = new Set();
+ }
+
+ _transform(data, encoding, callback) {
+ if (!this._pushed.has(data)) {
+ this.push(data);
+ this._pushed.add(data);
+ }
+
+ callback();
+ }
+}
diff --git a/node_modules/globby/to-path.js b/node_modules/globby/to-path.js
new file mode 100644
index 0000000..3914433
--- /dev/null
+++ b/node_modules/globby/to-path.js
@@ -0,0 +1,15 @@
+import {fileURLToPath} from 'node:url';
+
+const toPath = urlOrPath => {
+ if (!urlOrPath) {
+ return urlOrPath;
+ }
+
+ if (urlOrPath instanceof URL) {
+ urlOrPath = urlOrPath.href;
+ }
+
+ return urlOrPath.startsWith('file://') ? fileURLToPath(urlOrPath) : urlOrPath;
+};
+
+export default toPath;
diff --git a/node_modules/graceful-fs/LICENSE b/node_modules/graceful-fs/LICENSE
new file mode 100644
index 0000000..e906a25
--- /dev/null
+++ b/node_modules/graceful-fs/LICENSE
@@ -0,0 +1,15 @@
+The ISC License
+
+Copyright (c) 2011-2022 Isaac Z. Schlueter, Ben Noordhuis, and Contributors
+
+Permission to use, copy, modify, and/or distribute this software for any
+purpose with or without fee is hereby granted, provided that the above
+copyright notice and this permission notice appear in all copies.
+
+THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
+ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
+IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
diff --git a/node_modules/graceful-fs/README.md b/node_modules/graceful-fs/README.md
new file mode 100644
index 0000000..82d6e4d
--- /dev/null
+++ b/node_modules/graceful-fs/README.md
@@ -0,0 +1,143 @@
+# graceful-fs
+
+graceful-fs functions as a drop-in replacement for the fs module,
+making various improvements.
+
+The improvements are meant to normalize behavior across different
+platforms and environments, and to make filesystem access more
+resilient to errors.
+
+## Improvements over [fs module](https://nodejs.org/api/fs.html)
+
+* Queues up `open` and `readdir` calls, and retries them once
+ something closes if there is an EMFILE error from too many file
+ descriptors.
+* fixes `lchmod` for Node versions prior to 0.6.2.
+* implements `fs.lutimes` if possible. Otherwise it becomes a noop.
+* ignores `EINVAL` and `EPERM` errors in `chown`, `fchown` or
+ `lchown` if the user isn't root.
+* makes `lchmod` and `lchown` become noops, if not available.
+* retries reading a file if `read` results in EAGAIN error.
+
+On Windows, it retries renaming a file for up to one second if `EACCESS`
+or `EPERM` error occurs, likely because antivirus software has locked
+the directory.
+
+## USAGE
+
+```javascript
+// use just like fs
+var fs = require('graceful-fs')
+
+// now go and do stuff with it...
+fs.readFile('some-file-or-whatever', (err, data) => {
+ // Do stuff here.
+})
+```
+
+## Sync methods
+
+This module cannot intercept or handle `EMFILE` or `ENFILE` errors from sync
+methods. If you use sync methods which open file descriptors then you are
+responsible for dealing with any errors.
+
+This is a known limitation, not a bug.
+
+## Global Patching
+
+If you want to patch the global fs module (or any other fs-like
+module) you can do this:
+
+```javascript
+// Make sure to read the caveat below.
+var realFs = require('fs')
+var gracefulFs = require('graceful-fs')
+gracefulFs.gracefulify(realFs)
+```
+
+This should only ever be done at the top-level application layer, in
+order to delay on EMFILE errors from any fs-using dependencies. You
+should **not** do this in a library, because it can cause unexpected
+delays in other parts of the program.
+
+## Changes
+
+This module is fairly stable at this point, and used by a lot of
+things. That being said, because it implements a subtle behavior
+change in a core part of the node API, even modest changes can be
+extremely breaking, and the versioning is thus biased towards
+bumping the major when in doubt.
+
+The main change between major versions has been switching between
+providing a fully-patched `fs` module vs monkey-patching the node core
+builtin, and the approach by which a non-monkey-patched `fs` was
+created.
+
+The goal is to trade `EMFILE` errors for slower fs operations. So, if
+you try to open a zillion files, rather than crashing, `open`
+operations will be queued up and wait for something else to `close`.
+
+There are advantages to each approach. Monkey-patching the fs means
+that no `EMFILE` errors can possibly occur anywhere in your
+application, because everything is using the same core `fs` module,
+which is patched. However, it can also obviously cause undesirable
+side-effects, especially if the module is loaded multiple times.
+
+Implementing a separate-but-identical patched `fs` module is more
+surgical (and doesn't run the risk of patching multiple times), but
+also imposes the challenge of keeping in sync with the core module.
+
+The current approach loads the `fs` module, and then creates a
+lookalike object that has all the same methods, except a few that are
+patched. It is safe to use in all versions of Node from 0.8 through
+7.0.
+
+### v4
+
+* Do not monkey-patch the fs module. This module may now be used as a
+ drop-in dep, and users can opt into monkey-patching the fs builtin
+ if their app requires it.
+
+### v3
+
+* Monkey-patch fs, because the eval approach no longer works on recent
+ node.
+* fixed possible type-error throw if rename fails on windows
+* verify that we *never* get EMFILE errors
+* Ignore ENOSYS from chmod/chown
+* clarify that graceful-fs must be used as a drop-in
+
+### v2.1.0
+
+* Use eval rather than monkey-patching fs.
+* readdir: Always sort the results
+* win32: requeue a file if error has an OK status
+
+### v2.0
+
+* A return to monkey patching
+* wrap process.cwd
+
+### v1.1
+
+* wrap readFile
+* Wrap fs.writeFile.
+* readdir protection
+* Don't clobber the fs builtin
+* Handle fs.read EAGAIN errors by trying again
+* Expose the curOpen counter
+* No-op lchown/lchmod if not implemented
+* fs.rename patch only for win32
+* Patch fs.rename to handle AV software on Windows
+* Close #4 Chown should not fail on einval or eperm if non-root
+* Fix isaacs/fstream#1 Only wrap fs one time
+* Fix #3 Start at 1024 max files, then back off on EMFILE
+* lutimes that doens't blow up on Linux
+* A full on-rewrite using a queue instead of just swallowing the EMFILE error
+* Wrap Read/Write streams as well
+
+### 1.0
+
+* Update engines for node 0.6
+* Be lstat-graceful on Windows
+* first
diff --git a/node_modules/graceful-fs/clone.js b/node_modules/graceful-fs/clone.js
new file mode 100644
index 0000000..dff3cc8
--- /dev/null
+++ b/node_modules/graceful-fs/clone.js
@@ -0,0 +1,23 @@
+'use strict'
+
+module.exports = clone
+
+var getPrototypeOf = Object.getPrototypeOf || function (obj) {
+ return obj.__proto__
+}
+
+function clone (obj) {
+ if (obj === null || typeof obj !== 'object')
+ return obj
+
+ if (obj instanceof Object)
+ var copy = { __proto__: getPrototypeOf(obj) }
+ else
+ var copy = Object.create(null)
+
+ Object.getOwnPropertyNames(obj).forEach(function (key) {
+ Object.defineProperty(copy, key, Object.getOwnPropertyDescriptor(obj, key))
+ })
+
+ return copy
+}
diff --git a/node_modules/graceful-fs/graceful-fs.js b/node_modules/graceful-fs/graceful-fs.js
new file mode 100644
index 0000000..8d5b89e
--- /dev/null
+++ b/node_modules/graceful-fs/graceful-fs.js
@@ -0,0 +1,448 @@
+var fs = require('fs')
+var polyfills = require('./polyfills.js')
+var legacy = require('./legacy-streams.js')
+var clone = require('./clone.js')
+
+var util = require('util')
+
+/* istanbul ignore next - node 0.x polyfill */
+var gracefulQueue
+var previousSymbol
+
+/* istanbul ignore else - node 0.x polyfill */
+if (typeof Symbol === 'function' && typeof Symbol.for === 'function') {
+ gracefulQueue = Symbol.for('graceful-fs.queue')
+ // This is used in testing by future versions
+ previousSymbol = Symbol.for('graceful-fs.previous')
+} else {
+ gracefulQueue = '___graceful-fs.queue'
+ previousSymbol = '___graceful-fs.previous'
+}
+
+function noop () {}
+
+function publishQueue(context, queue) {
+ Object.defineProperty(context, gracefulQueue, {
+ get: function() {
+ return queue
+ }
+ })
+}
+
+var debug = noop
+if (util.debuglog)
+ debug = util.debuglog('gfs4')
+else if (/\bgfs4\b/i.test(process.env.NODE_DEBUG || ''))
+ debug = function() {
+ var m = util.format.apply(util, arguments)
+ m = 'GFS4: ' + m.split(/\n/).join('\nGFS4: ')
+ console.error(m)
+ }
+
+// Once time initialization
+if (!fs[gracefulQueue]) {
+ // This queue can be shared by multiple loaded instances
+ var queue = global[gracefulQueue] || []
+ publishQueue(fs, queue)
+
+ // Patch fs.close/closeSync to shared queue version, because we need
+ // to retry() whenever a close happens *anywhere* in the program.
+ // This is essential when multiple graceful-fs instances are
+ // in play at the same time.
+ fs.close = (function (fs$close) {
+ function close (fd, cb) {
+ return fs$close.call(fs, fd, function (err) {
+ // This function uses the graceful-fs shared queue
+ if (!err) {
+ resetQueue()
+ }
+
+ if (typeof cb === 'function')
+ cb.apply(this, arguments)
+ })
+ }
+
+ Object.defineProperty(close, previousSymbol, {
+ value: fs$close
+ })
+ return close
+ })(fs.close)
+
+ fs.closeSync = (function (fs$closeSync) {
+ function closeSync (fd) {
+ // This function uses the graceful-fs shared queue
+ fs$closeSync.apply(fs, arguments)
+ resetQueue()
+ }
+
+ Object.defineProperty(closeSync, previousSymbol, {
+ value: fs$closeSync
+ })
+ return closeSync
+ })(fs.closeSync)
+
+ if (/\bgfs4\b/i.test(process.env.NODE_DEBUG || '')) {
+ process.on('exit', function() {
+ debug(fs[gracefulQueue])
+ require('assert').equal(fs[gracefulQueue].length, 0)
+ })
+ }
+}
+
+if (!global[gracefulQueue]) {
+ publishQueue(global, fs[gracefulQueue]);
+}
+
+module.exports = patch(clone(fs))
+if (process.env.TEST_GRACEFUL_FS_GLOBAL_PATCH && !fs.__patched) {
+ module.exports = patch(fs)
+ fs.__patched = true;
+}
+
+function patch (fs) {
+ // Everything that references the open() function needs to be in here
+ polyfills(fs)
+ fs.gracefulify = patch
+
+ fs.createReadStream = createReadStream
+ fs.createWriteStream = createWriteStream
+ var fs$readFile = fs.readFile
+ fs.readFile = readFile
+ function readFile (path, options, cb) {
+ if (typeof options === 'function')
+ cb = options, options = null
+
+ return go$readFile(path, options, cb)
+
+ function go$readFile (path, options, cb, startTime) {
+ return fs$readFile(path, options, function (err) {
+ if (err && (err.code === 'EMFILE' || err.code === 'ENFILE'))
+ enqueue([go$readFile, [path, options, cb], err, startTime || Date.now(), Date.now()])
+ else {
+ if (typeof cb === 'function')
+ cb.apply(this, arguments)
+ }
+ })
+ }
+ }
+
+ var fs$writeFile = fs.writeFile
+ fs.writeFile = writeFile
+ function writeFile (path, data, options, cb) {
+ if (typeof options === 'function')
+ cb = options, options = null
+
+ return go$writeFile(path, data, options, cb)
+
+ function go$writeFile (path, data, options, cb, startTime) {
+ return fs$writeFile(path, data, options, function (err) {
+ if (err && (err.code === 'EMFILE' || err.code === 'ENFILE'))
+ enqueue([go$writeFile, [path, data, options, cb], err, startTime || Date.now(), Date.now()])
+ else {
+ if (typeof cb === 'function')
+ cb.apply(this, arguments)
+ }
+ })
+ }
+ }
+
+ var fs$appendFile = fs.appendFile
+ if (fs$appendFile)
+ fs.appendFile = appendFile
+ function appendFile (path, data, options, cb) {
+ if (typeof options === 'function')
+ cb = options, options = null
+
+ return go$appendFile(path, data, options, cb)
+
+ function go$appendFile (path, data, options, cb, startTime) {
+ return fs$appendFile(path, data, options, function (err) {
+ if (err && (err.code === 'EMFILE' || err.code === 'ENFILE'))
+ enqueue([go$appendFile, [path, data, options, cb], err, startTime || Date.now(), Date.now()])
+ else {
+ if (typeof cb === 'function')
+ cb.apply(this, arguments)
+ }
+ })
+ }
+ }
+
+ var fs$copyFile = fs.copyFile
+ if (fs$copyFile)
+ fs.copyFile = copyFile
+ function copyFile (src, dest, flags, cb) {
+ if (typeof flags === 'function') {
+ cb = flags
+ flags = 0
+ }
+ return go$copyFile(src, dest, flags, cb)
+
+ function go$copyFile (src, dest, flags, cb, startTime) {
+ return fs$copyFile(src, dest, flags, function (err) {
+ if (err && (err.code === 'EMFILE' || err.code === 'ENFILE'))
+ enqueue([go$copyFile, [src, dest, flags, cb], err, startTime || Date.now(), Date.now()])
+ else {
+ if (typeof cb === 'function')
+ cb.apply(this, arguments)
+ }
+ })
+ }
+ }
+
+ var fs$readdir = fs.readdir
+ fs.readdir = readdir
+ var noReaddirOptionVersions = /^v[0-5]\./
+ function readdir (path, options, cb) {
+ if (typeof options === 'function')
+ cb = options, options = null
+
+ var go$readdir = noReaddirOptionVersions.test(process.version)
+ ? function go$readdir (path, options, cb, startTime) {
+ return fs$readdir(path, fs$readdirCallback(
+ path, options, cb, startTime
+ ))
+ }
+ : function go$readdir (path, options, cb, startTime) {
+ return fs$readdir(path, options, fs$readdirCallback(
+ path, options, cb, startTime
+ ))
+ }
+
+ return go$readdir(path, options, cb)
+
+ function fs$readdirCallback (path, options, cb, startTime) {
+ return function (err, files) {
+ if (err && (err.code === 'EMFILE' || err.code === 'ENFILE'))
+ enqueue([
+ go$readdir,
+ [path, options, cb],
+ err,
+ startTime || Date.now(),
+ Date.now()
+ ])
+ else {
+ if (files && files.sort)
+ files.sort()
+
+ if (typeof cb === 'function')
+ cb.call(this, err, files)
+ }
+ }
+ }
+ }
+
+ if (process.version.substr(0, 4) === 'v0.8') {
+ var legStreams = legacy(fs)
+ ReadStream = legStreams.ReadStream
+ WriteStream = legStreams.WriteStream
+ }
+
+ var fs$ReadStream = fs.ReadStream
+ if (fs$ReadStream) {
+ ReadStream.prototype = Object.create(fs$ReadStream.prototype)
+ ReadStream.prototype.open = ReadStream$open
+ }
+
+ var fs$WriteStream = fs.WriteStream
+ if (fs$WriteStream) {
+ WriteStream.prototype = Object.create(fs$WriteStream.prototype)
+ WriteStream.prototype.open = WriteStream$open
+ }
+
+ Object.defineProperty(fs, 'ReadStream', {
+ get: function () {
+ return ReadStream
+ },
+ set: function (val) {
+ ReadStream = val
+ },
+ enumerable: true,
+ configurable: true
+ })
+ Object.defineProperty(fs, 'WriteStream', {
+ get: function () {
+ return WriteStream
+ },
+ set: function (val) {
+ WriteStream = val
+ },
+ enumerable: true,
+ configurable: true
+ })
+
+ // legacy names
+ var FileReadStream = ReadStream
+ Object.defineProperty(fs, 'FileReadStream', {
+ get: function () {
+ return FileReadStream
+ },
+ set: function (val) {
+ FileReadStream = val
+ },
+ enumerable: true,
+ configurable: true
+ })
+ var FileWriteStream = WriteStream
+ Object.defineProperty(fs, 'FileWriteStream', {
+ get: function () {
+ return FileWriteStream
+ },
+ set: function (val) {
+ FileWriteStream = val
+ },
+ enumerable: true,
+ configurable: true
+ })
+
+ function ReadStream (path, options) {
+ if (this instanceof ReadStream)
+ return fs$ReadStream.apply(this, arguments), this
+ else
+ return ReadStream.apply(Object.create(ReadStream.prototype), arguments)
+ }
+
+ function ReadStream$open () {
+ var that = this
+ open(that.path, that.flags, that.mode, function (err, fd) {
+ if (err) {
+ if (that.autoClose)
+ that.destroy()
+
+ that.emit('error', err)
+ } else {
+ that.fd = fd
+ that.emit('open', fd)
+ that.read()
+ }
+ })
+ }
+
+ function WriteStream (path, options) {
+ if (this instanceof WriteStream)
+ return fs$WriteStream.apply(this, arguments), this
+ else
+ return WriteStream.apply(Object.create(WriteStream.prototype), arguments)
+ }
+
+ function WriteStream$open () {
+ var that = this
+ open(that.path, that.flags, that.mode, function (err, fd) {
+ if (err) {
+ that.destroy()
+ that.emit('error', err)
+ } else {
+ that.fd = fd
+ that.emit('open', fd)
+ }
+ })
+ }
+
+ function createReadStream (path, options) {
+ return new fs.ReadStream(path, options)
+ }
+
+ function createWriteStream (path, options) {
+ return new fs.WriteStream(path, options)
+ }
+
+ var fs$open = fs.open
+ fs.open = open
+ function open (path, flags, mode, cb) {
+ if (typeof mode === 'function')
+ cb = mode, mode = null
+
+ return go$open(path, flags, mode, cb)
+
+ function go$open (path, flags, mode, cb, startTime) {
+ return fs$open(path, flags, mode, function (err, fd) {
+ if (err && (err.code === 'EMFILE' || err.code === 'ENFILE'))
+ enqueue([go$open, [path, flags, mode, cb], err, startTime || Date.now(), Date.now()])
+ else {
+ if (typeof cb === 'function')
+ cb.apply(this, arguments)
+ }
+ })
+ }
+ }
+
+ return fs
+}
+
+function enqueue (elem) {
+ debug('ENQUEUE', elem[0].name, elem[1])
+ fs[gracefulQueue].push(elem)
+ retry()
+}
+
+// keep track of the timeout between retry() calls
+var retryTimer
+
+// reset the startTime and lastTime to now
+// this resets the start of the 60 second overall timeout as well as the
+// delay between attempts so that we'll retry these jobs sooner
+function resetQueue () {
+ var now = Date.now()
+ for (var i = 0; i < fs[gracefulQueue].length; ++i) {
+ // entries that are only a length of 2 are from an older version, don't
+ // bother modifying those since they'll be retried anyway.
+ if (fs[gracefulQueue][i].length > 2) {
+ fs[gracefulQueue][i][3] = now // startTime
+ fs[gracefulQueue][i][4] = now // lastTime
+ }
+ }
+ // call retry to make sure we're actively processing the queue
+ retry()
+}
+
+function retry () {
+ // clear the timer and remove it to help prevent unintended concurrency
+ clearTimeout(retryTimer)
+ retryTimer = undefined
+
+ if (fs[gracefulQueue].length === 0)
+ return
+
+ var elem = fs[gracefulQueue].shift()
+ var fn = elem[0]
+ var args = elem[1]
+ // these items may be unset if they were added by an older graceful-fs
+ var err = elem[2]
+ var startTime = elem[3]
+ var lastTime = elem[4]
+
+ // if we don't have a startTime we have no way of knowing if we've waited
+ // long enough, so go ahead and retry this item now
+ if (startTime === undefined) {
+ debug('RETRY', fn.name, args)
+ fn.apply(null, args)
+ } else if (Date.now() - startTime >= 60000) {
+ // it's been more than 60 seconds total, bail now
+ debug('TIMEOUT', fn.name, args)
+ var cb = args.pop()
+ if (typeof cb === 'function')
+ cb.call(null, err)
+ } else {
+ // the amount of time between the last attempt and right now
+ var sinceAttempt = Date.now() - lastTime
+ // the amount of time between when we first tried, and when we last tried
+ // rounded up to at least 1
+ var sinceStart = Math.max(lastTime - startTime, 1)
+ // backoff. wait longer than the total time we've been retrying, but only
+ // up to a maximum of 100ms
+ var desiredDelay = Math.min(sinceStart * 1.2, 100)
+ // it's been long enough since the last retry, do it again
+ if (sinceAttempt >= desiredDelay) {
+ debug('RETRY', fn.name, args)
+ fn.apply(null, args.concat([startTime]))
+ } else {
+ // if we can't do this job yet, push it to the end of the queue
+ // and let the next iteration check again
+ fs[gracefulQueue].push(elem)
+ }
+ }
+
+ // schedule our next run if one isn't already scheduled
+ if (retryTimer === undefined) {
+ retryTimer = setTimeout(retry, 0)
+ }
+}
diff --git a/node_modules/graceful-fs/legacy-streams.js b/node_modules/graceful-fs/legacy-streams.js
new file mode 100644
index 0000000..d617b50
--- /dev/null
+++ b/node_modules/graceful-fs/legacy-streams.js
@@ -0,0 +1,118 @@
+var Stream = require('stream').Stream
+
+module.exports = legacy
+
+function legacy (fs) {
+ return {
+ ReadStream: ReadStream,
+ WriteStream: WriteStream
+ }
+
+ function ReadStream (path, options) {
+ if (!(this instanceof ReadStream)) return new ReadStream(path, options);
+
+ Stream.call(this);
+
+ var self = this;
+
+ this.path = path;
+ this.fd = null;
+ this.readable = true;
+ this.paused = false;
+
+ this.flags = 'r';
+ this.mode = 438; /*=0666*/
+ this.bufferSize = 64 * 1024;
+
+ options = options || {};
+
+ // Mixin options into this
+ var keys = Object.keys(options);
+ for (var index = 0, length = keys.length; index < length; index++) {
+ var key = keys[index];
+ this[key] = options[key];
+ }
+
+ if (this.encoding) this.setEncoding(this.encoding);
+
+ if (this.start !== undefined) {
+ if ('number' !== typeof this.start) {
+ throw TypeError('start must be a Number');
+ }
+ if (this.end === undefined) {
+ this.end = Infinity;
+ } else if ('number' !== typeof this.end) {
+ throw TypeError('end must be a Number');
+ }
+
+ if (this.start > this.end) {
+ throw new Error('start must be <= end');
+ }
+
+ this.pos = this.start;
+ }
+
+ if (this.fd !== null) {
+ process.nextTick(function() {
+ self._read();
+ });
+ return;
+ }
+
+ fs.open(this.path, this.flags, this.mode, function (err, fd) {
+ if (err) {
+ self.emit('error', err);
+ self.readable = false;
+ return;
+ }
+
+ self.fd = fd;
+ self.emit('open', fd);
+ self._read();
+ })
+ }
+
+ function WriteStream (path, options) {
+ if (!(this instanceof WriteStream)) return new WriteStream(path, options);
+
+ Stream.call(this);
+
+ this.path = path;
+ this.fd = null;
+ this.writable = true;
+
+ this.flags = 'w';
+ this.encoding = 'binary';
+ this.mode = 438; /*=0666*/
+ this.bytesWritten = 0;
+
+ options = options || {};
+
+ // Mixin options into this
+ var keys = Object.keys(options);
+ for (var index = 0, length = keys.length; index < length; index++) {
+ var key = keys[index];
+ this[key] = options[key];
+ }
+
+ if (this.start !== undefined) {
+ if ('number' !== typeof this.start) {
+ throw TypeError('start must be a Number');
+ }
+ if (this.start < 0) {
+ throw new Error('start must be >= zero');
+ }
+
+ this.pos = this.start;
+ }
+
+ this.busy = false;
+ this._queue = [];
+
+ if (this.fd === null) {
+ this._open = fs.open;
+ this._queue.push([this._open, this.path, this.flags, this.mode, undefined]);
+ this.flush();
+ }
+ }
+}
diff --git a/node_modules/graceful-fs/package.json b/node_modules/graceful-fs/package.json
new file mode 100644
index 0000000..87babf0
--- /dev/null
+++ b/node_modules/graceful-fs/package.json
@@ -0,0 +1,53 @@
+{
+ "name": "graceful-fs",
+ "description": "A drop-in replacement for fs, making various improvements.",
+ "version": "4.2.11",
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/isaacs/node-graceful-fs"
+ },
+ "main": "graceful-fs.js",
+ "directories": {
+ "test": "test"
+ },
+ "scripts": {
+ "preversion": "npm test",
+ "postversion": "npm publish",
+ "postpublish": "git push origin --follow-tags",
+ "test": "nyc --silent node test.js | tap -c -",
+ "posttest": "nyc report"
+ },
+ "keywords": [
+ "fs",
+ "module",
+ "reading",
+ "retry",
+ "retries",
+ "queue",
+ "error",
+ "errors",
+ "handling",
+ "EMFILE",
+ "EAGAIN",
+ "EINVAL",
+ "EPERM",
+ "EACCESS"
+ ],
+ "license": "ISC",
+ "devDependencies": {
+ "import-fresh": "^2.0.0",
+ "mkdirp": "^0.5.0",
+ "rimraf": "^2.2.8",
+ "tap": "^16.3.4"
+ },
+ "files": [
+ "fs.js",
+ "graceful-fs.js",
+ "legacy-streams.js",
+ "polyfills.js",
+ "clone.js"
+ ],
+ "tap": {
+ "reporter": "classic"
+ }
+}
diff --git a/node_modules/graceful-fs/polyfills.js b/node_modules/graceful-fs/polyfills.js
new file mode 100644
index 0000000..453f1a9
--- /dev/null
+++ b/node_modules/graceful-fs/polyfills.js
@@ -0,0 +1,355 @@
+var constants = require('constants')
+
+var origCwd = process.cwd
+var cwd = null
+
+var platform = process.env.GRACEFUL_FS_PLATFORM || process.platform
+
+process.cwd = function() {
+ if (!cwd)
+ cwd = origCwd.call(process)
+ return cwd
+}
+try {
+ process.cwd()
+} catch (er) {}
+
+// This check is needed until node.js 12 is required
+if (typeof process.chdir === 'function') {
+ var chdir = process.chdir
+ process.chdir = function (d) {
+ cwd = null
+ chdir.call(process, d)
+ }
+ if (Object.setPrototypeOf) Object.setPrototypeOf(process.chdir, chdir)
+}
+
+module.exports = patch
+
+function patch (fs) {
+ // (re-)implement some things that are known busted or missing.
+
+ // lchmod, broken prior to 0.6.2
+ // back-port the fix here.
+ if (constants.hasOwnProperty('O_SYMLINK') &&
+ process.version.match(/^v0\.6\.[0-2]|^v0\.5\./)) {
+ patchLchmod(fs)
+ }
+
+ // lutimes implementation, or no-op
+ if (!fs.lutimes) {
+ patchLutimes(fs)
+ }
+
+ // https://github.com/isaacs/node-graceful-fs/issues/4
+ // Chown should not fail on einval or eperm if non-root.
+ // It should not fail on enosys ever, as this just indicates
+ // that a fs doesn't support the intended operation.
+
+ fs.chown = chownFix(fs.chown)
+ fs.fchown = chownFix(fs.fchown)
+ fs.lchown = chownFix(fs.lchown)
+
+ fs.chmod = chmodFix(fs.chmod)
+ fs.fchmod = chmodFix(fs.fchmod)
+ fs.lchmod = chmodFix(fs.lchmod)
+
+ fs.chownSync = chownFixSync(fs.chownSync)
+ fs.fchownSync = chownFixSync(fs.fchownSync)
+ fs.lchownSync = chownFixSync(fs.lchownSync)
+
+ fs.chmodSync = chmodFixSync(fs.chmodSync)
+ fs.fchmodSync = chmodFixSync(fs.fchmodSync)
+ fs.lchmodSync = chmodFixSync(fs.lchmodSync)
+
+ fs.stat = statFix(fs.stat)
+ fs.fstat = statFix(fs.fstat)
+ fs.lstat = statFix(fs.lstat)
+
+ fs.statSync = statFixSync(fs.statSync)
+ fs.fstatSync = statFixSync(fs.fstatSync)
+ fs.lstatSync = statFixSync(fs.lstatSync)
+
+ // if lchmod/lchown do not exist, then make them no-ops
+ if (fs.chmod && !fs.lchmod) {
+ fs.lchmod = function (path, mode, cb) {
+ if (cb) process.nextTick(cb)
+ }
+ fs.lchmodSync = function () {}
+ }
+ if (fs.chown && !fs.lchown) {
+ fs.lchown = function (path, uid, gid, cb) {
+ if (cb) process.nextTick(cb)
+ }
+ fs.lchownSync = function () {}
+ }
+
+ // on Windows, A/V software can lock the directory, causing this
+ // to fail with an EACCES or EPERM if the directory contains newly
+ // created files. Try again on failure, for up to 60 seconds.
+
+ // Set the timeout this long because some Windows Anti-Virus, such as Parity
+ // bit9, may lock files for up to a minute, causing npm package install
+ // failures. Also, take care to yield the scheduler. Windows scheduling gives
+ // CPU to a busy looping process, which can cause the program causing the lock
+ // contention to be starved of CPU by node, so the contention doesn't resolve.
+ if (platform === "win32") {
+ fs.rename = typeof fs.rename !== 'function' ? fs.rename
+ : (function (fs$rename) {
+ function rename (from, to, cb) {
+ var start = Date.now()
+ var backoff = 0;
+ fs$rename(from, to, function CB (er) {
+ if (er
+ && (er.code === "EACCES" || er.code === "EPERM" || er.code === "EBUSY")
+ && Date.now() - start < 60000) {
+ setTimeout(function() {
+ fs.stat(to, function (stater, st) {
+ if (stater && stater.code === "ENOENT")
+ fs$rename(from, to, CB);
+ else
+ cb(er)
+ })
+ }, backoff)
+ if (backoff < 100)
+ backoff += 10;
+ return;
+ }
+ if (cb) cb(er)
+ })
+ }
+ if (Object.setPrototypeOf) Object.setPrototypeOf(rename, fs$rename)
+ return rename
+ })(fs.rename)
+ }
+
+ // if read() returns EAGAIN, then just try it again.
+ fs.read = typeof fs.read !== 'function' ? fs.read
+ : (function (fs$read) {
+ function read (fd, buffer, offset, length, position, callback_) {
+ var callback
+ if (callback_ && typeof callback_ === 'function') {
+ var eagCounter = 0
+ callback = function (er, _, __) {
+ if (er && er.code === 'EAGAIN' && eagCounter < 10) {
+ eagCounter ++
+ return fs$read.call(fs, fd, buffer, offset, length, position, callback)
+ }
+ callback_.apply(this, arguments)
+ }
+ }
+ return fs$read.call(fs, fd, buffer, offset, length, position, callback)
+ }
+
+ // This ensures `util.promisify` works as it does for native `fs.read`.
+ if (Object.setPrototypeOf) Object.setPrototypeOf(read, fs$read)
+ return read
+ })(fs.read)
+
+ fs.readSync = typeof fs.readSync !== 'function' ? fs.readSync
+ : (function (fs$readSync) { return function (fd, buffer, offset, length, position) {
+ var eagCounter = 0
+ while (true) {
+ try {
+ return fs$readSync.call(fs, fd, buffer, offset, length, position)
+ } catch (er) {
+ if (er.code === 'EAGAIN' && eagCounter < 10) {
+ eagCounter ++
+ continue
+ }
+ throw er
+ }
+ }
+ }})(fs.readSync)
+
+ function patchLchmod (fs) {
+ fs.lchmod = function (path, mode, callback) {
+ fs.open( path
+ , constants.O_WRONLY | constants.O_SYMLINK
+ , mode
+ , function (err, fd) {
+ if (err) {
+ if (callback) callback(err)
+ return
+ }
+ // prefer to return the chmod error, if one occurs,
+ // but still try to close, and report closing errors if they occur.
+ fs.fchmod(fd, mode, function (err) {
+ fs.close(fd, function(err2) {
+ if (callback) callback(err || err2)
+ })
+ })
+ })
+ }
+
+ fs.lchmodSync = function (path, mode) {
+ var fd = fs.openSync(path, constants.O_WRONLY | constants.O_SYMLINK, mode)
+
+ // prefer to return the chmod error, if one occurs,
+ // but still try to close, and report closing errors if they occur.
+ var threw = true
+ var ret
+ try {
+ ret = fs.fchmodSync(fd, mode)
+ threw = false
+ } finally {
+ if (threw) {
+ try {
+ fs.closeSync(fd)
+ } catch (er) {}
+ } else {
+ fs.closeSync(fd)
+ }
+ }
+ return ret
+ }
+ }
+
+ function patchLutimes (fs) {
+ if (constants.hasOwnProperty("O_SYMLINK") && fs.futimes) {
+ fs.lutimes = function (path, at, mt, cb) {
+ fs.open(path, constants.O_SYMLINK, function (er, fd) {
+ if (er) {
+ if (cb) cb(er)
+ return
+ }
+ fs.futimes(fd, at, mt, function (er) {
+ fs.close(fd, function (er2) {
+ if (cb) cb(er || er2)
+ })
+ })
+ })
+ }
+
+ fs.lutimesSync = function (path, at, mt) {
+ var fd = fs.openSync(path, constants.O_SYMLINK)
+ var ret
+ var threw = true
+ try {
+ ret = fs.futimesSync(fd, at, mt)
+ threw = false
+ } finally {
+ if (threw) {
+ try {
+ fs.closeSync(fd)
+ } catch (er) {}
+ } else {
+ fs.closeSync(fd)
+ }
+ }
+ return ret
+ }
+
+ } else if (fs.futimes) {
+ fs.lutimes = function (_a, _b, _c, cb) { if (cb) process.nextTick(cb) }
+ fs.lutimesSync = function () {}
+ }
+ }
+
+ function chmodFix (orig) {
+ if (!orig) return orig
+ return function (target, mode, cb) {
+ return orig.call(fs, target, mode, function (er) {
+ if (chownErOk(er)) er = null
+ if (cb) cb.apply(this, arguments)
+ })
+ }
+ }
+
+ function chmodFixSync (orig) {
+ if (!orig) return orig
+ return function (target, mode) {
+ try {
+ return orig.call(fs, target, mode)
+ } catch (er) {
+ if (!chownErOk(er)) throw er
+ }
+ }
+ }
+
+
+ function chownFix (orig) {
+ if (!orig) return orig
+ return function (target, uid, gid, cb) {
+ return orig.call(fs, target, uid, gid, function (er) {
+ if (chownErOk(er)) er = null
+ if (cb) cb.apply(this, arguments)
+ })
+ }
+ }
+
+ function chownFixSync (orig) {
+ if (!orig) return orig
+ return function (target, uid, gid) {
+ try {
+ return orig.call(fs, target, uid, gid)
+ } catch (er) {
+ if (!chownErOk(er)) throw er
+ }
+ }
+ }
+
+ function statFix (orig) {
+ if (!orig) return orig
+ // Older versions of Node erroneously returned signed integers for
+ // uid + gid.
+ return function (target, options, cb) {
+ if (typeof options === 'function') {
+ cb = options
+ options = null
+ }
+ function callback (er, stats) {
+ if (stats) {
+ if (stats.uid < 0) stats.uid += 0x100000000
+ if (stats.gid < 0) stats.gid += 0x100000000
+ }
+ if (cb) cb.apply(this, arguments)
+ }
+ return options ? orig.call(fs, target, options, callback)
+ : orig.call(fs, target, callback)
+ }
+ }
+
+ function statFixSync (orig) {
+ if (!orig) return orig
+ // Older versions of Node erroneously returned signed integers for
+ // uid + gid.
+ return function (target, options) {
+ var stats = options ? orig.call(fs, target, options)
+ : orig.call(fs, target)
+ if (stats) {
+ if (stats.uid < 0) stats.uid += 0x100000000
+ if (stats.gid < 0) stats.gid += 0x100000000
+ }
+ return stats;
+ }
+ }
+
+ // ENOSYS means that the fs doesn't support the op. Just ignore
+ // that, because it doesn't matter.
+ //
+ // if there's no getuid, or if getuid() is something other
+ // than 0, and the error is EINVAL or EPERM, then just ignore
+ // it.
+ //
+ // This specific case is a silent failure in cp, install, tar,
+ // and most other unix tools that manage permissions.
+ //
+ // When running as root, or if other types of errors are
+ // encountered, then it's strict.
+ function chownErOk (er) {
+ if (!er)
+ return true
+
+ if (er.code === "ENOSYS")
+ return true
+
+ var nonroot = !process.getuid || process.getuid() !== 0
+ if (nonroot) {
+ if (er.code === "EINVAL" || er.code === "EPERM")
+ return true
+ }
+
+ return false
+ }
+}
diff --git a/node_modules/ignore/LICENSE-MIT b/node_modules/ignore/LICENSE-MIT
new file mode 100644
index 0000000..825533e
--- /dev/null
+++ b/node_modules/ignore/LICENSE-MIT
@@ -0,0 +1,21 @@
+Copyright (c) 2013 Kael Zhang , contributors
+http://kael.me/
+
+Permission is hereby granted, free of charge, to any person obtaining
+a copy of this software and associated documentation files (the
+"Software"), to deal in the Software without restriction, including
+without limitation the rights to use, copy, modify, merge, publish,
+distribute, sublicense, and/or sell copies of the Software, and to
+permit persons to whom the Software is furnished to do so, subject to
+the following conditions:
+
+The above copyright notice and this permission notice shall be
+included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
\ No newline at end of file
diff --git a/node_modules/ignore/README.md b/node_modules/ignore/README.md
new file mode 100644
index 0000000..50d8882
--- /dev/null
+++ b/node_modules/ignore/README.md
@@ -0,0 +1,412 @@
+
+
+ Linux
+ OS X
+ Windows
+ Coverage
+ Downloads
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+# ignore
+
+`ignore` is a manager, filter and parser which implemented in pure JavaScript according to the [.gitignore spec 2.22.1](http://git-scm.com/docs/gitignore).
+
+`ignore` is used by eslint, gitbook and [many others](https://www.npmjs.com/browse/depended/ignore).
+
+Pay **ATTENTION** that [`minimatch`](https://www.npmjs.org/package/minimatch) (which used by `fstream-ignore`) does not follow the gitignore spec.
+
+To filter filenames according to a .gitignore file, I recommend this npm package, `ignore`.
+
+To parse an `.npmignore` file, you should use `minimatch`, because an `.npmignore` file is parsed by npm using `minimatch` and it does not work in the .gitignore way.
+
+### Tested on
+
+`ignore` is fully tested, and has more than **five hundreds** of unit tests.
+
+- Linux + Node: `0.8` - `7.x`
+- Windows + Node: `0.10` - `7.x`, node < `0.10` is not tested due to the lack of support of appveyor.
+
+Actually, `ignore` does not rely on any versions of node specially.
+
+Since `4.0.0`, ignore will no longer support `node < 6` by default, to use in node < 6, `require('ignore/legacy')`. For details, see [CHANGELOG](https://github.com/kaelzhang/node-ignore/blob/master/CHANGELOG.md).
+
+## Table Of Main Contents
+
+- [Usage](#usage)
+- [`Pathname` Conventions](#pathname-conventions)
+- See Also:
+ - [`glob-gitignore`](https://www.npmjs.com/package/glob-gitignore) matches files using patterns and filters them according to gitignore rules.
+- [Upgrade Guide](#upgrade-guide)
+
+## Install
+
+```sh
+npm i ignore
+```
+
+## Usage
+
+```js
+import ignore from 'ignore'
+const ig = ignore().add(['.abc/*', '!.abc/d/'])
+```
+
+### Filter the given paths
+
+```js
+const paths = [
+ '.abc/a.js', // filtered out
+ '.abc/d/e.js' // included
+]
+
+ig.filter(paths) // ['.abc/d/e.js']
+ig.ignores('.abc/a.js') // true
+```
+
+### As the filter function
+
+```js
+paths.filter(ig.createFilter()); // ['.abc/d/e.js']
+```
+
+### Win32 paths will be handled
+
+```js
+ig.filter(['.abc\\a.js', '.abc\\d\\e.js'])
+// if the code above runs on windows, the result will be
+// ['.abc\\d\\e.js']
+```
+
+## Why another ignore?
+
+- `ignore` is a standalone module, and is much simpler so that it could easy work with other programs, unlike [isaacs](https://npmjs.org/~isaacs)'s [fstream-ignore](https://npmjs.org/package/fstream-ignore) which must work with the modules of the fstream family.
+
+- `ignore` only contains utility methods to filter paths according to the specified ignore rules, so
+ - `ignore` never try to find out ignore rules by traversing directories or fetching from git configurations.
+ - `ignore` don't cares about sub-modules of git projects.
+
+- Exactly according to [gitignore man page](http://git-scm.com/docs/gitignore), fixes some known matching issues of fstream-ignore, such as:
+ - '`/*.js`' should only match '`a.js`', but not '`abc/a.js`'.
+ - '`**/foo`' should match '`foo`' anywhere.
+ - Prevent re-including a file if a parent directory of that file is excluded.
+ - Handle trailing whitespaces:
+ - `'a '`(one space) should not match `'a '`(two spaces).
+ - `'a \ '` matches `'a '`
+ - All test cases are verified with the result of `git check-ignore`.
+
+# Methods
+
+## .add(pattern: string | Ignore): this
+## .add(patterns: Array): this
+
+- **pattern** `String | Ignore` An ignore pattern string, or the `Ignore` instance
+- **patterns** `Array` Array of ignore patterns.
+
+Adds a rule or several rules to the current manager.
+
+Returns `this`
+
+Notice that a line starting with `'#'`(hash) is treated as a comment. Put a backslash (`'\'`) in front of the first hash for patterns that begin with a hash, if you want to ignore a file with a hash at the beginning of the filename.
+
+```js
+ignore().add('#abc').ignores('#abc') // false
+ignore().add('\\#abc').ignores('#abc') // true
+```
+
+`pattern` could either be a line of ignore pattern or a string of multiple ignore patterns, which means we could just `ignore().add()` the content of a ignore file:
+
+```js
+ignore()
+.add(fs.readFileSync(filenameOfGitignore).toString())
+.filter(filenames)
+```
+
+`pattern` could also be an `ignore` instance, so that we could easily inherit the rules of another `Ignore` instance.
+
+## .addIgnoreFile(path)
+
+REMOVED in `3.x` for now.
+
+To upgrade `ignore@2.x` up to `3.x`, use
+
+```js
+import fs from 'fs'
+
+if (fs.existsSync(filename)) {
+ ignore().add(fs.readFileSync(filename).toString())
+}
+```
+
+instead.
+
+## .filter(paths: Array<Pathname>): Array<Pathname>
+
+```ts
+type Pathname = string
+```
+
+Filters the given array of pathnames, and returns the filtered array.
+
+- **paths** `Array.` The array of `pathname`s to be filtered.
+
+### `Pathname` Conventions:
+
+#### 1. `Pathname` should be a `path.relative()`d pathname
+
+`Pathname` should be a string that have been `path.join()`ed, or the return value of `path.relative()` to the current directory,
+
+```js
+// WRONG, an error will be thrown
+ig.ignores('./abc')
+
+// WRONG, for it will never happen, and an error will be thrown
+// If the gitignore rule locates at the root directory,
+// `'/abc'` should be changed to `'abc'`.
+// ```
+// path.relative('/', '/abc') -> 'abc'
+// ```
+ig.ignores('/abc')
+
+// WRONG, that it is an absolute path on Windows, an error will be thrown
+ig.ignores('C:\\abc')
+
+// Right
+ig.ignores('abc')
+
+// Right
+ig.ignores(path.join('./abc')) // path.join('./abc') -> 'abc'
+```
+
+In other words, each `Pathname` here should be a relative path to the directory of the gitignore rules.
+
+Suppose the dir structure is:
+
+```
+/path/to/your/repo
+ |-- a
+ | |-- a.js
+ |
+ |-- .b
+ |
+ |-- .c
+ |-- .DS_store
+```
+
+Then the `paths` might be like this:
+
+```js
+[
+ 'a/a.js'
+ '.b',
+ '.c/.DS_store'
+]
+```
+
+#### 2. filenames and dirnames
+
+`node-ignore` does NO `fs.stat` during path matching, so for the example below:
+
+```js
+// First, we add a ignore pattern to ignore a directory
+ig.add('config/')
+
+// `ig` does NOT know if 'config', in the real world,
+// is a normal file, directory or something.
+
+ig.ignores('config')
+// `ig` treats `config` as a file, so it returns `false`
+
+ig.ignores('config/')
+// returns `true`
+```
+
+Specially for people who develop some library based on `node-ignore`, it is important to understand that.
+
+Usually, you could use [`glob`](http://npmjs.org/package/glob) with `option.mark = true` to fetch the structure of the current directory:
+
+```js
+import glob from 'glob'
+
+glob('**', {
+ // Adds a / character to directory matches.
+ mark: true
+}, (err, files) => {
+ if (err) {
+ return console.error(err)
+ }
+
+ let filtered = ignore().add(patterns).filter(files)
+ console.log(filtered)
+})
+```
+
+## .ignores(pathname: Pathname): boolean
+
+> new in 3.2.0
+
+Returns `Boolean` whether `pathname` should be ignored.
+
+```js
+ig.ignores('.abc/a.js') // true
+```
+
+## .createFilter()
+
+Creates a filter function which could filter an array of paths with `Array.prototype.filter`.
+
+Returns `function(path)` the filter function.
+
+## .test(pathname: Pathname) since 5.0.0
+
+Returns `TestResult`
+
+```ts
+interface TestResult {
+ ignored: boolean
+ // true if the `pathname` is finally unignored by some negative pattern
+ unignored: boolean
+}
+```
+
+- `{ignored: true, unignored: false}`: the `pathname` is ignored
+- `{ignored: false, unignored: true}`: the `pathname` is unignored
+- `{ignored: false, unignored: false}`: the `pathname` is never matched by any ignore rules.
+
+## static `ignore.isPathValid(pathname): boolean` since 5.0.0
+
+Check whether the `pathname` is an valid `path.relative()`d path according to the [convention](#1-pathname-should-be-a-pathrelatived-pathname).
+
+This method is **NOT** used to check if an ignore pattern is valid.
+
+```js
+ignore.isPathValid('./foo') // false
+```
+
+## ignore(options)
+
+### `options.ignorecase` since 4.0.0
+
+Similar as the `core.ignorecase` option of [git-config](https://git-scm.com/docs/git-config), `node-ignore` will be case insensitive if `options.ignorecase` is set to `true` (the default value), otherwise case sensitive.
+
+```js
+const ig = ignore({
+ ignorecase: false
+})
+
+ig.add('*.png')
+
+ig.ignores('*.PNG') // false
+```
+
+### `options.ignoreCase?: boolean` since 5.2.0
+
+Which is alternative to `options.ignoreCase`
+
+### `options.allowRelativePaths?: boolean` since 5.2.0
+
+This option brings backward compatibility with projects which based on `ignore@4.x`. If `options.allowRelativePaths` is `true`, `ignore` will not check whether the given path to be tested is [`path.relative()`d](#pathname-conventions).
+
+However, passing a relative path, such as `'./foo'` or `'../foo'`, to test if it is ignored or not is not a good practise, which might lead to unexpected behavior
+
+```js
+ignore({
+ allowRelativePaths: true
+}).ignores('../foo/bar.js') // And it will not throw
+```
+
+****
+
+# Upgrade Guide
+
+## Upgrade 4.x -> 5.x
+
+Since `5.0.0`, if an invalid `Pathname` passed into `ig.ignores()`, an error will be thrown, unless `options.allowRelative = true` is passed to the `Ignore` factory.
+
+While `ignore < 5.0.0` did not make sure what the return value was, as well as
+
+```ts
+.ignores(pathname: Pathname): boolean
+
+.filter(pathnames: Array): Array
+
+.createFilter(): (pathname: Pathname) => boolean
+
+.test(pathname: Pathname): {ignored: boolean, unignored: boolean}
+```
+
+See the convention [here](#1-pathname-should-be-a-pathrelatived-pathname) for details.
+
+If there are invalid pathnames, the conversion and filtration should be done by users.
+
+```js
+import {isPathValid} from 'ignore' // introduced in 5.0.0
+
+const paths = [
+ // invalid
+ //////////////////
+ '',
+ false,
+ '../foo',
+ '.',
+ //////////////////
+
+ // valid
+ 'foo'
+]
+.filter(isValidPath)
+
+ig.filter(paths)
+```
+
+## Upgrade 3.x -> 4.x
+
+Since `4.0.0`, `ignore` will no longer support node < 6, to use `ignore` in node < 6:
+
+```js
+var ignore = require('ignore/legacy')
+```
+
+## Upgrade 2.x -> 3.x
+
+- All `options` of 2.x are unnecessary and removed, so just remove them.
+- `ignore()` instance is no longer an [`EventEmitter`](nodejs.org/api/events.html), and all events are unnecessary and removed.
+- `.addIgnoreFile()` is removed, see the [.addIgnoreFile](#addignorefilepath) section for details.
+
+****
+
+# Collaborators
+
+- [@whitecolor](https://github.com/whitecolor) *Alex*
+- [@SamyPesse](https://github.com/SamyPesse) *Samy Pessé*
+- [@azproduction](https://github.com/azproduction) *Mikhail Davydov*
+- [@TrySound](https://github.com/TrySound) *Bogdan Chadkin*
+- [@JanMattner](https://github.com/JanMattner) *Jan Mattner*
+- [@ntwb](https://github.com/ntwb) *Stephen Edgar*
+- [@kasperisager](https://github.com/kasperisager) *Kasper Isager*
+- [@sandersn](https://github.com/sandersn) *Nathan Shively-Sanders*
diff --git a/node_modules/ignore/index.d.ts b/node_modules/ignore/index.d.ts
new file mode 100644
index 0000000..520eafa
--- /dev/null
+++ b/node_modules/ignore/index.d.ts
@@ -0,0 +1,61 @@
+type Pathname = string
+
+interface TestResult {
+ ignored: boolean
+ unignored: boolean
+}
+
+export interface Ignore {
+ /**
+ * Adds one or several rules to the current manager.
+ * @param {string[]} patterns
+ * @returns IgnoreBase
+ */
+ add(patterns: string | Ignore | readonly (string | Ignore)[]): this
+
+ /**
+ * Filters the given array of pathnames, and returns the filtered array.
+ * NOTICE that each path here should be a relative path to the root of your repository.
+ * @param paths the array of paths to be filtered.
+ * @returns The filtered array of paths
+ */
+ filter(pathnames: readonly Pathname[]): Pathname[]
+
+ /**
+ * Creates a filter function which could filter
+ * an array of paths with Array.prototype.filter.
+ */
+ createFilter(): (pathname: Pathname) => boolean
+
+ /**
+ * Returns Boolean whether pathname should be ignored.
+ * @param {string} pathname a path to check
+ * @returns boolean
+ */
+ ignores(pathname: Pathname): boolean
+
+ /**
+ * Returns whether pathname should be ignored or unignored
+ * @param {string} pathname a path to check
+ * @returns TestResult
+ */
+ test(pathname: Pathname): TestResult
+}
+
+interface Options {
+ ignorecase?: boolean
+ // For compatibility
+ ignoreCase?: boolean
+ allowRelativePaths?: boolean
+}
+
+/**
+ * Creates new ignore manager.
+ */
+declare function ignore(options?: Options): Ignore
+
+declare namespace ignore {
+ export function isPathValid (pathname: string): boolean
+}
+
+export default ignore
diff --git a/node_modules/ignore/index.js b/node_modules/ignore/index.js
new file mode 100644
index 0000000..a25577f
--- /dev/null
+++ b/node_modules/ignore/index.js
@@ -0,0 +1,618 @@
+// A simple implementation of make-array
+function makeArray (subject) {
+ return Array.isArray(subject)
+ ? subject
+ : [subject]
+}
+
+const EMPTY = ''
+const SPACE = ' '
+const ESCAPE = '\\'
+const REGEX_TEST_BLANK_LINE = /^\s+$/
+const REGEX_INVALID_TRAILING_BACKSLASH = /(?:[^\\]|^)\\$/
+const REGEX_REPLACE_LEADING_EXCAPED_EXCLAMATION = /^\\!/
+const REGEX_REPLACE_LEADING_EXCAPED_HASH = /^\\#/
+const REGEX_SPLITALL_CRLF = /\r?\n/g
+// /foo,
+// ./foo,
+// ../foo,
+// .
+// ..
+const REGEX_TEST_INVALID_PATH = /^\.*\/|^\.+$/
+
+const SLASH = '/'
+
+// Do not use ternary expression here, since "istanbul ignore next" is buggy
+let TMP_KEY_IGNORE = 'node-ignore'
+/* istanbul ignore else */
+if (typeof Symbol !== 'undefined') {
+ TMP_KEY_IGNORE = Symbol.for('node-ignore')
+}
+const KEY_IGNORE = TMP_KEY_IGNORE
+
+const define = (object, key, value) =>
+ Object.defineProperty(object, key, {value})
+
+const REGEX_REGEXP_RANGE = /([0-z])-([0-z])/g
+
+const RETURN_FALSE = () => false
+
+// Sanitize the range of a regular expression
+// The cases are complicated, see test cases for details
+const sanitizeRange = range => range.replace(
+ REGEX_REGEXP_RANGE,
+ (match, from, to) => from.charCodeAt(0) <= to.charCodeAt(0)
+ ? match
+ // Invalid range (out of order) which is ok for gitignore rules but
+ // fatal for JavaScript regular expression, so eliminate it.
+ : EMPTY
+)
+
+// See fixtures #59
+const cleanRangeBackSlash = slashes => {
+ const {length} = slashes
+ return slashes.slice(0, length - length % 2)
+}
+
+// > If the pattern ends with a slash,
+// > it is removed for the purpose of the following description,
+// > but it would only find a match with a directory.
+// > In other words, foo/ will match a directory foo and paths underneath it,
+// > but will not match a regular file or a symbolic link foo
+// > (this is consistent with the way how pathspec works in general in Git).
+// '`foo/`' will not match regular file '`foo`' or symbolic link '`foo`'
+// -> ignore-rules will not deal with it, because it costs extra `fs.stat` call
+// you could use option `mark: true` with `glob`
+
+// '`foo/`' should not continue with the '`..`'
+const REPLACERS = [
+
+ // > Trailing spaces are ignored unless they are quoted with backslash ("\")
+ [
+ // (a\ ) -> (a )
+ // (a ) -> (a)
+ // (a \ ) -> (a )
+ /\\?\s+$/,
+ match => match.indexOf('\\') === 0
+ ? SPACE
+ : EMPTY
+ ],
+
+ // replace (\ ) with ' '
+ [
+ /\\\s/g,
+ () => SPACE
+ ],
+
+ // Escape metacharacters
+ // which is written down by users but means special for regular expressions.
+
+ // > There are 12 characters with special meanings:
+ // > - the backslash \,
+ // > - the caret ^,
+ // > - the dollar sign $,
+ // > - the period or dot .,
+ // > - the vertical bar or pipe symbol |,
+ // > - the question mark ?,
+ // > - the asterisk or star *,
+ // > - the plus sign +,
+ // > - the opening parenthesis (,
+ // > - the closing parenthesis ),
+ // > - and the opening square bracket [,
+ // > - the opening curly brace {,
+ // > These special characters are often called "metacharacters".
+ [
+ /[\\$.|*+(){^]/g,
+ match => `\\${match}`
+ ],
+
+ [
+ // > a question mark (?) matches a single character
+ /(?!\\)\?/g,
+ () => '[^/]'
+ ],
+
+ // leading slash
+ [
+
+ // > A leading slash matches the beginning of the pathname.
+ // > For example, "/*.c" matches "cat-file.c" but not "mozilla-sha1/sha1.c".
+ // A leading slash matches the beginning of the pathname
+ /^\//,
+ () => '^'
+ ],
+
+ // replace special metacharacter slash after the leading slash
+ [
+ /\//g,
+ () => '\\/'
+ ],
+
+ [
+ // > A leading "**" followed by a slash means match in all directories.
+ // > For example, "**/foo" matches file or directory "foo" anywhere,
+ // > the same as pattern "foo".
+ // > "**/foo/bar" matches file or directory "bar" anywhere that is directly
+ // > under directory "foo".
+ // Notice that the '*'s have been replaced as '\\*'
+ /^\^*\\\*\\\*\\\//,
+
+ // '**/foo' <-> 'foo'
+ () => '^(?:.*\\/)?'
+ ],
+
+ // starting
+ [
+ // there will be no leading '/'
+ // (which has been replaced by section "leading slash")
+ // If starts with '**', adding a '^' to the regular expression also works
+ /^(?=[^^])/,
+ function startingReplacer () {
+ // If has a slash `/` at the beginning or middle
+ return !/\/(?!$)/.test(this)
+ // > Prior to 2.22.1
+ // > If the pattern does not contain a slash /,
+ // > Git treats it as a shell glob pattern
+ // Actually, if there is only a trailing slash,
+ // git also treats it as a shell glob pattern
+
+ // After 2.22.1 (compatible but clearer)
+ // > If there is a separator at the beginning or middle (or both)
+ // > of the pattern, then the pattern is relative to the directory
+ // > level of the particular .gitignore file itself.
+ // > Otherwise the pattern may also match at any level below
+ // > the .gitignore level.
+ ? '(?:^|\\/)'
+
+ // > Otherwise, Git treats the pattern as a shell glob suitable for
+ // > consumption by fnmatch(3)
+ : '^'
+ }
+ ],
+
+ // two globstars
+ [
+ // Use lookahead assertions so that we could match more than one `'/**'`
+ /\\\/\\\*\\\*(?=\\\/|$)/g,
+
+ // Zero, one or several directories
+ // should not use '*', or it will be replaced by the next replacer
+
+ // Check if it is not the last `'/**'`
+ (_, index, str) => index + 6 < str.length
+
+ // case: /**/
+ // > A slash followed by two consecutive asterisks then a slash matches
+ // > zero or more directories.
+ // > For example, "a/**/b" matches "a/b", "a/x/b", "a/x/y/b" and so on.
+ // '/**/'
+ ? '(?:\\/[^\\/]+)*'
+
+ // case: /**
+ // > A trailing `"/**"` matches everything inside.
+
+ // #21: everything inside but it should not include the current folder
+ : '\\/.+'
+ ],
+
+ // normal intermediate wildcards
+ [
+ // Never replace escaped '*'
+ // ignore rule '\*' will match the path '*'
+
+ // 'abc.*/' -> go
+ // 'abc.*' -> skip this rule,
+ // coz trailing single wildcard will be handed by [trailing wildcard]
+ /(^|[^\\]+)(\\\*)+(?=.+)/g,
+
+ // '*.js' matches '.js'
+ // '*.js' doesn't match 'abc'
+ (_, p1, p2) => {
+ // 1.
+ // > An asterisk "*" matches anything except a slash.
+ // 2.
+ // > Other consecutive asterisks are considered regular asterisks
+ // > and will match according to the previous rules.
+ const unescaped = p2.replace(/\\\*/g, '[^\\/]*')
+ return p1 + unescaped
+ }
+ ],
+
+ [
+ // unescape, revert step 3 except for back slash
+ // For example, if a user escape a '\\*',
+ // after step 3, the result will be '\\\\\\*'
+ /\\\\\\(?=[$.|*+(){^])/g,
+ () => ESCAPE
+ ],
+
+ [
+ // '\\\\' -> '\\'
+ /\\\\/g,
+ () => ESCAPE
+ ],
+
+ [
+ // > The range notation, e.g. [a-zA-Z],
+ // > can be used to match one of the characters in a range.
+
+ // `\` is escaped by step 3
+ /(\\)?\[([^\]/]*?)(\\*)($|\])/g,
+ (match, leadEscape, range, endEscape, close) => leadEscape === ESCAPE
+ // '\\[bar]' -> '\\\\[bar\\]'
+ ? `\\[${range}${cleanRangeBackSlash(endEscape)}${close}`
+ : close === ']'
+ ? endEscape.length % 2 === 0
+ // A normal case, and it is a range notation
+ // '[bar]'
+ // '[bar\\\\]'
+ ? `[${sanitizeRange(range)}${endEscape}]`
+ // Invalid range notaton
+ // '[bar\\]' -> '[bar\\\\]'
+ : '[]'
+ : '[]'
+ ],
+
+ // ending
+ [
+ // 'js' will not match 'js.'
+ // 'ab' will not match 'abc'
+ /(?:[^*])$/,
+
+ // WTF!
+ // https://git-scm.com/docs/gitignore
+ // changes in [2.22.1](https://git-scm.com/docs/gitignore/2.22.1)
+ // which re-fixes #24, #38
+
+ // > If there is a separator at the end of the pattern then the pattern
+ // > will only match directories, otherwise the pattern can match both
+ // > files and directories.
+
+ // 'js*' will not match 'a.js'
+ // 'js/' will not match 'a.js'
+ // 'js' will match 'a.js' and 'a.js/'
+ match => /\/$/.test(match)
+ // foo/ will not match 'foo'
+ ? `${match}$`
+ // foo matches 'foo' and 'foo/'
+ : `${match}(?=$|\\/$)`
+ ],
+
+ // trailing wildcard
+ [
+ /(\^|\\\/)?\\\*$/,
+ (_, p1) => {
+ const prefix = p1
+ // '\^':
+ // '/*' does not match EMPTY
+ // '/*' does not match everything
+
+ // '\\\/':
+ // 'abc/*' does not match 'abc/'
+ ? `${p1}[^/]+`
+
+ // 'a*' matches 'a'
+ // 'a*' matches 'aa'
+ : '[^/]*'
+
+ return `${prefix}(?=$|\\/$)`
+ }
+ ],
+]
+
+// A simple cache, because an ignore rule only has only one certain meaning
+const regexCache = Object.create(null)
+
+// @param {pattern}
+const makeRegex = (pattern, ignoreCase) => {
+ let source = regexCache[pattern]
+
+ if (!source) {
+ source = REPLACERS.reduce(
+ (prev, current) => prev.replace(current[0], current[1].bind(pattern)),
+ pattern
+ )
+ regexCache[pattern] = source
+ }
+
+ return ignoreCase
+ ? new RegExp(source, 'i')
+ : new RegExp(source)
+}
+
+const isString = subject => typeof subject === 'string'
+
+// > A blank line matches no files, so it can serve as a separator for readability.
+const checkPattern = pattern => pattern
+ && isString(pattern)
+ && !REGEX_TEST_BLANK_LINE.test(pattern)
+ && !REGEX_INVALID_TRAILING_BACKSLASH.test(pattern)
+
+ // > A line starting with # serves as a comment.
+ && pattern.indexOf('#') !== 0
+
+const splitPattern = pattern => pattern.split(REGEX_SPLITALL_CRLF)
+
+class IgnoreRule {
+ constructor (
+ origin,
+ pattern,
+ negative,
+ regex
+ ) {
+ this.origin = origin
+ this.pattern = pattern
+ this.negative = negative
+ this.regex = regex
+ }
+}
+
+const createRule = (pattern, ignoreCase) => {
+ const origin = pattern
+ let negative = false
+
+ // > An optional prefix "!" which negates the pattern;
+ if (pattern.indexOf('!') === 0) {
+ negative = true
+ pattern = pattern.substr(1)
+ }
+
+ pattern = pattern
+ // > Put a backslash ("\") in front of the first "!" for patterns that
+ // > begin with a literal "!", for example, `"\!important!.txt"`.
+ .replace(REGEX_REPLACE_LEADING_EXCAPED_EXCLAMATION, '!')
+ // > Put a backslash ("\") in front of the first hash for patterns that
+ // > begin with a hash.
+ .replace(REGEX_REPLACE_LEADING_EXCAPED_HASH, '#')
+
+ const regex = makeRegex(pattern, ignoreCase)
+
+ return new IgnoreRule(
+ origin,
+ pattern,
+ negative,
+ regex
+ )
+}
+
+const throwError = (message, Ctor) => {
+ throw new Ctor(message)
+}
+
+const checkPath = (path, originalPath, doThrow) => {
+ if (!isString(path)) {
+ return doThrow(
+ `path must be a string, but got \`${originalPath}\``,
+ TypeError
+ )
+ }
+
+ // We don't know if we should ignore EMPTY, so throw
+ if (!path) {
+ return doThrow(`path must not be empty`, TypeError)
+ }
+
+ // Check if it is a relative path
+ if (checkPath.isNotRelative(path)) {
+ const r = '`path.relative()`d'
+ return doThrow(
+ `path should be a ${r} string, but got "${originalPath}"`,
+ RangeError
+ )
+ }
+
+ return true
+}
+
+const isNotRelative = path => REGEX_TEST_INVALID_PATH.test(path)
+
+checkPath.isNotRelative = isNotRelative
+checkPath.convert = p => p
+
+class Ignore {
+ constructor ({
+ ignorecase = true,
+ ignoreCase = ignorecase,
+ allowRelativePaths = false
+ } = {}) {
+ define(this, KEY_IGNORE, true)
+
+ this._rules = []
+ this._ignoreCase = ignoreCase
+ this._allowRelativePaths = allowRelativePaths
+ this._initCache()
+ }
+
+ _initCache () {
+ this._ignoreCache = Object.create(null)
+ this._testCache = Object.create(null)
+ }
+
+ _addPattern (pattern) {
+ // #32
+ if (pattern && pattern[KEY_IGNORE]) {
+ this._rules = this._rules.concat(pattern._rules)
+ this._added = true
+ return
+ }
+
+ if (checkPattern(pattern)) {
+ const rule = createRule(pattern, this._ignoreCase)
+ this._added = true
+ this._rules.push(rule)
+ }
+ }
+
+ // @param {Array | string | Ignore} pattern
+ add (pattern) {
+ this._added = false
+
+ makeArray(
+ isString(pattern)
+ ? splitPattern(pattern)
+ : pattern
+ ).forEach(this._addPattern, this)
+
+ // Some rules have just added to the ignore,
+ // making the behavior changed.
+ if (this._added) {
+ this._initCache()
+ }
+
+ return this
+ }
+
+ // legacy
+ addPattern (pattern) {
+ return this.add(pattern)
+ }
+
+ // | ignored : unignored
+ // negative | 0:0 | 0:1 | 1:0 | 1:1
+ // -------- | ------- | ------- | ------- | --------
+ // 0 | TEST | TEST | SKIP | X
+ // 1 | TESTIF | SKIP | TEST | X
+
+ // - SKIP: always skip
+ // - TEST: always test
+ // - TESTIF: only test if checkUnignored
+ // - X: that never happen
+
+ // @param {boolean} whether should check if the path is unignored,
+ // setting `checkUnignored` to `false` could reduce additional
+ // path matching.
+
+ // @returns {TestResult} true if a file is ignored
+ _testOne (path, checkUnignored) {
+ let ignored = false
+ let unignored = false
+
+ this._rules.forEach(rule => {
+ const {negative} = rule
+ if (
+ unignored === negative && ignored !== unignored
+ || negative && !ignored && !unignored && !checkUnignored
+ ) {
+ return
+ }
+
+ const matched = rule.regex.test(path)
+
+ if (matched) {
+ ignored = !negative
+ unignored = negative
+ }
+ })
+
+ return {
+ ignored,
+ unignored
+ }
+ }
+
+ // @returns {TestResult}
+ _test (originalPath, cache, checkUnignored, slices) {
+ const path = originalPath
+ // Supports nullable path
+ && checkPath.convert(originalPath)
+
+ checkPath(
+ path,
+ originalPath,
+ this._allowRelativePaths
+ ? RETURN_FALSE
+ : throwError
+ )
+
+ return this._t(path, cache, checkUnignored, slices)
+ }
+
+ _t (path, cache, checkUnignored, slices) {
+ if (path in cache) {
+ return cache[path]
+ }
+
+ if (!slices) {
+ // path/to/a.js
+ // ['path', 'to', 'a.js']
+ slices = path.split(SLASH)
+ }
+
+ slices.pop()
+
+ // If the path has no parent directory, just test it
+ if (!slices.length) {
+ return cache[path] = this._testOne(path, checkUnignored)
+ }
+
+ const parent = this._t(
+ slices.join(SLASH) + SLASH,
+ cache,
+ checkUnignored,
+ slices
+ )
+
+ // If the path contains a parent directory, check the parent first
+ return cache[path] = parent.ignored
+ // > It is not possible to re-include a file if a parent directory of
+ // > that file is excluded.
+ ? parent
+ : this._testOne(path, checkUnignored)
+ }
+
+ ignores (path) {
+ return this._test(path, this._ignoreCache, false).ignored
+ }
+
+ createFilter () {
+ return path => !this.ignores(path)
+ }
+
+ filter (paths) {
+ return makeArray(paths).filter(this.createFilter())
+ }
+
+ // @returns {TestResult}
+ test (path) {
+ return this._test(path, this._testCache, true)
+ }
+}
+
+const factory = options => new Ignore(options)
+
+const isPathValid = path =>
+ checkPath(path && checkPath.convert(path), path, RETURN_FALSE)
+
+factory.isPathValid = isPathValid
+
+// Fixes typescript
+factory.default = factory
+
+module.exports = factory
+
+// Windows
+// --------------------------------------------------------------
+/* istanbul ignore if */
+if (
+ // Detect `process` so that it can run in browsers.
+ typeof process !== 'undefined'
+ && (
+ process.env && process.env.IGNORE_TEST_WIN32
+ || process.platform === 'win32'
+ )
+) {
+ /* eslint no-control-regex: "off" */
+ const makePosix = str => /^\\\\\?\\/.test(str)
+ || /["<>|\u0000-\u001F]+/u.test(str)
+ ? str
+ : str.replace(/\\/g, '/')
+
+ checkPath.convert = makePosix
+
+ // 'C:\\foo' <- 'C:\\foo' has been converted to 'C:/'
+ // 'd:\\foo'
+ const REGIX_IS_WINDOWS_PATH_ABSOLUTE = /^[a-z]:\//i
+ checkPath.isNotRelative = path =>
+ REGIX_IS_WINDOWS_PATH_ABSOLUTE.test(path)
+ || isNotRelative(path)
+}
diff --git a/node_modules/ignore/legacy.js b/node_modules/ignore/legacy.js
new file mode 100644
index 0000000..8518b7c
--- /dev/null
+++ b/node_modules/ignore/legacy.js
@@ -0,0 +1,539 @@
+"use strict";
+
+function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
+function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, _toPropertyKey(descriptor.key), descriptor); } }
+function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
+function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return _typeof(key) === "symbol" ? key : String(key); }
+function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (_typeof(res) !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); }
+function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
+// A simple implementation of make-array
+function makeArray(subject) {
+ return Array.isArray(subject) ? subject : [subject];
+}
+var EMPTY = '';
+var SPACE = ' ';
+var ESCAPE = '\\';
+var REGEX_TEST_BLANK_LINE = /^\s+$/;
+var REGEX_INVALID_TRAILING_BACKSLASH = /(?:[^\\]|^)\\$/;
+var REGEX_REPLACE_LEADING_EXCAPED_EXCLAMATION = /^\\!/;
+var REGEX_REPLACE_LEADING_EXCAPED_HASH = /^\\#/;
+var REGEX_SPLITALL_CRLF = /\r?\n/g;
+// /foo,
+// ./foo,
+// ../foo,
+// .
+// ..
+var REGEX_TEST_INVALID_PATH = /^\.*\/|^\.+$/;
+var SLASH = '/';
+
+// Do not use ternary expression here, since "istanbul ignore next" is buggy
+var TMP_KEY_IGNORE = 'node-ignore';
+/* istanbul ignore else */
+if (typeof Symbol !== 'undefined') {
+ TMP_KEY_IGNORE = Symbol["for"]('node-ignore');
+}
+var KEY_IGNORE = TMP_KEY_IGNORE;
+var define = function define(object, key, value) {
+ return Object.defineProperty(object, key, {
+ value: value
+ });
+};
+var REGEX_REGEXP_RANGE = /([0-z])-([0-z])/g;
+var RETURN_FALSE = function RETURN_FALSE() {
+ return false;
+};
+
+// Sanitize the range of a regular expression
+// The cases are complicated, see test cases for details
+var sanitizeRange = function sanitizeRange(range) {
+ return range.replace(REGEX_REGEXP_RANGE, function (match, from, to) {
+ return from.charCodeAt(0) <= to.charCodeAt(0) ? match
+ // Invalid range (out of order) which is ok for gitignore rules but
+ // fatal for JavaScript regular expression, so eliminate it.
+ : EMPTY;
+ });
+};
+
+// See fixtures #59
+var cleanRangeBackSlash = function cleanRangeBackSlash(slashes) {
+ var length = slashes.length;
+ return slashes.slice(0, length - length % 2);
+};
+
+// > If the pattern ends with a slash,
+// > it is removed for the purpose of the following description,
+// > but it would only find a match with a directory.
+// > In other words, foo/ will match a directory foo and paths underneath it,
+// > but will not match a regular file or a symbolic link foo
+// > (this is consistent with the way how pathspec works in general in Git).
+// '`foo/`' will not match regular file '`foo`' or symbolic link '`foo`'
+// -> ignore-rules will not deal with it, because it costs extra `fs.stat` call
+// you could use option `mark: true` with `glob`
+
+// '`foo/`' should not continue with the '`..`'
+var REPLACERS = [
+// > Trailing spaces are ignored unless they are quoted with backslash ("\")
+[
+// (a\ ) -> (a )
+// (a ) -> (a)
+// (a \ ) -> (a )
+/\\?\s+$/, function (match) {
+ return match.indexOf('\\') === 0 ? SPACE : EMPTY;
+}],
+// replace (\ ) with ' '
+[/\\\s/g, function () {
+ return SPACE;
+}],
+// Escape metacharacters
+// which is written down by users but means special for regular expressions.
+
+// > There are 12 characters with special meanings:
+// > - the backslash \,
+// > - the caret ^,
+// > - the dollar sign $,
+// > - the period or dot .,
+// > - the vertical bar or pipe symbol |,
+// > - the question mark ?,
+// > - the asterisk or star *,
+// > - the plus sign +,
+// > - the opening parenthesis (,
+// > - the closing parenthesis ),
+// > - and the opening square bracket [,
+// > - the opening curly brace {,
+// > These special characters are often called "metacharacters".
+[/[\\$.|*+(){^]/g, function (match) {
+ return "\\".concat(match);
+}], [
+// > a question mark (?) matches a single character
+/(?!\\)\?/g, function () {
+ return '[^/]';
+}],
+// leading slash
+[
+// > A leading slash matches the beginning of the pathname.
+// > For example, "/*.c" matches "cat-file.c" but not "mozilla-sha1/sha1.c".
+// A leading slash matches the beginning of the pathname
+/^\//, function () {
+ return '^';
+}],
+// replace special metacharacter slash after the leading slash
+[/\//g, function () {
+ return '\\/';
+}], [
+// > A leading "**" followed by a slash means match in all directories.
+// > For example, "**/foo" matches file or directory "foo" anywhere,
+// > the same as pattern "foo".
+// > "**/foo/bar" matches file or directory "bar" anywhere that is directly
+// > under directory "foo".
+// Notice that the '*'s have been replaced as '\\*'
+/^\^*\\\*\\\*\\\//,
+// '**/foo' <-> 'foo'
+function () {
+ return '^(?:.*\\/)?';
+}],
+// starting
+[
+// there will be no leading '/'
+// (which has been replaced by section "leading slash")
+// If starts with '**', adding a '^' to the regular expression also works
+/^(?=[^^])/, function startingReplacer() {
+ // If has a slash `/` at the beginning or middle
+ return !/\/(?!$)/.test(this)
+ // > Prior to 2.22.1
+ // > If the pattern does not contain a slash /,
+ // > Git treats it as a shell glob pattern
+ // Actually, if there is only a trailing slash,
+ // git also treats it as a shell glob pattern
+
+ // After 2.22.1 (compatible but clearer)
+ // > If there is a separator at the beginning or middle (or both)
+ // > of the pattern, then the pattern is relative to the directory
+ // > level of the particular .gitignore file itself.
+ // > Otherwise the pattern may also match at any level below
+ // > the .gitignore level.
+ ? '(?:^|\\/)'
+
+ // > Otherwise, Git treats the pattern as a shell glob suitable for
+ // > consumption by fnmatch(3)
+ : '^';
+}],
+// two globstars
+[
+// Use lookahead assertions so that we could match more than one `'/**'`
+/\\\/\\\*\\\*(?=\\\/|$)/g,
+// Zero, one or several directories
+// should not use '*', or it will be replaced by the next replacer
+
+// Check if it is not the last `'/**'`
+function (_, index, str) {
+ return index + 6 < str.length
+
+ // case: /**/
+ // > A slash followed by two consecutive asterisks then a slash matches
+ // > zero or more directories.
+ // > For example, "a/**/b" matches "a/b", "a/x/b", "a/x/y/b" and so on.
+ // '/**/'
+ ? '(?:\\/[^\\/]+)*'
+
+ // case: /**
+ // > A trailing `"/**"` matches everything inside.
+
+ // #21: everything inside but it should not include the current folder
+ : '\\/.+';
+}],
+// normal intermediate wildcards
+[
+// Never replace escaped '*'
+// ignore rule '\*' will match the path '*'
+
+// 'abc.*/' -> go
+// 'abc.*' -> skip this rule,
+// coz trailing single wildcard will be handed by [trailing wildcard]
+/(^|[^\\]+)(\\\*)+(?=.+)/g,
+// '*.js' matches '.js'
+// '*.js' doesn't match 'abc'
+function (_, p1, p2) {
+ // 1.
+ // > An asterisk "*" matches anything except a slash.
+ // 2.
+ // > Other consecutive asterisks are considered regular asterisks
+ // > and will match according to the previous rules.
+ var unescaped = p2.replace(/\\\*/g, '[^\\/]*');
+ return p1 + unescaped;
+}], [
+// unescape, revert step 3 except for back slash
+// For example, if a user escape a '\\*',
+// after step 3, the result will be '\\\\\\*'
+/\\\\\\(?=[$.|*+(){^])/g, function () {
+ return ESCAPE;
+}], [
+// '\\\\' -> '\\'
+/\\\\/g, function () {
+ return ESCAPE;
+}], [
+// > The range notation, e.g. [a-zA-Z],
+// > can be used to match one of the characters in a range.
+
+// `\` is escaped by step 3
+/(\\)?\[([^\]/]*?)(\\*)($|\])/g, function (match, leadEscape, range, endEscape, close) {
+ return leadEscape === ESCAPE
+ // '\\[bar]' -> '\\\\[bar\\]'
+ ? "\\[".concat(range).concat(cleanRangeBackSlash(endEscape)).concat(close) : close === ']' ? endEscape.length % 2 === 0
+ // A normal case, and it is a range notation
+ // '[bar]'
+ // '[bar\\\\]'
+ ? "[".concat(sanitizeRange(range)).concat(endEscape, "]") // Invalid range notaton
+ // '[bar\\]' -> '[bar\\\\]'
+ : '[]' : '[]';
+}],
+// ending
+[
+// 'js' will not match 'js.'
+// 'ab' will not match 'abc'
+/(?:[^*])$/,
+// WTF!
+// https://git-scm.com/docs/gitignore
+// changes in [2.22.1](https://git-scm.com/docs/gitignore/2.22.1)
+// which re-fixes #24, #38
+
+// > If there is a separator at the end of the pattern then the pattern
+// > will only match directories, otherwise the pattern can match both
+// > files and directories.
+
+// 'js*' will not match 'a.js'
+// 'js/' will not match 'a.js'
+// 'js' will match 'a.js' and 'a.js/'
+function (match) {
+ return /\/$/.test(match)
+ // foo/ will not match 'foo'
+ ? "".concat(match, "$") // foo matches 'foo' and 'foo/'
+ : "".concat(match, "(?=$|\\/$)");
+}],
+// trailing wildcard
+[/(\^|\\\/)?\\\*$/, function (_, p1) {
+ var prefix = p1
+ // '\^':
+ // '/*' does not match EMPTY
+ // '/*' does not match everything
+
+ // '\\\/':
+ // 'abc/*' does not match 'abc/'
+ ? "".concat(p1, "[^/]+") // 'a*' matches 'a'
+ // 'a*' matches 'aa'
+ : '[^/]*';
+ return "".concat(prefix, "(?=$|\\/$)");
+}]];
+
+// A simple cache, because an ignore rule only has only one certain meaning
+var regexCache = Object.create(null);
+
+// @param {pattern}
+var makeRegex = function makeRegex(pattern, ignoreCase) {
+ var source = regexCache[pattern];
+ if (!source) {
+ source = REPLACERS.reduce(function (prev, current) {
+ return prev.replace(current[0], current[1].bind(pattern));
+ }, pattern);
+ regexCache[pattern] = source;
+ }
+ return ignoreCase ? new RegExp(source, 'i') : new RegExp(source);
+};
+var isString = function isString(subject) {
+ return typeof subject === 'string';
+};
+
+// > A blank line matches no files, so it can serve as a separator for readability.
+var checkPattern = function checkPattern(pattern) {
+ return pattern && isString(pattern) && !REGEX_TEST_BLANK_LINE.test(pattern) && !REGEX_INVALID_TRAILING_BACKSLASH.test(pattern)
+
+ // > A line starting with # serves as a comment.
+ && pattern.indexOf('#') !== 0;
+};
+var splitPattern = function splitPattern(pattern) {
+ return pattern.split(REGEX_SPLITALL_CRLF);
+};
+var IgnoreRule = /*#__PURE__*/_createClass(function IgnoreRule(origin, pattern, negative, regex) {
+ _classCallCheck(this, IgnoreRule);
+ this.origin = origin;
+ this.pattern = pattern;
+ this.negative = negative;
+ this.regex = regex;
+});
+var createRule = function createRule(pattern, ignoreCase) {
+ var origin = pattern;
+ var negative = false;
+
+ // > An optional prefix "!" which negates the pattern;
+ if (pattern.indexOf('!') === 0) {
+ negative = true;
+ pattern = pattern.substr(1);
+ }
+ pattern = pattern
+ // > Put a backslash ("\") in front of the first "!" for patterns that
+ // > begin with a literal "!", for example, `"\!important!.txt"`.
+ .replace(REGEX_REPLACE_LEADING_EXCAPED_EXCLAMATION, '!')
+ // > Put a backslash ("\") in front of the first hash for patterns that
+ // > begin with a hash.
+ .replace(REGEX_REPLACE_LEADING_EXCAPED_HASH, '#');
+ var regex = makeRegex(pattern, ignoreCase);
+ return new IgnoreRule(origin, pattern, negative, regex);
+};
+var throwError = function throwError(message, Ctor) {
+ throw new Ctor(message);
+};
+var checkPath = function checkPath(path, originalPath, doThrow) {
+ if (!isString(path)) {
+ return doThrow("path must be a string, but got `".concat(originalPath, "`"), TypeError);
+ }
+
+ // We don't know if we should ignore EMPTY, so throw
+ if (!path) {
+ return doThrow("path must not be empty", TypeError);
+ }
+
+ // Check if it is a relative path
+ if (checkPath.isNotRelative(path)) {
+ var r = '`path.relative()`d';
+ return doThrow("path should be a ".concat(r, " string, but got \"").concat(originalPath, "\""), RangeError);
+ }
+ return true;
+};
+var isNotRelative = function isNotRelative(path) {
+ return REGEX_TEST_INVALID_PATH.test(path);
+};
+checkPath.isNotRelative = isNotRelative;
+checkPath.convert = function (p) {
+ return p;
+};
+var Ignore = /*#__PURE__*/function () {
+ function Ignore() {
+ var _ref = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {},
+ _ref$ignorecase = _ref.ignorecase,
+ ignorecase = _ref$ignorecase === void 0 ? true : _ref$ignorecase,
+ _ref$ignoreCase = _ref.ignoreCase,
+ ignoreCase = _ref$ignoreCase === void 0 ? ignorecase : _ref$ignoreCase,
+ _ref$allowRelativePat = _ref.allowRelativePaths,
+ allowRelativePaths = _ref$allowRelativePat === void 0 ? false : _ref$allowRelativePat;
+ _classCallCheck(this, Ignore);
+ define(this, KEY_IGNORE, true);
+ this._rules = [];
+ this._ignoreCase = ignoreCase;
+ this._allowRelativePaths = allowRelativePaths;
+ this._initCache();
+ }
+ _createClass(Ignore, [{
+ key: "_initCache",
+ value: function _initCache() {
+ this._ignoreCache = Object.create(null);
+ this._testCache = Object.create(null);
+ }
+ }, {
+ key: "_addPattern",
+ value: function _addPattern(pattern) {
+ // #32
+ if (pattern && pattern[KEY_IGNORE]) {
+ this._rules = this._rules.concat(pattern._rules);
+ this._added = true;
+ return;
+ }
+ if (checkPattern(pattern)) {
+ var rule = createRule(pattern, this._ignoreCase);
+ this._added = true;
+ this._rules.push(rule);
+ }
+ }
+
+ // @param {Array | string | Ignore} pattern
+ }, {
+ key: "add",
+ value: function add(pattern) {
+ this._added = false;
+ makeArray(isString(pattern) ? splitPattern(pattern) : pattern).forEach(this._addPattern, this);
+
+ // Some rules have just added to the ignore,
+ // making the behavior changed.
+ if (this._added) {
+ this._initCache();
+ }
+ return this;
+ }
+
+ // legacy
+ }, {
+ key: "addPattern",
+ value: function addPattern(pattern) {
+ return this.add(pattern);
+ }
+
+ // | ignored : unignored
+ // negative | 0:0 | 0:1 | 1:0 | 1:1
+ // -------- | ------- | ------- | ------- | --------
+ // 0 | TEST | TEST | SKIP | X
+ // 1 | TESTIF | SKIP | TEST | X
+
+ // - SKIP: always skip
+ // - TEST: always test
+ // - TESTIF: only test if checkUnignored
+ // - X: that never happen
+
+ // @param {boolean} whether should check if the path is unignored,
+ // setting `checkUnignored` to `false` could reduce additional
+ // path matching.
+
+ // @returns {TestResult} true if a file is ignored
+ }, {
+ key: "_testOne",
+ value: function _testOne(path, checkUnignored) {
+ var ignored = false;
+ var unignored = false;
+ this._rules.forEach(function (rule) {
+ var negative = rule.negative;
+ if (unignored === negative && ignored !== unignored || negative && !ignored && !unignored && !checkUnignored) {
+ return;
+ }
+ var matched = rule.regex.test(path);
+ if (matched) {
+ ignored = !negative;
+ unignored = negative;
+ }
+ });
+ return {
+ ignored: ignored,
+ unignored: unignored
+ };
+ }
+
+ // @returns {TestResult}
+ }, {
+ key: "_test",
+ value: function _test(originalPath, cache, checkUnignored, slices) {
+ var path = originalPath
+ // Supports nullable path
+ && checkPath.convert(originalPath);
+ checkPath(path, originalPath, this._allowRelativePaths ? RETURN_FALSE : throwError);
+ return this._t(path, cache, checkUnignored, slices);
+ }
+ }, {
+ key: "_t",
+ value: function _t(path, cache, checkUnignored, slices) {
+ if (path in cache) {
+ return cache[path];
+ }
+ if (!slices) {
+ // path/to/a.js
+ // ['path', 'to', 'a.js']
+ slices = path.split(SLASH);
+ }
+ slices.pop();
+
+ // If the path has no parent directory, just test it
+ if (!slices.length) {
+ return cache[path] = this._testOne(path, checkUnignored);
+ }
+ var parent = this._t(slices.join(SLASH) + SLASH, cache, checkUnignored, slices);
+
+ // If the path contains a parent directory, check the parent first
+ return cache[path] = parent.ignored
+ // > It is not possible to re-include a file if a parent directory of
+ // > that file is excluded.
+ ? parent : this._testOne(path, checkUnignored);
+ }
+ }, {
+ key: "ignores",
+ value: function ignores(path) {
+ return this._test(path, this._ignoreCache, false).ignored;
+ }
+ }, {
+ key: "createFilter",
+ value: function createFilter() {
+ var _this = this;
+ return function (path) {
+ return !_this.ignores(path);
+ };
+ }
+ }, {
+ key: "filter",
+ value: function filter(paths) {
+ return makeArray(paths).filter(this.createFilter());
+ }
+
+ // @returns {TestResult}
+ }, {
+ key: "test",
+ value: function test(path) {
+ return this._test(path, this._testCache, true);
+ }
+ }]);
+ return Ignore;
+}();
+var factory = function factory(options) {
+ return new Ignore(options);
+};
+var isPathValid = function isPathValid(path) {
+ return checkPath(path && checkPath.convert(path), path, RETURN_FALSE);
+};
+factory.isPathValid = isPathValid;
+
+// Fixes typescript
+factory["default"] = factory;
+module.exports = factory;
+
+// Windows
+// --------------------------------------------------------------
+/* istanbul ignore if */
+if (
+// Detect `process` so that it can run in browsers.
+typeof process !== 'undefined' && (process.env && process.env.IGNORE_TEST_WIN32 || process.platform === 'win32')) {
+ /* eslint no-control-regex: "off" */
+ var makePosix = function makePosix(str) {
+ return /^\\\\\?\\/.test(str) || /[\0-\x1F"<>\|]+/.test(str) ? str : str.replace(/\\/g, '/');
+ };
+ checkPath.convert = makePosix;
+
+ // 'C:\\foo' <- 'C:\\foo' has been converted to 'C:/'
+ // 'd:\\foo'
+ var REGIX_IS_WINDOWS_PATH_ABSOLUTE = /^[a-z]:\//i;
+ checkPath.isNotRelative = function (path) {
+ return REGIX_IS_WINDOWS_PATH_ABSOLUTE.test(path) || isNotRelative(path);
+ };
+}
diff --git a/node_modules/ignore/package.json b/node_modules/ignore/package.json
new file mode 100644
index 0000000..fe5498d
--- /dev/null
+++ b/node_modules/ignore/package.json
@@ -0,0 +1,73 @@
+{
+ "name": "ignore",
+ "version": "5.2.4",
+ "description": "Ignore is a manager and filter for .gitignore rules, the one used by eslint, gitbook and many others.",
+ "files": [
+ "legacy.js",
+ "index.js",
+ "index.d.ts",
+ "LICENSE-MIT"
+ ],
+ "scripts": {
+ "prepublishOnly": "npm run build",
+ "build": "babel -o legacy.js index.js",
+ "test:lint": "eslint .",
+ "test:tsc": "tsc ./test/ts/simple.ts --lib ES6",
+ "test:ts": "node ./test/ts/simple.js",
+ "tap": "tap --reporter classic",
+ "test:git": "npm run tap test/git-check-ignore.js",
+ "test:ignore": "npm run tap test/ignore.js",
+ "test:others": "npm run tap test/others.js",
+ "test:cases": "npm run tap test/*.js -- --coverage",
+ "test:no-coverage": "npm run tap test/*.js -- --no-check-coverage",
+ "test:only": "npm run test:lint && npm run test:tsc && npm run test:ts && npm run test:cases",
+ "test": "npm run test:only",
+ "test:win32": "IGNORE_TEST_WIN32=1 npm run test",
+ "report": "tap --coverage-report=html",
+ "posttest": "npm run report && codecov"
+ },
+ "repository": {
+ "type": "git",
+ "url": "git@github.com:kaelzhang/node-ignore.git"
+ },
+ "keywords": [
+ "ignore",
+ ".gitignore",
+ "gitignore",
+ "npmignore",
+ "rules",
+ "manager",
+ "filter",
+ "regexp",
+ "regex",
+ "fnmatch",
+ "glob",
+ "asterisks",
+ "regular-expression"
+ ],
+ "author": "kael",
+ "license": "MIT",
+ "bugs": {
+ "url": "https://github.com/kaelzhang/node-ignore/issues"
+ },
+ "devDependencies": {
+ "@babel/cli": "^7.19.3",
+ "@babel/core": "^7.20.5",
+ "@babel/preset-env": "^7.20.2",
+ "codecov": "^3.8.2",
+ "debug": "^4.3.4",
+ "eslint": "^8.30.0",
+ "eslint-config-ostai": "^3.0.0",
+ "eslint-plugin-import": "^2.26.0",
+ "mkdirp": "^1.0.4",
+ "pre-suf": "^1.1.1",
+ "rimraf": "^3.0.2",
+ "spawn-sync": "^2.0.0",
+ "tap": "^16.3.2",
+ "tmp": "0.2.1",
+ "typescript": "^4.9.4"
+ },
+ "engines": {
+ "node": ">= 4"
+ }
+}
diff --git a/node_modules/is-binary-path/index.d.ts b/node_modules/is-binary-path/index.d.ts
new file mode 100644
index 0000000..19dcd43
--- /dev/null
+++ b/node_modules/is-binary-path/index.d.ts
@@ -0,0 +1,17 @@
+/**
+Check if a file path is a binary file.
+
+@example
+```
+import isBinaryPath = require('is-binary-path');
+
+isBinaryPath('source/unicorn.png');
+//=> true
+
+isBinaryPath('source/unicorn.txt');
+//=> false
+```
+*/
+declare function isBinaryPath(filePath: string): boolean;
+
+export = isBinaryPath;
diff --git a/node_modules/is-binary-path/index.js b/node_modules/is-binary-path/index.js
new file mode 100644
index 0000000..ef7548c
--- /dev/null
+++ b/node_modules/is-binary-path/index.js
@@ -0,0 +1,7 @@
+'use strict';
+const path = require('path');
+const binaryExtensions = require('binary-extensions');
+
+const extensions = new Set(binaryExtensions);
+
+module.exports = filePath => extensions.has(path.extname(filePath).slice(1).toLowerCase());
diff --git a/node_modules/is-binary-path/license b/node_modules/is-binary-path/license
new file mode 100644
index 0000000..401b1c7
--- /dev/null
+++ b/node_modules/is-binary-path/license
@@ -0,0 +1,9 @@
+MIT License
+
+Copyright (c) 2019 Sindre Sorhus (https://sindresorhus.com), Paul Miller (https://paulmillr.com)
+
+Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
diff --git a/node_modules/is-binary-path/package.json b/node_modules/is-binary-path/package.json
new file mode 100644
index 0000000..a8d005a
--- /dev/null
+++ b/node_modules/is-binary-path/package.json
@@ -0,0 +1,40 @@
+{
+ "name": "is-binary-path",
+ "version": "2.1.0",
+ "description": "Check if a file path is a binary file",
+ "license": "MIT",
+ "repository": "sindresorhus/is-binary-path",
+ "author": {
+ "name": "Sindre Sorhus",
+ "email": "sindresorhus@gmail.com",
+ "url": "sindresorhus.com"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "scripts": {
+ "test": "xo && ava && tsd"
+ },
+ "files": [
+ "index.js",
+ "index.d.ts"
+ ],
+ "keywords": [
+ "binary",
+ "extensions",
+ "extension",
+ "file",
+ "path",
+ "check",
+ "detect",
+ "is"
+ ],
+ "dependencies": {
+ "binary-extensions": "^2.0.0"
+ },
+ "devDependencies": {
+ "ava": "^1.4.1",
+ "tsd": "^0.7.2",
+ "xo": "^0.24.0"
+ }
+}
diff --git a/node_modules/is-binary-path/readme.md b/node_modules/is-binary-path/readme.md
new file mode 100644
index 0000000..b4ab025
--- /dev/null
+++ b/node_modules/is-binary-path/readme.md
@@ -0,0 +1,34 @@
+# is-binary-path [![Build Status](https://travis-ci.org/sindresorhus/is-binary-path.svg?branch=master)](https://travis-ci.org/sindresorhus/is-binary-path)
+
+> Check if a file path is a binary file
+
+
+## Install
+
+```
+$ npm install is-binary-path
+```
+
+
+## Usage
+
+```js
+const isBinaryPath = require('is-binary-path');
+
+isBinaryPath('source/unicorn.png');
+//=> true
+
+isBinaryPath('source/unicorn.txt');
+//=> false
+```
+
+
+## Related
+
+- [binary-extensions](https://github.com/sindresorhus/binary-extensions) - List of binary file extensions
+- [is-text-path](https://github.com/sindresorhus/is-text-path) - Check if a filepath is a text file
+
+
+## License
+
+MIT © [Sindre Sorhus](https://sindresorhus.com), [Paul Miller](https://paulmillr.com)
diff --git a/node_modules/is-extglob/LICENSE b/node_modules/is-extglob/LICENSE
new file mode 100644
index 0000000..842218c
--- /dev/null
+++ b/node_modules/is-extglob/LICENSE
@@ -0,0 +1,21 @@
+The MIT License (MIT)
+
+Copyright (c) 2014-2016, Jon Schlinkert
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.
diff --git a/node_modules/is-extglob/README.md b/node_modules/is-extglob/README.md
new file mode 100644
index 0000000..0416af5
--- /dev/null
+++ b/node_modules/is-extglob/README.md
@@ -0,0 +1,107 @@
+# is-extglob [![NPM version](https://img.shields.io/npm/v/is-extglob.svg?style=flat)](https://www.npmjs.com/package/is-extglob) [![NPM downloads](https://img.shields.io/npm/dm/is-extglob.svg?style=flat)](https://npmjs.org/package/is-extglob) [![Build Status](https://img.shields.io/travis/jonschlinkert/is-extglob.svg?style=flat)](https://travis-ci.org/jonschlinkert/is-extglob)
+
+> Returns true if a string has an extglob.
+
+## Install
+
+Install with [npm](https://www.npmjs.com/):
+
+```sh
+$ npm install --save is-extglob
+```
+
+## Usage
+
+```js
+var isExtglob = require('is-extglob');
+```
+
+**True**
+
+```js
+isExtglob('?(abc)');
+isExtglob('@(abc)');
+isExtglob('!(abc)');
+isExtglob('*(abc)');
+isExtglob('+(abc)');
+```
+
+**False**
+
+Escaped extglobs:
+
+```js
+isExtglob('\\?(abc)');
+isExtglob('\\@(abc)');
+isExtglob('\\!(abc)');
+isExtglob('\\*(abc)');
+isExtglob('\\+(abc)');
+```
+
+Everything else...
+
+```js
+isExtglob('foo.js');
+isExtglob('!foo.js');
+isExtglob('*.js');
+isExtglob('**/abc.js');
+isExtglob('abc/*.js');
+isExtglob('abc/(aaa|bbb).js');
+isExtglob('abc/[a-z].js');
+isExtglob('abc/{a,b}.js');
+isExtglob('abc/?.js');
+isExtglob('abc.js');
+isExtglob('abc/def/ghi.js');
+```
+
+## History
+
+**v2.0**
+
+Adds support for escaping. Escaped exglobs no longer return true.
+
+## About
+
+### Related projects
+
+* [has-glob](https://www.npmjs.com/package/has-glob): Returns `true` if an array has a glob pattern. | [homepage](https://github.com/jonschlinkert/has-glob "Returns `true` if an array has a glob pattern.")
+* [is-glob](https://www.npmjs.com/package/is-glob): Returns `true` if the given string looks like a glob pattern or an extglob pattern… [more](https://github.com/jonschlinkert/is-glob) | [homepage](https://github.com/jonschlinkert/is-glob "Returns `true` if the given string looks like a glob pattern or an extglob pattern. This makes it easy to create code that only uses external modules like node-glob when necessary, resulting in much faster code execution and initialization time, and a bet")
+* [micromatch](https://www.npmjs.com/package/micromatch): Glob matching for javascript/node.js. A drop-in replacement and faster alternative to minimatch and multimatch. | [homepage](https://github.com/jonschlinkert/micromatch "Glob matching for javascript/node.js. A drop-in replacement and faster alternative to minimatch and multimatch.")
+
+### Contributing
+
+Pull requests and stars are always welcome. For bugs and feature requests, [please create an issue](../../issues/new).
+
+### Building docs
+
+_(This document was generated by [verb-generate-readme](https://github.com/verbose/verb-generate-readme) (a [verb](https://github.com/verbose/verb) generator), please don't edit the readme directly. Any changes to the readme must be made in [.verb.md](.verb.md).)_
+
+To generate the readme and API documentation with [verb](https://github.com/verbose/verb):
+
+```sh
+$ npm install -g verb verb-generate-readme && verb
+```
+
+### Running tests
+
+Install dev dependencies:
+
+```sh
+$ npm install -d && npm test
+```
+
+### Author
+
+**Jon Schlinkert**
+
+* [github/jonschlinkert](https://github.com/jonschlinkert)
+* [twitter/jonschlinkert](http://twitter.com/jonschlinkert)
+
+### License
+
+Copyright © 2016, [Jon Schlinkert](https://github.com/jonschlinkert).
+Released under the [MIT license](https://github.com/jonschlinkert/is-extglob/blob/master/LICENSE).
+
+***
+
+_This file was generated by [verb-generate-readme](https://github.com/verbose/verb-generate-readme), v0.1.31, on October 12, 2016._
\ No newline at end of file
diff --git a/node_modules/is-extglob/index.js b/node_modules/is-extglob/index.js
new file mode 100644
index 0000000..c1d986f
--- /dev/null
+++ b/node_modules/is-extglob/index.js
@@ -0,0 +1,20 @@
+/*!
+ * is-extglob
+ *
+ * Copyright (c) 2014-2016, Jon Schlinkert.
+ * Licensed under the MIT License.
+ */
+
+module.exports = function isExtglob(str) {
+ if (typeof str !== 'string' || str === '') {
+ return false;
+ }
+
+ var match;
+ while ((match = /(\\).|([@?!+*]\(.*\))/g.exec(str))) {
+ if (match[2]) return true;
+ str = str.slice(match.index + match[0].length);
+ }
+
+ return false;
+};
diff --git a/node_modules/is-extglob/package.json b/node_modules/is-extglob/package.json
new file mode 100644
index 0000000..7a90836
--- /dev/null
+++ b/node_modules/is-extglob/package.json
@@ -0,0 +1,69 @@
+{
+ "name": "is-extglob",
+ "description": "Returns true if a string has an extglob.",
+ "version": "2.1.1",
+ "homepage": "https://github.com/jonschlinkert/is-extglob",
+ "author": "Jon Schlinkert (https://github.com/jonschlinkert)",
+ "repository": "jonschlinkert/is-extglob",
+ "bugs": {
+ "url": "https://github.com/jonschlinkert/is-extglob/issues"
+ },
+ "license": "MIT",
+ "files": [
+ "index.js"
+ ],
+ "main": "index.js",
+ "engines": {
+ "node": ">=0.10.0"
+ },
+ "scripts": {
+ "test": "mocha"
+ },
+ "devDependencies": {
+ "gulp-format-md": "^0.1.10",
+ "mocha": "^3.0.2"
+ },
+ "keywords": [
+ "bash",
+ "braces",
+ "check",
+ "exec",
+ "expression",
+ "extglob",
+ "glob",
+ "globbing",
+ "globstar",
+ "is",
+ "match",
+ "matches",
+ "pattern",
+ "regex",
+ "regular",
+ "string",
+ "test"
+ ],
+ "verb": {
+ "toc": false,
+ "layout": "default",
+ "tasks": [
+ "readme"
+ ],
+ "plugins": [
+ "gulp-format-md"
+ ],
+ "related": {
+ "list": [
+ "has-glob",
+ "is-glob",
+ "micromatch"
+ ]
+ },
+ "reflinks": [
+ "verb",
+ "verb-generate-readme"
+ ],
+ "lint": {
+ "reflinks": true
+ }
+ }
+}
diff --git a/node_modules/is-fullwidth-code-point/index.d.ts b/node_modules/is-fullwidth-code-point/index.d.ts
new file mode 100644
index 0000000..729d202
--- /dev/null
+++ b/node_modules/is-fullwidth-code-point/index.d.ts
@@ -0,0 +1,17 @@
+/**
+Check if the character represented by a given [Unicode code point](https://en.wikipedia.org/wiki/Code_point) is [fullwidth](https://en.wikipedia.org/wiki/Halfwidth_and_fullwidth_forms).
+
+@param codePoint - The [code point](https://en.wikipedia.org/wiki/Code_point) of a character.
+
+@example
+```
+import isFullwidthCodePoint from 'is-fullwidth-code-point';
+
+isFullwidthCodePoint('谢'.codePointAt(0));
+//=> true
+
+isFullwidthCodePoint('a'.codePointAt(0));
+//=> false
+```
+*/
+export default function isFullwidthCodePoint(codePoint: number): boolean;
diff --git a/node_modules/is-fullwidth-code-point/index.js b/node_modules/is-fullwidth-code-point/index.js
new file mode 100644
index 0000000..671f97f
--- /dev/null
+++ b/node_modules/is-fullwidth-code-point/index.js
@@ -0,0 +1,50 @@
+/* eslint-disable yoda */
+'use strict';
+
+const isFullwidthCodePoint = codePoint => {
+ if (Number.isNaN(codePoint)) {
+ return false;
+ }
+
+ // Code points are derived from:
+ // http://www.unix.org/Public/UNIDATA/EastAsianWidth.txt
+ if (
+ codePoint >= 0x1100 && (
+ codePoint <= 0x115F || // Hangul Jamo
+ codePoint === 0x2329 || // LEFT-POINTING ANGLE BRACKET
+ codePoint === 0x232A || // RIGHT-POINTING ANGLE BRACKET
+ // CJK Radicals Supplement .. Enclosed CJK Letters and Months
+ (0x2E80 <= codePoint && codePoint <= 0x3247 && codePoint !== 0x303F) ||
+ // Enclosed CJK Letters and Months .. CJK Unified Ideographs Extension A
+ (0x3250 <= codePoint && codePoint <= 0x4DBF) ||
+ // CJK Unified Ideographs .. Yi Radicals
+ (0x4E00 <= codePoint && codePoint <= 0xA4C6) ||
+ // Hangul Jamo Extended-A
+ (0xA960 <= codePoint && codePoint <= 0xA97C) ||
+ // Hangul Syllables
+ (0xAC00 <= codePoint && codePoint <= 0xD7A3) ||
+ // CJK Compatibility Ideographs
+ (0xF900 <= codePoint && codePoint <= 0xFAFF) ||
+ // Vertical Forms
+ (0xFE10 <= codePoint && codePoint <= 0xFE19) ||
+ // CJK Compatibility Forms .. Small Form Variants
+ (0xFE30 <= codePoint && codePoint <= 0xFE6B) ||
+ // Halfwidth and Fullwidth Forms
+ (0xFF01 <= codePoint && codePoint <= 0xFF60) ||
+ (0xFFE0 <= codePoint && codePoint <= 0xFFE6) ||
+ // Kana Supplement
+ (0x1B000 <= codePoint && codePoint <= 0x1B001) ||
+ // Enclosed Ideographic Supplement
+ (0x1F200 <= codePoint && codePoint <= 0x1F251) ||
+ // CJK Unified Ideographs Extension B .. Tertiary Ideographic Plane
+ (0x20000 <= codePoint && codePoint <= 0x3FFFD)
+ )
+ ) {
+ return true;
+ }
+
+ return false;
+};
+
+module.exports = isFullwidthCodePoint;
+module.exports.default = isFullwidthCodePoint;
diff --git a/node_modules/is-fullwidth-code-point/license b/node_modules/is-fullwidth-code-point/license
new file mode 100644
index 0000000..e7af2f7
--- /dev/null
+++ b/node_modules/is-fullwidth-code-point/license
@@ -0,0 +1,9 @@
+MIT License
+
+Copyright (c) Sindre Sorhus (sindresorhus.com)
+
+Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
diff --git a/node_modules/is-fullwidth-code-point/package.json b/node_modules/is-fullwidth-code-point/package.json
new file mode 100644
index 0000000..2137e88
--- /dev/null
+++ b/node_modules/is-fullwidth-code-point/package.json
@@ -0,0 +1,42 @@
+{
+ "name": "is-fullwidth-code-point",
+ "version": "3.0.0",
+ "description": "Check if the character represented by a given Unicode code point is fullwidth",
+ "license": "MIT",
+ "repository": "sindresorhus/is-fullwidth-code-point",
+ "author": {
+ "name": "Sindre Sorhus",
+ "email": "sindresorhus@gmail.com",
+ "url": "sindresorhus.com"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "scripts": {
+ "test": "xo && ava && tsd-check"
+ },
+ "files": [
+ "index.js",
+ "index.d.ts"
+ ],
+ "keywords": [
+ "fullwidth",
+ "full-width",
+ "full",
+ "width",
+ "unicode",
+ "character",
+ "string",
+ "codepoint",
+ "code",
+ "point",
+ "is",
+ "detect",
+ "check"
+ ],
+ "devDependencies": {
+ "ava": "^1.3.1",
+ "tsd-check": "^0.5.0",
+ "xo": "^0.24.0"
+ }
+}
diff --git a/node_modules/is-fullwidth-code-point/readme.md b/node_modules/is-fullwidth-code-point/readme.md
new file mode 100644
index 0000000..4236bba
--- /dev/null
+++ b/node_modules/is-fullwidth-code-point/readme.md
@@ -0,0 +1,39 @@
+# is-fullwidth-code-point [![Build Status](https://travis-ci.org/sindresorhus/is-fullwidth-code-point.svg?branch=master)](https://travis-ci.org/sindresorhus/is-fullwidth-code-point)
+
+> Check if the character represented by a given [Unicode code point](https://en.wikipedia.org/wiki/Code_point) is [fullwidth](https://en.wikipedia.org/wiki/Halfwidth_and_fullwidth_forms)
+
+
+## Install
+
+```
+$ npm install is-fullwidth-code-point
+```
+
+
+## Usage
+
+```js
+const isFullwidthCodePoint = require('is-fullwidth-code-point');
+
+isFullwidthCodePoint('谢'.codePointAt(0));
+//=> true
+
+isFullwidthCodePoint('a'.codePointAt(0));
+//=> false
+```
+
+
+## API
+
+### isFullwidthCodePoint(codePoint)
+
+#### codePoint
+
+Type: `number`
+
+The [code point](https://en.wikipedia.org/wiki/Code_point) of a character.
+
+
+## License
+
+MIT © [Sindre Sorhus](https://sindresorhus.com)
diff --git a/node_modules/is-glob/LICENSE b/node_modules/is-glob/LICENSE
new file mode 100644
index 0000000..3f2eca1
--- /dev/null
+++ b/node_modules/is-glob/LICENSE
@@ -0,0 +1,21 @@
+The MIT License (MIT)
+
+Copyright (c) 2014-2017, Jon Schlinkert.
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.
diff --git a/node_modules/is-glob/README.md b/node_modules/is-glob/README.md
new file mode 100644
index 0000000..740724b
--- /dev/null
+++ b/node_modules/is-glob/README.md
@@ -0,0 +1,206 @@
+# is-glob [![NPM version](https://img.shields.io/npm/v/is-glob.svg?style=flat)](https://www.npmjs.com/package/is-glob) [![NPM monthly downloads](https://img.shields.io/npm/dm/is-glob.svg?style=flat)](https://npmjs.org/package/is-glob) [![NPM total downloads](https://img.shields.io/npm/dt/is-glob.svg?style=flat)](https://npmjs.org/package/is-glob) [![Build Status](https://img.shields.io/github/workflow/status/micromatch/is-glob/dev)](https://github.com/micromatch/is-glob/actions)
+
+> Returns `true` if the given string looks like a glob pattern or an extglob pattern. This makes it easy to create code that only uses external modules like node-glob when necessary, resulting in much faster code execution and initialization time, and a better user experience.
+
+Please consider following this project's author, [Jon Schlinkert](https://github.com/jonschlinkert), and consider starring the project to show your :heart: and support.
+
+## Install
+
+Install with [npm](https://www.npmjs.com/):
+
+```sh
+$ npm install --save is-glob
+```
+
+You might also be interested in [is-valid-glob](https://github.com/jonschlinkert/is-valid-glob) and [has-glob](https://github.com/jonschlinkert/has-glob).
+
+## Usage
+
+```js
+var isGlob = require('is-glob');
+```
+
+### Default behavior
+
+**True**
+
+Patterns that have glob characters or regex patterns will return `true`:
+
+```js
+isGlob('!foo.js');
+isGlob('*.js');
+isGlob('**/abc.js');
+isGlob('abc/*.js');
+isGlob('abc/(aaa|bbb).js');
+isGlob('abc/[a-z].js');
+isGlob('abc/{a,b}.js');
+//=> true
+```
+
+Extglobs
+
+```js
+isGlob('abc/@(a).js');
+isGlob('abc/!(a).js');
+isGlob('abc/+(a).js');
+isGlob('abc/*(a).js');
+isGlob('abc/?(a).js');
+//=> true
+```
+
+**False**
+
+Escaped globs or extglobs return `false`:
+
+```js
+isGlob('abc/\\@(a).js');
+isGlob('abc/\\!(a).js');
+isGlob('abc/\\+(a).js');
+isGlob('abc/\\*(a).js');
+isGlob('abc/\\?(a).js');
+isGlob('\\!foo.js');
+isGlob('\\*.js');
+isGlob('\\*\\*/abc.js');
+isGlob('abc/\\*.js');
+isGlob('abc/\\(aaa|bbb).js');
+isGlob('abc/\\[a-z].js');
+isGlob('abc/\\{a,b}.js');
+//=> false
+```
+
+Patterns that do not have glob patterns return `false`:
+
+```js
+isGlob('abc.js');
+isGlob('abc/def/ghi.js');
+isGlob('foo.js');
+isGlob('abc/@.js');
+isGlob('abc/+.js');
+isGlob('abc/?.js');
+isGlob();
+isGlob(null);
+//=> false
+```
+
+Arrays are also `false` (If you want to check if an array has a glob pattern, use [has-glob](https://github.com/jonschlinkert/has-glob)):
+
+```js
+isGlob(['**/*.js']);
+isGlob(['foo.js']);
+//=> false
+```
+
+### Option strict
+
+When `options.strict === false` the behavior is less strict in determining if a pattern is a glob. Meaning that
+some patterns that would return `false` may return `true`. This is done so that matching libraries like [micromatch](https://github.com/micromatch/micromatch) have a chance at determining if the pattern is a glob or not.
+
+**True**
+
+Patterns that have glob characters or regex patterns will return `true`:
+
+```js
+isGlob('!foo.js', {strict: false});
+isGlob('*.js', {strict: false});
+isGlob('**/abc.js', {strict: false});
+isGlob('abc/*.js', {strict: false});
+isGlob('abc/(aaa|bbb).js', {strict: false});
+isGlob('abc/[a-z].js', {strict: false});
+isGlob('abc/{a,b}.js', {strict: false});
+//=> true
+```
+
+Extglobs
+
+```js
+isGlob('abc/@(a).js', {strict: false});
+isGlob('abc/!(a).js', {strict: false});
+isGlob('abc/+(a).js', {strict: false});
+isGlob('abc/*(a).js', {strict: false});
+isGlob('abc/?(a).js', {strict: false});
+//=> true
+```
+
+**False**
+
+Escaped globs or extglobs return `false`:
+
+```js
+isGlob('\\!foo.js', {strict: false});
+isGlob('\\*.js', {strict: false});
+isGlob('\\*\\*/abc.js', {strict: false});
+isGlob('abc/\\*.js', {strict: false});
+isGlob('abc/\\(aaa|bbb).js', {strict: false});
+isGlob('abc/\\[a-z].js', {strict: false});
+isGlob('abc/\\{a,b}.js', {strict: false});
+//=> false
+```
+
+## About
+
+
+Contributing
+
+Pull requests and stars are always welcome. For bugs and feature requests, [please create an issue](../../issues/new).
+
+
+
+
+Running Tests
+
+Running and reviewing unit tests is a great way to get familiarized with a library and its API. You can install dependencies and run tests with the following command:
+
+```sh
+$ npm install && npm test
+```
+
+
+
+
+Building docs
+
+_(This project's readme.md is generated by [verb](https://github.com/verbose/verb-generate-readme), please don't edit the readme directly. Any changes to the readme must be made in the [.verb.md](.verb.md) readme template.)_
+
+To generate the readme, run the following command:
+
+```sh
+$ npm install -g verbose/verb#dev verb-generate-readme && verb
+```
+
+
+
+### Related projects
+
+You might also be interested in these projects:
+
+* [assemble](https://www.npmjs.com/package/assemble): Get the rocks out of your socks! Assemble makes you fast at creating web projects… [more](https://github.com/assemble/assemble) | [homepage](https://github.com/assemble/assemble "Get the rocks out of your socks! Assemble makes you fast at creating web projects. Assemble is used by thousands of projects for rapid prototyping, creating themes, scaffolds, boilerplates, e-books, UI components, API documentation, blogs, building websit")
+* [base](https://www.npmjs.com/package/base): Framework for rapidly creating high quality, server-side node.js applications, using plugins like building blocks | [homepage](https://github.com/node-base/base "Framework for rapidly creating high quality, server-side node.js applications, using plugins like building blocks")
+* [update](https://www.npmjs.com/package/update): Be scalable! Update is a new, open source developer framework and CLI for automating updates… [more](https://github.com/update/update) | [homepage](https://github.com/update/update "Be scalable! Update is a new, open source developer framework and CLI for automating updates of any kind in code projects.")
+* [verb](https://www.npmjs.com/package/verb): Documentation generator for GitHub projects. Verb is extremely powerful, easy to use, and is used… [more](https://github.com/verbose/verb) | [homepage](https://github.com/verbose/verb "Documentation generator for GitHub projects. Verb is extremely powerful, easy to use, and is used on hundreds of projects of all sizes to generate everything from API docs to readmes.")
+
+### Contributors
+
+| **Commits** | **Contributor** |
+| --- | --- |
+| 47 | [jonschlinkert](https://github.com/jonschlinkert) |
+| 5 | [doowb](https://github.com/doowb) |
+| 1 | [phated](https://github.com/phated) |
+| 1 | [danhper](https://github.com/danhper) |
+| 1 | [paulmillr](https://github.com/paulmillr) |
+
+### Author
+
+**Jon Schlinkert**
+
+* [GitHub Profile](https://github.com/jonschlinkert)
+* [Twitter Profile](https://twitter.com/jonschlinkert)
+* [LinkedIn Profile](https://linkedin.com/in/jonschlinkert)
+
+### License
+
+Copyright © 2019, [Jon Schlinkert](https://github.com/jonschlinkert).
+Released under the [MIT License](LICENSE).
+
+***
+
+_This file was generated by [verb-generate-readme](https://github.com/verbose/verb-generate-readme), v0.8.0, on March 27, 2019._
\ No newline at end of file
diff --git a/node_modules/is-glob/index.js b/node_modules/is-glob/index.js
new file mode 100644
index 0000000..620f563
--- /dev/null
+++ b/node_modules/is-glob/index.js
@@ -0,0 +1,150 @@
+/*!
+ * is-glob
+ *
+ * Copyright (c) 2014-2017, Jon Schlinkert.
+ * Released under the MIT License.
+ */
+
+var isExtglob = require('is-extglob');
+var chars = { '{': '}', '(': ')', '[': ']'};
+var strictCheck = function(str) {
+ if (str[0] === '!') {
+ return true;
+ }
+ var index = 0;
+ var pipeIndex = -2;
+ var closeSquareIndex = -2;
+ var closeCurlyIndex = -2;
+ var closeParenIndex = -2;
+ var backSlashIndex = -2;
+ while (index < str.length) {
+ if (str[index] === '*') {
+ return true;
+ }
+
+ if (str[index + 1] === '?' && /[\].+)]/.test(str[index])) {
+ return true;
+ }
+
+ if (closeSquareIndex !== -1 && str[index] === '[' && str[index + 1] !== ']') {
+ if (closeSquareIndex < index) {
+ closeSquareIndex = str.indexOf(']', index);
+ }
+ if (closeSquareIndex > index) {
+ if (backSlashIndex === -1 || backSlashIndex > closeSquareIndex) {
+ return true;
+ }
+ backSlashIndex = str.indexOf('\\', index);
+ if (backSlashIndex === -1 || backSlashIndex > closeSquareIndex) {
+ return true;
+ }
+ }
+ }
+
+ if (closeCurlyIndex !== -1 && str[index] === '{' && str[index + 1] !== '}') {
+ closeCurlyIndex = str.indexOf('}', index);
+ if (closeCurlyIndex > index) {
+ backSlashIndex = str.indexOf('\\', index);
+ if (backSlashIndex === -1 || backSlashIndex > closeCurlyIndex) {
+ return true;
+ }
+ }
+ }
+
+ if (closeParenIndex !== -1 && str[index] === '(' && str[index + 1] === '?' && /[:!=]/.test(str[index + 2]) && str[index + 3] !== ')') {
+ closeParenIndex = str.indexOf(')', index);
+ if (closeParenIndex > index) {
+ backSlashIndex = str.indexOf('\\', index);
+ if (backSlashIndex === -1 || backSlashIndex > closeParenIndex) {
+ return true;
+ }
+ }
+ }
+
+ if (pipeIndex !== -1 && str[index] === '(' && str[index + 1] !== '|') {
+ if (pipeIndex < index) {
+ pipeIndex = str.indexOf('|', index);
+ }
+ if (pipeIndex !== -1 && str[pipeIndex + 1] !== ')') {
+ closeParenIndex = str.indexOf(')', pipeIndex);
+ if (closeParenIndex > pipeIndex) {
+ backSlashIndex = str.indexOf('\\', pipeIndex);
+ if (backSlashIndex === -1 || backSlashIndex > closeParenIndex) {
+ return true;
+ }
+ }
+ }
+ }
+
+ if (str[index] === '\\') {
+ var open = str[index + 1];
+ index += 2;
+ var close = chars[open];
+
+ if (close) {
+ var n = str.indexOf(close, index);
+ if (n !== -1) {
+ index = n + 1;
+ }
+ }
+
+ if (str[index] === '!') {
+ return true;
+ }
+ } else {
+ index++;
+ }
+ }
+ return false;
+};
+
+var relaxedCheck = function(str) {
+ if (str[0] === '!') {
+ return true;
+ }
+ var index = 0;
+ while (index < str.length) {
+ if (/[*?{}()[\]]/.test(str[index])) {
+ return true;
+ }
+
+ if (str[index] === '\\') {
+ var open = str[index + 1];
+ index += 2;
+ var close = chars[open];
+
+ if (close) {
+ var n = str.indexOf(close, index);
+ if (n !== -1) {
+ index = n + 1;
+ }
+ }
+
+ if (str[index] === '!') {
+ return true;
+ }
+ } else {
+ index++;
+ }
+ }
+ return false;
+};
+
+module.exports = function isGlob(str, options) {
+ if (typeof str !== 'string' || str === '') {
+ return false;
+ }
+
+ if (isExtglob(str)) {
+ return true;
+ }
+
+ var check = strictCheck;
+
+ // optionally relax check
+ if (options && options.strict === false) {
+ check = relaxedCheck;
+ }
+
+ return check(str);
+};
diff --git a/node_modules/is-glob/package.json b/node_modules/is-glob/package.json
new file mode 100644
index 0000000..858af03
--- /dev/null
+++ b/node_modules/is-glob/package.json
@@ -0,0 +1,81 @@
+{
+ "name": "is-glob",
+ "description": "Returns `true` if the given string looks like a glob pattern or an extglob pattern. This makes it easy to create code that only uses external modules like node-glob when necessary, resulting in much faster code execution and initialization time, and a better user experience.",
+ "version": "4.0.3",
+ "homepage": "https://github.com/micromatch/is-glob",
+ "author": "Jon Schlinkert (https://github.com/jonschlinkert)",
+ "contributors": [
+ "Brian Woodward (https://twitter.com/doowb)",
+ "Daniel Perez (https://tuvistavie.com)",
+ "Jon Schlinkert (http://twitter.com/jonschlinkert)"
+ ],
+ "repository": "micromatch/is-glob",
+ "bugs": {
+ "url": "https://github.com/micromatch/is-glob/issues"
+ },
+ "license": "MIT",
+ "files": [
+ "index.js"
+ ],
+ "main": "index.js",
+ "engines": {
+ "node": ">=0.10.0"
+ },
+ "scripts": {
+ "test": "mocha && node benchmark.js"
+ },
+ "dependencies": {
+ "is-extglob": "^2.1.1"
+ },
+ "devDependencies": {
+ "gulp-format-md": "^0.1.10",
+ "mocha": "^3.0.2"
+ },
+ "keywords": [
+ "bash",
+ "braces",
+ "check",
+ "exec",
+ "expression",
+ "extglob",
+ "glob",
+ "globbing",
+ "globstar",
+ "is",
+ "match",
+ "matches",
+ "pattern",
+ "regex",
+ "regular",
+ "string",
+ "test"
+ ],
+ "verb": {
+ "layout": "default",
+ "plugins": [
+ "gulp-format-md"
+ ],
+ "related": {
+ "list": [
+ "assemble",
+ "base",
+ "update",
+ "verb"
+ ]
+ },
+ "reflinks": [
+ "assemble",
+ "bach",
+ "base",
+ "composer",
+ "gulp",
+ "has-glob",
+ "is-valid-glob",
+ "micromatch",
+ "npm",
+ "scaffold",
+ "verb",
+ "vinyl"
+ ]
+ }
+}
diff --git a/node_modules/is-number/LICENSE b/node_modules/is-number/LICENSE
new file mode 100644
index 0000000..9af4a67
--- /dev/null
+++ b/node_modules/is-number/LICENSE
@@ -0,0 +1,21 @@
+The MIT License (MIT)
+
+Copyright (c) 2014-present, Jon Schlinkert.
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.
diff --git a/node_modules/is-number/README.md b/node_modules/is-number/README.md
new file mode 100644
index 0000000..eb8149e
--- /dev/null
+++ b/node_modules/is-number/README.md
@@ -0,0 +1,187 @@
+# is-number [![NPM version](https://img.shields.io/npm/v/is-number.svg?style=flat)](https://www.npmjs.com/package/is-number) [![NPM monthly downloads](https://img.shields.io/npm/dm/is-number.svg?style=flat)](https://npmjs.org/package/is-number) [![NPM total downloads](https://img.shields.io/npm/dt/is-number.svg?style=flat)](https://npmjs.org/package/is-number) [![Linux Build Status](https://img.shields.io/travis/jonschlinkert/is-number.svg?style=flat&label=Travis)](https://travis-ci.org/jonschlinkert/is-number)
+
+> Returns true if the value is a finite number.
+
+Please consider following this project's author, [Jon Schlinkert](https://github.com/jonschlinkert), and consider starring the project to show your :heart: and support.
+
+## Install
+
+Install with [npm](https://www.npmjs.com/):
+
+```sh
+$ npm install --save is-number
+```
+
+## Why is this needed?
+
+In JavaScript, it's not always as straightforward as it should be to reliably check if a value is a number. It's common for devs to use `+`, `-`, or `Number()` to cast a string value to a number (for example, when values are returned from user input, regex matches, parsers, etc). But there are many non-intuitive edge cases that yield unexpected results:
+
+```js
+console.log(+[]); //=> 0
+console.log(+''); //=> 0
+console.log(+' '); //=> 0
+console.log(typeof NaN); //=> 'number'
+```
+
+This library offers a performant way to smooth out edge cases like these.
+
+## Usage
+
+```js
+const isNumber = require('is-number');
+```
+
+See the [tests](./test.js) for more examples.
+
+### true
+
+```js
+isNumber(5e3); // true
+isNumber(0xff); // true
+isNumber(-1.1); // true
+isNumber(0); // true
+isNumber(1); // true
+isNumber(1.1); // true
+isNumber(10); // true
+isNumber(10.10); // true
+isNumber(100); // true
+isNumber('-1.1'); // true
+isNumber('0'); // true
+isNumber('012'); // true
+isNumber('0xff'); // true
+isNumber('1'); // true
+isNumber('1.1'); // true
+isNumber('10'); // true
+isNumber('10.10'); // true
+isNumber('100'); // true
+isNumber('5e3'); // true
+isNumber(parseInt('012')); // true
+isNumber(parseFloat('012')); // true
+```
+
+### False
+
+Everything else is false, as you would expect:
+
+```js
+isNumber(Infinity); // false
+isNumber(NaN); // false
+isNumber(null); // false
+isNumber(undefined); // false
+isNumber(''); // false
+isNumber(' '); // false
+isNumber('foo'); // false
+isNumber([1]); // false
+isNumber([]); // false
+isNumber(function () {}); // false
+isNumber({}); // false
+```
+
+## Release history
+
+### 7.0.0
+
+* Refactor. Now uses `.isFinite` if it exists.
+* Performance is about the same as v6.0 when the value is a string or number. But it's now 3x-4x faster when the value is not a string or number.
+
+### 6.0.0
+
+* Optimizations, thanks to @benaadams.
+
+### 5.0.0
+
+**Breaking changes**
+
+* removed support for `instanceof Number` and `instanceof String`
+
+## Benchmarks
+
+As with all benchmarks, take these with a grain of salt. See the [benchmarks](./benchmark/index.js) for more detail.
+
+```
+# all
+v7.0 x 413,222 ops/sec ±2.02% (86 runs sampled)
+v6.0 x 111,061 ops/sec ±1.29% (85 runs sampled)
+parseFloat x 317,596 ops/sec ±1.36% (86 runs sampled)
+fastest is 'v7.0'
+
+# string
+v7.0 x 3,054,496 ops/sec ±1.05% (89 runs sampled)
+v6.0 x 2,957,781 ops/sec ±0.98% (88 runs sampled)
+parseFloat x 3,071,060 ops/sec ±1.13% (88 runs sampled)
+fastest is 'parseFloat,v7.0'
+
+# number
+v7.0 x 3,146,895 ops/sec ±0.89% (89 runs sampled)
+v6.0 x 3,214,038 ops/sec ±1.07% (89 runs sampled)
+parseFloat x 3,077,588 ops/sec ±1.07% (87 runs sampled)
+fastest is 'v6.0'
+```
+
+## About
+
+
+Contributing
+
+Pull requests and stars are always welcome. For bugs and feature requests, [please create an issue](../../issues/new).
+
+
+
+
+Running Tests
+
+Running and reviewing unit tests is a great way to get familiarized with a library and its API. You can install dependencies and run tests with the following command:
+
+```sh
+$ npm install && npm test
+```
+
+
+
+
+Building docs
+
+_(This project's readme.md is generated by [verb](https://github.com/verbose/verb-generate-readme), please don't edit the readme directly. Any changes to the readme must be made in the [.verb.md](.verb.md) readme template.)_
+
+To generate the readme, run the following command:
+
+```sh
+$ npm install -g verbose/verb#dev verb-generate-readme && verb
+```
+
+
+
+### Related projects
+
+You might also be interested in these projects:
+
+* [is-plain-object](https://www.npmjs.com/package/is-plain-object): Returns true if an object was created by the `Object` constructor. | [homepage](https://github.com/jonschlinkert/is-plain-object "Returns true if an object was created by the `Object` constructor.")
+* [is-primitive](https://www.npmjs.com/package/is-primitive): Returns `true` if the value is a primitive. | [homepage](https://github.com/jonschlinkert/is-primitive "Returns `true` if the value is a primitive. ")
+* [isobject](https://www.npmjs.com/package/isobject): Returns true if the value is an object and not an array or null. | [homepage](https://github.com/jonschlinkert/isobject "Returns true if the value is an object and not an array or null.")
+* [kind-of](https://www.npmjs.com/package/kind-of): Get the native type of a value. | [homepage](https://github.com/jonschlinkert/kind-of "Get the native type of a value.")
+
+### Contributors
+
+| **Commits** | **Contributor** |
+| --- | --- |
+| 49 | [jonschlinkert](https://github.com/jonschlinkert) |
+| 5 | [charlike-old](https://github.com/charlike-old) |
+| 1 | [benaadams](https://github.com/benaadams) |
+| 1 | [realityking](https://github.com/realityking) |
+
+### Author
+
+**Jon Schlinkert**
+
+* [LinkedIn Profile](https://linkedin.com/in/jonschlinkert)
+* [GitHub Profile](https://github.com/jonschlinkert)
+* [Twitter Profile](https://twitter.com/jonschlinkert)
+
+### License
+
+Copyright © 2018, [Jon Schlinkert](https://github.com/jonschlinkert).
+Released under the [MIT License](LICENSE).
+
+***
+
+_This file was generated by [verb-generate-readme](https://github.com/verbose/verb-generate-readme), v0.6.0, on June 15, 2018._
\ No newline at end of file
diff --git a/node_modules/is-number/index.js b/node_modules/is-number/index.js
new file mode 100644
index 0000000..27f19b7
--- /dev/null
+++ b/node_modules/is-number/index.js
@@ -0,0 +1,18 @@
+/*!
+ * is-number
+ *
+ * Copyright (c) 2014-present, Jon Schlinkert.
+ * Released under the MIT License.
+ */
+
+'use strict';
+
+module.exports = function(num) {
+ if (typeof num === 'number') {
+ return num - num === 0;
+ }
+ if (typeof num === 'string' && num.trim() !== '') {
+ return Number.isFinite ? Number.isFinite(+num) : isFinite(+num);
+ }
+ return false;
+};
diff --git a/node_modules/is-number/package.json b/node_modules/is-number/package.json
new file mode 100644
index 0000000..3715072
--- /dev/null
+++ b/node_modules/is-number/package.json
@@ -0,0 +1,82 @@
+{
+ "name": "is-number",
+ "description": "Returns true if a number or string value is a finite number. Useful for regex matches, parsing, user input, etc.",
+ "version": "7.0.0",
+ "homepage": "https://github.com/jonschlinkert/is-number",
+ "author": "Jon Schlinkert (https://github.com/jonschlinkert)",
+ "contributors": [
+ "Jon Schlinkert (http://twitter.com/jonschlinkert)",
+ "Olsten Larck (https://i.am.charlike.online)",
+ "Rouven Weßling (www.rouvenwessling.de)"
+ ],
+ "repository": "jonschlinkert/is-number",
+ "bugs": {
+ "url": "https://github.com/jonschlinkert/is-number/issues"
+ },
+ "license": "MIT",
+ "files": [
+ "index.js"
+ ],
+ "main": "index.js",
+ "engines": {
+ "node": ">=0.12.0"
+ },
+ "scripts": {
+ "test": "mocha"
+ },
+ "devDependencies": {
+ "ansi": "^0.3.1",
+ "benchmark": "^2.1.4",
+ "gulp-format-md": "^1.0.0",
+ "mocha": "^3.5.3"
+ },
+ "keywords": [
+ "cast",
+ "check",
+ "coerce",
+ "coercion",
+ "finite",
+ "integer",
+ "is",
+ "isnan",
+ "is-nan",
+ "is-num",
+ "is-number",
+ "isnumber",
+ "isfinite",
+ "istype",
+ "kind",
+ "math",
+ "nan",
+ "num",
+ "number",
+ "numeric",
+ "parseFloat",
+ "parseInt",
+ "test",
+ "type",
+ "typeof",
+ "value"
+ ],
+ "verb": {
+ "toc": false,
+ "layout": "default",
+ "tasks": [
+ "readme"
+ ],
+ "related": {
+ "list": [
+ "is-plain-object",
+ "is-primitive",
+ "isobject",
+ "kind-of"
+ ]
+ },
+ "plugins": [
+ "gulp-format-md"
+ ],
+ "lint": {
+ "reflinks": true
+ }
+ }
+}
diff --git a/node_modules/jsonfile/CHANGELOG.md b/node_modules/jsonfile/CHANGELOG.md
new file mode 100644
index 0000000..d772e43
--- /dev/null
+++ b/node_modules/jsonfile/CHANGELOG.md
@@ -0,0 +1,171 @@
+6.1.0 / 2020-10-31
+------------------
+
+- Add `finalEOL` option to disable writing final EOL ([#115](https://github.com/jprichardson/node-jsonfile/issues/115), [#137](https://github.com/jprichardson/node-jsonfile/pull/137))
+- Update dependency ([#138](https://github.com/jprichardson/node-jsonfile/pull/138))
+
+6.0.1 / 2020-03-07
+------------------
+
+- Update dependency ([#130](https://github.com/jprichardson/node-jsonfile/pull/130))
+- Fix code style ([#129](https://github.com/jprichardson/node-jsonfile/pull/129))
+
+6.0.0 / 2020-02-24
+------------------
+
+- **BREAKING:** Drop support for Node 6 & 8 ([#128](https://github.com/jprichardson/node-jsonfile/pull/128))
+- **BREAKING:** Do not allow passing `null` as options to `readFile()` or `writeFile()` ([#128](https://github.com/jprichardson/node-jsonfile/pull/128))
+- Refactor internals ([#128](https://github.com/jprichardson/node-jsonfile/pull/128))
+
+5.0.0 / 2018-09-08
+------------------
+
+- **BREAKING:** Drop Node 4 support
+- **BREAKING:** If no callback is passed to an asynchronous method, a promise is now returned ([#109](https://github.com/jprichardson/node-jsonfile/pull/109))
+- Cleanup docs
+
+4.0.0 / 2017-07-12
+------------------
+
+- **BREAKING:** Remove global `spaces` option.
+- **BREAKING:** Drop support for Node 0.10, 0.12, and io.js.
+- Remove undocumented `passParsingErrors` option.
+- Added `EOL` override option to `writeFile` when using `spaces`. [#89]
+
+3.0.1 / 2017-07-05
+------------------
+
+- Fixed bug in `writeFile` when there was a serialization error & no callback was passed. In previous versions, an empty file would be written; now no file is written.
+
+3.0.0 / 2017-04-25
+------------------
+
+- Changed behavior of `throws` option for `readFileSync`; now does not throw filesystem errors when `throws` is `false`
+
+2.4.0 / 2016-09-15
+------------------
+### Changed
+- added optional support for `graceful-fs` [#62]
+
+2.3.1 / 2016-05-13
+------------------
+- fix to support BOM. [#45][#45]
+
+2.3.0 / 2016-04-16
+------------------
+- add `throws` to `readFile()`. See [#39][#39]
+- add support for any arbitrary `fs` module. Useful with [mock-fs](https://www.npmjs.com/package/mock-fs)
+
+2.2.3 / 2015-10-14
+------------------
+- include file name in parse error. See: https://github.com/jprichardson/node-jsonfile/pull/34
+
+2.2.2 / 2015-09-16
+------------------
+- split out tests into separate files
+- fixed `throws` when set to `true` in `readFileSync()`. See: https://github.com/jprichardson/node-jsonfile/pull/33
+
+2.2.1 / 2015-06-25
+------------------
+- fixed regression when passing in string as encoding for options in `writeFile()` and `writeFileSync()`. See: https://github.com/jprichardson/node-jsonfile/issues/28
+
+2.2.0 / 2015-06-25
+------------------
+- added `options.spaces` to `writeFile()` and `writeFileSync()`
+
+2.1.2 / 2015-06-22
+------------------
+- fixed if passed `readFileSync(file, 'utf8')`. See: https://github.com/jprichardson/node-jsonfile/issues/25
+
+2.1.1 / 2015-06-19
+------------------
+- fixed regressions if `null` is passed for options. See: https://github.com/jprichardson/node-jsonfile/issues/24
+
+2.1.0 / 2015-06-19
+------------------
+- cleanup: JavaScript Standard Style, rename files, dropped terst for assert
+- methods now support JSON revivers/replacers
+
+2.0.1 / 2015-05-24
+------------------
+- update license attribute https://github.com/jprichardson/node-jsonfile/pull/21
+
+2.0.0 / 2014-07-28
+------------------
+* added `\n` to end of file on write. [#14](https://github.com/jprichardson/node-jsonfile/pull/14)
+* added `options.throws` to `readFileSync()`
+* dropped support for Node v0.8
+
+1.2.0 / 2014-06-29
+------------------
+* removed semicolons
+* bugfix: passed `options` to `fs.readFile` and `fs.readFileSync`. This technically changes behavior, but
+changes it according to docs. [#12][#12]
+
+1.1.1 / 2013-11-11
+------------------
+* fixed catching of callback bug (ffissore / #5)
+
+1.1.0 / 2013-10-11
+------------------
+* added `options` param to methods, (seanodell / #4)
+
+1.0.1 / 2013-09-05
+------------------
+* removed `homepage` field from package.json to remove NPM warning
+
+1.0.0 / 2013-06-28
+------------------
+* added `.npmignore`, #1
+* changed spacing default from `4` to `2` to follow Node conventions
+
+0.0.1 / 2012-09-10
+------------------
+* Initial release.
+
+[#89]: https://github.com/jprichardson/node-jsonfile/pull/89
+[#45]: https://github.com/jprichardson/node-jsonfile/issues/45 "Reading of UTF8-encoded (w/ BOM) files fails"
+[#44]: https://github.com/jprichardson/node-jsonfile/issues/44 "Extra characters in written file"
+[#43]: https://github.com/jprichardson/node-jsonfile/issues/43 "Prettyfy json when written to file"
+[#42]: https://github.com/jprichardson/node-jsonfile/pull/42 "Moved fs.readFileSync within the try/catch"
+[#41]: https://github.com/jprichardson/node-jsonfile/issues/41 "Linux: Hidden file not working"
+[#40]: https://github.com/jprichardson/node-jsonfile/issues/40 "autocreate folder doesn't work from Path-value"
+[#39]: https://github.com/jprichardson/node-jsonfile/pull/39 "Add `throws` option for readFile (async)"
+[#38]: https://github.com/jprichardson/node-jsonfile/pull/38 "Update README.md writeFile[Sync] signature"
+[#37]: https://github.com/jprichardson/node-jsonfile/pull/37 "support append file"
+[#36]: https://github.com/jprichardson/node-jsonfile/pull/36 "Add typescript definition file."
+[#35]: https://github.com/jprichardson/node-jsonfile/pull/35 "Add typescript definition file."
+[#34]: https://github.com/jprichardson/node-jsonfile/pull/34 "readFile JSON parse error includes filename"
+[#33]: https://github.com/jprichardson/node-jsonfile/pull/33 "fix throw->throws typo in readFileSync()"
+[#32]: https://github.com/jprichardson/node-jsonfile/issues/32 "readFile & readFileSync can possible have strip-comments as an option?"
+[#31]: https://github.com/jprichardson/node-jsonfile/pull/31 "[Modify] Support string include is unicode escape string"
+[#30]: https://github.com/jprichardson/node-jsonfile/issues/30 "How to use Jsonfile package in Meteor.js App?"
+[#29]: https://github.com/jprichardson/node-jsonfile/issues/29 "writefile callback if no error?"
+[#28]: https://github.com/jprichardson/node-jsonfile/issues/28 "writeFile options argument broken "
+[#27]: https://github.com/jprichardson/node-jsonfile/pull/27 "Use svg instead of png to get better image quality"
+[#26]: https://github.com/jprichardson/node-jsonfile/issues/26 "Breaking change to fs-extra"
+[#25]: https://github.com/jprichardson/node-jsonfile/issues/25 "support string encoding param for read methods"
+[#24]: https://github.com/jprichardson/node-jsonfile/issues/24 "readFile: Passing in null options with a callback throws an error"
+[#23]: https://github.com/jprichardson/node-jsonfile/pull/23 "Add appendFile and appendFileSync"
+[#22]: https://github.com/jprichardson/node-jsonfile/issues/22 "Default value for spaces in readme.md is outdated"
+[#21]: https://github.com/jprichardson/node-jsonfile/pull/21 "Update license attribute"
+[#20]: https://github.com/jprichardson/node-jsonfile/issues/20 "Add simple caching functionallity"
+[#19]: https://github.com/jprichardson/node-jsonfile/pull/19 "Add appendFileSync method"
+[#18]: https://github.com/jprichardson/node-jsonfile/issues/18 "Add updateFile and updateFileSync methods"
+[#17]: https://github.com/jprichardson/node-jsonfile/issues/17 "seem read & write sync has sequentially problem"
+[#16]: https://github.com/jprichardson/node-jsonfile/pull/16 "export spaces defaulted to null"
+[#15]: https://github.com/jprichardson/node-jsonfile/issues/15 "`jsonfile.spaces` should default to `null`"
+[#14]: https://github.com/jprichardson/node-jsonfile/pull/14 "Add EOL at EOF"
+[#13]: https://github.com/jprichardson/node-jsonfile/issues/13 "Add a final newline"
+[#12]: https://github.com/jprichardson/node-jsonfile/issues/12 "readFile doesn't accept options"
+[#11]: https://github.com/jprichardson/node-jsonfile/pull/11 "Added try,catch to readFileSync"
+[#10]: https://github.com/jprichardson/node-jsonfile/issues/10 "No output or error from writeFile"
+[#9]: https://github.com/jprichardson/node-jsonfile/pull/9 "Change 'js' to 'jf' in example."
+[#8]: https://github.com/jprichardson/node-jsonfile/pull/8 "Updated forgotten module.exports to me."
+[#7]: https://github.com/jprichardson/node-jsonfile/pull/7 "Add file name in error message"
+[#6]: https://github.com/jprichardson/node-jsonfile/pull/6 "Use graceful-fs when possible"
+[#5]: https://github.com/jprichardson/node-jsonfile/pull/5 "Jsonfile doesn't behave nicely when used inside a test suite."
+[#4]: https://github.com/jprichardson/node-jsonfile/pull/4 "Added options parameter to writeFile and writeFileSync"
+[#3]: https://github.com/jprichardson/node-jsonfile/issues/3 "test2"
+[#2]: https://github.com/jprichardson/node-jsonfile/issues/2 "homepage field must be a string url. Deleted."
+[#1]: https://github.com/jprichardson/node-jsonfile/pull/1 "adding an `.npmignore` file"
diff --git a/node_modules/jsonfile/LICENSE b/node_modules/jsonfile/LICENSE
new file mode 100644
index 0000000..cb7e807
--- /dev/null
+++ b/node_modules/jsonfile/LICENSE
@@ -0,0 +1,15 @@
+(The MIT License)
+
+Copyright (c) 2012-2015, JP Richardson
+
+Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files
+(the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify,
+ merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is
+ furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
+WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS
+OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
+ ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
diff --git a/node_modules/jsonfile/README.md b/node_modules/jsonfile/README.md
new file mode 100644
index 0000000..910cde0
--- /dev/null
+++ b/node_modules/jsonfile/README.md
@@ -0,0 +1,230 @@
+Node.js - jsonfile
+================
+
+Easily read/write JSON files in Node.js. _Note: this module cannot be used in the browser._
+
+[![npm Package](https://img.shields.io/npm/v/jsonfile.svg?style=flat-square)](https://www.npmjs.org/package/jsonfile)
+[![build status](https://secure.travis-ci.org/jprichardson/node-jsonfile.svg)](http://travis-ci.org/jprichardson/node-jsonfile)
+[![windows Build status](https://img.shields.io/appveyor/ci/jprichardson/node-jsonfile/master.svg?label=windows%20build)](https://ci.appveyor.com/project/jprichardson/node-jsonfile/branch/master)
+
+
+
+Why?
+----
+
+Writing `JSON.stringify()` and then `fs.writeFile()` and `JSON.parse()` with `fs.readFile()` enclosed in `try/catch` blocks became annoying.
+
+
+
+Installation
+------------
+
+ npm install --save jsonfile
+
+
+
+API
+---
+
+* [`readFile(filename, [options], callback)`](#readfilefilename-options-callback)
+* [`readFileSync(filename, [options])`](#readfilesyncfilename-options)
+* [`writeFile(filename, obj, [options], callback)`](#writefilefilename-obj-options-callback)
+* [`writeFileSync(filename, obj, [options])`](#writefilesyncfilename-obj-options)
+
+----
+
+### readFile(filename, [options], callback)
+
+`options` (`object`, default `undefined`): Pass in any [`fs.readFile`](https://nodejs.org/api/fs.html#fs_fs_readfile_path_options_callback) options or set `reviver` for a [JSON reviver](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/JSON/parse).
+ - `throws` (`boolean`, default: `true`). If `JSON.parse` throws an error, pass this error to the callback.
+ If `false`, returns `null` for the object.
+
+
+```js
+const jsonfile = require('jsonfile')
+const file = '/tmp/data.json'
+jsonfile.readFile(file, function (err, obj) {
+ if (err) console.error(err)
+ console.dir(obj)
+})
+```
+
+You can also use this method with promises. The `readFile` method will return a promise if you do not pass a callback function.
+
+```js
+const jsonfile = require('jsonfile')
+const file = '/tmp/data.json'
+jsonfile.readFile(file)
+ .then(obj => console.dir(obj))
+ .catch(error => console.error(error))
+```
+
+----
+
+### readFileSync(filename, [options])
+
+`options` (`object`, default `undefined`): Pass in any [`fs.readFileSync`](https://nodejs.org/api/fs.html#fs_fs_readfilesync_path_options) options or set `reviver` for a [JSON reviver](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/JSON/parse).
+- `throws` (`boolean`, default: `true`). If an error is encountered reading or parsing the file, throw the error. If `false`, returns `null` for the object.
+
+```js
+const jsonfile = require('jsonfile')
+const file = '/tmp/data.json'
+
+console.dir(jsonfile.readFileSync(file))
+```
+
+----
+
+### writeFile(filename, obj, [options], callback)
+
+`options`: Pass in any [`fs.writeFile`](https://nodejs.org/api/fs.html#fs_fs_writefile_file_data_options_callback) options or set `replacer` for a [JSON replacer](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/JSON/stringify). Can also pass in `spaces`, or override `EOL` string or set `finalEOL` flag as `false` to not save the file with `EOL` at the end.
+
+
+```js
+const jsonfile = require('jsonfile')
+
+const file = '/tmp/data.json'
+const obj = { name: 'JP' }
+
+jsonfile.writeFile(file, obj, function (err) {
+ if (err) console.error(err)
+})
+```
+Or use with promises as follows:
+
+```js
+const jsonfile = require('jsonfile')
+
+const file = '/tmp/data.json'
+const obj = { name: 'JP' }
+
+jsonfile.writeFile(file, obj)
+ .then(res => {
+ console.log('Write complete')
+ })
+ .catch(error => console.error(error))
+```
+
+
+**formatting with spaces:**
+
+```js
+const jsonfile = require('jsonfile')
+
+const file = '/tmp/data.json'
+const obj = { name: 'JP' }
+
+jsonfile.writeFile(file, obj, { spaces: 2 }, function (err) {
+ if (err) console.error(err)
+})
+```
+
+**overriding EOL:**
+
+```js
+const jsonfile = require('jsonfile')
+
+const file = '/tmp/data.json'
+const obj = { name: 'JP' }
+
+jsonfile.writeFile(file, obj, { spaces: 2, EOL: '\r\n' }, function (err) {
+ if (err) console.error(err)
+})
+```
+
+
+**disabling the EOL at the end of file:**
+
+```js
+const jsonfile = require('jsonfile')
+
+const file = '/tmp/data.json'
+const obj = { name: 'JP' }
+
+jsonfile.writeFile(file, obj, { spaces: 2, finalEOL: false }, function (err) {
+ if (err) console.log(err)
+})
+```
+
+**appending to an existing JSON file:**
+
+You can use `fs.writeFile` option `{ flag: 'a' }` to achieve this.
+
+```js
+const jsonfile = require('jsonfile')
+
+const file = '/tmp/mayAlreadyExistedData.json'
+const obj = { name: 'JP' }
+
+jsonfile.writeFile(file, obj, { flag: 'a' }, function (err) {
+ if (err) console.error(err)
+})
+```
+
+----
+
+### writeFileSync(filename, obj, [options])
+
+`options`: Pass in any [`fs.writeFileSync`](https://nodejs.org/api/fs.html#fs_fs_writefilesync_file_data_options) options or set `replacer` for a [JSON replacer](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/JSON/stringify). Can also pass in `spaces`, or override `EOL` string or set `finalEOL` flag as `false` to not save the file with `EOL` at the end.
+
+```js
+const jsonfile = require('jsonfile')
+
+const file = '/tmp/data.json'
+const obj = { name: 'JP' }
+
+jsonfile.writeFileSync(file, obj)
+```
+
+**formatting with spaces:**
+
+```js
+const jsonfile = require('jsonfile')
+
+const file = '/tmp/data.json'
+const obj = { name: 'JP' }
+
+jsonfile.writeFileSync(file, obj, { spaces: 2 })
+```
+
+**overriding EOL:**
+
+```js
+const jsonfile = require('jsonfile')
+
+const file = '/tmp/data.json'
+const obj = { name: 'JP' }
+
+jsonfile.writeFileSync(file, obj, { spaces: 2, EOL: '\r\n' })
+```
+
+**disabling the EOL at the end of file:**
+
+```js
+const jsonfile = require('jsonfile')
+
+const file = '/tmp/data.json'
+const obj = { name: 'JP' }
+
+jsonfile.writeFileSync(file, obj, { spaces: 2, finalEOL: false })
+```
+
+**appending to an existing JSON file:**
+
+You can use `fs.writeFileSync` option `{ flag: 'a' }` to achieve this.
+
+```js
+const jsonfile = require('jsonfile')
+
+const file = '/tmp/mayAlreadyExistedData.json'
+const obj = { name: 'JP' }
+
+jsonfile.writeFileSync(file, obj, { flag: 'a' })
+```
+
+License
+-------
+
+(MIT License)
+
+Copyright 2012-2016, JP Richardson
diff --git a/node_modules/jsonfile/index.js b/node_modules/jsonfile/index.js
new file mode 100644
index 0000000..0582868
--- /dev/null
+++ b/node_modules/jsonfile/index.js
@@ -0,0 +1,88 @@
+let _fs
+try {
+ _fs = require('graceful-fs')
+} catch (_) {
+ _fs = require('fs')
+}
+const universalify = require('universalify')
+const { stringify, stripBom } = require('./utils')
+
+async function _readFile (file, options = {}) {
+ if (typeof options === 'string') {
+ options = { encoding: options }
+ }
+
+ const fs = options.fs || _fs
+
+ const shouldThrow = 'throws' in options ? options.throws : true
+
+ let data = await universalify.fromCallback(fs.readFile)(file, options)
+
+ data = stripBom(data)
+
+ let obj
+ try {
+ obj = JSON.parse(data, options ? options.reviver : null)
+ } catch (err) {
+ if (shouldThrow) {
+ err.message = `${file}: ${err.message}`
+ throw err
+ } else {
+ return null
+ }
+ }
+
+ return obj
+}
+
+const readFile = universalify.fromPromise(_readFile)
+
+function readFileSync (file, options = {}) {
+ if (typeof options === 'string') {
+ options = { encoding: options }
+ }
+
+ const fs = options.fs || _fs
+
+ const shouldThrow = 'throws' in options ? options.throws : true
+
+ try {
+ let content = fs.readFileSync(file, options)
+ content = stripBom(content)
+ return JSON.parse(content, options.reviver)
+ } catch (err) {
+ if (shouldThrow) {
+ err.message = `${file}: ${err.message}`
+ throw err
+ } else {
+ return null
+ }
+ }
+}
+
+async function _writeFile (file, obj, options = {}) {
+ const fs = options.fs || _fs
+
+ const str = stringify(obj, options)
+
+ await universalify.fromCallback(fs.writeFile)(file, str, options)
+}
+
+const writeFile = universalify.fromPromise(_writeFile)
+
+function writeFileSync (file, obj, options = {}) {
+ const fs = options.fs || _fs
+
+ const str = stringify(obj, options)
+ // not sure if fs.writeFileSync returns anything, but just in case
+ return fs.writeFileSync(file, str, options)
+}
+
+const jsonfile = {
+ readFile,
+ readFileSync,
+ writeFile,
+ writeFileSync
+}
+
+module.exports = jsonfile
diff --git a/node_modules/jsonfile/package.json b/node_modules/jsonfile/package.json
new file mode 100644
index 0000000..4d01eb1
--- /dev/null
+++ b/node_modules/jsonfile/package.json
@@ -0,0 +1,40 @@
+{
+ "name": "jsonfile",
+ "version": "6.1.0",
+ "description": "Easily read/write JSON files.",
+ "repository": {
+ "type": "git",
+ "url": "git@github.com:jprichardson/node-jsonfile.git"
+ },
+ "keywords": [
+ "read",
+ "write",
+ "file",
+ "json",
+ "fs",
+ "fs-extra"
+ ],
+ "author": "JP Richardson ",
+ "license": "MIT",
+ "dependencies": {
+ "universalify": "^2.0.0"
+ },
+ "optionalDependencies": {
+ "graceful-fs": "^4.1.6"
+ },
+ "devDependencies": {
+ "mocha": "^8.2.0",
+ "rimraf": "^2.4.0",
+ "standard": "^16.0.1"
+ },
+ "main": "index.js",
+ "files": [
+ "index.js",
+ "utils.js"
+ ],
+ "scripts": {
+ "lint": "standard",
+ "test": "npm run lint && npm run unit",
+ "unit": "mocha"
+ }
+}
diff --git a/node_modules/jsonfile/utils.js b/node_modules/jsonfile/utils.js
new file mode 100644
index 0000000..b5ff48e
--- /dev/null
+++ b/node_modules/jsonfile/utils.js
@@ -0,0 +1,14 @@
+function stringify (obj, { EOL = '\n', finalEOL = true, replacer = null, spaces } = {}) {
+ const EOF = finalEOL ? EOL : ''
+ const str = JSON.stringify(obj, replacer, spaces)
+
+ return str.replace(/\n/g, EOL) + EOF
+}
+
+function stripBom (content) {
+ // we do this because JSON.parse would convert it to a utf8 string if encoding wasn't specified
+ if (Buffer.isBuffer(content)) content = content.toString('utf8')
+ return content.replace(/^\uFEFF/, '')
+}
+
+module.exports = { stringify, stripBom }
diff --git a/node_modules/lilconfig/LICENSE b/node_modules/lilconfig/LICENSE
new file mode 100644
index 0000000..fd866f4
--- /dev/null
+++ b/node_modules/lilconfig/LICENSE
@@ -0,0 +1,21 @@
+MIT License
+
+Copyright (c) 2022 Anton Kastritskiy
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
diff --git a/node_modules/lilconfig/dist/index.d.ts b/node_modules/lilconfig/dist/index.d.ts
new file mode 100644
index 0000000..766c58c
--- /dev/null
+++ b/node_modules/lilconfig/dist/index.d.ts
@@ -0,0 +1,38 @@
+export declare type LilconfigResult = null | {
+ filepath: string;
+ config: any;
+ isEmpty?: boolean;
+};
+interface OptionsBase {
+ stopDir?: string;
+ searchPlaces?: string[];
+ ignoreEmptySearchPlaces?: boolean;
+ packageProp?: string | string[];
+}
+export declare type Transform = TransformSync | ((result: LilconfigResult) => Promise);
+export declare type TransformSync = (result: LilconfigResult) => LilconfigResult;
+declare type LoaderResult = any;
+export declare type LoaderSync = (filepath: string, content: string) => LoaderResult;
+export declare type Loader = LoaderSync | ((filepath: string, content: string) => Promise);
+export declare type Loaders = Record;
+export declare type LoadersSync = Record;
+export interface Options extends OptionsBase {
+ loaders?: Loaders;
+ transform?: Transform;
+}
+export interface OptionsSync extends OptionsBase {
+ loaders?: LoadersSync;
+ transform?: TransformSync;
+}
+export declare const defaultLoaders: LoadersSync;
+declare type AsyncSearcher = {
+ search(searchFrom?: string): Promise;
+ load(filepath: string): Promise;
+};
+export declare function lilconfig(name: string, options?: Partial): AsyncSearcher;
+declare type SyncSearcher = {
+ search(searchFrom?: string): LilconfigResult;
+ load(filepath: string): LilconfigResult;
+};
+export declare function lilconfigSync(name: string, options?: OptionsSync): SyncSearcher;
+export {};
diff --git a/node_modules/lilconfig/dist/index.js b/node_modules/lilconfig/dist/index.js
new file mode 100644
index 0000000..13cca57
--- /dev/null
+++ b/node_modules/lilconfig/dist/index.js
@@ -0,0 +1,251 @@
+"use strict";
+Object.defineProperty(exports, "__esModule", { value: true });
+exports.lilconfigSync = exports.lilconfig = exports.defaultLoaders = void 0;
+const path = require("path");
+const fs = require("fs");
+const os = require("os");
+const fsReadFileAsync = fs.promises.readFile;
+function getDefaultSearchPlaces(name) {
+ return [
+ 'package.json',
+ `.${name}rc.json`,
+ `.${name}rc.js`,
+ `.${name}rc.cjs`,
+ `.config/${name}rc`,
+ `.config/${name}rc.json`,
+ `.config/${name}rc.js`,
+ `.config/${name}rc.cjs`,
+ `${name}.config.js`,
+ `${name}.config.cjs`,
+ ];
+}
+function getSearchPaths(startDir, stopDir) {
+ return startDir
+ .split(path.sep)
+ .reduceRight((acc, _, ind, arr) => {
+ const currentPath = arr.slice(0, ind + 1).join(path.sep);
+ if (!acc.passedStopDir)
+ acc.searchPlaces.push(currentPath || path.sep);
+ if (currentPath === stopDir)
+ acc.passedStopDir = true;
+ return acc;
+ }, { searchPlaces: [], passedStopDir: false }).searchPlaces;
+}
+exports.defaultLoaders = Object.freeze({
+ '.js': require,
+ '.json': require,
+ '.cjs': require,
+ noExt(_, content) {
+ return JSON.parse(content);
+ },
+});
+function getExtDesc(ext) {
+ return ext === 'noExt' ? 'files without extensions' : `extension "${ext}"`;
+}
+function getOptions(name, options = {}) {
+ const conf = {
+ stopDir: os.homedir(),
+ searchPlaces: getDefaultSearchPlaces(name),
+ ignoreEmptySearchPlaces: true,
+ transform: (x) => x,
+ packageProp: [name],
+ ...options,
+ loaders: { ...exports.defaultLoaders, ...options.loaders },
+ };
+ conf.searchPlaces.forEach(place => {
+ const key = path.extname(place) || 'noExt';
+ const loader = conf.loaders[key];
+ if (!loader) {
+ throw new Error(`No loader specified for ${getExtDesc(key)}, so searchPlaces item "${place}" is invalid`);
+ }
+ if (typeof loader !== 'function') {
+ throw new Error(`loader for ${getExtDesc(key)} is not a function (type provided: "${typeof loader}"), so searchPlaces item "${place}" is invalid`);
+ }
+ });
+ return conf;
+}
+function getPackageProp(props, obj) {
+ if (typeof props === 'string' && props in obj)
+ return obj[props];
+ return ((Array.isArray(props) ? props : props.split('.')).reduce((acc, prop) => (acc === undefined ? acc : acc[prop]), obj) || null);
+}
+function getSearchItems(searchPlaces, searchPaths) {
+ return searchPaths.reduce((acc, searchPath) => {
+ searchPlaces.forEach(sp => acc.push({
+ searchPlace: sp,
+ filepath: path.join(searchPath, sp),
+ loaderKey: path.extname(sp) || 'noExt',
+ }));
+ return acc;
+ }, []);
+}
+function validateFilePath(filepath) {
+ if (!filepath)
+ throw new Error('load must pass a non-empty string');
+}
+function validateLoader(loader, ext) {
+ if (!loader)
+ throw new Error(`No loader specified for extension "${ext}"`);
+ if (typeof loader !== 'function')
+ throw new Error('loader is not a function');
+}
+function lilconfig(name, options) {
+ const { ignoreEmptySearchPlaces, loaders, packageProp, searchPlaces, stopDir, transform, } = getOptions(name, options);
+ return {
+ async search(searchFrom = process.cwd()) {
+ const searchPaths = getSearchPaths(searchFrom, stopDir);
+ const result = {
+ config: null,
+ filepath: '',
+ };
+ const searchItems = getSearchItems(searchPlaces, searchPaths);
+ for (const { searchPlace, filepath, loaderKey } of searchItems) {
+ try {
+ await fs.promises.access(filepath);
+ }
+ catch (_a) {
+ continue;
+ }
+ const content = String(await fsReadFileAsync(filepath));
+ const loader = loaders[loaderKey];
+ if (searchPlace === 'package.json') {
+ const pkg = await loader(filepath, content);
+ const maybeConfig = getPackageProp(packageProp, pkg);
+ if (maybeConfig != null) {
+ result.config = maybeConfig;
+ result.filepath = filepath;
+ break;
+ }
+ continue;
+ }
+ const isEmpty = content.trim() === '';
+ if (isEmpty && ignoreEmptySearchPlaces)
+ continue;
+ if (isEmpty) {
+ result.isEmpty = true;
+ result.config = undefined;
+ }
+ else {
+ validateLoader(loader, loaderKey);
+ result.config = await loader(filepath, content);
+ }
+ result.filepath = filepath;
+ break;
+ }
+ if (result.filepath === '' && result.config === null)
+ return transform(null);
+ return transform(result);
+ },
+ async load(filepath) {
+ validateFilePath(filepath);
+ const absPath = path.resolve(process.cwd(), filepath);
+ const { base, ext } = path.parse(absPath);
+ const loaderKey = ext || 'noExt';
+ const loader = loaders[loaderKey];
+ validateLoader(loader, loaderKey);
+ const content = String(await fsReadFileAsync(absPath));
+ if (base === 'package.json') {
+ const pkg = await loader(absPath, content);
+ return transform({
+ config: getPackageProp(packageProp, pkg),
+ filepath: absPath,
+ });
+ }
+ const result = {
+ config: null,
+ filepath: absPath,
+ };
+ const isEmpty = content.trim() === '';
+ if (isEmpty && ignoreEmptySearchPlaces)
+ return transform({
+ config: undefined,
+ filepath: absPath,
+ isEmpty: true,
+ });
+ result.config = isEmpty
+ ? undefined
+ : await loader(absPath, content);
+ return transform(isEmpty ? { ...result, isEmpty, config: undefined } : result);
+ },
+ };
+}
+exports.lilconfig = lilconfig;
+function lilconfigSync(name, options) {
+ const { ignoreEmptySearchPlaces, loaders, packageProp, searchPlaces, stopDir, transform, } = getOptions(name, options);
+ return {
+ search(searchFrom = process.cwd()) {
+ const searchPaths = getSearchPaths(searchFrom, stopDir);
+ const result = {
+ config: null,
+ filepath: '',
+ };
+ const searchItems = getSearchItems(searchPlaces, searchPaths);
+ for (const { searchPlace, filepath, loaderKey } of searchItems) {
+ try {
+ fs.accessSync(filepath);
+ }
+ catch (_a) {
+ continue;
+ }
+ const loader = loaders[loaderKey];
+ const content = String(fs.readFileSync(filepath));
+ if (searchPlace === 'package.json') {
+ const pkg = loader(filepath, content);
+ const maybeConfig = getPackageProp(packageProp, pkg);
+ if (maybeConfig != null) {
+ result.config = maybeConfig;
+ result.filepath = filepath;
+ break;
+ }
+ continue;
+ }
+ const isEmpty = content.trim() === '';
+ if (isEmpty && ignoreEmptySearchPlaces)
+ continue;
+ if (isEmpty) {
+ result.isEmpty = true;
+ result.config = undefined;
+ }
+ else {
+ validateLoader(loader, loaderKey);
+ result.config = loader(filepath, content);
+ }
+ result.filepath = filepath;
+ break;
+ }
+ if (result.filepath === '' && result.config === null)
+ return transform(null);
+ return transform(result);
+ },
+ load(filepath) {
+ validateFilePath(filepath);
+ const absPath = path.resolve(process.cwd(), filepath);
+ const { base, ext } = path.parse(absPath);
+ const loaderKey = ext || 'noExt';
+ const loader = loaders[loaderKey];
+ validateLoader(loader, loaderKey);
+ const content = String(fs.readFileSync(absPath));
+ if (base === 'package.json') {
+ const pkg = loader(absPath, content);
+ return transform({
+ config: getPackageProp(packageProp, pkg),
+ filepath: absPath,
+ });
+ }
+ const result = {
+ config: null,
+ filepath: absPath,
+ };
+ const isEmpty = content.trim() === '';
+ if (isEmpty && ignoreEmptySearchPlaces)
+ return transform({
+ filepath: absPath,
+ config: undefined,
+ isEmpty: true,
+ });
+ result.config = isEmpty ? undefined : loader(absPath, content);
+ return transform(isEmpty ? { ...result, isEmpty, config: undefined } : result);
+ },
+ };
+}
+exports.lilconfigSync = lilconfigSync;
diff --git a/node_modules/lilconfig/package.json b/node_modules/lilconfig/package.json
new file mode 100644
index 0000000..8e06d1f
--- /dev/null
+++ b/node_modules/lilconfig/package.json
@@ -0,0 +1,48 @@
+{
+ "name": "lilconfig",
+ "version": "2.1.0",
+ "description": "A zero-dependency alternative to cosmiconfig",
+ "main": "dist/index.js",
+ "types": "dist/index.d.ts",
+ "scripts": {
+ "prebuild": "npm run clean",
+ "build": "tsc --declaration",
+ "postbuild": "du -h ./dist/*",
+ "clean": "rm -rf ./dist",
+ "test": "jest --coverage",
+ "lint": "eslint ./src/*.ts"
+ },
+ "keywords": [
+ "cosmiconfig",
+ "config",
+ "configuration",
+ "search"
+ ],
+ "files": [
+ "dist/*"
+ ],
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/antonk52/lilconfig"
+ },
+ "bugs": "https://github.com/antonk52/lilconfig/issues",
+ "author": "antonk52",
+ "license": "MIT",
+ "devDependencies": {
+ "@types/jest": "^27.0.2",
+ "@types/node": "^14.18.36",
+ "@typescript-eslint/eslint-plugin": "^5.54.0",
+ "@typescript-eslint/parser": "^5.54.0",
+ "cosmiconfig": "^7.1.0",
+ "eslint": "^8.35.0",
+ "eslint-config-prettier": "^8.6.0",
+ "eslint-plugin-prettier": "^4.2.1",
+ "jest": "^27.3.1",
+ "prettier": "^2.8.4",
+ "ts-jest": "27.0.7",
+ "typescript": "4.4.4"
+ },
+ "engines": {
+ "node": ">=10"
+ }
+}
diff --git a/node_modules/lilconfig/readme.md b/node_modules/lilconfig/readme.md
new file mode 100644
index 0000000..7b6610d
--- /dev/null
+++ b/node_modules/lilconfig/readme.md
@@ -0,0 +1,118 @@
+# Lilconfig ⚙️
+[![npm version](https://badge.fury.io/js/lilconfig.svg)](https://badge.fury.io/js/lilconfig)
+[![install size](https://packagephobia.now.sh/badge?p=lilconfig)](https://packagephobia.now.sh/result?p=lilconfig)
+[![Coverage Status](https://coveralls.io/repos/github/antonk52/lilconfig/badge.svg)](https://coveralls.io/github/antonk52/lilconfig)
+
+A zero-dependency alternative to [cosmiconfig](https://www.npmjs.com/package/cosmiconfig) with the same API.
+
+## Installation
+
+```sh
+npm install lilconfig
+```
+
+## Usage
+
+```js
+import {lilconfig, lilconfigSync} from 'lilconfig';
+
+// all keys are optional
+const options = {
+ stopDir: '/Users/you/some/dir',
+ searchPlaces: ['package.json', 'myapp.conf.js'],
+ ignoreEmptySearchPlaces: false
+}
+
+lilconfig(
+ 'myapp',
+ options // optional
+).search() // Promise
+
+lilconfigSync(
+ 'myapp',
+ options // optional
+).load(pathToConfig) // LilconfigResult
+
+/**
+ * LilconfigResult
+ * {
+ * config: any; // your config
+ * filepath: string;
+ * }
+ */
+```
+
+## Difference to `cosmiconfig`
+Lilconfig does not intend to be 100% compatible with `cosmiconfig` but tries to mimic it where possible. The key differences are:
+- **no** support for yaml files out of the box(`lilconfig` attempts to parse files with no extension as JSON instead of YAML). You can still add the support for YAML files by providing a loader, see an [example](#yaml-loader) below.
+- **no** cache
+
+### Options difference between the two.
+
+|cosmiconfig option | lilconfig |
+|------------------------|-----------|
+|cache | ❌ |
+|loaders | ✅ |
+|ignoreEmptySearchPlaces | ✅ |
+|packageProp | ✅ |
+|searchPlaces | ✅ |
+|stopDir | ✅ |
+|transform | ✅ |
+
+## Loaders examples
+
+### Yaml loader
+
+If you need the YAML support you can provide your own loader
+
+```js
+import {lilconfig} from 'lilconfig';
+import yaml from 'yaml';
+
+function loadYaml(filepath, content) {
+ return yaml.parse(content);
+}
+
+const options = {
+ loaders: {
+ '.yaml': loadYaml,
+ '.yml': loadYaml,
+ // loader for files with no extension
+ noExt: loadYaml
+ }
+};
+
+lilconfig('myapp', options)
+ .search()
+ .then(result => {
+ result // {config, filepath}
+ });
+```
+
+### ESM loader
+
+Lilconfig v2 does not support ESM modules out of the box. However, you can support it with a custom a loader. Note that this will only work with the async `lilconfig` function and won't work with the sync `lilconfigSync`.
+
+```js
+import {lilconfig} from 'lilconfig';
+
+const loadEsm = filepath => import(filepath);
+
+lilconfig('myapp', {
+ loaders: {
+ '.js': loadEsm,
+ '.mjs': loadEsm,
+ }
+})
+ .search()
+ .then(result => {
+ result // {config, filepath}
+
+ result.config.default // if config uses `export default`
+ });
+```
+
+## Version correlation
+
+- lilconig v1 → cosmiconfig v6
+- lilconig v2 → cosmiconfig v7
diff --git a/node_modules/merge2/LICENSE b/node_modules/merge2/LICENSE
new file mode 100644
index 0000000..31dd9c7
--- /dev/null
+++ b/node_modules/merge2/LICENSE
@@ -0,0 +1,21 @@
+The MIT License (MIT)
+
+Copyright (c) 2014-2020 Teambition
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
diff --git a/node_modules/merge2/README.md b/node_modules/merge2/README.md
new file mode 100644
index 0000000..27f8eb9
--- /dev/null
+++ b/node_modules/merge2/README.md
@@ -0,0 +1,144 @@
+# merge2
+
+Merge multiple streams into one stream in sequence or parallel.
+
+[![NPM version][npm-image]][npm-url]
+[![Build Status][travis-image]][travis-url]
+[![Downloads][downloads-image]][downloads-url]
+
+## Install
+
+Install with [npm](https://npmjs.org/package/merge2)
+
+```sh
+npm install merge2
+```
+
+## Usage
+
+```js
+const gulp = require('gulp')
+const merge2 = require('merge2')
+const concat = require('gulp-concat')
+const minifyHtml = require('gulp-minify-html')
+const ngtemplate = require('gulp-ngtemplate')
+
+gulp.task('app-js', function () {
+ return merge2(
+ gulp.src('static/src/tpl/*.html')
+ .pipe(minifyHtml({empty: true}))
+ .pipe(ngtemplate({
+ module: 'genTemplates',
+ standalone: true
+ })
+ ), gulp.src([
+ 'static/src/js/app.js',
+ 'static/src/js/locale_zh-cn.js',
+ 'static/src/js/router.js',
+ 'static/src/js/tools.js',
+ 'static/src/js/services.js',
+ 'static/src/js/filters.js',
+ 'static/src/js/directives.js',
+ 'static/src/js/controllers.js'
+ ])
+ )
+ .pipe(concat('app.js'))
+ .pipe(gulp.dest('static/dist/js/'))
+})
+```
+
+```js
+const stream = merge2([stream1, stream2], stream3, {end: false})
+//...
+stream.add(stream4, stream5)
+//..
+stream.end()
+```
+
+```js
+// equal to merge2([stream1, stream2], stream3)
+const stream = merge2()
+stream.add([stream1, stream2])
+stream.add(stream3)
+```
+
+```js
+// merge order:
+// 1. merge `stream1`;
+// 2. merge `stream2` and `stream3` in parallel after `stream1` merged;
+// 3. merge 'stream4' after `stream2` and `stream3` merged;
+const stream = merge2(stream1, [stream2, stream3], stream4)
+
+// merge order:
+// 1. merge `stream5` and `stream6` in parallel after `stream4` merged;
+// 2. merge 'stream7' after `stream5` and `stream6` merged;
+stream.add([stream5, stream6], stream7)
+```
+
+```js
+// nest merge
+// equal to merge2(stream1, stream2, stream6, stream3, [stream4, stream5]);
+const streamA = merge2(stream1, stream2)
+const streamB = merge2(stream3, [stream4, stream5])
+const stream = merge2(streamA, streamB)
+streamA.add(stream6)
+```
+
+## API
+
+```js
+const merge2 = require('merge2')
+```
+
+### merge2()
+
+### merge2(options)
+
+### merge2(stream1, stream2, ..., streamN)
+
+### merge2(stream1, stream2, ..., streamN, options)
+
+### merge2(stream1, [stream2, stream3, ...], streamN, options)
+
+return a duplex stream (mergedStream). streams in array will be merged in parallel.
+
+### mergedStream.add(stream)
+
+### mergedStream.add(stream1, [stream2, stream3, ...], ...)
+
+return the mergedStream.
+
+### mergedStream.on('queueDrain', function() {})
+
+It will emit 'queueDrain' when all streams merged. If you set `end === false` in options, this event give you a notice that should add more streams to merge or end the mergedStream.
+
+#### stream
+
+*option*
+Type: `Readable` or `Duplex` or `Transform` stream.
+
+#### options
+
+*option*
+Type: `Object`.
+
+* **end** - `Boolean` - if `end === false` then mergedStream will not be auto ended, you should end by yourself. **Default:** `undefined`
+
+* **pipeError** - `Boolean` - if `pipeError === true` then mergedStream will emit `error` event from source streams. **Default:** `undefined`
+
+* **objectMode** - `Boolean` . **Default:** `true`
+
+`objectMode` and other options(`highWaterMark`, `defaultEncoding` ...) is same as Node.js `Stream`.
+
+## License
+
+MIT © [Teambition](https://www.teambition.com)
+
+[npm-url]: https://npmjs.org/package/merge2
+[npm-image]: http://img.shields.io/npm/v/merge2.svg
+
+[travis-url]: https://travis-ci.org/teambition/merge2
+[travis-image]: http://img.shields.io/travis/teambition/merge2.svg
+
+[downloads-url]: https://npmjs.org/package/merge2
+[downloads-image]: http://img.shields.io/npm/dm/merge2.svg?style=flat-square
diff --git a/node_modules/merge2/index.js b/node_modules/merge2/index.js
new file mode 100644
index 0000000..78a61ed
--- /dev/null
+++ b/node_modules/merge2/index.js
@@ -0,0 +1,144 @@
+'use strict'
+/*
+ * merge2
+ * https://github.com/teambition/merge2
+ *
+ * Copyright (c) 2014-2020 Teambition
+ * Licensed under the MIT license.
+ */
+const Stream = require('stream')
+const PassThrough = Stream.PassThrough
+const slice = Array.prototype.slice
+
+module.exports = merge2
+
+function merge2 () {
+ const streamsQueue = []
+ const args = slice.call(arguments)
+ let merging = false
+ let options = args[args.length - 1]
+
+ if (options && !Array.isArray(options) && options.pipe == null) {
+ args.pop()
+ } else {
+ options = {}
+ }
+
+ const doEnd = options.end !== false
+ const doPipeError = options.pipeError === true
+ if (options.objectMode == null) {
+ options.objectMode = true
+ }
+ if (options.highWaterMark == null) {
+ options.highWaterMark = 64 * 1024
+ }
+ const mergedStream = PassThrough(options)
+
+ function addStream () {
+ for (let i = 0, len = arguments.length; i < len; i++) {
+ streamsQueue.push(pauseStreams(arguments[i], options))
+ }
+ mergeStream()
+ return this
+ }
+
+ function mergeStream () {
+ if (merging) {
+ return
+ }
+ merging = true
+
+ let streams = streamsQueue.shift()
+ if (!streams) {
+ process.nextTick(endStream)
+ return
+ }
+ if (!Array.isArray(streams)) {
+ streams = [streams]
+ }
+
+ let pipesCount = streams.length + 1
+
+ function next () {
+ if (--pipesCount > 0) {
+ return
+ }
+ merging = false
+ mergeStream()
+ }
+
+ function pipe (stream) {
+ function onend () {
+ stream.removeListener('merge2UnpipeEnd', onend)
+ stream.removeListener('end', onend)
+ if (doPipeError) {
+ stream.removeListener('error', onerror)
+ }
+ next()
+ }
+ function onerror (err) {
+ mergedStream.emit('error', err)
+ }
+ // skip ended stream
+ if (stream._readableState.endEmitted) {
+ return next()
+ }
+
+ stream.on('merge2UnpipeEnd', onend)
+ stream.on('end', onend)
+
+ if (doPipeError) {
+ stream.on('error', onerror)
+ }
+
+ stream.pipe(mergedStream, { end: false })
+ // compatible for old stream
+ stream.resume()
+ }
+
+ for (let i = 0; i < streams.length; i++) {
+ pipe(streams[i])
+ }
+
+ next()
+ }
+
+ function endStream () {
+ merging = false
+ // emit 'queueDrain' when all streams merged.
+ mergedStream.emit('queueDrain')
+ if (doEnd) {
+ mergedStream.end()
+ }
+ }
+
+ mergedStream.setMaxListeners(0)
+ mergedStream.add = addStream
+ mergedStream.on('unpipe', function (stream) {
+ stream.emit('merge2UnpipeEnd')
+ })
+
+ if (args.length) {
+ addStream.apply(null, args)
+ }
+ return mergedStream
+}
+
+// check and pause streams for pipe.
+function pauseStreams (streams, options) {
+ if (!Array.isArray(streams)) {
+ // Backwards-compat with old-style streams
+ if (!streams._readableState && streams.pipe) {
+ streams = streams.pipe(PassThrough(options))
+ }
+ if (!streams._readableState || !streams.pause || !streams.pipe) {
+ throw new Error('Only readable stream can be merged.')
+ }
+ streams.pause()
+ } else {
+ for (let i = 0, len = streams.length; i < len; i++) {
+ streams[i] = pauseStreams(streams[i], options)
+ }
+ }
+ return streams
+}
diff --git a/node_modules/merge2/package.json b/node_modules/merge2/package.json
new file mode 100644
index 0000000..7777307
--- /dev/null
+++ b/node_modules/merge2/package.json
@@ -0,0 +1,43 @@
+{
+ "name": "merge2",
+ "description": "Merge multiple streams into one stream in sequence or parallel.",
+ "authors": [
+ "Yan Qing "
+ ],
+ "license": "MIT",
+ "version": "1.4.1",
+ "main": "./index.js",
+ "repository": {
+ "type": "git",
+ "url": "git@github.com:teambition/merge2.git"
+ },
+ "homepage": "https://github.com/teambition/merge2",
+ "keywords": [
+ "merge2",
+ "multiple",
+ "sequence",
+ "parallel",
+ "merge",
+ "stream",
+ "merge stream",
+ "sync"
+ ],
+ "engines": {
+ "node": ">= 8"
+ },
+ "dependencies": {},
+ "devDependencies": {
+ "standard": "^14.3.4",
+ "through2": "^3.0.1",
+ "thunks": "^4.9.6",
+ "tman": "^1.10.0",
+ "to-through": "^2.0.0"
+ },
+ "scripts": {
+ "test": "standard && tman"
+ },
+ "files": [
+ "README.md",
+ "index.js"
+ ]
+}
diff --git a/node_modules/micromatch/LICENSE b/node_modules/micromatch/LICENSE
new file mode 100755
index 0000000..9af4a67
--- /dev/null
+++ b/node_modules/micromatch/LICENSE
@@ -0,0 +1,21 @@
+The MIT License (MIT)
+
+Copyright (c) 2014-present, Jon Schlinkert.
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.
diff --git a/node_modules/micromatch/README.md b/node_modules/micromatch/README.md
new file mode 100644
index 0000000..fd56336
--- /dev/null
+++ b/node_modules/micromatch/README.md
@@ -0,0 +1,1011 @@
+# micromatch [![NPM version](https://img.shields.io/npm/v/micromatch.svg?style=flat)](https://www.npmjs.com/package/micromatch) [![NPM monthly downloads](https://img.shields.io/npm/dm/micromatch.svg?style=flat)](https://npmjs.org/package/micromatch) [![NPM total downloads](https://img.shields.io/npm/dt/micromatch.svg?style=flat)](https://npmjs.org/package/micromatch) [![Tests](https://github.com/micromatch/micromatch/actions/workflows/test.yml/badge.svg)](https://github.com/micromatch/micromatch/actions/workflows/test.yml)
+
+> Glob matching for javascript/node.js. A replacement and faster alternative to minimatch and multimatch.
+
+Please consider following this project's author, [Jon Schlinkert](https://github.com/jonschlinkert), and consider starring the project to show your :heart: and support.
+
+## Table of Contents
+
+
+Details
+
+- [Install](#install)
+- [Quickstart](#quickstart)
+- [Why use micromatch?](#why-use-micromatch)
+ * [Matching features](#matching-features)
+- [Switching to micromatch](#switching-to-micromatch)
+ * [From minimatch](#from-minimatch)
+ * [From multimatch](#from-multimatch)
+- [API](#api)
+- [Options](#options)
+- [Options Examples](#options-examples)
+ * [options.basename](#optionsbasename)
+ * [options.bash](#optionsbash)
+ * [options.expandRange](#optionsexpandrange)
+ * [options.format](#optionsformat)
+ * [options.ignore](#optionsignore)
+ * [options.matchBase](#optionsmatchbase)
+ * [options.noextglob](#optionsnoextglob)
+ * [options.nonegate](#optionsnonegate)
+ * [options.noglobstar](#optionsnoglobstar)
+ * [options.nonull](#optionsnonull)
+ * [options.nullglob](#optionsnullglob)
+ * [options.onIgnore](#optionsonignore)
+ * [options.onMatch](#optionsonmatch)
+ * [options.onResult](#optionsonresult)
+ * [options.posixSlashes](#optionsposixslashes)
+ * [options.unescape](#optionsunescape)
+- [Extended globbing](#extended-globbing)
+ * [Extglobs](#extglobs)
+ * [Braces](#braces)
+ * [Regex character classes](#regex-character-classes)
+ * [Regex groups](#regex-groups)
+ * [POSIX bracket expressions](#posix-bracket-expressions)
+- [Notes](#notes)
+ * [Bash 4.3 parity](#bash-43-parity)
+ * [Backslashes](#backslashes)
+- [Benchmarks](#benchmarks)
+ * [Running benchmarks](#running-benchmarks)
+ * [Latest results](#latest-results)
+- [Contributing](#contributing)
+- [About](#about)
+
+
+
+## Install
+
+Install with [npm](https://www.npmjs.com/) (requires [Node.js](https://nodejs.org/en/) >=8.6):
+
+```sh
+$ npm install --save micromatch
+```
+
+## Quickstart
+
+```js
+const micromatch = require('micromatch');
+// micromatch(list, patterns[, options]);
+```
+
+The [main export](#micromatch) takes a list of strings and one or more glob patterns:
+
+```js
+console.log(micromatch(['foo', 'bar', 'baz', 'qux'], ['f*', 'b*'])) //=> ['foo', 'bar', 'baz']
+console.log(micromatch(['foo', 'bar', 'baz', 'qux'], ['*', '!b*'])) //=> ['foo', 'qux']
+```
+
+Use [.isMatch()](#ismatch) to for boolean matching:
+
+```js
+console.log(micromatch.isMatch('foo', 'f*')) //=> true
+console.log(micromatch.isMatch('foo', ['b*', 'f*'])) //=> true
+```
+
+[Switching](#switching-to-micromatch) from minimatch and multimatch is easy!
+
+
+
+## Why use micromatch?
+
+> micromatch is a [replacement](#switching-to-micromatch) for minimatch and multimatch
+
+* Supports all of the same matching features as [minimatch](https://github.com/isaacs/minimatch) and [multimatch](https://github.com/sindresorhus/multimatch)
+* More complete support for the Bash 4.3 specification than minimatch and multimatch. Micromatch passes _all of the spec tests_ from bash, including some that bash still fails.
+* **Fast & Performant** - Loads in about 5ms and performs [fast matches](#benchmarks).
+* **Glob matching** - Using wildcards (`*` and `?`), globstars (`**`) for nested directories
+* **[Advanced globbing](#extended-globbing)** - Supports [extglobs](#extglobs), [braces](#braces-1), and [POSIX brackets](#posix-bracket-expressions), and support for escaping special characters with `\` or quotes.
+* **Accurate** - Covers more scenarios [than minimatch](https://github.com/yarnpkg/yarn/pull/3339)
+* **Well tested** - More than 5,000 [test assertions](./test)
+* **Windows support** - More reliable windows support than minimatch and multimatch.
+* **[Safe](https://github.com/micromatch/braces#braces-is-safe)** - Micromatch is not subject to DoS with brace patterns like minimatch and multimatch.
+
+### Matching features
+
+* Support for multiple glob patterns (no need for wrappers like multimatch)
+* Wildcards (`**`, `*.js`)
+* Negation (`'!a/*.js'`, `'*!(b).js'`)
+* [extglobs](#extglobs) (`+(x|y)`, `!(a|b)`)
+* [POSIX character classes](#posix-bracket-expressions) (`[[:alpha:][:digit:]]`)
+* [brace expansion](https://github.com/micromatch/braces) (`foo/{1..5}.md`, `bar/{a,b,c}.js`)
+* regex character classes (`foo-[1-5].js`)
+* regex logical "or" (`foo/(abc|xyz).js`)
+
+You can mix and match these features to create whatever patterns you need!
+
+## Switching to micromatch
+
+_(There is one notable difference between micromatch and minimatch in regards to how backslashes are handled. See [the notes about backslashes](#backslashes) for more information.)_
+
+### From minimatch
+
+Use [micromatch.isMatch()](#ismatch) instead of `minimatch()`:
+
+```js
+console.log(micromatch.isMatch('foo', 'b*')); //=> false
+```
+
+Use [micromatch.match()](#match) instead of `minimatch.match()`:
+
+```js
+console.log(micromatch.match(['foo', 'bar'], 'b*')); //=> 'bar'
+```
+
+### From multimatch
+
+Same signature:
+
+```js
+console.log(micromatch(['foo', 'bar', 'baz'], ['f*', '*z'])); //=> ['foo', 'baz']
+```
+
+## API
+
+**Params**
+
+* `list` **{String|Array}**: List of strings to match.
+* `patterns` **{String|Array}**: One or more glob patterns to use for matching.
+* `options` **{Object}**: See available [options](#options)
+* `returns` **{Array}**: Returns an array of matches
+
+**Example**
+
+```js
+const mm = require('micromatch');
+// mm(list, patterns[, options]);
+
+console.log(mm(['a.js', 'a.txt'], ['*.js']));
+//=> [ 'a.js' ]
+```
+
+### [.matcher](index.js#L104)
+
+Returns a matcher function from the given glob `pattern` and `options`. The returned function takes a string to match as its only argument and returns true if the string is a match.
+
+**Params**
+
+* `pattern` **{String}**: Glob pattern
+* `options` **{Object}**
+* `returns` **{Function}**: Returns a matcher function.
+
+**Example**
+
+```js
+const mm = require('micromatch');
+// mm.matcher(pattern[, options]);
+
+const isMatch = mm.matcher('*.!(*a)');
+console.log(isMatch('a.a')); //=> false
+console.log(isMatch('a.b')); //=> true
+```
+
+### [.isMatch](index.js#L123)
+
+Returns true if **any** of the given glob `patterns` match the specified `string`.
+
+**Params**
+
+* `str` **{String}**: The string to test.
+* `patterns` **{String|Array}**: One or more glob patterns to use for matching.
+* `[options]` **{Object}**: See available [options](#options).
+* `returns` **{Boolean}**: Returns true if any patterns match `str`
+
+**Example**
+
+```js
+const mm = require('micromatch');
+// mm.isMatch(string, patterns[, options]);
+
+console.log(mm.isMatch('a.a', ['b.*', '*.a'])); //=> true
+console.log(mm.isMatch('a.a', 'b.*')); //=> false
+```
+
+### [.not](index.js#L148)
+
+Returns a list of strings that _**do not match any**_ of the given `patterns`.
+
+**Params**
+
+* `list` **{Array}**: Array of strings to match.
+* `patterns` **{String|Array}**: One or more glob pattern to use for matching.
+* `options` **{Object}**: See available [options](#options) for changing how matches are performed
+* `returns` **{Array}**: Returns an array of strings that **do not match** the given patterns.
+
+**Example**
+
+```js
+const mm = require('micromatch');
+// mm.not(list, patterns[, options]);
+
+console.log(mm.not(['a.a', 'b.b', 'c.c'], '*.a'));
+//=> ['b.b', 'c.c']
+```
+
+### [.contains](index.js#L188)
+
+Returns true if the given `string` contains the given pattern. Similar to [.isMatch](#isMatch) but the pattern can match any part of the string.
+
+**Params**
+
+* `str` **{String}**: The string to match.
+* `patterns` **{String|Array}**: Glob pattern to use for matching.
+* `options` **{Object}**: See available [options](#options) for changing how matches are performed
+* `returns` **{Boolean}**: Returns true if any of the patterns matches any part of `str`.
+
+**Example**
+
+```js
+var mm = require('micromatch');
+// mm.contains(string, pattern[, options]);
+
+console.log(mm.contains('aa/bb/cc', '*b'));
+//=> true
+console.log(mm.contains('aa/bb/cc', '*d'));
+//=> false
+```
+
+### [.matchKeys](index.js#L230)
+
+Filter the keys of the given object with the given `glob` pattern and `options`. Does not attempt to match nested keys. If you need this feature, use [glob-object](https://github.com/jonschlinkert/glob-object) instead.
+
+**Params**
+
+* `object` **{Object}**: The object with keys to filter.
+* `patterns` **{String|Array}**: One or more glob patterns to use for matching.
+* `options` **{Object}**: See available [options](#options) for changing how matches are performed
+* `returns` **{Object}**: Returns an object with only keys that match the given patterns.
+
+**Example**
+
+```js
+const mm = require('micromatch');
+// mm.matchKeys(object, patterns[, options]);
+
+const obj = { aa: 'a', ab: 'b', ac: 'c' };
+console.log(mm.matchKeys(obj, '*b'));
+//=> { ab: 'b' }
+```
+
+### [.some](index.js#L259)
+
+Returns true if some of the strings in the given `list` match any of the given glob `patterns`.
+
+**Params**
+
+* `list` **{String|Array}**: The string or array of strings to test. Returns as soon as the first match is found.
+* `patterns` **{String|Array}**: One or more glob patterns to use for matching.
+* `options` **{Object}**: See available [options](#options) for changing how matches are performed
+* `returns` **{Boolean}**: Returns true if any `patterns` matches any of the strings in `list`
+
+**Example**
+
+```js
+const mm = require('micromatch');
+// mm.some(list, patterns[, options]);
+
+console.log(mm.some(['foo.js', 'bar.js'], ['*.js', '!foo.js']));
+// true
+console.log(mm.some(['foo.js'], ['*.js', '!foo.js']));
+// false
+```
+
+### [.every](index.js#L295)
+
+Returns true if every string in the given `list` matches any of the given glob `patterns`.
+
+**Params**
+
+* `list` **{String|Array}**: The string or array of strings to test.
+* `patterns` **{String|Array}**: One or more glob patterns to use for matching.
+* `options` **{Object}**: See available [options](#options) for changing how matches are performed
+* `returns` **{Boolean}**: Returns true if all `patterns` matches all of the strings in `list`
+
+**Example**
+
+```js
+const mm = require('micromatch');
+// mm.every(list, patterns[, options]);
+
+console.log(mm.every('foo.js', ['foo.js']));
+// true
+console.log(mm.every(['foo.js', 'bar.js'], ['*.js']));
+// true
+console.log(mm.every(['foo.js', 'bar.js'], ['*.js', '!foo.js']));
+// false
+console.log(mm.every(['foo.js'], ['*.js', '!foo.js']));
+// false
+```
+
+### [.all](index.js#L334)
+
+Returns true if **all** of the given `patterns` match the specified string.
+
+**Params**
+
+* `str` **{String|Array}**: The string to test.
+* `patterns` **{String|Array}**: One or more glob patterns to use for matching.
+* `options` **{Object}**: See available [options](#options) for changing how matches are performed
+* `returns` **{Boolean}**: Returns true if any patterns match `str`
+
+**Example**
+
+```js
+const mm = require('micromatch');
+// mm.all(string, patterns[, options]);
+
+console.log(mm.all('foo.js', ['foo.js']));
+// true
+
+console.log(mm.all('foo.js', ['*.js', '!foo.js']));
+// false
+
+console.log(mm.all('foo.js', ['*.js', 'foo.js']));
+// true
+
+console.log(mm.all('foo.js', ['*.js', 'f*', '*o*', '*o.js']));
+// true
+```
+
+### [.capture](index.js#L361)
+
+Returns an array of matches captured by `pattern` in `string, or`null` if the pattern did not match.
+
+**Params**
+
+* `glob` **{String}**: Glob pattern to use for matching.
+* `input` **{String}**: String to match
+* `options` **{Object}**: See available [options](#options) for changing how matches are performed
+* `returns` **{Array|null}**: Returns an array of captures if the input matches the glob pattern, otherwise `null`.
+
+**Example**
+
+```js
+const mm = require('micromatch');
+// mm.capture(pattern, string[, options]);
+
+console.log(mm.capture('test/*.js', 'test/foo.js'));
+//=> ['foo']
+console.log(mm.capture('test/*.js', 'foo/bar.css'));
+//=> null
+```
+
+### [.makeRe](index.js#L387)
+
+Create a regular expression from the given glob `pattern`.
+
+**Params**
+
+* `pattern` **{String}**: A glob pattern to convert to regex.
+* `options` **{Object}**
+* `returns` **{RegExp}**: Returns a regex created from the given pattern.
+
+**Example**
+
+```js
+const mm = require('micromatch');
+// mm.makeRe(pattern[, options]);
+
+console.log(mm.makeRe('*.js'));
+//=> /^(?:(\.[\\\/])?(?!\.)(?=.)[^\/]*?\.js)$/
+```
+
+### [.scan](index.js#L403)
+
+Scan a glob pattern to separate the pattern into segments. Used by the [split](#split) method.
+
+**Params**
+
+* `pattern` **{String}**
+* `options` **{Object}**
+* `returns` **{Object}**: Returns an object with
+
+**Example**
+
+```js
+const mm = require('micromatch');
+const state = mm.scan(pattern[, options]);
+```
+
+### [.parse](index.js#L419)
+
+Parse a glob pattern to create the source string for a regular expression.
+
+**Params**
+
+* `glob` **{String}**
+* `options` **{Object}**
+* `returns` **{Object}**: Returns an object with useful properties and output to be used as regex source string.
+
+**Example**
+
+```js
+const mm = require('micromatch');
+const state = mm.parse(pattern[, options]);
+```
+
+### [.braces](index.js#L446)
+
+Process the given brace `pattern`.
+
+**Params**
+
+* `pattern` **{String}**: String with brace pattern to process.
+* `options` **{Object}**: Any [options](#options) to change how expansion is performed. See the [braces](https://github.com/micromatch/braces) library for all available options.
+* `returns` **{Array}**
+
+**Example**
+
+```js
+const { braces } = require('micromatch');
+console.log(braces('foo/{a,b,c}/bar'));
+//=> [ 'foo/(a|b|c)/bar' ]
+
+console.log(braces('foo/{a,b,c}/bar', { expand: true }));
+//=> [ 'foo/a/bar', 'foo/b/bar', 'foo/c/bar' ]
+```
+
+## Options
+
+| **Option** | **Type** | **Default value** | **Description** |
+| --- | --- | --- | --- |
+| `basename` | `boolean` | `false` | If set, then patterns without slashes will be matched against the basename of the path if it contains slashes. For example, `a?b` would match the path `/xyz/123/acb`, but not `/xyz/acb/123`. |
+| `bash` | `boolean` | `false` | Follow bash matching rules more strictly - disallows backslashes as escape characters, and treats single stars as globstars (`**`). |
+| `capture` | `boolean` | `undefined` | Return regex matches in supporting methods. |
+| `contains` | `boolean` | `undefined` | Allows glob to match any part of the given string(s). |
+| `cwd` | `string` | `process.cwd()` | Current working directory. Used by `picomatch.split()` |
+| `debug` | `boolean` | `undefined` | Debug regular expressions when an error is thrown. |
+| `dot` | `boolean` | `false` | Match dotfiles. Otherwise dotfiles are ignored unless a `.` is explicitly defined in the pattern. |
+| `expandRange` | `function` | `undefined` | Custom function for expanding ranges in brace patterns, such as `{a..z}`. The function receives the range values as two arguments, and it must return a string to be used in the generated regex. It's recommended that returned strings be wrapped in parentheses. This option is overridden by the `expandBrace` option. |
+| `failglob` | `boolean` | `false` | Similar to the `failglob` behavior in Bash, throws an error when no matches are found. Based on the bash option of the same name. |
+| `fastpaths` | `boolean` | `true` | To speed up processing, full parsing is skipped for a handful common glob patterns. Disable this behavior by setting this option to `false`. |
+| `flags` | `boolean` | `undefined` | Regex flags to use in the generated regex. If defined, the `nocase` option will be overridden. |
+| [format](#optionsformat) | `function` | `undefined` | Custom function for formatting the returned string. This is useful for removing leading slashes, converting Windows paths to Posix paths, etc. |
+| `ignore` | `array\|string` | `undefined` | One or more glob patterns for excluding strings that should not be matched from the result. |
+| `keepQuotes` | `boolean` | `false` | Retain quotes in the generated regex, since quotes may also be used as an alternative to backslashes. |
+| `literalBrackets` | `boolean` | `undefined` | When `true`, brackets in the glob pattern will be escaped so that only literal brackets will be matched. |
+| `lookbehinds` | `boolean` | `true` | Support regex positive and negative lookbehinds. Note that you must be using Node 8.1.10 or higher to enable regex lookbehinds. |
+| `matchBase` | `boolean` | `false` | Alias for `basename` |
+| `maxLength` | `boolean` | `65536` | Limit the max length of the input string. An error is thrown if the input string is longer than this value. |
+| `nobrace` | `boolean` | `false` | Disable brace matching, so that `{a,b}` and `{1..3}` would be treated as literal characters. |
+| `nobracket` | `boolean` | `undefined` | Disable matching with regex brackets. |
+| `nocase` | `boolean` | `false` | Perform case-insensitive matching. Equivalent to the regex `i` flag. Note that this option is ignored when the `flags` option is defined. |
+| `nodupes` | `boolean` | `true` | Deprecated, use `nounique` instead. This option will be removed in a future major release. By default duplicates are removed. Disable uniquification by setting this option to false. |
+| `noext` | `boolean` | `false` | Alias for `noextglob` |
+| `noextglob` | `boolean` | `false` | Disable support for matching with [extglobs](#extglobs) (like `+(a\|b)`) |
+| `noglobstar` | `boolean` | `false` | Disable support for matching nested directories with globstars (`**`) |
+| `nonegate` | `boolean` | `false` | Disable support for negating with leading `!` |
+| `noquantifiers` | `boolean` | `false` | Disable support for regex quantifiers (like `a{1,2}`) and treat them as brace patterns to be expanded. |
+| [onIgnore](#optionsonIgnore) | `function` | `undefined` | Function to be called on ignored items. |
+| [onMatch](#optionsonMatch) | `function` | `undefined` | Function to be called on matched items. |
+| [onResult](#optionsonResult) | `function` | `undefined` | Function to be called on all items, regardless of whether or not they are matched or ignored. |
+| `posix` | `boolean` | `false` | Support [POSIX character classes](#posix-bracket-expressions) ("posix brackets"). |
+| `posixSlashes` | `boolean` | `undefined` | Convert all slashes in file paths to forward slashes. This does not convert slashes in the glob pattern itself |
+| `prepend` | `string` | `undefined` | String to prepend to the generated regex used for matching. |
+| `regex` | `boolean` | `false` | Use regular expression rules for `+` (instead of matching literal `+`), and for stars that follow closing parentheses or brackets (as in `)*` and `]*`). |
+| `strictBrackets` | `boolean` | `undefined` | Throw an error if brackets, braces, or parens are imbalanced. |
+| `strictSlashes` | `boolean` | `undefined` | When true, picomatch won't match trailing slashes with single stars. |
+| `unescape` | `boolean` | `undefined` | Remove preceding backslashes from escaped glob characters before creating the regular expression to perform matches. |
+| `unixify` | `boolean` | `undefined` | Alias for `posixSlashes`, for backwards compatitibility. |
+
+## Options Examples
+
+### options.basename
+
+Allow glob patterns without slashes to match a file path based on its basename. Same behavior as [minimatch](https://github.com/isaacs/minimatch) option `matchBase`.
+
+**Type**: `Boolean`
+
+**Default**: `false`
+
+**Example**
+
+```js
+micromatch(['a/b.js', 'a/c.md'], '*.js');
+//=> []
+
+micromatch(['a/b.js', 'a/c.md'], '*.js', { basename: true });
+//=> ['a/b.js']
+```
+
+### options.bash
+
+Enabled by default, this option enforces bash-like behavior with stars immediately following a bracket expression. Bash bracket expressions are similar to regex character classes, but unlike regex, a star following a bracket expression **does not repeat the bracketed characters**. Instead, the star is treated the same as any other star.
+
+**Type**: `Boolean`
+
+**Default**: `true`
+
+**Example**
+
+```js
+const files = ['abc', 'ajz'];
+console.log(micromatch(files, '[a-c]*'));
+//=> ['abc', 'ajz']
+
+console.log(micromatch(files, '[a-c]*', { bash: false }));
+```
+
+### options.expandRange
+
+**Type**: `function`
+
+**Default**: `undefined`
+
+Custom function for expanding ranges in brace patterns. The [fill-range](https://github.com/jonschlinkert/fill-range) library is ideal for this purpose, or you can use custom code to do whatever you need.
+
+**Example**
+
+The following example shows how to create a glob that matches a numeric folder name between `01` and `25`, with leading zeros.
+
+```js
+const fill = require('fill-range');
+const regex = micromatch.makeRe('foo/{01..25}/bar', {
+ expandRange(a, b) {
+ return `(${fill(a, b, { toRegex: true })})`;
+ }
+});
+
+console.log(regex)
+//=> /^(?:foo\/((?:0[1-9]|1[0-9]|2[0-5]))\/bar)$/
+
+console.log(regex.test('foo/00/bar')) // false
+console.log(regex.test('foo/01/bar')) // true
+console.log(regex.test('foo/10/bar')) // true
+console.log(regex.test('foo/22/bar')) // true
+console.log(regex.test('foo/25/bar')) // true
+console.log(regex.test('foo/26/bar')) // false
+```
+
+### options.format
+
+**Type**: `function`
+
+**Default**: `undefined`
+
+Custom function for formatting strings before they're matched.
+
+**Example**
+
+```js
+// strip leading './' from strings
+const format = str => str.replace(/^\.\//, '');
+const isMatch = picomatch('foo/*.js', { format });
+console.log(isMatch('./foo/bar.js')) //=> true
+```
+
+### options.ignore
+
+String or array of glob patterns to match files to ignore.
+
+**Type**: `String|Array`
+
+**Default**: `undefined`
+
+```js
+const isMatch = micromatch.matcher('*', { ignore: 'f*' });
+console.log(isMatch('foo')) //=> false
+console.log(isMatch('bar')) //=> true
+console.log(isMatch('baz')) //=> true
+```
+
+### options.matchBase
+
+Alias for [options.basename](#options-basename).
+
+### options.noextglob
+
+Disable extglob support, so that [extglobs](#extglobs) are regarded as literal characters.
+
+**Type**: `Boolean`
+
+**Default**: `undefined`
+
+**Examples**
+
+```js
+console.log(micromatch(['a/z', 'a/b', 'a/!(z)'], 'a/!(z)'));
+//=> ['a/b', 'a/!(z)']
+
+console.log(micromatch(['a/z', 'a/b', 'a/!(z)'], 'a/!(z)', { noextglob: true }));
+//=> ['a/!(z)'] (matches only as literal characters)
+```
+
+### options.nonegate
+
+Disallow negation (`!`) patterns, and treat leading `!` as a literal character to match.
+
+**Type**: `Boolean`
+
+**Default**: `undefined`
+
+### options.noglobstar
+
+Disable matching with globstars (`**`).
+
+**Type**: `Boolean`
+
+**Default**: `undefined`
+
+```js
+micromatch(['a/b', 'a/b/c', 'a/b/c/d'], 'a/**');
+//=> ['a/b', 'a/b/c', 'a/b/c/d']
+
+micromatch(['a/b', 'a/b/c', 'a/b/c/d'], 'a/**', {noglobstar: true});
+//=> ['a/b']
+```
+
+### options.nonull
+
+Alias for [options.nullglob](#options-nullglob).
+
+### options.nullglob
+
+If `true`, when no matches are found the actual (arrayified) glob pattern is returned instead of an empty array. Same behavior as [minimatch](https://github.com/isaacs/minimatch) option `nonull`.
+
+**Type**: `Boolean`
+
+**Default**: `undefined`
+
+### options.onIgnore
+
+```js
+const onIgnore = ({ glob, regex, input, output }) => {
+ console.log({ glob, regex, input, output });
+ // { glob: '*', regex: /^(?:(?!\.)(?=.)[^\/]*?\/?)$/, input: 'foo', output: 'foo' }
+};
+
+const isMatch = micromatch.matcher('*', { onIgnore, ignore: 'f*' });
+isMatch('foo');
+isMatch('bar');
+isMatch('baz');
+```
+
+### options.onMatch
+
+```js
+const onMatch = ({ glob, regex, input, output }) => {
+ console.log({ input, output });
+ // { input: 'some\\path', output: 'some/path' }
+ // { input: 'some\\path', output: 'some/path' }
+ // { input: 'some\\path', output: 'some/path' }
+};
+
+const isMatch = micromatch.matcher('**', { onMatch, posixSlashes: true });
+isMatch('some\\path');
+isMatch('some\\path');
+isMatch('some\\path');
+```
+
+### options.onResult
+
+```js
+const onResult = ({ glob, regex, input, output }) => {
+ console.log({ glob, regex, input, output });
+};
+
+const isMatch = micromatch('*', { onResult, ignore: 'f*' });
+isMatch('foo');
+isMatch('bar');
+isMatch('baz');
+```
+
+### options.posixSlashes
+
+Convert path separators on returned files to posix/unix-style forward slashes. Aliased as `unixify` for backwards compatibility.
+
+**Type**: `Boolean`
+
+**Default**: `true` on windows, `false` everywhere else.
+
+**Example**
+
+```js
+console.log(micromatch.match(['a\\b\\c'], 'a/**'));
+//=> ['a/b/c']
+
+console.log(micromatch.match(['a\\b\\c'], { posixSlashes: false }));
+//=> ['a\\b\\c']
+```
+
+### options.unescape
+
+Remove backslashes from escaped glob characters before creating the regular expression to perform matches.
+
+**Type**: `Boolean`
+
+**Default**: `undefined`
+
+**Example**
+
+In this example we want to match a literal `*`:
+
+```js
+console.log(micromatch.match(['abc', 'a\\*c'], 'a\\*c'));
+//=> ['a\\*c']
+
+console.log(micromatch.match(['abc', 'a\\*c'], 'a\\*c', { unescape: true }));
+//=> ['a*c']
+```
+
+
+
+
+## Extended globbing
+
+Micromatch supports the following extended globbing features.
+
+### Extglobs
+
+Extended globbing, as described by the bash man page:
+
+| **pattern** | **regex equivalent** | **description** |
+| --- | --- | --- |
+| `?(pattern)` | `(pattern)?` | Matches zero or one occurrence of the given patterns |
+| `*(pattern)` | `(pattern)*` | Matches zero or more occurrences of the given patterns |
+| `+(pattern)` | `(pattern)+` | Matches one or more occurrences of the given patterns |
+| `@(pattern)` | `(pattern)` * | Matches one of the given patterns |
+| `!(pattern)` | N/A (equivalent regex is much more complicated) | Matches anything except one of the given patterns |
+
+* Note that `@` isn't a regex character.
+
+### Braces
+
+Brace patterns can be used to match specific ranges or sets of characters.
+
+**Example**
+
+The pattern `{f,b}*/{1..3}/{b,q}*` would match any of following strings:
+
+```
+foo/1/bar
+foo/2/bar
+foo/3/bar
+baz/1/qux
+baz/2/qux
+baz/3/qux
+```
+
+Visit [braces](https://github.com/micromatch/braces) to see the full range of features and options related to brace expansion, or to create brace matching or expansion related issues.
+
+### Regex character classes
+
+Given the list: `['a.js', 'b.js', 'c.js', 'd.js', 'E.js']`:
+
+* `[ac].js`: matches both `a` and `c`, returning `['a.js', 'c.js']`
+* `[b-d].js`: matches from `b` to `d`, returning `['b.js', 'c.js', 'd.js']`
+* `a/[A-Z].js`: matches and uppercase letter, returning `['a/E.md']`
+
+Learn about [regex character classes](http://www.regular-expressions.info/charclass.html).
+
+### Regex groups
+
+Given `['a.js', 'b.js', 'c.js', 'd.js', 'E.js']`:
+
+* `(a|c).js`: would match either `a` or `c`, returning `['a.js', 'c.js']`
+* `(b|d).js`: would match either `b` or `d`, returning `['b.js', 'd.js']`
+* `(b|[A-Z]).js`: would match either `b` or an uppercase letter, returning `['b.js', 'E.js']`
+
+As with regex, parens can be nested, so patterns like `((a|b)|c)/b` will work. Although brace expansion might be friendlier to use, depending on preference.
+
+### POSIX bracket expressions
+
+POSIX brackets are intended to be more user-friendly than regex character classes. This of course is in the eye of the beholder.
+
+**Example**
+
+```js
+console.log(micromatch.isMatch('a1', '[[:alpha:][:digit:]]')) //=> true
+console.log(micromatch.isMatch('a1', '[[:alpha:][:alpha:]]')) //=> false
+```
+
+***
+
+## Notes
+
+### Bash 4.3 parity
+
+Whenever possible matching behavior is based on behavior Bash 4.3, which is mostly consistent with minimatch.
+
+However, it's suprising how many edge cases and rabbit holes there are with glob matching, and since there is no real glob specification, and micromatch is more accurate than both Bash and minimatch, there are cases where best-guesses were made for behavior. In a few cases where Bash had no answers, we used wildmatch (used by git) as a fallback.
+
+### Backslashes
+
+There is an important, notable difference between minimatch and micromatch _in regards to how backslashes are handled_ in glob patterns.
+
+* Micromatch exclusively and explicitly reserves backslashes for escaping characters in a glob pattern, even on windows, which is consistent with bash behavior. _More importantly, unescaping globs can result in unsafe regular expressions_.
+* Minimatch converts all backslashes to forward slashes, which means you can't use backslashes to escape any characters in your glob patterns.
+
+We made this decision for micromatch for a couple of reasons:
+
+* Consistency with bash conventions.
+* Glob patterns are not filepaths. They are a type of [regular language](https://en.wikipedia.org/wiki/Regular_language) that is converted to a JavaScript regular expression. Thus, when forward slashes are defined in a glob pattern, the resulting regular expression will match windows or POSIX path separators just fine.
+
+**A note about joining paths to globs**
+
+Note that when you pass something like `path.join('foo', '*')` to micromatch, you are creating a filepath and expecting it to still work as a glob pattern. This causes problems on windows, since the `path.sep` is `\\`.
+
+In other words, since `\\` is reserved as an escape character in globs, on windows `path.join('foo', '*')` would result in `foo\\*`, which tells micromatch to match `*` as a literal character. This is the same behavior as bash.
+
+To solve this, you might be inspired to do something like `'foo\\*'.replace(/\\/g, '/')`, but this causes another, potentially much more serious, problem.
+
+## Benchmarks
+
+### Running benchmarks
+
+Install dependencies for running benchmarks:
+
+```sh
+$ cd bench && npm install
+```
+
+Run the benchmarks:
+
+```sh
+$ npm run bench
+```
+
+### Latest results
+
+As of March 24, 2022 (longer bars are better):
+
+```sh
+# .makeRe star
+ micromatch x 2,232,802 ops/sec ±2.34% (89 runs sampled))
+ minimatch x 781,018 ops/sec ±6.74% (92 runs sampled))
+
+# .makeRe star; dot=true
+ micromatch x 1,863,453 ops/sec ±0.74% (93 runs sampled)
+ minimatch x 723,105 ops/sec ±0.75% (93 runs sampled)
+
+# .makeRe globstar
+ micromatch x 1,624,179 ops/sec ±2.22% (91 runs sampled)
+ minimatch x 1,117,230 ops/sec ±2.78% (86 runs sampled))
+
+# .makeRe globstars
+ micromatch x 1,658,642 ops/sec ±0.86% (92 runs sampled)
+ minimatch x 741,224 ops/sec ±1.24% (89 runs sampled))
+
+# .makeRe with leading star
+ micromatch x 1,525,014 ops/sec ±1.63% (90 runs sampled)
+ minimatch x 561,074 ops/sec ±3.07% (89 runs sampled)
+
+# .makeRe - braces
+ micromatch x 172,478 ops/sec ±2.37% (78 runs sampled)
+ minimatch x 96,087 ops/sec ±2.34% (88 runs sampled)))
+
+# .makeRe braces - range (expanded)
+ micromatch x 26,973 ops/sec ±0.84% (89 runs sampled)
+ minimatch x 3,023 ops/sec ±0.99% (90 runs sampled))
+
+# .makeRe braces - range (compiled)
+ micromatch x 152,892 ops/sec ±1.67% (83 runs sampled)
+ minimatch x 992 ops/sec ±3.50% (89 runs sampled)d))
+
+# .makeRe braces - nested ranges (expanded)
+ micromatch x 15,816 ops/sec ±13.05% (80 runs sampled)
+ minimatch x 2,953 ops/sec ±1.64% (91 runs sampled)
+
+# .makeRe braces - nested ranges (compiled)
+ micromatch x 110,881 ops/sec ±1.85% (82 runs sampled)
+ minimatch x 1,008 ops/sec ±1.51% (91 runs sampled)
+
+# .makeRe braces - set (compiled)
+ micromatch x 134,930 ops/sec ±3.54% (63 runs sampled))
+ minimatch x 43,242 ops/sec ±0.60% (93 runs sampled)
+
+# .makeRe braces - nested sets (compiled)
+ micromatch x 94,455 ops/sec ±1.74% (69 runs sampled))
+ minimatch x 27,720 ops/sec ±1.84% (93 runs sampled))
+```
+
+## Contributing
+
+All contributions are welcome! Please read [the contributing guide](.github/contributing.md) to get started.
+
+**Bug reports**
+
+Please create an issue if you encounter a bug or matching behavior that doesn't seem correct. If you find a matching-related issue, please:
+
+* [research existing issues first](../../issues) (open and closed)
+* visit the [GNU Bash documentation](https://www.gnu.org/software/bash/manual/) to see how Bash deals with the pattern
+* visit the [minimatch](https://github.com/isaacs/minimatch) documentation to cross-check expected behavior in node.js
+* if all else fails, since there is no real specification for globs we will probably need to discuss expected behavior and decide how to resolve it. which means any detail you can provide to help with this discussion would be greatly appreciated.
+
+**Platform issues**
+
+It's important to us that micromatch work consistently on all platforms. If you encounter any platform-specific matching or path related issues, please let us know (pull requests are also greatly appreciated).
+
+## About
+
+
+Contributing
+
+Pull requests and stars are always welcome. For bugs and feature requests, [please create an issue](../../issues/new).
+
+Please read the [contributing guide](.github/contributing.md) for advice on opening issues, pull requests, and coding standards.
+
+
+
+
+Running Tests
+
+Running and reviewing unit tests is a great way to get familiarized with a library and its API. You can install dependencies and run tests with the following command:
+
+```sh
+$ npm install && npm test
+```
+
+
+
+
+Building docs
+
+_(This project's readme.md is generated by [verb](https://github.com/verbose/verb-generate-readme), please don't edit the readme directly. Any changes to the readme must be made in the [.verb.md](.verb.md) readme template.)_
+
+To generate the readme, run the following command:
+
+```sh
+$ npm install -g verbose/verb#dev verb-generate-readme && verb
+```
+
+
+
+### Related projects
+
+You might also be interested in these projects:
+
+* [braces](https://www.npmjs.com/package/braces): Bash-like brace expansion, implemented in JavaScript. Safer than other brace expansion libs, with complete support… [more](https://github.com/micromatch/braces) | [homepage](https://github.com/micromatch/braces "Bash-like brace expansion, implemented in JavaScript. Safer than other brace expansion libs, with complete support for the Bash 4.3 braces specification, without sacrificing speed.")
+* [expand-brackets](https://www.npmjs.com/package/expand-brackets): Expand POSIX bracket expressions (character classes) in glob patterns. | [homepage](https://github.com/micromatch/expand-brackets "Expand POSIX bracket expressions (character classes) in glob patterns.")
+* [extglob](https://www.npmjs.com/package/extglob): Extended glob support for JavaScript. Adds (almost) the expressive power of regular expressions to glob… [more](https://github.com/micromatch/extglob) | [homepage](https://github.com/micromatch/extglob "Extended glob support for JavaScript. Adds (almost) the expressive power of regular expressions to glob patterns.")
+* [fill-range](https://www.npmjs.com/package/fill-range): Fill in a range of numbers or letters, optionally passing an increment or `step` to… [more](https://github.com/jonschlinkert/fill-range) | [homepage](https://github.com/jonschlinkert/fill-range "Fill in a range of numbers or letters, optionally passing an increment or `step` to use, or create a regex-compatible range with `options.toRegex`")
+* [nanomatch](https://www.npmjs.com/package/nanomatch): Fast, minimal glob matcher for node.js. Similar to micromatch, minimatch and multimatch, but complete Bash… [more](https://github.com/micromatch/nanomatch) | [homepage](https://github.com/micromatch/nanomatch "Fast, minimal glob matcher for node.js. Similar to micromatch, minimatch and multimatch, but complete Bash 4.3 wildcard support only (no support for exglobs, posix brackets or braces)")
+
+### Contributors
+
+| **Commits** | **Contributor** |
+| --- | --- |
+| 512 | [jonschlinkert](https://github.com/jonschlinkert) |
+| 12 | [es128](https://github.com/es128) |
+| 9 | [danez](https://github.com/danez) |
+| 8 | [doowb](https://github.com/doowb) |
+| 6 | [paulmillr](https://github.com/paulmillr) |
+| 5 | [mrmlnc](https://github.com/mrmlnc) |
+| 3 | [DrPizza](https://github.com/DrPizza) |
+| 2 | [TrySound](https://github.com/TrySound) |
+| 2 | [mceIdo](https://github.com/mceIdo) |
+| 2 | [Glazy](https://github.com/Glazy) |
+| 2 | [MartinKolarik](https://github.com/MartinKolarik) |
+| 2 | [antonyk](https://github.com/antonyk) |
+| 2 | [Tvrqvoise](https://github.com/Tvrqvoise) |
+| 1 | [amilajack](https://github.com/amilajack) |
+| 1 | [Cslove](https://github.com/Cslove) |
+| 1 | [devongovett](https://github.com/devongovett) |
+| 1 | [DianeLooney](https://github.com/DianeLooney) |
+| 1 | [UltCombo](https://github.com/UltCombo) |
+| 1 | [frangio](https://github.com/frangio) |
+| 1 | [joyceerhl](https://github.com/joyceerhl) |
+| 1 | [juszczykjakub](https://github.com/juszczykjakub) |
+| 1 | [muescha](https://github.com/muescha) |
+| 1 | [sebdeckers](https://github.com/sebdeckers) |
+| 1 | [tomByrer](https://github.com/tomByrer) |
+| 1 | [fidian](https://github.com/fidian) |
+| 1 | [curbengh](https://github.com/curbengh) |
+| 1 | [simlu](https://github.com/simlu) |
+| 1 | [wtgtybhertgeghgtwtg](https://github.com/wtgtybhertgeghgtwtg) |
+| 1 | [yvele](https://github.com/yvele) |
+
+### Author
+
+**Jon Schlinkert**
+
+* [GitHub Profile](https://github.com/jonschlinkert)
+* [Twitter Profile](https://twitter.com/jonschlinkert)
+* [LinkedIn Profile](https://linkedin.com/in/jonschlinkert)
+
+### License
+
+Copyright © 2022, [Jon Schlinkert](https://github.com/jonschlinkert).
+Released under the [MIT License](LICENSE).
+
+***
+
+_This file was generated by [verb-generate-readme](https://github.com/verbose/verb-generate-readme), v0.8.0, on March 24, 2022._
\ No newline at end of file
diff --git a/node_modules/micromatch/index.js b/node_modules/micromatch/index.js
new file mode 100644
index 0000000..1fad7f7
--- /dev/null
+++ b/node_modules/micromatch/index.js
@@ -0,0 +1,467 @@
+'use strict';
+
+const util = require('util');
+const braces = require('braces');
+const picomatch = require('picomatch');
+const utils = require('picomatch/lib/utils');
+const isEmptyString = val => val === '' || val === './';
+
+/**
+ * Returns an array of strings that match one or more glob patterns.
+ *
+ * ```js
+ * const mm = require('micromatch');
+ * // mm(list, patterns[, options]);
+ *
+ * console.log(mm(['a.js', 'a.txt'], ['*.js']));
+ * //=> [ 'a.js' ]
+ * ```
+ * @param {String|Array} `list` List of strings to match.
+ * @param {String|Array} `patterns` One or more glob patterns to use for matching.
+ * @param {Object} `options` See available [options](#options)
+ * @return {Array} Returns an array of matches
+ * @summary false
+ * @api public
+ */
+
+const micromatch = (list, patterns, options) => {
+ patterns = [].concat(patterns);
+ list = [].concat(list);
+
+ let omit = new Set();
+ let keep = new Set();
+ let items = new Set();
+ let negatives = 0;
+
+ let onResult = state => {
+ items.add(state.output);
+ if (options && options.onResult) {
+ options.onResult(state);
+ }
+ };
+
+ for (let i = 0; i < patterns.length; i++) {
+ let isMatch = picomatch(String(patterns[i]), { ...options, onResult }, true);
+ let negated = isMatch.state.negated || isMatch.state.negatedExtglob;
+ if (negated) negatives++;
+
+ for (let item of list) {
+ let matched = isMatch(item, true);
+
+ let match = negated ? !matched.isMatch : matched.isMatch;
+ if (!match) continue;
+
+ if (negated) {
+ omit.add(matched.output);
+ } else {
+ omit.delete(matched.output);
+ keep.add(matched.output);
+ }
+ }
+ }
+
+ let result = negatives === patterns.length ? [...items] : [...keep];
+ let matches = result.filter(item => !omit.has(item));
+
+ if (options && matches.length === 0) {
+ if (options.failglob === true) {
+ throw new Error(`No matches found for "${patterns.join(', ')}"`);
+ }
+
+ if (options.nonull === true || options.nullglob === true) {
+ return options.unescape ? patterns.map(p => p.replace(/\\/g, '')) : patterns;
+ }
+ }
+
+ return matches;
+};
+
+/**
+ * Backwards compatibility
+ */
+
+micromatch.match = micromatch;
+
+/**
+ * Returns a matcher function from the given glob `pattern` and `options`.
+ * The returned function takes a string to match as its only argument and returns
+ * true if the string is a match.
+ *
+ * ```js
+ * const mm = require('micromatch');
+ * // mm.matcher(pattern[, options]);
+ *
+ * const isMatch = mm.matcher('*.!(*a)');
+ * console.log(isMatch('a.a')); //=> false
+ * console.log(isMatch('a.b')); //=> true
+ * ```
+ * @param {String} `pattern` Glob pattern
+ * @param {Object} `options`
+ * @return {Function} Returns a matcher function.
+ * @api public
+ */
+
+micromatch.matcher = (pattern, options) => picomatch(pattern, options);
+
+/**
+ * Returns true if **any** of the given glob `patterns` match the specified `string`.
+ *
+ * ```js
+ * const mm = require('micromatch');
+ * // mm.isMatch(string, patterns[, options]);
+ *
+ * console.log(mm.isMatch('a.a', ['b.*', '*.a'])); //=> true
+ * console.log(mm.isMatch('a.a', 'b.*')); //=> false
+ * ```
+ * @param {String} `str` The string to test.
+ * @param {String|Array} `patterns` One or more glob patterns to use for matching.
+ * @param {Object} `[options]` See available [options](#options).
+ * @return {Boolean} Returns true if any patterns match `str`
+ * @api public
+ */
+
+micromatch.isMatch = (str, patterns, options) => picomatch(patterns, options)(str);
+
+/**
+ * Backwards compatibility
+ */
+
+micromatch.any = micromatch.isMatch;
+
+/**
+ * Returns a list of strings that _**do not match any**_ of the given `patterns`.
+ *
+ * ```js
+ * const mm = require('micromatch');
+ * // mm.not(list, patterns[, options]);
+ *
+ * console.log(mm.not(['a.a', 'b.b', 'c.c'], '*.a'));
+ * //=> ['b.b', 'c.c']
+ * ```
+ * @param {Array} `list` Array of strings to match.
+ * @param {String|Array} `patterns` One or more glob pattern to use for matching.
+ * @param {Object} `options` See available [options](#options) for changing how matches are performed
+ * @return {Array} Returns an array of strings that **do not match** the given patterns.
+ * @api public
+ */
+
+micromatch.not = (list, patterns, options = {}) => {
+ patterns = [].concat(patterns).map(String);
+ let result = new Set();
+ let items = [];
+
+ let onResult = state => {
+ if (options.onResult) options.onResult(state);
+ items.push(state.output);
+ };
+
+ let matches = new Set(micromatch(list, patterns, { ...options, onResult }));
+
+ for (let item of items) {
+ if (!matches.has(item)) {
+ result.add(item);
+ }
+ }
+ return [...result];
+};
+
+/**
+ * Returns true if the given `string` contains the given pattern. Similar
+ * to [.isMatch](#isMatch) but the pattern can match any part of the string.
+ *
+ * ```js
+ * var mm = require('micromatch');
+ * // mm.contains(string, pattern[, options]);
+ *
+ * console.log(mm.contains('aa/bb/cc', '*b'));
+ * //=> true
+ * console.log(mm.contains('aa/bb/cc', '*d'));
+ * //=> false
+ * ```
+ * @param {String} `str` The string to match.
+ * @param {String|Array} `patterns` Glob pattern to use for matching.
+ * @param {Object} `options` See available [options](#options) for changing how matches are performed
+ * @return {Boolean} Returns true if any of the patterns matches any part of `str`.
+ * @api public
+ */
+
+micromatch.contains = (str, pattern, options) => {
+ if (typeof str !== 'string') {
+ throw new TypeError(`Expected a string: "${util.inspect(str)}"`);
+ }
+
+ if (Array.isArray(pattern)) {
+ return pattern.some(p => micromatch.contains(str, p, options));
+ }
+
+ if (typeof pattern === 'string') {
+ if (isEmptyString(str) || isEmptyString(pattern)) {
+ return false;
+ }
+
+ if (str.includes(pattern) || (str.startsWith('./') && str.slice(2).includes(pattern))) {
+ return true;
+ }
+ }
+
+ return micromatch.isMatch(str, pattern, { ...options, contains: true });
+};
+
+/**
+ * Filter the keys of the given object with the given `glob` pattern
+ * and `options`. Does not attempt to match nested keys. If you need this feature,
+ * use [glob-object][] instead.
+ *
+ * ```js
+ * const mm = require('micromatch');
+ * // mm.matchKeys(object, patterns[, options]);
+ *
+ * const obj = { aa: 'a', ab: 'b', ac: 'c' };
+ * console.log(mm.matchKeys(obj, '*b'));
+ * //=> { ab: 'b' }
+ * ```
+ * @param {Object} `object` The object with keys to filter.
+ * @param {String|Array} `patterns` One or more glob patterns to use for matching.
+ * @param {Object} `options` See available [options](#options) for changing how matches are performed
+ * @return {Object} Returns an object with only keys that match the given patterns.
+ * @api public
+ */
+
+micromatch.matchKeys = (obj, patterns, options) => {
+ if (!utils.isObject(obj)) {
+ throw new TypeError('Expected the first argument to be an object');
+ }
+ let keys = micromatch(Object.keys(obj), patterns, options);
+ let res = {};
+ for (let key of keys) res[key] = obj[key];
+ return res;
+};
+
+/**
+ * Returns true if some of the strings in the given `list` match any of the given glob `patterns`.
+ *
+ * ```js
+ * const mm = require('micromatch');
+ * // mm.some(list, patterns[, options]);
+ *
+ * console.log(mm.some(['foo.js', 'bar.js'], ['*.js', '!foo.js']));
+ * // true
+ * console.log(mm.some(['foo.js'], ['*.js', '!foo.js']));
+ * // false
+ * ```
+ * @param {String|Array} `list` The string or array of strings to test. Returns as soon as the first match is found.
+ * @param {String|Array} `patterns` One or more glob patterns to use for matching.
+ * @param {Object} `options` See available [options](#options) for changing how matches are performed
+ * @return {Boolean} Returns true if any `patterns` matches any of the strings in `list`
+ * @api public
+ */
+
+micromatch.some = (list, patterns, options) => {
+ let items = [].concat(list);
+
+ for (let pattern of [].concat(patterns)) {
+ let isMatch = picomatch(String(pattern), options);
+ if (items.some(item => isMatch(item))) {
+ return true;
+ }
+ }
+ return false;
+};
+
+/**
+ * Returns true if every string in the given `list` matches
+ * any of the given glob `patterns`.
+ *
+ * ```js
+ * const mm = require('micromatch');
+ * // mm.every(list, patterns[, options]);
+ *
+ * console.log(mm.every('foo.js', ['foo.js']));
+ * // true
+ * console.log(mm.every(['foo.js', 'bar.js'], ['*.js']));
+ * // true
+ * console.log(mm.every(['foo.js', 'bar.js'], ['*.js', '!foo.js']));
+ * // false
+ * console.log(mm.every(['foo.js'], ['*.js', '!foo.js']));
+ * // false
+ * ```
+ * @param {String|Array} `list` The string or array of strings to test.
+ * @param {String|Array} `patterns` One or more glob patterns to use for matching.
+ * @param {Object} `options` See available [options](#options) for changing how matches are performed
+ * @return {Boolean} Returns true if all `patterns` matches all of the strings in `list`
+ * @api public
+ */
+
+micromatch.every = (list, patterns, options) => {
+ let items = [].concat(list);
+
+ for (let pattern of [].concat(patterns)) {
+ let isMatch = picomatch(String(pattern), options);
+ if (!items.every(item => isMatch(item))) {
+ return false;
+ }
+ }
+ return true;
+};
+
+/**
+ * Returns true if **all** of the given `patterns` match
+ * the specified string.
+ *
+ * ```js
+ * const mm = require('micromatch');
+ * // mm.all(string, patterns[, options]);
+ *
+ * console.log(mm.all('foo.js', ['foo.js']));
+ * // true
+ *
+ * console.log(mm.all('foo.js', ['*.js', '!foo.js']));
+ * // false
+ *
+ * console.log(mm.all('foo.js', ['*.js', 'foo.js']));
+ * // true
+ *
+ * console.log(mm.all('foo.js', ['*.js', 'f*', '*o*', '*o.js']));
+ * // true
+ * ```
+ * @param {String|Array} `str` The string to test.
+ * @param {String|Array} `patterns` One or more glob patterns to use for matching.
+ * @param {Object} `options` See available [options](#options) for changing how matches are performed
+ * @return {Boolean} Returns true if any patterns match `str`
+ * @api public
+ */
+
+micromatch.all = (str, patterns, options) => {
+ if (typeof str !== 'string') {
+ throw new TypeError(`Expected a string: "${util.inspect(str)}"`);
+ }
+
+ return [].concat(patterns).every(p => picomatch(p, options)(str));
+};
+
+/**
+ * Returns an array of matches captured by `pattern` in `string, or `null` if the pattern did not match.
+ *
+ * ```js
+ * const mm = require('micromatch');
+ * // mm.capture(pattern, string[, options]);
+ *
+ * console.log(mm.capture('test/*.js', 'test/foo.js'));
+ * //=> ['foo']
+ * console.log(mm.capture('test/*.js', 'foo/bar.css'));
+ * //=> null
+ * ```
+ * @param {String} `glob` Glob pattern to use for matching.
+ * @param {String} `input` String to match
+ * @param {Object} `options` See available [options](#options) for changing how matches are performed
+ * @return {Array|null} Returns an array of captures if the input matches the glob pattern, otherwise `null`.
+ * @api public
+ */
+
+micromatch.capture = (glob, input, options) => {
+ let posix = utils.isWindows(options);
+ let regex = picomatch.makeRe(String(glob), { ...options, capture: true });
+ let match = regex.exec(posix ? utils.toPosixSlashes(input) : input);
+
+ if (match) {
+ return match.slice(1).map(v => v === void 0 ? '' : v);
+ }
+};
+
+/**
+ * Create a regular expression from the given glob `pattern`.
+ *
+ * ```js
+ * const mm = require('micromatch');
+ * // mm.makeRe(pattern[, options]);
+ *
+ * console.log(mm.makeRe('*.js'));
+ * //=> /^(?:(\.[\\\/])?(?!\.)(?=.)[^\/]*?\.js)$/
+ * ```
+ * @param {String} `pattern` A glob pattern to convert to regex.
+ * @param {Object} `options`
+ * @return {RegExp} Returns a regex created from the given pattern.
+ * @api public
+ */
+
+micromatch.makeRe = (...args) => picomatch.makeRe(...args);
+
+/**
+ * Scan a glob pattern to separate the pattern into segments. Used
+ * by the [split](#split) method.
+ *
+ * ```js
+ * const mm = require('micromatch');
+ * const state = mm.scan(pattern[, options]);
+ * ```
+ * @param {String} `pattern`
+ * @param {Object} `options`
+ * @return {Object} Returns an object with
+ * @api public
+ */
+
+micromatch.scan = (...args) => picomatch.scan(...args);
+
+/**
+ * Parse a glob pattern to create the source string for a regular
+ * expression.
+ *
+ * ```js
+ * const mm = require('micromatch');
+ * const state = mm.parse(pattern[, options]);
+ * ```
+ * @param {String} `glob`
+ * @param {Object} `options`
+ * @return {Object} Returns an object with useful properties and output to be used as regex source string.
+ * @api public
+ */
+
+micromatch.parse = (patterns, options) => {
+ let res = [];
+ for (let pattern of [].concat(patterns || [])) {
+ for (let str of braces(String(pattern), options)) {
+ res.push(picomatch.parse(str, options));
+ }
+ }
+ return res;
+};
+
+/**
+ * Process the given brace `pattern`.
+ *
+ * ```js
+ * const { braces } = require('micromatch');
+ * console.log(braces('foo/{a,b,c}/bar'));
+ * //=> [ 'foo/(a|b|c)/bar' ]
+ *
+ * console.log(braces('foo/{a,b,c}/bar', { expand: true }));
+ * //=> [ 'foo/a/bar', 'foo/b/bar', 'foo/c/bar' ]
+ * ```
+ * @param {String} `pattern` String with brace pattern to process.
+ * @param {Object} `options` Any [options](#options) to change how expansion is performed. See the [braces][] library for all available options.
+ * @return {Array}
+ * @api public
+ */
+
+micromatch.braces = (pattern, options) => {
+ if (typeof pattern !== 'string') throw new TypeError('Expected a string');
+ if ((options && options.nobrace === true) || !/\{.*\}/.test(pattern)) {
+ return [pattern];
+ }
+ return braces(pattern, options);
+};
+
+/**
+ * Expand braces
+ */
+
+micromatch.braceExpand = (pattern, options) => {
+ if (typeof pattern !== 'string') throw new TypeError('Expected a string');
+ return micromatch.braces(pattern, { ...options, expand: true });
+};
+
+/**
+ * Expose micromatch
+ */
+
+module.exports = micromatch;
diff --git a/node_modules/micromatch/package.json b/node_modules/micromatch/package.json
new file mode 100644
index 0000000..6061d5b
--- /dev/null
+++ b/node_modules/micromatch/package.json
@@ -0,0 +1,119 @@
+{
+ "name": "micromatch",
+ "description": "Glob matching for javascript/node.js. A replacement and faster alternative to minimatch and multimatch.",
+ "version": "4.0.5",
+ "homepage": "https://github.com/micromatch/micromatch",
+ "author": "Jon Schlinkert (https://github.com/jonschlinkert)",
+ "contributors": [
+ "(https://github.com/DianeLooney)",
+ "Amila Welihinda (amilajack.com)",
+ "Bogdan Chadkin (https://github.com/TrySound)",
+ "Brian Woodward (https://twitter.com/doowb)",
+ "Devon Govett (http://badassjs.com)",
+ "Elan Shanker (https://github.com/es128)",
+ "Fabrício Matté (https://ultcombo.js.org)",
+ "Jon Schlinkert (http://twitter.com/jonschlinkert)",
+ "Martin Kolárik (https://kolarik.sk)",
+ "Olsten Larck (https://i.am.charlike.online)",
+ "Paul Miller (paulmillr.com)",
+ "Tom Byrer (https://github.com/tomByrer)",
+ "Tyler Akins (http://rumkin.com)",
+ "Peter Bright (https://github.com/drpizza)",
+ "Kuba Juszczyk (https://github.com/ku8ar)"
+ ],
+ "repository": "micromatch/micromatch",
+ "bugs": {
+ "url": "https://github.com/micromatch/micromatch/issues"
+ },
+ "license": "MIT",
+ "files": [
+ "index.js"
+ ],
+ "main": "index.js",
+ "engines": {
+ "node": ">=8.6"
+ },
+ "scripts": {
+ "test": "mocha"
+ },
+ "dependencies": {
+ "braces": "^3.0.2",
+ "picomatch": "^2.3.1"
+ },
+ "devDependencies": {
+ "fill-range": "^7.0.1",
+ "gulp-format-md": "^2.0.0",
+ "minimatch": "^5.0.1",
+ "mocha": "^9.2.2",
+ "time-require": "github:jonschlinkert/time-require"
+ },
+ "keywords": [
+ "bash",
+ "bracket",
+ "character-class",
+ "expand",
+ "expansion",
+ "expression",
+ "extglob",
+ "extglobs",
+ "file",
+ "files",
+ "filter",
+ "find",
+ "glob",
+ "globbing",
+ "globs",
+ "globstar",
+ "lookahead",
+ "lookaround",
+ "lookbehind",
+ "match",
+ "matcher",
+ "matches",
+ "matching",
+ "micromatch",
+ "minimatch",
+ "multimatch",
+ "negate",
+ "negation",
+ "path",
+ "pattern",
+ "patterns",
+ "posix",
+ "regex",
+ "regexp",
+ "regular",
+ "shell",
+ "star",
+ "wildcard"
+ ],
+ "verb": {
+ "toc": "collapsible",
+ "layout": "default",
+ "tasks": [
+ "readme"
+ ],
+ "plugins": [
+ "gulp-format-md"
+ ],
+ "lint": {
+ "reflinks": true
+ },
+ "related": {
+ "list": [
+ "braces",
+ "expand-brackets",
+ "extglob",
+ "fill-range",
+ "nanomatch"
+ ]
+ },
+ "reflinks": [
+ "extglob",
+ "fill-range",
+ "glob-object",
+ "minimatch",
+ "multimatch"
+ ]
+ }
+}
diff --git a/node_modules/nanoid/LICENSE b/node_modules/nanoid/LICENSE
new file mode 100644
index 0000000..37f56aa
--- /dev/null
+++ b/node_modules/nanoid/LICENSE
@@ -0,0 +1,20 @@
+The MIT License (MIT)
+
+Copyright 2017 Andrey Sitnik
+
+Permission is hereby granted, free of charge, to any person obtaining a copy of
+this software and associated documentation files (the "Software"), to deal in
+the Software without restriction, including without limitation the rights to
+use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
+the Software, and to permit persons to whom the Software is furnished to do so,
+subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
+FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
+COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
+IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
+CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
diff --git a/node_modules/nanoid/README.md b/node_modules/nanoid/README.md
new file mode 100644
index 0000000..a4abd92
--- /dev/null
+++ b/node_modules/nanoid/README.md
@@ -0,0 +1,39 @@
+# Nano ID
+
+
+
+**English** | [Русский](./README.ru.md) | [简体中文](./README.zh-CN.md) | [Bahasa Indonesia](./README.id-ID.md)
+
+A tiny, secure, URL-friendly, unique string ID generator for JavaScript.
+
+> “An amazing level of senseless perfectionism,
+> which is simply impossible not to respect.”
+
+* **Small.** 130 bytes (minified and gzipped). No dependencies.
+ [Size Limit] controls the size.
+* **Fast.** It is 2 times faster than UUID.
+* **Safe.** It uses hardware random generator. Can be used in clusters.
+* **Short IDs.** It uses a larger alphabet than UUID (`A-Za-z0-9_-`).
+ So ID size was reduced from 36 to 21 symbols.
+* **Portable.** Nano ID was ported
+ to [20 programming languages](#other-programming-languages).
+
+```js
+import { nanoid } from 'nanoid'
+model.id = nanoid() //=> "V1StGXR8_Z5jdHi6B-myT"
+```
+
+Supports modern browsers, IE [with Babel], Node.js and React Native.
+
+[online tool]: https://gitpod.io/#https://github.com/ai/nanoid/
+[with Babel]: https://developer.epages.com/blog/coding/how-to-transpile-node-modules-with-babel-and-webpack-in-a-monorepo/
+[Size Limit]: https://github.com/ai/size-limit
+
+
+
+
+
+## Docs
+Read **[full docs](https://github.com/ai/nanoid#readme)** on GitHub.
diff --git a/node_modules/nanoid/async/index.browser.cjs b/node_modules/nanoid/async/index.browser.cjs
new file mode 100644
index 0000000..7e5bba8
--- /dev/null
+++ b/node_modules/nanoid/async/index.browser.cjs
@@ -0,0 +1,34 @@
+let random = async bytes => crypto.getRandomValues(new Uint8Array(bytes))
+let customAlphabet = (alphabet, defaultSize = 21) => {
+ let mask = (2 << (Math.log(alphabet.length - 1) / Math.LN2)) - 1
+ let step = -~((1.6 * mask * defaultSize) / alphabet.length)
+ return async (size = defaultSize) => {
+ let id = ''
+ while (true) {
+ let bytes = crypto.getRandomValues(new Uint8Array(step))
+ let i = step
+ while (i--) {
+ id += alphabet[bytes[i] & mask] || ''
+ if (id.length === size) return id
+ }
+ }
+ }
+}
+let nanoid = async (size = 21) => {
+ let id = ''
+ let bytes = crypto.getRandomValues(new Uint8Array(size))
+ while (size--) {
+ let byte = bytes[size] & 63
+ if (byte < 36) {
+ id += byte.toString(36)
+ } else if (byte < 62) {
+ id += (byte - 26).toString(36).toUpperCase()
+ } else if (byte < 63) {
+ id += '_'
+ } else {
+ id += '-'
+ }
+ }
+ return id
+}
+module.exports = { nanoid, customAlphabet, random }
diff --git a/node_modules/nanoid/async/index.browser.js b/node_modules/nanoid/async/index.browser.js
new file mode 100644
index 0000000..5ece04d
--- /dev/null
+++ b/node_modules/nanoid/async/index.browser.js
@@ -0,0 +1,34 @@
+let random = async bytes => crypto.getRandomValues(new Uint8Array(bytes))
+let customAlphabet = (alphabet, defaultSize = 21) => {
+ let mask = (2 << (Math.log(alphabet.length - 1) / Math.LN2)) - 1
+ let step = -~((1.6 * mask * defaultSize) / alphabet.length)
+ return async (size = defaultSize) => {
+ let id = ''
+ while (true) {
+ let bytes = crypto.getRandomValues(new Uint8Array(step))
+ let i = step
+ while (i--) {
+ id += alphabet[bytes[i] & mask] || ''
+ if (id.length === size) return id
+ }
+ }
+ }
+}
+let nanoid = async (size = 21) => {
+ let id = ''
+ let bytes = crypto.getRandomValues(new Uint8Array(size))
+ while (size--) {
+ let byte = bytes[size] & 63
+ if (byte < 36) {
+ id += byte.toString(36)
+ } else if (byte < 62) {
+ id += (byte - 26).toString(36).toUpperCase()
+ } else if (byte < 63) {
+ id += '_'
+ } else {
+ id += '-'
+ }
+ }
+ return id
+}
+export { nanoid, customAlphabet, random }
diff --git a/node_modules/nanoid/async/index.cjs b/node_modules/nanoid/async/index.cjs
new file mode 100644
index 0000000..50db105
--- /dev/null
+++ b/node_modules/nanoid/async/index.cjs
@@ -0,0 +1,35 @@
+let crypto = require('crypto')
+let { urlAlphabet } = require('../url-alphabet/index.cjs')
+let random = bytes =>
+ new Promise((resolve, reject) => {
+ crypto.randomFill(Buffer.allocUnsafe(bytes), (err, buf) => {
+ if (err) {
+ reject(err)
+ } else {
+ resolve(buf)
+ }
+ })
+ })
+let customAlphabet = (alphabet, defaultSize = 21) => {
+ let mask = (2 << (31 - Math.clz32((alphabet.length - 1) | 1))) - 1
+ let step = Math.ceil((1.6 * mask * defaultSize) / alphabet.length)
+ let tick = (id, size = defaultSize) =>
+ random(step).then(bytes => {
+ let i = step
+ while (i--) {
+ id += alphabet[bytes[i] & mask] || ''
+ if (id.length === size) return id
+ }
+ return tick(id, size)
+ })
+ return size => tick('', size)
+}
+let nanoid = (size = 21) =>
+ random(size).then(bytes => {
+ let id = ''
+ while (size--) {
+ id += urlAlphabet[bytes[size] & 63]
+ }
+ return id
+ })
+module.exports = { nanoid, customAlphabet, random }
diff --git a/node_modules/nanoid/async/index.d.ts b/node_modules/nanoid/async/index.d.ts
new file mode 100644
index 0000000..9e91965
--- /dev/null
+++ b/node_modules/nanoid/async/index.d.ts
@@ -0,0 +1,56 @@
+/**
+ * Generate secure URL-friendly unique ID. The non-blocking version.
+ *
+ * By default, the ID will have 21 symbols to have a collision probability
+ * similar to UUID v4.
+ *
+ * ```js
+ * import { nanoid } from 'nanoid/async'
+ * nanoid().then(id => {
+ * model.id = id
+ * })
+ * ```
+ *
+ * @param size Size of the ID. The default size is 21.
+ * @returns A promise with a random string.
+ */
+export function nanoid(size?: number): Promise
+
+/**
+ * A low-level function.
+ * Generate secure unique ID with custom alphabet. The non-blocking version.
+ *
+ * Alphabet must contain 256 symbols or less. Otherwise, the generator
+ * will not be secure.
+ *
+ * @param alphabet Alphabet used to generate the ID.
+ * @param defaultSize Size of the ID. The default size is 21.
+ * @returns A function that returns a promise with a random string.
+ *
+ * ```js
+ * import { customAlphabet } from 'nanoid/async'
+ * const nanoid = customAlphabet('0123456789абвгдеё', 5)
+ * nanoid().then(id => {
+ * model.id = id //=> "8ё56а"
+ * })
+ * ```
+ */
+export function customAlphabet(
+ alphabet: string,
+ defaultSize?: number
+): (size?: number) => Promise
+
+/**
+ * Generate an array of random bytes collected from hardware noise.
+ *
+ * ```js
+ * import { random } from 'nanoid/async'
+ * random(5).then(bytes => {
+ * bytes //=> [10, 67, 212, 67, 89]
+ * })
+ * ```
+ *
+ * @param bytes Size of the array.
+ * @returns A promise with a random bytes array.
+ */
+export function random(bytes: number): Promise
diff --git a/node_modules/nanoid/async/index.js b/node_modules/nanoid/async/index.js
new file mode 100644
index 0000000..803fad6
--- /dev/null
+++ b/node_modules/nanoid/async/index.js
@@ -0,0 +1,35 @@
+import crypto from 'crypto'
+import { urlAlphabet } from '../url-alphabet/index.js'
+let random = bytes =>
+ new Promise((resolve, reject) => {
+ crypto.randomFill(Buffer.allocUnsafe(bytes), (err, buf) => {
+ if (err) {
+ reject(err)
+ } else {
+ resolve(buf)
+ }
+ })
+ })
+let customAlphabet = (alphabet, defaultSize = 21) => {
+ let mask = (2 << (31 - Math.clz32((alphabet.length - 1) | 1))) - 1
+ let step = Math.ceil((1.6 * mask * defaultSize) / alphabet.length)
+ let tick = (id, size = defaultSize) =>
+ random(step).then(bytes => {
+ let i = step
+ while (i--) {
+ id += alphabet[bytes[i] & mask] || ''
+ if (id.length === size) return id
+ }
+ return tick(id, size)
+ })
+ return size => tick('', size)
+}
+let nanoid = (size = 21) =>
+ random(size).then(bytes => {
+ let id = ''
+ while (size--) {
+ id += urlAlphabet[bytes[size] & 63]
+ }
+ return id
+ })
+export { nanoid, customAlphabet, random }
diff --git a/node_modules/nanoid/async/index.native.js b/node_modules/nanoid/async/index.native.js
new file mode 100644
index 0000000..5cb3d57
--- /dev/null
+++ b/node_modules/nanoid/async/index.native.js
@@ -0,0 +1,26 @@
+import { getRandomBytesAsync } from 'expo-random'
+import { urlAlphabet } from '../url-alphabet/index.js'
+let random = getRandomBytesAsync
+let customAlphabet = (alphabet, defaultSize = 21) => {
+ let mask = (2 << (31 - Math.clz32((alphabet.length - 1) | 1))) - 1
+ let step = Math.ceil((1.6 * mask * defaultSize) / alphabet.length)
+ let tick = (id, size = defaultSize) =>
+ random(step).then(bytes => {
+ let i = step
+ while (i--) {
+ id += alphabet[bytes[i] & mask] || ''
+ if (id.length === size) return id
+ }
+ return tick(id, size)
+ })
+ return size => tick('', size)
+}
+let nanoid = (size = 21) =>
+ random(size).then(bytes => {
+ let id = ''
+ while (size--) {
+ id += urlAlphabet[bytes[size] & 63]
+ }
+ return id
+ })
+export { nanoid, customAlphabet, random }
diff --git a/node_modules/nanoid/async/package.json b/node_modules/nanoid/async/package.json
new file mode 100644
index 0000000..578cdb4
--- /dev/null
+++ b/node_modules/nanoid/async/package.json
@@ -0,0 +1,12 @@
+{
+ "type": "module",
+ "main": "index.cjs",
+ "module": "index.js",
+ "react-native": {
+ "./index.js": "./index.native.js"
+ },
+ "browser": {
+ "./index.js": "./index.browser.js",
+ "./index.cjs": "./index.browser.cjs"
+ }
+}
\ No newline at end of file
diff --git a/node_modules/nanoid/bin/nanoid.cjs b/node_modules/nanoid/bin/nanoid.cjs
new file mode 100755
index 0000000..c76db0f
--- /dev/null
+++ b/node_modules/nanoid/bin/nanoid.cjs
@@ -0,0 +1,55 @@
+#!/usr/bin/env node
+
+let { nanoid, customAlphabet } = require('..')
+
+function print(msg) {
+ process.stdout.write(msg + '\n')
+}
+
+function error(msg) {
+ process.stderr.write(msg + '\n')
+ process.exit(1)
+}
+
+if (process.argv.includes('--help') || process.argv.includes('-h')) {
+ print(`
+ Usage
+ $ nanoid [options]
+
+ Options
+ -s, --size Generated ID size
+ -a, --alphabet Alphabet to use
+ -h, --help Show this help
+
+ Examples
+ $ nanoid --s 15
+ S9sBF77U6sDB8Yg
+
+ $ nanoid --size 10 --alphabet abc
+ bcabababca`)
+ process.exit()
+}
+
+let alphabet, size
+for (let i = 2; i < process.argv.length; i++) {
+ let arg = process.argv[i]
+ if (arg === '--size' || arg === '-s') {
+ size = Number(process.argv[i + 1])
+ i += 1
+ if (Number.isNaN(size) || size <= 0) {
+ error('Size must be positive integer')
+ }
+ } else if (arg === '--alphabet' || arg === '-a') {
+ alphabet = process.argv[i + 1]
+ i += 1
+ } else {
+ error('Unknown argument ' + arg)
+ }
+}
+
+if (alphabet) {
+ let customNanoid = customAlphabet(alphabet, size)
+ print(customNanoid())
+} else {
+ print(nanoid(size))
+}
diff --git a/node_modules/nanoid/index.browser.cjs b/node_modules/nanoid/index.browser.cjs
new file mode 100644
index 0000000..f800d6f
--- /dev/null
+++ b/node_modules/nanoid/index.browser.cjs
@@ -0,0 +1,34 @@
+let { urlAlphabet } = require('./url-alphabet/index.cjs')
+let random = bytes => crypto.getRandomValues(new Uint8Array(bytes))
+let customRandom = (alphabet, defaultSize, getRandom) => {
+ let mask = (2 << (Math.log(alphabet.length - 1) / Math.LN2)) - 1
+ let step = -~((1.6 * mask * defaultSize) / alphabet.length)
+ return (size = defaultSize) => {
+ let id = ''
+ while (true) {
+ let bytes = getRandom(step)
+ let j = step
+ while (j--) {
+ id += alphabet[bytes[j] & mask] || ''
+ if (id.length === size) return id
+ }
+ }
+ }
+}
+let customAlphabet = (alphabet, size = 21) =>
+ customRandom(alphabet, size, random)
+let nanoid = (size = 21) =>
+ crypto.getRandomValues(new Uint8Array(size)).reduce((id, byte) => {
+ byte &= 63
+ if (byte < 36) {
+ id += byte.toString(36)
+ } else if (byte < 62) {
+ id += (byte - 26).toString(36).toUpperCase()
+ } else if (byte > 62) {
+ id += '-'
+ } else {
+ id += '_'
+ }
+ return id
+ }, '')
+module.exports = { nanoid, customAlphabet, customRandom, urlAlphabet, random }
diff --git a/node_modules/nanoid/index.browser.js b/node_modules/nanoid/index.browser.js
new file mode 100644
index 0000000..8b3139b
--- /dev/null
+++ b/node_modules/nanoid/index.browser.js
@@ -0,0 +1,34 @@
+import { urlAlphabet } from './url-alphabet/index.js'
+let random = bytes => crypto.getRandomValues(new Uint8Array(bytes))
+let customRandom = (alphabet, defaultSize, getRandom) => {
+ let mask = (2 << (Math.log(alphabet.length - 1) / Math.LN2)) - 1
+ let step = -~((1.6 * mask * defaultSize) / alphabet.length)
+ return (size = defaultSize) => {
+ let id = ''
+ while (true) {
+ let bytes = getRandom(step)
+ let j = step
+ while (j--) {
+ id += alphabet[bytes[j] & mask] || ''
+ if (id.length === size) return id
+ }
+ }
+ }
+}
+let customAlphabet = (alphabet, size = 21) =>
+ customRandom(alphabet, size, random)
+let nanoid = (size = 21) =>
+ crypto.getRandomValues(new Uint8Array(size)).reduce((id, byte) => {
+ byte &= 63
+ if (byte < 36) {
+ id += byte.toString(36)
+ } else if (byte < 62) {
+ id += (byte - 26).toString(36).toUpperCase()
+ } else if (byte > 62) {
+ id += '-'
+ } else {
+ id += '_'
+ }
+ return id
+ }, '')
+export { nanoid, customAlphabet, customRandom, urlAlphabet, random }
diff --git a/node_modules/nanoid/index.cjs b/node_modules/nanoid/index.cjs
new file mode 100644
index 0000000..0fa85e9
--- /dev/null
+++ b/node_modules/nanoid/index.cjs
@@ -0,0 +1,45 @@
+let crypto = require('crypto')
+let { urlAlphabet } = require('./url-alphabet/index.cjs')
+const POOL_SIZE_MULTIPLIER = 128
+let pool, poolOffset
+let fillPool = bytes => {
+ if (!pool || pool.length < bytes) {
+ pool = Buffer.allocUnsafe(bytes * POOL_SIZE_MULTIPLIER)
+ crypto.randomFillSync(pool)
+ poolOffset = 0
+ } else if (poolOffset + bytes > pool.length) {
+ crypto.randomFillSync(pool)
+ poolOffset = 0
+ }
+ poolOffset += bytes
+}
+let random = bytes => {
+ fillPool((bytes -= 0))
+ return pool.subarray(poolOffset - bytes, poolOffset)
+}
+let customRandom = (alphabet, defaultSize, getRandom) => {
+ let mask = (2 << (31 - Math.clz32((alphabet.length - 1) | 1))) - 1
+ let step = Math.ceil((1.6 * mask * defaultSize) / alphabet.length)
+ return (size = defaultSize) => {
+ let id = ''
+ while (true) {
+ let bytes = getRandom(step)
+ let i = step
+ while (i--) {
+ id += alphabet[bytes[i] & mask] || ''
+ if (id.length === size) return id
+ }
+ }
+ }
+}
+let customAlphabet = (alphabet, size = 21) =>
+ customRandom(alphabet, size, random)
+let nanoid = (size = 21) => {
+ fillPool((size -= 0))
+ let id = ''
+ for (let i = poolOffset - size; i < poolOffset; i++) {
+ id += urlAlphabet[pool[i] & 63]
+ }
+ return id
+}
+module.exports = { nanoid, customAlphabet, customRandom, urlAlphabet, random }
diff --git a/node_modules/nanoid/index.d.ts b/node_modules/nanoid/index.d.ts
new file mode 100644
index 0000000..3e111a3
--- /dev/null
+++ b/node_modules/nanoid/index.d.ts
@@ -0,0 +1,91 @@
+/**
+ * Generate secure URL-friendly unique ID.
+ *
+ * By default, the ID will have 21 symbols to have a collision probability
+ * similar to UUID v4.
+ *
+ * ```js
+ * import { nanoid } from 'nanoid'
+ * model.id = nanoid() //=> "Uakgb_J5m9g-0JDMbcJqL"
+ * ```
+ *
+ * @param size Size of the ID. The default size is 21.
+ * @returns A random string.
+ */
+export function nanoid(size?: number): string
+
+/**
+ * Generate secure unique ID with custom alphabet.
+ *
+ * Alphabet must contain 256 symbols or less. Otherwise, the generator
+ * will not be secure.
+ *
+ * @param alphabet Alphabet used to generate the ID.
+ * @param defaultSize Size of the ID. The default size is 21.
+ * @returns A random string generator.
+ *
+ * ```js
+ * const { customAlphabet } = require('nanoid')
+ * const nanoid = customAlphabet('0123456789абвгдеё', 5)
+ * nanoid() //=> "8ё56а"
+ * ```
+ */
+export function customAlphabet(
+ alphabet: string,
+ defaultSize?: number
+): (size?: number) => string
+
+/**
+ * Generate unique ID with custom random generator and alphabet.
+ *
+ * Alphabet must contain 256 symbols or less. Otherwise, the generator
+ * will not be secure.
+ *
+ * ```js
+ * import { customRandom } from 'nanoid/format'
+ *
+ * const nanoid = customRandom('abcdef', 5, size => {
+ * const random = []
+ * for (let i = 0; i < size; i++) {
+ * random.push(randomByte())
+ * }
+ * return random
+ * })
+ *
+ * nanoid() //=> "fbaef"
+ * ```
+ *
+ * @param alphabet Alphabet used to generate a random string.
+ * @param size Size of the random string.
+ * @param random A random bytes generator.
+ * @returns A random string generator.
+ */
+export function customRandom(
+ alphabet: string,
+ size: number,
+ random: (bytes: number) => Uint8Array
+): () => string
+
+/**
+ * URL safe symbols.
+ *
+ * ```js
+ * import { urlAlphabet } from 'nanoid'
+ * const nanoid = customAlphabet(urlAlphabet, 10)
+ * nanoid() //=> "Uakgb_J5m9"
+ * ```
+ */
+export const urlAlphabet: string
+
+/**
+ * Generate an array of random bytes collected from hardware noise.
+ *
+ * ```js
+ * import { customRandom, random } from 'nanoid'
+ * const nanoid = customRandom("abcdef", 5, random)
+ * ```
+ *
+ * @param bytes Size of the array.
+ * @returns An array of random bytes.
+ */
+export function random(bytes: number): Uint8Array
diff --git a/node_modules/nanoid/index.js b/node_modules/nanoid/index.js
new file mode 100644
index 0000000..21e155f
--- /dev/null
+++ b/node_modules/nanoid/index.js
@@ -0,0 +1,45 @@
+import crypto from 'crypto'
+import { urlAlphabet } from './url-alphabet/index.js'
+const POOL_SIZE_MULTIPLIER = 128
+let pool, poolOffset
+let fillPool = bytes => {
+ if (!pool || pool.length < bytes) {
+ pool = Buffer.allocUnsafe(bytes * POOL_SIZE_MULTIPLIER)
+ crypto.randomFillSync(pool)
+ poolOffset = 0
+ } else if (poolOffset + bytes > pool.length) {
+ crypto.randomFillSync(pool)
+ poolOffset = 0
+ }
+ poolOffset += bytes
+}
+let random = bytes => {
+ fillPool((bytes -= 0))
+ return pool.subarray(poolOffset - bytes, poolOffset)
+}
+let customRandom = (alphabet, defaultSize, getRandom) => {
+ let mask = (2 << (31 - Math.clz32((alphabet.length - 1) | 1))) - 1
+ let step = Math.ceil((1.6 * mask * defaultSize) / alphabet.length)
+ return (size = defaultSize) => {
+ let id = ''
+ while (true) {
+ let bytes = getRandom(step)
+ let i = step
+ while (i--) {
+ id += alphabet[bytes[i] & mask] || ''
+ if (id.length === size) return id
+ }
+ }
+ }
+}
+let customAlphabet = (alphabet, size = 21) =>
+ customRandom(alphabet, size, random)
+let nanoid = (size = 21) => {
+ fillPool((size -= 0))
+ let id = ''
+ for (let i = poolOffset - size; i < poolOffset; i++) {
+ id += urlAlphabet[pool[i] & 63]
+ }
+ return id
+}
+export { nanoid, customAlphabet, customRandom, urlAlphabet, random }
diff --git a/node_modules/nanoid/nanoid.js b/node_modules/nanoid/nanoid.js
new file mode 100644
index 0000000..ec242ea
--- /dev/null
+++ b/node_modules/nanoid/nanoid.js
@@ -0,0 +1 @@
+export let nanoid=(t=21)=>crypto.getRandomValues(new Uint8Array(t)).reduce(((t,e)=>t+=(e&=63)<36?e.toString(36):e<62?(e-26).toString(36).toUpperCase():e<63?"_":"-"),"");
\ No newline at end of file
diff --git a/node_modules/nanoid/non-secure/index.cjs b/node_modules/nanoid/non-secure/index.cjs
new file mode 100644
index 0000000..09d57cd
--- /dev/null
+++ b/node_modules/nanoid/non-secure/index.cjs
@@ -0,0 +1,21 @@
+let urlAlphabet =
+ 'useandom-26T198340PX75pxJACKVERYMINDBUSHWOLF_GQZbfghjklqvwyzrict'
+let customAlphabet = (alphabet, defaultSize = 21) => {
+ return (size = defaultSize) => {
+ let id = ''
+ let i = size
+ while (i--) {
+ id += alphabet[(Math.random() * alphabet.length) | 0]
+ }
+ return id
+ }
+}
+let nanoid = (size = 21) => {
+ let id = ''
+ let i = size
+ while (i--) {
+ id += urlAlphabet[(Math.random() * 64) | 0]
+ }
+ return id
+}
+module.exports = { nanoid, customAlphabet }
diff --git a/node_modules/nanoid/non-secure/index.d.ts b/node_modules/nanoid/non-secure/index.d.ts
new file mode 100644
index 0000000..4965322
--- /dev/null
+++ b/node_modules/nanoid/non-secure/index.d.ts
@@ -0,0 +1,33 @@
+/**
+ * Generate URL-friendly unique ID. This method uses the non-secure
+ * predictable random generator with bigger collision probability.
+ *
+ * ```js
+ * import { nanoid } from 'nanoid/non-secure'
+ * model.id = nanoid() //=> "Uakgb_J5m9g-0JDMbcJqL"
+ * ```
+ *
+ * @param size Size of the ID. The default size is 21.
+ * @returns A random string.
+ */
+export function nanoid(size?: number): string
+
+/**
+ * Generate a unique ID based on a custom alphabet.
+ * This method uses the non-secure predictable random generator
+ * with bigger collision probability.
+ *
+ * @param alphabet Alphabet used to generate the ID.
+ * @param defaultSize Size of the ID. The default size is 21.
+ * @returns A random string generator.
+ *
+ * ```js
+ * import { customAlphabet } from 'nanoid/non-secure'
+ * const nanoid = customAlphabet('0123456789абвгдеё', 5)
+ * model.id = //=> "8ё56а"
+ * ```
+ */
+export function customAlphabet(
+ alphabet: string,
+ defaultSize?: number
+): (size?: number) => string
diff --git a/node_modules/nanoid/non-secure/index.js b/node_modules/nanoid/non-secure/index.js
new file mode 100644
index 0000000..e7e19ad
--- /dev/null
+++ b/node_modules/nanoid/non-secure/index.js
@@ -0,0 +1,21 @@
+let urlAlphabet =
+ 'useandom-26T198340PX75pxJACKVERYMINDBUSHWOLF_GQZbfghjklqvwyzrict'
+let customAlphabet = (alphabet, defaultSize = 21) => {
+ return (size = defaultSize) => {
+ let id = ''
+ let i = size
+ while (i--) {
+ id += alphabet[(Math.random() * alphabet.length) | 0]
+ }
+ return id
+ }
+}
+let nanoid = (size = 21) => {
+ let id = ''
+ let i = size
+ while (i--) {
+ id += urlAlphabet[(Math.random() * 64) | 0]
+ }
+ return id
+}
+export { nanoid, customAlphabet }
diff --git a/node_modules/nanoid/non-secure/package.json b/node_modules/nanoid/non-secure/package.json
new file mode 100644
index 0000000..9930d6a
--- /dev/null
+++ b/node_modules/nanoid/non-secure/package.json
@@ -0,0 +1,6 @@
+{
+ "type": "module",
+ "main": "index.cjs",
+ "module": "index.js",
+ "react-native": "index.js"
+}
\ No newline at end of file
diff --git a/node_modules/nanoid/package.json b/node_modules/nanoid/package.json
new file mode 100644
index 0000000..19d7d7a
--- /dev/null
+++ b/node_modules/nanoid/package.json
@@ -0,0 +1,66 @@
+{
+ "name": "nanoid",
+ "version": "3.3.6",
+ "description": "A tiny (116 bytes), secure URL-friendly unique string ID generator",
+ "keywords": [
+ "uuid",
+ "random",
+ "id",
+ "url"
+ ],
+ "engines": {
+ "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
+ },
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/ai"
+ }
+ ],
+ "author": "Andrey Sitnik ",
+ "license": "MIT",
+ "repository": "ai/nanoid",
+ "browser": {
+ "./index.js": "./index.browser.js",
+ "./async/index.js": "./async/index.browser.js",
+ "./async/index.cjs": "./async/index.browser.cjs",
+ "./index.cjs": "./index.browser.cjs"
+ },
+ "react-native": "index.js",
+ "bin": "./bin/nanoid.cjs",
+ "sideEffects": false,
+ "types": "./index.d.ts",
+ "type": "module",
+ "main": "index.cjs",
+ "module": "index.js",
+ "exports": {
+ ".": {
+ "types": "./index.d.ts",
+ "browser": "./index.browser.js",
+ "require": "./index.cjs",
+ "import": "./index.js",
+ "default": "./index.js"
+ },
+ "./index.d.ts": "./index.d.ts",
+ "./package.json": "./package.json",
+ "./async/package.json": "./async/package.json",
+ "./async": {
+ "browser": "./async/index.browser.js",
+ "require": "./async/index.cjs",
+ "import": "./async/index.js",
+ "default": "./async/index.js"
+ },
+ "./non-secure/package.json": "./non-secure/package.json",
+ "./non-secure": {
+ "require": "./non-secure/index.cjs",
+ "import": "./non-secure/index.js",
+ "default": "./non-secure/index.js"
+ },
+ "./url-alphabet/package.json": "./url-alphabet/package.json",
+ "./url-alphabet": {
+ "require": "./url-alphabet/index.cjs",
+ "import": "./url-alphabet/index.js",
+ "default": "./url-alphabet/index.js"
+ }
+ }
+}
\ No newline at end of file
diff --git a/node_modules/nanoid/url-alphabet/index.cjs b/node_modules/nanoid/url-alphabet/index.cjs
new file mode 100644
index 0000000..757b709
--- /dev/null
+++ b/node_modules/nanoid/url-alphabet/index.cjs
@@ -0,0 +1,3 @@
+let urlAlphabet =
+ 'useandom-26T198340PX75pxJACKVERYMINDBUSHWOLF_GQZbfghjklqvwyzrict'
+module.exports = { urlAlphabet }
diff --git a/node_modules/nanoid/url-alphabet/index.js b/node_modules/nanoid/url-alphabet/index.js
new file mode 100644
index 0000000..c2782e5
--- /dev/null
+++ b/node_modules/nanoid/url-alphabet/index.js
@@ -0,0 +1,3 @@
+let urlAlphabet =
+ 'useandom-26T198340PX75pxJACKVERYMINDBUSHWOLF_GQZbfghjklqvwyzrict'
+export { urlAlphabet }
diff --git a/node_modules/nanoid/url-alphabet/package.json b/node_modules/nanoid/url-alphabet/package.json
new file mode 100644
index 0000000..9930d6a
--- /dev/null
+++ b/node_modules/nanoid/url-alphabet/package.json
@@ -0,0 +1,6 @@
+{
+ "type": "module",
+ "main": "index.cjs",
+ "module": "index.js",
+ "react-native": "index.js"
+}
\ No newline at end of file
diff --git a/node_modules/node-releases/LICENSE b/node_modules/node-releases/LICENSE
new file mode 100644
index 0000000..ea39e4f
--- /dev/null
+++ b/node_modules/node-releases/LICENSE
@@ -0,0 +1,21 @@
+The MIT License
+
+Copyright (c) 2017 Sergey Rubanov (https://github.com/chicoxyzzy)
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.
diff --git a/node_modules/node-releases/README.md b/node_modules/node-releases/README.md
new file mode 100644
index 0000000..d30d200
--- /dev/null
+++ b/node_modules/node-releases/README.md
@@ -0,0 +1,12 @@
+# Node.js releases data
+
+All data is located in `data` directory.
+
+`data/processed` contains `envs.json` with node.js releases data preprocessed to be used by [Browserslist](https://github.com/ai/browserslist) and other projects. Each version in this file contains only necessary info: version, release date, LTS flag/name, and security flag.
+
+`data/release-schedule` contains `release-schedule.json` with node.js releases date and end of life date.
+
+## Installation
+```bash
+npm install node-releases
+```
diff --git a/node_modules/node-releases/data/processed/envs.json b/node_modules/node-releases/data/processed/envs.json
new file mode 100644
index 0000000..0db089f
--- /dev/null
+++ b/node_modules/node-releases/data/processed/envs.json
@@ -0,0 +1 @@
+[{"name":"nodejs","version":"0.2.0","date":"2011-08-26","lts":false,"security":false,"v8":"2.3.8.0"},{"name":"nodejs","version":"0.3.0","date":"2011-08-26","lts":false,"security":false,"v8":"2.5.1.0"},{"name":"nodejs","version":"0.4.0","date":"2011-08-26","lts":false,"security":false,"v8":"3.1.2.0"},{"name":"nodejs","version":"0.5.0","date":"2011-08-26","lts":false,"security":false,"v8":"3.1.8.25"},{"name":"nodejs","version":"0.6.0","date":"2011-11-04","lts":false,"security":false,"v8":"3.6.6.6"},{"name":"nodejs","version":"0.7.0","date":"2012-01-17","lts":false,"security":false,"v8":"3.8.6.0"},{"name":"nodejs","version":"0.8.0","date":"2012-06-22","lts":false,"security":false,"v8":"3.11.10.10"},{"name":"nodejs","version":"0.9.0","date":"2012-07-20","lts":false,"security":false,"v8":"3.11.10.15"},{"name":"nodejs","version":"0.10.0","date":"2013-03-11","lts":false,"security":false,"v8":"3.14.5.8"},{"name":"nodejs","version":"0.11.0","date":"2013-03-28","lts":false,"security":false,"v8":"3.17.13.0"},{"name":"nodejs","version":"0.12.0","date":"2015-02-06","lts":false,"security":false,"v8":"3.28.73.0"},{"name":"nodejs","version":"4.0.0","date":"2015-09-08","lts":false,"security":false,"v8":"4.5.103.30"},{"name":"nodejs","version":"4.1.0","date":"2015-09-17","lts":false,"security":false,"v8":"4.5.103.33"},{"name":"nodejs","version":"4.2.0","date":"2015-10-12","lts":"Argon","security":false,"v8":"4.5.103.35"},{"name":"nodejs","version":"4.3.0","date":"2016-02-09","lts":"Argon","security":false,"v8":"4.5.103.35"},{"name":"nodejs","version":"4.4.0","date":"2016-03-08","lts":"Argon","security":false,"v8":"4.5.103.35"},{"name":"nodejs","version":"4.5.0","date":"2016-08-16","lts":"Argon","security":false,"v8":"4.5.103.37"},{"name":"nodejs","version":"4.6.0","date":"2016-09-27","lts":"Argon","security":true,"v8":"4.5.103.37"},{"name":"nodejs","version":"4.7.0","date":"2016-12-06","lts":"Argon","security":false,"v8":"4.5.103.43"},{"name":"nodejs","version":"4.8.0","date":"2017-02-21","lts":"Argon","security":false,"v8":"4.5.103.45"},{"name":"nodejs","version":"4.9.0","date":"2018-03-28","lts":"Argon","security":true,"v8":"4.5.103.53"},{"name":"nodejs","version":"5.0.0","date":"2015-10-29","lts":false,"security":false,"v8":"4.6.85.28"},{"name":"nodejs","version":"5.1.0","date":"2015-11-17","lts":false,"security":false,"v8":"4.6.85.31"},{"name":"nodejs","version":"5.2.0","date":"2015-12-09","lts":false,"security":false,"v8":"4.6.85.31"},{"name":"nodejs","version":"5.3.0","date":"2015-12-15","lts":false,"security":false,"v8":"4.6.85.31"},{"name":"nodejs","version":"5.4.0","date":"2016-01-06","lts":false,"security":false,"v8":"4.6.85.31"},{"name":"nodejs","version":"5.5.0","date":"2016-01-21","lts":false,"security":false,"v8":"4.6.85.31"},{"name":"nodejs","version":"5.6.0","date":"2016-02-09","lts":false,"security":false,"v8":"4.6.85.31"},{"name":"nodejs","version":"5.7.0","date":"2016-02-23","lts":false,"security":false,"v8":"4.6.85.31"},{"name":"nodejs","version":"5.8.0","date":"2016-03-09","lts":false,"security":false,"v8":"4.6.85.31"},{"name":"nodejs","version":"5.9.0","date":"2016-03-16","lts":false,"security":false,"v8":"4.6.85.31"},{"name":"nodejs","version":"5.10.0","date":"2016-04-01","lts":false,"security":false,"v8":"4.6.85.31"},{"name":"nodejs","version":"5.11.0","date":"2016-04-21","lts":false,"security":false,"v8":"4.6.85.31"},{"name":"nodejs","version":"5.12.0","date":"2016-06-23","lts":false,"security":false,"v8":"4.6.85.32"},{"name":"nodejs","version":"6.0.0","date":"2016-04-26","lts":false,"security":false,"v8":"5.0.71.35"},{"name":"nodejs","version":"6.1.0","date":"2016-05-05","lts":false,"security":false,"v8":"5.0.71.35"},{"name":"nodejs","version":"6.2.0","date":"2016-05-17","lts":false,"security":false,"v8":"5.0.71.47"},{"name":"nodejs","version":"6.3.0","date":"2016-07-06","lts":false,"security":false,"v8":"5.0.71.52"},{"name":"nodejs","version":"6.4.0","date":"2016-08-12","lts":false,"security":false,"v8":"5.0.71.60"},{"name":"nodejs","version":"6.5.0","date":"2016-08-26","lts":false,"security":false,"v8":"5.1.281.81"},{"name":"nodejs","version":"6.6.0","date":"2016-09-14","lts":false,"security":false,"v8":"5.1.281.83"},{"name":"nodejs","version":"6.7.0","date":"2016-09-27","lts":false,"security":true,"v8":"5.1.281.83"},{"name":"nodejs","version":"6.8.0","date":"2016-10-12","lts":false,"security":false,"v8":"5.1.281.84"},{"name":"nodejs","version":"6.9.0","date":"2016-10-18","lts":"Boron","security":false,"v8":"5.1.281.84"},{"name":"nodejs","version":"6.10.0","date":"2017-02-21","lts":"Boron","security":false,"v8":"5.1.281.93"},{"name":"nodejs","version":"6.11.0","date":"2017-06-06","lts":"Boron","security":false,"v8":"5.1.281.102"},{"name":"nodejs","version":"6.12.0","date":"2017-11-06","lts":"Boron","security":false,"v8":"5.1.281.108"},{"name":"nodejs","version":"6.13.0","date":"2018-02-10","lts":"Boron","security":false,"v8":"5.1.281.111"},{"name":"nodejs","version":"6.14.0","date":"2018-03-28","lts":"Boron","security":true,"v8":"5.1.281.111"},{"name":"nodejs","version":"6.15.0","date":"2018-11-27","lts":"Boron","security":true,"v8":"5.1.281.111"},{"name":"nodejs","version":"6.16.0","date":"2018-12-26","lts":"Boron","security":false,"v8":"5.1.281.111"},{"name":"nodejs","version":"6.17.0","date":"2019-02-28","lts":"Boron","security":true,"v8":"5.1.281.111"},{"name":"nodejs","version":"7.0.0","date":"2016-10-25","lts":false,"security":false,"v8":"5.4.500.36"},{"name":"nodejs","version":"7.1.0","date":"2016-11-08","lts":false,"security":false,"v8":"5.4.500.36"},{"name":"nodejs","version":"7.2.0","date":"2016-11-22","lts":false,"security":false,"v8":"5.4.500.43"},{"name":"nodejs","version":"7.3.0","date":"2016-12-20","lts":false,"security":false,"v8":"5.4.500.45"},{"name":"nodejs","version":"7.4.0","date":"2017-01-04","lts":false,"security":false,"v8":"5.4.500.45"},{"name":"nodejs","version":"7.5.0","date":"2017-01-31","lts":false,"security":false,"v8":"5.4.500.48"},{"name":"nodejs","version":"7.6.0","date":"2017-02-21","lts":false,"security":false,"v8":"5.5.372.40"},{"name":"nodejs","version":"7.7.0","date":"2017-02-28","lts":false,"security":false,"v8":"5.5.372.41"},{"name":"nodejs","version":"7.8.0","date":"2017-03-29","lts":false,"security":false,"v8":"5.5.372.43"},{"name":"nodejs","version":"7.9.0","date":"2017-04-11","lts":false,"security":false,"v8":"5.5.372.43"},{"name":"nodejs","version":"7.10.0","date":"2017-05-02","lts":false,"security":false,"v8":"5.5.372.43"},{"name":"nodejs","version":"8.0.0","date":"2017-05-30","lts":false,"security":false,"v8":"5.8.283.41"},{"name":"nodejs","version":"8.1.0","date":"2017-06-08","lts":false,"security":false,"v8":"5.8.283.41"},{"name":"nodejs","version":"8.2.0","date":"2017-07-19","lts":false,"security":false,"v8":"5.8.283.41"},{"name":"nodejs","version":"8.3.0","date":"2017-08-08","lts":false,"security":false,"v8":"6.0.286.52"},{"name":"nodejs","version":"8.4.0","date":"2017-08-15","lts":false,"security":false,"v8":"6.0.286.52"},{"name":"nodejs","version":"8.5.0","date":"2017-09-12","lts":false,"security":false,"v8":"6.0.287.53"},{"name":"nodejs","version":"8.6.0","date":"2017-09-26","lts":false,"security":false,"v8":"6.0.287.53"},{"name":"nodejs","version":"8.7.0","date":"2017-10-11","lts":false,"security":false,"v8":"6.1.534.42"},{"name":"nodejs","version":"8.8.0","date":"2017-10-24","lts":false,"security":false,"v8":"6.1.534.42"},{"name":"nodejs","version":"8.9.0","date":"2017-10-31","lts":"Carbon","security":false,"v8":"6.1.534.46"},{"name":"nodejs","version":"8.10.0","date":"2018-03-06","lts":"Carbon","security":false,"v8":"6.2.414.50"},{"name":"nodejs","version":"8.11.0","date":"2018-03-28","lts":"Carbon","security":true,"v8":"6.2.414.50"},{"name":"nodejs","version":"8.12.0","date":"2018-09-10","lts":"Carbon","security":false,"v8":"6.2.414.66"},{"name":"nodejs","version":"8.13.0","date":"2018-11-20","lts":"Carbon","security":false,"v8":"6.2.414.72"},{"name":"nodejs","version":"8.14.0","date":"2018-11-27","lts":"Carbon","security":true,"v8":"6.2.414.72"},{"name":"nodejs","version":"8.15.0","date":"2018-12-26","lts":"Carbon","security":false,"v8":"6.2.414.75"},{"name":"nodejs","version":"8.16.0","date":"2019-04-16","lts":"Carbon","security":false,"v8":"6.2.414.77"},{"name":"nodejs","version":"8.17.0","date":"2019-12-17","lts":"Carbon","security":true,"v8":"6.2.414.78"},{"name":"nodejs","version":"9.0.0","date":"2017-10-31","lts":false,"security":false,"v8":"6.2.414.32"},{"name":"nodejs","version":"9.1.0","date":"2017-11-07","lts":false,"security":false,"v8":"6.2.414.32"},{"name":"nodejs","version":"9.2.0","date":"2017-11-14","lts":false,"security":false,"v8":"6.2.414.44"},{"name":"nodejs","version":"9.3.0","date":"2017-12-12","lts":false,"security":false,"v8":"6.2.414.46"},{"name":"nodejs","version":"9.4.0","date":"2018-01-10","lts":false,"security":false,"v8":"6.2.414.46"},{"name":"nodejs","version":"9.5.0","date":"2018-01-31","lts":false,"security":false,"v8":"6.2.414.46"},{"name":"nodejs","version":"9.6.0","date":"2018-02-21","lts":false,"security":false,"v8":"6.2.414.46"},{"name":"nodejs","version":"9.7.0","date":"2018-03-01","lts":false,"security":false,"v8":"6.2.414.46"},{"name":"nodejs","version":"9.8.0","date":"2018-03-07","lts":false,"security":false,"v8":"6.2.414.46"},{"name":"nodejs","version":"9.9.0","date":"2018-03-21","lts":false,"security":false,"v8":"6.2.414.46"},{"name":"nodejs","version":"9.10.0","date":"2018-03-28","lts":false,"security":true,"v8":"6.2.414.46"},{"name":"nodejs","version":"9.11.0","date":"2018-04-04","lts":false,"security":false,"v8":"6.2.414.46"},{"name":"nodejs","version":"10.0.0","date":"2018-04-24","lts":false,"security":false,"v8":"6.6.346.24"},{"name":"nodejs","version":"10.1.0","date":"2018-05-08","lts":false,"security":false,"v8":"6.6.346.27"},{"name":"nodejs","version":"10.2.0","date":"2018-05-23","lts":false,"security":false,"v8":"6.6.346.32"},{"name":"nodejs","version":"10.3.0","date":"2018-05-29","lts":false,"security":false,"v8":"6.6.346.32"},{"name":"nodejs","version":"10.4.0","date":"2018-06-06","lts":false,"security":false,"v8":"6.7.288.43"},{"name":"nodejs","version":"10.5.0","date":"2018-06-20","lts":false,"security":false,"v8":"6.7.288.46"},{"name":"nodejs","version":"10.6.0","date":"2018-07-04","lts":false,"security":false,"v8":"6.7.288.46"},{"name":"nodejs","version":"10.7.0","date":"2018-07-18","lts":false,"security":false,"v8":"6.7.288.49"},{"name":"nodejs","version":"10.8.0","date":"2018-08-01","lts":false,"security":false,"v8":"6.7.288.49"},{"name":"nodejs","version":"10.9.0","date":"2018-08-15","lts":false,"security":false,"v8":"6.8.275.24"},{"name":"nodejs","version":"10.10.0","date":"2018-09-06","lts":false,"security":false,"v8":"6.8.275.30"},{"name":"nodejs","version":"10.11.0","date":"2018-09-19","lts":false,"security":false,"v8":"6.8.275.32"},{"name":"nodejs","version":"10.12.0","date":"2018-10-10","lts":false,"security":false,"v8":"6.8.275.32"},{"name":"nodejs","version":"10.13.0","date":"2018-10-30","lts":"Dubnium","security":false,"v8":"6.8.275.32"},{"name":"nodejs","version":"10.14.0","date":"2018-11-27","lts":"Dubnium","security":true,"v8":"6.8.275.32"},{"name":"nodejs","version":"10.15.0","date":"2018-12-26","lts":"Dubnium","security":false,"v8":"6.8.275.32"},{"name":"nodejs","version":"10.16.0","date":"2019-05-28","lts":"Dubnium","security":false,"v8":"6.8.275.32"},{"name":"nodejs","version":"10.17.0","date":"2019-10-22","lts":"Dubnium","security":false,"v8":"6.8.275.32"},{"name":"nodejs","version":"10.18.0","date":"2019-12-17","lts":"Dubnium","security":true,"v8":"6.8.275.32"},{"name":"nodejs","version":"10.19.0","date":"2020-02-05","lts":"Dubnium","security":true,"v8":"6.8.275.32"},{"name":"nodejs","version":"10.20.0","date":"2020-03-26","lts":"Dubnium","security":false,"v8":"6.8.275.32"},{"name":"nodejs","version":"10.21.0","date":"2020-06-02","lts":"Dubnium","security":true,"v8":"6.8.275.32"},{"name":"nodejs","version":"10.22.0","date":"2020-07-21","lts":"Dubnium","security":false,"v8":"6.8.275.32"},{"name":"nodejs","version":"10.23.0","date":"2020-10-27","lts":"Dubnium","security":false,"v8":"6.8.275.32"},{"name":"nodejs","version":"10.24.0","date":"2021-02-23","lts":"Dubnium","security":true,"v8":"6.8.275.32"},{"name":"nodejs","version":"11.0.0","date":"2018-10-23","lts":false,"security":false,"v8":"7.0.276.28"},{"name":"nodejs","version":"11.1.0","date":"2018-10-30","lts":false,"security":false,"v8":"7.0.276.32"},{"name":"nodejs","version":"11.2.0","date":"2018-11-15","lts":false,"security":false,"v8":"7.0.276.38"},{"name":"nodejs","version":"11.3.0","date":"2018-11-27","lts":false,"security":true,"v8":"7.0.276.38"},{"name":"nodejs","version":"11.4.0","date":"2018-12-07","lts":false,"security":false,"v8":"7.0.276.38"},{"name":"nodejs","version":"11.5.0","date":"2018-12-18","lts":false,"security":false,"v8":"7.0.276.38"},{"name":"nodejs","version":"11.6.0","date":"2018-12-26","lts":false,"security":false,"v8":"7.0.276.38"},{"name":"nodejs","version":"11.7.0","date":"2019-01-17","lts":false,"security":false,"v8":"7.0.276.38"},{"name":"nodejs","version":"11.8.0","date":"2019-01-24","lts":false,"security":false,"v8":"7.0.276.38"},{"name":"nodejs","version":"11.9.0","date":"2019-01-30","lts":false,"security":false,"v8":"7.0.276.38"},{"name":"nodejs","version":"11.10.0","date":"2019-02-14","lts":false,"security":false,"v8":"7.0.276.38"},{"name":"nodejs","version":"11.11.0","date":"2019-03-05","lts":false,"security":false,"v8":"7.0.276.38"},{"name":"nodejs","version":"11.12.0","date":"2019-03-14","lts":false,"security":false,"v8":"7.0.276.38"},{"name":"nodejs","version":"11.13.0","date":"2019-03-28","lts":false,"security":false,"v8":"7.0.276.38"},{"name":"nodejs","version":"11.14.0","date":"2019-04-10","lts":false,"security":false,"v8":"7.0.276.38"},{"name":"nodejs","version":"11.15.0","date":"2019-04-30","lts":false,"security":false,"v8":"7.0.276.38"},{"name":"nodejs","version":"12.0.0","date":"2019-04-23","lts":false,"security":false,"v8":"7.4.288.21"},{"name":"nodejs","version":"12.1.0","date":"2019-04-29","lts":false,"security":false,"v8":"7.4.288.21"},{"name":"nodejs","version":"12.2.0","date":"2019-05-07","lts":false,"security":false,"v8":"7.4.288.21"},{"name":"nodejs","version":"12.3.0","date":"2019-05-21","lts":false,"security":false,"v8":"7.4.288.27"},{"name":"nodejs","version":"12.4.0","date":"2019-06-04","lts":false,"security":false,"v8":"7.4.288.27"},{"name":"nodejs","version":"12.5.0","date":"2019-06-26","lts":false,"security":false,"v8":"7.5.288.22"},{"name":"nodejs","version":"12.6.0","date":"2019-07-03","lts":false,"security":false,"v8":"7.5.288.22"},{"name":"nodejs","version":"12.7.0","date":"2019-07-23","lts":false,"security":false,"v8":"7.5.288.22"},{"name":"nodejs","version":"12.8.0","date":"2019-08-06","lts":false,"security":false,"v8":"7.5.288.22"},{"name":"nodejs","version":"12.9.0","date":"2019-08-20","lts":false,"security":false,"v8":"7.6.303.29"},{"name":"nodejs","version":"12.10.0","date":"2019-09-04","lts":false,"security":false,"v8":"7.6.303.29"},{"name":"nodejs","version":"12.11.0","date":"2019-09-25","lts":false,"security":false,"v8":"7.7.299.11"},{"name":"nodejs","version":"12.12.0","date":"2019-10-11","lts":false,"security":false,"v8":"7.7.299.13"},{"name":"nodejs","version":"12.13.0","date":"2019-10-21","lts":"Erbium","security":false,"v8":"7.7.299.13"},{"name":"nodejs","version":"12.14.0","date":"2019-12-17","lts":"Erbium","security":true,"v8":"7.7.299.13"},{"name":"nodejs","version":"12.15.0","date":"2020-02-05","lts":"Erbium","security":true,"v8":"7.7.299.13"},{"name":"nodejs","version":"12.16.0","date":"2020-02-11","lts":"Erbium","security":false,"v8":"7.8.279.23"},{"name":"nodejs","version":"12.17.0","date":"2020-05-26","lts":"Erbium","security":false,"v8":"7.8.279.23"},{"name":"nodejs","version":"12.18.0","date":"2020-06-02","lts":"Erbium","security":true,"v8":"7.8.279.23"},{"name":"nodejs","version":"12.19.0","date":"2020-10-06","lts":"Erbium","security":false,"v8":"7.8.279.23"},{"name":"nodejs","version":"12.20.0","date":"2020-11-24","lts":"Erbium","security":false,"v8":"7.8.279.23"},{"name":"nodejs","version":"12.21.0","date":"2021-02-23","lts":"Erbium","security":true,"v8":"7.8.279.23"},{"name":"nodejs","version":"12.22.0","date":"2021-03-30","lts":"Erbium","security":false,"v8":"7.8.279.23"},{"name":"nodejs","version":"13.0.0","date":"2019-10-22","lts":false,"security":false,"v8":"7.8.279.17"},{"name":"nodejs","version":"13.1.0","date":"2019-11-05","lts":false,"security":false,"v8":"7.8.279.17"},{"name":"nodejs","version":"13.2.0","date":"2019-11-21","lts":false,"security":false,"v8":"7.9.317.23"},{"name":"nodejs","version":"13.3.0","date":"2019-12-03","lts":false,"security":false,"v8":"7.9.317.25"},{"name":"nodejs","version":"13.4.0","date":"2019-12-17","lts":false,"security":true,"v8":"7.9.317.25"},{"name":"nodejs","version":"13.5.0","date":"2019-12-18","lts":false,"security":false,"v8":"7.9.317.25"},{"name":"nodejs","version":"13.6.0","date":"2020-01-07","lts":false,"security":false,"v8":"7.9.317.25"},{"name":"nodejs","version":"13.7.0","date":"2020-01-21","lts":false,"security":false,"v8":"7.9.317.25"},{"name":"nodejs","version":"13.8.0","date":"2020-02-05","lts":false,"security":true,"v8":"7.9.317.25"},{"name":"nodejs","version":"13.9.0","date":"2020-02-18","lts":false,"security":false,"v8":"7.9.317.25"},{"name":"nodejs","version":"13.10.0","date":"2020-03-04","lts":false,"security":false,"v8":"7.9.317.25"},{"name":"nodejs","version":"13.11.0","date":"2020-03-12","lts":false,"security":false,"v8":"7.9.317.25"},{"name":"nodejs","version":"13.12.0","date":"2020-03-26","lts":false,"security":false,"v8":"7.9.317.25"},{"name":"nodejs","version":"13.13.0","date":"2020-04-14","lts":false,"security":false,"v8":"7.9.317.25"},{"name":"nodejs","version":"13.14.0","date":"2020-04-29","lts":false,"security":false,"v8":"7.9.317.25"},{"name":"nodejs","version":"14.0.0","date":"2020-04-21","lts":false,"security":false,"v8":"8.1.307.30"},{"name":"nodejs","version":"14.1.0","date":"2020-04-29","lts":false,"security":false,"v8":"8.1.307.31"},{"name":"nodejs","version":"14.2.0","date":"2020-05-05","lts":false,"security":false,"v8":"8.1.307.31"},{"name":"nodejs","version":"14.3.0","date":"2020-05-19","lts":false,"security":false,"v8":"8.1.307.31"},{"name":"nodejs","version":"14.4.0","date":"2020-06-02","lts":false,"security":true,"v8":"8.1.307.31"},{"name":"nodejs","version":"14.5.0","date":"2020-06-30","lts":false,"security":false,"v8":"8.3.110.9"},{"name":"nodejs","version":"14.6.0","date":"2020-07-20","lts":false,"security":false,"v8":"8.4.371.19"},{"name":"nodejs","version":"14.7.0","date":"2020-07-29","lts":false,"security":false,"v8":"8.4.371.19"},{"name":"nodejs","version":"14.8.0","date":"2020-08-11","lts":false,"security":false,"v8":"8.4.371.19"},{"name":"nodejs","version":"14.9.0","date":"2020-08-27","lts":false,"security":false,"v8":"8.4.371.19"},{"name":"nodejs","version":"14.10.0","date":"2020-09-08","lts":false,"security":false,"v8":"8.4.371.19"},{"name":"nodejs","version":"14.11.0","date":"2020-09-15","lts":false,"security":true,"v8":"8.4.371.19"},{"name":"nodejs","version":"14.12.0","date":"2020-09-22","lts":false,"security":false,"v8":"8.4.371.19"},{"name":"nodejs","version":"14.13.0","date":"2020-09-29","lts":false,"security":false,"v8":"8.4.371.19"},{"name":"nodejs","version":"14.14.0","date":"2020-10-15","lts":false,"security":false,"v8":"8.4.371.19"},{"name":"nodejs","version":"14.15.0","date":"2020-10-27","lts":"Fermium","security":false,"v8":"8.4.371.19"},{"name":"nodejs","version":"14.16.0","date":"2021-02-23","lts":"Fermium","security":true,"v8":"8.4.371.19"},{"name":"nodejs","version":"14.17.0","date":"2021-05-11","lts":"Fermium","security":false,"v8":"8.4.371.23"},{"name":"nodejs","version":"14.18.0","date":"2021-09-28","lts":"Fermium","security":false,"v8":"8.4.371.23"},{"name":"nodejs","version":"14.19.0","date":"2022-02-01","lts":"Fermium","security":false,"v8":"8.4.371.23"},{"name":"nodejs","version":"14.20.0","date":"2022-07-07","lts":"Fermium","security":true,"v8":"8.4.371.23"},{"name":"nodejs","version":"14.21.0","date":"2022-11-01","lts":"Fermium","security":false,"v8":"8.4.371.23"},{"name":"nodejs","version":"15.0.0","date":"2020-10-20","lts":false,"security":false,"v8":"8.6.395.16"},{"name":"nodejs","version":"15.1.0","date":"2020-11-04","lts":false,"security":false,"v8":"8.6.395.17"},{"name":"nodejs","version":"15.2.0","date":"2020-11-10","lts":false,"security":false,"v8":"8.6.395.17"},{"name":"nodejs","version":"15.3.0","date":"2020-11-24","lts":false,"security":false,"v8":"8.6.395.17"},{"name":"nodejs","version":"15.4.0","date":"2020-12-09","lts":false,"security":false,"v8":"8.6.395.17"},{"name":"nodejs","version":"15.5.0","date":"2020-12-22","lts":false,"security":false,"v8":"8.6.395.17"},{"name":"nodejs","version":"15.6.0","date":"2021-01-14","lts":false,"security":false,"v8":"8.6.395.17"},{"name":"nodejs","version":"15.7.0","date":"2021-01-25","lts":false,"security":false,"v8":"8.6.395.17"},{"name":"nodejs","version":"15.8.0","date":"2021-02-02","lts":false,"security":false,"v8":"8.6.395.17"},{"name":"nodejs","version":"15.9.0","date":"2021-02-18","lts":false,"security":false,"v8":"8.6.395.17"},{"name":"nodejs","version":"15.10.0","date":"2021-02-23","lts":false,"security":true,"v8":"8.6.395.17"},{"name":"nodejs","version":"15.11.0","date":"2021-03-03","lts":false,"security":false,"v8":"8.6.395.17"},{"name":"nodejs","version":"15.12.0","date":"2021-03-17","lts":false,"security":false,"v8":"8.6.395.17"},{"name":"nodejs","version":"15.13.0","date":"2021-03-31","lts":false,"security":false,"v8":"8.6.395.17"},{"name":"nodejs","version":"15.14.0","date":"2021-04-06","lts":false,"security":false,"v8":"8.6.395.17"},{"name":"nodejs","version":"16.0.0","date":"2021-04-20","lts":false,"security":false,"v8":"9.0.257.17"},{"name":"nodejs","version":"16.1.0","date":"2021-05-04","lts":false,"security":false,"v8":"9.0.257.24"},{"name":"nodejs","version":"16.2.0","date":"2021-05-19","lts":false,"security":false,"v8":"9.0.257.25"},{"name":"nodejs","version":"16.3.0","date":"2021-06-03","lts":false,"security":false,"v8":"9.0.257.25"},{"name":"nodejs","version":"16.4.0","date":"2021-06-23","lts":false,"security":false,"v8":"9.1.269.36"},{"name":"nodejs","version":"16.5.0","date":"2021-07-14","lts":false,"security":false,"v8":"9.1.269.38"},{"name":"nodejs","version":"16.6.0","date":"2021-07-29","lts":false,"security":true,"v8":"9.2.230.21"},{"name":"nodejs","version":"16.7.0","date":"2021-08-18","lts":false,"security":false,"v8":"9.2.230.21"},{"name":"nodejs","version":"16.8.0","date":"2021-08-25","lts":false,"security":false,"v8":"9.2.230.21"},{"name":"nodejs","version":"16.9.0","date":"2021-09-07","lts":false,"security":false,"v8":"9.3.345.16"},{"name":"nodejs","version":"16.10.0","date":"2021-09-22","lts":false,"security":false,"v8":"9.3.345.19"},{"name":"nodejs","version":"16.11.0","date":"2021-10-08","lts":false,"security":false,"v8":"9.4.146.19"},{"name":"nodejs","version":"16.12.0","date":"2021-10-20","lts":false,"security":false,"v8":"9.4.146.19"},{"name":"nodejs","version":"16.13.0","date":"2021-10-26","lts":"Gallium","security":false,"v8":"9.4.146.19"},{"name":"nodejs","version":"16.14.0","date":"2022-02-08","lts":"Gallium","security":false,"v8":"9.4.146.24"},{"name":"nodejs","version":"16.15.0","date":"2022-04-26","lts":"Gallium","security":false,"v8":"9.4.146.24"},{"name":"nodejs","version":"16.16.0","date":"2022-07-07","lts":"Gallium","security":true,"v8":"9.4.146.24"},{"name":"nodejs","version":"16.17.0","date":"2022-08-16","lts":"Gallium","security":false,"v8":"9.4.146.26"},{"name":"nodejs","version":"16.18.0","date":"2022-10-12","lts":"Gallium","security":false,"v8":"9.4.146.26"},{"name":"nodejs","version":"16.19.0","date":"2022-12-13","lts":"Gallium","security":false,"v8":"9.4.146.26"},{"name":"nodejs","version":"16.20.0","date":"2023-03-28","lts":"Gallium","security":false,"v8":"9.4.146.26"},{"name":"nodejs","version":"17.0.0","date":"2021-10-19","lts":false,"security":false,"v8":"9.5.172.21"},{"name":"nodejs","version":"17.1.0","date":"2021-11-09","lts":false,"security":false,"v8":"9.5.172.25"},{"name":"nodejs","version":"17.2.0","date":"2021-11-30","lts":false,"security":false,"v8":"9.6.180.14"},{"name":"nodejs","version":"17.3.0","date":"2021-12-17","lts":false,"security":false,"v8":"9.6.180.15"},{"name":"nodejs","version":"17.4.0","date":"2022-01-18","lts":false,"security":false,"v8":"9.6.180.15"},{"name":"nodejs","version":"17.5.0","date":"2022-02-10","lts":false,"security":false,"v8":"9.6.180.15"},{"name":"nodejs","version":"17.6.0","date":"2022-02-22","lts":false,"security":false,"v8":"9.6.180.15"},{"name":"nodejs","version":"17.7.0","date":"2022-03-09","lts":false,"security":false,"v8":"9.6.180.15"},{"name":"nodejs","version":"17.8.0","date":"2022-03-22","lts":false,"security":false,"v8":"9.6.180.15"},{"name":"nodejs","version":"17.9.0","date":"2022-04-07","lts":false,"security":false,"v8":"9.6.180.15"},{"name":"nodejs","version":"18.0.0","date":"2022-04-18","lts":false,"security":false,"v8":"10.1.124.8"},{"name":"nodejs","version":"18.1.0","date":"2022-05-03","lts":false,"security":false,"v8":"10.1.124.8"},{"name":"nodejs","version":"18.2.0","date":"2022-05-17","lts":false,"security":false,"v8":"10.1.124.8"},{"name":"nodejs","version":"18.3.0","date":"2022-06-02","lts":false,"security":false,"v8":"10.2.154.4"},{"name":"nodejs","version":"18.4.0","date":"2022-06-16","lts":false,"security":false,"v8":"10.2.154.4"},{"name":"nodejs","version":"18.5.0","date":"2022-07-06","lts":false,"security":true,"v8":"10.2.154.4"},{"name":"nodejs","version":"18.6.0","date":"2022-07-13","lts":false,"security":false,"v8":"10.2.154.13"},{"name":"nodejs","version":"18.7.0","date":"2022-07-26","lts":false,"security":false,"v8":"10.2.154.13"},{"name":"nodejs","version":"18.8.0","date":"2022-08-24","lts":false,"security":false,"v8":"10.2.154.13"},{"name":"nodejs","version":"18.9.0","date":"2022-09-07","lts":false,"security":false,"v8":"10.2.154.15"},{"name":"nodejs","version":"18.10.0","date":"2022-09-28","lts":false,"security":false,"v8":"10.2.154.15"},{"name":"nodejs","version":"18.11.0","date":"2022-10-13","lts":false,"security":false,"v8":"10.2.154.15"},{"name":"nodejs","version":"18.12.0","date":"2022-10-25","lts":"Hydrogen","security":false,"v8":"10.2.154.15"},{"name":"nodejs","version":"18.13.0","date":"2023-01-05","lts":"Hydrogen","security":false,"v8":"10.2.154.23"},{"name":"nodejs","version":"18.14.0","date":"2023-02-01","lts":"Hydrogen","security":false,"v8":"10.2.154.23"},{"name":"nodejs","version":"18.15.0","date":"2023-03-05","lts":"Hydrogen","security":false,"v8":"10.2.154.26"},{"name":"nodejs","version":"18.16.0","date":"2023-04-12","lts":"Hydrogen","security":false,"v8":"10.2.154.26"},{"name":"nodejs","version":"19.0.0","date":"2022-10-17","lts":false,"security":false,"v8":"10.7.193.13"},{"name":"nodejs","version":"19.1.0","date":"2022-11-14","lts":false,"security":false,"v8":"10.7.193.20"},{"name":"nodejs","version":"19.2.0","date":"2022-11-29","lts":false,"security":false,"v8":"10.8.168.20"},{"name":"nodejs","version":"19.3.0","date":"2022-12-14","lts":false,"security":false,"v8":"10.8.168.21"},{"name":"nodejs","version":"19.4.0","date":"2023-01-05","lts":false,"security":false,"v8":"10.8.168.25"},{"name":"nodejs","version":"19.5.0","date":"2023-01-24","lts":false,"security":false,"v8":"10.8.168.25"},{"name":"nodejs","version":"19.6.0","date":"2023-02-01","lts":false,"security":false,"v8":"10.8.168.25"},{"name":"nodejs","version":"19.7.0","date":"2023-02-21","lts":false,"security":false,"v8":"10.8.168.25"},{"name":"nodejs","version":"19.8.0","date":"2023-03-14","lts":false,"security":false,"v8":"10.8.168.25"},{"name":"nodejs","version":"19.9.0","date":"2023-04-10","lts":false,"security":false,"v8":"10.8.168.25"},{"name":"nodejs","version":"20.0.0","date":"2023-04-17","lts":false,"security":false,"v8":"11.3.244.4"},{"name":"nodejs","version":"20.1.0","date":"2023-05-03","lts":false,"security":false,"v8":"11.3.244.8"},{"name":"nodejs","version":"20.2.0","date":"2023-05-16","lts":false,"security":false,"v8":"11.3.244.8"}]
\ No newline at end of file
diff --git a/node_modules/node-releases/data/release-schedule/release-schedule.json b/node_modules/node-releases/data/release-schedule/release-schedule.json
new file mode 100644
index 0000000..5eca422
--- /dev/null
+++ b/node_modules/node-releases/data/release-schedule/release-schedule.json
@@ -0,0 +1 @@
+{"v0.8":{"start":"2012-06-25","end":"2014-07-31"},"v0.10":{"start":"2013-03-11","end":"2016-10-31"},"v0.12":{"start":"2015-02-06","end":"2016-12-31"},"v4":{"start":"2015-09-08","lts":"2015-10-12","maintenance":"2017-04-01","end":"2018-04-30","codename":"Argon"},"v5":{"start":"2015-10-29","maintenance":"2016-04-30","end":"2016-06-30"},"v6":{"start":"2016-04-26","lts":"2016-10-18","maintenance":"2018-04-30","end":"2019-04-30","codename":"Boron"},"v7":{"start":"2016-10-25","maintenance":"2017-04-30","end":"2017-06-30"},"v8":{"start":"2017-05-30","lts":"2017-10-31","maintenance":"2019-01-01","end":"2019-12-31","codename":"Carbon"},"v9":{"start":"2017-10-01","maintenance":"2018-04-01","end":"2018-06-30"},"v10":{"start":"2018-04-24","lts":"2018-10-30","maintenance":"2020-05-19","end":"2021-04-30","codename":"Dubnium"},"v11":{"start":"2018-10-23","maintenance":"2019-04-22","end":"2019-06-01"},"v12":{"start":"2019-04-23","lts":"2019-10-21","maintenance":"2020-11-30","end":"2022-04-30","codename":"Erbium"},"v13":{"start":"2019-10-22","maintenance":"2020-04-01","end":"2020-06-01"},"v14":{"start":"2020-04-21","lts":"2020-10-27","maintenance":"2021-10-19","end":"2023-04-30","codename":"Fermium"},"v15":{"start":"2020-10-20","maintenance":"2021-04-01","end":"2021-06-01"},"v16":{"start":"2021-04-20","lts":"2021-10-26","maintenance":"2022-10-18","end":"2023-09-11","codename":"Gallium"},"v17":{"start":"2021-10-19","maintenance":"2022-04-01","end":"2022-06-01"},"v18":{"start":"2022-04-19","lts":"2022-10-25","maintenance":"2023-10-18","end":"2025-04-30","codename":"Hydrogen"},"v19":{"start":"2022-10-18","maintenance":"2023-04-01","end":"2023-06-01"},"v20":{"start":"2023-04-18","lts":"2023-10-24","maintenance":"2024-10-22","end":"2026-04-30","codename":""}}
\ No newline at end of file
diff --git a/node_modules/node-releases/package.json b/node_modules/node-releases/package.json
new file mode 100644
index 0000000..c3ab96e
--- /dev/null
+++ b/node_modules/node-releases/package.json
@@ -0,0 +1,19 @@
+{
+ "name": "node-releases",
+ "version": "2.0.12",
+ "description": "Node.js releases data",
+ "type": "module",
+ "scripts": {
+ "build": "node scripts/build.js"
+ },
+ "repository": "chicoxyzzy/node-releases",
+ "keywords": [
+ "nodejs",
+ "releases"
+ ],
+ "author": "Sergey Rubanov ",
+ "license": "MIT",
+ "devDependencies": {
+ "semver": "^7.3.5"
+ }
+}
diff --git a/node_modules/normalize-path/LICENSE b/node_modules/normalize-path/LICENSE
new file mode 100644
index 0000000..d32ab44
--- /dev/null
+++ b/node_modules/normalize-path/LICENSE
@@ -0,0 +1,21 @@
+The MIT License (MIT)
+
+Copyright (c) 2014-2018, Jon Schlinkert.
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.
diff --git a/node_modules/normalize-path/README.md b/node_modules/normalize-path/README.md
new file mode 100644
index 0000000..726d4d6
--- /dev/null
+++ b/node_modules/normalize-path/README.md
@@ -0,0 +1,127 @@
+# normalize-path [![NPM version](https://img.shields.io/npm/v/normalize-path.svg?style=flat)](https://www.npmjs.com/package/normalize-path) [![NPM monthly downloads](https://img.shields.io/npm/dm/normalize-path.svg?style=flat)](https://npmjs.org/package/normalize-path) [![NPM total downloads](https://img.shields.io/npm/dt/normalize-path.svg?style=flat)](https://npmjs.org/package/normalize-path) [![Linux Build Status](https://img.shields.io/travis/jonschlinkert/normalize-path.svg?style=flat&label=Travis)](https://travis-ci.org/jonschlinkert/normalize-path)
+
+> Normalize slashes in a file path to be posix/unix-like forward slashes. Also condenses repeat slashes to a single slash and removes and trailing slashes, unless disabled.
+
+Please consider following this project's author, [Jon Schlinkert](https://github.com/jonschlinkert), and consider starring the project to show your :heart: and support.
+
+## Install
+
+Install with [npm](https://www.npmjs.com/):
+
+```sh
+$ npm install --save normalize-path
+```
+
+## Usage
+
+```js
+const normalize = require('normalize-path');
+
+console.log(normalize('\\foo\\bar\\baz\\'));
+//=> '/foo/bar/baz'
+```
+
+**win32 namespaces**
+
+```js
+console.log(normalize('\\\\?\\UNC\\Server01\\user\\docs\\Letter.txt'));
+//=> '//?/UNC/Server01/user/docs/Letter.txt'
+
+console.log(normalize('\\\\.\\CdRomX'));
+//=> '//./CdRomX'
+```
+
+**Consecutive slashes**
+
+Condenses multiple consecutive forward slashes (except for leading slashes in win32 namespaces) to a single slash.
+
+```js
+console.log(normalize('.//foo//bar///////baz/'));
+//=> './foo/bar/baz'
+```
+
+### Trailing slashes
+
+By default trailing slashes are removed. Pass `false` as the last argument to disable this behavior and _**keep** trailing slashes_:
+
+```js
+console.log(normalize('foo\\bar\\baz\\', false)); //=> 'foo/bar/baz/'
+console.log(normalize('./foo/bar/baz/', false)); //=> './foo/bar/baz/'
+```
+
+## Release history
+
+### v3.0
+
+No breaking changes in this release.
+
+* a check was added to ensure that [win32 namespaces](https://msdn.microsoft.com/library/windows/desktop/aa365247(v=vs.85).aspx#namespaces) are handled properly by win32 `path.parse()` after a path has been normalized by this library.
+* a minor optimization was made to simplify how the trailing separator was handled
+
+## About
+
+
+Contributing
+
+Pull requests and stars are always welcome. For bugs and feature requests, [please create an issue](../../issues/new).
+
+
+
+
+Running Tests
+
+Running and reviewing unit tests is a great way to get familiarized with a library and its API. You can install dependencies and run tests with the following command:
+
+```sh
+$ npm install && npm test
+```
+
+
+
+
+Building docs
+
+_(This project's readme.md is generated by [verb](https://github.com/verbose/verb-generate-readme), please don't edit the readme directly. Any changes to the readme must be made in the [.verb.md](.verb.md) readme template.)_
+
+To generate the readme, run the following command:
+
+```sh
+$ npm install -g verbose/verb#dev verb-generate-readme && verb
+```
+
+
+
+### Related projects
+
+Other useful path-related libraries:
+
+* [contains-path](https://www.npmjs.com/package/contains-path): Return true if a file path contains the given path. | [homepage](https://github.com/jonschlinkert/contains-path "Return true if a file path contains the given path.")
+* [is-absolute](https://www.npmjs.com/package/is-absolute): Returns true if a file path is absolute. Does not rely on the path module… [more](https://github.com/jonschlinkert/is-absolute) | [homepage](https://github.com/jonschlinkert/is-absolute "Returns true if a file path is absolute. Does not rely on the path module and can be used as a polyfill for node.js native `path.isAbolute`.")
+* [is-relative](https://www.npmjs.com/package/is-relative): Returns `true` if the path appears to be relative. | [homepage](https://github.com/jonschlinkert/is-relative "Returns `true` if the path appears to be relative.")
+* [parse-filepath](https://www.npmjs.com/package/parse-filepath): Pollyfill for node.js `path.parse`, parses a filepath into an object. | [homepage](https://github.com/jonschlinkert/parse-filepath "Pollyfill for node.js `path.parse`, parses a filepath into an object.")
+* [path-ends-with](https://www.npmjs.com/package/path-ends-with): Return `true` if a file path ends with the given string/suffix. | [homepage](https://github.com/jonschlinkert/path-ends-with "Return `true` if a file path ends with the given string/suffix.")
+* [unixify](https://www.npmjs.com/package/unixify): Convert Windows file paths to unix paths. | [homepage](https://github.com/jonschlinkert/unixify "Convert Windows file paths to unix paths.")
+
+### Contributors
+
+| **Commits** | **Contributor** |
+| --- | --- |
+| 35 | [jonschlinkert](https://github.com/jonschlinkert) |
+| 1 | [phated](https://github.com/phated) |
+
+### Author
+
+**Jon Schlinkert**
+
+* [LinkedIn Profile](https://linkedin.com/in/jonschlinkert)
+* [GitHub Profile](https://github.com/jonschlinkert)
+* [Twitter Profile](https://twitter.com/jonschlinkert)
+
+### License
+
+Copyright © 2018, [Jon Schlinkert](https://github.com/jonschlinkert).
+Released under the [MIT License](LICENSE).
+
+***
+
+_This file was generated by [verb-generate-readme](https://github.com/verbose/verb-generate-readme), v0.6.0, on April 19, 2018._
\ No newline at end of file
diff --git a/node_modules/normalize-path/index.js b/node_modules/normalize-path/index.js
new file mode 100644
index 0000000..6fac553
--- /dev/null
+++ b/node_modules/normalize-path/index.js
@@ -0,0 +1,35 @@
+/*!
+ * normalize-path
+ *
+ * Copyright (c) 2014-2018, Jon Schlinkert.
+ * Released under the MIT License.
+ */
+
+module.exports = function(path, stripTrailing) {
+ if (typeof path !== 'string') {
+ throw new TypeError('expected path to be a string');
+ }
+
+ if (path === '\\' || path === '/') return '/';
+
+ var len = path.length;
+ if (len <= 1) return path;
+
+ // ensure that win32 namespaces has two leading slashes, so that the path is
+ // handled properly by the win32 version of path.parse() after being normalized
+ // https://msdn.microsoft.com/library/windows/desktop/aa365247(v=vs.85).aspx#namespaces
+ var prefix = '';
+ if (len > 4 && path[3] === '\\') {
+ var ch = path[2];
+ if ((ch === '?' || ch === '.') && path.slice(0, 2) === '\\\\') {
+ path = path.slice(2);
+ prefix = '//';
+ }
+ }
+
+ var segs = path.split(/[/\\]+/);
+ if (stripTrailing !== false && segs[segs.length - 1] === '') {
+ segs.pop();
+ }
+ return prefix + segs.join('/');
+};
diff --git a/node_modules/normalize-path/package.json b/node_modules/normalize-path/package.json
new file mode 100644
index 0000000..ad61098
--- /dev/null
+++ b/node_modules/normalize-path/package.json
@@ -0,0 +1,77 @@
+{
+ "name": "normalize-path",
+ "description": "Normalize slashes in a file path to be posix/unix-like forward slashes. Also condenses repeat slashes to a single slash and removes and trailing slashes, unless disabled.",
+ "version": "3.0.0",
+ "homepage": "https://github.com/jonschlinkert/normalize-path",
+ "author": "Jon Schlinkert (https://github.com/jonschlinkert)",
+ "contributors": [
+ "Blaine Bublitz (https://twitter.com/BlaineBublitz)",
+ "Jon Schlinkert (http://twitter.com/jonschlinkert)"
+ ],
+ "repository": "jonschlinkert/normalize-path",
+ "bugs": {
+ "url": "https://github.com/jonschlinkert/normalize-path/issues"
+ },
+ "license": "MIT",
+ "files": [
+ "index.js"
+ ],
+ "main": "index.js",
+ "engines": {
+ "node": ">=0.10.0"
+ },
+ "scripts": {
+ "test": "mocha"
+ },
+ "devDependencies": {
+ "gulp-format-md": "^1.0.0",
+ "minimist": "^1.2.0",
+ "mocha": "^3.5.3"
+ },
+ "keywords": [
+ "absolute",
+ "backslash",
+ "delimiter",
+ "file",
+ "file-path",
+ "filepath",
+ "fix",
+ "forward",
+ "fp",
+ "fs",
+ "normalize",
+ "path",
+ "relative",
+ "separator",
+ "slash",
+ "slashes",
+ "trailing",
+ "unix",
+ "urix"
+ ],
+ "verb": {
+ "toc": false,
+ "layout": "default",
+ "tasks": [
+ "readme"
+ ],
+ "plugins": [
+ "gulp-format-md"
+ ],
+ "related": {
+ "description": "Other useful path-related libraries:",
+ "list": [
+ "contains-path",
+ "is-absolute",
+ "is-relative",
+ "parse-filepath",
+ "path-ends-with",
+ "path-ends-with",
+ "unixify"
+ ]
+ },
+ "lint": {
+ "reflinks": true
+ }
+ }
+}
diff --git a/node_modules/normalize-range/index.js b/node_modules/normalize-range/index.js
new file mode 100644
index 0000000..d5a2ea8
--- /dev/null
+++ b/node_modules/normalize-range/index.js
@@ -0,0 +1,54 @@
+'use strict';
+module.exports = {
+ wrap: wrapRange,
+ limit: limitRange,
+ validate: validateRange,
+ test: testRange,
+ curry: curry,
+ name: name
+};
+
+function wrapRange(min, max, value) {
+ var maxLessMin = max - min;
+ return ((value - min) % maxLessMin + maxLessMin) % maxLessMin + min;
+}
+
+function limitRange(min, max, value) {
+ return Math.max(min, Math.min(max, value));
+}
+
+function validateRange(min, max, value, minExclusive, maxExclusive) {
+ if (!testRange(min, max, value, minExclusive, maxExclusive)) {
+ throw new Error(value + ' is outside of range [' + min + ',' + max + ')');
+ }
+ return value;
+}
+
+function testRange(min, max, value, minExclusive, maxExclusive) {
+ return !(
+ value < min ||
+ value > max ||
+ (maxExclusive && (value === max)) ||
+ (minExclusive && (value === min))
+ );
+}
+
+function name(min, max, minExcl, maxExcl) {
+ return (minExcl ? '(' : '[') + min + ',' + max + (maxExcl ? ')' : ']');
+}
+
+function curry(min, max, minExclusive, maxExclusive) {
+ var boundNameFn = name.bind(null, min, max, minExclusive, maxExclusive);
+ return {
+ wrap: wrapRange.bind(null, min, max),
+ limit: limitRange.bind(null, min, max),
+ validate: function(value) {
+ return validateRange(min, max, value, minExclusive, maxExclusive);
+ },
+ test: function(value) {
+ return testRange(min, max, value, minExclusive, maxExclusive);
+ },
+ toString: boundNameFn,
+ name: boundNameFn
+ };
+}
diff --git a/node_modules/normalize-range/license b/node_modules/normalize-range/license
new file mode 100644
index 0000000..ad5d021
--- /dev/null
+++ b/node_modules/normalize-range/license
@@ -0,0 +1,21 @@
+The MIT License (MIT)
+
+Copyright (c) James Talmage (github.com/jamestalmage)
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.
diff --git a/node_modules/normalize-range/package.json b/node_modules/normalize-range/package.json
new file mode 100644
index 0000000..b98035a
--- /dev/null
+++ b/node_modules/normalize-range/package.json
@@ -0,0 +1,46 @@
+{
+ "name": "normalize-range",
+ "version": "0.1.2",
+ "description": "Utility for normalizing a numeric range, with a wrapping function useful for polar coordinates",
+ "license": "MIT",
+ "repository": "jamestalmage/normalize-range",
+ "author": {
+ "name": "James Talmage",
+ "email": "james@talmage.io",
+ "url": "github.com/jamestalmage"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ },
+ "scripts": {
+ "test": "npm run cover && npm run lint && npm run style",
+ "cover": "istanbul cover ./node_modules/.bin/_mocha",
+ "lint": "jshint --reporter=node_modules/jshint-stylish *.js test/*.js",
+ "debug": "mocha",
+ "watch": "mocha -w",
+ "style": "jscs *.js ./**/*.js && jscs ./test/** --config=./test/.jscsrc"
+ },
+ "files": [
+ "index.js"
+ ],
+ "keywords": [
+ "range",
+ "normalize",
+ "utility",
+ "angle",
+ "degrees",
+ "polar"
+ ],
+ "dependencies": {},
+ "devDependencies": {
+ "almost-equal": "^1.0.0",
+ "codeclimate-test-reporter": "^0.1.0",
+ "coveralls": "^2.11.2",
+ "istanbul": "^0.3.17",
+ "jscs": "^2.1.1",
+ "jshint": "^2.8.0",
+ "jshint-stylish": "^2.0.1",
+ "mocha": "^2.2.5",
+ "stringify-pi": "0.0.3"
+ }
+}
diff --git a/node_modules/normalize-range/readme.md b/node_modules/normalize-range/readme.md
new file mode 100644
index 0000000..29d84cd
--- /dev/null
+++ b/node_modules/normalize-range/readme.md
@@ -0,0 +1,148 @@
+# normalize-range
+
+Utility for normalizing a numeric range, with a wrapping function useful for polar coordinates.
+
+[![Build Status](https://travis-ci.org/jamestalmage/normalize-range.svg?branch=master)](https://travis-ci.org/jamestalmage/normalize-range)
+[![Coverage Status](https://coveralls.io/repos/jamestalmage/normalize-range/badge.svg?branch=master&service=github)](https://coveralls.io/github/jamestalmage/normalize-range?branch=master)
+[![Code Climate](https://codeclimate.com/github/jamestalmage/normalize-range/badges/gpa.svg)](https://codeclimate.com/github/jamestalmage/normalize-range)
+[![Dependency Status](https://david-dm.org/jamestalmage/normalize-range.svg)](https://david-dm.org/jamestalmage/normalize-range)
+[![devDependency Status](https://david-dm.org/jamestalmage/normalize-range/dev-status.svg)](https://david-dm.org/jamestalmage/normalize-range#info=devDependencies)
+
+[![NPM](https://nodei.co/npm/normalize-range.png)](https://nodei.co/npm/normalize-range/)
+
+## Usage
+
+```js
+var nr = require('normalize-range');
+
+nr.wrap(0, 360, 400);
+//=> 40
+
+nr.wrap(0, 360, -90);
+//=> 270
+
+nr.limit(0, 100, 500);
+//=> 100
+
+nr.limit(0, 100, -20);
+//=> 0
+
+// There is a convenient currying function
+var wrapAngle = nr.curry(0, 360).wrap;
+var limitTo10 = nr.curry(0, 10).limit;
+
+wrapAngle(-30);
+//=> 330
+```
+## API
+
+### wrap(min, max, value)
+
+Normalizes a values that "wraps around". For example, in a polar coordinate system, 270˚ can also be
+represented as -90˚.
+For wrapping purposes we assume `max` is functionally equivalent to `min`, and that `wrap(max + 1) === wrap(min + 1)`.
+Wrap always assumes that `min` is *inclusive*, and `max` is *exclusive*.
+In other words, if `value === max` the function will wrap it, and return `min`, but `min` will not be wrapped.
+
+```js
+nr.wrap(0, 360, 0) === 0;
+nr.wrap(0, 360, 360) === 0;
+nr.wrap(0, 360, 361) === 1;
+nr.wrap(0, 360, -1) === 359;
+```
+
+You are not restricted to whole numbers, and ranges can be negative.
+
+```js
+var π = Math.PI;
+var radianRange = nr.curry(-π, π);
+
+redianRange.wrap(0) === 0;
+nr.wrap(π) === -π;
+nr.wrap(4 * π / 3) === -2 * π / 3;
+```
+
+### limit(min, max, value)
+
+Normalize the value by bringing it within the range.
+If `value` is greater than `max`, `max` will be returned.
+If `value` is less than `min`, `min` will be returned.
+Otherwise, `value` is returned unaltered.
+Both ends of this range are *inclusive*.
+
+### test(min, max, value, [minExclusive], [maxExclusive])
+
+Returns `true` if `value` is within the range, `false` otherwise.
+It defaults to `inclusive` on both ends of the range, but that can be
+changed by setting `minExclusive` and/or `maxExclusive` to a truthy value.
+
+### validate(min, max, value, [minExclusive], [maxExclusive])
+
+Returns `value` or throws an error if `value` is outside the specified range.
+
+### name(min, max, value, [minExclusive], [maxExclusive])
+
+Returns a string representing this range in
+[range notation](https://en.wikipedia.org/wiki/Interval_(mathematics)#Classification_of_intervals).
+
+### curry(min, max, [minExclusive], [maxExclusive])
+
+Convenience method for currying all method arguments except `value`.
+
+```js
+var angle = require('normalize-range').curry(-180, 180, false, true);
+
+angle.wrap(270)
+//=> -90
+
+angle.limit(200)
+//=> 180
+
+angle.test(0)
+//=> true
+
+angle.validate(300)
+//=> throws an Error
+
+angle.toString() // or angle.name()
+//=> "[-180,180)"
+```
+
+#### min
+
+*Required*
+Type: `number`
+
+The minimum value (inclusive) of the range.
+
+#### max
+
+*Required*
+Type: `number`
+
+The maximum value (exclusive) of the range.
+
+#### value
+
+*Required*
+Type: `number`
+
+The value to be normalized.
+
+#### returns
+
+Type: `number`
+
+The normalized value.
+
+## Building and Releasing
+
+- `npm test`: tests, linting, coverage and style checks.
+- `npm run watch`: autotest mode for active development.
+- `npm run debug`: run tests without coverage (istanbul can obscure line #'s)
+
+Release via `cut-release` tool.
+
+## License
+
+MIT © [James Talmage](http://github.com/jamestalmage)
diff --git a/node_modules/path-type/index.d.ts b/node_modules/path-type/index.d.ts
new file mode 100644
index 0000000..910a50a
--- /dev/null
+++ b/node_modules/path-type/index.d.ts
@@ -0,0 +1,51 @@
+export type PathTypeFunction = (path: string) => Promise;
+
+/**
+ * Check whether the passed `path` is a file.
+ *
+ * @param path - The path to check.
+ * @returns Whether the `path` is a file.
+ */
+export const isFile: PathTypeFunction;
+
+/**
+ * Check whether the passed `path` is a directory.
+ *
+ * @param path - The path to check.
+ * @returns Whether the `path` is a directory.
+ */
+export const isDirectory: PathTypeFunction;
+
+/**
+ * Check whether the passed `path` is a symlink.
+ *
+ * @param path - The path to check.
+ * @returns Whether the `path` is a symlink.
+ */
+export const isSymlink: PathTypeFunction;
+
+export type PathTypeSyncFunction = (path: string) => boolean;
+
+/**
+ * Synchronously check whether the passed `path` is a file.
+ *
+ * @param path - The path to check.
+ * @returns Whether the `path` is a file.
+ */
+export const isFileSync: PathTypeSyncFunction;
+
+/**
+ * Synchronously check whether the passed `path` is a directory.
+ *
+ * @param path - The path to check.
+ * @returns Whether the `path` is a directory.
+ */
+export const isDirectorySync: PathTypeSyncFunction;
+
+/**
+ * Synchronously check whether the passed `path` is a symlink.
+ *
+ * @param path - The path to check.
+ * @returns Whether the `path` is a directory.
+ */
+export const isSymlinkSync: PathTypeSyncFunction;
diff --git a/node_modules/path-type/index.js b/node_modules/path-type/index.js
new file mode 100644
index 0000000..b8f34b2
--- /dev/null
+++ b/node_modules/path-type/index.js
@@ -0,0 +1,43 @@
+'use strict';
+const {promisify} = require('util');
+const fs = require('fs');
+
+async function isType(fsStatType, statsMethodName, filePath) {
+ if (typeof filePath !== 'string') {
+ throw new TypeError(`Expected a string, got ${typeof filePath}`);
+ }
+
+ try {
+ const stats = await promisify(fs[fsStatType])(filePath);
+ return stats[statsMethodName]();
+ } catch (error) {
+ if (error.code === 'ENOENT') {
+ return false;
+ }
+
+ throw error;
+ }
+}
+
+function isTypeSync(fsStatType, statsMethodName, filePath) {
+ if (typeof filePath !== 'string') {
+ throw new TypeError(`Expected a string, got ${typeof filePath}`);
+ }
+
+ try {
+ return fs[fsStatType](filePath)[statsMethodName]();
+ } catch (error) {
+ if (error.code === 'ENOENT') {
+ return false;
+ }
+
+ throw error;
+ }
+}
+
+exports.isFile = isType.bind(null, 'stat', 'isFile');
+exports.isDirectory = isType.bind(null, 'stat', 'isDirectory');
+exports.isSymlink = isType.bind(null, 'lstat', 'isSymbolicLink');
+exports.isFileSync = isTypeSync.bind(null, 'statSync', 'isFile');
+exports.isDirectorySync = isTypeSync.bind(null, 'statSync', 'isDirectory');
+exports.isSymlinkSync = isTypeSync.bind(null, 'lstatSync', 'isSymbolicLink');
diff --git a/node_modules/path-type/license b/node_modules/path-type/license
new file mode 100644
index 0000000..e7af2f7
--- /dev/null
+++ b/node_modules/path-type/license
@@ -0,0 +1,9 @@
+MIT License
+
+Copyright (c) Sindre Sorhus (sindresorhus.com)
+
+Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
diff --git a/node_modules/path-type/package.json b/node_modules/path-type/package.json
new file mode 100644
index 0000000..635b711
--- /dev/null
+++ b/node_modules/path-type/package.json
@@ -0,0 +1,45 @@
+{
+ "name": "path-type",
+ "version": "4.0.0",
+ "description": "Check if a path is a file, directory, or symlink",
+ "license": "MIT",
+ "repository": "sindresorhus/path-type",
+ "author": {
+ "name": "Sindre Sorhus",
+ "email": "sindresorhus@gmail.com",
+ "url": "sindresorhus.com"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "scripts": {
+ "test": "xo && nyc ava && tsd-check"
+ },
+ "files": [
+ "index.js",
+ "index.d.ts"
+ ],
+ "keywords": [
+ "path",
+ "fs",
+ "type",
+ "is",
+ "check",
+ "directory",
+ "dir",
+ "file",
+ "filepath",
+ "symlink",
+ "symbolic",
+ "link",
+ "stat",
+ "stats",
+ "filesystem"
+ ],
+ "devDependencies": {
+ "ava": "^1.3.1",
+ "nyc": "^13.3.0",
+ "tsd-check": "^0.3.0",
+ "xo": "^0.24.0"
+ }
+}
diff --git a/node_modules/path-type/readme.md b/node_modules/path-type/readme.md
new file mode 100644
index 0000000..4c972fa
--- /dev/null
+++ b/node_modules/path-type/readme.md
@@ -0,0 +1,72 @@
+# path-type [![Build Status](https://travis-ci.org/sindresorhus/path-type.svg?branch=master)](https://travis-ci.org/sindresorhus/path-type)
+
+> Check if a path is a file, directory, or symlink
+
+
+## Install
+
+```
+$ npm install path-type
+```
+
+
+## Usage
+
+```js
+const {isFile} = require('path-type');
+
+(async () => {
+ console.log(await isFile('package.json'));
+ //=> true
+})();
+```
+
+
+## API
+
+### isFile(path)
+
+Check whether the passed `path` is a file.
+
+Returns a `Promise`.
+
+#### path
+
+Type: `string`
+
+The path to check.
+
+### isDirectory(path)
+
+Check whether the passed `path` is a directory.
+
+Returns a `Promise`.
+
+### isSymlink(path)
+
+Check whether the passed `path` is a symlink.
+
+Returns a `Promise`.
+
+### isFileSync(path)
+
+Synchronously check whether the passed `path` is a file.
+
+Returns a `boolean`.
+
+### isDirectorySync(path)
+
+Synchronously check whether the passed `path` is a directory.
+
+Returns a `boolean`.
+
+### isSymlinkSync(path)
+
+Synchronously check whether the passed `path` is a symlink.
+
+Returns a `boolean`.
+
+
+## License
+
+MIT © [Sindre Sorhus](https://sindresorhus.com)
diff --git a/node_modules/picocolors/LICENSE b/node_modules/picocolors/LICENSE
new file mode 100644
index 0000000..496098c
--- /dev/null
+++ b/node_modules/picocolors/LICENSE
@@ -0,0 +1,15 @@
+ISC License
+
+Copyright (c) 2021 Alexey Raspopov, Kostiantyn Denysov, Anton Verinov
+
+Permission to use, copy, modify, and/or distribute this software for any
+purpose with or without fee is hereby granted, provided that the above
+copyright notice and this permission notice appear in all copies.
+
+THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
+ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
+OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
diff --git a/node_modules/picocolors/README.md b/node_modules/picocolors/README.md
new file mode 100644
index 0000000..8e47aa8
--- /dev/null
+++ b/node_modules/picocolors/README.md
@@ -0,0 +1,21 @@
+# picocolors
+
+The tiniest and the fastest library for terminal output formatting with ANSI colors.
+
+```javascript
+import pc from "picocolors"
+
+console.log(
+ pc.green(`How are ${pc.italic(`you`)} doing?`)
+)
+```
+
+- **No dependencies.**
+- **14 times** smaller and **2 times** faster than chalk.
+- Used by popular tools like PostCSS, SVGO, Stylelint, and Browserslist.
+- Node.js v6+ & browsers support. Support for both CJS and ESM projects.
+- TypeScript type declarations included.
+- [`NO_COLOR`](https://no-color.org/) friendly.
+
+## Docs
+Read **[full docs](https://github.com/alexeyraspopov/picocolors#readme)** on GitHub.
diff --git a/node_modules/picocolors/package.json b/node_modules/picocolors/package.json
new file mode 100644
index 0000000..85a12d5
--- /dev/null
+++ b/node_modules/picocolors/package.json
@@ -0,0 +1,25 @@
+{
+ "name": "picocolors",
+ "version": "1.0.0",
+ "main": "./picocolors.js",
+ "types": "./picocolors.d.ts",
+ "browser": {
+ "./picocolors.js": "./picocolors.browser.js"
+ },
+ "sideEffects": false,
+ "description": "The tiniest and the fastest library for terminal output formatting with ANSI colors",
+ "files": [
+ "picocolors.*",
+ "types.ts"
+ ],
+ "keywords": [
+ "terminal",
+ "colors",
+ "formatting",
+ "cli",
+ "console"
+ ],
+ "author": "Alexey Raspopov",
+ "repository": "alexeyraspopov/picocolors",
+ "license": "ISC"
+}
diff --git a/node_modules/picocolors/picocolors.browser.js b/node_modules/picocolors/picocolors.browser.js
new file mode 100644
index 0000000..5eb9fbe
--- /dev/null
+++ b/node_modules/picocolors/picocolors.browser.js
@@ -0,0 +1,4 @@
+var x=String;
+var create=function() {return {isColorSupported:false,reset:x,bold:x,dim:x,italic:x,underline:x,inverse:x,hidden:x,strikethrough:x,black:x,red:x,green:x,yellow:x,blue:x,magenta:x,cyan:x,white:x,gray:x,bgBlack:x,bgRed:x,bgGreen:x,bgYellow:x,bgBlue:x,bgMagenta:x,bgCyan:x,bgWhite:x}};
+module.exports=create();
+module.exports.createColors = create;
diff --git a/node_modules/picocolors/picocolors.d.ts b/node_modules/picocolors/picocolors.d.ts
new file mode 100644
index 0000000..94e146a
--- /dev/null
+++ b/node_modules/picocolors/picocolors.d.ts
@@ -0,0 +1,5 @@
+import { Colors } from "./types"
+
+declare const picocolors: Colors & { createColors: (enabled?: boolean) => Colors }
+
+export = picocolors
diff --git a/node_modules/picocolors/picocolors.js b/node_modules/picocolors/picocolors.js
new file mode 100644
index 0000000..fdb6304
--- /dev/null
+++ b/node_modules/picocolors/picocolors.js
@@ -0,0 +1,58 @@
+let tty = require("tty")
+
+let isColorSupported =
+ !("NO_COLOR" in process.env || process.argv.includes("--no-color")) &&
+ ("FORCE_COLOR" in process.env ||
+ process.argv.includes("--color") ||
+ process.platform === "win32" ||
+ (tty.isatty(1) && process.env.TERM !== "dumb") ||
+ "CI" in process.env)
+
+let formatter =
+ (open, close, replace = open) =>
+ input => {
+ let string = "" + input
+ let index = string.indexOf(close, open.length)
+ return ~index
+ ? open + replaceClose(string, close, replace, index) + close
+ : open + string + close
+ }
+
+let replaceClose = (string, close, replace, index) => {
+ let start = string.substring(0, index) + replace
+ let end = string.substring(index + close.length)
+ let nextIndex = end.indexOf(close)
+ return ~nextIndex ? start + replaceClose(end, close, replace, nextIndex) : start + end
+}
+
+let createColors = (enabled = isColorSupported) => ({
+ isColorSupported: enabled,
+ reset: enabled ? s => `\x1b[0m${s}\x1b[0m` : String,
+ bold: enabled ? formatter("\x1b[1m", "\x1b[22m", "\x1b[22m\x1b[1m") : String,
+ dim: enabled ? formatter("\x1b[2m", "\x1b[22m", "\x1b[22m\x1b[2m") : String,
+ italic: enabled ? formatter("\x1b[3m", "\x1b[23m") : String,
+ underline: enabled ? formatter("\x1b[4m", "\x1b[24m") : String,
+ inverse: enabled ? formatter("\x1b[7m", "\x1b[27m") : String,
+ hidden: enabled ? formatter("\x1b[8m", "\x1b[28m") : String,
+ strikethrough: enabled ? formatter("\x1b[9m", "\x1b[29m") : String,
+ black: enabled ? formatter("\x1b[30m", "\x1b[39m") : String,
+ red: enabled ? formatter("\x1b[31m", "\x1b[39m") : String,
+ green: enabled ? formatter("\x1b[32m", "\x1b[39m") : String,
+ yellow: enabled ? formatter("\x1b[33m", "\x1b[39m") : String,
+ blue: enabled ? formatter("\x1b[34m", "\x1b[39m") : String,
+ magenta: enabled ? formatter("\x1b[35m", "\x1b[39m") : String,
+ cyan: enabled ? formatter("\x1b[36m", "\x1b[39m") : String,
+ white: enabled ? formatter("\x1b[37m", "\x1b[39m") : String,
+ gray: enabled ? formatter("\x1b[90m", "\x1b[39m") : String,
+ bgBlack: enabled ? formatter("\x1b[40m", "\x1b[49m") : String,
+ bgRed: enabled ? formatter("\x1b[41m", "\x1b[49m") : String,
+ bgGreen: enabled ? formatter("\x1b[42m", "\x1b[49m") : String,
+ bgYellow: enabled ? formatter("\x1b[43m", "\x1b[49m") : String,
+ bgBlue: enabled ? formatter("\x1b[44m", "\x1b[49m") : String,
+ bgMagenta: enabled ? formatter("\x1b[45m", "\x1b[49m") : String,
+ bgCyan: enabled ? formatter("\x1b[46m", "\x1b[49m") : String,
+ bgWhite: enabled ? formatter("\x1b[47m", "\x1b[49m") : String,
+})
+
+module.exports = createColors()
+module.exports.createColors = createColors
diff --git a/node_modules/picocolors/types.ts b/node_modules/picocolors/types.ts
new file mode 100644
index 0000000..b4bacee
--- /dev/null
+++ b/node_modules/picocolors/types.ts
@@ -0,0 +1,30 @@
+export type Formatter = (input: string | number | null | undefined) => string
+
+export interface Colors {
+ isColorSupported: boolean
+ reset: Formatter
+ bold: Formatter
+ dim: Formatter
+ italic: Formatter
+ underline: Formatter
+ inverse: Formatter
+ hidden: Formatter
+ strikethrough: Formatter
+ black: Formatter
+ red: Formatter
+ green: Formatter
+ yellow: Formatter
+ blue: Formatter
+ magenta: Formatter
+ cyan: Formatter
+ white: Formatter
+ gray: Formatter
+ bgBlack: Formatter
+ bgRed: Formatter
+ bgGreen: Formatter
+ bgYellow: Formatter
+ bgBlue: Formatter
+ bgMagenta: Formatter
+ bgCyan: Formatter
+ bgWhite: Formatter
+}
diff --git a/node_modules/picomatch/CHANGELOG.md b/node_modules/picomatch/CHANGELOG.md
new file mode 100644
index 0000000..8ccc6c1
--- /dev/null
+++ b/node_modules/picomatch/CHANGELOG.md
@@ -0,0 +1,136 @@
+# Release history
+
+**All notable changes to this project will be documented in this file.**
+
+The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
+and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
+
+
+ Guiding Principles
+
+- Changelogs are for humans, not machines.
+- There should be an entry for every single version.
+- The same types of changes should be grouped.
+- Versions and sections should be linkable.
+- The latest version comes first.
+- The release date of each versions is displayed.
+- Mention whether you follow Semantic Versioning.
+
+
+
+
+ Types of changes
+
+Changelog entries are classified using the following labels _(from [keep-a-changelog](http://keepachangelog.com/)_):
+
+- `Added` for new features.
+- `Changed` for changes in existing functionality.
+- `Deprecated` for soon-to-be removed features.
+- `Removed` for now removed features.
+- `Fixed` for any bug fixes.
+- `Security` in case of vulnerabilities.
+
+
+
+## 2.3.1 (2022-01-02)
+
+### Fixed
+
+* Fixes bug when a pattern containing an expression after the closing parenthesis (`/!(*.d).{ts,tsx}`) was incorrectly converted to regexp ([9f241ef](https://github.com/micromatch/picomatch/commit/9f241ef)).
+
+### Changed
+
+* Some documentation improvements ([f81d236](https://github.com/micromatch/picomatch/commit/f81d236), [421e0e7](https://github.com/micromatch/picomatch/commit/421e0e7)).
+
+## 2.3.0 (2021-05-21)
+
+### Fixed
+
+* Fixes bug where file names with two dots were not being matched consistently with negation extglobs containing a star ([56083ef](https://github.com/micromatch/picomatch/commit/56083ef))
+
+## 2.2.3 (2021-04-10)
+
+### Fixed
+
+* Do not skip pattern seperator for square brackets ([fb08a30](https://github.com/micromatch/picomatch/commit/fb08a30)).
+* Set negatedExtGlob also if it does not span the whole pattern ([032e3f5](https://github.com/micromatch/picomatch/commit/032e3f5)).
+
+## 2.2.2 (2020-03-21)
+
+### Fixed
+
+* Correctly handle parts of the pattern after parentheses in the `scan` method ([e15b920](https://github.com/micromatch/picomatch/commit/e15b920)).
+
+## 2.2.1 (2020-01-04)
+
+* Fixes [#49](https://github.com/micromatch/picomatch/issues/49), so that braces with no sets or ranges are now propertly treated as literals.
+
+## 2.2.0 (2020-01-04)
+
+* Disable fastpaths mode for the parse method ([5b8d33f](https://github.com/micromatch/picomatch/commit/5b8d33f))
+* Add `tokens`, `slashes`, and `parts` to the object returned by `picomatch.scan()`.
+
+## 2.1.0 (2019-10-31)
+
+* add benchmarks for scan ([4793b92](https://github.com/micromatch/picomatch/commit/4793b92))
+* Add eslint object-curly-spacing rule ([707c650](https://github.com/micromatch/picomatch/commit/707c650))
+* Add prefer-const eslint rule ([5c7501c](https://github.com/micromatch/picomatch/commit/5c7501c))
+* Add support for nonegate in scan API ([275c9b9](https://github.com/micromatch/picomatch/commit/275c9b9))
+* Change lets to consts. Move root import up. ([4840625](https://github.com/micromatch/picomatch/commit/4840625))
+* closes https://github.com/micromatch/picomatch/issues/21 ([766bcb0](https://github.com/micromatch/picomatch/commit/766bcb0))
+* Fix "Extglobs" table in readme ([eb19da8](https://github.com/micromatch/picomatch/commit/eb19da8))
+* fixes https://github.com/micromatch/picomatch/issues/20 ([9caca07](https://github.com/micromatch/picomatch/commit/9caca07))
+* fixes https://github.com/micromatch/picomatch/issues/26 ([fa58f45](https://github.com/micromatch/picomatch/commit/fa58f45))
+* Lint test ([d433a34](https://github.com/micromatch/picomatch/commit/d433a34))
+* lint unit tests ([0159b55](https://github.com/micromatch/picomatch/commit/0159b55))
+* Make scan work with noext ([6c02e03](https://github.com/micromatch/picomatch/commit/6c02e03))
+* minor linting ([c2a2b87](https://github.com/micromatch/picomatch/commit/c2a2b87))
+* minor parser improvements ([197671d](https://github.com/micromatch/picomatch/commit/197671d))
+* remove eslint since it... ([07876fa](https://github.com/micromatch/picomatch/commit/07876fa))
+* remove funding file ([8ebe96d](https://github.com/micromatch/picomatch/commit/8ebe96d))
+* Remove unused funks ([cbc6d54](https://github.com/micromatch/picomatch/commit/cbc6d54))
+* Run eslint during pretest, fix existing eslint findings ([0682367](https://github.com/micromatch/picomatch/commit/0682367))
+* support `noparen` in scan ([3d37569](https://github.com/micromatch/picomatch/commit/3d37569))
+* update changelog ([7b34e77](https://github.com/micromatch/picomatch/commit/7b34e77))
+* update travis ([777f038](https://github.com/micromatch/picomatch/commit/777f038))
+* Use eslint-disable-next-line instead of eslint-disable ([4e7c1fd](https://github.com/micromatch/picomatch/commit/4e7c1fd))
+
+## 2.0.7 (2019-05-14)
+
+* 2.0.7 ([9eb9a71](https://github.com/micromatch/picomatch/commit/9eb9a71))
+* supports lookbehinds ([1f63f7e](https://github.com/micromatch/picomatch/commit/1f63f7e))
+* update .verb.md file with typo change ([2741279](https://github.com/micromatch/picomatch/commit/2741279))
+* fix: typo in README ([0753e44](https://github.com/micromatch/picomatch/commit/0753e44))
+
+## 2.0.4 (2019-04-10)
+
+### Fixed
+
+- Readme link [fixed](https://github.com/micromatch/picomatch/pull/13/commits/a96ab3aa2b11b6861c23289964613d85563b05df) by @danez.
+- `options.capture` now works as expected when fastpaths are enabled. See https://github.com/micromatch/picomatch/pull/12/commits/26aefd71f1cfaf95c37f1c1fcab68a693b037304. Thanks to @DrPizza.
+
+## 2.0.0 (2019-04-10)
+
+### Added
+
+- Adds support for `options.onIgnore`. See the readme for details
+- Adds support for `options.onResult`. See the readme for details
+
+### Breaking changes
+
+- The unixify option was renamed to `windows`
+- caching and all related options and methods have been removed
+
+## 1.0.0 (2018-11-05)
+
+- adds `.onMatch` option
+- improvements to `.scan` method
+- numerous improvements and optimizations for matching and parsing
+- better windows path handling
+
+## 0.1.0 - 2017-04-13
+
+First release.
+
+
+[keep-a-changelog]: https://github.com/olivierlacan/keep-a-changelog
diff --git a/node_modules/picomatch/LICENSE b/node_modules/picomatch/LICENSE
new file mode 100644
index 0000000..3608dca
--- /dev/null
+++ b/node_modules/picomatch/LICENSE
@@ -0,0 +1,21 @@
+The MIT License (MIT)
+
+Copyright (c) 2017-present, Jon Schlinkert.
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.
diff --git a/node_modules/picomatch/README.md b/node_modules/picomatch/README.md
new file mode 100644
index 0000000..b0526e2
--- /dev/null
+++ b/node_modules/picomatch/README.md
@@ -0,0 +1,708 @@
+Picomatch
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+Blazing fast and accurate glob matcher written in JavaScript.
+No dependencies and full support for standard and extended Bash glob features, including braces, extglobs, POSIX brackets, and regular expressions.
+
+
+
+
+
+## Why picomatch?
+
+* **Lightweight** - No dependencies
+* **Minimal** - Tiny API surface. Main export is a function that takes a glob pattern and returns a matcher function.
+* **Fast** - Loads in about 2ms (that's several times faster than a [single frame of a HD movie](http://www.endmemo.com/sconvert/framespersecondframespermillisecond.php) at 60fps)
+* **Performant** - Use the returned matcher function to speed up repeat matching (like when watching files)
+* **Accurate matching** - Using wildcards (`*` and `?`), globstars (`**`) for nested directories, [advanced globbing](#advanced-globbing) with extglobs, braces, and POSIX brackets, and support for escaping special characters with `\` or quotes.
+* **Well tested** - Thousands of unit tests
+
+See the [library comparison](#library-comparisons) to other libraries.
+
+
+
+
+## Table of Contents
+
+ Click to expand
+
+- [Install](#install)
+- [Usage](#usage)
+- [API](#api)
+ * [picomatch](#picomatch)
+ * [.test](#test)
+ * [.matchBase](#matchbase)
+ * [.isMatch](#ismatch)
+ * [.parse](#parse)
+ * [.scan](#scan)
+ * [.compileRe](#compilere)
+ * [.makeRe](#makere)
+ * [.toRegex](#toregex)
+- [Options](#options)
+ * [Picomatch options](#picomatch-options)
+ * [Scan Options](#scan-options)
+ * [Options Examples](#options-examples)
+- [Globbing features](#globbing-features)
+ * [Basic globbing](#basic-globbing)
+ * [Advanced globbing](#advanced-globbing)
+ * [Braces](#braces)
+ * [Matching special characters as literals](#matching-special-characters-as-literals)
+- [Library Comparisons](#library-comparisons)
+- [Benchmarks](#benchmarks)
+- [Philosophies](#philosophies)
+- [About](#about)
+ * [Author](#author)
+ * [License](#license)
+
+_(TOC generated by [verb](https://github.com/verbose/verb) using [markdown-toc](https://github.com/jonschlinkert/markdown-toc))_
+
+
+
+
+
+
+## Install
+
+Install with [npm](https://www.npmjs.com/):
+
+```sh
+npm install --save picomatch
+```
+
+
+
+## Usage
+
+The main export is a function that takes a glob pattern and an options object and returns a function for matching strings.
+
+```js
+const pm = require('picomatch');
+const isMatch = pm('*.js');
+
+console.log(isMatch('abcd')); //=> false
+console.log(isMatch('a.js')); //=> true
+console.log(isMatch('a.md')); //=> false
+console.log(isMatch('a/b.js')); //=> false
+```
+
+
+
+## API
+
+### [picomatch](lib/picomatch.js#L32)
+
+Creates a matcher function from one or more glob patterns. The returned function takes a string to match as its first argument, and returns true if the string is a match. The returned matcher function also takes a boolean as the second argument that, when true, returns an object with additional information.
+
+**Params**
+
+* `globs` **{String|Array}**: One or more glob patterns.
+* `options` **{Object=}**
+* `returns` **{Function=}**: Returns a matcher function.
+
+**Example**
+
+```js
+const picomatch = require('picomatch');
+// picomatch(glob[, options]);
+
+const isMatch = picomatch('*.!(*a)');
+console.log(isMatch('a.a')); //=> false
+console.log(isMatch('a.b')); //=> true
+```
+
+### [.test](lib/picomatch.js#L117)
+
+Test `input` with the given `regex`. This is used by the main `picomatch()` function to test the input string.
+
+**Params**
+
+* `input` **{String}**: String to test.
+* `regex` **{RegExp}**
+* `returns` **{Object}**: Returns an object with matching info.
+
+**Example**
+
+```js
+const picomatch = require('picomatch');
+// picomatch.test(input, regex[, options]);
+
+console.log(picomatch.test('foo/bar', /^(?:([^/]*?)\/([^/]*?))$/));
+// { isMatch: true, match: [ 'foo/', 'foo', 'bar' ], output: 'foo/bar' }
+```
+
+### [.matchBase](lib/picomatch.js#L161)
+
+Match the basename of a filepath.
+
+**Params**
+
+* `input` **{String}**: String to test.
+* `glob` **{RegExp|String}**: Glob pattern or regex created by [.makeRe](#makeRe).
+* `returns` **{Boolean}**
+
+**Example**
+
+```js
+const picomatch = require('picomatch');
+// picomatch.matchBase(input, glob[, options]);
+console.log(picomatch.matchBase('foo/bar.js', '*.js'); // true
+```
+
+### [.isMatch](lib/picomatch.js#L183)
+
+Returns true if **any** of the given glob `patterns` match the specified `string`.
+
+**Params**
+
+* **{String|Array}**: str The string to test.
+* **{String|Array}**: patterns One or more glob patterns to use for matching.
+* **{Object}**: See available [options](#options).
+* `returns` **{Boolean}**: Returns true if any patterns match `str`
+
+**Example**
+
+```js
+const picomatch = require('picomatch');
+// picomatch.isMatch(string, patterns[, options]);
+
+console.log(picomatch.isMatch('a.a', ['b.*', '*.a'])); //=> true
+console.log(picomatch.isMatch('a.a', 'b.*')); //=> false
+```
+
+### [.parse](lib/picomatch.js#L199)
+
+Parse a glob pattern to create the source string for a regular expression.
+
+**Params**
+
+* `pattern` **{String}**
+* `options` **{Object}**
+* `returns` **{Object}**: Returns an object with useful properties and output to be used as a regex source string.
+
+**Example**
+
+```js
+const picomatch = require('picomatch');
+const result = picomatch.parse(pattern[, options]);
+```
+
+### [.scan](lib/picomatch.js#L231)
+
+Scan a glob pattern to separate the pattern into segments.
+
+**Params**
+
+* `input` **{String}**: Glob pattern to scan.
+* `options` **{Object}**
+* `returns` **{Object}**: Returns an object with
+
+**Example**
+
+```js
+const picomatch = require('picomatch');
+// picomatch.scan(input[, options]);
+
+const result = picomatch.scan('!./foo/*.js');
+console.log(result);
+{ prefix: '!./',
+ input: '!./foo/*.js',
+ start: 3,
+ base: 'foo',
+ glob: '*.js',
+ isBrace: false,
+ isBracket: false,
+ isGlob: true,
+ isExtglob: false,
+ isGlobstar: false,
+ negated: true }
+```
+
+### [.compileRe](lib/picomatch.js#L245)
+
+Compile a regular expression from the `state` object returned by the
+[parse()](#parse) method.
+
+**Params**
+
+* `state` **{Object}**
+* `options` **{Object}**
+* `returnOutput` **{Boolean}**: Intended for implementors, this argument allows you to return the raw output from the parser.
+* `returnState` **{Boolean}**: Adds the state to a `state` property on the returned regex. Useful for implementors and debugging.
+* `returns` **{RegExp}**
+
+### [.makeRe](lib/picomatch.js#L286)
+
+Create a regular expression from a parsed glob pattern.
+
+**Params**
+
+* `state` **{String}**: The object returned from the `.parse` method.
+* `options` **{Object}**
+* `returnOutput` **{Boolean}**: Implementors may use this argument to return the compiled output, instead of a regular expression. This is not exposed on the options to prevent end-users from mutating the result.
+* `returnState` **{Boolean}**: Implementors may use this argument to return the state from the parsed glob with the returned regular expression.
+* `returns` **{RegExp}**: Returns a regex created from the given pattern.
+
+**Example**
+
+```js
+const picomatch = require('picomatch');
+const state = picomatch.parse('*.js');
+// picomatch.compileRe(state[, options]);
+
+console.log(picomatch.compileRe(state));
+//=> /^(?:(?!\.)(?=.)[^/]*?\.js)$/
+```
+
+### [.toRegex](lib/picomatch.js#L321)
+
+Create a regular expression from the given regex source string.
+
+**Params**
+
+* `source` **{String}**: Regular expression source string.
+* `options` **{Object}**
+* `returns` **{RegExp}**
+
+**Example**
+
+```js
+const picomatch = require('picomatch');
+// picomatch.toRegex(source[, options]);
+
+const { output } = picomatch.parse('*.js');
+console.log(picomatch.toRegex(output));
+//=> /^(?:(?!\.)(?=.)[^/]*?\.js)$/
+```
+
+
+
+## Options
+
+### Picomatch options
+
+The following options may be used with the main `picomatch()` function or any of the methods on the picomatch API.
+
+| **Option** | **Type** | **Default value** | **Description** |
+| --- | --- | --- | --- |
+| `basename` | `boolean` | `false` | If set, then patterns without slashes will be matched against the basename of the path if it contains slashes. For example, `a?b` would match the path `/xyz/123/acb`, but not `/xyz/acb/123`. |
+| `bash` | `boolean` | `false` | Follow bash matching rules more strictly - disallows backslashes as escape characters, and treats single stars as globstars (`**`). |
+| `capture` | `boolean` | `undefined` | Return regex matches in supporting methods. |
+| `contains` | `boolean` | `undefined` | Allows glob to match any part of the given string(s). |
+| `cwd` | `string` | `process.cwd()` | Current working directory. Used by `picomatch.split()` |
+| `debug` | `boolean` | `undefined` | Debug regular expressions when an error is thrown. |
+| `dot` | `boolean` | `false` | Enable dotfile matching. By default, dotfiles are ignored unless a `.` is explicitly defined in the pattern, or `options.dot` is true |
+| `expandRange` | `function` | `undefined` | Custom function for expanding ranges in brace patterns, such as `{a..z}`. The function receives the range values as two arguments, and it must return a string to be used in the generated regex. It's recommended that returned strings be wrapped in parentheses. |
+| `failglob` | `boolean` | `false` | Throws an error if no matches are found. Based on the bash option of the same name. |
+| `fastpaths` | `boolean` | `true` | To speed up processing, full parsing is skipped for a handful common glob patterns. Disable this behavior by setting this option to `false`. |
+| `flags` | `string` | `undefined` | Regex flags to use in the generated regex. If defined, the `nocase` option will be overridden. |
+| [format](#optionsformat) | `function` | `undefined` | Custom function for formatting the returned string. This is useful for removing leading slashes, converting Windows paths to Posix paths, etc. |
+| `ignore` | `array\|string` | `undefined` | One or more glob patterns for excluding strings that should not be matched from the result. |
+| `keepQuotes` | `boolean` | `false` | Retain quotes in the generated regex, since quotes may also be used as an alternative to backslashes. |
+| `literalBrackets` | `boolean` | `undefined` | When `true`, brackets in the glob pattern will be escaped so that only literal brackets will be matched. |
+| `matchBase` | `boolean` | `false` | Alias for `basename` |
+| `maxLength` | `boolean` | `65536` | Limit the max length of the input string. An error is thrown if the input string is longer than this value. |
+| `nobrace` | `boolean` | `false` | Disable brace matching, so that `{a,b}` and `{1..3}` would be treated as literal characters. |
+| `nobracket` | `boolean` | `undefined` | Disable matching with regex brackets. |
+| `nocase` | `boolean` | `false` | Make matching case-insensitive. Equivalent to the regex `i` flag. Note that this option is overridden by the `flags` option. |
+| `nodupes` | `boolean` | `true` | Deprecated, use `nounique` instead. This option will be removed in a future major release. By default duplicates are removed. Disable uniquification by setting this option to false. |
+| `noext` | `boolean` | `false` | Alias for `noextglob` |
+| `noextglob` | `boolean` | `false` | Disable support for matching with extglobs (like `+(a\|b)`) |
+| `noglobstar` | `boolean` | `false` | Disable support for matching nested directories with globstars (`**`) |
+| `nonegate` | `boolean` | `false` | Disable support for negating with leading `!` |
+| `noquantifiers` | `boolean` | `false` | Disable support for regex quantifiers (like `a{1,2}`) and treat them as brace patterns to be expanded. |
+| [onIgnore](#optionsonIgnore) | `function` | `undefined` | Function to be called on ignored items. |
+| [onMatch](#optionsonMatch) | `function` | `undefined` | Function to be called on matched items. |
+| [onResult](#optionsonResult) | `function` | `undefined` | Function to be called on all items, regardless of whether or not they are matched or ignored. |
+| `posix` | `boolean` | `false` | Support POSIX character classes ("posix brackets"). |
+| `posixSlashes` | `boolean` | `undefined` | Convert all slashes in file paths to forward slashes. This does not convert slashes in the glob pattern itself |
+| `prepend` | `boolean` | `undefined` | String to prepend to the generated regex used for matching. |
+| `regex` | `boolean` | `false` | Use regular expression rules for `+` (instead of matching literal `+`), and for stars that follow closing parentheses or brackets (as in `)*` and `]*`). |
+| `strictBrackets` | `boolean` | `undefined` | Throw an error if brackets, braces, or parens are imbalanced. |
+| `strictSlashes` | `boolean` | `undefined` | When true, picomatch won't match trailing slashes with single stars. |
+| `unescape` | `boolean` | `undefined` | Remove backslashes preceding escaped characters in the glob pattern. By default, backslashes are retained. |
+| `unixify` | `boolean` | `undefined` | Alias for `posixSlashes`, for backwards compatibility. |
+
+picomatch has automatic detection for regex positive and negative lookbehinds. If the pattern contains a negative lookbehind, you must be using Node.js >= 8.10 or else picomatch will throw an error.
+
+### Scan Options
+
+In addition to the main [picomatch options](#picomatch-options), the following options may also be used with the [.scan](#scan) method.
+
+| **Option** | **Type** | **Default value** | **Description** |
+| --- | --- | --- | --- |
+| `tokens` | `boolean` | `false` | When `true`, the returned object will include an array of tokens (objects), representing each path "segment" in the scanned glob pattern |
+| `parts` | `boolean` | `false` | When `true`, the returned object will include an array of strings representing each path "segment" in the scanned glob pattern. This is automatically enabled when `options.tokens` is true |
+
+**Example**
+
+```js
+const picomatch = require('picomatch');
+const result = picomatch.scan('!./foo/*.js', { tokens: true });
+console.log(result);
+// {
+// prefix: '!./',
+// input: '!./foo/*.js',
+// start: 3,
+// base: 'foo',
+// glob: '*.js',
+// isBrace: false,
+// isBracket: false,
+// isGlob: true,
+// isExtglob: false,
+// isGlobstar: false,
+// negated: true,
+// maxDepth: 2,
+// tokens: [
+// { value: '!./', depth: 0, isGlob: false, negated: true, isPrefix: true },
+// { value: 'foo', depth: 1, isGlob: false },
+// { value: '*.js', depth: 1, isGlob: true }
+// ],
+// slashes: [ 2, 6 ],
+// parts: [ 'foo', '*.js' ]
+// }
+```
+
+
+
+### Options Examples
+
+#### options.expandRange
+
+**Type**: `function`
+
+**Default**: `undefined`
+
+Custom function for expanding ranges in brace patterns. The [fill-range](https://github.com/jonschlinkert/fill-range) library is ideal for this purpose, or you can use custom code to do whatever you need.
+
+**Example**
+
+The following example shows how to create a glob that matches a folder
+
+```js
+const fill = require('fill-range');
+const regex = pm.makeRe('foo/{01..25}/bar', {
+ expandRange(a, b) {
+ return `(${fill(a, b, { toRegex: true })})`;
+ }
+});
+
+console.log(regex);
+//=> /^(?:foo\/((?:0[1-9]|1[0-9]|2[0-5]))\/bar)$/
+
+console.log(regex.test('foo/00/bar')) // false
+console.log(regex.test('foo/01/bar')) // true
+console.log(regex.test('foo/10/bar')) // true
+console.log(regex.test('foo/22/bar')) // true
+console.log(regex.test('foo/25/bar')) // true
+console.log(regex.test('foo/26/bar')) // false
+```
+
+#### options.format
+
+**Type**: `function`
+
+**Default**: `undefined`
+
+Custom function for formatting strings before they're matched.
+
+**Example**
+
+```js
+// strip leading './' from strings
+const format = str => str.replace(/^\.\//, '');
+const isMatch = picomatch('foo/*.js', { format });
+console.log(isMatch('./foo/bar.js')); //=> true
+```
+
+#### options.onMatch
+
+```js
+const onMatch = ({ glob, regex, input, output }) => {
+ console.log({ glob, regex, input, output });
+};
+
+const isMatch = picomatch('*', { onMatch });
+isMatch('foo');
+isMatch('bar');
+isMatch('baz');
+```
+
+#### options.onIgnore
+
+```js
+const onIgnore = ({ glob, regex, input, output }) => {
+ console.log({ glob, regex, input, output });
+};
+
+const isMatch = picomatch('*', { onIgnore, ignore: 'f*' });
+isMatch('foo');
+isMatch('bar');
+isMatch('baz');
+```
+
+#### options.onResult
+
+```js
+const onResult = ({ glob, regex, input, output }) => {
+ console.log({ glob, regex, input, output });
+};
+
+const isMatch = picomatch('*', { onResult, ignore: 'f*' });
+isMatch('foo');
+isMatch('bar');
+isMatch('baz');
+```
+
+
+
+
+## Globbing features
+
+* [Basic globbing](#basic-globbing) (Wildcard matching)
+* [Advanced globbing](#advanced-globbing) (extglobs, posix brackets, brace matching)
+
+### Basic globbing
+
+| **Character** | **Description** |
+| --- | --- |
+| `*` | Matches any character zero or more times, excluding path separators. Does _not match_ path separators or hidden files or directories ("dotfiles"), unless explicitly enabled by setting the `dot` option to `true`. |
+| `**` | Matches any character zero or more times, including path separators. Note that `**` will only match path separators (`/`, and `\\` on Windows) when they are the only characters in a path segment. Thus, `foo**/bar` is equivalent to `foo*/bar`, and `foo/a**b/bar` is equivalent to `foo/a*b/bar`, and _more than two_ consecutive stars in a glob path segment are regarded as _a single star_. Thus, `foo/***/bar` is equivalent to `foo/*/bar`. |
+| `?` | Matches any character excluding path separators one time. Does _not match_ path separators or leading dots. |
+| `[abc]` | Matches any characters inside the brackets. For example, `[abc]` would match the characters `a`, `b` or `c`, and nothing else. |
+
+#### Matching behavior vs. Bash
+
+Picomatch's matching features and expected results in unit tests are based on Bash's unit tests and the Bash 4.3 specification, with the following exceptions:
+
+* Bash will match `foo/bar/baz` with `*`. Picomatch only matches nested directories with `**`.
+* Bash greedily matches with negated extglobs. For example, Bash 4.3 says that `!(foo)*` should match `foo` and `foobar`, since the trailing `*` bracktracks to match the preceding pattern. This is very memory-inefficient, and IMHO, also incorrect. Picomatch would return `false` for both `foo` and `foobar`.
+
+
+
+### Advanced globbing
+
+* [extglobs](#extglobs)
+* [POSIX brackets](#posix-brackets)
+* [Braces](#brace-expansion)
+
+#### Extglobs
+
+| **Pattern** | **Description** |
+| --- | --- |
+| `@(pattern)` | Match _only one_ consecutive occurrence of `pattern` |
+| `*(pattern)` | Match _zero or more_ consecutive occurrences of `pattern` |
+| `+(pattern)` | Match _one or more_ consecutive occurrences of `pattern` |
+| `?(pattern)` | Match _zero or **one**_ consecutive occurrences of `pattern` |
+| `!(pattern)` | Match _anything but_ `pattern` |
+
+**Examples**
+
+```js
+const pm = require('picomatch');
+
+// *(pattern) matches ZERO or more of "pattern"
+console.log(pm.isMatch('a', 'a*(z)')); // true
+console.log(pm.isMatch('az', 'a*(z)')); // true
+console.log(pm.isMatch('azzz', 'a*(z)')); // true
+
+// +(pattern) matches ONE or more of "pattern"
+console.log(pm.isMatch('a', 'a*(z)')); // true
+console.log(pm.isMatch('az', 'a*(z)')); // true
+console.log(pm.isMatch('azzz', 'a*(z)')); // true
+
+// supports multiple extglobs
+console.log(pm.isMatch('foo.bar', '!(foo).!(bar)')); // false
+
+// supports nested extglobs
+console.log(pm.isMatch('foo.bar', '!(!(foo)).!(!(bar))')); // true
+```
+
+#### POSIX brackets
+
+POSIX classes are disabled by default. Enable this feature by setting the `posix` option to true.
+
+**Enable POSIX bracket support**
+
+```js
+console.log(pm.makeRe('[[:word:]]+', { posix: true }));
+//=> /^(?:(?=.)[A-Za-z0-9_]+\/?)$/
+```
+
+**Supported POSIX classes**
+
+The following named POSIX bracket expressions are supported:
+
+* `[:alnum:]` - Alphanumeric characters, equ `[a-zA-Z0-9]`
+* `[:alpha:]` - Alphabetical characters, equivalent to `[a-zA-Z]`.
+* `[:ascii:]` - ASCII characters, equivalent to `[\\x00-\\x7F]`.
+* `[:blank:]` - Space and tab characters, equivalent to `[ \\t]`.
+* `[:cntrl:]` - Control characters, equivalent to `[\\x00-\\x1F\\x7F]`.
+* `[:digit:]` - Numerical digits, equivalent to `[0-9]`.
+* `[:graph:]` - Graph characters, equivalent to `[\\x21-\\x7E]`.
+* `[:lower:]` - Lowercase letters, equivalent to `[a-z]`.
+* `[:print:]` - Print characters, equivalent to `[\\x20-\\x7E ]`.
+* `[:punct:]` - Punctuation and symbols, equivalent to `[\\-!"#$%&\'()\\*+,./:;<=>?@[\\]^_`{|}~]`.
+* `[:space:]` - Extended space characters, equivalent to `[ \\t\\r\\n\\v\\f]`.
+* `[:upper:]` - Uppercase letters, equivalent to `[A-Z]`.
+* `[:word:]` - Word characters (letters, numbers and underscores), equivalent to `[A-Za-z0-9_]`.
+* `[:xdigit:]` - Hexadecimal digits, equivalent to `[A-Fa-f0-9]`.
+
+See the [Bash Reference Manual](https://www.gnu.org/software/bash/manual/html_node/Pattern-Matching.html) for more information.
+
+### Braces
+
+Picomatch does not do brace expansion. For [brace expansion](https://www.gnu.org/software/bash/manual/html_node/Brace-Expansion.html) and advanced matching with braces, use [micromatch](https://github.com/micromatch/micromatch) instead. Picomatch has very basic support for braces.
+
+### Matching special characters as literals
+
+If you wish to match the following special characters in a filepath, and you want to use these characters in your glob pattern, they must be escaped with backslashes or quotes:
+
+**Special Characters**
+
+Some characters that are used for matching in regular expressions are also regarded as valid file path characters on some platforms.
+
+To match any of the following characters as literals: `$^*+?()[]
+
+Examples:
+
+```js
+console.log(pm.makeRe('foo/bar \\(1\\)'));
+console.log(pm.makeRe('foo/bar \\(1\\)'));
+```
+
+
+
+
+## Library Comparisons
+
+The following table shows which features are supported by [minimatch](https://github.com/isaacs/minimatch), [micromatch](https://github.com/micromatch/micromatch), [picomatch](https://github.com/micromatch/picomatch), [nanomatch](https://github.com/micromatch/nanomatch), [extglob](https://github.com/micromatch/extglob), [braces](https://github.com/micromatch/braces), and [expand-brackets](https://github.com/micromatch/expand-brackets).
+
+| **Feature** | `minimatch` | `micromatch` | `picomatch` | `nanomatch` | `extglob` | `braces` | `expand-brackets` |
+| --- | --- | --- | --- | --- | --- | --- | --- |
+| Wildcard matching (`*?+`) | ✔ | ✔ | ✔ | ✔ | - | - | - |
+| Advancing globbing | ✔ | ✔ | ✔ | - | - | - | - |
+| Brace _matching_ | ✔ | ✔ | ✔ | - | - | ✔ | - |
+| Brace _expansion_ | ✔ | ✔ | - | - | - | ✔ | - |
+| Extglobs | partial | ✔ | ✔ | - | ✔ | - | - |
+| Posix brackets | - | ✔ | ✔ | - | - | - | ✔ |
+| Regular expression syntax | - | ✔ | ✔ | ✔ | ✔ | - | ✔ |
+| File system operations | - | - | - | - | - | - | - |
+
+
+
+
+## Benchmarks
+
+Performance comparison of picomatch and minimatch.
+
+```
+# .makeRe star
+ picomatch x 1,993,050 ops/sec ±0.51% (91 runs sampled)
+ minimatch x 627,206 ops/sec ±1.96% (87 runs sampled))
+
+# .makeRe star; dot=true
+ picomatch x 1,436,640 ops/sec ±0.62% (91 runs sampled)
+ minimatch x 525,876 ops/sec ±0.60% (88 runs sampled)
+
+# .makeRe globstar
+ picomatch x 1,592,742 ops/sec ±0.42% (90 runs sampled)
+ minimatch x 962,043 ops/sec ±1.76% (91 runs sampled)d)
+
+# .makeRe globstars
+ picomatch x 1,615,199 ops/sec ±0.35% (94 runs sampled)
+ minimatch x 477,179 ops/sec ±1.33% (91 runs sampled)
+
+# .makeRe with leading star
+ picomatch x 1,220,856 ops/sec ±0.40% (92 runs sampled)
+ minimatch x 453,564 ops/sec ±1.43% (94 runs sampled)
+
+# .makeRe - basic braces
+ picomatch x 392,067 ops/sec ±0.70% (90 runs sampled)
+ minimatch x 99,532 ops/sec ±2.03% (87 runs sampled))
+```
+
+
+
+
+## Philosophies
+
+The goal of this library is to be blazing fast, without compromising on accuracy.
+
+**Accuracy**
+
+The number one of goal of this library is accuracy. However, it's not unusual for different glob implementations to have different rules for matching behavior, even with simple wildcard matching. It gets increasingly more complicated when combinations of different features are combined, like when extglobs are combined with globstars, braces, slashes, and so on: `!(**/{a,b,*/c})`.
+
+Thus, given that there is no canonical glob specification to use as a single source of truth when differences of opinion arise regarding behavior, sometimes we have to implement our best judgement and rely on feedback from users to make improvements.
+
+**Performance**
+
+Although this library performs well in benchmarks, and in most cases it's faster than other popular libraries we benchmarked against, we will always choose accuracy over performance. It's not helpful to anyone if our library is faster at returning the wrong answer.
+
+
+
+
+## About
+
+
+Contributing
+
+Pull requests and stars are always welcome. For bugs and feature requests, [please create an issue](../../issues/new).
+
+Please read the [contributing guide](.github/contributing.md) for advice on opening issues, pull requests, and coding standards.
+
+
+
+
+Running Tests
+
+Running and reviewing unit tests is a great way to get familiarized with a library and its API. You can install dependencies and run tests with the following command:
+
+```sh
+npm install && npm test
+```
+
+
+
+
+Building docs
+
+_(This project's readme.md is generated by [verb](https://github.com/verbose/verb-generate-readme), please don't edit the readme directly. Any changes to the readme must be made in the [.verb.md](.verb.md) readme template.)_
+
+To generate the readme, run the following command:
+
+```sh
+npm install -g verbose/verb#dev verb-generate-readme && verb
+```
+
+
+
+### Author
+
+**Jon Schlinkert**
+
+* [GitHub Profile](https://github.com/jonschlinkert)
+* [Twitter Profile](https://twitter.com/jonschlinkert)
+* [LinkedIn Profile](https://linkedin.com/in/jonschlinkert)
+
+### License
+
+Copyright © 2017-present, [Jon Schlinkert](https://github.com/jonschlinkert).
+Released under the [MIT License](LICENSE).
diff --git a/node_modules/picomatch/index.js b/node_modules/picomatch/index.js
new file mode 100644
index 0000000..d2f2bc5
--- /dev/null
+++ b/node_modules/picomatch/index.js
@@ -0,0 +1,3 @@
+'use strict';
+
+module.exports = require('./lib/picomatch');
diff --git a/node_modules/picomatch/lib/constants.js b/node_modules/picomatch/lib/constants.js
new file mode 100644
index 0000000..a62ef38
--- /dev/null
+++ b/node_modules/picomatch/lib/constants.js
@@ -0,0 +1,179 @@
+'use strict';
+
+const path = require('path');
+const WIN_SLASH = '\\\\/';
+const WIN_NO_SLASH = `[^${WIN_SLASH}]`;
+
+/**
+ * Posix glob regex
+ */
+
+const DOT_LITERAL = '\\.';
+const PLUS_LITERAL = '\\+';
+const QMARK_LITERAL = '\\?';
+const SLASH_LITERAL = '\\/';
+const ONE_CHAR = '(?=.)';
+const QMARK = '[^/]';
+const END_ANCHOR = `(?:${SLASH_LITERAL}|$)`;
+const START_ANCHOR = `(?:^|${SLASH_LITERAL})`;
+const DOTS_SLASH = `${DOT_LITERAL}{1,2}${END_ANCHOR}`;
+const NO_DOT = `(?!${DOT_LITERAL})`;
+const NO_DOTS = `(?!${START_ANCHOR}${DOTS_SLASH})`;
+const NO_DOT_SLASH = `(?!${DOT_LITERAL}{0,1}${END_ANCHOR})`;
+const NO_DOTS_SLASH = `(?!${DOTS_SLASH})`;
+const QMARK_NO_DOT = `[^.${SLASH_LITERAL}]`;
+const STAR = `${QMARK}*?`;
+
+const POSIX_CHARS = {
+ DOT_LITERAL,
+ PLUS_LITERAL,
+ QMARK_LITERAL,
+ SLASH_LITERAL,
+ ONE_CHAR,
+ QMARK,
+ END_ANCHOR,
+ DOTS_SLASH,
+ NO_DOT,
+ NO_DOTS,
+ NO_DOT_SLASH,
+ NO_DOTS_SLASH,
+ QMARK_NO_DOT,
+ STAR,
+ START_ANCHOR
+};
+
+/**
+ * Windows glob regex
+ */
+
+const WINDOWS_CHARS = {
+ ...POSIX_CHARS,
+
+ SLASH_LITERAL: `[${WIN_SLASH}]`,
+ QMARK: WIN_NO_SLASH,
+ STAR: `${WIN_NO_SLASH}*?`,
+ DOTS_SLASH: `${DOT_LITERAL}{1,2}(?:[${WIN_SLASH}]|$)`,
+ NO_DOT: `(?!${DOT_LITERAL})`,
+ NO_DOTS: `(?!(?:^|[${WIN_SLASH}])${DOT_LITERAL}{1,2}(?:[${WIN_SLASH}]|$))`,
+ NO_DOT_SLASH: `(?!${DOT_LITERAL}{0,1}(?:[${WIN_SLASH}]|$))`,
+ NO_DOTS_SLASH: `(?!${DOT_LITERAL}{1,2}(?:[${WIN_SLASH}]|$))`,
+ QMARK_NO_DOT: `[^.${WIN_SLASH}]`,
+ START_ANCHOR: `(?:^|[${WIN_SLASH}])`,
+ END_ANCHOR: `(?:[${WIN_SLASH}]|$)`
+};
+
+/**
+ * POSIX Bracket Regex
+ */
+
+const POSIX_REGEX_SOURCE = {
+ alnum: 'a-zA-Z0-9',
+ alpha: 'a-zA-Z',
+ ascii: '\\x00-\\x7F',
+ blank: ' \\t',
+ cntrl: '\\x00-\\x1F\\x7F',
+ digit: '0-9',
+ graph: '\\x21-\\x7E',
+ lower: 'a-z',
+ print: '\\x20-\\x7E ',
+ punct: '\\-!"#$%&\'()\\*+,./:;<=>?@[\\]^_`{|}~',
+ space: ' \\t\\r\\n\\v\\f',
+ upper: 'A-Z',
+ word: 'A-Za-z0-9_',
+ xdigit: 'A-Fa-f0-9'
+};
+
+module.exports = {
+ MAX_LENGTH: 1024 * 64,
+ POSIX_REGEX_SOURCE,
+
+ // regular expressions
+ REGEX_BACKSLASH: /\\(?![*+?^${}(|)[\]])/g,
+ REGEX_NON_SPECIAL_CHARS: /^[^@![\].,$*+?^{}()|\\/]+/,
+ REGEX_SPECIAL_CHARS: /[-*+?.^${}(|)[\]]/,
+ REGEX_SPECIAL_CHARS_BACKREF: /(\\?)((\W)(\3*))/g,
+ REGEX_SPECIAL_CHARS_GLOBAL: /([-*+?.^${}(|)[\]])/g,
+ REGEX_REMOVE_BACKSLASH: /(?:\[.*?[^\\]\]|\\(?=.))/g,
+
+ // Replace globs with equivalent patterns to reduce parsing time.
+ REPLACEMENTS: {
+ '***': '*',
+ '**/**': '**',
+ '**/**/**': '**'
+ },
+
+ // Digits
+ CHAR_0: 48, /* 0 */
+ CHAR_9: 57, /* 9 */
+
+ // Alphabet chars.
+ CHAR_UPPERCASE_A: 65, /* A */
+ CHAR_LOWERCASE_A: 97, /* a */
+ CHAR_UPPERCASE_Z: 90, /* Z */
+ CHAR_LOWERCASE_Z: 122, /* z */
+
+ CHAR_LEFT_PARENTHESES: 40, /* ( */
+ CHAR_RIGHT_PARENTHESES: 41, /* ) */
+
+ CHAR_ASTERISK: 42, /* * */
+
+ // Non-alphabetic chars.
+ CHAR_AMPERSAND: 38, /* & */
+ CHAR_AT: 64, /* @ */
+ CHAR_BACKWARD_SLASH: 92, /* \ */
+ CHAR_CARRIAGE_RETURN: 13, /* \r */
+ CHAR_CIRCUMFLEX_ACCENT: 94, /* ^ */
+ CHAR_COLON: 58, /* : */
+ CHAR_COMMA: 44, /* , */
+ CHAR_DOT: 46, /* . */
+ CHAR_DOUBLE_QUOTE: 34, /* " */
+ CHAR_EQUAL: 61, /* = */
+ CHAR_EXCLAMATION_MARK: 33, /* ! */
+ CHAR_FORM_FEED: 12, /* \f */
+ CHAR_FORWARD_SLASH: 47, /* / */
+ CHAR_GRAVE_ACCENT: 96, /* ` */
+ CHAR_HASH: 35, /* # */
+ CHAR_HYPHEN_MINUS: 45, /* - */
+ CHAR_LEFT_ANGLE_BRACKET: 60, /* < */
+ CHAR_LEFT_CURLY_BRACE: 123, /* { */
+ CHAR_LEFT_SQUARE_BRACKET: 91, /* [ */
+ CHAR_LINE_FEED: 10, /* \n */
+ CHAR_NO_BREAK_SPACE: 160, /* \u00A0 */
+ CHAR_PERCENT: 37, /* % */
+ CHAR_PLUS: 43, /* + */
+ CHAR_QUESTION_MARK: 63, /* ? */
+ CHAR_RIGHT_ANGLE_BRACKET: 62, /* > */
+ CHAR_RIGHT_CURLY_BRACE: 125, /* } */
+ CHAR_RIGHT_SQUARE_BRACKET: 93, /* ] */
+ CHAR_SEMICOLON: 59, /* ; */
+ CHAR_SINGLE_QUOTE: 39, /* ' */
+ CHAR_SPACE: 32, /* */
+ CHAR_TAB: 9, /* \t */
+ CHAR_UNDERSCORE: 95, /* _ */
+ CHAR_VERTICAL_LINE: 124, /* | */
+ CHAR_ZERO_WIDTH_NOBREAK_SPACE: 65279, /* \uFEFF */
+
+ SEP: path.sep,
+
+ /**
+ * Create EXTGLOB_CHARS
+ */
+
+ extglobChars(chars) {
+ return {
+ '!': { type: 'negate', open: '(?:(?!(?:', close: `))${chars.STAR})` },
+ '?': { type: 'qmark', open: '(?:', close: ')?' },
+ '+': { type: 'plus', open: '(?:', close: ')+' },
+ '*': { type: 'star', open: '(?:', close: ')*' },
+ '@': { type: 'at', open: '(?:', close: ')' }
+ };
+ },
+
+ /**
+ * Create GLOB_CHARS
+ */
+
+ globChars(win32) {
+ return win32 === true ? WINDOWS_CHARS : POSIX_CHARS;
+ }
+};
diff --git a/node_modules/picomatch/lib/parse.js b/node_modules/picomatch/lib/parse.js
new file mode 100644
index 0000000..58269d0
--- /dev/null
+++ b/node_modules/picomatch/lib/parse.js
@@ -0,0 +1,1091 @@
+'use strict';
+
+const constants = require('./constants');
+const utils = require('./utils');
+
+/**
+ * Constants
+ */
+
+const {
+ MAX_LENGTH,
+ POSIX_REGEX_SOURCE,
+ REGEX_NON_SPECIAL_CHARS,
+ REGEX_SPECIAL_CHARS_BACKREF,
+ REPLACEMENTS
+} = constants;
+
+/**
+ * Helpers
+ */
+
+const expandRange = (args, options) => {
+ if (typeof options.expandRange === 'function') {
+ return options.expandRange(...args, options);
+ }
+
+ args.sort();
+ const value = `[${args.join('-')}]`;
+
+ try {
+ /* eslint-disable-next-line no-new */
+ new RegExp(value);
+ } catch (ex) {
+ return args.map(v => utils.escapeRegex(v)).join('..');
+ }
+
+ return value;
+};
+
+/**
+ * Create the message for a syntax error
+ */
+
+const syntaxError = (type, char) => {
+ return `Missing ${type}: "${char}" - use "\\\\${char}" to match literal characters`;
+};
+
+/**
+ * Parse the given input string.
+ * @param {String} input
+ * @param {Object} options
+ * @return {Object}
+ */
+
+const parse = (input, options) => {
+ if (typeof input !== 'string') {
+ throw new TypeError('Expected a string');
+ }
+
+ input = REPLACEMENTS[input] || input;
+
+ const opts = { ...options };
+ const max = typeof opts.maxLength === 'number' ? Math.min(MAX_LENGTH, opts.maxLength) : MAX_LENGTH;
+
+ let len = input.length;
+ if (len > max) {
+ throw new SyntaxError(`Input length: ${len}, exceeds maximum allowed length: ${max}`);
+ }
+
+ const bos = { type: 'bos', value: '', output: opts.prepend || '' };
+ const tokens = [bos];
+
+ const capture = opts.capture ? '' : '?:';
+ const win32 = utils.isWindows(options);
+
+ // create constants based on platform, for windows or posix
+ const PLATFORM_CHARS = constants.globChars(win32);
+ const EXTGLOB_CHARS = constants.extglobChars(PLATFORM_CHARS);
+
+ const {
+ DOT_LITERAL,
+ PLUS_LITERAL,
+ SLASH_LITERAL,
+ ONE_CHAR,
+ DOTS_SLASH,
+ NO_DOT,
+ NO_DOT_SLASH,
+ NO_DOTS_SLASH,
+ QMARK,
+ QMARK_NO_DOT,
+ STAR,
+ START_ANCHOR
+ } = PLATFORM_CHARS;
+
+ const globstar = opts => {
+ return `(${capture}(?:(?!${START_ANCHOR}${opts.dot ? DOTS_SLASH : DOT_LITERAL}).)*?)`;
+ };
+
+ const nodot = opts.dot ? '' : NO_DOT;
+ const qmarkNoDot = opts.dot ? QMARK : QMARK_NO_DOT;
+ let star = opts.bash === true ? globstar(opts) : STAR;
+
+ if (opts.capture) {
+ star = `(${star})`;
+ }
+
+ // minimatch options support
+ if (typeof opts.noext === 'boolean') {
+ opts.noextglob = opts.noext;
+ }
+
+ const state = {
+ input,
+ index: -1,
+ start: 0,
+ dot: opts.dot === true,
+ consumed: '',
+ output: '',
+ prefix: '',
+ backtrack: false,
+ negated: false,
+ brackets: 0,
+ braces: 0,
+ parens: 0,
+ quotes: 0,
+ globstar: false,
+ tokens
+ };
+
+ input = utils.removePrefix(input, state);
+ len = input.length;
+
+ const extglobs = [];
+ const braces = [];
+ const stack = [];
+ let prev = bos;
+ let value;
+
+ /**
+ * Tokenizing helpers
+ */
+
+ const eos = () => state.index === len - 1;
+ const peek = state.peek = (n = 1) => input[state.index + n];
+ const advance = state.advance = () => input[++state.index] || '';
+ const remaining = () => input.slice(state.index + 1);
+ const consume = (value = '', num = 0) => {
+ state.consumed += value;
+ state.index += num;
+ };
+
+ const append = token => {
+ state.output += token.output != null ? token.output : token.value;
+ consume(token.value);
+ };
+
+ const negate = () => {
+ let count = 1;
+
+ while (peek() === '!' && (peek(2) !== '(' || peek(3) === '?')) {
+ advance();
+ state.start++;
+ count++;
+ }
+
+ if (count % 2 === 0) {
+ return false;
+ }
+
+ state.negated = true;
+ state.start++;
+ return true;
+ };
+
+ const increment = type => {
+ state[type]++;
+ stack.push(type);
+ };
+
+ const decrement = type => {
+ state[type]--;
+ stack.pop();
+ };
+
+ /**
+ * Push tokens onto the tokens array. This helper speeds up
+ * tokenizing by 1) helping us avoid backtracking as much as possible,
+ * and 2) helping us avoid creating extra tokens when consecutive
+ * characters are plain text. This improves performance and simplifies
+ * lookbehinds.
+ */
+
+ const push = tok => {
+ if (prev.type === 'globstar') {
+ const isBrace = state.braces > 0 && (tok.type === 'comma' || tok.type === 'brace');
+ const isExtglob = tok.extglob === true || (extglobs.length && (tok.type === 'pipe' || tok.type === 'paren'));
+
+ if (tok.type !== 'slash' && tok.type !== 'paren' && !isBrace && !isExtglob) {
+ state.output = state.output.slice(0, -prev.output.length);
+ prev.type = 'star';
+ prev.value = '*';
+ prev.output = star;
+ state.output += prev.output;
+ }
+ }
+
+ if (extglobs.length && tok.type !== 'paren') {
+ extglobs[extglobs.length - 1].inner += tok.value;
+ }
+
+ if (tok.value || tok.output) append(tok);
+ if (prev && prev.type === 'text' && tok.type === 'text') {
+ prev.value += tok.value;
+ prev.output = (prev.output || '') + tok.value;
+ return;
+ }
+
+ tok.prev = prev;
+ tokens.push(tok);
+ prev = tok;
+ };
+
+ const extglobOpen = (type, value) => {
+ const token = { ...EXTGLOB_CHARS[value], conditions: 1, inner: '' };
+
+ token.prev = prev;
+ token.parens = state.parens;
+ token.output = state.output;
+ const output = (opts.capture ? '(' : '') + token.open;
+
+ increment('parens');
+ push({ type, value, output: state.output ? '' : ONE_CHAR });
+ push({ type: 'paren', extglob: true, value: advance(), output });
+ extglobs.push(token);
+ };
+
+ const extglobClose = token => {
+ let output = token.close + (opts.capture ? ')' : '');
+ let rest;
+
+ if (token.type === 'negate') {
+ let extglobStar = star;
+
+ if (token.inner && token.inner.length > 1 && token.inner.includes('/')) {
+ extglobStar = globstar(opts);
+ }
+
+ if (extglobStar !== star || eos() || /^\)+$/.test(remaining())) {
+ output = token.close = `)$))${extglobStar}`;
+ }
+
+ if (token.inner.includes('*') && (rest = remaining()) && /^\.[^\\/.]+$/.test(rest)) {
+ // Any non-magical string (`.ts`) or even nested expression (`.{ts,tsx}`) can follow after the closing parenthesis.
+ // In this case, we need to parse the string and use it in the output of the original pattern.
+ // Suitable patterns: `/!(*.d).ts`, `/!(*.d).{ts,tsx}`, `**/!(*-dbg).@(js)`.
+ //
+ // Disabling the `fastpaths` option due to a problem with parsing strings as `.ts` in the pattern like `**/!(*.d).ts`.
+ const expression = parse(rest, { ...options, fastpaths: false }).output;
+
+ output = token.close = `)${expression})${extglobStar})`;
+ }
+
+ if (token.prev.type === 'bos') {
+ state.negatedExtglob = true;
+ }
+ }
+
+ push({ type: 'paren', extglob: true, value, output });
+ decrement('parens');
+ };
+
+ /**
+ * Fast paths
+ */
+
+ if (opts.fastpaths !== false && !/(^[*!]|[/()[\]{}"])/.test(input)) {
+ let backslashes = false;
+
+ let output = input.replace(REGEX_SPECIAL_CHARS_BACKREF, (m, esc, chars, first, rest, index) => {
+ if (first === '\\') {
+ backslashes = true;
+ return m;
+ }
+
+ if (first === '?') {
+ if (esc) {
+ return esc + first + (rest ? QMARK.repeat(rest.length) : '');
+ }
+ if (index === 0) {
+ return qmarkNoDot + (rest ? QMARK.repeat(rest.length) : '');
+ }
+ return QMARK.repeat(chars.length);
+ }
+
+ if (first === '.') {
+ return DOT_LITERAL.repeat(chars.length);
+ }
+
+ if (first === '*') {
+ if (esc) {
+ return esc + first + (rest ? star : '');
+ }
+ return star;
+ }
+ return esc ? m : `\\${m}`;
+ });
+
+ if (backslashes === true) {
+ if (opts.unescape === true) {
+ output = output.replace(/\\/g, '');
+ } else {
+ output = output.replace(/\\+/g, m => {
+ return m.length % 2 === 0 ? '\\\\' : (m ? '\\' : '');
+ });
+ }
+ }
+
+ if (output === input && opts.contains === true) {
+ state.output = input;
+ return state;
+ }
+
+ state.output = utils.wrapOutput(output, state, options);
+ return state;
+ }
+
+ /**
+ * Tokenize input until we reach end-of-string
+ */
+
+ while (!eos()) {
+ value = advance();
+
+ if (value === '\u0000') {
+ continue;
+ }
+
+ /**
+ * Escaped characters
+ */
+
+ if (value === '\\') {
+ const next = peek();
+
+ if (next === '/' && opts.bash !== true) {
+ continue;
+ }
+
+ if (next === '.' || next === ';') {
+ continue;
+ }
+
+ if (!next) {
+ value += '\\';
+ push({ type: 'text', value });
+ continue;
+ }
+
+ // collapse slashes to reduce potential for exploits
+ const match = /^\\+/.exec(remaining());
+ let slashes = 0;
+
+ if (match && match[0].length > 2) {
+ slashes = match[0].length;
+ state.index += slashes;
+ if (slashes % 2 !== 0) {
+ value += '\\';
+ }
+ }
+
+ if (opts.unescape === true) {
+ value = advance();
+ } else {
+ value += advance();
+ }
+
+ if (state.brackets === 0) {
+ push({ type: 'text', value });
+ continue;
+ }
+ }
+
+ /**
+ * If we're inside a regex character class, continue
+ * until we reach the closing bracket.
+ */
+
+ if (state.brackets > 0 && (value !== ']' || prev.value === '[' || prev.value === '[^')) {
+ if (opts.posix !== false && value === ':') {
+ const inner = prev.value.slice(1);
+ if (inner.includes('[')) {
+ prev.posix = true;
+
+ if (inner.includes(':')) {
+ const idx = prev.value.lastIndexOf('[');
+ const pre = prev.value.slice(0, idx);
+ const rest = prev.value.slice(idx + 2);
+ const posix = POSIX_REGEX_SOURCE[rest];
+ if (posix) {
+ prev.value = pre + posix;
+ state.backtrack = true;
+ advance();
+
+ if (!bos.output && tokens.indexOf(prev) === 1) {
+ bos.output = ONE_CHAR;
+ }
+ continue;
+ }
+ }
+ }
+ }
+
+ if ((value === '[' && peek() !== ':') || (value === '-' && peek() === ']')) {
+ value = `\\${value}`;
+ }
+
+ if (value === ']' && (prev.value === '[' || prev.value === '[^')) {
+ value = `\\${value}`;
+ }
+
+ if (opts.posix === true && value === '!' && prev.value === '[') {
+ value = '^';
+ }
+
+ prev.value += value;
+ append({ value });
+ continue;
+ }
+
+ /**
+ * If we're inside a quoted string, continue
+ * until we reach the closing double quote.
+ */
+
+ if (state.quotes === 1 && value !== '"') {
+ value = utils.escapeRegex(value);
+ prev.value += value;
+ append({ value });
+ continue;
+ }
+
+ /**
+ * Double quotes
+ */
+
+ if (value === '"') {
+ state.quotes = state.quotes === 1 ? 0 : 1;
+ if (opts.keepQuotes === true) {
+ push({ type: 'text', value });
+ }
+ continue;
+ }
+
+ /**
+ * Parentheses
+ */
+
+ if (value === '(') {
+ increment('parens');
+ push({ type: 'paren', value });
+ continue;
+ }
+
+ if (value === ')') {
+ if (state.parens === 0 && opts.strictBrackets === true) {
+ throw new SyntaxError(syntaxError('opening', '('));
+ }
+
+ const extglob = extglobs[extglobs.length - 1];
+ if (extglob && state.parens === extglob.parens + 1) {
+ extglobClose(extglobs.pop());
+ continue;
+ }
+
+ push({ type: 'paren', value, output: state.parens ? ')' : '\\)' });
+ decrement('parens');
+ continue;
+ }
+
+ /**
+ * Square brackets
+ */
+
+ if (value === '[') {
+ if (opts.nobracket === true || !remaining().includes(']')) {
+ if (opts.nobracket !== true && opts.strictBrackets === true) {
+ throw new SyntaxError(syntaxError('closing', ']'));
+ }
+
+ value = `\\${value}`;
+ } else {
+ increment('brackets');
+ }
+
+ push({ type: 'bracket', value });
+ continue;
+ }
+
+ if (value === ']') {
+ if (opts.nobracket === true || (prev && prev.type === 'bracket' && prev.value.length === 1)) {
+ push({ type: 'text', value, output: `\\${value}` });
+ continue;
+ }
+
+ if (state.brackets === 0) {
+ if (opts.strictBrackets === true) {
+ throw new SyntaxError(syntaxError('opening', '['));
+ }
+
+ push({ type: 'text', value, output: `\\${value}` });
+ continue;
+ }
+
+ decrement('brackets');
+
+ const prevValue = prev.value.slice(1);
+ if (prev.posix !== true && prevValue[0] === '^' && !prevValue.includes('/')) {
+ value = `/${value}`;
+ }
+
+ prev.value += value;
+ append({ value });
+
+ // when literal brackets are explicitly disabled
+ // assume we should match with a regex character class
+ if (opts.literalBrackets === false || utils.hasRegexChars(prevValue)) {
+ continue;
+ }
+
+ const escaped = utils.escapeRegex(prev.value);
+ state.output = state.output.slice(0, -prev.value.length);
+
+ // when literal brackets are explicitly enabled
+ // assume we should escape the brackets to match literal characters
+ if (opts.literalBrackets === true) {
+ state.output += escaped;
+ prev.value = escaped;
+ continue;
+ }
+
+ // when the user specifies nothing, try to match both
+ prev.value = `(${capture}${escaped}|${prev.value})`;
+ state.output += prev.value;
+ continue;
+ }
+
+ /**
+ * Braces
+ */
+
+ if (value === '{' && opts.nobrace !== true) {
+ increment('braces');
+
+ const open = {
+ type: 'brace',
+ value,
+ output: '(',
+ outputIndex: state.output.length,
+ tokensIndex: state.tokens.length
+ };
+
+ braces.push(open);
+ push(open);
+ continue;
+ }
+
+ if (value === '}') {
+ const brace = braces[braces.length - 1];
+
+ if (opts.nobrace === true || !brace) {
+ push({ type: 'text', value, output: value });
+ continue;
+ }
+
+ let output = ')';
+
+ if (brace.dots === true) {
+ const arr = tokens.slice();
+ const range = [];
+
+ for (let i = arr.length - 1; i >= 0; i--) {
+ tokens.pop();
+ if (arr[i].type === 'brace') {
+ break;
+ }
+ if (arr[i].type !== 'dots') {
+ range.unshift(arr[i].value);
+ }
+ }
+
+ output = expandRange(range, opts);
+ state.backtrack = true;
+ }
+
+ if (brace.comma !== true && brace.dots !== true) {
+ const out = state.output.slice(0, brace.outputIndex);
+ const toks = state.tokens.slice(brace.tokensIndex);
+ brace.value = brace.output = '\\{';
+ value = output = '\\}';
+ state.output = out;
+ for (const t of toks) {
+ state.output += (t.output || t.value);
+ }
+ }
+
+ push({ type: 'brace', value, output });
+ decrement('braces');
+ braces.pop();
+ continue;
+ }
+
+ /**
+ * Pipes
+ */
+
+ if (value === '|') {
+ if (extglobs.length > 0) {
+ extglobs[extglobs.length - 1].conditions++;
+ }
+ push({ type: 'text', value });
+ continue;
+ }
+
+ /**
+ * Commas
+ */
+
+ if (value === ',') {
+ let output = value;
+
+ const brace = braces[braces.length - 1];
+ if (brace && stack[stack.length - 1] === 'braces') {
+ brace.comma = true;
+ output = '|';
+ }
+
+ push({ type: 'comma', value, output });
+ continue;
+ }
+
+ /**
+ * Slashes
+ */
+
+ if (value === '/') {
+ // if the beginning of the glob is "./", advance the start
+ // to the current index, and don't add the "./" characters
+ // to the state. This greatly simplifies lookbehinds when
+ // checking for BOS characters like "!" and "." (not "./")
+ if (prev.type === 'dot' && state.index === state.start + 1) {
+ state.start = state.index + 1;
+ state.consumed = '';
+ state.output = '';
+ tokens.pop();
+ prev = bos; // reset "prev" to the first token
+ continue;
+ }
+
+ push({ type: 'slash', value, output: SLASH_LITERAL });
+ continue;
+ }
+
+ /**
+ * Dots
+ */
+
+ if (value === '.') {
+ if (state.braces > 0 && prev.type === 'dot') {
+ if (prev.value === '.') prev.output = DOT_LITERAL;
+ const brace = braces[braces.length - 1];
+ prev.type = 'dots';
+ prev.output += value;
+ prev.value += value;
+ brace.dots = true;
+ continue;
+ }
+
+ if ((state.braces + state.parens) === 0 && prev.type !== 'bos' && prev.type !== 'slash') {
+ push({ type: 'text', value, output: DOT_LITERAL });
+ continue;
+ }
+
+ push({ type: 'dot', value, output: DOT_LITERAL });
+ continue;
+ }
+
+ /**
+ * Question marks
+ */
+
+ if (value === '?') {
+ const isGroup = prev && prev.value === '(';
+ if (!isGroup && opts.noextglob !== true && peek() === '(' && peek(2) !== '?') {
+ extglobOpen('qmark', value);
+ continue;
+ }
+
+ if (prev && prev.type === 'paren') {
+ const next = peek();
+ let output = value;
+
+ if (next === '<' && !utils.supportsLookbehinds()) {
+ throw new Error('Node.js v10 or higher is required for regex lookbehinds');
+ }
+
+ if ((prev.value === '(' && !/[!=<:]/.test(next)) || (next === '<' && !/<([!=]|\w+>)/.test(remaining()))) {
+ output = `\\${value}`;
+ }
+
+ push({ type: 'text', value, output });
+ continue;
+ }
+
+ if (opts.dot !== true && (prev.type === 'slash' || prev.type === 'bos')) {
+ push({ type: 'qmark', value, output: QMARK_NO_DOT });
+ continue;
+ }
+
+ push({ type: 'qmark', value, output: QMARK });
+ continue;
+ }
+
+ /**
+ * Exclamation
+ */
+
+ if (value === '!') {
+ if (opts.noextglob !== true && peek() === '(') {
+ if (peek(2) !== '?' || !/[!=<:]/.test(peek(3))) {
+ extglobOpen('negate', value);
+ continue;
+ }
+ }
+
+ if (opts.nonegate !== true && state.index === 0) {
+ negate();
+ continue;
+ }
+ }
+
+ /**
+ * Plus
+ */
+
+ if (value === '+') {
+ if (opts.noextglob !== true && peek() === '(' && peek(2) !== '?') {
+ extglobOpen('plus', value);
+ continue;
+ }
+
+ if ((prev && prev.value === '(') || opts.regex === false) {
+ push({ type: 'plus', value, output: PLUS_LITERAL });
+ continue;
+ }
+
+ if ((prev && (prev.type === 'bracket' || prev.type === 'paren' || prev.type === 'brace')) || state.parens > 0) {
+ push({ type: 'plus', value });
+ continue;
+ }
+
+ push({ type: 'plus', value: PLUS_LITERAL });
+ continue;
+ }
+
+ /**
+ * Plain text
+ */
+
+ if (value === '@') {
+ if (opts.noextglob !== true && peek() === '(' && peek(2) !== '?') {
+ push({ type: 'at', extglob: true, value, output: '' });
+ continue;
+ }
+
+ push({ type: 'text', value });
+ continue;
+ }
+
+ /**
+ * Plain text
+ */
+
+ if (value !== '*') {
+ if (value === '$' || value === '^') {
+ value = `\\${value}`;
+ }
+
+ const match = REGEX_NON_SPECIAL_CHARS.exec(remaining());
+ if (match) {
+ value += match[0];
+ state.index += match[0].length;
+ }
+
+ push({ type: 'text', value });
+ continue;
+ }
+
+ /**
+ * Stars
+ */
+
+ if (prev && (prev.type === 'globstar' || prev.star === true)) {
+ prev.type = 'star';
+ prev.star = true;
+ prev.value += value;
+ prev.output = star;
+ state.backtrack = true;
+ state.globstar = true;
+ consume(value);
+ continue;
+ }
+
+ let rest = remaining();
+ if (opts.noextglob !== true && /^\([^?]/.test(rest)) {
+ extglobOpen('star', value);
+ continue;
+ }
+
+ if (prev.type === 'star') {
+ if (opts.noglobstar === true) {
+ consume(value);
+ continue;
+ }
+
+ const prior = prev.prev;
+ const before = prior.prev;
+ const isStart = prior.type === 'slash' || prior.type === 'bos';
+ const afterStar = before && (before.type === 'star' || before.type === 'globstar');
+
+ if (opts.bash === true && (!isStart || (rest[0] && rest[0] !== '/'))) {
+ push({ type: 'star', value, output: '' });
+ continue;
+ }
+
+ const isBrace = state.braces > 0 && (prior.type === 'comma' || prior.type === 'brace');
+ const isExtglob = extglobs.length && (prior.type === 'pipe' || prior.type === 'paren');
+ if (!isStart && prior.type !== 'paren' && !isBrace && !isExtglob) {
+ push({ type: 'star', value, output: '' });
+ continue;
+ }
+
+ // strip consecutive `/**/`
+ while (rest.slice(0, 3) === '/**') {
+ const after = input[state.index + 4];
+ if (after && after !== '/') {
+ break;
+ }
+ rest = rest.slice(3);
+ consume('/**', 3);
+ }
+
+ if (prior.type === 'bos' && eos()) {
+ prev.type = 'globstar';
+ prev.value += value;
+ prev.output = globstar(opts);
+ state.output = prev.output;
+ state.globstar = true;
+ consume(value);
+ continue;
+ }
+
+ if (prior.type === 'slash' && prior.prev.type !== 'bos' && !afterStar && eos()) {
+ state.output = state.output.slice(0, -(prior.output + prev.output).length);
+ prior.output = `(?:${prior.output}`;
+
+ prev.type = 'globstar';
+ prev.output = globstar(opts) + (opts.strictSlashes ? ')' : '|$)');
+ prev.value += value;
+ state.globstar = true;
+ state.output += prior.output + prev.output;
+ consume(value);
+ continue;
+ }
+
+ if (prior.type === 'slash' && prior.prev.type !== 'bos' && rest[0] === '/') {
+ const end = rest[1] !== void 0 ? '|$' : '';
+
+ state.output = state.output.slice(0, -(prior.output + prev.output).length);
+ prior.output = `(?:${prior.output}`;
+
+ prev.type = 'globstar';
+ prev.output = `${globstar(opts)}${SLASH_LITERAL}|${SLASH_LITERAL}${end})`;
+ prev.value += value;
+
+ state.output += prior.output + prev.output;
+ state.globstar = true;
+
+ consume(value + advance());
+
+ push({ type: 'slash', value: '/', output: '' });
+ continue;
+ }
+
+ if (prior.type === 'bos' && rest[0] === '/') {
+ prev.type = 'globstar';
+ prev.value += value;
+ prev.output = `(?:^|${SLASH_LITERAL}|${globstar(opts)}${SLASH_LITERAL})`;
+ state.output = prev.output;
+ state.globstar = true;
+ consume(value + advance());
+ push({ type: 'slash', value: '/', output: '' });
+ continue;
+ }
+
+ // remove single star from output
+ state.output = state.output.slice(0, -prev.output.length);
+
+ // reset previous token to globstar
+ prev.type = 'globstar';
+ prev.output = globstar(opts);
+ prev.value += value;
+
+ // reset output with globstar
+ state.output += prev.output;
+ state.globstar = true;
+ consume(value);
+ continue;
+ }
+
+ const token = { type: 'star', value, output: star };
+
+ if (opts.bash === true) {
+ token.output = '.*?';
+ if (prev.type === 'bos' || prev.type === 'slash') {
+ token.output = nodot + token.output;
+ }
+ push(token);
+ continue;
+ }
+
+ if (prev && (prev.type === 'bracket' || prev.type === 'paren') && opts.regex === true) {
+ token.output = value;
+ push(token);
+ continue;
+ }
+
+ if (state.index === state.start || prev.type === 'slash' || prev.type === 'dot') {
+ if (prev.type === 'dot') {
+ state.output += NO_DOT_SLASH;
+ prev.output += NO_DOT_SLASH;
+
+ } else if (opts.dot === true) {
+ state.output += NO_DOTS_SLASH;
+ prev.output += NO_DOTS_SLASH;
+
+ } else {
+ state.output += nodot;
+ prev.output += nodot;
+ }
+
+ if (peek() !== '*') {
+ state.output += ONE_CHAR;
+ prev.output += ONE_CHAR;
+ }
+ }
+
+ push(token);
+ }
+
+ while (state.brackets > 0) {
+ if (opts.strictBrackets === true) throw new SyntaxError(syntaxError('closing', ']'));
+ state.output = utils.escapeLast(state.output, '[');
+ decrement('brackets');
+ }
+
+ while (state.parens > 0) {
+ if (opts.strictBrackets === true) throw new SyntaxError(syntaxError('closing', ')'));
+ state.output = utils.escapeLast(state.output, '(');
+ decrement('parens');
+ }
+
+ while (state.braces > 0) {
+ if (opts.strictBrackets === true) throw new SyntaxError(syntaxError('closing', '}'));
+ state.output = utils.escapeLast(state.output, '{');
+ decrement('braces');
+ }
+
+ if (opts.strictSlashes !== true && (prev.type === 'star' || prev.type === 'bracket')) {
+ push({ type: 'maybe_slash', value: '', output: `${SLASH_LITERAL}?` });
+ }
+
+ // rebuild the output if we had to backtrack at any point
+ if (state.backtrack === true) {
+ state.output = '';
+
+ for (const token of state.tokens) {
+ state.output += token.output != null ? token.output : token.value;
+
+ if (token.suffix) {
+ state.output += token.suffix;
+ }
+ }
+ }
+
+ return state;
+};
+
+/**
+ * Fast paths for creating regular expressions for common glob patterns.
+ * This can significantly speed up processing and has very little downside
+ * impact when none of the fast paths match.
+ */
+
+parse.fastpaths = (input, options) => {
+ const opts = { ...options };
+ const max = typeof opts.maxLength === 'number' ? Math.min(MAX_LENGTH, opts.maxLength) : MAX_LENGTH;
+ const len = input.length;
+ if (len > max) {
+ throw new SyntaxError(`Input length: ${len}, exceeds maximum allowed length: ${max}`);
+ }
+
+ input = REPLACEMENTS[input] || input;
+ const win32 = utils.isWindows(options);
+
+ // create constants based on platform, for windows or posix
+ const {
+ DOT_LITERAL,
+ SLASH_LITERAL,
+ ONE_CHAR,
+ DOTS_SLASH,
+ NO_DOT,
+ NO_DOTS,
+ NO_DOTS_SLASH,
+ STAR,
+ START_ANCHOR
+ } = constants.globChars(win32);
+
+ const nodot = opts.dot ? NO_DOTS : NO_DOT;
+ const slashDot = opts.dot ? NO_DOTS_SLASH : NO_DOT;
+ const capture = opts.capture ? '' : '?:';
+ const state = { negated: false, prefix: '' };
+ let star = opts.bash === true ? '.*?' : STAR;
+
+ if (opts.capture) {
+ star = `(${star})`;
+ }
+
+ const globstar = opts => {
+ if (opts.noglobstar === true) return star;
+ return `(${capture}(?:(?!${START_ANCHOR}${opts.dot ? DOTS_SLASH : DOT_LITERAL}).)*?)`;
+ };
+
+ const create = str => {
+ switch (str) {
+ case '*':
+ return `${nodot}${ONE_CHAR}${star}`;
+
+ case '.*':
+ return `${DOT_LITERAL}${ONE_CHAR}${star}`;
+
+ case '*.*':
+ return `${nodot}${star}${DOT_LITERAL}${ONE_CHAR}${star}`;
+
+ case '*/*':
+ return `${nodot}${star}${SLASH_LITERAL}${ONE_CHAR}${slashDot}${star}`;
+
+ case '**':
+ return nodot + globstar(opts);
+
+ case '**/*':
+ return `(?:${nodot}${globstar(opts)}${SLASH_LITERAL})?${slashDot}${ONE_CHAR}${star}`;
+
+ case '**/*.*':
+ return `(?:${nodot}${globstar(opts)}${SLASH_LITERAL})?${slashDot}${star}${DOT_LITERAL}${ONE_CHAR}${star}`;
+
+ case '**/.*':
+ return `(?:${nodot}${globstar(opts)}${SLASH_LITERAL})?${DOT_LITERAL}${ONE_CHAR}${star}`;
+
+ default: {
+ const match = /^(.*?)\.(\w+)$/.exec(str);
+ if (!match) return;
+
+ const source = create(match[1]);
+ if (!source) return;
+
+ return source + DOT_LITERAL + match[2];
+ }
+ }
+ };
+
+ const output = utils.removePrefix(input, state);
+ let source = create(output);
+
+ if (source && opts.strictSlashes !== true) {
+ source += `${SLASH_LITERAL}?`;
+ }
+
+ return source;
+};
+
+module.exports = parse;
diff --git a/node_modules/picomatch/lib/picomatch.js b/node_modules/picomatch/lib/picomatch.js
new file mode 100644
index 0000000..782d809
--- /dev/null
+++ b/node_modules/picomatch/lib/picomatch.js
@@ -0,0 +1,342 @@
+'use strict';
+
+const path = require('path');
+const scan = require('./scan');
+const parse = require('./parse');
+const utils = require('./utils');
+const constants = require('./constants');
+const isObject = val => val && typeof val === 'object' && !Array.isArray(val);
+
+/**
+ * Creates a matcher function from one or more glob patterns. The
+ * returned function takes a string to match as its first argument,
+ * and returns true if the string is a match. The returned matcher
+ * function also takes a boolean as the second argument that, when true,
+ * returns an object with additional information.
+ *
+ * ```js
+ * const picomatch = require('picomatch');
+ * // picomatch(glob[, options]);
+ *
+ * const isMatch = picomatch('*.!(*a)');
+ * console.log(isMatch('a.a')); //=> false
+ * console.log(isMatch('a.b')); //=> true
+ * ```
+ * @name picomatch
+ * @param {String|Array} `globs` One or more glob patterns.
+ * @param {Object=} `options`
+ * @return {Function=} Returns a matcher function.
+ * @api public
+ */
+
+const picomatch = (glob, options, returnState = false) => {
+ if (Array.isArray(glob)) {
+ const fns = glob.map(input => picomatch(input, options, returnState));
+ const arrayMatcher = str => {
+ for (const isMatch of fns) {
+ const state = isMatch(str);
+ if (state) return state;
+ }
+ return false;
+ };
+ return arrayMatcher;
+ }
+
+ const isState = isObject(glob) && glob.tokens && glob.input;
+
+ if (glob === '' || (typeof glob !== 'string' && !isState)) {
+ throw new TypeError('Expected pattern to be a non-empty string');
+ }
+
+ const opts = options || {};
+ const posix = utils.isWindows(options);
+ const regex = isState
+ ? picomatch.compileRe(glob, options)
+ : picomatch.makeRe(glob, options, false, true);
+
+ const state = regex.state;
+ delete regex.state;
+
+ let isIgnored = () => false;
+ if (opts.ignore) {
+ const ignoreOpts = { ...options, ignore: null, onMatch: null, onResult: null };
+ isIgnored = picomatch(opts.ignore, ignoreOpts, returnState);
+ }
+
+ const matcher = (input, returnObject = false) => {
+ const { isMatch, match, output } = picomatch.test(input, regex, options, { glob, posix });
+ const result = { glob, state, regex, posix, input, output, match, isMatch };
+
+ if (typeof opts.onResult === 'function') {
+ opts.onResult(result);
+ }
+
+ if (isMatch === false) {
+ result.isMatch = false;
+ return returnObject ? result : false;
+ }
+
+ if (isIgnored(input)) {
+ if (typeof opts.onIgnore === 'function') {
+ opts.onIgnore(result);
+ }
+ result.isMatch = false;
+ return returnObject ? result : false;
+ }
+
+ if (typeof opts.onMatch === 'function') {
+ opts.onMatch(result);
+ }
+ return returnObject ? result : true;
+ };
+
+ if (returnState) {
+ matcher.state = state;
+ }
+
+ return matcher;
+};
+
+/**
+ * Test `input` with the given `regex`. This is used by the main
+ * `picomatch()` function to test the input string.
+ *
+ * ```js
+ * const picomatch = require('picomatch');
+ * // picomatch.test(input, regex[, options]);
+ *
+ * console.log(picomatch.test('foo/bar', /^(?:([^/]*?)\/([^/]*?))$/));
+ * // { isMatch: true, match: [ 'foo/', 'foo', 'bar' ], output: 'foo/bar' }
+ * ```
+ * @param {String} `input` String to test.
+ * @param {RegExp} `regex`
+ * @return {Object} Returns an object with matching info.
+ * @api public
+ */
+
+picomatch.test = (input, regex, options, { glob, posix } = {}) => {
+ if (typeof input !== 'string') {
+ throw new TypeError('Expected input to be a string');
+ }
+
+ if (input === '') {
+ return { isMatch: false, output: '' };
+ }
+
+ const opts = options || {};
+ const format = opts.format || (posix ? utils.toPosixSlashes : null);
+ let match = input === glob;
+ let output = (match && format) ? format(input) : input;
+
+ if (match === false) {
+ output = format ? format(input) : input;
+ match = output === glob;
+ }
+
+ if (match === false || opts.capture === true) {
+ if (opts.matchBase === true || opts.basename === true) {
+ match = picomatch.matchBase(input, regex, options, posix);
+ } else {
+ match = regex.exec(output);
+ }
+ }
+
+ return { isMatch: Boolean(match), match, output };
+};
+
+/**
+ * Match the basename of a filepath.
+ *
+ * ```js
+ * const picomatch = require('picomatch');
+ * // picomatch.matchBase(input, glob[, options]);
+ * console.log(picomatch.matchBase('foo/bar.js', '*.js'); // true
+ * ```
+ * @param {String} `input` String to test.
+ * @param {RegExp|String} `glob` Glob pattern or regex created by [.makeRe](#makeRe).
+ * @return {Boolean}
+ * @api public
+ */
+
+picomatch.matchBase = (input, glob, options, posix = utils.isWindows(options)) => {
+ const regex = glob instanceof RegExp ? glob : picomatch.makeRe(glob, options);
+ return regex.test(path.basename(input));
+};
+
+/**
+ * Returns true if **any** of the given glob `patterns` match the specified `string`.
+ *
+ * ```js
+ * const picomatch = require('picomatch');
+ * // picomatch.isMatch(string, patterns[, options]);
+ *
+ * console.log(picomatch.isMatch('a.a', ['b.*', '*.a'])); //=> true
+ * console.log(picomatch.isMatch('a.a', 'b.*')); //=> false
+ * ```
+ * @param {String|Array} str The string to test.
+ * @param {String|Array} patterns One or more glob patterns to use for matching.
+ * @param {Object} [options] See available [options](#options).
+ * @return {Boolean} Returns true if any patterns match `str`
+ * @api public
+ */
+
+picomatch.isMatch = (str, patterns, options) => picomatch(patterns, options)(str);
+
+/**
+ * Parse a glob pattern to create the source string for a regular
+ * expression.
+ *
+ * ```js
+ * const picomatch = require('picomatch');
+ * const result = picomatch.parse(pattern[, options]);
+ * ```
+ * @param {String} `pattern`
+ * @param {Object} `options`
+ * @return {Object} Returns an object with useful properties and output to be used as a regex source string.
+ * @api public
+ */
+
+picomatch.parse = (pattern, options) => {
+ if (Array.isArray(pattern)) return pattern.map(p => picomatch.parse(p, options));
+ return parse(pattern, { ...options, fastpaths: false });
+};
+
+/**
+ * Scan a glob pattern to separate the pattern into segments.
+ *
+ * ```js
+ * const picomatch = require('picomatch');
+ * // picomatch.scan(input[, options]);
+ *
+ * const result = picomatch.scan('!./foo/*.js');
+ * console.log(result);
+ * { prefix: '!./',
+ * input: '!./foo/*.js',
+ * start: 3,
+ * base: 'foo',
+ * glob: '*.js',
+ * isBrace: false,
+ * isBracket: false,
+ * isGlob: true,
+ * isExtglob: false,
+ * isGlobstar: false,
+ * negated: true }
+ * ```
+ * @param {String} `input` Glob pattern to scan.
+ * @param {Object} `options`
+ * @return {Object} Returns an object with
+ * @api public
+ */
+
+picomatch.scan = (input, options) => scan(input, options);
+
+/**
+ * Compile a regular expression from the `state` object returned by the
+ * [parse()](#parse) method.
+ *
+ * @param {Object} `state`
+ * @param {Object} `options`
+ * @param {Boolean} `returnOutput` Intended for implementors, this argument allows you to return the raw output from the parser.
+ * @param {Boolean} `returnState` Adds the state to a `state` property on the returned regex. Useful for implementors and debugging.
+ * @return {RegExp}
+ * @api public
+ */
+
+picomatch.compileRe = (state, options, returnOutput = false, returnState = false) => {
+ if (returnOutput === true) {
+ return state.output;
+ }
+
+ const opts = options || {};
+ const prepend = opts.contains ? '' : '^';
+ const append = opts.contains ? '' : '$';
+
+ let source = `${prepend}(?:${state.output})${append}`;
+ if (state && state.negated === true) {
+ source = `^(?!${source}).*$`;
+ }
+
+ const regex = picomatch.toRegex(source, options);
+ if (returnState === true) {
+ regex.state = state;
+ }
+
+ return regex;
+};
+
+/**
+ * Create a regular expression from a parsed glob pattern.
+ *
+ * ```js
+ * const picomatch = require('picomatch');
+ * const state = picomatch.parse('*.js');
+ * // picomatch.compileRe(state[, options]);
+ *
+ * console.log(picomatch.compileRe(state));
+ * //=> /^(?:(?!\.)(?=.)[^/]*?\.js)$/
+ * ```
+ * @param {String} `state` The object returned from the `.parse` method.
+ * @param {Object} `options`
+ * @param {Boolean} `returnOutput` Implementors may use this argument to return the compiled output, instead of a regular expression. This is not exposed on the options to prevent end-users from mutating the result.
+ * @param {Boolean} `returnState` Implementors may use this argument to return the state from the parsed glob with the returned regular expression.
+ * @return {RegExp} Returns a regex created from the given pattern.
+ * @api public
+ */
+
+picomatch.makeRe = (input, options = {}, returnOutput = false, returnState = false) => {
+ if (!input || typeof input !== 'string') {
+ throw new TypeError('Expected a non-empty string');
+ }
+
+ let parsed = { negated: false, fastpaths: true };
+
+ if (options.fastpaths !== false && (input[0] === '.' || input[0] === '*')) {
+ parsed.output = parse.fastpaths(input, options);
+ }
+
+ if (!parsed.output) {
+ parsed = parse(input, options);
+ }
+
+ return picomatch.compileRe(parsed, options, returnOutput, returnState);
+};
+
+/**
+ * Create a regular expression from the given regex source string.
+ *
+ * ```js
+ * const picomatch = require('picomatch');
+ * // picomatch.toRegex(source[, options]);
+ *
+ * const { output } = picomatch.parse('*.js');
+ * console.log(picomatch.toRegex(output));
+ * //=> /^(?:(?!\.)(?=.)[^/]*?\.js)$/
+ * ```
+ * @param {String} `source` Regular expression source string.
+ * @param {Object} `options`
+ * @return {RegExp}
+ * @api public
+ */
+
+picomatch.toRegex = (source, options) => {
+ try {
+ const opts = options || {};
+ return new RegExp(source, opts.flags || (opts.nocase ? 'i' : ''));
+ } catch (err) {
+ if (options && options.debug === true) throw err;
+ return /$^/;
+ }
+};
+
+/**
+ * Picomatch constants.
+ * @return {Object}
+ */
+
+picomatch.constants = constants;
+
+/**
+ * Expose "picomatch"
+ */
+
+module.exports = picomatch;
diff --git a/node_modules/picomatch/lib/scan.js b/node_modules/picomatch/lib/scan.js
new file mode 100644
index 0000000..e59cd7a
--- /dev/null
+++ b/node_modules/picomatch/lib/scan.js
@@ -0,0 +1,391 @@
+'use strict';
+
+const utils = require('./utils');
+const {
+ CHAR_ASTERISK, /* * */
+ CHAR_AT, /* @ */
+ CHAR_BACKWARD_SLASH, /* \ */
+ CHAR_COMMA, /* , */
+ CHAR_DOT, /* . */
+ CHAR_EXCLAMATION_MARK, /* ! */
+ CHAR_FORWARD_SLASH, /* / */
+ CHAR_LEFT_CURLY_BRACE, /* { */
+ CHAR_LEFT_PARENTHESES, /* ( */
+ CHAR_LEFT_SQUARE_BRACKET, /* [ */
+ CHAR_PLUS, /* + */
+ CHAR_QUESTION_MARK, /* ? */
+ CHAR_RIGHT_CURLY_BRACE, /* } */
+ CHAR_RIGHT_PARENTHESES, /* ) */
+ CHAR_RIGHT_SQUARE_BRACKET /* ] */
+} = require('./constants');
+
+const isPathSeparator = code => {
+ return code === CHAR_FORWARD_SLASH || code === CHAR_BACKWARD_SLASH;
+};
+
+const depth = token => {
+ if (token.isPrefix !== true) {
+ token.depth = token.isGlobstar ? Infinity : 1;
+ }
+};
+
+/**
+ * Quickly scans a glob pattern and returns an object with a handful of
+ * useful properties, like `isGlob`, `path` (the leading non-glob, if it exists),
+ * `glob` (the actual pattern), `negated` (true if the path starts with `!` but not
+ * with `!(`) and `negatedExtglob` (true if the path starts with `!(`).
+ *
+ * ```js
+ * const pm = require('picomatch');
+ * console.log(pm.scan('foo/bar/*.js'));
+ * { isGlob: true, input: 'foo/bar/*.js', base: 'foo/bar', glob: '*.js' }
+ * ```
+ * @param {String} `str`
+ * @param {Object} `options`
+ * @return {Object} Returns an object with tokens and regex source string.
+ * @api public
+ */
+
+const scan = (input, options) => {
+ const opts = options || {};
+
+ const length = input.length - 1;
+ const scanToEnd = opts.parts === true || opts.scanToEnd === true;
+ const slashes = [];
+ const tokens = [];
+ const parts = [];
+
+ let str = input;
+ let index = -1;
+ let start = 0;
+ let lastIndex = 0;
+ let isBrace = false;
+ let isBracket = false;
+ let isGlob = false;
+ let isExtglob = false;
+ let isGlobstar = false;
+ let braceEscaped = false;
+ let backslashes = false;
+ let negated = false;
+ let negatedExtglob = false;
+ let finished = false;
+ let braces = 0;
+ let prev;
+ let code;
+ let token = { value: '', depth: 0, isGlob: false };
+
+ const eos = () => index >= length;
+ const peek = () => str.charCodeAt(index + 1);
+ const advance = () => {
+ prev = code;
+ return str.charCodeAt(++index);
+ };
+
+ while (index < length) {
+ code = advance();
+ let next;
+
+ if (code === CHAR_BACKWARD_SLASH) {
+ backslashes = token.backslashes = true;
+ code = advance();
+
+ if (code === CHAR_LEFT_CURLY_BRACE) {
+ braceEscaped = true;
+ }
+ continue;
+ }
+
+ if (braceEscaped === true || code === CHAR_LEFT_CURLY_BRACE) {
+ braces++;
+
+ while (eos() !== true && (code = advance())) {
+ if (code === CHAR_BACKWARD_SLASH) {
+ backslashes = token.backslashes = true;
+ advance();
+ continue;
+ }
+
+ if (code === CHAR_LEFT_CURLY_BRACE) {
+ braces++;
+ continue;
+ }
+
+ if (braceEscaped !== true && code === CHAR_DOT && (code = advance()) === CHAR_DOT) {
+ isBrace = token.isBrace = true;
+ isGlob = token.isGlob = true;
+ finished = true;
+
+ if (scanToEnd === true) {
+ continue;
+ }
+
+ break;
+ }
+
+ if (braceEscaped !== true && code === CHAR_COMMA) {
+ isBrace = token.isBrace = true;
+ isGlob = token.isGlob = true;
+ finished = true;
+
+ if (scanToEnd === true) {
+ continue;
+ }
+
+ break;
+ }
+
+ if (code === CHAR_RIGHT_CURLY_BRACE) {
+ braces--;
+
+ if (braces === 0) {
+ braceEscaped = false;
+ isBrace = token.isBrace = true;
+ finished = true;
+ break;
+ }
+ }
+ }
+
+ if (scanToEnd === true) {
+ continue;
+ }
+
+ break;
+ }
+
+ if (code === CHAR_FORWARD_SLASH) {
+ slashes.push(index);
+ tokens.push(token);
+ token = { value: '', depth: 0, isGlob: false };
+
+ if (finished === true) continue;
+ if (prev === CHAR_DOT && index === (start + 1)) {
+ start += 2;
+ continue;
+ }
+
+ lastIndex = index + 1;
+ continue;
+ }
+
+ if (opts.noext !== true) {
+ const isExtglobChar = code === CHAR_PLUS
+ || code === CHAR_AT
+ || code === CHAR_ASTERISK
+ || code === CHAR_QUESTION_MARK
+ || code === CHAR_EXCLAMATION_MARK;
+
+ if (isExtglobChar === true && peek() === CHAR_LEFT_PARENTHESES) {
+ isGlob = token.isGlob = true;
+ isExtglob = token.isExtglob = true;
+ finished = true;
+ if (code === CHAR_EXCLAMATION_MARK && index === start) {
+ negatedExtglob = true;
+ }
+
+ if (scanToEnd === true) {
+ while (eos() !== true && (code = advance())) {
+ if (code === CHAR_BACKWARD_SLASH) {
+ backslashes = token.backslashes = true;
+ code = advance();
+ continue;
+ }
+
+ if (code === CHAR_RIGHT_PARENTHESES) {
+ isGlob = token.isGlob = true;
+ finished = true;
+ break;
+ }
+ }
+ continue;
+ }
+ break;
+ }
+ }
+
+ if (code === CHAR_ASTERISK) {
+ if (prev === CHAR_ASTERISK) isGlobstar = token.isGlobstar = true;
+ isGlob = token.isGlob = true;
+ finished = true;
+
+ if (scanToEnd === true) {
+ continue;
+ }
+ break;
+ }
+
+ if (code === CHAR_QUESTION_MARK) {
+ isGlob = token.isGlob = true;
+ finished = true;
+
+ if (scanToEnd === true) {
+ continue;
+ }
+ break;
+ }
+
+ if (code === CHAR_LEFT_SQUARE_BRACKET) {
+ while (eos() !== true && (next = advance())) {
+ if (next === CHAR_BACKWARD_SLASH) {
+ backslashes = token.backslashes = true;
+ advance();
+ continue;
+ }
+
+ if (next === CHAR_RIGHT_SQUARE_BRACKET) {
+ isBracket = token.isBracket = true;
+ isGlob = token.isGlob = true;
+ finished = true;
+ break;
+ }
+ }
+
+ if (scanToEnd === true) {
+ continue;
+ }
+
+ break;
+ }
+
+ if (opts.nonegate !== true && code === CHAR_EXCLAMATION_MARK && index === start) {
+ negated = token.negated = true;
+ start++;
+ continue;
+ }
+
+ if (opts.noparen !== true && code === CHAR_LEFT_PARENTHESES) {
+ isGlob = token.isGlob = true;
+
+ if (scanToEnd === true) {
+ while (eos() !== true && (code = advance())) {
+ if (code === CHAR_LEFT_PARENTHESES) {
+ backslashes = token.backslashes = true;
+ code = advance();
+ continue;
+ }
+
+ if (code === CHAR_RIGHT_PARENTHESES) {
+ finished = true;
+ break;
+ }
+ }
+ continue;
+ }
+ break;
+ }
+
+ if (isGlob === true) {
+ finished = true;
+
+ if (scanToEnd === true) {
+ continue;
+ }
+
+ break;
+ }
+ }
+
+ if (opts.noext === true) {
+ isExtglob = false;
+ isGlob = false;
+ }
+
+ let base = str;
+ let prefix = '';
+ let glob = '';
+
+ if (start > 0) {
+ prefix = str.slice(0, start);
+ str = str.slice(start);
+ lastIndex -= start;
+ }
+
+ if (base && isGlob === true && lastIndex > 0) {
+ base = str.slice(0, lastIndex);
+ glob = str.slice(lastIndex);
+ } else if (isGlob === true) {
+ base = '';
+ glob = str;
+ } else {
+ base = str;
+ }
+
+ if (base && base !== '' && base !== '/' && base !== str) {
+ if (isPathSeparator(base.charCodeAt(base.length - 1))) {
+ base = base.slice(0, -1);
+ }
+ }
+
+ if (opts.unescape === true) {
+ if (glob) glob = utils.removeBackslashes(glob);
+
+ if (base && backslashes === true) {
+ base = utils.removeBackslashes(base);
+ }
+ }
+
+ const state = {
+ prefix,
+ input,
+ start,
+ base,
+ glob,
+ isBrace,
+ isBracket,
+ isGlob,
+ isExtglob,
+ isGlobstar,
+ negated,
+ negatedExtglob
+ };
+
+ if (opts.tokens === true) {
+ state.maxDepth = 0;
+ if (!isPathSeparator(code)) {
+ tokens.push(token);
+ }
+ state.tokens = tokens;
+ }
+
+ if (opts.parts === true || opts.tokens === true) {
+ let prevIndex;
+
+ for (let idx = 0; idx < slashes.length; idx++) {
+ const n = prevIndex ? prevIndex + 1 : start;
+ const i = slashes[idx];
+ const value = input.slice(n, i);
+ if (opts.tokens) {
+ if (idx === 0 && start !== 0) {
+ tokens[idx].isPrefix = true;
+ tokens[idx].value = prefix;
+ } else {
+ tokens[idx].value = value;
+ }
+ depth(tokens[idx]);
+ state.maxDepth += tokens[idx].depth;
+ }
+ if (idx !== 0 || value !== '') {
+ parts.push(value);
+ }
+ prevIndex = i;
+ }
+
+ if (prevIndex && prevIndex + 1 < input.length) {
+ const value = input.slice(prevIndex + 1);
+ parts.push(value);
+
+ if (opts.tokens) {
+ tokens[tokens.length - 1].value = value;
+ depth(tokens[tokens.length - 1]);
+ state.maxDepth += tokens[tokens.length - 1].depth;
+ }
+ }
+
+ state.slashes = slashes;
+ state.parts = parts;
+ }
+
+ return state;
+};
+
+module.exports = scan;
diff --git a/node_modules/picomatch/lib/utils.js b/node_modules/picomatch/lib/utils.js
new file mode 100644
index 0000000..c3ca766
--- /dev/null
+++ b/node_modules/picomatch/lib/utils.js
@@ -0,0 +1,64 @@
+'use strict';
+
+const path = require('path');
+const win32 = process.platform === 'win32';
+const {
+ REGEX_BACKSLASH,
+ REGEX_REMOVE_BACKSLASH,
+ REGEX_SPECIAL_CHARS,
+ REGEX_SPECIAL_CHARS_GLOBAL
+} = require('./constants');
+
+exports.isObject = val => val !== null && typeof val === 'object' && !Array.isArray(val);
+exports.hasRegexChars = str => REGEX_SPECIAL_CHARS.test(str);
+exports.isRegexChar = str => str.length === 1 && exports.hasRegexChars(str);
+exports.escapeRegex = str => str.replace(REGEX_SPECIAL_CHARS_GLOBAL, '\\$1');
+exports.toPosixSlashes = str => str.replace(REGEX_BACKSLASH, '/');
+
+exports.removeBackslashes = str => {
+ return str.replace(REGEX_REMOVE_BACKSLASH, match => {
+ return match === '\\' ? '' : match;
+ });
+};
+
+exports.supportsLookbehinds = () => {
+ const segs = process.version.slice(1).split('.').map(Number);
+ if (segs.length === 3 && segs[0] >= 9 || (segs[0] === 8 && segs[1] >= 10)) {
+ return true;
+ }
+ return false;
+};
+
+exports.isWindows = options => {
+ if (options && typeof options.windows === 'boolean') {
+ return options.windows;
+ }
+ return win32 === true || path.sep === '\\';
+};
+
+exports.escapeLast = (input, char, lastIdx) => {
+ const idx = input.lastIndexOf(char, lastIdx);
+ if (idx === -1) return input;
+ if (input[idx - 1] === '\\') return exports.escapeLast(input, char, idx - 1);
+ return `${input.slice(0, idx)}\\${input.slice(idx)}`;
+};
+
+exports.removePrefix = (input, state = {}) => {
+ let output = input;
+ if (output.startsWith('./')) {
+ output = output.slice(2);
+ state.prefix = './';
+ }
+ return output;
+};
+
+exports.wrapOutput = (input, state = {}, options = {}) => {
+ const prepend = options.contains ? '' : '^';
+ const append = options.contains ? '' : '$';
+
+ let output = `${prepend}(?:${input})${append}`;
+ if (state.negated === true) {
+ output = `(?:^(?!${output}).*$)`;
+ }
+ return output;
+};
diff --git a/node_modules/picomatch/package.json b/node_modules/picomatch/package.json
new file mode 100644
index 0000000..3db22d4
--- /dev/null
+++ b/node_modules/picomatch/package.json
@@ -0,0 +1,81 @@
+{
+ "name": "picomatch",
+ "description": "Blazing fast and accurate glob matcher written in JavaScript, with no dependencies and full support for standard and extended Bash glob features, including braces, extglobs, POSIX brackets, and regular expressions.",
+ "version": "2.3.1",
+ "homepage": "https://github.com/micromatch/picomatch",
+ "author": "Jon Schlinkert (https://github.com/jonschlinkert)",
+ "funding": "https://github.com/sponsors/jonschlinkert",
+ "repository": "micromatch/picomatch",
+ "bugs": {
+ "url": "https://github.com/micromatch/picomatch/issues"
+ },
+ "license": "MIT",
+ "files": [
+ "index.js",
+ "lib"
+ ],
+ "main": "index.js",
+ "engines": {
+ "node": ">=8.6"
+ },
+ "scripts": {
+ "lint": "eslint --cache --cache-location node_modules/.cache/.eslintcache --report-unused-disable-directives --ignore-path .gitignore .",
+ "mocha": "mocha --reporter dot",
+ "test": "npm run lint && npm run mocha",
+ "test:ci": "npm run test:cover",
+ "test:cover": "nyc npm run mocha"
+ },
+ "devDependencies": {
+ "eslint": "^6.8.0",
+ "fill-range": "^7.0.1",
+ "gulp-format-md": "^2.0.0",
+ "mocha": "^6.2.2",
+ "nyc": "^15.0.0",
+ "time-require": "github:jonschlinkert/time-require"
+ },
+ "keywords": [
+ "glob",
+ "match",
+ "picomatch"
+ ],
+ "nyc": {
+ "reporter": [
+ "html",
+ "lcov",
+ "text-summary"
+ ]
+ },
+ "verb": {
+ "toc": {
+ "render": true,
+ "method": "preWrite",
+ "maxdepth": 3
+ },
+ "layout": "empty",
+ "tasks": [
+ "readme"
+ ],
+ "plugins": [
+ "gulp-format-md"
+ ],
+ "lint": {
+ "reflinks": true
+ },
+ "related": {
+ "list": [
+ "braces",
+ "micromatch"
+ ]
+ },
+ "reflinks": [
+ "braces",
+ "expand-brackets",
+ "extglob",
+ "fill-range",
+ "micromatch",
+ "minimatch",
+ "nanomatch",
+ "picomatch"
+ ]
+ }
+}
diff --git a/node_modules/pify/index.js b/node_modules/pify/index.js
new file mode 100644
index 0000000..7c720eb
--- /dev/null
+++ b/node_modules/pify/index.js
@@ -0,0 +1,68 @@
+'use strict';
+
+var processFn = function (fn, P, opts) {
+ return function () {
+ var that = this;
+ var args = new Array(arguments.length);
+
+ for (var i = 0; i < arguments.length; i++) {
+ args[i] = arguments[i];
+ }
+
+ return new P(function (resolve, reject) {
+ args.push(function (err, result) {
+ if (err) {
+ reject(err);
+ } else if (opts.multiArgs) {
+ var results = new Array(arguments.length - 1);
+
+ for (var i = 1; i < arguments.length; i++) {
+ results[i - 1] = arguments[i];
+ }
+
+ resolve(results);
+ } else {
+ resolve(result);
+ }
+ });
+
+ fn.apply(that, args);
+ });
+ };
+};
+
+var pify = module.exports = function (obj, P, opts) {
+ if (typeof P !== 'function') {
+ opts = P;
+ P = Promise;
+ }
+
+ opts = opts || {};
+ opts.exclude = opts.exclude || [/.+Sync$/];
+
+ var filter = function (key) {
+ var match = function (pattern) {
+ return typeof pattern === 'string' ? key === pattern : pattern.test(key);
+ };
+
+ return opts.include ? opts.include.some(match) : !opts.exclude.some(match);
+ };
+
+ var ret = typeof obj === 'function' ? function () {
+ if (opts.excludeMain) {
+ return obj.apply(this, arguments);
+ }
+
+ return processFn(obj, P, opts).apply(this, arguments);
+ } : {};
+
+ return Object.keys(obj).reduce(function (ret, key) {
+ var x = obj[key];
+
+ ret[key] = typeof x === 'function' && filter(key) ? processFn(x, P, opts) : x;
+
+ return ret;
+ }, ret);
+};
+
+pify.all = pify;
diff --git a/node_modules/pify/license b/node_modules/pify/license
new file mode 100644
index 0000000..654d0bf
--- /dev/null
+++ b/node_modules/pify/license
@@ -0,0 +1,21 @@
+The MIT License (MIT)
+
+Copyright (c) Sindre Sorhus (sindresorhus.com)
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.
diff --git a/node_modules/pify/package.json b/node_modules/pify/package.json
new file mode 100644
index 0000000..311d198
--- /dev/null
+++ b/node_modules/pify/package.json
@@ -0,0 +1,48 @@
+{
+ "name": "pify",
+ "version": "2.3.0",
+ "description": "Promisify a callback-style function",
+ "license": "MIT",
+ "repository": "sindresorhus/pify",
+ "author": {
+ "name": "Sindre Sorhus",
+ "email": "sindresorhus@gmail.com",
+ "url": "sindresorhus.com"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ },
+ "scripts": {
+ "test": "xo && ava && npm run optimization-test",
+ "optimization-test": "node --allow-natives-syntax optimization-test.js"
+ },
+ "files": [
+ "index.js"
+ ],
+ "keywords": [
+ "promise",
+ "promises",
+ "promisify",
+ "denodify",
+ "denodeify",
+ "callback",
+ "cb",
+ "node",
+ "then",
+ "thenify",
+ "convert",
+ "transform",
+ "wrap",
+ "wrapper",
+ "bind",
+ "to",
+ "async",
+ "es2015"
+ ],
+ "devDependencies": {
+ "ava": "*",
+ "pinkie-promise": "^1.0.0",
+ "v8-natives": "0.0.2",
+ "xo": "*"
+ }
+}
diff --git a/node_modules/pify/readme.md b/node_modules/pify/readme.md
new file mode 100644
index 0000000..c79ca8b
--- /dev/null
+++ b/node_modules/pify/readme.md
@@ -0,0 +1,119 @@
+# pify [![Build Status](https://travis-ci.org/sindresorhus/pify.svg?branch=master)](https://travis-ci.org/sindresorhus/pify)
+
+> Promisify a callback-style function
+
+
+## Install
+
+```
+$ npm install --save pify
+```
+
+
+## Usage
+
+```js
+const fs = require('fs');
+const pify = require('pify');
+
+// promisify a single function
+
+pify(fs.readFile)('package.json', 'utf8').then(data => {
+ console.log(JSON.parse(data).name);
+ //=> 'pify'
+});
+
+// or promisify all methods in a module
+
+pify(fs).readFile('package.json', 'utf8').then(data => {
+ console.log(JSON.parse(data).name);
+ //=> 'pify'
+});
+```
+
+
+## API
+
+### pify(input, [promiseModule], [options])
+
+Returns a promise wrapped version of the supplied function or module.
+
+#### input
+
+Type: `function`, `object`
+
+Callback-style function or module whose methods you want to promisify.
+
+#### promiseModule
+
+Type: `function`
+
+Custom promise module to use instead of the native one.
+
+Check out [`pinkie-promise`](https://github.com/floatdrop/pinkie-promise) if you need a tiny promise polyfill.
+
+#### options
+
+##### multiArgs
+
+Type: `boolean`
+Default: `false`
+
+By default, the promisified function will only return the second argument from the callback, which works fine for most APIs. This option can be useful for modules like `request` that return multiple arguments. Turning this on will make it return an array of all arguments from the callback, excluding the error argument, instead of just the second argument.
+
+```js
+const request = require('request');
+const pify = require('pify');
+
+pify(request, {multiArgs: true})('https://sindresorhus.com').then(result => {
+ const [httpResponse, body] = result;
+});
+```
+
+##### include
+
+Type: `array` of (`string`|`regex`)
+
+Methods in a module to promisify. Remaining methods will be left untouched.
+
+##### exclude
+
+Type: `array` of (`string`|`regex`)
+Default: `[/.+Sync$/]`
+
+Methods in a module **not** to promisify. Methods with names ending with `'Sync'` are excluded by default.
+
+##### excludeMain
+
+Type: `boolean`
+Default: `false`
+
+By default, if given module is a function itself, this function will be promisified. Turn this option on if you want to promisify only methods of the module.
+
+```js
+const pify = require('pify');
+
+function fn() {
+ return true;
+}
+
+fn.method = (data, callback) => {
+ setImmediate(() => {
+ callback(data, null);
+ });
+};
+
+// promisify methods but not fn()
+const promiseFn = pify(fn, {excludeMain: true});
+
+if (promiseFn()) {
+ promiseFn.method('hi').then(data => {
+ console.log(data);
+ });
+}
+```
+
+
+## License
+
+MIT © [Sindre Sorhus](http://sindresorhus.com)
diff --git a/node_modules/postcss-cli/LICENSE b/node_modules/postcss-cli/LICENSE
new file mode 100644
index 0000000..e4d2d4a
--- /dev/null
+++ b/node_modules/postcss-cli/LICENSE
@@ -0,0 +1,21 @@
+License (MIT)
+
+Copyright (c) 2016 Michael Ciniawsky
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
diff --git a/node_modules/postcss-cli/README.md b/node_modules/postcss-cli/README.md
new file mode 100644
index 0000000..9dc9a2d
--- /dev/null
+++ b/node_modules/postcss-cli/README.md
@@ -0,0 +1,149 @@
+[![npm][npm]][npm-url]
+[![node][node]][node-url]
+[![tests][tests]][tests-url]
+[![cover][cover]][cover-url]
+[![chat][chat]][chat-url]
+
+
+
+
+
+
+
PostCSS CLI
+
+
+Install
+
+```bash
+npm i -D postcss postcss-cli
+```
+
+Usage
+
+```
+Usage:
+ postcss [input.css] [OPTIONS] [-o|--output output.css] [--watch|-w]
+ postcss ... [OPTIONS] --dir [--watch|-w]
+ postcss [OPTIONS] --dir [--watch|-w]
+ postcss [OPTIONS] --dir [--watch|-w]
+ postcss ... [OPTIONS] --replace
+
+Basic options:
+ -o, --output Output file [string]
+ -d, --dir Output directory [string]
+ -r, --replace Replace (overwrite) the input file [boolean]
+ -m, --map Create an external sourcemap
+ --no-map Disable the default inline sourcemaps
+ -w, --watch Watch files for changes and recompile as needed [boolean]
+ --verbose Be verbose [boolean]
+ --env A shortcut for setting NODE_ENV [string]
+
+Options for use without a config file:
+ -u, --use List of postcss plugins to use [array]
+ --parser Custom postcss parser [string]
+ --stringifier Custom postcss stringifier [string]
+ --syntax Custom postcss syntax [string]
+
+Options for use with --dir:
+ --ext Override the output file extension; for use with --dir [string]
+ --base Mirror the directory structure relative to this path in the output
+ directory, for use with --dir [string]
+
+Advanced options:
+ --include-dotfiles Enable glob to match files/dirs that begin with "."
+ [boolean]
+ --poll Use polling for file watching. Can optionally pass polling
+ interval; default 100 ms
+ --config Set a custom directory to look for a config file [string]
+
+Options:
+ --version Show version number [boolean]
+ -h, --help Show help [boolean]
+
+Examples:
+ postcss input.css -o output.css Basic usage
+ postcss src/**/*.css --base src --dir build Glob Pattern & output
+ cat input.css | postcss -u autoprefixer > output.css Piping input & output
+
+If no input files are passed, it reads from stdin. If neither -o, --dir, or
+--replace is passed, it writes to stdout.
+
+If there are multiple input files, the --dir or --replace option must be passed.
+
+Input files may contain globs (e.g. src/**/*.css). If you pass an input
+directory, it will process all files in the directory and any subdirectories,
+respecting the glob pattern.
+```
+
+> ℹ️ More details on custom parsers, stringifiers and syntaxes, can be found [here](https://github.com/postcss/postcss#syntaxes).
+
+### [Config](https://github.com/michael-ciniawsky/postcss-load-config)
+
+If you need to pass options to your plugins, or have a long plugin chain, you'll want to use a configuration file.
+
+**postcss.config.js**
+
+```js
+module.exports = {
+ parser: 'sugarss',
+ plugins: [
+ require('postcss-import')({ ...options }),
+ require('postcss-url')({ url: 'copy', useHash: true }),
+ ],
+}
+```
+
+Note that you **can not** set the `from` or `to` options for postcss in the config file. They are set automatically based on the CLI arguments.
+
+### Context
+
+For more advanced usage, it's recommended to use a function in `postcss.config.js`; this gives you access to the CLI context to dynamically apply options and plugins **per file**
+
+| Name | Type | Default | Description |
+| :-------: | :--------: | :--------------------------------: | :------------------- |
+| `env` | `{String}` | `'development'` | process.env.NODE_ENV |
+| `file` | `{Object}` | `dirname, basename, extname` | File |
+| `options` | `{Object}` | `map, parser, syntax, stringifier` | PostCSS Options |
+
+**postcss.config.js**
+
+```js
+module.exports = (ctx) => ({
+ map: ctx.options.map,
+ parser: ctx.file.extname === '.sss' ? 'sugarss' : false,
+ plugins: {
+ 'postcss-import': { root: ctx.file.dirname },
+ cssnano: ctx.env === 'production' ? {} : false,
+ },
+})
+```
+
+> ⚠️ If you want to set options via CLI, it's mandatory to reference `ctx.options` in `postcss.config.js`
+
+```bash
+postcss input.sss -p sugarss -o output.css -m
+```
+
+**postcss.config.js**
+
+```js
+module.exports = (ctx) => ({
+ map: ctx.options.map,
+ parser: ctx.options.parser,
+ plugins: {
+ 'postcss-import': { root: ctx.file.dirname },
+ cssnano: ctx.env === 'production' ? {} : false,
+ },
+})
+```
+
+[npm]: https://img.shields.io/npm/v/postcss-cli.svg
+[npm-url]: https://npmjs.com/package/postcss-cli
+[node]: https://img.shields.io/node/v/postcss-cli.svg
+[node-url]: https://nodejs.org/
+[tests]: https://img.shields.io/github/workflow/status/postcss/postcss-cli/Node.js%20CI/master
+[tests-url]: https://github.com/postcss/postcss-cli/actions?query=branch%3Amaster
+[cover]: https://img.shields.io/coveralls/postcss/postcss-cli/master.svg
+[cover-url]: https://coveralls.io/github/postcss/postcss-cli
+[chat]: https://img.shields.io/gitter/room/postcss/postcss.svg
+[chat-url]: https://gitter.im/postcss/postcss
diff --git a/node_modules/postcss-cli/index.js b/node_modules/postcss-cli/index.js
new file mode 100755
index 0000000..615638c
--- /dev/null
+++ b/node_modules/postcss-cli/index.js
@@ -0,0 +1,348 @@
+#!/usr/bin/env node
+
+import fs from 'fs-extra'
+import path from 'path'
+
+import prettyHrtime from 'pretty-hrtime'
+import stdin from 'get-stdin'
+import read from 'read-cache'
+import pc from 'picocolors'
+import { globby } from 'globby'
+import slash from 'slash'
+import chokidar from 'chokidar'
+
+import postcss from 'postcss'
+import postcssrc from 'postcss-load-config'
+import postcssReporter from 'postcss-reporter/lib/formatter.js'
+
+import argv from './lib/args.js'
+import createDependencyGraph from './lib/DependencyGraph.js'
+import getMapfile from './lib/getMapfile.js'
+
+const reporter = postcssReporter()
+const depGraph = createDependencyGraph()
+
+let input = argv._
+const { dir, output } = argv
+
+if (argv.map) argv.map = { inline: false }
+
+let cliConfig
+
+async function buildCliConfig() {
+ cliConfig = {
+ options: {
+ map: argv.map !== undefined ? argv.map : { inline: true },
+ parser: argv.parser ? await import(argv.parser) : undefined,
+ syntax: argv.syntax ? await import(argv.syntax) : undefined,
+ stringifier: argv.stringifier
+ ? await import(argv.stringifier)
+ : undefined,
+ },
+ plugins: argv.use
+ ? await Promise.all(
+ argv.use.map(async (plugin) => {
+ try {
+ return (await import(plugin)).default()
+ } catch (e) {
+ const msg = e.message || `Cannot find module '${plugin}'`
+ let prefix = msg.includes(plugin) ? '' : ` (${plugin})`
+ if (e.name && e.name !== 'Error') prefix += `: ${e.name}`
+ return error(`Plugin Error${prefix}: ${msg}'`)
+ }
+ })
+ )
+ : [],
+ }
+}
+
+let configFile
+
+if (argv.env) process.env.NODE_ENV = argv.env
+if (argv.config) argv.config = path.resolve(argv.config)
+
+if (argv.watch) {
+ process.stdin.on('end', () => process.exit(0))
+ process.stdin.resume()
+}
+
+/* istanbul ignore next */
+if (parseInt(postcss().version) < 8) {
+ error('Please install PostCSS 8 or above')
+}
+
+buildCliConfig()
+ .then(() => {
+ if (argv.watch && !(argv.output || argv.replace || argv.dir)) {
+ error('Cannot write to stdout in watch mode')
+ // Need to explicitly exit here, since error() doesn't exit in watch mode
+ process.exit(1)
+ }
+
+ if (input && input.length) {
+ return globby(
+ input.map((i) => slash(String(i))),
+ { dot: argv.includeDotfiles }
+ )
+ }
+
+ if (argv.replace || argv.dir) {
+ error(
+ 'Input Error: Cannot use --dir or --replace when reading from stdin'
+ )
+ }
+
+ if (argv.watch) {
+ error('Input Error: Cannot run in watch mode when reading from stdin')
+ }
+
+ return ['stdin']
+ })
+ .then((i) => {
+ if (!i || !i.length) {
+ error('Input Error: You must pass a valid list of files to parse')
+ }
+
+ if (i.length > 1 && !argv.dir && !argv.replace) {
+ error(
+ 'Input Error: Must use --dir or --replace with multiple input files'
+ )
+ }
+
+ if (i[0] !== 'stdin') i = i.map((i) => path.resolve(i))
+
+ input = i
+
+ return files(input)
+ })
+ .then((results) => {
+ if (argv.watch) {
+ const printMessage = () =>
+ printVerbose(pc.dim('\nWaiting for file changes...'))
+ const watcher = chokidar.watch(input.concat(dependencies(results)), {
+ usePolling: argv.poll,
+ interval: argv.poll && typeof argv.poll === 'number' ? argv.poll : 100,
+ awaitWriteFinish: {
+ stabilityThreshold: 50,
+ pollInterval: 10,
+ },
+ })
+
+ if (configFile) watcher.add(configFile)
+
+ watcher.on('ready', printMessage).on('change', (file) => {
+ let recompile = []
+
+ if (input.includes(file)) recompile.push(file)
+
+ const dependants = depGraph
+ .dependantsOf(file)
+ .concat(getAncestorDirs(file).flatMap(depGraph.dependantsOf))
+
+ recompile = recompile.concat(
+ dependants.filter((file) => input.includes(file))
+ )
+
+ if (!recompile.length) recompile = input
+
+ return files([...new Set(recompile)])
+ .then((results) => watcher.add(dependencies(results)))
+ .then(printMessage)
+ .catch(error)
+ })
+ }
+ })
+ .catch((err) => {
+ error(err)
+
+ process.exit(1)
+ })
+
+function rc(ctx, path) {
+ if (argv.use) return Promise.resolve(cliConfig)
+
+ return postcssrc(ctx, path)
+ .then((rc) => {
+ if (rc.options.from || rc.options.to) {
+ error(
+ 'Config Error: Can not set from or to options in config file, use CLI arguments instead'
+ )
+ }
+ configFile = rc.file
+ return rc
+ })
+ .catch((err) => {
+ if (!err.message.includes('No PostCSS Config found')) throw err
+ })
+}
+
+function files(files) {
+ if (typeof files === 'string') files = [files]
+
+ return Promise.all(
+ files.map((file) => {
+ if (file === 'stdin') {
+ return stdin().then((content) => {
+ if (!content) return error('Input Error: Did not receive any STDIN')
+ return css(content, 'stdin')
+ })
+ }
+
+ return read(file).then((content) => css(content, file))
+ })
+ )
+}
+
+function css(css, file) {
+ const ctx = { options: cliConfig.options }
+
+ if (file !== 'stdin') {
+ ctx.file = {
+ dirname: path.dirname(file),
+ basename: path.basename(file),
+ extname: path.extname(file),
+ }
+
+ if (!argv.config) argv.config = path.dirname(file)
+ }
+
+ const relativePath =
+ file !== 'stdin' ? path.relative(path.resolve(), file) : file
+
+ if (!argv.config) argv.config = process.cwd()
+
+ const time = process.hrtime()
+
+ printVerbose(pc.cyan(`Processing ${pc.bold(relativePath)}...`))
+
+ return rc(ctx, argv.config)
+ .then((config) => {
+ config = config || cliConfig
+ const options = { ...config.options }
+
+ if (file === 'stdin' && output) file = output
+
+ // TODO: Unit test this
+ options.from = file === 'stdin' ? path.join(process.cwd(), 'stdin') : file
+
+ if (output || dir || argv.replace) {
+ const base = argv.base
+ ? file.replace(path.resolve(argv.base), '')
+ : path.basename(file)
+ options.to = output || (argv.replace ? file : path.join(dir, base))
+
+ if (argv.ext) {
+ options.to = options.to.replace(path.extname(options.to), argv.ext)
+ }
+
+ options.to = path.resolve(options.to)
+ }
+
+ if (!options.to && config.options.map && !config.options.map.inline) {
+ error(
+ 'Output Error: Cannot output external sourcemaps when writing to STDOUT'
+ )
+ }
+
+ return postcss(config.plugins)
+ .process(css, options)
+ .then((result) => {
+ const tasks = []
+
+ if (options.to) {
+ tasks.push(outputFile(options.to, result.css))
+
+ if (result.map) {
+ const mapfile = getMapfile(options)
+ tasks.push(outputFile(mapfile, result.map.toString()))
+ }
+ } else process.stdout.write(result.css, 'utf8')
+
+ return Promise.all(tasks).then(() => {
+ const prettyTime = prettyHrtime(process.hrtime(time))
+ printVerbose(
+ pc.green(
+ `Finished ${pc.bold(relativePath)} in ${pc.bold(prettyTime)}`
+ )
+ )
+
+ const messages = result.warnings()
+ if (messages.length) {
+ console.warn(reporter({ ...result, messages }))
+ }
+
+ return result
+ })
+ })
+ })
+ .catch((err) => {
+ throw err
+ })
+
+ async function outputFile(file, string) {
+ const fileExists = await fs.pathExists(file)
+ const currentValue = fileExists ? await fs.readFile(file, 'utf8') : null
+ if (currentValue === string) return
+ return fs.outputFile(file, string)
+ }
+}
+
+function dependencies(results) {
+ if (!Array.isArray(results)) results = [results]
+
+ const messages = []
+
+ results.forEach((result) => {
+ if (result.messages <= 0) return
+
+ result.messages
+ .filter((msg) =>
+ msg.type === 'dependency' || msg.type === 'dir-dependency' ? msg : ''
+ )
+ .map(depGraph.add)
+ .forEach((dependency) => {
+ if (dependency.type === 'dir-dependency') {
+ messages.push(
+ dependency.glob
+ ? path.join(dependency.dir, dependency.glob)
+ : dependency.dir
+ )
+ } else {
+ messages.push(dependency.file)
+ }
+ })
+ })
+
+ return messages
+}
+
+function printVerbose(message) {
+ if (argv.verbose) console.warn(message)
+}
+
+function error(err) {
+ // Seperate error from logging output
+ if (argv.verbose) console.error()
+
+ if (typeof err === 'string') {
+ console.error(pc.red(err))
+ } else if (err.name === 'CssSyntaxError') {
+ console.error(err.toString())
+ } else {
+ console.error(err)
+ }
+ // Watch mode shouldn't exit on error
+ if (argv.watch) return
+ process.exit(1)
+}
+
+// Input: '/imports/components/button.css'
+// Output: ['/imports/components', '/imports', '/']
+function getAncestorDirs(fileOrDir) {
+ const { root } = path.parse(fileOrDir)
+ if (fileOrDir === root) {
+ return []
+ }
+ const parentDir = path.dirname(fileOrDir)
+ return [parentDir, ...getAncestorDirs(parentDir)]
+}
diff --git a/node_modules/postcss-cli/lib/DependencyGraph.js b/node_modules/postcss-cli/lib/DependencyGraph.js
new file mode 100644
index 0000000..efb7ac3
--- /dev/null
+++ b/node_modules/postcss-cli/lib/DependencyGraph.js
@@ -0,0 +1,30 @@
+import path from 'path'
+import { DepGraph } from 'dependency-graph'
+
+export default function createDependencyGraph() {
+ const graph = new DepGraph()
+ return {
+ add(message) {
+ message.parent = path.resolve(message.parent)
+ graph.addNode(message.parent)
+
+ if (message.type === 'dir-dependency') {
+ message.dir = path.resolve(message.dir)
+ graph.addNode(message.dir)
+ graph.addDependency(message.parent, message.dir)
+ } else {
+ message.file = path.resolve(message.file)
+ graph.addNode(message.file)
+ graph.addDependency(message.parent, message.file)
+ }
+
+ return message
+ },
+ dependantsOf(node) {
+ node = path.resolve(node)
+
+ if (graph.hasNode(node)) return graph.dependantsOf(node)
+ return []
+ },
+ }
+}
diff --git a/node_modules/postcss-cli/lib/args.js b/node_modules/postcss-cli/lib/args.js
new file mode 100644
index 0000000..35f0e83
--- /dev/null
+++ b/node_modules/postcss-cli/lib/args.js
@@ -0,0 +1,115 @@
+import yargs from 'yargs'
+
+const { argv } = yargs(process.argv.slice(2))
+ .usage(
+ `Usage:
+ $0 [input.css] [OPTIONS] [-o|--output output.css] [--watch|-w]
+ $0 ... [OPTIONS] --dir [--watch|-w]
+ $0 [OPTIONS] --dir [--watch|-w]
+ $0 [OPTIONS] --dir [--watch|-w]
+ $0 ... [OPTIONS] --replace`
+ )
+ .group(
+ ['o', 'd', 'r', 'map', 'no-map', 'watch', 'verbose', 'env'],
+ 'Basic options:'
+ )
+ .option('o', {
+ alias: 'output',
+ desc: 'Output file',
+ type: 'string',
+ conflicts: ['dir', 'replace'],
+ })
+ .option('d', {
+ alias: 'dir',
+ desc: 'Output directory',
+ type: 'string',
+ conflicts: ['output', 'replace'],
+ })
+ .option('r', {
+ alias: 'replace',
+ desc: 'Replace (overwrite) the input file',
+ type: 'boolean',
+ conflicts: ['output', 'dir'],
+ })
+ .alias('m', 'map')
+ .describe('map', 'Create an external sourcemap')
+ .describe('no-map', 'Disable the default inline sourcemaps')
+ .option('w', {
+ alias: 'watch',
+ desc: 'Watch files for changes and recompile as needed',
+ type: 'boolean',
+ conflicts: 'replace',
+ })
+ .option('verbose', {
+ desc: 'Be verbose',
+ type: 'boolean',
+ })
+ .option('env', {
+ desc: 'A shortcut for setting NODE_ENV',
+ type: 'string',
+ })
+ .group(
+ ['u', 'parser', 'stringifier', 'syntax'],
+ 'Options for use without a config file:'
+ )
+ .option('u', {
+ alias: 'use',
+ desc: 'List of postcss plugins to use',
+ type: 'array',
+ })
+ .option('parser', {
+ desc: 'Custom postcss parser',
+ type: 'string',
+ })
+ .option('stringifier', {
+ desc: 'Custom postcss stringifier',
+ type: 'string',
+ })
+ .option('syntax', {
+ desc: 'Custom postcss syntax',
+ type: 'string',
+ })
+ .group(['ext', 'base'], 'Options for use with --dir:')
+ .option('ext', {
+ desc: 'Override the output file extension; for use with --dir',
+ type: 'string',
+ implies: 'dir',
+ })
+ .option('base', {
+ desc: 'Mirror the directory structure relative to this path in the output directory, for use with --dir',
+ type: 'string',
+ implies: 'dir',
+ })
+ .group(['include-dotfiles', 'poll', 'config'], 'Advanced options:')
+ .option('include-dotfiles', {
+ desc: 'Enable glob to match files/dirs that begin with "."',
+ type: 'boolean',
+ })
+ .option('poll', {
+ desc: 'Use polling for file watching. Can optionally pass polling interval; default 100 ms',
+ implies: 'watch',
+ })
+ .option('config', {
+ desc: 'Set a custom directory to look for a config file',
+ type: 'string',
+ })
+ .alias('h', 'help')
+ .example('$0 input.css -o output.css', 'Basic usage')
+ .example('$0 src/**/*.css --base src --dir build', 'Glob Pattern & output')
+ .example(
+ 'cat input.css | $0 -u autoprefixer > output.css',
+ 'Piping input & output'
+ )
+ .epilog(
+ `If no input files are passed, it reads from stdin. If neither -o, --dir, or --replace is passed, it writes to stdout.
+
+If there are multiple input files, the --dir or --replace option must be passed.
+
+Input files may contain globs (e.g. src/**/*.css). If you pass an input directory, it will process all files in the directory and any subdirectories, respecting the glob pattern.
+
+For more details, please see https://github.com/postcss/postcss-cli`
+ )
+
+if (argv.ext && argv.ext.indexOf('.') !== 0) argv.ext = `.${argv.ext}`
+
+export default argv
diff --git a/node_modules/postcss-cli/lib/getMapfile.js b/node_modules/postcss-cli/lib/getMapfile.js
new file mode 100644
index 0000000..e4d0c93
--- /dev/null
+++ b/node_modules/postcss-cli/lib/getMapfile.js
@@ -0,0 +1,7 @@
+import path from 'path'
+export default function getMapfile(options) {
+ if (options.map && typeof options.map.annotation === 'string') {
+ return `${path.dirname(options.to)}/${options.map.annotation}`
+ }
+ return `${options.to}.map`
+}
diff --git a/node_modules/postcss-cli/package.json b/node_modules/postcss-cli/package.json
new file mode 100644
index 0000000..141c899
--- /dev/null
+++ b/node_modules/postcss-cli/package.json
@@ -0,0 +1,78 @@
+{
+ "name": "postcss-cli",
+ "version": "9.1.0",
+ "description": "CLI for PostCSS",
+ "type": "module",
+ "engines": {
+ "node": ">=12"
+ },
+ "bin": {
+ "postcss": "./index.js"
+ },
+ "scripts": {
+ "ci": "eslint . && c8 ava -v && npm run prettier -- --list-different",
+ "clean": "node test/helpers/clean.js",
+ "prettier": "prettier --single-quote --no-semi \"**/*.{js,md}\"",
+ "format": "npm run prettier -- --write && eslint . --fix",
+ "pretest": "npm run clean && npm run format",
+ "test": "c8 ava -v"
+ },
+ "dependencies": {
+ "chokidar": "^3.3.0",
+ "dependency-graph": "^0.11.0",
+ "fs-extra": "^10.0.0",
+ "get-stdin": "^9.0.0",
+ "globby": "^12.0.0",
+ "picocolors": "^1.0.0",
+ "postcss-load-config": "^3.0.0",
+ "postcss-reporter": "^7.0.0",
+ "pretty-hrtime": "^1.0.3",
+ "read-cache": "^1.0.0",
+ "slash": "^4.0.0",
+ "yargs": "^17.0.0"
+ },
+ "devDependencies": {
+ "ava": "^3.1.0",
+ "c8": "^7.9.0",
+ "coveralls": "^3.0.0",
+ "eslint": "^8.2.0",
+ "eslint-config-problems": "6.0.0",
+ "postcss": "^8.0.4",
+ "postcss-import": "^14.0.0",
+ "prettier": "~2.5.0",
+ "sugarss": "^4.0.0",
+ "uuid": "^8.0.0"
+ },
+ "peerDependencies": {
+ "postcss": "^8.0.0"
+ },
+ "files": [
+ "index.js",
+ "lib",
+ "!**/*.test.js"
+ ],
+ "keywords": [
+ "cli",
+ "postcss",
+ "postcss-runner"
+ ],
+ "contributors": [
+ {
+ "name": "Michael Ciniawky",
+ "email": "michael.ciniawsky@gmail.com"
+ },
+ {
+ "name": "Ryan Zimmermann",
+ "email": "opensrc@ryanzim.com"
+ }
+ ],
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/postcss/postcss-cli.git"
+ },
+ "bugs": {
+ "url": "https://github.com/postcss/postcss-cli/issues"
+ },
+ "homepage": "https://github.com/postcss/postcss-cli#readme",
+ "license": "MIT"
+}
diff --git a/node_modules/postcss-load-config/LICENSE b/node_modules/postcss-load-config/LICENSE
new file mode 100644
index 0000000..458e8a3
--- /dev/null
+++ b/node_modules/postcss-load-config/LICENSE
@@ -0,0 +1,20 @@
+The MIT License (MIT)
+
+Copyright Michael Ciniawsky
+
+Permission is hereby granted, free of charge, to any person obtaining a copy of
+this software and associated documentation files (the "Software"), to deal in
+the Software without restriction, including without limitation the rights to
+use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
+the Software, and to permit persons to whom the Software is furnished to do so,
+subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
+FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
+COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
+IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
+CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
diff --git a/node_modules/postcss-load-config/README.md b/node_modules/postcss-load-config/README.md
new file mode 100644
index 0000000..741ddd3
--- /dev/null
+++ b/node_modules/postcss-load-config/README.md
@@ -0,0 +1,500 @@
+[![npm][npm]][npm-url]
+[![node][node]][node-url]
+[![deps][deps]][deps-url]
+[![test][test]][test-url]
+[![coverage][cover]][cover-url]
+[![code style][style]][style-url]
+[![chat][chat]][chat-url]
+
+
+
+
+
+
+
+
Load Config
+
+
+Install
+
+```bash
+npm i -D postcss-load-config
+```
+
+Usage
+
+```bash
+npm i -S|-D postcss-plugin
+```
+
+Install all required PostCSS plugins and save them to your **package.json** `dependencies`/`devDependencies`
+
+Then create a PostCSS config file by choosing one of the following formats
+
+### `package.json`
+
+Create a **`postcss`** section in your project's **`package.json`**
+
+```
+Project (Root)
+ |– client
+ |– public
+ |
+ |- package.json
+```
+
+```json
+{
+ "postcss": {
+ "parser": "sugarss",
+ "map": false,
+ "plugins": {
+ "postcss-plugin": {}
+ }
+ }
+}
+```
+
+### `.postcssrc`
+
+Create a **`.postcssrc`** file in JSON or YAML format
+
+> ℹ️ It's recommended to use an extension (e.g **`.postcssrc.json`** or **`.postcssrc.yml`**) instead of `.postcssrc`
+
+```
+Project (Root)
+ |– client
+ |– public
+ |
+ |- (.postcssrc|.postcssrc.json|.postcssrc.yml)
+ |- package.json
+```
+
+**`.postcssrc.json`**
+```json
+{
+ "parser": "sugarss",
+ "map": false,
+ "plugins": {
+ "postcss-plugin": {}
+ }
+}
+```
+
+**`.postcssrc.yml`**
+```yaml
+parser: sugarss
+map: false
+plugins:
+ postcss-plugin: {}
+```
+
+### `.postcssrc.js` or `postcss.config.js`
+
+You may need some logic within your config. In this case create JS file named **`.postcssrc.js`** or **`postcss.config.js`**
+
+```
+Project (Root)
+ |– client
+ |– public
+ |
+ |- (.postcssrc.js|postcss.config.js)
+ |- package.json
+```
+
+You can export the config as an `{Object}`
+
+**.postcssrc.js**
+```js
+module.exports = {
+ parser: 'sugarss',
+ map: false,
+ plugins: {
+ 'postcss-plugin': {}
+ }
+}
+```
+
+Or export a `{Function}` that returns the config (more about the `ctx` param below)
+
+**.postcssrc.js**
+```js
+module.exports = (ctx) => ({
+ parser: ctx.parser ? 'sugarss' : false,
+ map: ctx.env === 'development' ? ctx.map : false,
+ plugins: {
+ 'postcss-plugin': ctx.options.plugin
+ }
+})
+```
+
+Plugins can be loaded either using an `{Object}` or an `{Array}`
+
+#### `{Object}`
+
+**.postcssrc.js**
+```js
+module.exports = ({ env }) => ({
+ ...options,
+ plugins: {
+ 'postcss-plugin': env === 'production' ? {} : false
+ }
+})
+```
+
+> ℹ️ When using an `{Object}`, the key can be a Node.js module name, a path to a JavaScript file that is relative to the directory of the PostCSS config file, or an absolute path to a JavaScript file.
+
+#### `{Array}`
+
+**.postcssrc.js**
+```js
+module.exports = ({ env }) => ({
+ ...options,
+ plugins: [
+ env === 'production' ? require('postcss-plugin')() : false
+ ]
+})
+```
+> :warning: When using an `{Array}`, make sure to `require()` each plugin
+
+Options
+
+|Name|Type|Default|Description|
+|:--:|:--:|:-----:|:----------|
+|[**`to`**](#to)|`{String}`|`undefined`|Destination File Path|
+|[**`map`**](#map)|`{String\|Object}`|`false`|Enable/Disable Source Maps|
+|[**`from`**](#from)|`{String}`|`undefined`|Source File Path|
+|[**`parser`**](#parser)|`{String\|Function}`|`false`|Custom PostCSS Parser|
+|[**`syntax`**](#syntax)|`{String\|Function}`|`false`|Custom PostCSS Syntax|
+|[**`stringifier`**](#stringifier)|`{String\|Function}`|`false`|Custom PostCSS Stringifier|
+
+### `parser`
+
+**.postcssrc.js**
+```js
+module.exports = {
+ parser: 'sugarss'
+}
+```
+
+### `syntax`
+
+**.postcssrc.js**
+```js
+module.exports = {
+ syntax: 'postcss-scss'
+}
+```
+
+### `stringifier`
+
+**.postcssrc.js**
+```js
+module.exports = {
+ stringifier: 'midas'
+}
+```
+
+### [**`map`**](https://github.com/postcss/postcss/blob/master/docs/source-maps.md)
+
+**.postcssrc.js**
+```js
+module.exports = {
+ map: 'inline'
+}
+```
+
+> :warning: In most cases `options.from` && `options.to` are set by the third-party which integrates this package (CLI, gulp, webpack). It's unlikely one needs to set/use `options.from` && `options.to` within a config file. Unless you're a third-party plugin author using this module and its Node API directly **dont't set `options.from` && `options.to` yourself**
+
+### `to`
+
+```js
+module.exports = {
+ to: 'path/to/dest.css'
+}
+```
+
+### `from`
+
+```js
+module.exports = {
+ from: 'path/to/src.css'
+}
+```
+
+Plugins
+
+### `{} || null`
+
+The plugin will be loaded with defaults
+
+```js
+'postcss-plugin': {} || null
+```
+
+**.postcssrc.js**
+```js
+module.exports = {
+ plugins: {
+ 'postcss-plugin': {} || null
+ }
+}
+```
+
+> :warning: `{}` must be an **empty** `{Object}` literal
+
+### `{Object}`
+
+The plugin will be loaded with given options
+
+```js
+'postcss-plugin': { option: '', option: '' }
+```
+
+**.postcssrc.js**
+```js
+module.exports = {
+ plugins: {
+ 'postcss-plugin': { option: '', option: '' }
+ }
+}
+```
+
+### `false`
+
+The plugin will not be loaded
+
+```js
+'postcss-plugin': false
+```
+
+**.postcssrc.js**
+```js
+module.exports = {
+ plugins: {
+ 'postcss-plugin': false
+ }
+}
+```
+
+### `Ordering`
+
+Plugin **execution order** is determined by declaration in the plugins section (**top-down**)
+
+```js
+{
+ plugins: {
+ 'postcss-plugin': {}, // [0]
+ 'postcss-plugin': {}, // [1]
+ 'postcss-plugin': {} // [2]
+ }
+}
+```
+
+Context
+
+When using a `{Function}` (`postcss.config.js` or `.postcssrc.js`), it's possible to pass context to `postcss-load-config`, which will be evaluated while loading your config. By default `ctx.env (process.env.NODE_ENV)` and `ctx.cwd (process.cwd())` are available on the `ctx` `{Object}`
+
+> ℹ️ Most third-party integrations add additional properties to the `ctx` (e.g `postcss-loader`). Check the specific module's README for more information about what is available on the respective `ctx`
+
+Examples
+
+**postcss.config.js**
+
+```js
+module.exports = (ctx) => ({
+ parser: ctx.parser ? 'sugarss' : false,
+ map: ctx.env === 'development' ? ctx.map : false,
+ plugins: {
+ 'postcss-import': {},
+ 'postcss-nested': {},
+ cssnano: ctx.env === 'production' ? {} : false
+ }
+})
+```
+
+
+
+
+
+```json
+"scripts": {
+ "build": "NODE_ENV=production node postcss",
+ "start": "NODE_ENV=development node postcss"
+}
+```
+
+### `Async`
+
+```js
+const { readFileSync } = require('fs')
+
+const postcss = require('postcss')
+const postcssrc = require('postcss-load-config')
+
+const css = readFileSync('index.sss', 'utf8')
+
+const ctx = { parser: true, map: 'inline' }
+
+postcssrc(ctx).then(({ plugins, options }) => {
+ postcss(plugins)
+ .process(css, options)
+ .then((result) => console.log(result.css))
+})
+```
+
+### `Sync`
+
+```js
+const { readFileSync } = require('fs')
+
+const postcss = require('postcss')
+const postcssrc = require('postcss-load-config')
+
+const css = readFileSync('index.sss', 'utf8')
+
+const ctx = { parser: true, map: 'inline' }
+
+const { plugins, options } = postcssrc.sync(ctx)
+```
+
+
+
+
+
+```json
+"scripts": {
+ "build": "NODE_ENV=production gulp",
+ "start": "NODE_ENV=development gulp"
+}
+```
+
+```js
+const { task, src, dest, series, watch } = require('gulp')
+
+const postcss = require('gulp-postcssrc')
+
+const css = () => {
+ src('src/*.css')
+ .pipe(postcss())
+ .pipe(dest('dest'))
+})
+
+task('watch', () => {
+ watch(['src/*.css', 'postcss.config.js'], css)
+})
+
+task('default', series(css, 'watch'))
+```
+
+
+
+
+
+```json
+"scripts": {
+ "build": "NODE_ENV=production webpack",
+ "start": "NODE_ENV=development webpack-dev-server"
+}
+```
+
+**webpack.config.js**
+```js
+module.exports = (env) => ({
+ module: {
+ rules: [
+ {
+ test: /\.css$/,
+ use: [
+ 'style-loader',
+ 'css-loader',
+ 'postcss-loader'
+ ]
+ }
+ ]
+ }
+})
+```
+
+Maintainers
+
+
+
+Contributors
+
+
+
+
+[npm]: https://img.shields.io/npm/v/postcss-load-config.svg
+[npm-url]: https://npmjs.com/package/postcss-load-config
+
+[node]: https://img.shields.io/node/v/postcss-load-plugins.svg
+[node-url]: https://nodejs.org/
+
+[deps]: https://david-dm.org/michael-ciniawsky/postcss-load-config.svg
+[deps-url]: https://david-dm.org/michael-ciniawsky/postcss-load-config
+
+[test]: http://img.shields.io/travis/michael-ciniawsky/postcss-load-config.svg
+[test-url]: https://travis-ci.org/michael-ciniawsky/postcss-load-config
+
+[cover]: https://coveralls.io/repos/github/michael-ciniawsky/postcss-load-config/badge.svg
+[cover-url]: https://coveralls.io/github/michael-ciniawsky/postcss-load-config
+
+[style]: https://img.shields.io/badge/code%20style-standard-yellow.svg
+[style-url]: http://standardjs.com/
+
+[chat]: https://img.shields.io/gitter/room/postcss/postcss.svg
+[chat-url]: https://gitter.im/postcss/postcss
+
+## Security Contact
+
+To report a security vulnerability, please use the [Tidelift security contact].
+Tidelift will coordinate the fix and disclosure.
+
+[Tidelift security contact]: https://tidelift.com/security
diff --git a/node_modules/postcss-load-config/package.json b/node_modules/postcss-load-config/package.json
new file mode 100644
index 0000000..01f611b
--- /dev/null
+++ b/node_modules/postcss-load-config/package.json
@@ -0,0 +1,48 @@
+{
+ "name": "postcss-load-config",
+ "version": "3.1.4",
+ "description": "Autoload Config for PostCSS",
+ "main": "src/index.js",
+ "types": "src/index.d.ts",
+ "files": [
+ "src"
+ ],
+ "engines": {
+ "node": ">= 10"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/postcss/"
+ },
+ "dependencies": {
+ "lilconfig": "^2.0.5",
+ "yaml": "^1.10.2"
+ },
+ "peerDependencies": {
+ "postcss": ">=8.0.9",
+ "ts-node": ">=9.0.0"
+ },
+ "peerDependenciesMeta": {
+ "ts-node": {
+ "optional": true
+ },
+ "postcss": {
+ "optional": true
+ }
+ },
+ "keywords": [
+ "postcss",
+ "postcssrc",
+ "postcss.config.js"
+ ],
+ "author": "Michael Ciniawky ",
+ "contributors": [
+ "Ryan Dunckel",
+ "Mateusz Derks",
+ "Dalton Santos",
+ "Patrick Gilday",
+ "François Wouts"
+ ],
+ "repository": "postcss/postcss-load-config",
+ "license": "MIT"
+}
diff --git a/node_modules/postcss-load-config/src/index.d.ts b/node_modules/postcss-load-config/src/index.d.ts
new file mode 100644
index 0000000..c2c4cfe
--- /dev/null
+++ b/node_modules/postcss-load-config/src/index.d.ts
@@ -0,0 +1,71 @@
+// based on @types/postcss-load-config@2.0.1
+// Type definitions for postcss-load-config 2.1
+import Processor from 'postcss/lib/processor';
+import { Plugin, ProcessOptions, Transformer } from 'postcss';
+import { Options as ConfigOptions } from "lilconfig";
+
+declare function postcssrc(
+ ctx?: postcssrc.ConfigContext,
+ path?: string,
+ options?: ConfigOptions
+): Promise;
+
+declare namespace postcssrc {
+ function sync(
+ ctx?: ConfigContext,
+ path?: string,
+ options?: ConfigOptions
+ ): Result;
+
+ // In the ConfigContext, these three options can be instances of the
+ // appropriate class, or strings. If they are strings, postcss-load-config will
+ // require() them and pass the instances along.
+ export interface ProcessOptionsPreload {
+ parser?: string | ProcessOptions['parser'];
+ stringifier?: string | ProcessOptions['stringifier'];
+ syntax?: string | ProcessOptions['syntax'];
+ }
+
+ // The remaining ProcessOptions, sans the three above.
+ export type RemainingProcessOptions = Pick<
+ ProcessOptions,
+ Exclude
+ >;
+
+ // Additional context options that postcss-load-config understands.
+ export interface Context {
+ cwd?: string;
+ env?: string;
+ }
+
+ // The full shape of the ConfigContext.
+ export type ConfigContext = Context &
+ ProcessOptionsPreload &
+ RemainingProcessOptions;
+
+ // Result of postcssrc is a Promise containing the filename plus the options
+ // and plugins that are ready to pass on to postcss.
+ export type ResultPlugin = Plugin | Transformer | Processor;
+
+ export interface Result {
+ file: string;
+ options: ProcessOptions;
+ plugins: ResultPlugin[];
+ }
+
+ export type ConfigPlugin = Transformer | Plugin | Processor;
+
+ export interface Config {
+ parser?: string | ProcessOptions['parser'] | false;
+ stringifier?: string | ProcessOptions['stringifier'] | false;
+ syntax?: string | ProcessOptions['syntax'] | false;
+ map?: string | false;
+ from?: string;
+ to?: string;
+ plugins?: Array | Record;
+ }
+
+ export type ConfigFn = (ctx: ConfigContext) => Config | Promise;
+}
+
+export = postcssrc;
diff --git a/node_modules/postcss-load-config/src/index.js b/node_modules/postcss-load-config/src/index.js
new file mode 100644
index 0000000..db5c40e
--- /dev/null
+++ b/node_modules/postcss-load-config/src/index.js
@@ -0,0 +1,188 @@
+'use strict'
+
+const resolve = require('path').resolve
+
+const config = require('lilconfig')
+const yaml = require('yaml')
+
+const loadOptions = require('./options.js')
+const loadPlugins = require('./plugins.js')
+
+/* istanbul ignore next */
+const interopRequireDefault = (obj) => obj && obj.__esModule ? obj : { default: obj }
+
+/**
+ * Process the result from cosmiconfig
+ *
+ * @param {Object} ctx Config Context
+ * @param {Object} result Cosmiconfig result
+ *
+ * @return {Object} PostCSS Config
+ */
+const processResult = (ctx, result) => {
+ const file = result.filepath || ''
+ let config = interopRequireDefault(result.config).default || {}
+
+ if (typeof config === 'function') {
+ config = config(ctx)
+ } else {
+ config = Object.assign({}, config, ctx)
+ }
+
+ if (!config.plugins) {
+ config.plugins = []
+ }
+
+ return {
+ plugins: loadPlugins(config, file),
+ options: loadOptions(config, file),
+ file: file
+ }
+}
+
+/**
+ * Builds the Config Context
+ *
+ * @param {Object} ctx Config Context
+ *
+ * @return {Object} Config Context
+ */
+const createContext = (ctx) => {
+ /**
+ * @type {Object}
+ *
+ * @prop {String} cwd=process.cwd() Config search start location
+ * @prop {String} env=process.env.NODE_ENV Config Enviroment, will be set to `development` by `postcss-load-config` if `process.env.NODE_ENV` is `undefined`
+ */
+ ctx = Object.assign({
+ cwd: process.cwd(),
+ env: process.env.NODE_ENV
+ }, ctx)
+
+ if (!ctx.env) {
+ process.env.NODE_ENV = 'development'
+ }
+
+ return ctx
+}
+
+const addTypeScriptLoader = (options = {}, loader) => {
+ const moduleName = 'postcss'
+
+ return {
+ ...options,
+ searchPlaces: [
+ ...(options.searchPlaces || []),
+ 'package.json',
+ `.${moduleName}rc`,
+ `.${moduleName}rc.json`,
+ `.${moduleName}rc.yaml`,
+ `.${moduleName}rc.yml`,
+ `.${moduleName}rc.ts`,
+ `.${moduleName}rc.js`,
+ `.${moduleName}rc.cjs`,
+ `${moduleName}.config.ts`,
+ `${moduleName}.config.js`,
+ `${moduleName}.config.cjs`
+ ],
+ loaders: {
+ ...options.loaders,
+ '.yaml': (filepath, content) => yaml.parse(content),
+ '.yml': (filepath, content) => yaml.parse(content),
+ '.ts': loader
+ }
+ }
+}
+
+const withTypeScriptLoader = (rcFunc) => {
+ return (ctx, path, options) => {
+ return rcFunc(ctx, path, addTypeScriptLoader(options, (configFile) => {
+ let registerer = { enabled () {} }
+
+ try {
+ // Register TypeScript compiler instance
+ registerer = require('ts-node').register()
+
+ return require(configFile)
+ } catch (err) {
+ if (err.code === 'MODULE_NOT_FOUND') {
+ throw new Error(
+ `'ts-node' is required for the TypeScript configuration files. Make sure it is installed\nError: ${err.message}`
+ )
+ }
+
+ throw err
+ } finally {
+ registerer.enabled(false)
+ }
+ }))
+ }
+}
+
+/**
+ * Load Config
+ *
+ * @method rc
+ *
+ * @param {Object} ctx Config Context
+ * @param {String} path Config Path
+ * @param {Object} options Config Options
+ *
+ * @return {Promise} config PostCSS Config
+ */
+const rc = withTypeScriptLoader((ctx, path, options) => {
+ /**
+ * @type {Object} The full Config Context
+ */
+ ctx = createContext(ctx)
+
+ /**
+ * @type {String} `process.cwd()`
+ */
+ path = path ? resolve(path) : process.cwd()
+
+ return config.lilconfig('postcss', options)
+ .search(path)
+ .then((result) => {
+ if (!result) {
+ throw new Error(`No PostCSS Config found in: ${path}`)
+ }
+
+ return processResult(ctx, result)
+ })
+})
+
+rc.sync = withTypeScriptLoader((ctx, path, options) => {
+ /**
+ * @type {Object} The full Config Context
+ */
+ ctx = createContext(ctx)
+
+ /**
+ * @type {String} `process.cwd()`
+ */
+ path = path ? resolve(path) : process.cwd()
+
+ const result = config.lilconfigSync('postcss', options).search(path)
+
+ if (!result) {
+ throw new Error(`No PostCSS Config found in: ${path}`)
+ }
+
+ return processResult(ctx, result)
+})
+
+/**
+ * Autoload Config for PostCSS
+ *
+ * @author Michael Ciniawsky @michael-ciniawsky
+ * @license MIT
+ *
+ * @module postcss-load-config
+ * @version 2.1.0
+ *
+ * @requires comsiconfig
+ * @requires ./options
+ * @requires ./plugins
+ */
+module.exports = rc
diff --git a/node_modules/postcss-load-config/src/options.js b/node_modules/postcss-load-config/src/options.js
new file mode 100644
index 0000000..d3ef2d6
--- /dev/null
+++ b/node_modules/postcss-load-config/src/options.js
@@ -0,0 +1,47 @@
+'use strict'
+
+const req = require('./req.js')
+
+/**
+ * Load Options
+ *
+ * @private
+ * @method options
+ *
+ * @param {Object} config PostCSS Config
+ *
+ * @return {Object} options PostCSS Options
+ */
+const options = (config, file) => {
+ if (config.parser && typeof config.parser === 'string') {
+ try {
+ config.parser = req(config.parser, file)
+ } catch (err) {
+ throw new Error(`Loading PostCSS Parser failed: ${err.message}\n\n(@${file})`)
+ }
+ }
+
+ if (config.syntax && typeof config.syntax === 'string') {
+ try {
+ config.syntax = req(config.syntax, file)
+ } catch (err) {
+ throw new Error(`Loading PostCSS Syntax failed: ${err.message}\n\n(@${file})`)
+ }
+ }
+
+ if (config.stringifier && typeof config.stringifier === 'string') {
+ try {
+ config.stringifier = req(config.stringifier, file)
+ } catch (err) {
+ throw new Error(`Loading PostCSS Stringifier failed: ${err.message}\n\n(@${file})`)
+ }
+ }
+
+ if (config.plugins) {
+ delete config.plugins
+ }
+
+ return config
+}
+
+module.exports = options
diff --git a/node_modules/postcss-load-config/src/plugins.js b/node_modules/postcss-load-config/src/plugins.js
new file mode 100644
index 0000000..6cb994b
--- /dev/null
+++ b/node_modules/postcss-load-config/src/plugins.js
@@ -0,0 +1,85 @@
+'use strict'
+
+const req = require('./req.js')
+
+/**
+ * Plugin Loader
+ *
+ * @private
+ * @method load
+ *
+ * @param {String} plugin PostCSS Plugin Name
+ * @param {Object} options PostCSS Plugin Options
+ *
+ * @return {Function} PostCSS Plugin
+ */
+const load = (plugin, options, file) => {
+ try {
+ if (
+ options === null ||
+ options === undefined ||
+ Object.keys(options).length === 0
+ ) {
+ return req(plugin, file)
+ } else {
+ return req(plugin, file)(options)
+ }
+ } catch (err) {
+ throw new Error(`Loading PostCSS Plugin failed: ${err.message}\n\n(@${file})`)
+ }
+}
+
+/**
+ * Load Plugins
+ *
+ * @private
+ * @method plugins
+ *
+ * @param {Object} config PostCSS Config Plugins
+ *
+ * @return {Array} plugins PostCSS Plugins
+ */
+const plugins = (config, file) => {
+ let plugins = []
+
+ if (Array.isArray(config.plugins)) {
+ plugins = config.plugins.filter(Boolean)
+ } else {
+ plugins = Object.keys(config.plugins)
+ .filter((plugin) => {
+ return config.plugins[plugin] !== false ? plugin : ''
+ })
+ .map((plugin) => {
+ return load(plugin, config.plugins[plugin], file)
+ })
+ }
+
+ if (plugins.length && plugins.length > 0) {
+ plugins.forEach((plugin, i) => {
+ if (plugin.default) {
+ plugin = plugin.default
+ }
+
+ if (plugin.postcss === true) {
+ plugin = plugin()
+ } else if (plugin.postcss) {
+ plugin = plugin.postcss
+ }
+
+ if (
+ // eslint-disable-next-line
+ !(
+ (typeof plugin === 'object' && Array.isArray(plugin.plugins)) ||
+ (typeof plugin === 'object' && plugin.postcssPlugin) ||
+ (typeof plugin === 'function')
+ )
+ ) {
+ throw new TypeError(`Invalid PostCSS Plugin found at: plugins[${i}]\n\n(@${file})`)
+ }
+ })
+ }
+
+ return plugins
+}
+
+module.exports = plugins
diff --git a/node_modules/postcss-load-config/src/req.js b/node_modules/postcss-load-config/src/req.js
new file mode 100644
index 0000000..ad6a332
--- /dev/null
+++ b/node_modules/postcss-load-config/src/req.js
@@ -0,0 +1,10 @@
+// eslint-disable-next-line node/no-deprecated-api
+const { createRequire, createRequireFromPath } = require('module')
+
+function req (name, rootFile) {
+ const create = createRequire || createRequireFromPath
+ const require = create(rootFile)
+ return require(name)
+}
+
+module.exports = req
diff --git a/node_modules/postcss-reporter/LICENSE b/node_modules/postcss-reporter/LICENSE
new file mode 100644
index 0000000..6d347c0
--- /dev/null
+++ b/node_modules/postcss-reporter/LICENSE
@@ -0,0 +1,22 @@
+The MIT License (MIT)
+
+Copyright (c) 2015 David Clark
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
+
diff --git a/node_modules/postcss-reporter/README.md b/node_modules/postcss-reporter/README.md
new file mode 100644
index 0000000..ca6c43b
--- /dev/null
+++ b/node_modules/postcss-reporter/README.md
@@ -0,0 +1,12 @@
+# postcss-reporter
+
+A PostCSS plugin to `console.log()` the messages (warnings, etc.) registered by other PostCSS plugins.
+
+---
+
+**SEEKING A NEW MAINTAINER!** Interested in contributing to the ecosystem of PostCSS and Stylelint? Please open an issue if you'd like to take over maintenance of this package.
+
+---
+
+## Docs
+Read **[full docs](https://github.com/postcss/postcss-reporter#readme)** on GitHub.
diff --git a/node_modules/postcss-reporter/index.js b/node_modules/postcss-reporter/index.js
new file mode 100644
index 0000000..01116aa
--- /dev/null
+++ b/node_modules/postcss-reporter/index.js
@@ -0,0 +1,4 @@
+var reporter = require('./lib/reporter');
+
+module.exports = reporter;
+module.exports.postcss = true;
diff --git a/node_modules/postcss-reporter/lib/formatter.js b/node_modules/postcss-reporter/lib/formatter.js
new file mode 100644
index 0000000..7358cc6
--- /dev/null
+++ b/node_modules/postcss-reporter/lib/formatter.js
@@ -0,0 +1,95 @@
+var pico = require('picocolors');
+var path = require('path');
+var firstBy = require('thenby');
+var util = require('./util');
+
+var supportsLargeCharset =
+ process.platform !== 'win32' ||
+ process.env.CI ||
+ process.env.TERM === 'xterm-256color';
+var warningSymbol = supportsLargeCharset ? '⚠' : '!!';
+
+function createSortFunction(positionless, sortByPosition) {
+ var positionValue = 0
+
+ if (positionless === 'any') { positionValue = 1; }
+ if (positionless === 'first') { positionValue = 2; }
+ if (positionless === 'last') { positionValue = 0; }
+
+ var sortFunction = firstBy((m) => {
+ if (!m.line) return 1;
+ return positionValue;
+ })
+
+ if (sortByPosition) {
+ sortFunction = sortFunction.thenBy('line').thenBy('column');
+ }
+
+ return sortFunction;
+}
+
+module.exports = function (opts) {
+ var options = opts || {};
+ var sortByPosition =
+ typeof options.sortByPosition !== 'undefined'
+ ? options.sortByPosition
+ : true;
+ var positionless = options.positionless || 'first';
+
+ var sortFunction = createSortFunction(positionless, sortByPosition);
+
+ return function (input) {
+ var messages = input.messages.filter(function (message) {
+ return typeof message.text === 'string';
+ });
+ var source = input.source;
+
+ if (!messages.length) return '';
+
+ var orderedMessages = messages.sort(sortFunction);
+
+ var output = '\n';
+
+ if (source) {
+ output += pico.bold(pico.underline(logFrom(source))) + '\n';
+ }
+
+ orderedMessages.forEach(function (w) {
+ output += messageToString(w) + '\n';
+ });
+
+ return output;
+
+ function messageToString(message) {
+ var location = util.getLocation(message);
+ var str = '';
+
+ if (location.line) {
+ str += pico.bold(location.line);
+ }
+
+ if (location.column) {
+ str += pico.bold(':' + location.column);
+ }
+
+ if (location.line || location.column) {
+ str += '\t';
+ }
+
+ if (!options.noIcon && message.type === 'warning') {
+ str += pico.yellow(warningSymbol + ' ');
+ }
+
+ str += message.text;
+ if (!options.noPlugin) {
+ str += pico.yellow(' [' + message.plugin + ']');
+ }
+ return str;
+ }
+
+ function logFrom(fromValue) {
+ if (fromValue.charAt(0) === '<') return fromValue;
+ return path.relative(process.cwd(), fromValue).split(path.sep).join('/');
+ }
+ };
+};
diff --git a/node_modules/postcss-reporter/lib/reporter.js b/node_modules/postcss-reporter/lib/reporter.js
new file mode 100644
index 0000000..71872a9
--- /dev/null
+++ b/node_modules/postcss-reporter/lib/reporter.js
@@ -0,0 +1,101 @@
+var defaultFormatter = require('./formatter');
+var pico = require('picocolors');
+var util = require('./util');
+
+module.exports = function (opts = {}) {
+ var formatter =
+ opts.formatter ||
+ defaultFormatter({
+ noIcon: opts.noIcon,
+ noPlugin: opts.noPlugin,
+ });
+
+ var pluginFilter;
+ if (!opts.plugins) {
+ // Every plugin
+ pluginFilter = function () {
+ return true;
+ };
+ } else if (
+ opts.plugins.every(function (plugin) {
+ return plugin[0] === '!';
+ })
+ ) {
+ // Deny list
+ pluginFilter = function (message) {
+ return opts.plugins.indexOf('!' + message.plugin) === -1;
+ };
+ } else {
+ // Allow list
+ pluginFilter = function (message) {
+ return opts.plugins.indexOf(message.plugin) !== -1;
+ };
+ }
+
+ var messageFilter = opts.filter || ((message) => message.type === 'warning');
+
+ return {
+ postcssPlugin: 'postcss-reporter',
+ OnceExit(css, { result }) {
+ var messagesToLog = result.messages
+ .filter(pluginFilter)
+ .filter(messageFilter);
+
+ var resultSource = !result.root.source
+ ? ''
+ : result.root.source.input.file || result.root.source.input.id;
+
+ var sourceGroupedMessages = messagesToLog.reduce((grouped, message) => {
+ const key = util.getLocation(message).file || resultSource;
+
+ if (!grouped.hasOwnProperty(key)) {
+ grouped[key] = [];
+ }
+
+ grouped[key].push(message);
+
+ return grouped;
+ }, {});
+
+ var report = '';
+ for (const source in sourceGroupedMessages) {
+ if (sourceGroupedMessages.hasOwnProperty(source)) {
+ report += formatter({
+ messages: sourceGroupedMessages[source],
+ source: source,
+ });
+ }
+ }
+
+ if (opts.clearReportedMessages) {
+ result.messages = result.messages.filter(message => !messagesToLog.includes(message));
+ }
+
+ if (opts.clearAllMessages) {
+ var messagesToClear = result.messages.filter(pluginFilter);
+ result.messages = result.messages.filter(message => !messagesToClear.includes(message));
+ }
+
+ if (!report) return;
+
+ console.log(report);
+
+ if (opts.throwError && shouldThrowError()) {
+ throw new Error(
+ pico.red(
+ pico.bold('\n** postcss-reporter: warnings or errors were found **')
+ )
+ );
+ }
+
+ function shouldThrowError() {
+ return (
+ messagesToLog.length &&
+ messagesToLog.some((message) => {
+ return message.type === 'warning' || message.type === 'error';
+ })
+ );
+ }
+ },
+ };
+};
diff --git a/node_modules/postcss-reporter/lib/util.js b/node_modules/postcss-reporter/lib/util.js
new file mode 100644
index 0000000..094b3ac
--- /dev/null
+++ b/node_modules/postcss-reporter/lib/util.js
@@ -0,0 +1,19 @@
+exports.getLocation = function (message) {
+ var messageNode = message.node;
+
+ var location = {
+ line: message.line,
+ column: message.column,
+ };
+
+ var messageInput = messageNode && messageNode.source && messageNode.source.input;
+
+ if (!messageInput) return location;
+
+ var originLocation =
+ messageInput.origin && messageInput.origin(message.line, message.column);
+ if (originLocation) return originLocation;
+
+ location.file = messageInput.file || messageInput.id;
+ return location;
+};
diff --git a/node_modules/postcss-reporter/package.json b/node_modules/postcss-reporter/package.json
new file mode 100644
index 0000000..15a9867
--- /dev/null
+++ b/node_modules/postcss-reporter/package.json
@@ -0,0 +1,31 @@
+{
+ "name": "postcss-reporter",
+ "version": "7.0.5",
+ "description": "Log PostCSS messages in the console",
+ "main": "index.js",
+ "files": [
+ "index.js",
+ "lib"
+ ],
+ "engines": {
+ "node": ">=10"
+ },
+ "repository": "postcss/postcss-reporter",
+ "author": {
+ "name": "David Clark",
+ "email": "david.dave.clark@gmail.com",
+ "url": "https://davidtheclark.com"
+ },
+ "license": "MIT",
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/postcss/"
+ },
+ "peerDependencies": {
+ "postcss": "^8.1.0"
+ },
+ "dependencies": {
+ "picocolors": "^1.0.0",
+ "thenby": "^1.3.4"
+ }
+}
diff --git a/node_modules/postcss-value-parser/LICENSE b/node_modules/postcss-value-parser/LICENSE
new file mode 100644
index 0000000..6dcaefc
--- /dev/null
+++ b/node_modules/postcss-value-parser/LICENSE
@@ -0,0 +1,22 @@
+Copyright (c) Bogdan Chadkin
+
+Permission is hereby granted, free of charge, to any person
+obtaining a copy of this software and associated documentation
+files (the "Software"), to deal in the Software without
+restriction, including without limitation the rights to use,
+copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the
+Software is furnished to do so, subject to the following
+conditions:
+
+The above copyright notice and this permission notice shall be
+included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
+OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
+HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
+WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
+OTHER DEALINGS IN THE SOFTWARE.
diff --git a/node_modules/postcss-value-parser/README.md b/node_modules/postcss-value-parser/README.md
new file mode 100644
index 0000000..3bd6a0d
--- /dev/null
+++ b/node_modules/postcss-value-parser/README.md
@@ -0,0 +1,263 @@
+# postcss-value-parser
+
+[![Travis CI](https://travis-ci.org/TrySound/postcss-value-parser.svg)](https://travis-ci.org/TrySound/postcss-value-parser)
+
+Transforms CSS declaration values and at-rule parameters into a tree of nodes, and provides a simple traversal API.
+
+## Usage
+
+```js
+var valueParser = require('postcss-value-parser');
+var cssBackgroundValue = 'url(foo.png) no-repeat 40px 73%';
+var parsedValue = valueParser(cssBackgroundValue);
+// parsedValue exposes an API described below,
+// e.g. parsedValue.walk(..), parsedValue.toString(), etc.
+```
+
+For example, parsing the value `rgba(233, 45, 66, .5)` will return the following:
+
+```js
+{
+ nodes: [
+ {
+ type: 'function',
+ value: 'rgba',
+ before: '',
+ after: '',
+ nodes: [
+ { type: 'word', value: '233' },
+ { type: 'div', value: ',', before: '', after: ' ' },
+ { type: 'word', value: '45' },
+ { type: 'div', value: ',', before: '', after: ' ' },
+ { type: 'word', value: '66' },
+ { type: 'div', value: ',', before: ' ', after: '' },
+ { type: 'word', value: '.5' }
+ ]
+ }
+ ]
+}
+```
+
+If you wanted to convert each `rgba()` value in `sourceCSS` to a hex value, you could do so like this:
+
+```js
+var valueParser = require('postcss-value-parser');
+
+var parsed = valueParser(sourceCSS);
+
+// walk() will visit all the of the nodes in the tree,
+// invoking the callback for each.
+parsed.walk(function (node) {
+
+ // Since we only want to transform rgba() values,
+ // we can ignore anything else.
+ if (node.type !== 'function' && node.value !== 'rgba') return;
+
+ // We can make an array of the rgba() arguments to feed to a
+ // convertToHex() function
+ var color = node.nodes.filter(function (node) {
+ return node.type === 'word';
+ }).map(function (node) {
+ return Number(node.value);
+ }); // [233, 45, 66, .5]
+
+ // Now we will transform the existing rgba() function node
+ // into a word node with the hex value
+ node.type = 'word';
+ node.value = convertToHex(color);
+})
+
+parsed.toString(); // #E92D42
+```
+
+## Nodes
+
+Each node is an object with these common properties:
+
+- **type**: The type of node (`word`, `string`, `div`, `space`, `comment`, or `function`).
+ Each type is documented below.
+- **value**: Each node has a `value` property; but what exactly `value` means
+ is specific to the node type. Details are documented for each type below.
+- **sourceIndex**: The starting index of the node within the original source
+ string. For example, given the source string `10px 20px`, the `word` node
+ whose value is `20px` will have a `sourceIndex` of `5`.
+
+### word
+
+The catch-all node type that includes keywords (e.g. `no-repeat`),
+quantities (e.g. `20px`, `75%`, `1.5`), and hex colors (e.g. `#e6e6e6`).
+
+Node-specific properties:
+
+- **value**: The "word" itself.
+
+### string
+
+A quoted string value, e.g. `"something"` in `content: "something";`.
+
+Node-specific properties:
+
+- **value**: The text content of the string.
+- **quote**: The quotation mark surrounding the string, either `"` or `'`.
+- **unclosed**: `true` if the string was not closed properly. e.g. `"unclosed string `.
+
+### div
+
+A divider, for example
+
+- `,` in `animation-duration: 1s, 2s, 3s`
+- `/` in `border-radius: 10px / 23px`
+- `:` in `(min-width: 700px)`
+
+Node-specific properties:
+
+- **value**: The divider character. Either `,`, `/`, or `:` (see examples above).
+- **before**: Whitespace before the divider.
+- **after**: Whitespace after the divider.
+
+### space
+
+Whitespace used as a separator, e.g. ` ` occurring twice in `border: 1px solid black;`.
+
+Node-specific properties:
+
+- **value**: The whitespace itself.
+
+### comment
+
+A CSS comment starts with `/*` and ends with `*/`
+
+Node-specific properties:
+
+- **value**: The comment value without `/*` and `*/`
+- **unclosed**: `true` if the comment was not closed properly. e.g. `/* comment without an end `.
+
+### function
+
+A CSS function, e.g. `rgb(0,0,0)` or `url(foo.bar)`.
+
+Function nodes have nodes nested within them: the function arguments.
+
+Additional properties:
+
+- **value**: The name of the function, e.g. `rgb` in `rgb(0,0,0)`.
+- **before**: Whitespace after the opening parenthesis and before the first argument,
+ e.g. ` ` in `rgb( 0,0,0)`.
+- **after**: Whitespace before the closing parenthesis and after the last argument,
+ e.g. ` ` in `rgb(0,0,0 )`.
+- **nodes**: More nodes representing the arguments to the function.
+- **unclosed**: `true` if the parentheses was not closed properly. e.g. `( unclosed-function `.
+
+Media features surrounded by parentheses are considered functions with an
+empty value. For example, `(min-width: 700px)` parses to these nodes:
+
+```js
+[
+ {
+ type: 'function', value: '', before: '', after: '',
+ nodes: [
+ { type: 'word', value: 'min-width' },
+ { type: 'div', value: ':', before: '', after: ' ' },
+ { type: 'word', value: '700px' }
+ ]
+ }
+]
+```
+
+`url()` functions can be parsed a little bit differently depending on
+whether the first character in the argument is a quotation mark.
+
+`url( /gfx/img/bg.jpg )` parses to:
+
+```js
+{ type: 'function', sourceIndex: 0, value: 'url', before: ' ', after: ' ', nodes: [
+ { type: 'word', sourceIndex: 5, value: '/gfx/img/bg.jpg' }
+] }
+```
+
+`url( "/gfx/img/bg.jpg" )`, on the other hand, parses to:
+
+```js
+{ type: 'function', sourceIndex: 0, value: 'url', before: ' ', after: ' ', nodes: [
+ type: 'string', sourceIndex: 5, quote: '"', value: '/gfx/img/bg.jpg' },
+] }
+```
+
+### unicode-range
+
+The unicode-range CSS descriptor sets the specific range of characters to be
+used from a font defined by @font-face and made available
+for use on the current page (`unicode-range: U+0025-00FF`).
+
+Node-specific properties:
+
+- **value**: The "unicode-range" itself.
+
+## API
+
+```
+var valueParser = require('postcss-value-parser');
+```
+
+### valueParser.unit(quantity)
+
+Parses `quantity`, distinguishing the number from the unit. Returns an object like the following:
+
+```js
+// Given 2rem
+{
+ number: '2',
+ unit: 'rem'
+}
+```
+
+If the `quantity` argument cannot be parsed as a number, returns `false`.
+
+*This function does not parse complete values*: you cannot pass it `1px solid black` and expect `px` as
+the unit. Instead, you should pass it single quantities only. Parse `1px solid black`, then pass it
+the stringified `1px` node (a `word` node) to parse the number and unit.
+
+### valueParser.stringify(nodes[, custom])
+
+Stringifies a node or array of nodes.
+
+The `custom` function is called for each `node`; return a string to override the default behaviour.
+
+### valueParser.walk(nodes, callback[, bubble])
+
+Walks each provided node, recursively walking all descendent nodes within functions.
+
+Returning `false` in the `callback` will prevent traversal of descendent nodes (within functions).
+You can use this feature to for shallow iteration, walking over only the *immediate* children.
+*Note: This only applies if `bubble` is `false` (which is the default).*
+
+By default, the tree is walked from the outermost node inwards.
+To reverse the direction, pass `true` for the `bubble` argument.
+
+The `callback` is invoked with three arguments: `callback(node, index, nodes)`.
+
+- `node`: The current node.
+- `index`: The index of the current node.
+- `nodes`: The complete nodes array passed to `walk()`.
+
+Returns the `valueParser` instance.
+
+### var parsed = valueParser(value)
+
+Returns the parsed node tree.
+
+### parsed.nodes
+
+The array of nodes.
+
+### parsed.toString()
+
+Stringifies the node tree.
+
+### parsed.walk(callback[, bubble])
+
+Walks each node inside `parsed.nodes`. See the documentation for `valueParser.walk()` above.
+
+# License
+
+MIT © [Bogdan Chadkin](mailto:trysound@yandex.ru)
diff --git a/node_modules/postcss-value-parser/lib/index.d.ts b/node_modules/postcss-value-parser/lib/index.d.ts
new file mode 100644
index 0000000..8759f3f
--- /dev/null
+++ b/node_modules/postcss-value-parser/lib/index.d.ts
@@ -0,0 +1,177 @@
+declare namespace postcssValueParser {
+ interface BaseNode {
+ /**
+ * The offset, inclusive, inside the CSS value at which the node starts.
+ */
+ sourceIndex: number;
+
+ /**
+ * The offset, exclusive, inside the CSS value at which the node ends.
+ */
+ sourceEndIndex: number;
+
+ /**
+ * The node's characteristic value
+ */
+ value: string;
+ }
+
+ interface ClosableNode {
+ /**
+ * Whether the parsed CSS value ended before the node was properly closed
+ */
+ unclosed?: true;
+ }
+
+ interface AdjacentAwareNode {
+ /**
+ * The token at the start of the node
+ */
+ before: string;
+
+ /**
+ * The token at the end of the node
+ */
+ after: string;
+ }
+
+ interface CommentNode extends BaseNode, ClosableNode {
+ type: "comment";
+ }
+
+ interface DivNode extends BaseNode, AdjacentAwareNode {
+ type: "div";
+ }
+
+ interface FunctionNode extends BaseNode, ClosableNode, AdjacentAwareNode {
+ type: "function";
+
+ /**
+ * Nodes inside the function
+ */
+ nodes: Node[];
+ }
+
+ interface SpaceNode extends BaseNode {
+ type: "space";
+ }
+
+ interface StringNode extends BaseNode, ClosableNode {
+ type: "string";
+
+ /**
+ * The quote type delimiting the string
+ */
+ quote: '"' | "'";
+ }
+
+ interface UnicodeRangeNode extends BaseNode {
+ type: "unicode-range";
+ }
+
+ interface WordNode extends BaseNode {
+ type: "word";
+ }
+
+ /**
+ * Any node parsed from a CSS value
+ */
+ type Node =
+ | CommentNode
+ | DivNode
+ | FunctionNode
+ | SpaceNode
+ | StringNode
+ | UnicodeRangeNode
+ | WordNode;
+
+ interface CustomStringifierCallback {
+ /**
+ * @param node The node to stringify
+ * @returns The serialized CSS representation of the node
+ */
+ (nodes: Node): string | undefined;
+ }
+
+ interface WalkCallback {
+ /**
+ * @param node The currently visited node
+ * @param index The index of the node in the series of parsed nodes
+ * @param nodes The series of parsed nodes
+ * @returns Returning `false` will prevent traversal of descendant nodes (only applies if `bubble` was set to `true` in the `walk()` call)
+ */
+ (node: Node, index: number, nodes: Node[]): void | boolean;
+ }
+
+ /**
+ * A CSS dimension, decomposed into its numeric and unit parts
+ */
+ interface Dimension {
+ number: string;
+ unit: string;
+ }
+
+ /**
+ * A wrapper around a parsed CSS value that allows for inspecting and walking nodes
+ */
+ interface ParsedValue {
+ /**
+ * The series of parsed nodes
+ */
+ nodes: Node[];
+
+ /**
+ * Walk all parsed nodes, applying a callback
+ *
+ * @param callback A visitor callback that will be executed for each node
+ * @param bubble When set to `true`, walking will be done inside-out instead of outside-in
+ */
+ walk(callback: WalkCallback, bubble?: boolean): this;
+ }
+
+ interface ValueParser {
+ /**
+ * Decompose a CSS dimension into its numeric and unit part
+ *
+ * @param value The dimension to decompose
+ * @returns An object representing `number` and `unit` part of the dimension or `false` if the decomposing fails
+ */
+ unit(value: string): Dimension | false;
+
+ /**
+ * Serialize a series of nodes into a CSS value
+ *
+ * @param nodes The nodes to stringify
+ * @param custom A custom stringifier callback
+ * @returns The generated CSS value
+ */
+ stringify(nodes: Node | Node[], custom?: CustomStringifierCallback): string;
+
+ /**
+ * Walk a series of nodes, applying a callback
+ *
+ * @param nodes The nodes to walk
+ * @param callback A visitor callback that will be executed for each node
+ * @param bubble When set to `true`, walking will be done inside-out instead of outside-in
+ */
+ walk(nodes: Node[], callback: WalkCallback, bubble?: boolean): void;
+
+ /**
+ * Parse a CSS value into a series of nodes to operate on
+ *
+ * @param value The value to parse
+ */
+ new (value: string): ParsedValue;
+
+ /**
+ * Parse a CSS value into a series of nodes to operate on
+ *
+ * @param value The value to parse
+ */
+ (value: string): ParsedValue;
+ }
+}
+
+declare const postcssValueParser: postcssValueParser.ValueParser;
+
+export = postcssValueParser;
diff --git a/node_modules/postcss-value-parser/lib/index.js b/node_modules/postcss-value-parser/lib/index.js
new file mode 100644
index 0000000..f9ac0e6
--- /dev/null
+++ b/node_modules/postcss-value-parser/lib/index.js
@@ -0,0 +1,28 @@
+var parse = require("./parse");
+var walk = require("./walk");
+var stringify = require("./stringify");
+
+function ValueParser(value) {
+ if (this instanceof ValueParser) {
+ this.nodes = parse(value);
+ return this;
+ }
+ return new ValueParser(value);
+}
+
+ValueParser.prototype.toString = function() {
+ return Array.isArray(this.nodes) ? stringify(this.nodes) : "";
+};
+
+ValueParser.prototype.walk = function(cb, bubble) {
+ walk(this.nodes, cb, bubble);
+ return this;
+};
+
+ValueParser.unit = require("./unit");
+
+ValueParser.walk = walk;
+
+ValueParser.stringify = stringify;
+
+module.exports = ValueParser;
diff --git a/node_modules/postcss-value-parser/lib/parse.js b/node_modules/postcss-value-parser/lib/parse.js
new file mode 100644
index 0000000..950631c
--- /dev/null
+++ b/node_modules/postcss-value-parser/lib/parse.js
@@ -0,0 +1,321 @@
+var openParentheses = "(".charCodeAt(0);
+var closeParentheses = ")".charCodeAt(0);
+var singleQuote = "'".charCodeAt(0);
+var doubleQuote = '"'.charCodeAt(0);
+var backslash = "\\".charCodeAt(0);
+var slash = "/".charCodeAt(0);
+var comma = ",".charCodeAt(0);
+var colon = ":".charCodeAt(0);
+var star = "*".charCodeAt(0);
+var uLower = "u".charCodeAt(0);
+var uUpper = "U".charCodeAt(0);
+var plus = "+".charCodeAt(0);
+var isUnicodeRange = /^[a-f0-9?-]+$/i;
+
+module.exports = function(input) {
+ var tokens = [];
+ var value = input;
+
+ var next,
+ quote,
+ prev,
+ token,
+ escape,
+ escapePos,
+ whitespacePos,
+ parenthesesOpenPos;
+ var pos = 0;
+ var code = value.charCodeAt(pos);
+ var max = value.length;
+ var stack = [{ nodes: tokens }];
+ var balanced = 0;
+ var parent;
+
+ var name = "";
+ var before = "";
+ var after = "";
+
+ while (pos < max) {
+ // Whitespaces
+ if (code <= 32) {
+ next = pos;
+ do {
+ next += 1;
+ code = value.charCodeAt(next);
+ } while (code <= 32);
+ token = value.slice(pos, next);
+
+ prev = tokens[tokens.length - 1];
+ if (code === closeParentheses && balanced) {
+ after = token;
+ } else if (prev && prev.type === "div") {
+ prev.after = token;
+ prev.sourceEndIndex += token.length;
+ } else if (
+ code === comma ||
+ code === colon ||
+ (code === slash &&
+ value.charCodeAt(next + 1) !== star &&
+ (!parent ||
+ (parent && parent.type === "function" && parent.value !== "calc")))
+ ) {
+ before = token;
+ } else {
+ tokens.push({
+ type: "space",
+ sourceIndex: pos,
+ sourceEndIndex: next,
+ value: token
+ });
+ }
+
+ pos = next;
+
+ // Quotes
+ } else if (code === singleQuote || code === doubleQuote) {
+ next = pos;
+ quote = code === singleQuote ? "'" : '"';
+ token = {
+ type: "string",
+ sourceIndex: pos,
+ quote: quote
+ };
+ do {
+ escape = false;
+ next = value.indexOf(quote, next + 1);
+ if (~next) {
+ escapePos = next;
+ while (value.charCodeAt(escapePos - 1) === backslash) {
+ escapePos -= 1;
+ escape = !escape;
+ }
+ } else {
+ value += quote;
+ next = value.length - 1;
+ token.unclosed = true;
+ }
+ } while (escape);
+ token.value = value.slice(pos + 1, next);
+ token.sourceEndIndex = token.unclosed ? next : next + 1;
+ tokens.push(token);
+ pos = next + 1;
+ code = value.charCodeAt(pos);
+
+ // Comments
+ } else if (code === slash && value.charCodeAt(pos + 1) === star) {
+ next = value.indexOf("*/", pos);
+
+ token = {
+ type: "comment",
+ sourceIndex: pos,
+ sourceEndIndex: next + 2
+ };
+
+ if (next === -1) {
+ token.unclosed = true;
+ next = value.length;
+ token.sourceEndIndex = next;
+ }
+
+ token.value = value.slice(pos + 2, next);
+ tokens.push(token);
+
+ pos = next + 2;
+ code = value.charCodeAt(pos);
+
+ // Operation within calc
+ } else if (
+ (code === slash || code === star) &&
+ parent &&
+ parent.type === "function" &&
+ parent.value === "calc"
+ ) {
+ token = value[pos];
+ tokens.push({
+ type: "word",
+ sourceIndex: pos - before.length,
+ sourceEndIndex: pos + token.length,
+ value: token
+ });
+ pos += 1;
+ code = value.charCodeAt(pos);
+
+ // Dividers
+ } else if (code === slash || code === comma || code === colon) {
+ token = value[pos];
+
+ tokens.push({
+ type: "div",
+ sourceIndex: pos - before.length,
+ sourceEndIndex: pos + token.length,
+ value: token,
+ before: before,
+ after: ""
+ });
+ before = "";
+
+ pos += 1;
+ code = value.charCodeAt(pos);
+
+ // Open parentheses
+ } else if (openParentheses === code) {
+ // Whitespaces after open parentheses
+ next = pos;
+ do {
+ next += 1;
+ code = value.charCodeAt(next);
+ } while (code <= 32);
+ parenthesesOpenPos = pos;
+ token = {
+ type: "function",
+ sourceIndex: pos - name.length,
+ value: name,
+ before: value.slice(parenthesesOpenPos + 1, next)
+ };
+ pos = next;
+
+ if (name === "url" && code !== singleQuote && code !== doubleQuote) {
+ next -= 1;
+ do {
+ escape = false;
+ next = value.indexOf(")", next + 1);
+ if (~next) {
+ escapePos = next;
+ while (value.charCodeAt(escapePos - 1) === backslash) {
+ escapePos -= 1;
+ escape = !escape;
+ }
+ } else {
+ value += ")";
+ next = value.length - 1;
+ token.unclosed = true;
+ }
+ } while (escape);
+ // Whitespaces before closed
+ whitespacePos = next;
+ do {
+ whitespacePos -= 1;
+ code = value.charCodeAt(whitespacePos);
+ } while (code <= 32);
+ if (parenthesesOpenPos < whitespacePos) {
+ if (pos !== whitespacePos + 1) {
+ token.nodes = [
+ {
+ type: "word",
+ sourceIndex: pos,
+ sourceEndIndex: whitespacePos + 1,
+ value: value.slice(pos, whitespacePos + 1)
+ }
+ ];
+ } else {
+ token.nodes = [];
+ }
+ if (token.unclosed && whitespacePos + 1 !== next) {
+ token.after = "";
+ token.nodes.push({
+ type: "space",
+ sourceIndex: whitespacePos + 1,
+ sourceEndIndex: next,
+ value: value.slice(whitespacePos + 1, next)
+ });
+ } else {
+ token.after = value.slice(whitespacePos + 1, next);
+ token.sourceEndIndex = next;
+ }
+ } else {
+ token.after = "";
+ token.nodes = [];
+ }
+ pos = next + 1;
+ token.sourceEndIndex = token.unclosed ? next : pos;
+ code = value.charCodeAt(pos);
+ tokens.push(token);
+ } else {
+ balanced += 1;
+ token.after = "";
+ token.sourceEndIndex = pos + 1;
+ tokens.push(token);
+ stack.push(token);
+ tokens = token.nodes = [];
+ parent = token;
+ }
+ name = "";
+
+ // Close parentheses
+ } else if (closeParentheses === code && balanced) {
+ pos += 1;
+ code = value.charCodeAt(pos);
+
+ parent.after = after;
+ parent.sourceEndIndex += after.length;
+ after = "";
+ balanced -= 1;
+ stack[stack.length - 1].sourceEndIndex = pos;
+ stack.pop();
+ parent = stack[balanced];
+ tokens = parent.nodes;
+
+ // Words
+ } else {
+ next = pos;
+ do {
+ if (code === backslash) {
+ next += 1;
+ }
+ next += 1;
+ code = value.charCodeAt(next);
+ } while (
+ next < max &&
+ !(
+ code <= 32 ||
+ code === singleQuote ||
+ code === doubleQuote ||
+ code === comma ||
+ code === colon ||
+ code === slash ||
+ code === openParentheses ||
+ (code === star &&
+ parent &&
+ parent.type === "function" &&
+ parent.value === "calc") ||
+ (code === slash &&
+ parent.type === "function" &&
+ parent.value === "calc") ||
+ (code === closeParentheses && balanced)
+ )
+ );
+ token = value.slice(pos, next);
+
+ if (openParentheses === code) {
+ name = token;
+ } else if (
+ (uLower === token.charCodeAt(0) || uUpper === token.charCodeAt(0)) &&
+ plus === token.charCodeAt(1) &&
+ isUnicodeRange.test(token.slice(2))
+ ) {
+ tokens.push({
+ type: "unicode-range",
+ sourceIndex: pos,
+ sourceEndIndex: next,
+ value: token
+ });
+ } else {
+ tokens.push({
+ type: "word",
+ sourceIndex: pos,
+ sourceEndIndex: next,
+ value: token
+ });
+ }
+
+ pos = next;
+ }
+ }
+
+ for (pos = stack.length - 1; pos; pos -= 1) {
+ stack[pos].unclosed = true;
+ stack[pos].sourceEndIndex = value.length;
+ }
+
+ return stack[0].nodes;
+};
diff --git a/node_modules/postcss-value-parser/lib/stringify.js b/node_modules/postcss-value-parser/lib/stringify.js
new file mode 100644
index 0000000..6079671
--- /dev/null
+++ b/node_modules/postcss-value-parser/lib/stringify.js
@@ -0,0 +1,48 @@
+function stringifyNode(node, custom) {
+ var type = node.type;
+ var value = node.value;
+ var buf;
+ var customResult;
+
+ if (custom && (customResult = custom(node)) !== undefined) {
+ return customResult;
+ } else if (type === "word" || type === "space") {
+ return value;
+ } else if (type === "string") {
+ buf = node.quote || "";
+ return buf + value + (node.unclosed ? "" : buf);
+ } else if (type === "comment") {
+ return "/*" + value + (node.unclosed ? "" : "*/");
+ } else if (type === "div") {
+ return (node.before || "") + value + (node.after || "");
+ } else if (Array.isArray(node.nodes)) {
+ buf = stringify(node.nodes, custom);
+ if (type !== "function") {
+ return buf;
+ }
+ return (
+ value +
+ "(" +
+ (node.before || "") +
+ buf +
+ (node.after || "") +
+ (node.unclosed ? "" : ")")
+ );
+ }
+ return value;
+}
+
+function stringify(nodes, custom) {
+ var result, i;
+
+ if (Array.isArray(nodes)) {
+ result = "";
+ for (i = nodes.length - 1; ~i; i -= 1) {
+ result = stringifyNode(nodes[i], custom) + result;
+ }
+ return result;
+ }
+ return stringifyNode(nodes, custom);
+}
+
+module.exports = stringify;
diff --git a/node_modules/postcss-value-parser/lib/unit.js b/node_modules/postcss-value-parser/lib/unit.js
new file mode 100644
index 0000000..c349661
--- /dev/null
+++ b/node_modules/postcss-value-parser/lib/unit.js
@@ -0,0 +1,120 @@
+var minus = "-".charCodeAt(0);
+var plus = "+".charCodeAt(0);
+var dot = ".".charCodeAt(0);
+var exp = "e".charCodeAt(0);
+var EXP = "E".charCodeAt(0);
+
+// Check if three code points would start a number
+// https://www.w3.org/TR/css-syntax-3/#starts-with-a-number
+function likeNumber(value) {
+ var code = value.charCodeAt(0);
+ var nextCode;
+
+ if (code === plus || code === minus) {
+ nextCode = value.charCodeAt(1);
+
+ if (nextCode >= 48 && nextCode <= 57) {
+ return true;
+ }
+
+ var nextNextCode = value.charCodeAt(2);
+
+ if (nextCode === dot && nextNextCode >= 48 && nextNextCode <= 57) {
+ return true;
+ }
+
+ return false;
+ }
+
+ if (code === dot) {
+ nextCode = value.charCodeAt(1);
+
+ if (nextCode >= 48 && nextCode <= 57) {
+ return true;
+ }
+
+ return false;
+ }
+
+ if (code >= 48 && code <= 57) {
+ return true;
+ }
+
+ return false;
+}
+
+// Consume a number
+// https://www.w3.org/TR/css-syntax-3/#consume-number
+module.exports = function(value) {
+ var pos = 0;
+ var length = value.length;
+ var code;
+ var nextCode;
+ var nextNextCode;
+
+ if (length === 0 || !likeNumber(value)) {
+ return false;
+ }
+
+ code = value.charCodeAt(pos);
+
+ if (code === plus || code === minus) {
+ pos++;
+ }
+
+ while (pos < length) {
+ code = value.charCodeAt(pos);
+
+ if (code < 48 || code > 57) {
+ break;
+ }
+
+ pos += 1;
+ }
+
+ code = value.charCodeAt(pos);
+ nextCode = value.charCodeAt(pos + 1);
+
+ if (code === dot && nextCode >= 48 && nextCode <= 57) {
+ pos += 2;
+
+ while (pos < length) {
+ code = value.charCodeAt(pos);
+
+ if (code < 48 || code > 57) {
+ break;
+ }
+
+ pos += 1;
+ }
+ }
+
+ code = value.charCodeAt(pos);
+ nextCode = value.charCodeAt(pos + 1);
+ nextNextCode = value.charCodeAt(pos + 2);
+
+ if (
+ (code === exp || code === EXP) &&
+ ((nextCode >= 48 && nextCode <= 57) ||
+ ((nextCode === plus || nextCode === minus) &&
+ nextNextCode >= 48 &&
+ nextNextCode <= 57))
+ ) {
+ pos += nextCode === plus || nextCode === minus ? 3 : 2;
+
+ while (pos < length) {
+ code = value.charCodeAt(pos);
+
+ if (code < 48 || code > 57) {
+ break;
+ }
+
+ pos += 1;
+ }
+ }
+
+ return {
+ number: value.slice(0, pos),
+ unit: value.slice(pos)
+ };
+};
diff --git a/node_modules/postcss-value-parser/lib/walk.js b/node_modules/postcss-value-parser/lib/walk.js
new file mode 100644
index 0000000..7666c5b
--- /dev/null
+++ b/node_modules/postcss-value-parser/lib/walk.js
@@ -0,0 +1,22 @@
+module.exports = function walk(nodes, cb, bubble) {
+ var i, max, node, result;
+
+ for (i = 0, max = nodes.length; i < max; i += 1) {
+ node = nodes[i];
+ if (!bubble) {
+ result = cb(node, i, nodes);
+ }
+
+ if (
+ result !== false &&
+ node.type === "function" &&
+ Array.isArray(node.nodes)
+ ) {
+ walk(node.nodes, cb, bubble);
+ }
+
+ if (bubble) {
+ cb(node, i, nodes);
+ }
+ }
+};
diff --git a/node_modules/postcss-value-parser/package.json b/node_modules/postcss-value-parser/package.json
new file mode 100644
index 0000000..02d744a
--- /dev/null
+++ b/node_modules/postcss-value-parser/package.json
@@ -0,0 +1,58 @@
+{
+ "name": "postcss-value-parser",
+ "version": "4.2.0",
+ "description": "Transforms css values and at-rule params into the tree",
+ "main": "lib/index.js",
+ "files": [
+ "lib"
+ ],
+ "devDependencies": {
+ "eslint": "^5.16.0",
+ "husky": "^2.3.0",
+ "lint-staged": "^8.1.7",
+ "prettier": "^1.17.1",
+ "tap-spec": "^5.0.0",
+ "tape": "^4.10.2"
+ },
+ "scripts": {
+ "lint:prettier": "prettier \"**/*.js\" \"**/*.ts\" --list-different",
+ "lint:js": "eslint . --cache",
+ "lint": "yarn lint:js && yarn lint:prettier",
+ "pretest": "yarn lint",
+ "test": "tape test/*.js | tap-spec"
+ },
+ "eslintConfig": {
+ "env": {
+ "es6": true,
+ "node": true
+ },
+ "extends": "eslint:recommended"
+ },
+ "lint-staged": {
+ "*.js": [
+ "eslint",
+ "prettier --write",
+ "git add"
+ ]
+ },
+ "husky": {
+ "hooks": {
+ "pre-commit": "lint-staged"
+ }
+ },
+ "author": "Bogdan Chadkin ",
+ "license": "MIT",
+ "homepage": "https://github.com/TrySound/postcss-value-parser",
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/TrySound/postcss-value-parser.git"
+ },
+ "keywords": [
+ "postcss",
+ "value",
+ "parser"
+ ],
+ "bugs": {
+ "url": "https://github.com/TrySound/postcss-value-parser/issues"
+ }
+}
diff --git a/node_modules/postcss/LICENSE b/node_modules/postcss/LICENSE
new file mode 100644
index 0000000..da057b4
--- /dev/null
+++ b/node_modules/postcss/LICENSE
@@ -0,0 +1,20 @@
+The MIT License (MIT)
+
+Copyright 2013 Andrey Sitnik
+
+Permission is hereby granted, free of charge, to any person obtaining a copy of
+this software and associated documentation files (the "Software"), to deal in
+the Software without restriction, including without limitation the rights to
+use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
+the Software, and to permit persons to whom the Software is furnished to do so,
+subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
+FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
+COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
+IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
+CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
diff --git a/node_modules/postcss/README.md b/node_modules/postcss/README.md
new file mode 100644
index 0000000..09dd856
--- /dev/null
+++ b/node_modules/postcss/README.md
@@ -0,0 +1,44 @@
+# PostCSS [![Gitter][chat-img]][chat]
+
+
+
+[chat-img]: https://img.shields.io/badge/Gitter-Join_the_PostCSS_chat-brightgreen.svg
+[chat]: https://gitter.im/postcss/postcss
+
+PostCSS is a tool for transforming styles with JS plugins.
+These plugins can lint your CSS, support variables and mixins,
+transpile future CSS syntax, inline images, and more.
+
+PostCSS is used by industry leaders including Wikipedia, Twitter, Alibaba,
+and JetBrains. The [Autoprefixer] PostCSS plugin is one of the most popular
+CSS processors.
+
+PostCSS takes a CSS file and provides an API to analyze and modify its rules
+(by transforming them into an [Abstract Syntax Tree]).
+This API can then be used by [plugins] to do a lot of useful things,
+e.g., to find errors automatically, or to insert vendor prefixes.
+
+**Support / Discussion:** [Gitter](https://gitter.im/postcss/postcss)
+**Twitter account:** [@postcss](https://twitter.com/postcss)
+**VK.com page:** [postcss](https://vk.com/postcss)
+**中文翻译**: [`docs/README-cn.md`](./docs/README-cn.md)
+
+For PostCSS commercial support (consulting, improving the front-end culture
+of your company, PostCSS plugins), contact [Evil Martians]
+at .
+
+[Abstract Syntax Tree]: https://en.wikipedia.org/wiki/Abstract_syntax_tree
+[Evil Martians]: https://evilmartians.com/?utm_source=postcss
+[Autoprefixer]: https://github.com/postcss/autoprefixer
+[plugins]: https://github.com/postcss/postcss#plugins
+
+
+
+
+
+
+## Docs
+Read full docs **[here](https://postcss.org/)**.
diff --git a/node_modules/postcss/lib/at-rule.d.ts b/node_modules/postcss/lib/at-rule.d.ts
new file mode 100644
index 0000000..186fae0
--- /dev/null
+++ b/node_modules/postcss/lib/at-rule.d.ts
@@ -0,0 +1,115 @@
+import Container, { ContainerProps } from './container.js'
+
+declare namespace AtRule {
+ export interface AtRuleRaws extends Record {
+ /**
+ * The space symbols before the node. It also stores `*`
+ * and `_` symbols before the declaration (IE hack).
+ */
+ before?: string
+
+ /**
+ * The space symbols after the last child of the node to the end of the node.
+ */
+ after?: string
+
+ /**
+ * The space between the at-rule name and its parameters.
+ */
+ afterName?: string
+
+ /**
+ * The symbols between the last parameter and `{` for rules.
+ */
+ between?: string
+
+ /**
+ * Contains `true` if the last child has an (optional) semicolon.
+ */
+ semicolon?: boolean
+
+ /**
+ * The rule’s selector with comments.
+ */
+ params?: {
+ value: string
+ raw: string
+ }
+ }
+
+ export interface AtRuleProps extends ContainerProps {
+ /** Name of the at-rule. */
+ name: string
+ /** Parameters following the name of the at-rule. */
+ params?: string | number
+ /** Information used to generate byte-to-byte equal node string as it was in the origin input. */
+ raws?: AtRuleRaws
+ }
+
+ // eslint-disable-next-line @typescript-eslint/no-use-before-define
+ export { AtRule_ as default }
+}
+
+/**
+ * Represents an at-rule.
+ *
+ * ```js
+ * Once (root, { AtRule }) {
+ * let media = new AtRule({ name: 'media', params: 'print' })
+ * media.append(…)
+ * root.append(media)
+ * }
+ * ```
+ *
+ * If it’s followed in the CSS by a `{}` block, this node will have
+ * a nodes property representing its children.
+ *
+ * ```js
+ * const root = postcss.parse('@charset "UTF-8"; @media print {}')
+ *
+ * const charset = root.first
+ * charset.type //=> 'atrule'
+ * charset.nodes //=> undefined
+ *
+ * const media = root.last
+ * media.nodes //=> []
+ * ```
+ */
+declare class AtRule_ extends Container {
+ type: 'atrule'
+ parent: Container | undefined
+ raws: AtRule.AtRuleRaws
+
+ /**
+ * The at-rule’s name immediately follows the `@`.
+ *
+ * ```js
+ * const root = postcss.parse('@media print {}')
+ * media.name //=> 'media'
+ * const media = root.first
+ * ```
+ */
+ name: string
+
+ /**
+ * The at-rule’s parameters, the values that follow the at-rule’s name
+ * but precede any `{}` block.
+ *
+ * ```js
+ * const root = postcss.parse('@media print, screen {}')
+ * const media = root.first
+ * media.params //=> 'print, screen'
+ * ```
+ */
+ params: string
+
+ constructor(defaults?: AtRule.AtRuleProps)
+ assign(overrides: object | AtRule.AtRuleProps): this
+ clone(overrides?: Partial): this
+ cloneBefore(overrides?: Partial): this
+ cloneAfter(overrides?: Partial): this
+}
+
+declare class AtRule extends AtRule_ {}
+
+export = AtRule
diff --git a/node_modules/postcss/lib/at-rule.js b/node_modules/postcss/lib/at-rule.js
new file mode 100644
index 0000000..9486447
--- /dev/null
+++ b/node_modules/postcss/lib/at-rule.js
@@ -0,0 +1,25 @@
+'use strict'
+
+let Container = require('./container')
+
+class AtRule extends Container {
+ constructor(defaults) {
+ super(defaults)
+ this.type = 'atrule'
+ }
+
+ append(...children) {
+ if (!this.proxyOf.nodes) this.nodes = []
+ return super.append(...children)
+ }
+
+ prepend(...children) {
+ if (!this.proxyOf.nodes) this.nodes = []
+ return super.prepend(...children)
+ }
+}
+
+module.exports = AtRule
+AtRule.default = AtRule
+
+Container.registerAtRule(AtRule)
diff --git a/node_modules/postcss/lib/comment.d.ts b/node_modules/postcss/lib/comment.d.ts
new file mode 100644
index 0000000..2f00ff7
--- /dev/null
+++ b/node_modules/postcss/lib/comment.d.ts
@@ -0,0 +1,65 @@
+import Container from './container.js'
+import Node, { NodeProps } from './node.js'
+
+declare namespace Comment {
+ export interface CommentRaws extends Record {
+ /**
+ * The space symbols before the node.
+ */
+ before?: string
+
+ /**
+ * The space symbols between `/*` and the comment’s text.
+ */
+ left?: string
+
+ /**
+ * The space symbols between the comment’s text.
+ */
+ right?: string
+ }
+
+ export interface CommentProps extends NodeProps {
+ /** Content of the comment. */
+ text: string
+ /** Information used to generate byte-to-byte equal node string as it was in the origin input. */
+ raws?: CommentRaws
+ }
+
+ // eslint-disable-next-line @typescript-eslint/no-use-before-define
+ export { Comment_ as default }
+}
+
+/**
+ * Represents a comment between declarations or statements (rule and at-rules).
+ *
+ * ```js
+ * Once (root, { Comment }) {
+ * let note = new Comment({ text: 'Note: …' })
+ * root.append(note)
+ * }
+ * ```
+ *
+ * Comments inside selectors, at-rule parameters, or declaration values
+ * will be stored in the `raws` properties explained above.
+ */
+declare class Comment_ extends Node {
+ type: 'comment'
+ parent: Container | undefined
+ raws: Comment.CommentRaws
+
+ /**
+ * The comment's text.
+ */
+ text: string
+
+ constructor(defaults?: Comment.CommentProps)
+ assign(overrides: object | Comment.CommentProps): this
+ clone(overrides?: Partial): this
+ cloneBefore(overrides?: Partial): this
+ cloneAfter(overrides?: Partial): this
+}
+
+declare class Comment extends Comment_ {}
+
+export = Comment
diff --git a/node_modules/postcss/lib/comment.js b/node_modules/postcss/lib/comment.js
new file mode 100644
index 0000000..c566506
--- /dev/null
+++ b/node_modules/postcss/lib/comment.js
@@ -0,0 +1,13 @@
+'use strict'
+
+let Node = require('./node')
+
+class Comment extends Node {
+ constructor(defaults) {
+ super(defaults)
+ this.type = 'comment'
+ }
+}
+
+module.exports = Comment
+Comment.default = Comment
diff --git a/node_modules/postcss/lib/container.d.ts b/node_modules/postcss/lib/container.d.ts
new file mode 100644
index 0000000..32953fe
--- /dev/null
+++ b/node_modules/postcss/lib/container.d.ts
@@ -0,0 +1,451 @@
+import Node, { ChildNode, NodeProps, ChildProps } from './node.js'
+import Declaration from './declaration.js'
+import Comment from './comment.js'
+import AtRule from './at-rule.js'
+import Rule from './rule.js'
+
+declare namespace Container {
+ export interface ValueOptions {
+ /**
+ * An array of property names.
+ */
+ props?: string[]
+
+ /**
+ * String that’s used to narrow down values and speed up the regexp search.
+ */
+ fast?: string
+ }
+
+ export interface ContainerProps extends NodeProps {
+ nodes?: (ChildNode | ChildProps)[]
+ }
+
+ // eslint-disable-next-line @typescript-eslint/no-use-before-define
+ export { Container_ as default }
+}
+
+/**
+ * The `Root`, `AtRule`, and `Rule` container nodes
+ * inherit some common methods to help work with their children.
+ *
+ * Note that all containers can store any content. If you write a rule inside
+ * a rule, PostCSS will parse it.
+ */
+declare abstract class Container_<
+ Child extends Node = ChildNode
+> extends Node {
+ /**
+ * An array containing the container’s children.
+ *
+ * ```js
+ * const root = postcss.parse('a { color: black }')
+ * root.nodes.length //=> 1
+ * root.nodes[0].selector //=> 'a'
+ * root.nodes[0].nodes[0].prop //=> 'color'
+ * ```
+ */
+ nodes: Child[]
+
+ /**
+ * The container’s first child.
+ *
+ * ```js
+ * rule.first === rules.nodes[0]
+ * ```
+ */
+ get first(): Child | undefined
+
+ /**
+ * The container’s last child.
+ *
+ * ```js
+ * rule.last === rule.nodes[rule.nodes.length - 1]
+ * ```
+ */
+ get last(): Child | undefined
+
+ /**
+ * Iterates through the container’s immediate children,
+ * calling `callback` for each child.
+ *
+ * Returning `false` in the callback will break iteration.
+ *
+ * This method only iterates through the container’s immediate children.
+ * If you need to recursively iterate through all the container’s descendant
+ * nodes, use `Container#walk`.
+ *
+ * Unlike the for `{}`-cycle or `Array#forEach` this iterator is safe
+ * if you are mutating the array of child nodes during iteration.
+ * PostCSS will adjust the current index to match the mutations.
+ *
+ * ```js
+ * const root = postcss.parse('a { color: black; z-index: 1 }')
+ * const rule = root.first
+ *
+ * for (const decl of rule.nodes) {
+ * decl.cloneBefore({ prop: '-webkit-' + decl.prop })
+ * // Cycle will be infinite, because cloneBefore moves the current node
+ * // to the next index
+ * }
+ *
+ * rule.each(decl => {
+ * decl.cloneBefore({ prop: '-webkit-' + decl.prop })
+ * // Will be executed only for color and z-index
+ * })
+ * ```
+ *
+ * @param callback Iterator receives each node and index.
+ * @return Returns `false` if iteration was broke.
+ */
+ each(
+ callback: (node: Child, index: number) => false | void
+ ): false | undefined
+
+ /**
+ * Traverses the container’s descendant nodes, calling callback
+ * for each node.
+ *
+ * Like container.each(), this method is safe to use
+ * if you are mutating arrays during iteration.
+ *
+ * If you only need to iterate through the container’s immediate children,
+ * use `Container#each`.
+ *
+ * ```js
+ * root.walk(node => {
+ * // Traverses all descendant nodes.
+ * })
+ * ```
+ *
+ * @param callback Iterator receives each node and index.
+ * @return Returns `false` if iteration was broke.
+ */
+ walk(
+ callback: (node: ChildNode, index: number) => false | void
+ ): false | undefined
+
+ /**
+ * Traverses the container’s descendant nodes, calling callback
+ * for each declaration node.
+ *
+ * If you pass a filter, iteration will only happen over declarations
+ * with matching properties.
+ *
+ * ```js
+ * root.walkDecls(decl => {
+ * checkPropertySupport(decl.prop)
+ * })
+ *
+ * root.walkDecls('border-radius', decl => {
+ * decl.remove()
+ * })
+ *
+ * root.walkDecls(/^background/, decl => {
+ * decl.value = takeFirstColorFromGradient(decl.value)
+ * })
+ * ```
+ *
+ * Like `Container#each`, this method is safe
+ * to use if you are mutating arrays during iteration.
+ *
+ * @param prop String or regular expression to filter declarations
+ * by property name.
+ * @param callback Iterator receives each node and index.
+ * @return Returns `false` if iteration was broke.
+ */
+ walkDecls(
+ propFilter: string | RegExp,
+ callback: (decl: Declaration, index: number) => false | void
+ ): false | undefined
+ walkDecls(
+ callback: (decl: Declaration, index: number) => false | void
+ ): false | undefined
+
+ /**
+ * Traverses the container’s descendant nodes, calling callback
+ * for each rule node.
+ *
+ * If you pass a filter, iteration will only happen over rules
+ * with matching selectors.
+ *
+ * Like `Container#each`, this method is safe
+ * to use if you are mutating arrays during iteration.
+ *
+ * ```js
+ * const selectors = []
+ * root.walkRules(rule => {
+ * selectors.push(rule.selector)
+ * })
+ * console.log(`Your CSS uses ${ selectors.length } selectors`)
+ * ```
+ *
+ * @param selector String or regular expression to filter rules by selector.
+ * @param callback Iterator receives each node and index.
+ * @return Returns `false` if iteration was broke.
+ */
+ walkRules(
+ selectorFilter: string | RegExp,
+ callback: (rule: Rule, index: number) => false | void
+ ): false | undefined
+ walkRules(
+ callback: (rule: Rule, index: number) => false | void
+ ): false | undefined
+
+ /**
+ * Traverses the container’s descendant nodes, calling callback
+ * for each at-rule node.
+ *
+ * If you pass a filter, iteration will only happen over at-rules
+ * that have matching names.
+ *
+ * Like `Container#each`, this method is safe
+ * to use if you are mutating arrays during iteration.
+ *
+ * ```js
+ * root.walkAtRules(rule => {
+ * if (isOld(rule.name)) rule.remove()
+ * })
+ *
+ * let first = false
+ * root.walkAtRules('charset', rule => {
+ * if (!first) {
+ * first = true
+ * } else {
+ * rule.remove()
+ * }
+ * })
+ * ```
+ *
+ * @param name String or regular expression to filter at-rules by name.
+ * @param callback Iterator receives each node and index.
+ * @return Returns `false` if iteration was broke.
+ */
+ walkAtRules(
+ nameFilter: string | RegExp,
+ callback: (atRule: AtRule, index: number) => false | void
+ ): false | undefined
+ walkAtRules(
+ callback: (atRule: AtRule, index: number) => false | void
+ ): false | undefined
+
+ /**
+ * Traverses the container’s descendant nodes, calling callback
+ * for each comment node.
+ *
+ * Like `Container#each`, this method is safe
+ * to use if you are mutating arrays during iteration.
+ *
+ * ```js
+ * root.walkComments(comment => {
+ * comment.remove()
+ * })
+ * ```
+ *
+ * @param callback Iterator receives each node and index.
+ * @return Returns `false` if iteration was broke.
+ */
+
+ walkComments(
+ callback: (comment: Comment, indexed: number) => false | void
+ ): false | undefined
+ walkComments(
+ callback: (comment: Comment, indexed: number) => false | void
+ ): false | undefined
+
+ /**
+ * Inserts new nodes to the end of the container.
+ *
+ * ```js
+ * const decl1 = new Declaration({ prop: 'color', value: 'black' })
+ * const decl2 = new Declaration({ prop: 'background-color', value: 'white' })
+ * rule.append(decl1, decl2)
+ *
+ * root.append({ name: 'charset', params: '"UTF-8"' }) // at-rule
+ * root.append({ selector: 'a' }) // rule
+ * rule.append({ prop: 'color', value: 'black' }) // declaration
+ * rule.append({ text: 'Comment' }) // comment
+ *
+ * root.append('a {}')
+ * root.first.append('color: black; z-index: 1')
+ * ```
+ *
+ * @param nodes New nodes.
+ * @return This node for methods chain.
+ */
+ append(
+ ...nodes: (Node | Node[] | ChildProps | ChildProps[] | string | string[])[]
+ ): this
+
+ /**
+ * Inserts new nodes to the start of the container.
+ *
+ * ```js
+ * const decl1 = new Declaration({ prop: 'color', value: 'black' })
+ * const decl2 = new Declaration({ prop: 'background-color', value: 'white' })
+ * rule.prepend(decl1, decl2)
+ *
+ * root.append({ name: 'charset', params: '"UTF-8"' }) // at-rule
+ * root.append({ selector: 'a' }) // rule
+ * rule.append({ prop: 'color', value: 'black' }) // declaration
+ * rule.append({ text: 'Comment' }) // comment
+ *
+ * root.append('a {}')
+ * root.first.append('color: black; z-index: 1')
+ * ```
+ *
+ * @param nodes New nodes.
+ * @return This node for methods chain.
+ */
+ prepend(
+ ...nodes: (Node | Node[] | ChildProps | ChildProps[] | string | string[])[]
+ ): this
+
+ /**
+ * Add child to the end of the node.
+ *
+ * ```js
+ * rule.push(new Declaration({ prop: 'color', value: 'black' }))
+ * ```
+ *
+ * @param child New node.
+ * @return This node for methods chain.
+ */
+ push(child: Child): this
+
+ /**
+ * Insert new node before old node within the container.
+ *
+ * ```js
+ * rule.insertBefore(decl, decl.clone({ prop: '-webkit-' + decl.prop }))
+ * ```
+ *
+ * @param oldNode Child or child’s index.
+ * @param newNode New node.
+ * @return This node for methods chain.
+ */
+ insertBefore(
+ oldNode: Child | number,
+ newNode: Child | ChildProps | string | Child[] | ChildProps[] | string[]
+ ): this
+
+ /**
+ * Insert new node after old node within the container.
+ *
+ * @param oldNode Child or child’s index.
+ * @param newNode New node.
+ * @return This node for methods chain.
+ */
+ insertAfter(
+ oldNode: Child | number,
+ newNode: Child | ChildProps | string | Child[] | ChildProps[] | string[]
+ ): this
+
+ /**
+ * Removes node from the container and cleans the parent properties
+ * from the node and its children.
+ *
+ * ```js
+ * rule.nodes.length //=> 5
+ * rule.removeChild(decl)
+ * rule.nodes.length //=> 4
+ * decl.parent //=> undefined
+ * ```
+ *
+ * @param child Child or child’s index.
+ * @return This node for methods chain.
+ */
+ removeChild(child: Child | number): this
+
+ /**
+ * Removes all children from the container
+ * and cleans their parent properties.
+ *
+ * ```js
+ * rule.removeAll()
+ * rule.nodes.length //=> 0
+ * ```
+ *
+ * @return This node for methods chain.
+ */
+ removeAll(): this
+
+ /**
+ * Passes all declaration values within the container that match pattern
+ * through callback, replacing those values with the returned result
+ * of callback.
+ *
+ * This method is useful if you are using a custom unit or function
+ * and need to iterate through all values.
+ *
+ * ```js
+ * root.replaceValues(/\d+rem/, { fast: 'rem' }, string => {
+ * return 15 * parseInt(string) + 'px'
+ * })
+ * ```
+ *
+ * @param pattern Replace pattern.
+ * @param {object} opts Options to speed up the search.
+ * @param callback String to replace pattern or callback
+ * that returns a new value. The callback
+ * will receive the same arguments
+ * as those passed to a function parameter
+ * of `String#replace`.
+ * @return This node for methods chain.
+ */
+ replaceValues(
+ pattern: string | RegExp,
+ options: Container.ValueOptions,
+ replaced: string | { (substring: string, ...args: any[]): string }
+ ): this
+ replaceValues(
+ pattern: string | RegExp,
+ replaced: string | { (substring: string, ...args: any[]): string }
+ ): this
+
+ /**
+ * Returns `true` if callback returns `true`
+ * for all of the container’s children.
+ *
+ * ```js
+ * const noPrefixes = rule.every(i => i.prop[0] !== '-')
+ * ```
+ *
+ * @param condition Iterator returns true or false.
+ * @return Is every child pass condition.
+ */
+ every(
+ condition: (node: Child, index: number, nodes: Child[]) => boolean
+ ): boolean
+
+ /**
+ * Returns `true` if callback returns `true` for (at least) one
+ * of the container’s children.
+ *
+ * ```js
+ * const hasPrefix = rule.some(i => i.prop[0] === '-')
+ * ```
+ *
+ * @param condition Iterator returns true or false.
+ * @return Is some child pass condition.
+ */
+ some(
+ condition: (node: Child, index: number, nodes: Child[]) => boolean
+ ): boolean
+
+ /**
+ * Returns a `child`’s index within the `Container#nodes` array.
+ *
+ * ```js
+ * rule.index( rule.nodes[2] ) //=> 2
+ * ```
+ *
+ * @param child Child of the current container.
+ * @return Child index.
+ */
+ index(child: Child | number): number
+}
+
+declare class Container extends Container_ {}
+
+export = Container
diff --git a/node_modules/postcss/lib/container.js b/node_modules/postcss/lib/container.js
new file mode 100644
index 0000000..0f047be
--- /dev/null
+++ b/node_modules/postcss/lib/container.js
@@ -0,0 +1,439 @@
+'use strict'
+
+let { isClean, my } = require('./symbols')
+let Declaration = require('./declaration')
+let Comment = require('./comment')
+let Node = require('./node')
+
+let parse, Rule, AtRule, Root
+
+function cleanSource(nodes) {
+ return nodes.map(i => {
+ if (i.nodes) i.nodes = cleanSource(i.nodes)
+ delete i.source
+ return i
+ })
+}
+
+function markDirtyUp(node) {
+ node[isClean] = false
+ if (node.proxyOf.nodes) {
+ for (let i of node.proxyOf.nodes) {
+ markDirtyUp(i)
+ }
+ }
+}
+
+class Container extends Node {
+ push(child) {
+ child.parent = this
+ this.proxyOf.nodes.push(child)
+ return this
+ }
+
+ each(callback) {
+ if (!this.proxyOf.nodes) return undefined
+ let iterator = this.getIterator()
+
+ let index, result
+ while (this.indexes[iterator] < this.proxyOf.nodes.length) {
+ index = this.indexes[iterator]
+ result = callback(this.proxyOf.nodes[index], index)
+ if (result === false) break
+
+ this.indexes[iterator] += 1
+ }
+
+ delete this.indexes[iterator]
+ return result
+ }
+
+ walk(callback) {
+ return this.each((child, i) => {
+ let result
+ try {
+ result = callback(child, i)
+ } catch (e) {
+ throw child.addToError(e)
+ }
+ if (result !== false && child.walk) {
+ result = child.walk(callback)
+ }
+
+ return result
+ })
+ }
+
+ walkDecls(prop, callback) {
+ if (!callback) {
+ callback = prop
+ return this.walk((child, i) => {
+ if (child.type === 'decl') {
+ return callback(child, i)
+ }
+ })
+ }
+ if (prop instanceof RegExp) {
+ return this.walk((child, i) => {
+ if (child.type === 'decl' && prop.test(child.prop)) {
+ return callback(child, i)
+ }
+ })
+ }
+ return this.walk((child, i) => {
+ if (child.type === 'decl' && child.prop === prop) {
+ return callback(child, i)
+ }
+ })
+ }
+
+ walkRules(selector, callback) {
+ if (!callback) {
+ callback = selector
+
+ return this.walk((child, i) => {
+ if (child.type === 'rule') {
+ return callback(child, i)
+ }
+ })
+ }
+ if (selector instanceof RegExp) {
+ return this.walk((child, i) => {
+ if (child.type === 'rule' && selector.test(child.selector)) {
+ return callback(child, i)
+ }
+ })
+ }
+ return this.walk((child, i) => {
+ if (child.type === 'rule' && child.selector === selector) {
+ return callback(child, i)
+ }
+ })
+ }
+
+ walkAtRules(name, callback) {
+ if (!callback) {
+ callback = name
+ return this.walk((child, i) => {
+ if (child.type === 'atrule') {
+ return callback(child, i)
+ }
+ })
+ }
+ if (name instanceof RegExp) {
+ return this.walk((child, i) => {
+ if (child.type === 'atrule' && name.test(child.name)) {
+ return callback(child, i)
+ }
+ })
+ }
+ return this.walk((child, i) => {
+ if (child.type === 'atrule' && child.name === name) {
+ return callback(child, i)
+ }
+ })
+ }
+
+ walkComments(callback) {
+ return this.walk((child, i) => {
+ if (child.type === 'comment') {
+ return callback(child, i)
+ }
+ })
+ }
+
+ append(...children) {
+ for (let child of children) {
+ let nodes = this.normalize(child, this.last)
+ for (let node of nodes) this.proxyOf.nodes.push(node)
+ }
+
+ this.markDirty()
+
+ return this
+ }
+
+ prepend(...children) {
+ children = children.reverse()
+ for (let child of children) {
+ let nodes = this.normalize(child, this.first, 'prepend').reverse()
+ for (let node of nodes) this.proxyOf.nodes.unshift(node)
+ for (let id in this.indexes) {
+ this.indexes[id] = this.indexes[id] + nodes.length
+ }
+ }
+
+ this.markDirty()
+
+ return this
+ }
+
+ cleanRaws(keepBetween) {
+ super.cleanRaws(keepBetween)
+ if (this.nodes) {
+ for (let node of this.nodes) node.cleanRaws(keepBetween)
+ }
+ }
+
+ insertBefore(exist, add) {
+ let existIndex = this.index(exist)
+ let type = existIndex === 0 ? 'prepend' : false
+ let nodes = this.normalize(add, this.proxyOf.nodes[existIndex], type).reverse()
+ existIndex = this.index(exist)
+ for (let node of nodes) this.proxyOf.nodes.splice(existIndex, 0, node)
+
+ let index
+ for (let id in this.indexes) {
+ index = this.indexes[id]
+ if (existIndex <= index) {
+ this.indexes[id] = index + nodes.length
+ }
+ }
+
+ this.markDirty()
+
+ return this
+ }
+
+ insertAfter(exist, add) {
+ let existIndex = this.index(exist)
+ let nodes = this.normalize(add, this.proxyOf.nodes[existIndex]).reverse()
+ existIndex = this.index(exist)
+ for (let node of nodes) this.proxyOf.nodes.splice(existIndex + 1, 0, node)
+
+ let index
+ for (let id in this.indexes) {
+ index = this.indexes[id]
+ if (existIndex < index) {
+ this.indexes[id] = index + nodes.length
+ }
+ }
+
+ this.markDirty()
+
+ return this
+ }
+
+ removeChild(child) {
+ child = this.index(child)
+ this.proxyOf.nodes[child].parent = undefined
+ this.proxyOf.nodes.splice(child, 1)
+
+ let index
+ for (let id in this.indexes) {
+ index = this.indexes[id]
+ if (index >= child) {
+ this.indexes[id] = index - 1
+ }
+ }
+
+ this.markDirty()
+
+ return this
+ }
+
+ removeAll() {
+ for (let node of this.proxyOf.nodes) node.parent = undefined
+ this.proxyOf.nodes = []
+
+ this.markDirty()
+
+ return this
+ }
+
+ replaceValues(pattern, opts, callback) {
+ if (!callback) {
+ callback = opts
+ opts = {}
+ }
+
+ this.walkDecls(decl => {
+ if (opts.props && !opts.props.includes(decl.prop)) return
+ if (opts.fast && !decl.value.includes(opts.fast)) return
+
+ decl.value = decl.value.replace(pattern, callback)
+ })
+
+ this.markDirty()
+
+ return this
+ }
+
+ every(condition) {
+ return this.nodes.every(condition)
+ }
+
+ some(condition) {
+ return this.nodes.some(condition)
+ }
+
+ index(child) {
+ if (typeof child === 'number') return child
+ if (child.proxyOf) child = child.proxyOf
+ return this.proxyOf.nodes.indexOf(child)
+ }
+
+ get first() {
+ if (!this.proxyOf.nodes) return undefined
+ return this.proxyOf.nodes[0]
+ }
+
+ get last() {
+ if (!this.proxyOf.nodes) return undefined
+ return this.proxyOf.nodes[this.proxyOf.nodes.length - 1]
+ }
+
+ normalize(nodes, sample) {
+ if (typeof nodes === 'string') {
+ nodes = cleanSource(parse(nodes).nodes)
+ } else if (Array.isArray(nodes)) {
+ nodes = nodes.slice(0)
+ for (let i of nodes) {
+ if (i.parent) i.parent.removeChild(i, 'ignore')
+ }
+ } else if (nodes.type === 'root' && this.type !== 'document') {
+ nodes = nodes.nodes.slice(0)
+ for (let i of nodes) {
+ if (i.parent) i.parent.removeChild(i, 'ignore')
+ }
+ } else if (nodes.type) {
+ nodes = [nodes]
+ } else if (nodes.prop) {
+ if (typeof nodes.value === 'undefined') {
+ throw new Error('Value field is missed in node creation')
+ } else if (typeof nodes.value !== 'string') {
+ nodes.value = String(nodes.value)
+ }
+ nodes = [new Declaration(nodes)]
+ } else if (nodes.selector) {
+ nodes = [new Rule(nodes)]
+ } else if (nodes.name) {
+ nodes = [new AtRule(nodes)]
+ } else if (nodes.text) {
+ nodes = [new Comment(nodes)]
+ } else {
+ throw new Error('Unknown node type in node creation')
+ }
+
+ let processed = nodes.map(i => {
+ /* c8 ignore next */
+ if (!i[my]) Container.rebuild(i)
+ i = i.proxyOf
+ if (i.parent) i.parent.removeChild(i)
+ if (i[isClean]) markDirtyUp(i)
+ if (typeof i.raws.before === 'undefined') {
+ if (sample && typeof sample.raws.before !== 'undefined') {
+ i.raws.before = sample.raws.before.replace(/\S/g, '')
+ }
+ }
+ i.parent = this.proxyOf
+ return i
+ })
+
+ return processed
+ }
+
+ getProxyProcessor() {
+ return {
+ set(node, prop, value) {
+ if (node[prop] === value) return true
+ node[prop] = value
+ if (prop === 'name' || prop === 'params' || prop === 'selector') {
+ node.markDirty()
+ }
+ return true
+ },
+
+ get(node, prop) {
+ if (prop === 'proxyOf') {
+ return node
+ } else if (!node[prop]) {
+ return node[prop]
+ } else if (
+ prop === 'each' ||
+ (typeof prop === 'string' && prop.startsWith('walk'))
+ ) {
+ return (...args) => {
+ return node[prop](
+ ...args.map(i => {
+ if (typeof i === 'function') {
+ return (child, index) => i(child.toProxy(), index)
+ } else {
+ return i
+ }
+ })
+ )
+ }
+ } else if (prop === 'every' || prop === 'some') {
+ return cb => {
+ return node[prop]((child, ...other) =>
+ cb(child.toProxy(), ...other)
+ )
+ }
+ } else if (prop === 'root') {
+ return () => node.root().toProxy()
+ } else if (prop === 'nodes') {
+ return node.nodes.map(i => i.toProxy())
+ } else if (prop === 'first' || prop === 'last') {
+ return node[prop].toProxy()
+ } else {
+ return node[prop]
+ }
+ }
+ }
+ }
+
+ getIterator() {
+ if (!this.lastEach) this.lastEach = 0
+ if (!this.indexes) this.indexes = {}
+
+ this.lastEach += 1
+ let iterator = this.lastEach
+ this.indexes[iterator] = 0
+
+ return iterator
+ }
+}
+
+Container.registerParse = dependant => {
+ parse = dependant
+}
+
+Container.registerRule = dependant => {
+ Rule = dependant
+}
+
+Container.registerAtRule = dependant => {
+ AtRule = dependant
+}
+
+Container.registerRoot = dependant => {
+ Root = dependant
+}
+
+module.exports = Container
+Container.default = Container
+
+/* c8 ignore start */
+Container.rebuild = node => {
+ if (node.type === 'atrule') {
+ Object.setPrototypeOf(node, AtRule.prototype)
+ } else if (node.type === 'rule') {
+ Object.setPrototypeOf(node, Rule.prototype)
+ } else if (node.type === 'decl') {
+ Object.setPrototypeOf(node, Declaration.prototype)
+ } else if (node.type === 'comment') {
+ Object.setPrototypeOf(node, Comment.prototype)
+ } else if (node.type === 'root') {
+ Object.setPrototypeOf(node, Root.prototype)
+ }
+
+ node[my] = true
+
+ if (node.nodes) {
+ node.nodes.forEach(child => {
+ Container.rebuild(child)
+ })
+ }
+}
+/* c8 ignore stop */
diff --git a/node_modules/postcss/lib/css-syntax-error.d.ts b/node_modules/postcss/lib/css-syntax-error.d.ts
new file mode 100644
index 0000000..f89b484
--- /dev/null
+++ b/node_modules/postcss/lib/css-syntax-error.d.ts
@@ -0,0 +1,248 @@
+import { FilePosition } from './input.js'
+
+declare namespace CssSyntaxError {
+ /**
+ * A position that is part of a range.
+ */
+ export interface RangePosition {
+ /**
+ * The line number in the input.
+ */
+ line: number
+
+ /**
+ * The column number in the input.
+ */
+ column: number
+ }
+
+ // eslint-disable-next-line @typescript-eslint/no-use-before-define
+ export { CssSyntaxError_ as default }
+}
+
+/**
+ * The CSS parser throws this error for broken CSS.
+ *
+ * Custom parsers can throw this error for broken custom syntax using
+ * the `Node#error` method.
+ *
+ * PostCSS will use the input source map to detect the original error location.
+ * If you wrote a Sass file, compiled it to CSS and then parsed it with PostCSS,
+ * PostCSS will show the original position in the Sass file.
+ *
+ * If you need the position in the PostCSS input
+ * (e.g., to debug the previous compiler), use `error.input.file`.
+ *
+ * ```js
+ * // Raising error from plugin
+ * throw node.error('Unknown variable', { plugin: 'postcss-vars' })
+ * ```
+ *
+ * ```js
+ * // Catching and checking syntax error
+ * try {
+ * postcss.parse('a{')
+ * } catch (error) {
+ * if (error.name === 'CssSyntaxError') {
+ * error //=> CssSyntaxError
+ * }
+ * }
+ * ```
+ */
+declare class CssSyntaxError_ {
+ /**
+ * Instantiates a CSS syntax error. Can be instantiated for a single position
+ * or for a range.
+ * @param message Error message.
+ * @param lineOrStartPos If for a single position, the line number, or if for
+ * a range, the inclusive start position of the error.
+ * @param columnOrEndPos If for a single position, the column number, or if for
+ * a range, the exclusive end position of the error.
+ * @param source Source code of the broken file.
+ * @param file Absolute path to the broken file.
+ * @param plugin PostCSS plugin name, if error came from plugin.
+ */
+ constructor(
+ message: string,
+ lineOrStartPos?: number | CssSyntaxError.RangePosition,
+ columnOrEndPos?: number | CssSyntaxError.RangePosition,
+ source?: string,
+ file?: string,
+ plugin?: string
+ )
+
+ stack: string
+
+ /**
+ * Always equal to `'CssSyntaxError'`. You should always check error type
+ * by `error.name === 'CssSyntaxError'`
+ * instead of `error instanceof CssSyntaxError`,
+ * because npm could have several PostCSS versions.
+ *
+ * ```js
+ * if (error.name === 'CssSyntaxError') {
+ * error //=> CssSyntaxError
+ * }
+ * ```
+ */
+ name: 'CssSyntaxError'
+
+ /**
+ * Error message.
+ *
+ * ```js
+ * error.message //=> 'Unclosed block'
+ * ```
+ */
+ reason: string
+
+ /**
+ * Full error text in the GNU error format
+ * with plugin, file, line and column.
+ *
+ * ```js
+ * error.message //=> 'a.css:1:1: Unclosed block'
+ * ```
+ */
+ message: string
+
+ /**
+ * Absolute path to the broken file.
+ *
+ * ```js
+ * error.file //=> 'a.sass'
+ * error.input.file //=> 'a.css'
+ * ```
+ *
+ * PostCSS will use the input source map to detect the original location.
+ * If you need the position in the PostCSS input, use `error.input.file`.
+ */
+ file?: string
+
+ /**
+ * Source line of the error.
+ *
+ * ```js
+ * error.line //=> 2
+ * error.input.line //=> 4
+ * ```
+ *
+ * PostCSS will use the input source map to detect the original location.
+ * If you need the position in the PostCSS input, use `error.input.line`.
+ */
+ line?: number
+
+ /**
+ * Source column of the error.
+ *
+ * ```js
+ * error.column //=> 1
+ * error.input.column //=> 4
+ * ```
+ *
+ * PostCSS will use the input source map to detect the original location.
+ * If you need the position in the PostCSS input, use `error.input.column`.
+ */
+ column?: number
+
+ /**
+ * Source line of the error's end, exclusive. Provided if the error pertains
+ * to a range.
+ *
+ * ```js
+ * error.endLine //=> 3
+ * error.input.endLine //=> 4
+ * ```
+ *
+ * PostCSS will use the input source map to detect the original location.
+ * If you need the position in the PostCSS input, use `error.input.endLine`.
+ */
+ endLine?: number
+
+ /**
+ * Source column of the error's end, exclusive. Provided if the error pertains
+ * to a range.
+ *
+ * ```js
+ * error.endColumn //=> 1
+ * error.input.endColumn //=> 4
+ * ```
+ *
+ * PostCSS will use the input source map to detect the original location.
+ * If you need the position in the PostCSS input, use `error.input.endColumn`.
+ */
+ endColumn?: number
+
+ /**
+ * Source code of the broken file.
+ *
+ * ```js
+ * error.source //=> 'a { b {} }'
+ * error.input.source //=> 'a b { }'
+ * ```
+ */
+ source?: string
+
+ /**
+ * Plugin name, if error came from plugin.
+ *
+ * ```js
+ * error.plugin //=> 'postcss-vars'
+ * ```
+ */
+ plugin?: string
+
+ /**
+ * Input object with PostCSS internal information
+ * about input file. If input has source map
+ * from previous tool, PostCSS will use origin
+ * (for example, Sass) source. You can use this
+ * object to get PostCSS input source.
+ *
+ * ```js
+ * error.input.file //=> 'a.css'
+ * error.file //=> 'a.sass'
+ * ```
+ */
+ input?: FilePosition
+
+ /**
+ * Returns error position, message and source code of the broken part.
+ *
+ * ```js
+ * error.toString() //=> "CssSyntaxError: app.css:1:1: Unclosed block
+ * // > 1 | a {
+ * // | ^"
+ * ```
+ *
+ * @return Error position, message and source code.
+ */
+ toString(): string
+
+ /**
+ * Returns a few lines of CSS source that caused the error.
+ *
+ * If the CSS has an input source map without `sourceContent`,
+ * this method will return an empty string.
+ *
+ * ```js
+ * error.showSourceCode() //=> " 4 | }
+ * // 5 | a {
+ * // > 6 | bad
+ * // | ^
+ * // 7 | }
+ * // 8 | b {"
+ * ```
+ *
+ * @param color Whether arrow will be colored red by terminal
+ * color codes. By default, PostCSS will detect
+ * color support by `process.stdout.isTTY`
+ * and `process.env.NODE_DISABLE_COLORS`.
+ * @return Few lines of CSS source that caused the error.
+ */
+ showSourceCode(color?: boolean): string
+}
+
+declare class CssSyntaxError extends CssSyntaxError_ {}
+
+export = CssSyntaxError
diff --git a/node_modules/postcss/lib/css-syntax-error.js b/node_modules/postcss/lib/css-syntax-error.js
new file mode 100644
index 0000000..d6b369b
--- /dev/null
+++ b/node_modules/postcss/lib/css-syntax-error.js
@@ -0,0 +1,100 @@
+'use strict'
+
+let pico = require('picocolors')
+
+let terminalHighlight = require('./terminal-highlight')
+
+class CssSyntaxError extends Error {
+ constructor(message, line, column, source, file, plugin) {
+ super(message)
+ this.name = 'CssSyntaxError'
+ this.reason = message
+
+ if (file) {
+ this.file = file
+ }
+ if (source) {
+ this.source = source
+ }
+ if (plugin) {
+ this.plugin = plugin
+ }
+ if (typeof line !== 'undefined' && typeof column !== 'undefined') {
+ if (typeof line === 'number') {
+ this.line = line
+ this.column = column
+ } else {
+ this.line = line.line
+ this.column = line.column
+ this.endLine = column.line
+ this.endColumn = column.column
+ }
+ }
+
+ this.setMessage()
+
+ if (Error.captureStackTrace) {
+ Error.captureStackTrace(this, CssSyntaxError)
+ }
+ }
+
+ setMessage() {
+ this.message = this.plugin ? this.plugin + ': ' : ''
+ this.message += this.file ? this.file : ''
+ if (typeof this.line !== 'undefined') {
+ this.message += ':' + this.line + ':' + this.column
+ }
+ this.message += ': ' + this.reason
+ }
+
+ showSourceCode(color) {
+ if (!this.source) return ''
+
+ let css = this.source
+ if (color == null) color = pico.isColorSupported
+ if (terminalHighlight) {
+ if (color) css = terminalHighlight(css)
+ }
+
+ let lines = css.split(/\r?\n/)
+ let start = Math.max(this.line - 3, 0)
+ let end = Math.min(this.line + 2, lines.length)
+
+ let maxWidth = String(end).length
+
+ let mark, aside
+ if (color) {
+ let { bold, red, gray } = pico.createColors(true)
+ mark = text => bold(red(text))
+ aside = text => gray(text)
+ } else {
+ mark = aside = str => str
+ }
+
+ return lines
+ .slice(start, end)
+ .map((line, index) => {
+ let number = start + 1 + index
+ let gutter = ' ' + (' ' + number).slice(-maxWidth) + ' | '
+ if (number === this.line) {
+ let spacing =
+ aside(gutter.replace(/\d/g, ' ')) +
+ line.slice(0, this.column - 1).replace(/[^\t]/g, ' ')
+ return mark('>') + aside(gutter) + line + '\n ' + spacing + mark('^')
+ }
+ return ' ' + aside(gutter) + line
+ })
+ .join('\n')
+ }
+
+ toString() {
+ let code = this.showSourceCode()
+ if (code) {
+ code = '\n\n' + code + '\n'
+ }
+ return this.name + ': ' + this.message + code
+ }
+}
+
+module.exports = CssSyntaxError
+CssSyntaxError.default = CssSyntaxError
diff --git a/node_modules/postcss/lib/declaration.d.ts b/node_modules/postcss/lib/declaration.d.ts
new file mode 100644
index 0000000..c9984a4
--- /dev/null
+++ b/node_modules/postcss/lib/declaration.d.ts
@@ -0,0 +1,133 @@
+import Container from './container.js'
+import Node from './node.js'
+
+declare namespace Declaration {
+ export interface DeclarationRaws extends Record {
+ /**
+ * The space symbols before the node. It also stores `*`
+ * and `_` symbols before the declaration (IE hack).
+ */
+ before?: string
+
+ /**
+ * The symbols between the property and value for declarations.
+ */
+ between?: string
+
+ /**
+ * The content of the important statement, if it is not just `!important`.
+ */
+ important?: string
+
+ /**
+ * Declaration value with comments.
+ */
+ value?: {
+ value: string
+ raw: string
+ }
+ }
+
+ export interface DeclarationProps {
+ /** Name of the declaration. */
+ prop: string
+ /** Value of the declaration. */
+ value: string
+ /** Whether the declaration has an `!important` annotation. */
+ important?: boolean
+ /** Information used to generate byte-to-byte equal node string as it was in the origin input. */
+ raws?: DeclarationRaws
+ }
+
+ // eslint-disable-next-line @typescript-eslint/no-use-before-define
+ export { Declaration_ as default }
+}
+
+/**
+ * Represents a CSS declaration.
+ *
+ * ```js
+ * Once (root, { Declaration }) {
+ * let color = new Declaration({ prop: 'color', value: 'black' })
+ * root.append(color)
+ * }
+ * ```
+ *
+ * ```js
+ * const root = postcss.parse('a { color: black }')
+ * const decl = root.first.first
+ * decl.type //=> 'decl'
+ * decl.toString() //=> ' color: black'
+ * ```
+ */
+declare class Declaration_ extends Node {
+ type: 'decl'
+ parent: Container | undefined
+ raws: Declaration.DeclarationRaws
+
+ /**
+ * The declaration's property name.
+ *
+ * ```js
+ * const root = postcss.parse('a { color: black }')
+ * const decl = root.first.first
+ * decl.prop //=> 'color'
+ * ```
+ */
+ prop: string
+
+ /**
+ * The declaration’s value.
+ *
+ * This value will be cleaned of comments. If the source value contained
+ * comments, those comments will be available in the `raws` property.
+ * If you have not changed the value, the result of `decl.toString()`
+ * will include the original raws value (comments and all).
+ *
+ * ```js
+ * const root = postcss.parse('a { color: black }')
+ * const decl = root.first.first
+ * decl.value //=> 'black'
+ * ```
+ */
+ value: string
+
+ /**
+ * `true` if the declaration has an `!important` annotation.
+ *
+ * ```js
+ * const root = postcss.parse('a { color: black !important; color: red }')
+ * root.first.first.important //=> true
+ * root.first.last.important //=> undefined
+ * ```
+ */
+ important: boolean
+
+ /**
+ * `true` if declaration is declaration of CSS Custom Property
+ * or Sass variable.
+ *
+ * ```js
+ * const root = postcss.parse(':root { --one: 1 }')
+ * let one = root.first.first
+ * one.variable //=> true
+ * ```
+ *
+ * ```js
+ * const root = postcss.parse('$one: 1')
+ * let one = root.first
+ * one.variable //=> true
+ * ```
+ */
+ variable: boolean
+
+ constructor(defaults?: Declaration.DeclarationProps)
+ assign(overrides: object | Declaration.DeclarationProps): this
+ clone(overrides?: Partial): this
+ cloneBefore(overrides?: Partial): this
+ cloneAfter(overrides?: Partial): this
+}
+
+declare class Declaration extends Declaration_ {}
+
+export = Declaration
diff --git a/node_modules/postcss/lib/declaration.js b/node_modules/postcss/lib/declaration.js
new file mode 100644
index 0000000..a04bdec
--- /dev/null
+++ b/node_modules/postcss/lib/declaration.js
@@ -0,0 +1,24 @@
+'use strict'
+
+let Node = require('./node')
+
+class Declaration extends Node {
+ constructor(defaults) {
+ if (
+ defaults &&
+ typeof defaults.value !== 'undefined' &&
+ typeof defaults.value !== 'string'
+ ) {
+ defaults = { ...defaults, value: String(defaults.value) }
+ }
+ super(defaults)
+ this.type = 'decl'
+ }
+
+ get variable() {
+ return this.prop.startsWith('--') || this.prop[0] === '$'
+ }
+}
+
+module.exports = Declaration
+Declaration.default = Declaration
diff --git a/node_modules/postcss/lib/document.d.ts b/node_modules/postcss/lib/document.d.ts
new file mode 100644
index 0000000..7afb374
--- /dev/null
+++ b/node_modules/postcss/lib/document.d.ts
@@ -0,0 +1,63 @@
+import Container, { ContainerProps } from './container.js'
+import { ProcessOptions } from './postcss.js'
+import Result from './result.js'
+import Root from './root.js'
+
+declare namespace Document {
+ export interface DocumentProps extends ContainerProps {
+ nodes?: Root[]
+
+ /**
+ * Information to generate byte-to-byte equal node string as it was
+ * in the origin input.
+ *
+ * Every parser saves its own properties.
+ */
+ raws?: Record
+ }
+
+ // eslint-disable-next-line @typescript-eslint/no-use-before-define
+ export { Document_ as default }
+}
+
+/**
+ * Represents a file and contains all its parsed nodes.
+ *
+ * **Experimental:** some aspects of this node could change within minor
+ * or patch version releases.
+ *
+ * ```js
+ * const document = htmlParser(
+ * ''
+ * )
+ * document.type //=> 'document'
+ * document.nodes.length //=> 2
+ * ```
+ */
+declare class Document_ extends Container