diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..2dc8fd2 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,12 @@ +root = true + +[*] +indent_style = space +indent_size = 4 +end_of_line = lf +charset = utf-8 +insert_final_newline = true +trim_trailing_whitespace = true + +[*.md] +trim_trailing_whitespace = false diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..0d0c1af --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,12 @@ +name : CI +on : [push, pull_request] +jobs : + linting: + name : "Linting" + runs-on : ubuntu-latest + steps : + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 + with: { node-version: '18' } + - run: yarn install --non-interactive --pure-lockfile + - run: yarn lint --max-warnings 0 --color diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..2ccbe46 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/node_modules/ diff --git a/.npmignore b/.npmignore new file mode 100644 index 0000000..e5120a2 --- /dev/null +++ b/.npmignore @@ -0,0 +1,4 @@ +/.* + +**/*.md +**/*.lock diff --git a/.stylelintrc.json b/.stylelintrc.json new file mode 100644 index 0000000..14bf291 --- /dev/null +++ b/.stylelintrc.json @@ -0,0 +1,8 @@ +{ + "extends": "@pulsanova/stylelint-config-scss", + "rules": { + "scss/dollar-variable-default": [true, { + "ignore": "local" + }] + } +} diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..c04a19d --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2020-2021 Phosphor Icons + +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/README.md b/README.md new file mode 100644 index 0000000..0f44ad3 --- /dev/null +++ b/README.md @@ -0,0 +1,14 @@ +# @pulsanova/icons + +> An icon set, ready to be used in SCSS (entirely based on Phosphor icons) +> _(See `./package.json` for the exact version of Phosphor on which this project is based)_ + +## Installation + +```bash +# - NPM +npm install @pulsanova/icons + +# - Yarn +yarn add @pulsanova/icons +``` diff --git a/package.json b/package.json new file mode 100644 index 0000000..d68feef --- /dev/null +++ b/package.json @@ -0,0 +1,19 @@ +{ + "name": "@pulsanova/icons", + "version": "1.0.0", + "description": "An icon set, ready to be used in SCSS (entirely based on Phosphor icons)", + "style": "style/index.scss", + "homepage": "https://github.com/Pulsanova/Icons", + "repository": "git@github.com:Pulsanova/Icons.git", + "license": "MIT", + "scripts": { + "lint": "stylelint './**/*.scss'" + }, + "dependencies": { + "@phosphor-icons/web": "~2.1.1" + }, + "devDependencies": { + "@pulsanova/stylelint-config-scss": "~2.0.1", + "stylelint": "~14.1.0" + } +} diff --git a/style/_fonts.scss b/style/_fonts.scss new file mode 100644 index 0000000..6b4dfbc --- /dev/null +++ b/style/_fonts.scss @@ -0,0 +1,68 @@ +@use './variables' as *; + +// - Thin +@font-face { + font-family: Phosphor; + font-weight: 100; + font-style: normal; + font-display: block; + src: + url('#{$font-root-path}/thin/Phosphor-Thin.woff2') format('woff2'), + url('#{$font-root-path}/thin/Phosphor-Thin.woff') format('woff'); +} + +// - Light +@font-face { + font-family: Phosphor; + font-weight: 300; + font-style: normal; + font-display: block; + src: + url('#{$font-root-path}/light/Phosphor-Light.woff2') format('woff2'), + url('#{$font-root-path}/light/Phosphor-Light.woff') format('woff'); +} + +// - Regular +@font-face { + font-family: Phosphor; + font-weight: 400; + font-style: normal; + font-display: block; + src: + url('#{$font-root-path}/regular/Phosphor.woff2') format('woff2'), + url('#{$font-root-path}/regular/Phosphor.woff') format('woff'); +} + +// - Bold +@font-face { + font-family: Phosphor; + font-weight: 800; + font-style: normal; + font-display: block; + src: + url('#{$font-root-path}/bold/Phosphor-Bold.woff2') format('woff2'), + url('#{$font-root-path}/bold/Phosphor-Bold.woff') format('woff'); +} + +// - Fill +@font-face { + font-family: Phosphor; + font-weight: 900; + font-style: normal; + font-display: block; + src: + url('#{$font-root-path}/fill/Phosphor-Fill.woff2') format('woff2'), + url('#{$font-root-path}/fill/Phosphor-Fill.woff') format('woff'); +} + +// - Duotone +@font-face { + // stylelint-disable-next-line font-family-name-quotes + font-family: 'Phosphor-Duotone'; + font-weight: 400; + font-style: normal; + font-display: block; + src: + url('#{$font-root-path}/duotone/Phosphor-Duotone.woff2') format('woff2'), + url('#{$font-root-path}/duotone/Phosphor-Duotone.woff') format('woff'); +} diff --git a/style/_global.scss b/style/_global.scss new file mode 100644 index 0000000..b70de87 --- /dev/null +++ b/style/_global.scss @@ -0,0 +1,2 @@ +@forward './variables'; +@forward './mixins'; diff --git a/style/_mixins.scss b/style/_mixins.scss new file mode 100644 index 0000000..10b79a4 --- /dev/null +++ b/style/_mixins.scss @@ -0,0 +1,172 @@ +@use './variables' as *; +@use 'sass:meta'; +@use 'sass:list'; +@use 'sass:map'; + +// +// - Placeholders +// + +/// Provide the base code for using the icon font. +%icon-font { + /* stylelint-disable font-family-no-missing-generic-family-keyword */ + // stylelint-disable-next-line declaration-no-important -- To prevent issues with browser extensions that change fonts. + font-family: Phosphor !important; + font-style: normal; + line-height: 1; + font-variant: normal; + speak: never; + text-transform: none; + text-rendering: auto; + word-wrap: normal; + white-space: nowrap; + + // - Enable Ligatures. + // stylelint-disable-next-line order/properties-order + letter-spacing: 0; + font-feature-settings: 'liga' 1; + font-variant-ligatures: discretionary-ligatures; + + // - Improve font rendering. + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + /* stylelint-enable font-family-no-missing-generic-family-keyword */ +} + +%icon-font-duotone { + /* stylelint-disable font-family-no-missing-generic-family-keyword */ + // stylelint-disable-next-line declaration-no-important -- To prevent issues with browser extensions that change fonts. + font-family: Phosphor-Duotone !important; + font-weight: 400; + font-style: normal; + line-height: 1; + font-variant: normal; + text-transform: none; + speak: never; + + // - Improve font rendering. + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + /* stylelint-enable font-family-no-missing-generic-family-keyword */ +} + +// +// - Functions +// + +/// Retrieves the code linked to the name of an icon. +/// +/// @example scss +/// icon-code('plus'); +/// // => '\e3d4' +/// +/// @link https://phosphoricons.com/ For the list of supported codes. +/// +/// @param {String} $icon The name of an icon +/// @return {String} Icon code if found, the name as is if not. +/// +@function code($icon) { + @if map.has-key($list, $icon) { + @return map.get($list, $icon); + } + @if map.has-key($brand-list, $icon) { + @return map.get($brand-list, $icon); + } + @return $icon; +} + +// +// - Mixins +// + +/// Helper to add an icon as a `::before` or `::after` pseudo-element. +/// +/// @param {String} $icon The name of the icon (e.g. `plus`) +/// @param {String} $variant The variant to use ("fill", "bold", "regular" (default), "light", "thin" or "duotone") +/// @param {Boolean} $after [false] If `true` the icon will be added after, otherwise before. +/// If the variant is not duotone, the `::before` or `::after` pseudo-elements +/// will be used according to this parameter, otherwise the icon will be placed +/// in the right place, but both pseudo-elements will be used. +/// @content Any other properties to be added to the pseudo-element. +/// @output The selected pseudo-element with the requested icon, ready to be displayed. +@mixin icon($icon, $variant: 'regular', $after: false) { + $weight: 400; + + @if (meta.type-of($variant) == bool) { + $after: $variant; + $variant: 'regular'; + } + + @if ($variant != 'duotone') { + $variant-map: ( fill: 900, bold: 800, regular: 400, light: 300, thin: 100 ); + @if (map.has-key($variant-map, $variant)) { + $weight: map.get($variant-map, $variant); + } @else { + @warn 'Invalid icon variant: #{$variant}'; + } + } @else if (map.has-key($duotone-list, $icon) == false) { + @error 'The #{$icon} icon does not exist in duotone icons.'; + } + + @if ($variant == 'duotone') { + position: relative; + + // @if ($after) { + // padding-right: 1.25em; + // } @else { + // padding-left: 1.25em; + // } + + &::before { + color: $duotone-secondary-color; + opacity: $duotone-secondary-opacity; + } + + &::after { + margin-left: -1em; + color: $duotone-primary-color; + } + } + + @each $pseudoElement in ('before', 'after') { + $should-add-pseudo-element: ( + ($variant == 'duotone') or + ($pseudoElement == 'before' and $after == false) or + ($pseudoElement == 'after' and $after) + ); + + $icon-code: code($icon); + @if ($variant == 'duotone') { + $icon-code: list.nth( + map.get($duotone-list, $icon), + if($pseudoElement == 'before', 1, 2) + ); + } + + @if ($should-add-pseudo-element) { + &::#{$pseudoElement} { + @if ($variant == 'duotone') { + @extend %icon-font-duotone; + + // position: absolute; + // top: 50%; + // width: 1.25em; + // text-align: center; + // transform: translateY(-50%); + + @if ($after) { + right: 0; + } @else { + left: 0; + } + } @else { + @extend %icon-font; + } + + content: $icon-code; + font-weight: $weight; + @content; + } + } + } +} diff --git a/style/_variables.scss b/style/_variables.scss new file mode 100644 index 0000000..1b7933e --- /dev/null +++ b/style/_variables.scss @@ -0,0 +1,3068 @@ +/// Path to the font files root directory. +/// @type String +$font-root-path: '~@phosphor-icons/web/src' !default; + +/// Primary color used for duotone icons. +/// @type Color +$duotone-primary-color: inherit !default; + +/// Secondary color used for duotone icons. +/// @type Color +$duotone-secondary-color: inherit !default; + +/// Secondary opacity used for duotone icons. +/// @type Number +$duotone-secondary-opacity: 0.2 !default; + +// Phosphor Icons v2.1.1 +/* stylelint-disable scss/dollar-variable-default */ +$list: ( + acorn: '\eb9a', + address-book: '\e6f8', + address-book-tabs: '\ee4e', + air-traffic-control: '\ecd8', + airplane: '\e002', + airplane-in-flight: '\e4fe', + airplane-landing: '\e502', + airplane-takeoff: '\e504', + airplane-taxiing: '\e500', + airplane-tilt: '\e5d6', + airplay: '\e004', + alarm: '\e006', + alien: '\e8a6', + align-bottom: '\e506', + align-bottom-simple: '\eb0c', + align-center-horizontal: '\e50a', + align-center-horizontal-simple: '\eb0e', + align-center-vertical: '\e50c', + align-center-vertical-simple: '\eb10', + align-left: '\e50e', + align-left-simple: '\eaee', + align-right: '\e510', + align-right-simple: '\eb12', + align-top: '\e512', + align-top-simple: '\eb14', + amazon-logo: '\e96c', + ambulance: '\e572', + anchor: '\e514', + anchor-simple: '\e5d8', + android-logo: '\e008', + angle: '\e7bc', + angular-logo: '\eb80', + aperture: '\e00a', + app-store-logo: '\e974', + app-window: '\e5da', + apple-logo: '\e516', + apple-podcasts-logo: '\eb96', + approximate-equals: '\edaa', + archive: '\e00c', + armchair: '\e012', + arrow-arc-left: '\e014', + arrow-arc-right: '\e016', + arrow-bend-double-up-left: '\e03a', + arrow-bend-double-up-right: '\e03c', + arrow-bend-down-left: '\e018', + arrow-bend-down-right: '\e01a', + arrow-bend-left-down: '\e01c', + arrow-bend-left-up: '\e01e', + arrow-bend-right-down: '\e020', + arrow-bend-right-up: '\e022', + arrow-bend-up-left: '\e024', + arrow-bend-up-right: '\e026', + arrow-circle-down: '\e028', + arrow-circle-down-left: '\e02a', + arrow-circle-down-right: '\e02c', + arrow-circle-left: '\e05a', + arrow-circle-right: '\e02e', + arrow-circle-up: '\e030', + arrow-circle-up-left: '\e032', + arrow-circle-up-right: '\e034', + arrow-clockwise: '\e036', + arrow-counter-clockwise: '\e038', + arrow-down: '\e03e', + arrow-down-left: '\e040', + arrow-down-right: '\e042', + arrow-elbow-down-left: '\e044', + arrow-elbow-down-right: '\e046', + arrow-elbow-left: '\e048', + arrow-elbow-left-down: '\e04a', + arrow-elbow-left-up: '\e04c', + arrow-elbow-right: '\e04e', + arrow-elbow-right-down: '\e050', + arrow-elbow-right-up: '\e052', + arrow-elbow-up-left: '\e054', + arrow-elbow-up-right: '\e056', + arrow-fat-down: '\e518', + arrow-fat-left: '\e51a', + arrow-fat-line-down: '\e51c', + arrow-fat-line-left: '\e51e', + arrow-fat-line-right: '\e520', + arrow-fat-line-up: '\e522', + arrow-fat-lines-down: '\e524', + arrow-fat-lines-left: '\e526', + arrow-fat-lines-right: '\e528', + arrow-fat-lines-up: '\e52a', + arrow-fat-right: '\e52c', + arrow-fat-up: '\e52e', + arrow-left: '\e058', + arrow-line-down: '\e05c', + arrow-line-down-left: '\e05e', + arrow-line-down-right: '\e060', + arrow-line-left: '\e062', + arrow-line-right: '\e064', + arrow-line-up: '\e066', + arrow-line-up-left: '\e068', + arrow-line-up-right: '\e06a', + arrow-right: '\e06c', + arrow-square-down: '\e06e', + arrow-square-down-left: '\e070', + arrow-square-down-right: '\e072', + arrow-square-in: '\e5dc', + arrow-square-left: '\e074', + arrow-square-out: '\e5de', + arrow-square-right: '\e076', + arrow-square-up: '\e078', + arrow-square-up-left: '\e07a', + arrow-square-up-right: '\e07c', + arrow-u-down-left: '\e07e', + arrow-u-down-right: '\e080', + arrow-u-left-down: '\e082', + arrow-u-left-up: '\e084', + arrow-u-right-down: '\e086', + arrow-u-right-up: '\e088', + arrow-u-up-left: '\e08a', + arrow-u-up-right: '\e08c', + arrow-up: '\e08e', + arrow-up-left: '\e090', + arrow-up-right: '\e092', + arrows-clockwise: '\e094', + arrows-counter-clockwise: '\e096', + arrows-down-up: '\e098', + arrows-horizontal: '\eb06', + arrows-in: '\e09a', + arrows-in-cardinal: '\e09c', + arrows-in-line-horizontal: '\e530', + arrows-in-line-vertical: '\e532', + arrows-in-simple: '\e09e', + arrows-left-right: '\e0a0', + arrows-merge: '\ed3e', + arrows-out: '\e0a2', + arrows-out-cardinal: '\e0a4', + arrows-out-line-horizontal: '\e534', + arrows-out-line-vertical: '\e536', + arrows-out-simple: '\e0a6', + arrows-split: '\ed3c', + arrows-vertical: '\eb04', + article: '\e0a8', + article-medium: '\e5e0', + article-ny-times: '\e5e2', + asclepius: '\ee34', + caduceus: '\ee34', + asterisk: '\e0aa', + asterisk-simple: '\e832', + at: '\e0ac', + atom: '\e5e4', + avocado: '\ee04', + axe: '\e9fc', + baby: '\e774', + baby-carriage: '\e818', + backpack: '\e922', + backspace: '\e0ae', + bag: '\e0b0', + bag-simple: '\e5e6', + balloon: '\e76c', + bandaids: '\e0b2', + bank: '\e0b4', + barbell: '\e0b6', + barcode: '\e0b8', + barn: '\ec72', + barricade: '\e948', + baseball: '\e71a', + baseball-cap: '\ea28', + baseball-helmet: '\ee4a', + basket: '\e964', + basketball: '\e724', + bathtub: '\e81e', + battery-charging: '\e0ba', + battery-charging-vertical: '\e0bc', + battery-empty: '\e0be', + battery-full: '\e0c0', + battery-high: '\e0c2', + battery-low: '\e0c4', + battery-medium: '\e0c6', + battery-plus: '\e808', + battery-plus-vertical: '\ec50', + battery-vertical-empty: '\e7c6', + battery-vertical-full: '\e7c4', + battery-vertical-high: '\e7c2', + battery-vertical-low: '\e7be', + battery-vertical-medium: '\e7c0', + battery-warning: '\e0c8', + battery-warning-vertical: '\e0ca', + beach-ball: '\ed24', + beanie: '\ea2a', + bed: '\e0cc', + beer-bottle: '\e7b0', + beer-stein: '\eb62', + behance-logo: '\e7f4', + bell: '\e0ce', + bell-ringing: '\e5e8', + bell-simple: '\e0d0', + bell-simple-ringing: '\e5ea', + bell-simple-slash: '\e0d2', + bell-simple-z: '\e5ec', + bell-slash: '\e0d4', + bell-z: '\e5ee', + belt: '\ea2c', + bezier-curve: '\eb00', + bicycle: '\e0d6', + binary: '\ee60', + binoculars: '\ea64', + biohazard: '\e9e0', + bird: '\e72c', + blueprint: '\eda0', + bluetooth: '\e0da', + bluetooth-connected: '\e0dc', + bluetooth-slash: '\e0de', + bluetooth-x: '\e0e0', + boat: '\e786', + bomb: '\ee0a', + bone: '\e7f2', + book: '\e0e2', + book-bookmark: '\e0e4', + book-open: '\e0e6', + book-open-text: '\e8f2', + book-open-user: '\ede0', + bookmark: '\e0e8', + bookmark-simple: '\e0ea', + bookmarks: '\e0ec', + bookmarks-simple: '\e5f0', + books: '\e758', + boot: '\ecca', + boules: '\e722', + bounding-box: '\e6ce', + bowl-food: '\eaa4', + bowl-steam: '\e8e4', + bowling-ball: '\ea34', + box-arrow-down: '\e00e', + archive-box: '\e00e', + box-arrow-up: '\ee54', + boxing-glove: '\ea36', + brackets-angle: '\e862', + brackets-curly: '\e860', + brackets-round: '\e864', + brackets-square: '\e85e', + brain: '\e74e', + brandy: '\e6b4', + bread: '\e81c', + bridge: '\ea68', + briefcase: '\e0ee', + briefcase-metal: '\e5f2', + broadcast: '\e0f2', + broom: '\ec54', + browser: '\e0f4', + browsers: '\e0f6', + bug: '\e5f4', + bug-beetle: '\e5f6', + bug-droid: '\e5f8', + building: '\e100', + building-apartment: '\e0fe', + building-office: '\e0ff', + buildings: '\e102', + bulldozer: '\ec6c', + bus: '\e106', + butterfly: '\ea6e', + cable-car: '\e49c', + cactus: '\e918', + cake: '\e780', + calculator: '\e538', + calendar: '\e108', + calendar-blank: '\e10a', + calendar-check: '\e712', + calendar-dot: '\e7b2', + calendar-dots: '\e7b4', + calendar-heart: '\e8b0', + calendar-minus: '\ea14', + calendar-plus: '\e714', + calendar-slash: '\ea12', + calendar-star: '\e8b2', + calendar-x: '\e10c', + call-bell: '\e7de', + camera: '\e10e', + camera-plus: '\ec58', + camera-rotate: '\e7a4', + camera-slash: '\e110', + campfire: '\e9d8', + car: '\e112', + car-battery: '\ee30', + car-profile: '\e8cc', + car-simple: '\e114', + cardholder: '\e5fa', + cards: '\e0f8', + cards-three: '\ee50', + caret-circle-double-down: '\e116', + caret-circle-double-left: '\e118', + caret-circle-double-right: '\e11a', + caret-circle-double-up: '\e11c', + caret-circle-down: '\e11e', + caret-circle-left: '\e120', + caret-circle-right: '\e122', + caret-circle-up: '\e124', + caret-circle-up-down: '\e13e', + caret-double-down: '\e126', + caret-double-left: '\e128', + caret-double-right: '\e12a', + caret-double-up: '\e12c', + caret-down: '\e136', + caret-left: '\e138', + caret-line-down: '\e134', + caret-line-left: '\e132', + caret-line-right: '\e130', + caret-line-up: '\e12e', + caret-right: '\e13a', + caret-up: '\e13c', + caret-up-down: '\e140', + carrot: '\ed38', + cash-register: '\ed80', + cassette-tape: '\ed2e', + castle-turret: '\e9d0', + cat: '\e748', + cell-signal-full: '\e142', + cell-signal-high: '\e144', + cell-signal-low: '\e146', + cell-signal-medium: '\e148', + cell-signal-none: '\e14a', + cell-signal-slash: '\e14c', + cell-signal-x: '\e14e', + cell-tower: '\ebaa', + certificate: '\e766', + chair: '\e950', + chalkboard: '\e5fc', + chalkboard-simple: '\e5fe', + chalkboard-teacher: '\e600', + champagne: '\eaca', + charging-station: '\e8d0', + chart-bar: '\e150', + chart-bar-horizontal: '\e152', + chart-donut: '\eaa6', + chart-line: '\e154', + chart-line-down: '\e8b6', + chart-line-up: '\e156', + chart-pie: '\e158', + chart-pie-slice: '\e15a', + chart-polar: '\eaa8', + chart-scatter: '\eaac', + chat: '\e15c', + chat-centered: '\e160', + chat-centered-dots: '\e164', + chat-centered-slash: '\e162', + chat-centered-text: '\e166', + chat-circle: '\e168', + chat-circle-dots: '\e16c', + chat-circle-slash: '\e16a', + chat-circle-text: '\e16e', + chat-dots: '\e170', + chat-slash: '\e15e', + chat-teardrop: '\e172', + chat-teardrop-dots: '\e176', + chat-teardrop-slash: '\e174', + chat-teardrop-text: '\e178', + chat-text: '\e17a', + chats: '\e17c', + chats-circle: '\e17e', + chats-teardrop: '\e180', + check: '\e182', + check-circle: '\e184', + check-fat: '\eba6', + check-square: '\e186', + check-square-offset: '\e188', + checkerboard: '\e8c4', + checks: '\e53a', + cheers: '\ea4a', + cheese: '\e9fe', + chef-hat: '\ed8e', + cherries: '\e830', + church: '\ecea', + cigarette: '\ed90', + cigarette-slash: '\ed92', + circle: '\e18a', + circle-dashed: '\e602', + circle-half: '\e18c', + circle-half-tilt: '\e18e', + circle-notch: '\eb44', + circles-four: '\e190', + circles-three: '\e192', + circles-three-plus: '\e194', + circuitry: '\e9c2', + city: '\ea6a', + clipboard: '\e196', + clipboard-text: '\e198', + clock: '\e19a', + clock-afternoon: '\e19c', + clock-clockwise: '\e19e', + clock-countdown: '\ed2c', + clock-counter-clockwise: '\e1a0', + clock-user: '\edec', + closed-captioning: '\e1a4', + cloud: '\e1aa', + cloud-arrow-down: '\e1ac', + cloud-arrow-up: '\e1ae', + cloud-check: '\e1b0', + cloud-fog: '\e53c', + cloud-lightning: '\e1b2', + cloud-moon: '\e53e', + cloud-rain: '\e1b4', + cloud-slash: '\e1b6', + cloud-snow: '\e1b8', + cloud-sun: '\e540', + cloud-warning: '\ea98', + cloud-x: '\ea96', + clover: '\edc8', + club: '\e1ba', + coat-hanger: '\e7fe', + coda-logo: '\e7ce', + code: '\e1bc', + code-block: '\eafe', + code-simple: '\e1be', + codepen-logo: '\e978', + codesandbox-logo: '\ea06', + coffee: '\e1c2', + coffee-bean: '\e1c0', + coin: '\e60e', + coin-vertical: '\eb48', + coins: '\e78e', + columns: '\e546', + columns-plus-left: '\e544', + columns-plus-right: '\e542', + command: '\e1c4', + compass: '\e1c8', + compass-rose: '\e1c6', + compass-tool: '\ea0e', + computer-tower: '\e548', + confetti: '\e81a', + contactless-payment: '\ed42', + control: '\eca6', + cookie: '\e6ca', + cooking-pot: '\e764', + copy: '\e1ca', + copy-simple: '\e1cc', + copyleft: '\e86a', + copyright: '\e54a', + corners-in: '\e1ce', + corners-out: '\e1d0', + couch: '\e7f6', + court-basketball: '\ee36', + cow: '\eabe', + cowboy-hat: '\ed12', + cpu: '\e610', + crane: '\ed48', + crane-tower: '\ed49', + credit-card: '\e1d2', + cricket: '\ee12', + crop: '\e1d4', + cross: '\e8a0', + crosshair: '\e1d6', + crosshair-simple: '\e1d8', + crown: '\e614', + crown-cross: '\ee5e', + crown-simple: '\e616', + cube: '\e1da', + cube-focus: '\ed0a', + cube-transparent: '\ec7c', + currency-btc: '\e618', + currency-circle-dollar: '\e54c', + currency-cny: '\e54e', + currency-dollar: '\e550', + currency-dollar-simple: '\e552', + currency-eth: '\eada', + currency-eur: '\e554', + currency-gbp: '\e556', + currency-inr: '\e558', + currency-jpy: '\e55a', + currency-krw: '\e55c', + currency-kzt: '\ec4c', + currency-ngn: '\eb52', + currency-rub: '\e55e', + cursor: '\e1dc', + cursor-click: '\e7c8', + cursor-text: '\e7d8', + cylinder: '\e8fc', + database: '\e1de', + desk: '\ed16', + desktop: '\e560', + desktop-tower: '\e562', + detective: '\e83e', + dev-to-logo: '\ed0e', + device-mobile: '\e1e0', + device-mobile-camera: '\e1e2', + device-mobile-slash: '\ee46', + device-mobile-speaker: '\e1e4', + device-rotate: '\edf2', + device-tablet: '\e1e6', + device-tablet-camera: '\e1e8', + device-tablet-speaker: '\e1ea', + devices: '\eba4', + diamond: '\e1ec', + diamonds-four: '\e8f4', + dice-five: '\e1ee', + dice-four: '\e1f0', + dice-one: '\e1f2', + dice-six: '\e1f4', + dice-three: '\e1f6', + dice-two: '\e1f8', + disc: '\e564', + disco-ball: '\ed98', + discord-logo: '\e61a', + divide: '\e1fa', + dna: '\e924', + dog: '\e74a', + door: '\e61c', + door-open: '\e7e6', + dot: '\ecde', + dot-outline: '\ece0', + dots-nine: '\e1fc', + dots-six: '\e794', + dots-six-vertical: '\eae2', + dots-three: '\e1fe', + dots-three-circle: '\e200', + dots-three-circle-vertical: '\e202', + dots-three-outline: '\e204', + dots-three-outline-vertical: '\e206', + dots-three-vertical: '\e208', + download: '\e20a', + download-simple: '\e20c', + dress: '\ea7e', + dresser: '\e94e', + dribbble-logo: '\e20e', + drone: '\ed74', + drop: '\e210', + drop-half: '\e566', + drop-half-bottom: '\eb40', + drop-simple: '\ee32', + drop-slash: '\e954', + dropbox-logo: '\e7d0', + ear: '\e70c', + ear-slash: '\e70e', + egg: '\e812', + egg-crack: '\eb64', + eject: '\e212', + eject-simple: '\e6ae', + elevator: '\ecc0', + empty: '\edbc', + engine: '\ea80', + envelope: '\e214', + envelope-open: '\e216', + envelope-simple: '\e218', + envelope-simple-open: '\e21a', + equalizer: '\ebbc', + equals: '\e21c', + eraser: '\e21e', + escalator-down: '\ecba', + escalator-up: '\ecbc', + exam: '\e742', + exclamation-mark: '\ee44', + exclude: '\e882', + exclude-square: '\e880', + export: '\eaf0', + eye: '\e220', + eye-closed: '\e222', + eye-slash: '\e224', + eyedropper: '\e568', + eyedropper-sample: '\eac4', + eyeglasses: '\e7ba', + eyes: '\ee5c', + face-mask: '\e56a', + facebook-logo: '\e226', + factory: '\e760', + faders: '\e228', + faders-horizontal: '\e22a', + fallout-shelter: '\e9de', + fan: '\e9f2', + farm: '\ec70', + fast-forward: '\e6a6', + fast-forward-circle: '\e22c', + feather: '\e9c0', + fediverse-logo: '\ed66', + figma-logo: '\e22e', + file: '\e230', + file-archive: '\eb2a', + file-arrow-down: '\e232', + file-arrow-up: '\e61e', + file-audio: '\ea20', + file-c: '\eb32', + file-c-sharp: '\eb30', + file-cloud: '\e95e', + file-code: '\e914', + file-cpp: '\eb2e', + file-css: '\eb34', + file-csv: '\eb1c', + file-dashed: '\e704', + file-dotted: '\e704', + file-doc: '\eb1e', + file-html: '\eb38', + file-image: '\ea24', + file-ini: '\eb33', + file-jpg: '\eb1a', + file-js: '\eb24', + file-jsx: '\eb3a', + file-lock: '\e95c', + file-magnifying-glass: '\e238', + file-search: '\e238', + file-md: '\ed50', + file-minus: '\e234', + file-pdf: '\e702', + file-plus: '\e236', + file-png: '\eb18', + file-ppt: '\eb20', + file-py: '\eb2c', + file-rs: '\eb28', + file-sql: '\ed4e', + file-svg: '\ed08', + file-text: '\e23a', + file-ts: '\eb26', + file-tsx: '\eb3c', + file-txt: '\eb35', + file-video: '\ea22', + file-vue: '\eb3e', + file-x: '\e23c', + file-xls: '\eb22', + file-zip: '\e958', + files: '\e710', + film-reel: '\e8c0', + film-script: '\eb50', + film-slate: '\e8c2', + film-strip: '\e792', + fingerprint: '\e23e', + fingerprint-simple: '\e240', + finn-the-human: '\e56c', + fire: '\e242', + fire-extinguisher: '\e9e8', + fire-simple: '\e620', + fire-truck: '\e574', + first-aid: '\e56e', + first-aid-kit: '\e570', + fish: '\e728', + fish-simple: '\e72a', + flag: '\e244', + flag-banner: '\e622', + flag-banner-fold: '\ecf2', + flag-checkered: '\ea38', + flag-pennant: '\ecf0', + flame: '\e624', + flashlight: '\e246', + flask: '\e79e', + flip-horizontal: '\ed6a', + flip-vertical: '\ed6c', + floppy-disk: '\e248', + floppy-disk-back: '\eaf4', + flow-arrow: '\e6ec', + flower: '\e75e', + flower-lotus: '\e6cc', + flower-tulip: '\eacc', + flying-saucer: '\eb4a', + folder: '\e24a', + folder-notch: '\e24a', + folder-dashed: '\e8f8', + folder-dotted: '\e8f8', + folder-lock: '\ea3c', + folder-minus: '\e254', + folder-notch-minus: '\e254', + folder-open: '\e256', + folder-notch-open: '\e256', + folder-plus: '\e258', + folder-notch-plus: '\e258', + folder-simple: '\e25a', + folder-simple-dashed: '\ec2a', + folder-simple-dotted: '\ec2a', + folder-simple-lock: '\eb5e', + folder-simple-minus: '\e25c', + folder-simple-plus: '\e25e', + folder-simple-star: '\ec2e', + folder-simple-user: '\eb60', + folder-star: '\ea86', + folder-user: '\eb46', + folders: '\e260', + football: '\e718', + football-helmet: '\ee4c', + footprints: '\ea88', + fork-knife: '\e262', + four-k: '\ea5c', + frame-corners: '\e626', + framer-logo: '\e264', + function: '\ebe4', + funnel: '\e266', + funnel-simple: '\e268', + funnel-simple-x: '\e26a', + funnel-x: '\e26c', + game-controller: '\e26e', + garage: '\ecd6', + gas-can: '\e8ce', + gas-pump: '\e768', + gauge: '\e628', + gavel: '\ea32', + gear: '\e270', + gear-fine: '\e87c', + gear-six: '\e272', + gender-female: '\e6e0', + gender-intersex: '\e6e6', + gender-male: '\e6e2', + gender-neuter: '\e6ea', + gender-nonbinary: '\e6e4', + gender-transgender: '\e6e8', + ghost: '\e62a', + gif: '\e274', + gift: '\e276', + git-branch: '\e278', + git-commit: '\e27a', + git-diff: '\e27c', + git-fork: '\e27e', + git-merge: '\e280', + git-pull-request: '\e282', + github-logo: '\e576', + gitlab-logo: '\e694', + gitlab-logo-simple: '\e696', + globe: '\e288', + globe-hemisphere-east: '\e28a', + globe-hemisphere-west: '\e28c', + globe-simple: '\e28e', + globe-simple-x: '\e284', + globe-stand: '\e290', + globe-x: '\e286', + goggles: '\ecb4', + golf: '\ea3e', + goodreads-logo: '\ed10', + google-cardboard-logo: '\e7b6', + google-chrome-logo: '\e976', + google-drive-logo: '\e8f6', + google-logo: '\e292', + google-photos-logo: '\eb92', + google-play-logo: '\e294', + google-podcasts-logo: '\eb94', + gps: '\edd8', + gps-fix: '\edd6', + gps-slash: '\edd4', + gradient: '\eb42', + graduation-cap: '\e62c', + grains: '\ec68', + grains-slash: '\ec6a', + graph: '\eb58', + graphics-card: '\e612', + greater-than: '\edc4', + greater-than-or-equal: '\eda2', + grid-four: '\e296', + grid-nine: '\ec8c', + guitar: '\ea8a', + hair-dryer: '\ea66', + hamburger: '\e790', + hammer: '\e80e', + hand: '\e298', + hand-arrow-down: '\ea4e', + hand-arrow-up: '\ee5a', + hand-coins: '\ea8c', + hand-deposit: '\ee82', + hand-eye: '\ea4c', + hand-fist: '\e57a', + hand-grabbing: '\e57c', + hand-heart: '\e810', + hand-palm: '\e57e', + hand-peace: '\e7cc', + hand-pointing: '\e29a', + hand-soap: '\e630', + hand-swipe-left: '\ec94', + hand-swipe-right: '\ec92', + hand-tap: '\ec90', + hand-waving: '\e580', + hand-withdraw: '\ee80', + handbag: '\e29c', + handbag-simple: '\e62e', + hands-clapping: '\e6a0', + hands-praying: '\ecc8', + handshake: '\e582', + hard-drive: '\e29e', + hard-drives: '\e2a0', + hard-hat: '\ed46', + hash: '\e2a2', + hash-straight: '\e2a4', + head-circuit: '\e7d4', + headlights: '\e6fe', + headphones: '\e2a6', + headset: '\e584', + heart: '\e2a8', + heart-break: '\ebe8', + heart-half: '\ec48', + heart-straight: '\e2aa', + heart-straight-break: '\eb98', + heartbeat: '\e2ac', + hexagon: '\e2ae', + high-definition: '\ea8e', + high-heel: '\e8e8', + highlighter: '\ec76', + highlighter-circle: '\e632', + hockey: '\ec86', + hoodie: '\ecd0', + horse: '\e2b0', + hospital: '\e844', + hourglass: '\e2b2', + hourglass-high: '\e2b4', + hourglass-low: '\e2b6', + hourglass-medium: '\e2b8', + hourglass-simple: '\e2ba', + hourglass-simple-high: '\e2bc', + hourglass-simple-low: '\e2be', + hourglass-simple-medium: '\e2c0', + house: '\e2c2', + house-line: '\e2c4', + house-simple: '\e2c6', + hurricane: '\e88e', + ice-cream: '\e804', + identification-badge: '\e6f6', + identification-card: '\e2c8', + image: '\e2ca', + image-broken: '\e7a8', + image-square: '\e2cc', + images: '\e836', + images-square: '\e834', + infinity: '\e634', + lemniscate: '\e634', + info: '\e2ce', + instagram-logo: '\e2d0', + intersect: '\e2d2', + intersect-square: '\e87a', + intersect-three: '\ecc4', + intersection: '\edba', + invoice: '\ee42', + island: '\ee06', + jar: '\e7e0', + jar-label: '\e7e1', + jeep: '\e2d4', + joystick: '\ea5e', + kanban: '\eb54', + key: '\e2d6', + key-return: '\e782', + keyboard: '\e2d8', + keyhole: '\ea78', + knife: '\e636', + ladder: '\e9e4', + ladder-simple: '\ec26', + lamp: '\e638', + lamp-pendant: '\ee2e', + laptop: '\e586', + lasso: '\edc6', + lastfm-logo: '\e842', + layout: '\e6d6', + leaf: '\e2da', + lectern: '\e95a', + lego: '\e8c6', + lego-smiley: '\e8c7', + less-than: '\edac', + less-than-or-equal: '\eda4', + letter-circle-h: '\ebf8', + letter-circle-p: '\ec08', + letter-circle-v: '\ec14', + lifebuoy: '\e63a', + lightbulb: '\e2dc', + lightbulb-filament: '\e63c', + lighthouse: '\e9f6', + lightning: '\e2de', + lightning-a: '\ea84', + lightning-slash: '\e2e0', + line-segment: '\e6d2', + line-segments: '\e6d4', + line-vertical: '\ed70', + link: '\e2e2', + link-break: '\e2e4', + link-simple: '\e2e6', + link-simple-break: '\e2e8', + link-simple-horizontal: '\e2ea', + link-simple-horizontal-break: '\e2ec', + linkedin-logo: '\e2ee', + linktree-logo: '\edee', + linux-logo: '\eb02', + list: '\e2f0', + list-bullets: '\e2f2', + list-checks: '\eadc', + list-dashes: '\e2f4', + list-heart: '\ebde', + list-magnifying-glass: '\ebe0', + list-numbers: '\e2f6', + list-plus: '\e2f8', + list-star: '\ebdc', + lock: '\e2fa', + lock-key: '\e2fe', + lock-key-open: '\e300', + lock-laminated: '\e302', + lock-laminated-open: '\e304', + lock-open: '\e306', + lock-simple: '\e308', + lock-simple-open: '\e30a', + lockers: '\ecb8', + log: '\ed82', + magic-wand: '\e6b6', + magnet: '\e680', + magnet-straight: '\e682', + magnifying-glass: '\e30c', + magnifying-glass-minus: '\e30e', + magnifying-glass-plus: '\e310', + mailbox: '\ec1e', + map-pin: '\e316', + map-pin-area: '\ee3a', + map-pin-line: '\e318', + map-pin-plus: '\e314', + map-pin-simple: '\ee3e', + map-pin-simple-area: '\ee3c', + map-pin-simple-line: '\ee38', + map-trifold: '\e31a', + markdown-logo: '\e508', + marker-circle: '\e640', + martini: '\e31c', + mask-happy: '\e9f4', + mask-sad: '\eb9e', + mastodon-logo: '\ed68', + math-operations: '\e31e', + matrix-logo: '\ed64', + medal: '\e320', + medal-military: '\ecfc', + medium-logo: '\e322', + megaphone: '\e324', + megaphone-simple: '\e642', + member-of: '\edc2', + memory: '\e9c4', + messenger-logo: '\e6d8', + meta-logo: '\ed02', + meteor: '\e9ba', + metronome: '\ec8e', + microphone: '\e326', + microphone-slash: '\e328', + microphone-stage: '\e75c', + microscope: '\ec7a', + microsoft-excel-logo: '\eb6c', + microsoft-outlook-logo: '\eb70', + microsoft-powerpoint-logo: '\eace', + microsoft-teams-logo: '\eb66', + microsoft-word-logo: '\eb6a', + minus: '\e32a', + minus-circle: '\e32c', + minus-square: '\ed4c', + money: '\e588', + money-wavy: '\ee68', + monitor: '\e32e', + monitor-arrow-up: '\e58a', + monitor-play: '\e58c', + moon: '\e330', + moon-stars: '\e58e', + moped: '\e824', + moped-front: '\e822', + mosque: '\ecee', + motorcycle: '\e80a', + mountains: '\e7ae', + mouse: '\e33a', + mouse-left-click: '\e334', + mouse-middle-click: '\e338', + mouse-right-click: '\e336', + mouse-scroll: '\e332', + mouse-simple: '\e644', + music-note: '\e33c', + music-note-simple: '\e33e', + music-notes: '\e340', + music-notes-minus: '\ee0c', + music-notes-plus: '\eb7c', + music-notes-simple: '\e342', + navigation-arrow: '\eade', + needle: '\e82e', + network: '\edde', + network-slash: '\eddc', + network-x: '\edda', + newspaper: '\e344', + newspaper-clipping: '\e346', + not-equals: '\eda6', + not-member-of: '\edae', + not-subset-of: '\edb0', + not-superset-of: '\edb2', + notches: '\ed3a', + note: '\e348', + note-blank: '\e34a', + note-pencil: '\e34c', + notebook: '\e34e', + notepad: '\e63e', + notification: '\e6fa', + notion-logo: '\e9a0', + nuclear-plant: '\ed7c', + number-circle-eight: '\e352', + number-circle-five: '\e358', + number-circle-four: '\e35e', + number-circle-nine: '\e364', + number-circle-one: '\e36a', + number-circle-seven: '\e370', + number-circle-six: '\e376', + number-circle-three: '\e37c', + number-circle-two: '\e382', + number-circle-zero: '\e388', + number-eight: '\e350', + number-five: '\e356', + number-four: '\e35c', + number-nine: '\e362', + number-one: '\e368', + number-seven: '\e36e', + number-six: '\e374', + number-square-eight: '\e354', + number-square-five: '\e35a', + number-square-four: '\e360', + number-square-nine: '\e366', + number-square-one: '\e36c', + number-square-seven: '\e372', + number-square-six: '\e378', + number-square-three: '\e37e', + number-square-two: '\e384', + number-square-zero: '\e38a', + number-three: '\e37a', + number-two: '\e380', + number-zero: '\e386', + numpad: '\e3c8', + nut: '\e38c', + ny-times-logo: '\e646', + octagon: '\e38e', + office-chair: '\ea46', + onigiri: '\ee2c', + open-ai-logo: '\e7d2', + option: '\e8a8', + orange: '\ee40', + orange-slice: '\ed36', + oven: '\ed8c', + package: '\e390', + paint-brush: '\e6f0', + paint-brush-broad: '\e590', + paint-brush-household: '\e6f2', + paint-bucket: '\e392', + paint-roller: '\e6f4', + palette: '\e6c8', + panorama: '\eaa2', + pants: '\ec88', + paper-plane: '\e394', + paper-plane-right: '\e396', + paper-plane-tilt: '\e398', + paperclip: '\e39a', + paperclip-horizontal: '\e592', + parachute: '\ea7c', + paragraph: '\e960', + parallelogram: '\ecc6', + park: '\ecb2', + password: '\e752', + path: '\e39c', + patreon-logo: '\e98a', + pause: '\e39e', + pause-circle: '\e3a0', + paw-print: '\e648', + paypal-logo: '\e98c', + peace: '\e3a2', + pen: '\e3aa', + pen-nib: '\e3ac', + pen-nib-straight: '\e64a', + pencil: '\e3ae', + pencil-circle: '\e3b0', + pencil-line: '\e3b2', + pencil-ruler: '\e906', + pencil-simple: '\e3b4', + pencil-simple-line: '\ebc6', + pencil-simple-slash: '\ecf6', + pencil-slash: '\ecf8', + pentagon: '\ec7e', + pentagram: '\ec5c', + pepper: '\e94a', + percent: '\e3b6', + person: '\e3a8', + person-arms-spread: '\ecfe', + person-simple: '\e72e', + person-simple-bike: '\e734', + person-simple-circle: '\ee58', + person-simple-hike: '\ed54', + person-simple-run: '\e730', + person-simple-ski: '\e71c', + person-simple-snowboard: '\e71e', + person-simple-swim: '\e736', + person-simple-tai-chi: '\ed5c', + person-simple-throw: '\e732', + person-simple-walk: '\e73a', + perspective: '\ebe6', + phone: '\e3b8', + phone-call: '\e3ba', + phone-disconnect: '\e3bc', + phone-incoming: '\e3be', + phone-list: '\e3cc', + phone-outgoing: '\e3c0', + phone-pause: '\e3ca', + phone-plus: '\ec56', + phone-slash: '\e3c2', + phone-transfer: '\e3c6', + phone-x: '\e3c4', + phosphor-logo: '\e3ce', + pi: '\ec80', + piano-keys: '\e9c8', + picnic-table: '\ee26', + picture-in-picture: '\e64c', + piggy-bank: '\ea04', + pill: '\e700', + ping-pong: '\ea42', + pint-glass: '\edd0', + pinterest-logo: '\e64e', + pinwheel: '\eb9c', + pipe: '\ed86', + pipe-wrench: '\ed88', + pix-logo: '\ecc2', + pizza: '\e796', + placeholder: '\e650', + planet: '\e652', + plant: '\ebae', + play: '\e3d0', + play-circle: '\e3d2', + play-pause: '\e8be', + playlist: '\e6aa', + plug: '\e946', + plug-charging: '\eb5c', + plugs: '\eb56', + plugs-connected: '\eb5a', + plus: '\e3d4', + plus-circle: '\e3d6', + plus-minus: '\e3d8', + plus-square: '\ed4a', + poker-chip: '\e594', + police-car: '\ec4a', + polygon: '\e6d0', + popcorn: '\eb4e', + popsicle: '\ebbe', + potted-plant: '\ec22', + power: '\e3da', + prescription: '\e7a2', + presentation: '\e654', + presentation-chart: '\e656', + printer: '\e3dc', + prohibit: '\e3de', + prohibit-inset: '\e3e0', + projector-screen: '\e658', + projector-screen-chart: '\e65a', + pulse: '\e000', + activity: '\e000', + push-pin: '\e3e2', + push-pin-simple: '\e65c', + push-pin-simple-slash: '\e65e', + push-pin-slash: '\e3e4', + puzzle-piece: '\e596', + qr-code: '\e3e6', + question: '\e3e8', + question-mark: '\e3e9', + queue: '\e6ac', + quotes: '\e660', + rabbit: '\eac2', + racquet: '\ee02', + radical: '\e3ea', + radio: '\e77e', + radio-button: '\eb08', + radioactive: '\e9dc', + rainbow: '\e598', + rainbow-cloud: '\e59a', + ranking: '\ed62', + read-cv-logo: '\ed0c', + receipt: '\e3ec', + receipt-x: '\ed40', + record: '\e3ee', + rectangle: '\e3f0', + rectangle-dashed: '\e3f2', + recycle: '\e75a', + reddit-logo: '\e59c', + repeat: '\e3f6', + repeat-once: '\e3f8', + replit-logo: '\eb8a', + resize: '\ed6e', + rewind: '\e6a8', + rewind-circle: '\e3fa', + road-horizon: '\e838', + robot: '\e762', + rocket: '\e3fc', + rocket-launch: '\e3fe', + rows: '\e5a2', + rows-plus-bottom: '\e59e', + rows-plus-top: '\e5a0', + rss: '\e400', + rss-simple: '\e402', + rug: '\ea1a', + ruler: '\e6b8', + sailboat: '\e78a', + scales: '\e750', + scan: '\ebb6', + scan-smiley: '\ebb4', + scissors: '\eae0', + scooter: '\e820', + screencast: '\e404', + screwdriver: '\e86e', + scribble: '\e806', + scribble-loop: '\e662', + scroll: '\eb7a', + seal: '\e604', + circle-wavy: '\e604', + seal-check: '\e606', + circle-wavy-check: '\e606', + seal-percent: '\e60a', + seal-question: '\e608', + circle-wavy-question: '\e608', + seal-warning: '\e60c', + circle-wavy-warning: '\e60c', + seat: '\eb8e', + seatbelt: '\edfe', + security-camera: '\eca4', + selection: '\e69a', + selection-all: '\e746', + selection-background: '\eaf8', + selection-foreground: '\eaf6', + selection-inverse: '\e744', + selection-plus: '\e69c', + selection-slash: '\e69e', + shapes: '\ec5e', + share: '\e406', + share-fat: '\ed52', + share-network: '\e408', + shield: '\e40a', + shield-check: '\e40c', + shield-checkered: '\e708', + shield-chevron: '\e40e', + shield-plus: '\e706', + shield-slash: '\e410', + shield-star: '\ec34', + shield-warning: '\e412', + shipping-container: '\e78c', + shirt-folded: '\ea92', + shooting-star: '\ecfa', + shopping-bag: '\e416', + shopping-bag-open: '\e418', + shopping-cart: '\e41e', + shopping-cart-simple: '\e420', + shovel: '\e9e6', + shower: '\e776', + shrimp: '\eab4', + shuffle: '\e422', + shuffle-angular: '\e424', + shuffle-simple: '\e426', + sidebar: '\eab6', + sidebar-simple: '\ec24', + sigma: '\eab8', + sign-in: '\e428', + sign-out: '\e42a', + signature: '\ebac', + signpost: '\e89c', + sim-card: '\e664', + siren: '\e9b8', + sketch-logo: '\e42c', + skip-back: '\e5a4', + skip-back-circle: '\e42e', + skip-forward: '\e5a6', + skip-forward-circle: '\e430', + skull: '\e916', + skype-logo: '\e8dc', + slack-logo: '\e5a8', + sliders: '\e432', + sliders-horizontal: '\e434', + slideshow: '\ed32', + smiley: '\e436', + smiley-angry: '\ec62', + smiley-blank: '\e438', + smiley-meh: '\e43a', + smiley-melting: '\ee56', + smiley-nervous: '\e43c', + smiley-sad: '\e43e', + smiley-sticker: '\e440', + smiley-wink: '\e666', + smiley-x-eyes: '\e442', + snapchat-logo: '\e668', + sneaker: '\e80c', + sneaker-move: '\ed60', + snowflake: '\e5aa', + soccer-ball: '\e716', + sock: '\ecce', + solar-panel: '\ed7a', + solar-roof: '\ed7b', + sort-ascending: '\e444', + sort-descending: '\e446', + soundcloud-logo: '\e8de', + spade: '\e448', + sparkle: '\e6a2', + speaker-hifi: '\ea08', + speaker-high: '\e44a', + speaker-low: '\e44c', + speaker-none: '\e44e', + speaker-simple-high: '\e450', + speaker-simple-low: '\e452', + speaker-simple-none: '\e454', + speaker-simple-slash: '\e456', + speaker-simple-x: '\e458', + speaker-slash: '\e45a', + speaker-x: '\e45c', + speedometer: '\ee74', + sphere: '\ee66', + spinner: '\e66a', + spinner-ball: '\ee28', + spinner-gap: '\e66c', + spiral: '\e9fa', + split-horizontal: '\e872', + split-vertical: '\e876', + spotify-logo: '\e66e', + spray-bottle: '\e7e4', + square: '\e45e', + square-half: '\e462', + square-half-bottom: '\eb16', + square-logo: '\e690', + square-split-horizontal: '\e870', + square-split-vertical: '\e874', + squares-four: '\e464', + stack: '\e466', + stack-minus: '\edf4', + stack-overflow-logo: '\eb78', + stack-plus: '\edf6', + stack-simple: '\e468', + stairs: '\e8ec', + stamp: '\ea48', + standard-definition: '\ea90', + star: '\e46a', + star-and-crescent: '\ecf4', + star-four: '\e6a4', + star-half: '\e70a', + star-of-david: '\e89e', + steam-logo: '\ead4', + steering-wheel: '\e9ac', + steps: '\ecbe', + stethoscope: '\e7ea', + sticker: '\e5ac', + stool: '\ea44', + stop: '\e46c', + stop-circle: '\e46e', + storefront: '\e470', + strategy: '\ea3a', + stripe-logo: '\e698', + student: '\e73e', + subset-of: '\edc0', + subset-proper-of: '\edb6', + subtitles: '\e1a8', + subtitles-slash: '\e1a6', + subtract: '\ebd6', + subtract-square: '\ebd4', + subway: '\e498', + suitcase: '\e5ae', + suitcase-rolling: '\e9b0', + suitcase-simple: '\e5b0', + sun: '\e472', + sun-dim: '\e474', + sun-horizon: '\e5b6', + sunglasses: '\e816', + superset-of: '\edb8', + superset-proper-of: '\edb4', + swap: '\e83c', + swatches: '\e5b8', + swimming-pool: '\ecb6', + sword: '\e5ba', + synagogue: '\ecec', + syringe: '\e968', + t-shirt: '\e670', + table: '\e476', + tabs: '\e778', + tag: '\e478', + tag-chevron: '\e672', + tag-simple: '\e47a', + target: '\e47c', + taxi: '\e902', + tea-bag: '\e8e6', + telegram-logo: '\e5bc', + television: '\e754', + television-simple: '\eae6', + tennis-ball: '\e720', + tent: '\e8ba', + terminal: '\e47e', + terminal-window: '\eae8', + test-tube: '\e7a0', + text-a-underline: '\ed34', + text-aa: '\e6ee', + text-align-center: '\e480', + text-align-justify: '\e482', + text-align-left: '\e484', + text-align-right: '\e486', + text-b: '\e5be', + text-bolder: '\e5be', + text-columns: '\ec96', + text-h: '\e6ba', + text-h-five: '\e6c4', + text-h-four: '\e6c2', + text-h-one: '\e6bc', + text-h-six: '\e6c6', + text-h-three: '\e6c0', + text-h-two: '\e6be', + text-indent: '\ea1e', + text-italic: '\e5c0', + text-outdent: '\ea1c', + text-strikethrough: '\e5c2', + text-subscript: '\ec98', + text-superscript: '\ec9a', + text-t: '\e48a', + text-t-slash: '\e488', + text-underline: '\e5c4', + textbox: '\eb0a', + thermometer: '\e5c6', + thermometer-cold: '\e5c8', + thermometer-hot: '\e5ca', + thermometer-simple: '\e5cc', + threads-logo: '\ed9e', + three-d: '\ea5a', + thumbs-down: '\e48c', + thumbs-up: '\e48e', + ticket: '\e490', + tidal-logo: '\ed1c', + tiktok-logo: '\eaf2', + tilde: '\eda8', + timer: '\e492', + tip-jar: '\e7e2', + tipi: '\ed30', + tire: '\edd2', + toggle-left: '\e674', + toggle-right: '\e676', + toilet: '\e79a', + toilet-paper: '\e79c', + toolbox: '\eca0', + tooth: '\e9cc', + tornado: '\e88c', + tote: '\e494', + tote-simple: '\e678', + towel: '\ede6', + tractor: '\ec6e', + trademark: '\e9f0', + trademark-registered: '\e3f4', + traffic-cone: '\e9a8', + traffic-sign: '\e67a', + traffic-signal: '\e9aa', + train: '\e496', + train-regional: '\e49e', + train-simple: '\e4a0', + tram: '\e9ec', + translate: '\e4a2', + trash: '\e4a6', + trash-simple: '\e4a8', + tray: '\e4aa', + tray-arrow-down: '\e010', + archive-tray: '\e010', + tray-arrow-up: '\ee52', + treasure-chest: '\ede2', + tree: '\e6da', + tree-evergreen: '\e6dc', + tree-palm: '\e91a', + tree-structure: '\e67c', + tree-view: '\ee48', + trend-down: '\e4ac', + trend-up: '\e4ae', + triangle: '\e4b0', + triangle-dashed: '\e4b2', + trolley: '\e5b2', + trolley-suitcase: '\e5b4', + trophy: '\e67e', + truck: '\e4b4', + truck-trailer: '\e4b6', + tumblr-logo: '\e8d4', + twitch-logo: '\e5ce', + twitter-logo: '\e4ba', + umbrella: '\e684', + umbrella-simple: '\e686', + union: '\edbe', + unite: '\e87e', + unite-square: '\e878', + upload: '\e4be', + upload-simple: '\e4c0', + usb: '\e956', + user: '\e4c2', + user-check: '\eafa', + user-circle: '\e4c4', + user-circle-check: '\ec38', + user-circle-dashed: '\ec36', + user-circle-gear: '\e4c6', + user-circle-minus: '\e4c8', + user-circle-plus: '\e4ca', + user-focus: '\e6fc', + user-gear: '\e4cc', + user-list: '\e73c', + user-minus: '\e4ce', + user-plus: '\e4d0', + user-rectangle: '\e4d2', + user-sound: '\eca8', + user-square: '\e4d4', + user-switch: '\e756', + users: '\e4d6', + users-four: '\e68c', + users-three: '\e68e', + van: '\e826', + vault: '\e76e', + vector-three: '\ee62', + vector-two: '\ee64', + vibrate: '\e4d8', + video: '\e740', + video-camera: '\e4da', + video-camera-slash: '\e4dc', + video-conference: '\edce', + vignette: '\eba2', + vinyl-record: '\ecac', + virtual-reality: '\e7b8', + virus: '\e7d6', + visor: '\ee2a', + voicemail: '\e4de', + volleyball: '\e726', + wall: '\e688', + wallet: '\e68a', + warehouse: '\ecd4', + warning: '\e4e0', + warning-circle: '\e4e2', + warning-diamond: '\e7fc', + warning-octagon: '\e4e4', + washing-machine: '\ede8', + watch: '\e4e6', + wave-sawtooth: '\ea9c', + wave-sine: '\ea9a', + wave-square: '\ea9e', + wave-triangle: '\eaa0', + waveform: '\e802', + waveform-slash: '\e800', + waves: '\e6de', + webcam: '\e9b2', + webcam-slash: '\ecdc', + webhooks-logo: '\ecae', + wechat-logo: '\e8d2', + whatsapp-logo: '\e5d0', + wheelchair: '\e4e8', + wheelchair-motion: '\e89a', + wifi-high: '\e4ea', + wifi-low: '\e4ec', + wifi-medium: '\e4ee', + wifi-none: '\e4f0', + wifi-slash: '\e4f2', + wifi-x: '\e4f4', + wind: '\e5d2', + windmill: '\e9f8', + windows-logo: '\e692', + wine: '\e6b2', + wrench: '\e5d4', + x: '\e4f6', + x-circle: '\e4f8', + x-logo: '\e4bc', + x-square: '\e4fa', + yarn: '\ed9a', + yin-yang: '\e92a', + youtube-logo: '\e4fc', +); +/* stylelint-enable scss/dollar-variable-default */ + +/* stylelint-disable scss/dollar-variable-default */ +$duotone-list: ( + acorn: ('\eb9a', '\eb9b'), + address-book: ('\e6f8', '\e6f9'), + address-book-tabs: ('\ee4e', '\ee4f'), + air-traffic-control: ('\ecd8', '\ecd9'), + airplane: ('\e002', '\e003'), + airplane-in-flight: ('\e4fe', '\e4ff'), + airplane-landing: ('\e502', '\e503'), + airplane-takeoff: ('\e504', '\e505'), + airplane-taxiing: ('\e500', '\e501'), + airplane-tilt: ('\e5d6', '\e5d7'), + airplay: ('\e004', '\e005'), + alarm: ('\e006', '\e007'), + alien: ('\e8a6', '\e8a7'), + align-bottom: ('\e506', '\e507'), + align-bottom-simple: ('\eb0c', '\eb0d'), + align-center-horizontal: ('\e50a', '\e50b'), + align-center-horizontal-simple: ('\eb0e', '\eb0f'), + align-center-vertical: ('\e50c', '\e50d'), + align-center-vertical-simple: ('\eb10', '\eb11'), + align-left: ('\e50e', '\e50f'), + align-left-simple: ('\eaee', '\eaef'), + align-right: ('\e510', '\e511'), + align-right-simple: ('\eb12', '\eb13'), + align-top: ('\e512', '\e513'), + align-top-simple: ('\eb14', '\eb15'), + amazon-logo: ('\e96c', '\e96d'), + ambulance: ('\e572', '\e573'), + anchor: ('\e514', '\e515'), + anchor-simple: ('\e5d8', '\e5d9'), + android-logo: ('\e008', '\e009'), + angle: ('\e7bc', '\e7bd'), + angular-logo: ('\eb80', '\eb81'), + aperture: ('\e00a', '\e00b'), + app-store-logo: ('\e974', '\e975'), + app-window: ('\e5da', '\e5db'), + apple-logo: ('\e516', '\e517'), + apple-podcasts-logo: ('\eb96', '\eb97'), + approximate-equals: ('\edaa', '\edab'), + archive: ('\e00c', '\e00d'), + armchair: ('\e012', '\e013'), + arrow-arc-left: ('\e014', '\e015'), + arrow-arc-right: ('\e016', '\e017'), + arrow-bend-double-up-left: ('\e03a', '\e03b'), + arrow-bend-double-up-right: ('\e03c', '\e03d'), + arrow-bend-down-left: ('\e018', '\e019'), + arrow-bend-down-right: ('\e01a', '\e01b'), + arrow-bend-left-down: ('\e01c', '\e01d'), + arrow-bend-left-up: ('\e01e', '\e01f'), + arrow-bend-right-down: ('\e020', '\e021'), + arrow-bend-right-up: ('\e022', '\e023'), + arrow-bend-up-left: ('\e024', '\e025'), + arrow-bend-up-right: ('\e026', '\e027'), + arrow-circle-down: ('\e028', '\e029'), + arrow-circle-down-left: ('\e02a', '\e02b'), + arrow-circle-down-right: ('\e02c', '\e02d'), + arrow-circle-left: ('\e05a', '\e05b'), + arrow-circle-right: ('\e02e', '\e02f'), + arrow-circle-up: ('\e030', '\e031'), + arrow-circle-up-left: ('\e032', '\e033'), + arrow-circle-up-right: ('\e034', '\e035'), + arrow-clockwise: ('\e036', '\e037'), + arrow-counter-clockwise: ('\e038', '\e039'), + arrow-down: ('\e03e', '\e03f'), + arrow-down-left: ('\e040', '\e041'), + arrow-down-right: ('\e042', '\e043'), + arrow-elbow-down-left: ('\e044', '\e045'), + arrow-elbow-down-right: ('\e046', '\e047'), + arrow-elbow-left: ('\e048', '\e049'), + arrow-elbow-left-down: ('\e04a', '\e04b'), + arrow-elbow-left-up: ('\e04c', '\e04d'), + arrow-elbow-right: ('\e04e', '\e04f'), + arrow-elbow-right-down: ('\e050', '\e051'), + arrow-elbow-right-up: ('\e052', '\e053'), + arrow-elbow-up-left: ('\e054', '\e055'), + arrow-elbow-up-right: ('\e056', '\e057'), + arrow-fat-down: ('\e518', '\e519'), + arrow-fat-left: ('\e51a', '\e51b'), + arrow-fat-line-down: ('\e51c', '\e51d'), + arrow-fat-line-left: ('\e51e', '\e51f'), + arrow-fat-line-right: ('\e520', '\e521'), + arrow-fat-line-up: ('\e522', '\e523'), + arrow-fat-lines-down: ('\e524', '\e525'), + arrow-fat-lines-left: ('\e526', '\e527'), + arrow-fat-lines-right: ('\e528', '\e529'), + arrow-fat-lines-up: ('\e52a', '\e52b'), + arrow-fat-right: ('\e52c', '\e52d'), + arrow-fat-up: ('\e52e', '\e52f'), + arrow-left: ('\e058', '\e059'), + arrow-line-down: ('\e05c', '\e05d'), + arrow-line-down-left: ('\e05e', '\e05f'), + arrow-line-down-right: ('\e060', '\e061'), + arrow-line-left: ('\e062', '\e063'), + arrow-line-right: ('\e064', '\e065'), + arrow-line-up: ('\e066', '\e067'), + arrow-line-up-left: ('\e068', '\e069'), + arrow-line-up-right: ('\e06a', '\e06b'), + arrow-right: ('\e06c', '\e06d'), + arrow-square-down: ('\e06e', '\e06f'), + arrow-square-down-left: ('\e070', '\e071'), + arrow-square-down-right: ('\e072', '\e073'), + arrow-square-in: ('\e5dc', '\e5dd'), + arrow-square-left: ('\e074', '\e075'), + arrow-square-out: ('\e5de', '\e5df'), + arrow-square-right: ('\e076', '\e077'), + arrow-square-up: ('\e078', '\e079'), + arrow-square-up-left: ('\e07a', '\e07b'), + arrow-square-up-right: ('\e07c', '\e07d'), + arrow-u-down-left: ('\e07e', '\e07f'), + arrow-u-down-right: ('\e080', '\e081'), + arrow-u-left-down: ('\e082', '\e083'), + arrow-u-left-up: ('\e084', '\e085'), + arrow-u-right-down: ('\e086', '\e087'), + arrow-u-right-up: ('\e088', '\e089'), + arrow-u-up-left: ('\e08a', '\e08b'), + arrow-u-up-right: ('\e08c', '\e08d'), + arrow-up: ('\e08e', '\e08f'), + arrow-up-left: ('\e090', '\e091'), + arrow-up-right: ('\e092', '\e093'), + arrows-clockwise: ('\e094', '\e095'), + arrows-counter-clockwise: ('\e096', '\e097'), + arrows-down-up: ('\e098', '\e099'), + arrows-horizontal: ('\eb06', '\eb07'), + arrows-in: ('\e09a', '\e09b'), + arrows-in-cardinal: ('\e09c', '\e09d'), + arrows-in-line-horizontal: ('\e530', '\e531'), + arrows-in-line-vertical: ('\e532', '\e533'), + arrows-in-simple: ('\e09e', '\e09f'), + arrows-left-right: ('\e0a0', '\e0a1'), + arrows-merge: ('\ed3e', '\ed3f'), + arrows-out: ('\e0a2', '\e0a3'), + arrows-out-cardinal: ('\e0a4', '\e0a5'), + arrows-out-line-horizontal: ('\e534', '\e535'), + arrows-out-line-vertical: ('\e536', '\e537'), + arrows-out-simple: ('\e0a6', '\e0a7'), + arrows-split: ('\ed3c', '\ed3d'), + arrows-vertical: ('\eb04', '\eb05'), + article: ('\e0a8', '\e0a9'), + article-medium: ('\e5e0', '\e5e1'), + article-ny-times: ('\e5e2', '\e5e3'), + asclepius: ('\ee34', '\ee35'), + asterisk: ('\e0aa', '\e0ab'), + asterisk-simple: ('\e832', '\e833'), + at: ('\e0ac', '\e0ad'), + atom: ('\e5e4', '\e5e5'), + avocado: ('\ee04', '\ee05'), + axe: ('\e9fc', '\e9fd'), + baby: ('\e774', '\e775'), + baby-carriage: ('\e818', '\e819'), + backpack: ('\e922', '\e923'), + backspace: ('\e0ae', '\e0af'), + bag: ('\e0b0', '\e0b1'), + bag-simple: ('\e5e6', '\e5e7'), + balloon: ('\e76c', '\e76d'), + bandaids: ('\e0b2', '\e0b3'), + bank: ('\e0b4', '\e0b5'), + barbell: ('\e0b6', '\e0b7'), + barcode: ('\e0b8', '\e0b9'), + barn: ('\ec72', '\ec73'), + barricade: ('\e948', '\e949'), + baseball: ('\e71a', '\e71b'), + baseball-cap: ('\ea28', '\ea29'), + baseball-helmet: ('\ee4a', '\ee4b'), + basket: ('\e964', '\e965'), + basketball: ('\e724', '\e725'), + bathtub: ('\e81e', '\e81f'), + battery-charging: ('\e0ba', '\e0bb'), + battery-charging-vertical: ('\e0bc', '\e0bd'), + battery-empty: ('\e0be', '\e0bf'), + battery-full: ('\e0c0', '\e0c1'), + battery-high: ('\e0c2', '\e0c3'), + battery-low: ('\e0c4', '\e0c5'), + battery-medium: ('\e0c6', '\e0c7'), + battery-plus: ('\e808', '\e809'), + battery-plus-vertical: ('\ec50', '\ec51'), + battery-vertical-empty: ('\e7c6', '\e7c7'), + battery-vertical-full: ('\e7c4', '\e7c5'), + battery-vertical-high: ('\e7c2', '\e7c3'), + battery-vertical-low: ('\e7be', '\e7bf'), + battery-vertical-medium: ('\e7c0', '\e7c1'), + battery-warning: ('\e0c8', '\e0c9'), + battery-warning-vertical: ('\e0ca', '\e0cb'), + beach-ball: ('\ed24', '\ed25'), + beanie: ('\ea2a', '\ea2b'), + bed: ('\e0cc', '\e0cd'), + beer-bottle: ('\e7b0', '\e7b1'), + beer-stein: ('\eb62', '\eb63'), + behance-logo: ('\e7f4', '\e7f5'), + bell: ('\e0ce', '\e0cf'), + bell-ringing: ('\e5e8', '\e5e9'), + bell-simple: ('\e0d0', '\e0d1'), + bell-simple-ringing: ('\e5ea', '\e5eb'), + bell-simple-slash: ('\e0d2', '\e0d3'), + bell-simple-z: ('\e5ec', '\e5ed'), + bell-slash: ('\e0d4', '\e0d5'), + bell-z: ('\e5ee', '\e5ef'), + belt: ('\ea2c', '\ea2d'), + bezier-curve: ('\eb00', '\eb01'), + bicycle: ('\e0d6', '\e0d7'), + binary: ('\ee60', '\ee61'), + binoculars: ('\ea64', '\ea65'), + biohazard: ('\e9e0', '\e9e1'), + bird: ('\e72c', '\e72d'), + blueprint: ('\eda0', '\eda1'), + bluetooth: ('\e0da', '\e0db'), + bluetooth-connected: ('\e0dc', '\e0dd'), + bluetooth-slash: ('\e0de', '\e0df'), + bluetooth-x: ('\e0e0', '\e0e1'), + boat: ('\e786', '\e787'), + bomb: ('\ee0a', '\ee0b'), + bone: ('\e7f2', '\e7f3'), + book: ('\e0e2', '\e0e3'), + book-bookmark: ('\e0e4', '\e0e5'), + book-open: ('\e0e6', '\e0e7'), + book-open-text: ('\e8f2', '\e8f3'), + book-open-user: ('\ede0', '\ede1'), + bookmark: ('\e0e8', '\e0e9'), + bookmark-simple: ('\e0ea', '\e0eb'), + bookmarks: ('\e0ec', '\e0ed'), + bookmarks-simple: ('\e5f0', '\e5f1'), + books: ('\e758', '\e759'), + boot: ('\ecca', '\eccb'), + boules: ('\e722', '\e723'), + bounding-box: ('\e6ce', '\e6cf'), + bowl-food: ('\eaa4', '\eaa5'), + bowl-steam: ('\e8e4', '\e8e5'), + bowling-ball: ('\ea34', '\ea35'), + box-arrow-down: ('\e00e', '\e00f'), + box-arrow-up: ('\ee54', '\ee55'), + boxing-glove: ('\ea36', '\ea37'), + brackets-angle: ('\e862', '\e863'), + brackets-curly: ('\e860', '\e861'), + brackets-round: ('\e864', '\e865'), + brackets-square: ('\e85e', '\e85f'), + brain: ('\e74e', '\e74f'), + brandy: ('\e6b4', '\e6b5'), + bread: ('\e81c', '\e81d'), + bridge: ('\ea68', '\ea69'), + briefcase: ('\e0ee', '\e0ef'), + briefcase-metal: ('\e5f2', '\e5f3'), + broadcast: ('\e0f2', '\e0f3'), + broom: ('\ec54', '\ec55'), + browser: ('\e0f4', '\e0f5'), + browsers: ('\e0f6', '\e0f7'), + bug: ('\e5f4', '\e5f5'), + bug-beetle: ('\e5f6', '\e5f7'), + bug-droid: ('\e5f8', '\e5f9'), + building: ('\e100', '\e101'), + building-apartment: ('\e0fe', '\e103'), + building-office: ('\e0ff', '\e104'), + buildings: ('\e102', '\e105'), + bulldozer: ('\ec6c', '\ec6d'), + bus: ('\e106', '\e107'), + butterfly: ('\ea6e', '\ea6f'), + cable-car: ('\e49c', '\e49d'), + cactus: ('\e918', '\e919'), + cake: ('\e780', '\e781'), + calculator: ('\e538', '\e539'), + calendar: ('\e108', '\e109'), + calendar-blank: ('\e10a', '\e10b'), + calendar-check: ('\e712', '\e713'), + calendar-dot: ('\e7b2', '\e7b3'), + calendar-dots: ('\e7b4', '\e7b5'), + calendar-heart: ('\e8b0', '\e8b1'), + calendar-minus: ('\ea14', '\ea15'), + calendar-plus: ('\e714', '\e715'), + calendar-slash: ('\ea12', '\ea13'), + calendar-star: ('\e8b2', '\e8b3'), + calendar-x: ('\e10c', '\e10d'), + call-bell: ('\e7de', '\e7df'), + camera: ('\e10e', '\e10f'), + camera-plus: ('\ec58', '\ec59'), + camera-rotate: ('\e7a4', '\e7a5'), + camera-slash: ('\e110', '\e111'), + campfire: ('\e9d8', '\e9d9'), + car: ('\e112', '\e113'), + car-battery: ('\ee30', '\ee31'), + car-profile: ('\e8cc', '\e8cd'), + car-simple: ('\e114', '\e115'), + cardholder: ('\e5fa', '\e5fb'), + cards: ('\e0f8', '\e0f9'), + cards-three: ('\ee50', '\ee51'), + caret-circle-double-down: ('\e116', '\e117'), + caret-circle-double-left: ('\e118', '\e119'), + caret-circle-double-right: ('\e11a', '\e11b'), + caret-circle-double-up: ('\e11c', '\e11d'), + caret-circle-down: ('\e11e', '\e11f'), + caret-circle-left: ('\e120', '\e121'), + caret-circle-right: ('\e122', '\e123'), + caret-circle-up: ('\e124', '\e125'), + caret-circle-up-down: ('\e13e', '\e13f'), + caret-double-down: ('\e126', '\e127'), + caret-double-left: ('\e128', '\e129'), + caret-double-right: ('\e12a', '\e12b'), + caret-double-up: ('\e12c', '\e12d'), + caret-down: ('\e136', '\e137'), + caret-left: ('\e138', '\e139'), + caret-line-down: ('\e134', '\e135'), + caret-line-left: ('\e132', '\e133'), + caret-line-right: ('\e130', '\e131'), + caret-line-up: ('\e12e', '\e12f'), + caret-right: ('\e13a', '\e13b'), + caret-up: ('\e13c', '\e13d'), + caret-up-down: ('\e140', '\e141'), + carrot: ('\ed38', '\ed39'), + cash-register: ('\ed80', '\ed81'), + cassette-tape: ('\ed2e', '\ed2f'), + castle-turret: ('\e9d0', '\e9d1'), + cat: ('\e748', '\e749'), + cell-signal-full: ('\e142', '\e143'), + cell-signal-high: ('\e144', '\e145'), + cell-signal-low: ('\e146', '\e147'), + cell-signal-medium: ('\e148', '\e149'), + // cell-signal-none: '\e14a', // ::before { color: #444; } + cell-signal-slash: ('\e14c', '\e14d'), + cell-signal-x: ('\e14e', '\e14f'), + cell-tower: ('\ebaa', '\ebab'), + certificate: ('\e766', '\e767'), + chair: ('\e950', '\e951'), + chalkboard: ('\e5fc', '\e5fd'), + chalkboard-simple: ('\e5fe', '\e5ff'), + chalkboard-teacher: ('\e600', '\e601'), + champagne: ('\eaca', '\eacb'), + charging-station: ('\e8d0', '\e8d1'), + chart-bar: ('\e150', '\e151'), + chart-bar-horizontal: ('\e152', '\e153'), + chart-donut: ('\eaa6', '\eaa7'), + chart-line: ('\e154', '\e155'), + chart-line-down: ('\e8b6', '\e8b7'), + chart-line-up: ('\e156', '\e157'), + chart-pie: ('\e158', '\e159'), + chart-pie-slice: ('\e15a', '\e15b'), + chart-polar: ('\eaa8', '\eaa9'), + chart-scatter: ('\eaac', '\eaad'), + chat: ('\e15c', '\e15d'), + chat-centered: ('\e160', '\e161'), + chat-centered-dots: ('\e164', '\e165'), + chat-centered-slash: ('\e162', '\e163'), + chat-centered-text: ('\e166', '\e167'), + chat-circle: ('\e168', '\e169'), + chat-circle-dots: ('\e16c', '\e16d'), + chat-circle-slash: ('\e16a', '\e16b'), + chat-circle-text: ('\e16e', '\e16f'), + chat-dots: ('\e170', '\e171'), + chat-slash: ('\e15e', '\e15f'), + chat-teardrop: ('\e172', '\e173'), + chat-teardrop-dots: ('\e176', '\e177'), + chat-teardrop-slash: ('\e174', '\e175'), + chat-teardrop-text: ('\e178', '\e179'), + chat-text: ('\e17a', '\e17b'), + chats: ('\e17c', '\e17d'), + chats-circle: ('\e17e', '\e17f'), + chats-teardrop: ('\e180', '\e181'), + check: ('\e182', '\e183'), + check-circle: ('\e184', '\e185'), + check-fat: ('\eba6', '\eba7'), + check-square: ('\e186', '\e187'), + check-square-offset: ('\e188', '\e189'), + checkerboard: ('\e8c4', '\e8c5'), + checks: ('\e53a', '\e53b'), + cheers: ('\ea4a', '\ea4b'), + cheese: ('\e9fe', '\e9ff'), + chef-hat: ('\ed8e', '\ed8f'), + cherries: ('\e830', '\e831'), + church: ('\ecea', '\eceb'), + cigarette: ('\ed90', '\ed91'), + cigarette-slash: ('\ed92', '\ed93'), + circle: ('\e18a', '\e18b'), + circle-dashed: ('\e602', '\e603'), + circle-half: ('\e18c', '\e18d'), + circle-half-tilt: ('\e18e', '\e18f'), + circle-notch: ('\eb44', '\eb45'), + circles-four: ('\e190', '\e191'), + circles-three: ('\e192', '\e193'), + circles-three-plus: ('\e194', '\e195'), + circuitry: ('\e9c2', '\e9c3'), + city: ('\ea6a', '\ea6b'), + clipboard: ('\e196', '\e197'), + clipboard-text: ('\e198', '\e199'), + clock: ('\e19a', '\e19b'), + clock-afternoon: ('\e19c', '\e19d'), + clock-clockwise: ('\e19e', '\e19f'), + clock-countdown: ('\ed2c', '\ed2d'), + clock-counter-clockwise: ('\e1a0', '\e1a1'), + clock-user: ('\edec', '\eded'), + closed-captioning: ('\e1a4', '\e1a5'), + cloud: ('\e1aa', '\e1ab'), + cloud-arrow-down: ('\e1ac', '\e1ad'), + cloud-arrow-up: ('\e1ae', '\e1af'), + cloud-check: ('\e1b0', '\e1b1'), + cloud-fog: ('\e53c', '\e53d'), + cloud-lightning: ('\e1b2', '\e1b3'), + cloud-moon: ('\e53e', '\e53f'), + cloud-rain: ('\e1b4', '\e1b5'), + cloud-slash: ('\e1b6', '\e1b7'), + cloud-snow: ('\e1b8', '\e1b9'), + cloud-sun: ('\e540', '\e541'), + cloud-warning: ('\ea98', '\ea99'), + cloud-x: ('\ea96', '\ea97'), + clover: ('\edc8', '\edc9'), + club: ('\e1ba', '\e1bb'), + coat-hanger: ('\e7fe', '\e7ff'), + coda-logo: ('\e7ce', '\e7cf'), + code: ('\e1bc', '\e1bd'), + code-block: ('\eafe', '\eaff'), + code-simple: ('\e1be', '\e1bf'), + codepen-logo: ('\e978', '\e979'), + codesandbox-logo: ('\ea06', '\ea07'), + coffee: ('\e1c2', '\e1c3'), + coffee-bean: ('\e1c0', '\e1c1'), + coin: ('\e60e', '\e60f'), + coin-vertical: ('\eb48', '\eb49'), + coins: ('\e78e', '\e78f'), + columns: ('\e546', '\e547'), + columns-plus-left: ('\e544', '\e545'), + columns-plus-right: ('\e542', '\e543'), + command: ('\e1c4', '\e1c5'), + compass: ('\e1c8', '\e1c9'), + compass-rose: ('\e1c6', '\e1c7'), + compass-tool: ('\ea0e', '\ea0f'), + computer-tower: ('\e548', '\e549'), + confetti: ('\e81a', '\e81b'), + contactless-payment: ('\ed42', '\ed43'), + control: ('\eca6', '\eca7'), + cookie: ('\e6ca', '\e6cb'), + cooking-pot: ('\e764', '\e765'), + copy: ('\e1ca', '\e1cb'), + copy-simple: ('\e1cc', '\e1cd'), + copyleft: ('\e86a', '\e86b'), + copyright: ('\e54a', '\e54b'), + corners-in: ('\e1ce', '\e1cf'), + corners-out: ('\e1d0', '\e1d1'), + couch: ('\e7f6', '\e7f7'), + court-basketball: ('\ee36', '\ee37'), + cow: ('\eabe', '\eabf'), + cowboy-hat: ('\ed12', '\ed13'), + cpu: ('\e610', '\e611'), + crane: ('\ed48', '\ed4b'), + crane-tower: ('\ed49', '\ed4d'), + credit-card: ('\e1d2', '\e1d3'), + cricket: ('\ee12', '\ee13'), + crop: ('\e1d4', '\e1d5'), + cross: ('\e8a0', '\e8a1'), + crosshair: ('\e1d6', '\e1d7'), + crosshair-simple: ('\e1d8', '\e1d9'), + crown: ('\e614', '\e615'), + crown-cross: ('\ee5e', '\ee5f'), + crown-simple: ('\e616', '\e617'), + cube: ('\e1da', '\e1db'), + cube-focus: ('\ed0a', '\ed0b'), + cube-transparent: ('\ec7c', '\ec7d'), + currency-btc: ('\e618', '\e619'), + currency-circle-dollar: ('\e54c', '\e54d'), + currency-cny: ('\e54e', '\e54f'), + currency-dollar: ('\e550', '\e551'), + currency-dollar-simple: ('\e552', '\e553'), + currency-eth: ('\eada', '\eadb'), + currency-eur: ('\e554', '\e555'), + currency-gbp: ('\e556', '\e557'), + currency-inr: ('\e558', '\e559'), + currency-jpy: ('\e55a', '\e55b'), + currency-krw: ('\e55c', '\e55d'), + currency-kzt: ('\ec4c', '\ec4d'), + currency-ngn: ('\eb52', '\eb53'), + currency-rub: ('\e55e', '\e55f'), + cursor: ('\e1dc', '\e1dd'), + cursor-click: ('\e7c8', '\e7c9'), + cursor-text: ('\e7d8', '\e7d9'), + cylinder: ('\e8fc', '\e8fd'), + database: ('\e1de', '\e1df'), + desk: ('\ed16', '\ed17'), + desktop: ('\e560', '\e561'), + desktop-tower: ('\e562', '\e563'), + detective: ('\e83e', '\e83f'), + dev-to-logo: ('\ed0e', '\ed0f'), + device-mobile: ('\e1e0', '\e1e1'), + device-mobile-camera: ('\e1e2', '\e1e3'), + device-mobile-slash: ('\ee46', '\ee47'), + device-mobile-speaker: ('\e1e4', '\e1e5'), + device-rotate: ('\edf2', '\edf3'), + device-tablet: ('\e1e6', '\e1e7'), + device-tablet-camera: ('\e1e8', '\e1e9'), + device-tablet-speaker: ('\e1ea', '\e1eb'), + devices: ('\eba4', '\eba5'), + diamond: ('\e1ec', '\e1ed'), + diamonds-four: ('\e8f4', '\e8f5'), + dice-five: ('\e1ee', '\e1ef'), + dice-four: ('\e1f0', '\e1f1'), + dice-one: ('\e1f2', '\e1f3'), + dice-six: ('\e1f4', '\e1f5'), + dice-three: ('\e1f6', '\e1f7'), + dice-two: ('\e1f8', '\e1f9'), + disc: ('\e564', '\e565'), + disco-ball: ('\ed98', '\ed99'), + discord-logo: ('\e61a', '\e61b'), + divide: ('\e1fa', '\e1fb'), + dna: ('\e924', '\e925'), + dog: ('\e74a', '\e74b'), + door: ('\e61c', '\e61d'), + door-open: ('\e7e6', '\e7e7'), + dot: ('\ecde', '\ecdf'), + dot-outline: ('\ece0', '\ece1'), + dots-nine: ('\e1fc', '\e1fd'), + dots-six: ('\e794', '\e795'), + dots-six-vertical: ('\eae2', '\eae3'), + dots-three: ('\e1fe', '\e1ff'), + dots-three-circle: ('\e200', '\e201'), + dots-three-circle-vertical: ('\e202', '\e203'), + dots-three-outline: ('\e204', '\e205'), + dots-three-outline-vertical: ('\e206', '\e207'), + dots-three-vertical: ('\e208', '\e209'), + download: ('\e20a', '\e20b'), + download-simple: ('\e20c', '\e20d'), + dress: ('\ea7e', '\ea7f'), + dresser: ('\e94e', '\e94f'), + dribbble-logo: ('\e20e', '\e20f'), + drone: ('\ed74', '\ed75'), + drop: ('\e210', '\e211'), + drop-half: ('\e566', '\e567'), + drop-half-bottom: ('\eb40', '\eb41'), + drop-simple: ('\ee32', '\ee33'), + drop-slash: ('\e954', '\e955'), + dropbox-logo: ('\e7d0', '\e7d1'), + ear: ('\e70c', '\e70d'), + ear-slash: ('\e70e', '\e70f'), + egg: ('\e812', '\e813'), + egg-crack: ('\eb64', '\eb65'), + eject: ('\e212', '\e213'), + eject-simple: ('\e6ae', '\e6af'), + elevator: ('\ecc0', '\ecc1'), + empty: ('\edbc', '\edbd'), + engine: ('\ea80', '\ea81'), + envelope: ('\e214', '\e215'), + envelope-open: ('\e216', '\e217'), + envelope-simple: ('\e218', '\e219'), + envelope-simple-open: ('\e21a', '\e21b'), + equalizer: ('\ebbc', '\ebbd'), + equals: ('\e21c', '\e21d'), + eraser: ('\e21e', '\e21f'), + escalator-down: ('\ecba', '\ecbb'), + escalator-up: ('\ecbc', '\ecbd'), + exam: ('\e742', '\e743'), + exclamation-mark: ('\ee44', '\ee45'), + exclude: ('\e882', '\e883'), + exclude-square: ('\e880', '\e881'), + export: ('\eaf0', '\eaf1'), + eye: ('\e220', '\e221'), + eye-closed: ('\e222', '\e223'), + eye-slash: ('\e224', '\e225'), + eyedropper: ('\e568', '\e569'), + eyedropper-sample: ('\eac4', '\eac5'), + eyeglasses: ('\e7ba', '\e7bb'), + eyes: ('\ee5c', '\ee5d'), + face-mask: ('\e56a', '\e56b'), + facebook-logo: ('\e226', '\e227'), + factory: ('\e760', '\e761'), + faders: ('\e228', '\e229'), + faders-horizontal: ('\e22a', '\e22b'), + fallout-shelter: ('\e9de', '\e9df'), + fan: ('\e9f2', '\e9f3'), + farm: ('\ec70', '\ec71'), + fast-forward: ('\e6a6', '\e6a7'), + fast-forward-circle: ('\e22c', '\e22d'), + feather: ('\e9c0', '\e9c1'), + fediverse-logo: ('\ed66', '\ed67'), + figma-logo: ('\e22e', '\e22f'), + file: ('\e230', '\e231'), + file-archive: ('\eb2a', '\eb2b'), + file-arrow-down: ('\e232', '\e233'), + file-arrow-up: ('\e61e', '\e61f'), + file-audio: ('\ea20', '\ea21'), + file-c: ('\eb32', '\eb36'), + file-c-sharp: ('\eb30', '\eb31'), + file-cloud: ('\e95e', '\e95f'), + file-code: ('\e914', '\e915'), + file-cpp: ('\eb2e', '\eb2f'), + file-css: ('\eb34', '\eb37'), + file-csv: ('\eb1c', '\eb1d'), + file-dashed: ('\e704', '\e705'), + file-doc: ('\eb1e', '\eb1f'), + file-html: ('\eb38', '\eb39'), + file-image: ('\ea24', '\ea25'), + file-ini: ('\eb33', '\eb3b'), + file-jpg: ('\eb1a', '\eb1b'), + file-js: ('\eb24', '\eb25'), + file-jsx: ('\eb3a', '\eb3d'), + file-lock: ('\e95c', '\e95d'), + file-magnifying-glass: ('\e238', '\e239'), + file-md: ('\ed50', '\ed51'), + file-minus: ('\e234', '\e235'), + file-pdf: ('\e702', '\e703'), + file-plus: ('\e236', '\e237'), + file-png: ('\eb18', '\eb19'), + file-ppt: ('\eb20', '\eb21'), + file-py: ('\eb2c', '\eb2d'), + file-rs: ('\eb28', '\eb29'), + file-sql: ('\ed4e', '\ed4f'), + file-svg: ('\ed08', '\ed09'), + file-text: ('\e23a', '\e23b'), + file-ts: ('\eb26', '\eb27'), + file-tsx: ('\eb3c', '\eb3f'), + file-txt: ('\eb35', '\eb43'), + file-video: ('\ea22', '\ea23'), + file-vue: ('\eb3e', '\eb47'), + file-x: ('\e23c', '\e23d'), + file-xls: ('\eb22', '\eb23'), + file-zip: ('\e958', '\e959'), + files: ('\e710', '\e711'), + film-reel: ('\e8c0', '\e8c1'), + film-script: ('\eb50', '\eb51'), + film-slate: ('\e8c2', '\e8c3'), + film-strip: ('\e792', '\e793'), + fingerprint: ('\e23e', '\e23f'), + fingerprint-simple: ('\e240', '\e241'), + finn-the-human: ('\e56c', '\e56d'), + fire: ('\e242', '\e243'), + fire-extinguisher: ('\e9e8', '\e9e9'), + fire-simple: ('\e620', '\e621'), + fire-truck: ('\e574', '\e575'), + first-aid: ('\e56e', '\e56f'), + first-aid-kit: ('\e570', '\e571'), + fish: ('\e728', '\e729'), + fish-simple: ('\e72a', '\e72b'), + flag: ('\e244', '\e245'), + flag-banner: ('\e622', '\e623'), + flag-banner-fold: ('\ecf2', '\ecf3'), + flag-checkered: ('\ea38', '\ea39'), + flag-pennant: ('\ecf0', '\ecf1'), + flame: ('\e624', '\e625'), + flashlight: ('\e246', '\e247'), + flask: ('\e79e', '\e79f'), + flip-horizontal: ('\ed6a', '\ed6b'), + flip-vertical: ('\ed6c', '\ed6d'), + floppy-disk: ('\e248', '\e249'), + floppy-disk-back: ('\eaf4', '\eaf5'), + flow-arrow: ('\e6ec', '\e6ed'), + flower: ('\e75e', '\e75f'), + flower-lotus: ('\e6cc', '\e6cd'), + flower-tulip: ('\eacc', '\eacd'), + flying-saucer: ('\eb4a', '\eb4b'), + folder: ('\e24a', '\e24b'), + folder-dashed: ('\e8f8', '\e8f9'), + folder-lock: ('\ea3c', '\ea3d'), + folder-minus: ('\e254', '\e255'), + folder-open: ('\e256', '\e257'), + folder-plus: ('\e258', '\e259'), + folder-simple: ('\e25a', '\e25b'), + folder-simple-dashed: ('\ec2a', '\ec2b'), + folder-simple-lock: ('\eb5e', '\eb5f'), + folder-simple-minus: ('\e25c', '\e25d'), + folder-simple-plus: ('\e25e', '\e25f'), + folder-simple-star: ('\ec2e', '\ec2f'), + folder-simple-user: ('\eb60', '\eb61'), + folder-star: ('\ea86', '\ea87'), + folder-user: ('\eb46', '\eb4c'), + folders: ('\e260', '\e261'), + football: ('\e718', '\e719'), + football-helmet: ('\ee4c', '\ee4d'), + footprints: ('\ea88', '\ea89'), + fork-knife: ('\e262', '\e263'), + four-k: ('\ea5c', '\ea5d'), + frame-corners: ('\e626', '\e627'), + framer-logo: ('\e264', '\e265'), + function: ('\ebe4', '\ebe5'), + funnel: ('\e266', '\e267'), + funnel-simple: ('\e268', '\e269'), + funnel-simple-x: ('\e26a', '\e26b'), + funnel-x: ('\e26c', '\e26d'), + game-controller: ('\e26e', '\e26f'), + garage: ('\ecd6', '\ecd7'), + gas-can: ('\e8ce', '\e8cf'), + gas-pump: ('\e768', '\e769'), + gauge: ('\e628', '\e629'), + gavel: ('\ea32', '\ea33'), + gear: ('\e270', '\e271'), + gear-fine: ('\e87c', '\e87d'), + gear-six: ('\e272', '\e273'), + gender-female: ('\e6e0', '\e6e1'), + gender-intersex: ('\e6e6', '\e6e7'), + gender-male: ('\e6e2', '\e6e3'), + gender-neuter: ('\e6ea', '\e6eb'), + gender-nonbinary: ('\e6e4', '\e6e5'), + gender-transgender: ('\e6e8', '\e6e9'), + ghost: ('\e62a', '\e62b'), + gif: ('\e274', '\e275'), + gift: ('\e276', '\e277'), + git-branch: ('\e278', '\e279'), + git-commit: ('\e27a', '\e27b'), + git-diff: ('\e27c', '\e27d'), + git-fork: ('\e27e', '\e27f'), + git-merge: ('\e280', '\e281'), + git-pull-request: ('\e282', '\e283'), + github-logo: ('\e576', '\e577'), + gitlab-logo: ('\e694', '\e695'), + gitlab-logo-simple: ('\e696', '\e697'), + globe: ('\e288', '\e289'), + globe-hemisphere-east: ('\e28a', '\e28b'), + globe-hemisphere-west: ('\e28c', '\e28d'), + globe-simple: ('\e28e', '\e28f'), + globe-simple-x: ('\e284', '\e285'), + globe-stand: ('\e290', '\e291'), + globe-x: ('\e286', '\e287'), + goggles: ('\ecb4', '\ecb5'), + golf: ('\ea3e', '\ea3f'), + goodreads-logo: ('\ed10', '\ed11'), + google-cardboard-logo: ('\e7b6', '\e7b7'), + google-chrome-logo: ('\e976', '\e977'), + google-drive-logo: ('\e8f6', '\e8f7'), + google-logo: ('\e292', '\e293'), + google-photos-logo: ('\eb92', '\eb93'), + google-play-logo: ('\e294', '\e295'), + google-podcasts-logo: ('\eb94', '\eb95'), + gps: ('\edd8', '\edd9'), + gps-fix: ('\edd6', '\edd7'), + gps-slash: ('\edd4', '\edd5'), + gradient: ('\eb42', '\eb4d'), + graduation-cap: ('\e62c', '\e62d'), + grains: ('\ec68', '\ec69'), + grains-slash: ('\ec6a', '\ec6b'), + graph: ('\eb58', '\eb59'), + graphics-card: ('\e612', '\e613'), + greater-than: ('\edc4', '\edc5'), + greater-than-or-equal: ('\eda2', '\eda3'), + grid-four: ('\e296', '\e297'), + grid-nine: ('\ec8c', '\ec8d'), + guitar: ('\ea8a', '\ea8b'), + hair-dryer: ('\ea66', '\ea67'), + hamburger: ('\e790', '\e791'), + hammer: ('\e80e', '\e80f'), + hand: ('\e298', '\e299'), + hand-arrow-down: ('\ea4e', '\ea4f'), + hand-arrow-up: ('\ee5a', '\ee5b'), + hand-coins: ('\ea8c', '\ea8d'), + hand-deposit: ('\ee82', '\ee83'), + hand-eye: ('\ea4c', '\ea4d'), + hand-fist: ('\e57a', '\e57b'), + hand-grabbing: ('\e57c', '\e57d'), + hand-heart: ('\e810', '\e811'), + hand-palm: ('\e57e', '\e57f'), + hand-peace: ('\e7cc', '\e7cd'), + hand-pointing: ('\e29a', '\e29b'), + hand-soap: ('\e630', '\e631'), + hand-swipe-left: ('\ec94', '\ec95'), + hand-swipe-right: ('\ec92', '\ec93'), + hand-tap: ('\ec90', '\ec91'), + hand-waving: ('\e580', '\e581'), + hand-withdraw: ('\ee80', '\ee81'), + handbag: ('\e29c', '\e29d'), + handbag-simple: ('\e62e', '\e62f'), + hands-clapping: ('\e6a0', '\e6a1'), + hands-praying: ('\ecc8', '\ecc9'), + handshake: ('\e582', '\e583'), + hard-drive: ('\e29e', '\e29f'), + hard-drives: ('\e2a0', '\e2a1'), + hard-hat: ('\ed46', '\ed47'), + hash: ('\e2a2', '\e2a3'), + hash-straight: ('\e2a4', '\e2a5'), + head-circuit: ('\e7d4', '\e7d5'), + headlights: ('\e6fe', '\e6ff'), + headphones: ('\e2a6', '\e2a7'), + headset: ('\e584', '\e585'), + heart: ('\e2a8', '\e2a9'), + heart-break: ('\ebe8', '\ebe9'), + heart-half: ('\ec48', '\ec49'), + heart-straight: ('\e2aa', '\e2ab'), + heart-straight-break: ('\eb98', '\eb99'), + heartbeat: ('\e2ac', '\e2ad'), + hexagon: ('\e2ae', '\e2af'), + high-definition: ('\ea8e', '\ea8f'), + high-heel: ('\e8e8', '\e8e9'), + highlighter: ('\ec76', '\ec77'), + highlighter-circle: ('\e632', '\e633'), + hockey: ('\ec86', '\ec87'), + hoodie: ('\ecd0', '\ecd1'), + horse: ('\e2b0', '\e2b1'), + hospital: ('\e844', '\e845'), + hourglass: ('\e2b2', '\e2b3'), + hourglass-high: ('\e2b4', '\e2b5'), + hourglass-low: ('\e2b6', '\e2b7'), + hourglass-medium: ('\e2b8', '\e2b9'), + hourglass-simple: ('\e2ba', '\e2bb'), + hourglass-simple-high: ('\e2bc', '\e2bd'), + hourglass-simple-low: ('\e2be', '\e2bf'), + hourglass-simple-medium: ('\e2c0', '\e2c1'), + house: ('\e2c2', '\e2c3'), + house-line: ('\e2c4', '\e2c5'), + house-simple: ('\e2c6', '\e2c7'), + hurricane: ('\e88e', '\e88f'), + ice-cream: ('\e804', '\e805'), + identification-badge: ('\e6f6', '\e6f7'), + identification-card: ('\e2c8', '\e2c9'), + image: ('\e2ca', '\e2cb'), + image-broken: ('\e7a8', '\e7a9'), + image-square: ('\e2cc', '\e2cd'), + images: ('\e836', '\e837'), + images-square: ('\e834', '\e835'), + infinity: ('\e634', '\e635'), + info: ('\e2ce', '\e2cf'), + instagram-logo: ('\e2d0', '\e2d1'), + intersect: ('\e2d2', '\e2d3'), + intersect-square: ('\e87a', '\e87b'), + intersect-three: ('\ecc4', '\ecc5'), + intersection: ('\edba', '\edbb'), + invoice: ('\ee42', '\ee43'), + island: ('\ee06', '\ee07'), + jar: ('\e7e0', '\e7e3'), + jar-label: ('\e7e1', '\e7e5'), + jeep: ('\e2d4', '\e2d5'), + joystick: ('\ea5e', '\ea5f'), + kanban: ('\eb54', '\eb55'), + key: ('\e2d6', '\e2d7'), + key-return: ('\e782', '\e783'), + keyboard: ('\e2d8', '\e2d9'), + keyhole: ('\ea78', '\ea79'), + knife: ('\e636', '\e637'), + ladder: ('\e9e4', '\e9e5'), + ladder-simple: ('\ec26', '\ec27'), + lamp: ('\e638', '\e639'), + lamp-pendant: ('\ee2e', '\ee2f'), + laptop: ('\e586', '\e587'), + lasso: ('\edc6', '\edc7'), + lastfm-logo: ('\e842', '\e843'), + layout: ('\e6d6', '\e6d7'), + leaf: ('\e2da', '\e2db'), + lectern: ('\e95a', '\e95b'), + lego: ('\e8c6', '\e8c8'), + lego-smiley: ('\e8c7', '\e8c9'), + less-than: ('\edac', '\edad'), + less-than-or-equal: ('\eda4', '\eda5'), + letter-circle-h: ('\ebf8', '\ebf9'), + letter-circle-p: ('\ec08', '\ec09'), + letter-circle-v: ('\ec14', '\ec15'), + lifebuoy: ('\e63a', '\e63b'), + lightbulb: ('\e2dc', '\e2dd'), + lightbulb-filament: ('\e63c', '\e63d'), + lighthouse: ('\e9f6', '\e9f7'), + lightning: ('\e2de', '\e2df'), + lightning-a: ('\ea84', '\ea85'), + lightning-slash: ('\e2e0', '\e2e1'), + line-segment: ('\e6d2', '\e6d3'), + line-segments: ('\e6d4', '\e6d5'), + line-vertical: ('\ed70', '\ed71'), + link: ('\e2e2', '\e2e3'), + link-break: ('\e2e4', '\e2e5'), + link-simple: ('\e2e6', '\e2e7'), + link-simple-break: ('\e2e8', '\e2e9'), + link-simple-horizontal: ('\e2ea', '\e2eb'), + link-simple-horizontal-break: ('\e2ec', '\e2ed'), + linkedin-logo: ('\e2ee', '\e2ef'), + linktree-logo: ('\edee', '\edef'), + linux-logo: ('\eb02', '\eb03'), + list: ('\e2f0', '\e2f1'), + list-bullets: ('\e2f2', '\e2f3'), + list-checks: ('\eadc', '\eadd'), + list-dashes: ('\e2f4', '\e2f5'), + list-heart: ('\ebde', '\ebdf'), + list-magnifying-glass: ('\ebe0', '\ebe1'), + list-numbers: ('\e2f6', '\e2f7'), + list-plus: ('\e2f8', '\e2f9'), + list-star: ('\ebdc', '\ebdd'), + lock: ('\e2fa', '\e2fb'), + lock-key: ('\e2fe', '\e2ff'), + lock-key-open: ('\e300', '\e301'), + lock-laminated: ('\e302', '\e303'), + lock-laminated-open: ('\e304', '\e305'), + lock-open: ('\e306', '\e307'), + lock-simple: ('\e308', '\e309'), + lock-simple-open: ('\e30a', '\e30b'), + lockers: ('\ecb8', '\ecb9'), + log: ('\ed82', '\ed83'), + magic-wand: ('\e6b6', '\e6b7'), + magnet: ('\e680', '\e681'), + magnet-straight: ('\e682', '\e683'), + magnifying-glass: ('\e30c', '\e30d'), + magnifying-glass-minus: ('\e30e', '\e30f'), + magnifying-glass-plus: ('\e310', '\e311'), + mailbox: ('\ec1e', '\ec1f'), + map-pin: ('\e316', '\e317'), + map-pin-area: ('\ee3a', '\ee3b'), + map-pin-line: ('\e318', '\e319'), + map-pin-plus: ('\e314', '\e315'), + map-pin-simple: ('\ee3e', '\ee3f'), + map-pin-simple-area: ('\ee3c', '\ee3d'), + map-pin-simple-line: ('\ee38', '\ee39'), + map-trifold: ('\e31a', '\e31b'), + markdown-logo: ('\e508', '\e509'), + marker-circle: ('\e640', '\e641'), + martini: ('\e31c', '\e31d'), + mask-happy: ('\e9f4', '\e9f5'), + mask-sad: ('\eb9e', '\eb9f'), + mastodon-logo: ('\ed68', '\ed69'), + math-operations: ('\e31e', '\e31f'), + matrix-logo: ('\ed64', '\ed65'), + medal: ('\e320', '\e321'), + medal-military: ('\ecfc', '\ecfd'), + medium-logo: ('\e322', '\e323'), + megaphone: ('\e324', '\e325'), + megaphone-simple: ('\e642', '\e643'), + member-of: ('\edc2', '\edc3'), + memory: ('\e9c4', '\e9c5'), + messenger-logo: ('\e6d8', '\e6d9'), + meta-logo: ('\ed02', '\ed03'), + meteor: ('\e9ba', '\e9bb'), + metronome: ('\ec8e', '\ec8f'), + microphone: ('\e326', '\e327'), + microphone-slash: ('\e328', '\e329'), + microphone-stage: ('\e75c', '\e75d'), + microscope: ('\ec7a', '\ec7b'), + microsoft-excel-logo: ('\eb6c', '\eb6d'), + microsoft-outlook-logo: ('\eb70', '\eb71'), + microsoft-powerpoint-logo: ('\eace', '\eacf'), + microsoft-teams-logo: ('\eb66', '\eb67'), + microsoft-word-logo: ('\eb6a', '\eb6b'), + minus: ('\e32a', '\e32b'), + minus-circle: ('\e32c', '\e32d'), + minus-square: ('\ed4c', '\ed53'), + money: ('\e588', '\e589'), + money-wavy: ('\ee68', '\ee69'), + monitor: ('\e32e', '\e32f'), + monitor-arrow-up: ('\e58a', '\e58b'), + monitor-play: ('\e58c', '\e58d'), + moon: ('\e330', '\e331'), + moon-stars: ('\e58e', '\e58f'), + moped: ('\e824', '\e825'), + moped-front: ('\e822', '\e823'), + mosque: ('\ecee', '\ecef'), + motorcycle: ('\e80a', '\e80b'), + mountains: ('\e7ae', '\e7af'), + mouse: ('\e33a', '\e33b'), + mouse-left-click: ('\e334', '\e335'), + mouse-middle-click: ('\e338', '\e339'), + mouse-right-click: ('\e336', '\e337'), + mouse-scroll: ('\e332', '\e333'), + mouse-simple: ('\e644', '\e645'), + music-note: ('\e33c', '\e33d'), + music-note-simple: ('\e33e', '\e33f'), + music-notes: ('\e340', '\e341'), + music-notes-minus: ('\ee0c', '\ee0d'), + music-notes-plus: ('\eb7c', '\eb7d'), + music-notes-simple: ('\e342', '\e343'), + navigation-arrow: ('\eade', '\eadf'), + needle: ('\e82e', '\e82f'), + network: ('\edde', '\eddf'), + network-slash: ('\eddc', '\eddd'), + network-x: ('\edda', '\eddb'), + newspaper: ('\e344', '\e345'), + newspaper-clipping: ('\e346', '\e347'), + not-equals: ('\eda6', '\eda7'), + not-member-of: ('\edae', '\edaf'), + not-subset-of: ('\edb0', '\edb1'), + not-superset-of: ('\edb2', '\edb3'), + notches: ('\ed3a', '\ed3b'), + note: ('\e348', '\e349'), + note-blank: ('\e34a', '\e34b'), + note-pencil: ('\e34c', '\e34d'), + notebook: ('\e34e', '\e34f'), + notepad: ('\e63e', '\e63f'), + notification: ('\e6fa', '\e6fb'), + notion-logo: ('\e9a0', '\e9a1'), + nuclear-plant: ('\ed7c', '\ed7d'), + number-circle-eight: ('\e352', '\e353'), + number-circle-five: ('\e358', '\e359'), + number-circle-four: ('\e35e', '\e35f'), + number-circle-nine: ('\e364', '\e365'), + number-circle-one: ('\e36a', '\e36b'), + number-circle-seven: ('\e370', '\e371'), + number-circle-six: ('\e376', '\e377'), + number-circle-three: ('\e37c', '\e37d'), + number-circle-two: ('\e382', '\e383'), + number-circle-zero: ('\e388', '\e389'), + number-eight: ('\e350', '\e351'), + number-five: ('\e356', '\e357'), + number-four: ('\e35c', '\e35d'), + number-nine: ('\e362', '\e363'), + number-one: ('\e368', '\e369'), + number-seven: ('\e36e', '\e36f'), + number-six: ('\e374', '\e375'), + number-square-eight: ('\e354', '\e355'), + number-square-five: ('\e35a', '\e35b'), + number-square-four: ('\e360', '\e361'), + number-square-nine: ('\e366', '\e367'), + number-square-one: ('\e36c', '\e36d'), + number-square-seven: ('\e372', '\e373'), + number-square-six: ('\e378', '\e379'), + number-square-three: ('\e37e', '\e37f'), + number-square-two: ('\e384', '\e385'), + number-square-zero: ('\e38a', '\e38b'), + number-three: ('\e37a', '\e37b'), + number-two: ('\e380', '\e381'), + number-zero: ('\e386', '\e387'), + numpad: ('\e3c8', '\e3c9'), + nut: ('\e38c', '\e38d'), + ny-times-logo: ('\e646', '\e647'), + octagon: ('\e38e', '\e38f'), + office-chair: ('\ea46', '\ea47'), + onigiri: ('\ee2c', '\ee2d'), + open-ai-logo: ('\e7d2', '\e7d3'), + option: ('\e8a8', '\e8a9'), + orange: ('\ee40', '\ee41'), + orange-slice: ('\ed36', '\ed37'), + oven: ('\ed8c', '\ed8d'), + package: ('\e390', '\e391'), + paint-brush: ('\e6f0', '\e6f1'), + paint-brush-broad: ('\e590', '\e591'), + paint-brush-household: ('\e6f2', '\e6f3'), + paint-bucket: ('\e392', '\e393'), + paint-roller: ('\e6f4', '\e6f5'), + palette: ('\e6c8', '\e6c9'), + panorama: ('\eaa2', '\eaa3'), + pants: ('\ec88', '\ec89'), + paper-plane: ('\e394', '\e395'), + paper-plane-right: ('\e396', '\e397'), + paper-plane-tilt: ('\e398', '\e399'), + paperclip: ('\e39a', '\e39b'), + paperclip-horizontal: ('\e592', '\e593'), + parachute: ('\ea7c', '\ea7d'), + paragraph: ('\e960', '\e961'), + parallelogram: ('\ecc6', '\ecc7'), + park: ('\ecb2', '\ecb3'), + password: ('\e752', '\e753'), + path: ('\e39c', '\e39d'), + patreon-logo: ('\e98a', '\e98b'), + pause: ('\e39e', '\e39f'), + pause-circle: ('\e3a0', '\e3a1'), + paw-print: ('\e648', '\e649'), + paypal-logo: ('\e98c', '\e98d'), + peace: ('\e3a2', '\e3a3'), + pen: ('\e3aa', '\e3ab'), + pen-nib: ('\e3ac', '\e3ad'), + pen-nib-straight: ('\e64a', '\e64b'), + pencil: ('\e3ae', '\e3af'), + pencil-circle: ('\e3b0', '\e3b1'), + pencil-line: ('\e3b2', '\e3b3'), + pencil-ruler: ('\e906', '\e907'), + pencil-simple: ('\e3b4', '\e3b5'), + pencil-simple-line: ('\ebc6', '\ebc7'), + pencil-simple-slash: ('\ecf6', '\ecf7'), + pencil-slash: ('\ecf8', '\ecf9'), + pentagon: ('\ec7e', '\ec7f'), + pentagram: ('\ec5c', '\ec5d'), + pepper: ('\e94a', '\e94b'), + percent: ('\e3b6', '\e3b7'), + person: ('\e3a8', '\e3a9'), + person-arms-spread: ('\ecfe', '\ecff'), + person-simple: ('\e72e', '\e72f'), + person-simple-bike: ('\e734', '\e735'), + person-simple-circle: ('\ee58', '\ee59'), + person-simple-hike: ('\ed54', '\ed55'), + person-simple-run: ('\e730', '\e731'), + person-simple-ski: ('\e71c', '\e71d'), + person-simple-snowboard: ('\e71e', '\e71f'), + person-simple-swim: ('\e736', '\e737'), + person-simple-tai-chi: ('\ed5c', '\ed5d'), + person-simple-throw: ('\e732', '\e733'), + person-simple-walk: ('\e73a', '\e73b'), + perspective: ('\ebe6', '\ebe7'), + phone: ('\e3b8', '\e3b9'), + phone-call: ('\e3ba', '\e3bb'), + phone-disconnect: ('\e3bc', '\e3bd'), + phone-incoming: ('\e3be', '\e3bf'), + phone-list: ('\e3cc', '\e3cd'), + phone-outgoing: ('\e3c0', '\e3c1'), + phone-pause: ('\e3ca', '\e3cb'), + phone-plus: ('\ec56', '\ec57'), + phone-slash: ('\e3c2', '\e3c3'), + phone-transfer: ('\e3c6', '\e3c7'), + phone-x: ('\e3c4', '\e3c5'), + phosphor-logo: ('\e3ce', '\e3cf'), + pi: ('\ec80', '\ec81'), + piano-keys: ('\e9c8', '\e9c9'), + picnic-table: ('\ee26', '\ee27'), + picture-in-picture: ('\e64c', '\e64d'), + piggy-bank: ('\ea04', '\ea05'), + pill: ('\e700', '\e701'), + ping-pong: ('\ea42', '\ea43'), + pint-glass: ('\edd0', '\edd1'), + pinterest-logo: ('\e64e', '\e64f'), + pinwheel: ('\eb9c', '\eb9d'), + pipe: ('\ed86', '\ed87'), + pipe-wrench: ('\ed88', '\ed89'), + pix-logo: ('\ecc2', '\ecc3'), + pizza: ('\e796', '\e797'), + placeholder: ('\e650', '\e651'), + planet: ('\e652', '\e653'), + plant: ('\ebae', '\ebaf'), + play: ('\e3d0', '\e3d1'), + play-circle: ('\e3d2', '\e3d3'), + play-pause: ('\e8be', '\e8bf'), + playlist: ('\e6aa', '\e6ab'), + plug: ('\e946', '\e947'), + plug-charging: ('\eb5c', '\eb5d'), + plugs: ('\eb56', '\eb57'), + plugs-connected: ('\eb5a', '\eb5b'), + plus: ('\e3d4', '\e3d5'), + plus-circle: ('\e3d6', '\e3d7'), + plus-minus: ('\e3d8', '\e3d9'), + plus-square: ('\ed4a', '\ed56'), + poker-chip: ('\e594', '\e595'), + police-car: ('\ec4a', '\ec4b'), + polygon: ('\e6d0', '\e6d1'), + popcorn: ('\eb4e', '\eb4f'), + popsicle: ('\ebbe', '\ebbf'), + potted-plant: ('\ec22', '\ec23'), + power: ('\e3da', '\e3db'), + prescription: ('\e7a2', '\e7a3'), + presentation: ('\e654', '\e655'), + presentation-chart: ('\e656', '\e657'), + printer: ('\e3dc', '\e3dd'), + prohibit: ('\e3de', '\e3df'), + prohibit-inset: ('\e3e0', '\e3e1'), + projector-screen: ('\e658', '\e659'), + projector-screen-chart: ('\e65a', '\e65b'), + pulse: ('\e000', '\e001'), + push-pin: ('\e3e2', '\e3e3'), + push-pin-simple: ('\e65c', '\e65d'), + push-pin-simple-slash: ('\e65e', '\e65f'), + push-pin-slash: ('\e3e4', '\e3e5'), + puzzle-piece: ('\e596', '\e597'), + qr-code: ('\e3e6', '\e3e7'), + question: ('\e3e8', '\e3eb'), + question-mark: ('\e3e9', '\e3ed'), + queue: ('\e6ac', '\e6ad'), + quotes: ('\e660', '\e661'), + rabbit: ('\eac2', '\eac3'), + racquet: ('\ee02', '\ee03'), + radical: ('\e3ea', '\e3ef'), + radio: ('\e77e', '\e77f'), + radio-button: ('\eb08', '\eb09'), + radioactive: ('\e9dc', '\e9dd'), + rainbow: ('\e598', '\e599'), + rainbow-cloud: ('\e59a', '\e59b'), + ranking: ('\ed62', '\ed63'), + read-cv-logo: ('\ed0c', '\ed0d'), + receipt: ('\e3ec', '\e3f1'), + receipt-x: ('\ed40', '\ed41'), + record: ('\e3ee', '\e3f3'), + rectangle: ('\e3f0', '\e3f5'), + rectangle-dashed: ('\e3f2', '\e3f7'), + recycle: ('\e75a', '\e75b'), + reddit-logo: ('\e59c', '\e59d'), + repeat: ('\e3f6', '\e3f9'), + repeat-once: ('\e3f8', '\e3fb'), + replit-logo: ('\eb8a', '\eb8b'), + resize: ('\ed6e', '\ed6f'), + rewind: ('\e6a8', '\e6a9'), + rewind-circle: ('\e3fa', '\e3fd'), + road-horizon: ('\e838', '\e839'), + robot: ('\e762', '\e763'), + rocket: ('\e3fc', '\e3ff'), + rocket-launch: ('\e3fe', '\e401'), + rows: ('\e5a2', '\e5a3'), + rows-plus-bottom: ('\e59e', '\e59f'), + rows-plus-top: ('\e5a0', '\e5a1'), + rss: ('\e400', '\e403'), + rss-simple: ('\e402', '\e405'), + rug: ('\ea1a', '\ea1b'), + ruler: ('\e6b8', '\e6b9'), + sailboat: ('\e78a', '\e78b'), + scales: ('\e750', '\e751'), + scan: ('\ebb6', '\ebb7'), + scan-smiley: ('\ebb4', '\ebb5'), + scissors: ('\eae0', '\eae1'), + scooter: ('\e820', '\e821'), + screencast: ('\e404', '\e407'), + screwdriver: ('\e86e', '\e86f'), + scribble: ('\e806', '\e807'), + scribble-loop: ('\e662', '\e663'), + scroll: ('\eb7a', '\eb7b'), + seal: ('\e604', '\e605'), + seal-check: ('\e606', '\e607'), + seal-percent: ('\e60a', '\e60b'), + seal-question: ('\e608', '\e609'), + seal-warning: ('\e60c', '\e60d'), + seat: ('\eb8e', '\eb8f'), + seatbelt: ('\edfe', '\edff'), + security-camera: ('\eca4', '\eca5'), + selection: ('\e69a', '\e69b'), + selection-all: ('\e746', '\e747'), + selection-background: ('\eaf8', '\eaf9'), + selection-foreground: ('\eaf6', '\eaf7'), + selection-inverse: ('\e744', '\e745'), + selection-plus: ('\e69c', '\e69d'), + selection-slash: ('\e69e', '\e69f'), + shapes: ('\ec5e', '\ec5f'), + share: ('\e406', '\e409'), + share-fat: ('\ed52', '\ed57'), + share-network: ('\e408', '\e40b'), + shield: ('\e40a', '\e40d'), + shield-check: ('\e40c', '\e40f'), + shield-checkered: ('\e708', '\e709'), + shield-chevron: ('\e40e', '\e411'), + shield-plus: ('\e706', '\e707'), + shield-slash: ('\e410', '\e413'), + shield-star: ('\ec34', '\ec35'), + shield-warning: ('\e412', '\e414'), + shipping-container: ('\e78c', '\e78d'), + shirt-folded: ('\ea92', '\ea93'), + shooting-star: ('\ecfa', '\ecfb'), + shopping-bag: ('\e416', '\e417'), + shopping-bag-open: ('\e418', '\e419'), + shopping-cart: ('\e41e', '\e41f'), + shopping-cart-simple: ('\e420', '\e421'), + shovel: ('\e9e6', '\e9e7'), + shower: ('\e776', '\e777'), + shrimp: ('\eab4', '\eab5'), + shuffle: ('\e422', '\e423'), + shuffle-angular: ('\e424', '\e425'), + shuffle-simple: ('\e426', '\e427'), + sidebar: ('\eab6', '\eab7'), + sidebar-simple: ('\ec24', '\ec25'), + sigma: ('\eab8', '\eab9'), + sign-in: ('\e428', '\e429'), + sign-out: ('\e42a', '\e42b'), + signature: ('\ebac', '\ebad'), + signpost: ('\e89c', '\e89d'), + sim-card: ('\e664', '\e665'), + siren: ('\e9b8', '\e9b9'), + sketch-logo: ('\e42c', '\e42d'), + skip-back: ('\e5a4', '\e5a5'), + skip-back-circle: ('\e42e', '\e42f'), + skip-forward: ('\e5a6', '\e5a7'), + skip-forward-circle: ('\e430', '\e431'), + skull: ('\e916', '\e917'), + skype-logo: ('\e8dc', '\e8dd'), + slack-logo: ('\e5a8', '\e5a9'), + sliders: ('\e432', '\e433'), + sliders-horizontal: ('\e434', '\e435'), + slideshow: ('\ed32', '\ed33'), + smiley: ('\e436', '\e437'), + smiley-angry: ('\ec62', '\ec63'), + smiley-blank: ('\e438', '\e439'), + smiley-meh: ('\e43a', '\e43b'), + smiley-melting: ('\ee56', '\ee57'), + smiley-nervous: ('\e43c', '\e43d'), + smiley-sad: ('\e43e', '\e43f'), + smiley-sticker: ('\e440', '\e441'), + smiley-wink: ('\e666', '\e667'), + smiley-x-eyes: ('\e442', '\e443'), + snapchat-logo: ('\e668', '\e669'), + sneaker: ('\e80c', '\e80d'), + sneaker-move: ('\ed60', '\ed61'), + snowflake: ('\e5aa', '\e5ab'), + soccer-ball: ('\e716', '\e717'), + sock: ('\ecce', '\eccf'), + solar-panel: ('\ed7a', '\ed7e'), + solar-roof: ('\ed7b', '\ed7f'), + sort-ascending: ('\e444', '\e445'), + sort-descending: ('\e446', '\e447'), + soundcloud-logo: ('\e8de', '\e8df'), + spade: ('\e448', '\e449'), + sparkle: ('\e6a2', '\e6a3'), + speaker-hifi: ('\ea08', '\ea09'), + speaker-high: ('\e44a', '\e44b'), + speaker-low: ('\e44c', '\e44d'), + speaker-none: ('\e44e', '\e44f'), + speaker-simple-high: ('\e450', '\e451'), + speaker-simple-low: ('\e452', '\e453'), + speaker-simple-none: ('\e454', '\e455'), + speaker-simple-slash: ('\e456', '\e457'), + speaker-simple-x: ('\e458', '\e459'), + speaker-slash: ('\e45a', '\e45b'), + speaker-x: ('\e45c', '\e45d'), + speedometer: ('\ee74', '\ee75'), + sphere: ('\ee66', '\ee67'), + spinner: ('\e66a', '\e66b'), + spinner-ball: ('\ee28', '\ee29'), + spinner-gap: ('\e66c', '\e66d'), + spiral: ('\e9fa', '\e9fb'), + split-horizontal: ('\e872', '\e873'), + split-vertical: ('\e876', '\e877'), + spotify-logo: ('\e66e', '\e66f'), + spray-bottle: ('\e7e4', '\e7e8'), + square: ('\e45e', '\e45f'), + square-half: ('\e462', '\e463'), + square-half-bottom: ('\eb16', '\eb17'), + square-logo: ('\e690', '\e691'), + square-split-horizontal: ('\e870', '\e871'), + square-split-vertical: ('\e874', '\e875'), + squares-four: ('\e464', '\e465'), + stack: ('\e466', '\e467'), + stack-minus: ('\edf4', '\edf5'), + stack-overflow-logo: ('\eb78', '\eb79'), + stack-plus: ('\edf6', '\edf7'), + stack-simple: ('\e468', '\e469'), + stairs: ('\e8ec', '\e8ed'), + stamp: ('\ea48', '\ea49'), + standard-definition: ('\ea90', '\ea91'), + star: ('\e46a', '\e46b'), + star-and-crescent: ('\ecf4', '\ecf5'), + star-four: ('\e6a4', '\e6a5'), + star-half: ('\e70a', '\e70b'), + star-of-david: ('\e89e', '\e89f'), + steam-logo: ('\ead4', '\ead5'), + steering-wheel: ('\e9ac', '\e9ad'), + steps: ('\ecbe', '\ecbf'), + stethoscope: ('\e7ea', '\e7eb'), + sticker: ('\e5ac', '\e5ad'), + stool: ('\ea44', '\ea45'), + stop: ('\e46c', '\e46d'), + stop-circle: ('\e46e', '\e46f'), + storefront: ('\e470', '\e471'), + strategy: ('\ea3a', '\ea3b'), + stripe-logo: ('\e698', '\e699'), + student: ('\e73e', '\e73f'), + subset-of: ('\edc0', '\edc1'), + subset-proper-of: ('\edb6', '\edb7'), + subtitles: ('\e1a8', '\e1a9'), + subtitles-slash: ('\e1a6', '\e1a7'), + subtract: ('\ebd6', '\ebd7'), + subtract-square: ('\ebd4', '\ebd5'), + subway: ('\e498', '\e499'), + suitcase: ('\e5ae', '\e5af'), + suitcase-rolling: ('\e9b0', '\e9b1'), + suitcase-simple: ('\e5b0', '\e5b1'), + sun: ('\e472', '\e473'), + sun-dim: ('\e474', '\e475'), + sun-horizon: ('\e5b6', '\e5b7'), + sunglasses: ('\e816', '\e817'), + superset-of: ('\edb8', '\edb9'), + superset-proper-of: ('\edb4', '\edb5'), + swap: ('\e83c', '\e83d'), + swatches: ('\e5b8', '\e5b9'), + swimming-pool: ('\ecb6', '\ecb7'), + sword: ('\e5ba', '\e5bb'), + synagogue: ('\ecec', '\eced'), + syringe: ('\e968', '\e969'), + t-shirt: ('\e670', '\e671'), + table: ('\e476', '\e477'), + tabs: ('\e778', '\e779'), + tag: ('\e478', '\e479'), + tag-chevron: ('\e672', '\e673'), + tag-simple: ('\e47a', '\e47b'), + target: ('\e47c', '\e47d'), + taxi: ('\e902', '\e903'), + tea-bag: ('\e8e6', '\e8e7'), + telegram-logo: ('\e5bc', '\e5bd'), + television: ('\e754', '\e755'), + television-simple: ('\eae6', '\eae7'), + tennis-ball: ('\e720', '\e721'), + tent: ('\e8ba', '\e8bb'), + terminal: ('\e47e', '\e47f'), + terminal-window: ('\eae8', '\eae9'), + test-tube: ('\e7a0', '\e7a1'), + text-a-underline: ('\ed34', '\ed35'), + text-aa: ('\e6ee', '\e6ef'), + text-align-center: ('\e480', '\e481'), + text-align-justify: ('\e482', '\e483'), + text-align-left: ('\e484', '\e485'), + text-align-right: ('\e486', '\e487'), + text-b: ('\e5be', '\e5bf'), + text-columns: ('\ec96', '\ec97'), + text-h: ('\e6ba', '\e6bb'), + text-h-five: ('\e6c4', '\e6c5'), + text-h-four: ('\e6c2', '\e6c3'), + text-h-one: ('\e6bc', '\e6bd'), + text-h-six: ('\e6c6', '\e6c7'), + text-h-three: ('\e6c0', '\e6c1'), + text-h-two: ('\e6be', '\e6bf'), + text-indent: ('\ea1e', '\ea1f'), + text-italic: ('\e5c0', '\e5c1'), + text-outdent: ('\ea1c', '\ea1d'), + text-strikethrough: ('\e5c2', '\e5c3'), + text-subscript: ('\ec98', '\ec99'), + text-superscript: ('\ec9a', '\ec9b'), + text-t: ('\e48a', '\e48b'), + text-t-slash: ('\e488', '\e489'), + text-underline: ('\e5c4', '\e5c5'), + textbox: ('\eb0a', '\eb0b'), + thermometer: ('\e5c6', '\e5c7'), + thermometer-cold: ('\e5c8', '\e5c9'), + thermometer-hot: ('\e5ca', '\e5cb'), + thermometer-simple: ('\e5cc', '\e5cd'), + threads-logo: ('\ed9e', '\ed9f'), + three-d: ('\ea5a', '\ea5b'), + thumbs-down: ('\e48c', '\e48d'), + thumbs-up: ('\e48e', '\e48f'), + ticket: ('\e490', '\e491'), + tidal-logo: ('\ed1c', '\ed1d'), + tiktok-logo: ('\eaf2', '\eaf3'), + tilde: ('\eda8', '\eda9'), + timer: ('\e492', '\e493'), + tip-jar: ('\e7e2', '\e7e9'), + tipi: ('\ed30', '\ed31'), + tire: ('\edd2', '\edd3'), + toggle-left: ('\e674', '\e675'), + toggle-right: ('\e676', '\e677'), + toilet: ('\e79a', '\e79b'), + toilet-paper: ('\e79c', '\e79d'), + toolbox: ('\eca0', '\eca1'), + tooth: ('\e9cc', '\e9cd'), + tornado: ('\e88c', '\e88d'), + tote: ('\e494', '\e495'), + tote-simple: ('\e678', '\e679'), + towel: ('\ede6', '\ede7'), + tractor: ('\ec6e', '\ec6f'), + trademark: ('\e9f0', '\e9f1'), + trademark-registered: ('\e3f4', '\e415'), + traffic-cone: ('\e9a8', '\e9a9'), + traffic-sign: ('\e67a', '\e67b'), + traffic-signal: ('\e9aa', '\e9ab'), + train: ('\e496', '\e497'), + train-regional: ('\e49e', '\e49f'), + train-simple: ('\e4a0', '\e4a1'), + tram: ('\e9ec', '\e9ed'), + translate: ('\e4a2', '\e4a3'), + trash: ('\e4a6', '\e4a7'), + trash-simple: ('\e4a8', '\e4a9'), + tray: ('\e4aa', '\e4ab'), + tray-arrow-down: ('\e010', '\e011'), + tray-arrow-up: ('\ee52', '\ee53'), + treasure-chest: ('\ede2', '\ede3'), + tree: ('\e6da', '\e6db'), + tree-evergreen: ('\e6dc', '\e6dd'), + tree-palm: ('\e91a', '\e91b'), + tree-structure: ('\e67c', '\e67d'), + tree-view: ('\ee48', '\ee49'), + trend-down: ('\e4ac', '\e4ad'), + trend-up: ('\e4ae', '\e4af'), + triangle: ('\e4b0', '\e4b1'), + triangle-dashed: ('\e4b2', '\e4b3'), + trolley: ('\e5b2', '\e5b3'), + trolley-suitcase: ('\e5b4', '\e5b5'), + trophy: ('\e67e', '\e67f'), + truck: ('\e4b4', '\e4b5'), + truck-trailer: ('\e4b6', '\e4b7'), + tumblr-logo: ('\e8d4', '\e8d5'), + twitch-logo: ('\e5ce', '\e5cf'), + twitter-logo: ('\e4ba', '\e4bb'), + umbrella: ('\e684', '\e685'), + umbrella-simple: ('\e686', '\e687'), + union: ('\edbe', '\edbf'), + unite: ('\e87e', '\e87f'), + unite-square: ('\e878', '\e879'), + upload: ('\e4be', '\e4bf'), + upload-simple: ('\e4c0', '\e4c1'), + usb: ('\e956', '\e957'), + user: ('\e4c2', '\e4c3'), + user-check: ('\eafa', '\eafb'), + user-circle: ('\e4c4', '\e4c5'), + user-circle-check: ('\ec38', '\ec39'), + user-circle-dashed: ('\ec36', '\ec37'), + user-circle-gear: ('\e4c6', '\e4c7'), + user-circle-minus: ('\e4c8', '\e4c9'), + user-circle-plus: ('\e4ca', '\e4cb'), + user-focus: ('\e6fc', '\e6fd'), + user-gear: ('\e4cc', '\e4cd'), + user-list: ('\e73c', '\e73d'), + user-minus: ('\e4ce', '\e4cf'), + user-plus: ('\e4d0', '\e4d1'), + user-rectangle: ('\e4d2', '\e4d3'), + user-sound: ('\eca8', '\eca9'), + user-square: ('\e4d4', '\e4d5'), + user-switch: ('\e756', '\e757'), + users: ('\e4d6', '\e4d7'), + users-four: ('\e68c', '\e68d'), + users-three: ('\e68e', '\e68f'), + van: ('\e826', '\e827'), + vault: ('\e76e', '\e76f'), + vector-three: ('\ee62', '\ee63'), + vector-two: ('\ee64', '\ee65'), + vibrate: ('\e4d8', '\e4d9'), + video: ('\e740', '\e741'), + video-camera: ('\e4da', '\e4db'), + video-camera-slash: ('\e4dc', '\e4dd'), + video-conference: ('\edce', '\edcf'), + vignette: ('\eba2', '\eba3'), + vinyl-record: ('\ecac', '\ecad'), + virtual-reality: ('\e7b8', '\e7b9'), + virus: ('\e7d6', '\e7d7'), + visor: ('\ee2a', '\ee2b'), + voicemail: ('\e4de', '\e4df'), + volleyball: ('\e726', '\e727'), + wall: ('\e688', '\e689'), + wallet: ('\e68a', '\e68b'), + warehouse: ('\ecd4', '\ecd5'), + warning: ('\e4e0', '\e4e1'), + warning-circle: ('\e4e2', '\e4e3'), + warning-diamond: ('\e7fc', '\e7fd'), + warning-octagon: ('\e4e4', '\e4e5'), + washing-machine: ('\ede8', '\ede9'), + watch: ('\e4e6', '\e4e7'), + wave-sawtooth: ('\ea9c', '\ea9d'), + wave-sine: ('\ea9a', '\ea9b'), + wave-square: ('\ea9e', '\ea9f'), + wave-triangle: ('\eaa0', '\eaa1'), + waveform: ('\e802', '\e803'), + waveform-slash: ('\e800', '\e801'), + waves: ('\e6de', '\e6df'), + webcam: ('\e9b2', '\e9b3'), + webcam-slash: ('\ecdc', '\ecdd'), + webhooks-logo: ('\ecae', '\ecaf'), + wechat-logo: ('\e8d2', '\e8d3'), + whatsapp-logo: ('\e5d0', '\e5d1'), + wheelchair: ('\e4e8', '\e4e9'), + wheelchair-motion: ('\e89a', '\e89b'), + wifi-high: ('\e4ea', '\e4eb'), + wifi-low: ('\e4ec', '\e4ed'), + wifi-medium: ('\e4ee', '\e4ef'), + // wifi-none: '\e4f0', // ::before { color: #444; } + wifi-slash: ('\e4f2', '\e4f3'), + wifi-x: ('\e4f4', '\e4f5'), + wind: ('\e5d2', '\e5d3'), + windmill: ('\e9f8', '\e9f9'), + windows-logo: ('\e692', '\e693'), + wine: ('\e6b2', '\e6b3'), + wrench: ('\e5d4', '\e5d5'), + x: ('\e4f6', '\e4f7'), + x-circle: ('\e4f8', '\e4f9'), + x-logo: ('\e4bc', '\e4bd'), + x-square: ('\e4fa', '\e4fb'), + yarn: ('\ed9a', '\ed9b'), + yin-yang: ('\e92a', '\e92b'), + youtube-logo: ('\e4fc', '\e4fd'), +); +/* stylelint-enable scss/dollar-variable-default */ diff --git a/style/index.import.scss b/style/index.import.scss new file mode 100644 index 0000000..59d6ac8 --- /dev/null +++ b/style/index.import.scss @@ -0,0 +1,3 @@ +@forward './global' as pulsanova-icons-*; + +@use './fonts'; diff --git a/style/index.scss b/style/index.scss new file mode 100644 index 0000000..83bedf5 --- /dev/null +++ b/style/index.scss @@ -0,0 +1,3 @@ +@forward './global'; + +@use './fonts'; diff --git a/yarn.lock b/yarn.lock new file mode 100644 index 0000000..d78c3ba --- /dev/null +++ b/yarn.lock @@ -0,0 +1,1224 @@ +# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. +# yarn lockfile v1 + + +"@babel/code-frame@^7.0.0": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.24.7.tgz#882fd9e09e8ee324e496bd040401c6f046ef4465" + integrity sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA== + dependencies: + "@babel/highlight" "^7.24.7" + picocolors "^1.0.0" + +"@babel/helper-validator-identifier@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.24.7.tgz#75b889cfaf9e35c2aaf42cf0d72c8e91719251db" + integrity sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w== + +"@babel/highlight@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.24.7.tgz#a05ab1df134b286558aae0ed41e6c5f731bf409d" + integrity sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw== + dependencies: + "@babel/helper-validator-identifier" "^7.24.7" + chalk "^2.4.2" + js-tokens "^4.0.0" + picocolors "^1.0.0" + +"@nodelib/fs.scandir@2.1.5": + version "2.1.5" + resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz#7619c2eb21b25483f6d167548b4cfd5a7488c3d5" + integrity sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g== + dependencies: + "@nodelib/fs.stat" "2.0.5" + run-parallel "^1.1.9" + +"@nodelib/fs.stat@2.0.5", "@nodelib/fs.stat@^2.0.2": + version "2.0.5" + resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz#5bd262af94e9d25bd1e71b05deed44876a222e8b" + integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A== + +"@nodelib/fs.walk@^1.2.3": + version "1.2.8" + resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz#e95737e8bb6746ddedf69c556953494f196fe69a" + integrity sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg== + dependencies: + "@nodelib/fs.scandir" "2.1.5" + fastq "^1.6.0" + +"@phosphor-icons/web@~2.1.1": + version "2.1.1" + resolved "https://registry.yarnpkg.com/@phosphor-icons/web/-/web-2.1.1.tgz#a456457f8be17199cb03aa172ce352cc107ae707" + integrity sha512-QjrfbItu5Rb2i37GzsKxmrRHfZPTVk3oXSPBnQ2+oACDbQRWGAeB0AsvZw263n1nFouQuff+khOCtRbrc6+k+A== + +"@pulsanova/stylelint-config-base@2.0.1": + version "2.0.1" + resolved "https://registry.yarnpkg.com/@pulsanova/stylelint-config-base/-/stylelint-config-base-2.0.1.tgz#afaf138c4977fd03e2c1008dec059b87b033bfa4" + integrity sha512-7z0SIynzZctHzryN2agxRr17RIiFiotyHmq/HGRP4sINlclEVxtbMqH6Z8F3wf4N0QkS+0aoNPYQNBWAgAKhVg== + dependencies: + stylelint-config-standard "~24.0.0" + stylelint-declaration-block-no-ignored-properties "~2.5.0" + stylelint-order "~5.0.0" + +"@pulsanova/stylelint-config-scss@~2.0.1": + version "2.0.1" + resolved "https://registry.yarnpkg.com/@pulsanova/stylelint-config-scss/-/stylelint-config-scss-2.0.1.tgz#5cbabeaadd968eb28d3e4a97c437fa01c7e04ee1" + integrity sha512-5AI8cO0ucTEBD8ufYUqP3ULJFKOeT8JEX6c1wuyh71SHv/13zcXHde2f6Rt9WEffbxkAjpzuTIBm5j5RBvCCrQ== + dependencies: + "@pulsanova/stylelint-config-base" "2.0.1" + postcss "^8.3.11" + postcss-scss "^4.0.2" + stylelint-scss "~4.0.0" + +"@types/minimist@^1.2.0": + version "1.2.5" + resolved "https://registry.yarnpkg.com/@types/minimist/-/minimist-1.2.5.tgz#ec10755e871497bcd83efe927e43ec46e8c0747e" + integrity sha512-hov8bUuiLiyFPGyFPE1lwWhmzYbirOXQNNo40+y3zow8aFVTeyn3VWL0VFFfdNddA8S4Vf0Tc062rzyNr7Paag== + +"@types/normalize-package-data@^2.4.0": + version "2.4.4" + resolved "https://registry.yarnpkg.com/@types/normalize-package-data/-/normalize-package-data-2.4.4.tgz#56e2cc26c397c038fab0e3a917a12d5c5909e901" + integrity sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA== + +"@types/parse-json@^4.0.0": + version "4.0.2" + resolved "https://registry.yarnpkg.com/@types/parse-json/-/parse-json-4.0.2.tgz#5950e50960793055845e956c427fc2b0d70c5239" + integrity sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw== + +ajv@^8.0.1: + version "8.17.1" + resolved "https://registry.yarnpkg.com/ajv/-/ajv-8.17.1.tgz#37d9a5c776af6bc92d7f4f9510eba4c0a60d11a6" + integrity sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g== + dependencies: + fast-deep-equal "^3.1.3" + fast-uri "^3.0.1" + json-schema-traverse "^1.0.0" + require-from-string "^2.0.2" + +ansi-regex@^5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" + integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== + +ansi-styles@^3.2.1: + version "3.2.1" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" + integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== + dependencies: + color-convert "^1.9.0" + +ansi-styles@^4.0.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" + integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== + dependencies: + color-convert "^2.0.1" + +array-union@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/array-union/-/array-union-2.1.0.tgz#b798420adbeb1de828d84acd8a2e23d3efe85e8d" + integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw== + +arrify@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" + integrity sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA== + +astral-regex@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-2.0.0.tgz#483143c567aeed4785759c0865786dc77d7d2e31" + integrity sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ== + +balanced-match@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" + integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== + +balanced-match@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-2.0.0.tgz#dc70f920d78db8b858535795867bf48f820633d9" + integrity sha512-1ugUSr8BHXRnK23KfuYS+gVMC3LB8QGH9W1iGtDPsNWoQbgtXSExkBu2aDR4epiGWZOjZsj6lDl/N/AqqTC3UA== + +brace-expansion@^1.1.7: + version "1.1.11" + resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" + integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== + dependencies: + balanced-match "^1.0.0" + concat-map "0.0.1" + +braces@^3.0.3: + version "3.0.3" + resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.3.tgz#490332f40919452272d55a8480adc0c441358789" + integrity sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA== + dependencies: + fill-range "^7.1.1" + +callsites@^3.0.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" + integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== + +camelcase-keys@^6.2.2: + version "6.2.2" + resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-6.2.2.tgz#5e755d6ba51aa223ec7d3d52f25778210f9dc3c0" + integrity sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg== + dependencies: + camelcase "^5.3.1" + map-obj "^4.0.0" + quick-lru "^4.0.1" + +camelcase@^5.3.1: + version "5.3.1" + resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" + integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== + +chalk@^2.4.2: + version "2.4.2" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" + integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== + dependencies: + ansi-styles "^3.2.1" + escape-string-regexp "^1.0.5" + supports-color "^5.3.0" + +clone-regexp@^2.1.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/clone-regexp/-/clone-regexp-2.2.0.tgz#7d65e00885cd8796405c35a737e7a86b7429e36f" + integrity sha512-beMpP7BOtTipFuW8hrJvREQ2DrRu3BE7by0ZpibtfBA+qfHYvMGTc2Yb1JMYPKg/JUw0CHYvpg796aNTSW9z7Q== + dependencies: + is-regexp "^2.0.0" + +color-convert@^1.9.0: + version "1.9.3" + resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" + integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== + dependencies: + color-name "1.1.3" + +color-convert@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" + integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== + dependencies: + color-name "~1.1.4" + +color-name@1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" + integrity sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw== + +color-name@~1.1.4: + version "1.1.4" + resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" + integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== + +concat-map@0.0.1: + version "0.0.1" + resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" + integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg== + +cosmiconfig@^7.0.1: + version "7.1.0" + resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-7.1.0.tgz#1443b9afa596b670082ea46cbd8f6a62b84635f6" + integrity sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA== + dependencies: + "@types/parse-json" "^4.0.0" + import-fresh "^3.2.1" + parse-json "^5.0.0" + path-type "^4.0.0" + yaml "^1.10.0" + +cssesc@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-3.0.0.tgz#37741919903b868565e1c09ea747445cd18983ee" + integrity sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg== + +debug@^4.3.2: + version "4.3.6" + resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.6.tgz#2ab2c38fbaffebf8aa95fdfe6d88438c7a13c52b" + integrity sha512-O/09Bd4Z1fBrU4VzkhFqVgpPzaGbw6Sm9FEkBT1A/YBXQFGuuSxa1dN2nxgxS34JmKXqYx8CZAwEVoJFImUXIg== + dependencies: + ms "2.1.2" + +decamelize-keys@^1.1.0: + version "1.1.1" + resolved "https://registry.yarnpkg.com/decamelize-keys/-/decamelize-keys-1.1.1.tgz#04a2d523b2f18d80d0158a43b895d56dff8d19d8" + integrity sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg== + dependencies: + decamelize "^1.1.0" + map-obj "^1.0.0" + +decamelize@^1.1.0, decamelize@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" + integrity sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA== + +dir-glob@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-3.0.1.tgz#56dbf73d992a4a93ba1584f4534063fd2e41717f" + integrity sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA== + dependencies: + path-type "^4.0.0" + +emoji-regex@^8.0.0: + version "8.0.0" + resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" + integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== + +error-ex@^1.3.1: + version "1.3.2" + resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" + integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== + dependencies: + is-arrayish "^0.2.1" + +escape-string-regexp@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" + integrity sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg== + +execall@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/execall/-/execall-2.0.0.tgz#16a06b5fe5099df7d00be5d9c06eecded1663b45" + integrity sha512-0FU2hZ5Hh6iQnarpRtQurM/aAvp3RIbfvgLHrcqJYzhXyV2KFruhuChf9NC6waAhiUR7FFtlugkI4p7f2Fqlow== + dependencies: + clone-regexp "^2.1.0" + +fast-deep-equal@^3.1.3: + version "3.1.3" + resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" + integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== + +fast-glob@^3.2.7, fast-glob@^3.2.9: + version "3.3.2" + resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.3.2.tgz#a904501e57cfdd2ffcded45e99a54fef55e46129" + integrity sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow== + dependencies: + "@nodelib/fs.stat" "^2.0.2" + "@nodelib/fs.walk" "^1.2.3" + glob-parent "^5.1.2" + merge2 "^1.3.0" + micromatch "^4.0.4" + +fast-uri@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/fast-uri/-/fast-uri-3.0.1.tgz#cddd2eecfc83a71c1be2cc2ef2061331be8a7134" + integrity sha512-MWipKbbYiYI0UC7cl8m/i/IWTqfC8YXsqjzybjddLsFjStroQzsHXkc73JutMvBiXmOvapk+axIl79ig5t55Bw== + +fastest-levenshtein@^1.0.12: + version "1.0.16" + resolved "https://registry.yarnpkg.com/fastest-levenshtein/-/fastest-levenshtein-1.0.16.tgz#210e61b6ff181de91ea9b3d1b84fdedd47e034e5" + integrity sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg== + +fastq@^1.6.0: + version "1.17.1" + resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.17.1.tgz#2a523f07a4e7b1e81a42b91b8bf2254107753b47" + integrity sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w== + dependencies: + reusify "^1.0.4" + +file-entry-cache@^6.0.1: + version "6.0.1" + resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-6.0.1.tgz#211b2dd9659cb0394b073e7323ac3c933d522027" + integrity sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg== + dependencies: + flat-cache "^3.0.4" + +fill-range@^7.1.1: + version "7.1.1" + resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.1.1.tgz#44265d3cac07e3ea7dc247516380643754a05292" + integrity sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg== + dependencies: + to-regex-range "^5.0.1" + +find-up@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/find-up/-/find-up-4.1.0.tgz#97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19" + integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw== + dependencies: + locate-path "^5.0.0" + path-exists "^4.0.0" + +flat-cache@^3.0.4: + version "3.2.0" + resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-3.2.0.tgz#2c0c2d5040c99b1632771a9d105725c0115363ee" + integrity sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw== + dependencies: + flatted "^3.2.9" + keyv "^4.5.3" + rimraf "^3.0.2" + +flatted@^3.2.9: + version "3.3.1" + resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.3.1.tgz#21db470729a6734d4997002f439cb308987f567a" + integrity sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw== + +fs.realpath@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" + integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw== + +function-bind@^1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.2.tgz#2c02d864d97f3ea6c8830c464cbd11ab6eab7a1c" + integrity sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA== + +get-stdin@^8.0.0: + version "8.0.0" + resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-8.0.0.tgz#cbad6a73feb75f6eeb22ba9e01f89aa28aa97a53" + integrity sha512-sY22aA6xchAzprjyqmSEQv4UbAAzRN0L2dQB0NlN5acTTK9Don6nhoc3eAbUnpZiCANAMfd/+40kVdKfFygohg== + +glob-parent@^5.1.2: + version "5.1.2" + resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" + integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== + dependencies: + is-glob "^4.0.1" + +glob@^7.1.3: + version "7.2.3" + resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b" + integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q== + dependencies: + fs.realpath "^1.0.0" + inflight "^1.0.4" + inherits "2" + minimatch "^3.1.1" + once "^1.3.0" + path-is-absolute "^1.0.0" + +global-modules@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/global-modules/-/global-modules-2.0.0.tgz#997605ad2345f27f51539bea26574421215c7780" + integrity sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A== + dependencies: + global-prefix "^3.0.0" + +global-prefix@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/global-prefix/-/global-prefix-3.0.0.tgz#fc85f73064df69f50421f47f883fe5b913ba9b97" + integrity sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg== + dependencies: + ini "^1.3.5" + kind-of "^6.0.2" + which "^1.3.1" + +globby@^11.0.4: + version "11.1.0" + resolved "https://registry.yarnpkg.com/globby/-/globby-11.1.0.tgz#bd4be98bb042f83d796f7e3811991fbe82a0d34b" + integrity sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g== + dependencies: + array-union "^2.1.0" + dir-glob "^3.0.1" + fast-glob "^3.2.9" + ignore "^5.2.0" + merge2 "^1.4.1" + slash "^3.0.0" + +globjoin@^0.1.4: + version "0.1.4" + resolved "https://registry.yarnpkg.com/globjoin/-/globjoin-0.1.4.tgz#2f4494ac8919e3767c5cbb691e9f463324285d43" + integrity sha512-xYfnw62CKG8nLkZBfWbhWwDw02CHty86jfPcc2cr3ZfeuK9ysoVPPEUxf21bAD/rWAgk52SuBrLJlefNy8mvFg== + +hard-rejection@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/hard-rejection/-/hard-rejection-2.1.0.tgz#1c6eda5c1685c63942766d79bb40ae773cecd883" + integrity sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA== + +has-flag@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" + integrity sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw== + +hasown@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/hasown/-/hasown-2.0.2.tgz#003eaf91be7adc372e84ec59dc37252cedb80003" + integrity sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ== + dependencies: + function-bind "^1.1.2" + +hosted-git-info@^2.1.4: + version "2.8.9" + resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.9.tgz#dffc0bf9a21c02209090f2aa69429e1414daf3f9" + integrity sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw== + +hosted-git-info@^4.0.1: + version "4.1.0" + resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-4.1.0.tgz#827b82867e9ff1c8d0c4d9d53880397d2c86d224" + integrity sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA== + dependencies: + lru-cache "^6.0.0" + +html-tags@^3.1.0: + version "3.3.1" + resolved "https://registry.yarnpkg.com/html-tags/-/html-tags-3.3.1.tgz#a04026a18c882e4bba8a01a3d39cfe465d40b5ce" + integrity sha512-ztqyC3kLto0e9WbNp0aeP+M3kTt+nbaIveGmUxAtZa+8iFgKLUOD4YKM5j+f3QD89bra7UeumolZHKuOXnTmeQ== + +ignore@^5.1.9, ignore@^5.2.0: + version "5.3.1" + resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.3.1.tgz#5073e554cd42c5b33b394375f538b8593e34d4ef" + integrity sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw== + +import-fresh@^3.2.1: + version "3.3.0" + resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b" + integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw== + dependencies: + parent-module "^1.0.0" + resolve-from "^4.0.0" + +import-lazy@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/import-lazy/-/import-lazy-4.0.0.tgz#e8eb627483a0a43da3c03f3e35548be5cb0cc153" + integrity sha512-rKtvo6a868b5Hu3heneU+L4yEQ4jYKLtjpnPeUdK7h0yzXGmyBTypknlkCvHFBqfX9YlorEiMM6Dnq/5atfHkw== + +imurmurhash@^0.1.4: + version "0.1.4" + resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" + integrity sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA== + +indent-string@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-4.0.0.tgz#624f8f4497d619b2d9768531d58f4122854d7251" + integrity sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg== + +inflight@^1.0.4: + version "1.0.6" + resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" + integrity sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA== + dependencies: + once "^1.3.0" + wrappy "1" + +inherits@2: + version "2.0.4" + resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" + integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== + +ini@^1.3.5: + version "1.3.8" + resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.8.tgz#a29da425b48806f34767a4efce397269af28432c" + integrity sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew== + +is-arrayish@^0.2.1: + version "0.2.1" + resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" + integrity sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg== + +is-core-module@^2.13.0, is-core-module@^2.5.0: + version "2.15.0" + resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.15.0.tgz#71c72ec5442ace7e76b306e9d48db361f22699ea" + integrity sha512-Dd+Lb2/zvk9SKy1TGCt1wFJFo/MWBPMX5x7KcvLajWTGuomczdQX61PvY5yK6SVACwpoexWo81IfFyoKY2QnTA== + dependencies: + hasown "^2.0.2" + +is-extglob@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" + integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ== + +is-fullwidth-code-point@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" + integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== + +is-glob@^4.0.1: + version "4.0.3" + resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084" + integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== + dependencies: + is-extglob "^2.1.1" + +is-number@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" + integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== + +is-plain-obj@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e" + integrity sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg== + +is-plain-object@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-5.0.0.tgz#4427f50ab3429e9025ea7d52e9043a9ef4159344" + integrity sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q== + +is-regexp@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/is-regexp/-/is-regexp-2.1.0.tgz#cd734a56864e23b956bf4e7c66c396a4c0b22c2d" + integrity sha512-OZ4IlER3zmRIoB9AqNhEggVxqIH4ofDns5nRrPS6yQxXE1TPCUpFznBfRQmQa8uC+pXqjMnukiJBxCisIxiLGA== + +is-typedarray@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" + integrity sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA== + +isexe@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" + integrity sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw== + +js-tokens@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" + integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== + +json-buffer@3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/json-buffer/-/json-buffer-3.0.1.tgz#9338802a30d3b6605fbe0613e094008ca8c05a13" + integrity sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ== + +json-parse-even-better-errors@^2.3.0: + version "2.3.1" + resolved "https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz#7c47805a94319928e05777405dc12e1f7a4ee02d" + integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w== + +json-schema-traverse@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz#ae7bcb3656ab77a73ba5c49bf654f38e6b6860e2" + integrity sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug== + +keyv@^4.5.3: + version "4.5.4" + resolved "https://registry.yarnpkg.com/keyv/-/keyv-4.5.4.tgz#a879a99e29452f942439f2a405e3af8b31d4de93" + integrity sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw== + dependencies: + json-buffer "3.0.1" + +kind-of@^6.0.2, kind-of@^6.0.3: + version "6.0.3" + resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd" + integrity sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw== + +known-css-properties@^0.23.0: + version "0.23.0" + resolved "https://registry.yarnpkg.com/known-css-properties/-/known-css-properties-0.23.0.tgz#e643e1bab2b1f8ba292eea9557121cc02e9846a0" + integrity sha512-h9ivI88e1lFNmTT4HovBN33Ysn0OIJG7IPG2mkpx2uniQXFWqo35QdiX7w0TovlUFXfW8aPFblP5/q0jlOr2sA== + +lines-and-columns@^1.1.6: + version "1.2.4" + resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.2.4.tgz#eca284f75d2965079309dc0ad9255abb2ebc1632" + integrity sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg== + +locate-path@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-5.0.0.tgz#1afba396afd676a6d42504d0a67a3a7eb9f62aa0" + integrity sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g== + dependencies: + p-locate "^4.1.0" + +lodash.truncate@^4.4.2: + version "4.4.2" + resolved "https://registry.yarnpkg.com/lodash.truncate/-/lodash.truncate-4.4.2.tgz#5a350da0b1113b837ecfffd5812cbe58d6eae193" + integrity sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw== + +lodash@^4.17.21: + version "4.17.21" + resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" + integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== + +lru-cache@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94" + integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA== + dependencies: + yallist "^4.0.0" + +map-obj@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d" + integrity sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg== + +map-obj@^4.0.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-4.3.0.tgz#9304f906e93faae70880da102a9f1df0ea8bb05a" + integrity sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ== + +mathml-tag-names@^2.1.3: + version "2.1.3" + resolved "https://registry.yarnpkg.com/mathml-tag-names/-/mathml-tag-names-2.1.3.tgz#4ddadd67308e780cf16a47685878ee27b736a0a3" + integrity sha512-APMBEanjybaPzUrfqU0IMU5I0AswKMH7k8OTLs0vvV4KZpExkTkY87nR/zpbuTPj+gARop7aGUbl11pnDfW6xg== + +meow@^9.0.0: + version "9.0.0" + resolved "https://registry.yarnpkg.com/meow/-/meow-9.0.0.tgz#cd9510bc5cac9dee7d03c73ee1f9ad959f4ea364" + integrity sha512-+obSblOQmRhcyBt62furQqRAQpNyWXo8BuQ5bN7dG8wmwQ+vwHKp/rCFD4CrTP8CsDQD1sjoZ94K417XEUk8IQ== + dependencies: + "@types/minimist" "^1.2.0" + camelcase-keys "^6.2.2" + decamelize "^1.2.0" + decamelize-keys "^1.1.0" + hard-rejection "^2.1.0" + minimist-options "4.1.0" + normalize-package-data "^3.0.0" + read-pkg-up "^7.0.1" + redent "^3.0.0" + trim-newlines "^3.0.0" + type-fest "^0.18.0" + yargs-parser "^20.2.3" + +merge2@^1.3.0, merge2@^1.4.1: + version "1.4.1" + resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae" + integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg== + +micromatch@^4.0.4: + version "4.0.7" + resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.7.tgz#33e8190d9fe474a9895525f5618eee136d46c2e5" + integrity sha512-LPP/3KorzCwBxfeUuZmaR6bG2kdeHSbe0P2tY3FLRU4vYrjYz5hI4QZwV0njUx3jeuKe67YukQ1LSPZBKDqO/Q== + dependencies: + braces "^3.0.3" + picomatch "^2.3.1" + +min-indent@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/min-indent/-/min-indent-1.0.1.tgz#a63f681673b30571fbe8bc25686ae746eefa9869" + integrity sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg== + +minimatch@^3.1.1: + version "3.1.2" + resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" + integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== + dependencies: + brace-expansion "^1.1.7" + +minimist-options@4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/minimist-options/-/minimist-options-4.1.0.tgz#c0655713c53a8a2ebd77ffa247d342c40f010619" + integrity sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A== + dependencies: + arrify "^1.0.1" + is-plain-obj "^1.1.0" + kind-of "^6.0.3" + +ms@2.1.2: + version "2.1.2" + resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" + integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== + +nanoid@^3.3.7: + version "3.3.7" + resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.7.tgz#d0c301a691bc8d54efa0a2226ccf3fe2fd656bd8" + integrity sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g== + +normalize-package-data@^2.5.0: + version "2.5.0" + resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8" + integrity sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA== + dependencies: + hosted-git-info "^2.1.4" + resolve "^1.10.0" + semver "2 || 3 || 4 || 5" + validate-npm-package-license "^3.0.1" + +normalize-package-data@^3.0.0: + version "3.0.3" + resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-3.0.3.tgz#dbcc3e2da59509a0983422884cd172eefdfa525e" + integrity sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA== + dependencies: + hosted-git-info "^4.0.1" + is-core-module "^2.5.0" + semver "^7.3.4" + validate-npm-package-license "^3.0.1" + +normalize-path@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" + integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== + +normalize-selector@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/normalize-selector/-/normalize-selector-0.2.0.tgz#d0b145eb691189c63a78d201dc4fdb1293ef0c03" + integrity sha512-dxvWdI8gw6eAvk9BlPffgEoGfM7AdijoCwOEJge3e3ulT2XLgmU7KvvxprOaCu05Q1uGRHmOhHe1r6emZoKyFw== + +once@^1.3.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" + integrity sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w== + dependencies: + wrappy "1" + +p-limit@^2.2.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.3.0.tgz#3dd33c647a214fdfffd835933eb086da0dc21db1" + integrity sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w== + dependencies: + p-try "^2.0.0" + +p-locate@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-4.1.0.tgz#a3428bb7088b3a60292f66919278b7c297ad4f07" + integrity sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A== + dependencies: + p-limit "^2.2.0" + +p-try@^2.0.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6" + integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ== + +parent-module@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" + integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g== + dependencies: + callsites "^3.0.0" + +parse-json@^5.0.0: + version "5.2.0" + resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-5.2.0.tgz#c76fc66dee54231c962b22bcc8a72cf2f99753cd" + integrity sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg== + dependencies: + "@babel/code-frame" "^7.0.0" + error-ex "^1.3.1" + json-parse-even-better-errors "^2.3.0" + lines-and-columns "^1.1.6" + +path-exists@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" + integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== + +path-is-absolute@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" + integrity sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg== + +path-parse@^1.0.7: + version "1.0.7" + resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" + integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== + +path-type@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b" + integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw== + +picocolors@^1.0.0, picocolors@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.1.tgz#a8ad579b571952f0e5d25892de5445bcfe25aaa1" + integrity sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew== + +picomatch@^2.3.1: + version "2.3.1" + resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" + integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== + +postcss-media-query-parser@^0.2.3: + version "0.2.3" + resolved "https://registry.yarnpkg.com/postcss-media-query-parser/-/postcss-media-query-parser-0.2.3.tgz#27b39c6f4d94f81b1a73b8f76351c609e5cef244" + integrity sha512-3sOlxmbKcSHMjlUXQZKQ06jOswE7oVkXPxmZdoB1r5l0q6gTFTQSHxNxOrCccElbW7dxNytifNEo8qidX2Vsig== + +postcss-resolve-nested-selector@^0.1.1: + version "0.1.4" + resolved "https://registry.yarnpkg.com/postcss-resolve-nested-selector/-/postcss-resolve-nested-selector-0.1.4.tgz#0068767902fb40f0e6cd7b24faee4fa4bc14a5da" + integrity sha512-R6vHqZWgVnTAPq0C+xjyHfEZqfIYboCBVSy24MjxEDm+tIh1BU4O6o7DP7AA7kHzf136d+Qc5duI4tlpHjixDw== + +postcss-safe-parser@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/postcss-safe-parser/-/postcss-safe-parser-6.0.0.tgz#bb4c29894171a94bc5c996b9a30317ef402adaa1" + integrity sha512-FARHN8pwH+WiS2OPCxJI8FuRJpTVnn6ZNFiqAM2aeW2LwTHWWmWgIyKC6cUo0L8aeKiF/14MNvnpls6R2PBeMQ== + +postcss-scss@^4.0.2: + version "4.0.9" + resolved "https://registry.yarnpkg.com/postcss-scss/-/postcss-scss-4.0.9.tgz#a03c773cd4c9623cb04ce142a52afcec74806685" + integrity sha512-AjKOeiwAitL/MXxQW2DliT28EKukvvbEWx3LBmJIRN8KfBGZbRTxNYW0kSqi1COiTZ57nZ9NW06S6ux//N1c9A== + +postcss-selector-parser@^6.0.6: + version "6.1.1" + resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.1.1.tgz#5be94b277b8955904476a2400260002ce6c56e38" + integrity sha512-b4dlw/9V8A71rLIDsSwVmak9z2DuBUB7CA1/wSdelNEzqsjoSPeADTWNO09lpH49Diy3/JIZ2bSPB1dI3LJCHg== + dependencies: + cssesc "^3.0.0" + util-deprecate "^1.0.2" + +postcss-sorting@^7.0.1: + version "7.0.1" + resolved "https://registry.yarnpkg.com/postcss-sorting/-/postcss-sorting-7.0.1.tgz#923b5268451cf2d93ebf8835e17a6537757049a5" + integrity sha512-iLBFYz6VRYyLJEJsBJ8M3TCqNcckVzz4wFounSc5Oez35ogE/X+aoC5fFu103Ot7NyvjU3/xqIXn93Gp3kJk4g== + +postcss-value-parser@^4.1.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz#723c09920836ba6d3e5af019f92bc0971c02e514" + integrity sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ== + +postcss@^8.3.11: + version "8.4.40" + resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.40.tgz#eb81f2a4dd7668ed869a6db25999e02e9ad909d8" + integrity sha512-YF2kKIUzAofPMpfH6hOi2cGnv/HrUlfucspc7pDyvv7kGdqXrfj8SCl/t8owkEgKEuu8ZcRjSOxFxVLqwChZ2Q== + dependencies: + nanoid "^3.3.7" + picocolors "^1.0.1" + source-map-js "^1.2.0" + +queue-microtask@^1.2.2: + version "1.2.3" + resolved "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243" + integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A== + +quick-lru@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/quick-lru/-/quick-lru-4.0.1.tgz#5b8878f113a58217848c6482026c73e1ba57727f" + integrity sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g== + +read-pkg-up@^7.0.1: + version "7.0.1" + resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-7.0.1.tgz#f3a6135758459733ae2b95638056e1854e7ef507" + integrity sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg== + dependencies: + find-up "^4.1.0" + read-pkg "^5.2.0" + type-fest "^0.8.1" + +read-pkg@^5.2.0: + version "5.2.0" + resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-5.2.0.tgz#7bf295438ca5a33e56cd30e053b34ee7250c93cc" + integrity sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg== + dependencies: + "@types/normalize-package-data" "^2.4.0" + normalize-package-data "^2.5.0" + parse-json "^5.0.0" + type-fest "^0.6.0" + +redent@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/redent/-/redent-3.0.0.tgz#e557b7998316bb53c9f1f56fa626352c6963059f" + integrity sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg== + dependencies: + indent-string "^4.0.0" + strip-indent "^3.0.0" + +require-from-string@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/require-from-string/-/require-from-string-2.0.2.tgz#89a7fdd938261267318eafe14f9c32e598c36909" + integrity sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw== + +resolve-from@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" + integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== + +resolve-from@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-5.0.0.tgz#c35225843df8f776df21c57557bc087e9dfdfc69" + integrity sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw== + +resolve@^1.10.0: + version "1.22.8" + resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.8.tgz#b6c87a9f2aa06dfab52e3d70ac8cde321fa5a48d" + integrity sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw== + dependencies: + is-core-module "^2.13.0" + path-parse "^1.0.7" + supports-preserve-symlinks-flag "^1.0.0" + +reusify@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76" + integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw== + +rimraf@^3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" + integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== + dependencies: + glob "^7.1.3" + +run-parallel@^1.1.9: + version "1.2.0" + resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.2.0.tgz#66d1368da7bdf921eb9d95bd1a9229e7f21a43ee" + integrity sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA== + dependencies: + queue-microtask "^1.2.2" + +"semver@2 || 3 || 4 || 5": + version "5.7.2" + resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.2.tgz#48d55db737c3287cd4835e17fa13feace1c41ef8" + integrity sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g== + +semver@^7.3.4: + version "7.6.3" + resolved "https://registry.yarnpkg.com/semver/-/semver-7.6.3.tgz#980f7b5550bc175fb4dc09403085627f9eb33143" + integrity sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A== + +signal-exit@^3.0.2: + version "3.0.7" + resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.7.tgz#a9a1767f8af84155114eaabd73f99273c8f59ad9" + integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ== + +slash@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634" + integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== + +slice-ansi@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-4.0.0.tgz#500e8dd0fd55b05815086255b3195adf2a45fe6b" + integrity sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ== + dependencies: + ansi-styles "^4.0.0" + astral-regex "^2.0.0" + is-fullwidth-code-point "^3.0.0" + +source-map-js@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.2.0.tgz#16b809c162517b5b8c3e7dcd315a2a5c2612b2af" + integrity sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg== + +spdx-correct@^3.0.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.2.0.tgz#4f5ab0668f0059e34f9c00dce331784a12de4e9c" + integrity sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA== + dependencies: + spdx-expression-parse "^3.0.0" + spdx-license-ids "^3.0.0" + +spdx-exceptions@^2.1.0: + version "2.5.0" + resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.5.0.tgz#5d607d27fc806f66d7b64a766650fa890f04ed66" + integrity sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w== + +spdx-expression-parse@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz#cf70f50482eefdc98e3ce0a6833e4a53ceeba679" + integrity sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q== + dependencies: + spdx-exceptions "^2.1.0" + spdx-license-ids "^3.0.0" + +spdx-license-ids@^3.0.0: + version "3.0.18" + resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.18.tgz#22aa922dcf2f2885a6494a261f2d8b75345d0326" + integrity sha512-xxRs31BqRYHwiMzudOrpSiHtZ8i/GeionCBDSilhYRj+9gIcI8wCZTlXZKu9vZIVqViP3dcp9qE5G6AlIaD+TQ== + +specificity@^0.4.1: + version "0.4.1" + resolved "https://registry.yarnpkg.com/specificity/-/specificity-0.4.1.tgz#aab5e645012db08ba182e151165738d00887b019" + integrity sha512-1klA3Gi5PD1Wv9Q0wUoOQN1IWAuPu0D1U03ThXTr0cJ20+/iq2tHSDnK7Kk/0LXJ1ztUB2/1Os0wKmfyNgUQfg== + +string-width@^4.2.3: + version "4.2.3" + resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" + integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== + dependencies: + emoji-regex "^8.0.0" + is-fullwidth-code-point "^3.0.0" + strip-ansi "^6.0.1" + +strip-ansi@^6.0.1: + version "6.0.1" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" + integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== + dependencies: + ansi-regex "^5.0.1" + +strip-indent@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-3.0.0.tgz#c32e1cee940b6b3432c771bc2c54bcce73cd3001" + integrity sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ== + dependencies: + min-indent "^1.0.0" + +style-search@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/style-search/-/style-search-0.1.0.tgz#7958c793e47e32e07d2b5cafe5c0bf8e12e77902" + integrity sha512-Dj1Okke1C3uKKwQcetra4jSuk0DqbzbYtXipzFlFMZtowbF1x7BKJwB9AayVMyFARvU8EDrZdcax4At/452cAg== + +stylelint-config-recommended@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/stylelint-config-recommended/-/stylelint-config-recommended-6.0.0.tgz#fd2523a322836005ad9bf473d3e5534719c09f9d" + integrity sha512-ZorSSdyMcxWpROYUvLEMm0vSZud2uB7tX1hzBZwvVY9SV/uly4AvvJPPhCcymZL3fcQhEQG5AELmrxWqtmzacw== + +stylelint-config-standard@~24.0.0: + version "24.0.0" + resolved "https://registry.yarnpkg.com/stylelint-config-standard/-/stylelint-config-standard-24.0.0.tgz#6823f207ab997ae0b641f9a636d007cc44d77541" + integrity sha512-+RtU7fbNT+VlNbdXJvnjc3USNPZRiRVp/d2DxOF/vBDDTi0kH5RX2Ny6errdtZJH3boO+bmqIYEllEmok4jiuw== + dependencies: + stylelint-config-recommended "^6.0.0" + +stylelint-declaration-block-no-ignored-properties@~2.5.0: + version "2.5.0" + resolved "https://registry.yarnpkg.com/stylelint-declaration-block-no-ignored-properties/-/stylelint-declaration-block-no-ignored-properties-2.5.0.tgz#7cfe61c118ef5aa89f2bfdc2a78aa34bd2dacb87" + integrity sha512-UNz5nUC5GMgMb6GPc/pHUTC0+ydxTdj2mUn7XcKRdwQoiUzzUmWWdSf1aFv2UzrW4x8JYNReE1u5JOj7g0ThJw== + +stylelint-order@~5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/stylelint-order/-/stylelint-order-5.0.0.tgz#abd20f6b85ac640774cbe40e70d3fe9c6fdf4400" + integrity sha512-OWQ7pmicXufDw5BlRqzdz3fkGKJPgLyDwD1rFY3AIEfIH/LQY38Vu/85v8/up0I+VPiuGRwbc2Hg3zLAsJaiyw== + dependencies: + postcss "^8.3.11" + postcss-sorting "^7.0.1" + +stylelint-scss@~4.0.0: + version "4.0.1" + resolved "https://registry.yarnpkg.com/stylelint-scss/-/stylelint-scss-4.0.1.tgz#da03f687c5bf8b91ea40d389ad29e07c328582b1" + integrity sha512-Ea+KY7ZFsDhU6Ne9r84y7NvFSNA843w352MSdQeDmklar0pDbeQj9flKrVAuDIlK0pDDdhFtgBl/N0FrtWHq0g== + dependencies: + lodash "^4.17.21" + postcss-media-query-parser "^0.2.3" + postcss-resolve-nested-selector "^0.1.1" + postcss-selector-parser "^6.0.6" + postcss-value-parser "^4.1.0" + +stylelint@~14.1.0: + version "14.1.0" + resolved "https://registry.yarnpkg.com/stylelint/-/stylelint-14.1.0.tgz#8cefb64df6158b30f678c2d93a7052e2c1d8235b" + integrity sha512-IedkssuNVA11+v++2PIV2OHOU5A3SfRcXVi56vZVSsMhGrgtwmmit69jeM+08/Tun5DTBe7BuH1Zp1mMLmtKLA== + dependencies: + balanced-match "^2.0.0" + cosmiconfig "^7.0.1" + debug "^4.3.2" + execall "^2.0.0" + fast-glob "^3.2.7" + fastest-levenshtein "^1.0.12" + file-entry-cache "^6.0.1" + get-stdin "^8.0.0" + global-modules "^2.0.0" + globby "^11.0.4" + globjoin "^0.1.4" + html-tags "^3.1.0" + ignore "^5.1.9" + import-lazy "^4.0.0" + imurmurhash "^0.1.4" + is-plain-object "^5.0.0" + known-css-properties "^0.23.0" + mathml-tag-names "^2.1.3" + meow "^9.0.0" + micromatch "^4.0.4" + normalize-path "^3.0.0" + normalize-selector "^0.2.0" + picocolors "^1.0.0" + postcss "^8.3.11" + postcss-media-query-parser "^0.2.3" + postcss-resolve-nested-selector "^0.1.1" + postcss-safe-parser "^6.0.0" + postcss-selector-parser "^6.0.6" + postcss-value-parser "^4.1.0" + resolve-from "^5.0.0" + specificity "^0.4.1" + string-width "^4.2.3" + strip-ansi "^6.0.1" + style-search "^0.1.0" + svg-tags "^1.0.0" + table "^6.7.3" + v8-compile-cache "^2.3.0" + write-file-atomic "^3.0.3" + +supports-color@^5.3.0: + version "5.5.0" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" + integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== + dependencies: + has-flag "^3.0.0" + +supports-preserve-symlinks-flag@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09" + integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== + +svg-tags@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/svg-tags/-/svg-tags-1.0.0.tgz#58f71cee3bd519b59d4b2a843b6c7de64ac04764" + integrity sha512-ovssysQTa+luh7A5Weu3Rta6FJlFBBbInjOh722LIt6klpU2/HtdUbszju/G4devcvk8PGt7FCLv5wftu3THUA== + +table@^6.7.3: + version "6.8.2" + resolved "https://registry.yarnpkg.com/table/-/table-6.8.2.tgz#c5504ccf201213fa227248bdc8c5569716ac6c58" + integrity sha512-w2sfv80nrAh2VCbqR5AK27wswXhqcck2AhfnNW76beQXskGZ1V12GwS//yYVa3d3fcvAip2OUnbDAjW2k3v9fA== + dependencies: + ajv "^8.0.1" + lodash.truncate "^4.4.2" + slice-ansi "^4.0.0" + string-width "^4.2.3" + strip-ansi "^6.0.1" + +to-regex-range@^5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" + integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== + dependencies: + is-number "^7.0.0" + +trim-newlines@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-3.0.1.tgz#260a5d962d8b752425b32f3a7db0dcacd176c144" + integrity sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw== + +type-fest@^0.18.0: + version "0.18.1" + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.18.1.tgz#db4bc151a4a2cf4eebf9add5db75508db6cc841f" + integrity sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw== + +type-fest@^0.6.0: + version "0.6.0" + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.6.0.tgz#8d2a2370d3df886eb5c90ada1c5bf6188acf838b" + integrity sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg== + +type-fest@^0.8.1: + version "0.8.1" + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.8.1.tgz#09e249ebde851d3b1e48d27c105444667f17b83d" + integrity sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA== + +typedarray-to-buffer@^3.1.5: + version "3.1.5" + resolved "https://registry.yarnpkg.com/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz#a97ee7a9ff42691b9f783ff1bc5112fe3fca9080" + integrity sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q== + dependencies: + is-typedarray "^1.0.0" + +util-deprecate@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" + integrity sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw== + +v8-compile-cache@^2.3.0: + version "2.4.0" + resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.4.0.tgz#cdada8bec61e15865f05d097c5f4fd30e94dc128" + integrity sha512-ocyWc3bAHBB/guyqJQVI5o4BZkPhznPYUG2ea80Gond/BgNWpap8TOmLSeeQG7bnh2KMISxskdADG59j7zruhw== + +validate-npm-package-license@^3.0.1: + version "3.0.4" + resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a" + integrity sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew== + dependencies: + spdx-correct "^3.0.0" + spdx-expression-parse "^3.0.0" + +which@^1.3.1: + version "1.3.1" + resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" + integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ== + dependencies: + isexe "^2.0.0" + +wrappy@1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" + integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ== + +write-file-atomic@^3.0.3: + version "3.0.3" + resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-3.0.3.tgz#56bd5c5a5c70481cd19c571bd39ab965a5de56e8" + integrity sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q== + dependencies: + imurmurhash "^0.1.4" + is-typedarray "^1.0.0" + signal-exit "^3.0.2" + typedarray-to-buffer "^3.1.5" + +yallist@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" + integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== + +yaml@^1.10.0: + version "1.10.2" + resolved "https://registry.yarnpkg.com/yaml/-/yaml-1.10.2.tgz#2301c5ffbf12b467de8da2333a459e29e7920e4b" + integrity sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg== + +yargs-parser@^20.2.3: + version "20.2.9" + resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.9.tgz#2eb7dc3b0289718fc295f362753845c41a0c94ee" + integrity sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==