commit 3faf8bc4d5f1f3bb6c50e9b5344b710634b0f5e4 Author: Cory Dransfeldt Date: Wed Mar 13 11:39:01 2024 -0700 chore: initial commit diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 0000000..0289d4b --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,38 @@ +--- +name: Bug report +about: Create a report to help us improve +title: '' +labels: bug +assignees: daviddarnes + +--- + +**Describe the bug** +A clear and concise description of what the bug is. + +**To Reproduce** +Steps to reproduce the behaviour: +1. Go to '...' +2. Click on '....' +3. Scroll down to '....' +4. See error + +**Expected behaviour** +A clear and concise description of what you expected to happen. + +**Screenshots** +If applicable, add screenshots to help explain your problem. + +**Desktop (please complete the following information):** + - OS: [e.g. iOS] + - Browser [e.g. chrome, safari] + - Version [e.g. 22] + +**Smartphone (please complete the following information):** + - Device: [e.g. iPhone6] + - OS: [e.g. iOS8.1] + - Browser [e.g. stock browser, safari] + - Version [e.g. 22] + +**Additional context** +Add any other context about the problem here. diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md new file mode 100644 index 0000000..f77a253 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -0,0 +1,20 @@ +--- +name: Feature request +about: Suggest an idea for this project +title: '' +labels: enhancement +assignees: daviddarnes + +--- + +**Is your feature request related to a problem? Please describe.** +A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] + +**Describe the solution you'd like** +A clear and concise description of what you want to happen. + +**Describe alternatives you've considered** +A clear and concise description of any alternative solutions or features you've considered. + +**Additional context** +Add any other context or screenshots about the feature request here. diff --git a/.github/workflows/npm-publish.yml b/.github/workflows/npm-publish.yml new file mode 100644 index 0000000..5bfa51f --- /dev/null +++ b/.github/workflows/npm-publish.yml @@ -0,0 +1,19 @@ +name: Node.js Package + +on: + release: + types: [created] + +jobs: + publish-npm: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: actions/setup-node@v3 + with: + node-version: 16 + registry-url: https://registry.npmjs.org/ + - run: npm install + - run: npm publish + env: + NODE_AUTH_TOKEN: ${{secrets.npm_token}} diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..2f2e249 --- /dev/null +++ b/.gitignore @@ -0,0 +1,12 @@ +# build output +node_modules/ + +# logs +*log +*-error.log + +# IDE +.idea + +# system +.DS_Store diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..a5f7617 --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2024 Cory Dransfeldt + +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..7dbe328 --- /dev/null +++ b/README.md @@ -0,0 +1,80 @@ +# Eleventy: tabler icons plugin + +Shortcodes to add [tabler icons](https://tabler-icons.io) to your [Eleventy](https://11ty.dev) projects + +## Get started + +Install the package: + +```sh +npm i -D eleventy-plugin-tablericons +``` + +Then add the plugin to your `.eleventy.js` file: + +```js +// .eleventy.js +module.exports = eleventyConfig => { + eleventyConfig.addPlugin(require('eleventy-plugin-tablericons')); +} +``` + +## Usage + +This plugin adds the `tablericon` shortcode. + +**Note**: These examples use Liquid template syntax, which is the default for Eleventy. If you are using another template engine like Nunjucks, the syntax might be slightly different. + +### `tablericon` + +Args: `name: string`, `alt?: string` + +```md +{% tablericon "archive" %} +{% tablericon "x" "Close menu" %} +``` + +## Configuration + +`eleventy-plugin-tablericons` offers a few options on a configuration object passed to Eleventy's `addPlugin()`: + +- `className?: string` Adds a class to all tabler icons +- `errorOnMissing: boolean` (default: `false`) Throw an error when passed an invalid style/name or invalid attribute + +Pass the configuration object when adding the plugin: + +```js +// .eleventy.js +module.exports = eleventyConfig => { + eleventyConfig.addPlugin(require('eleventy-plugin-tablericons'), { + className: 'icon', + errorOnMissing: true + }); +} +``` + +## Styling + +The `svg` element receives two data attributes that you can use for styling: + +- `data-tablericon-name="string"` + +You could add the following to your stylesheets: + +```css +/* Arrow down icon */ +[data-tablericon-name="arrow-down"] { + color: darkgreen; +} + +/* All icons */ +[data-tablericon-name] { + padding: 2ch; +} +``` + +If you passed a `className` to the configuration object, then you could use that to select all icons. + +## License + +[MIT](./LICENSE) diff --git a/build.js b/build.js new file mode 100644 index 0000000..aeac994 --- /dev/null +++ b/build.js @@ -0,0 +1,28 @@ +const fs = require('fs'); +const path = `./node_modules/@tabler/icons/icons/filled/`; +const fileNames = fs.readdirSync(path); +const object = {}; +const CONTENTS = { + HEAD: "", + TAIL: "", +}; + +fileNames.forEach((filename) => { + const contents = fs + .readFileSync(path + filename) + .toString() + .trimEnd(); + const lines = contents.split("\n"); + const guts = lines + .slice(1, lines.length - 1) + .join("") + .replace(/\ \ /g, ""); + if (object) object[filename.slice(0, -4)] = guts; +}); + +fs.writeFileSync( + "./icons.js", + `// Generated by build.js at ${new Date().toISOString()}\n\nmodule.exports = ${JSON.stringify( + {...object, HEAD: CONTENTS['HEAD'], TAIL: CONTENTS['TAIL']} + )};\n` +); diff --git a/icons.js b/icons.js new file mode 100644 index 0000000..179286e --- /dev/null +++ b/icons.js @@ -0,0 +1,3 @@ +// Generated by build.js at 2024-03-13T18:38:48.671Z + +module.exports = {"accessible":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-accessible\">","ad-circle":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-ad-circle\">","ad":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-ad\">","adjustments":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-adjustments\">","affiliate":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-affiliate\">","alarm-minus":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-alarm-minus\">","alarm-plus":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-alarm-plus\">","alarm-snooze":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-alarm-snooze\">","alarm":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-alarm\">","alert-circle":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-alert-circle\">","alert-hexagon":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-alert-hexagon\">","alert-octagon":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-alert-octagon\">","alert-square-rounded":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-alert-square-rounded\">","alert-square":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-alert-square\">","alert-triangle":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-alert-triangle\">","alien":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-alien\">","align-box-bottom-center":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-align-box-bottom-center\">","align-box-bottom-left":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-align-box-bottom-left\">","align-box-bottom-right":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-align-box-bottom-right\">","align-box-center-middle":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-align-box-center-middle\">","align-box-left-bottom":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-align-box-left-bottom\">","align-box-left-middle":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-align-box-left-middle\">","align-box-left-top":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-align-box-left-top\">","align-box-right-bottom":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-align-box-right-bottom\">","align-box-right-middle":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-align-box-right-middle\">","align-box-right-top":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-align-box-right-top\">","align-box-top-center":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-align-box-top-center\">","align-box-top-left":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-align-box-top-left\">","align-box-top-right":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-align-box-top-right\">","analyze":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-analyze\">","app-window":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-app-window\">","apps":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-apps\">","archive":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-archive\">","arrow-autofit-content":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-arrow-autofit-content\">","arrow-badge-down":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-arrow-badge-down\">","arrow-badge-left":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-arrow-badge-left\">","arrow-badge-right":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-arrow-badge-right\">","arrow-badge-up":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-arrow-badge-up\">","arrow-big-down-line":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-arrow-big-down-line\">","arrow-big-down-lines":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-arrow-big-down-lines\">","arrow-big-down":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-arrow-big-down\">","arrow-big-left-line":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-arrow-big-left-line\">","arrow-big-left-lines":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-arrow-big-left-lines\">","arrow-big-left":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-arrow-big-left\">","arrow-big-right-line":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-arrow-big-right-line\">","arrow-big-right-lines":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-arrow-big-right-lines\">","arrow-big-right":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-arrow-big-right\">","arrow-big-up-line":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-arrow-big-up-line\">","arrow-big-up-lines":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-arrow-big-up-lines\">","arrow-big-up":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-arrow-big-up\">","artboard":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-artboard\">","article":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-article\">","aspect-ratio":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-aspect-ratio\">","assembly":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-assembly\">","asset":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-asset\">","atom-2":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-atom-2\">","award":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-award\">","baby-carriage":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-baby-carriage\">","backspace":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-backspace\">","badge-3d":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-badge-3d\">","badge-4k":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-badge-4k\">","badge-8k":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-badge-8k\">","badge-ad":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-badge-ad\">","badge-ar":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-badge-ar\">","badge-cc":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-badge-cc\">","badge-hd":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-badge-hd\">","badge-sd":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-badge-sd\">","badge-tm":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-badge-tm\">","badge-vo":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-badge-vo\">","badge-vr":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-badge-vr\">","badge-wc":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-badge-wc\">","badge":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-badge\">","badges":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-badges\">","balloon":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-balloon\">","ballpen":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-ballpen\">","bandage":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-bandage\">","barbell":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-barbell\">","barrier-block":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-barrier-block\">","basket":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-basket\">","bath":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-bath\">","battery-1":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-battery-1\">","battery-2":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-battery-2\">","battery-3":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-battery-3\">","battery-4":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-battery-4\">","battery":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-battery\">","bed-flat":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-bed-flat\">","bed":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-bed\">","beer":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-beer\">","bell-minus":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-bell-minus\">","bell-plus":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-bell-plus\">","bell-ringing-2":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-bell-ringing-2\">","bell-ringing":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-bell-ringing\">","bell-x":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-bell-x\">","bell-z":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-bell-z\">","bell":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-bell\">","biohazard":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-biohazard\">","blade":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-blade\">","bomb":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-bomb\">","bone":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-bone\">","book":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-book\">","bookmark":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-bookmark\">","bookmarks":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-bookmarks\">","boom":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-boom\">","bottle":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-bottle\">","bounce-left":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-bounce-left\">","bounce-right":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-bounce-right\">","bow":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-bow\">","bowl-chopsticks":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-bowl-chopsticks\">","bowl-spoon":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-bowl-spoon\">","bowl":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-bowl\">","box-align-bottom-left":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-box-align-bottom-left\">","box-align-bottom-right":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-box-align-bottom-right\">","box-align-bottom":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-box-align-bottom\">","box-align-left":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-box-align-left\">","box-align-right":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-box-align-right\">","box-align-top-left":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-box-align-top-left\">","box-align-top-right":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-box-align-top-right\">","box-align-top":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-box-align-top\">","brand-apple":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-brand-apple\">","brand-discord":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-brand-discord\">","brand-dribbble":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-brand-dribbble\">","brand-facebook":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-brand-facebook\">","brand-github":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-brand-github\">","brand-google":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-brand-google\">","brand-patreon":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-brand-patreon\">","brand-paypal":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-brand-paypal\">","brand-spotify":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-brand-spotify\">","brand-tiktok":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-brand-tiktok\">","brand-twitter":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-brand-twitter\">","brand-x":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-brand-x\">","brand-youtube":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-brand-youtube\">","bread":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-bread\">","briefcase-2":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-briefcase-2\">","briefcase":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-briefcase\">","brightness-auto":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-brightness-auto\">","brightness-down":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-brightness-down\">","brightness-up":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-brightness-up\">","brightness":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-brightness\">","bug":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-bug\">","building-broadcast-tower":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-building-broadcast-tower\">","bulb":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-bulb\">","cactus":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-cactus\">","calculator":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-calculator\">","calendar":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-calendar\">","camera":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-camera\">","campfire":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-campfire\">","candle":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-candle\">","capsule-horizontal":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-capsule-horizontal\">","capsule":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-capsule\">","capture":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-capture\">","cards":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-cards\">","caret-down":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-caret-down\">","caret-left-right":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-caret-left-right\">","caret-left":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-caret-left\">","caret-right":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-caret-right\">","caret-up-down":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-caret-up-down\">","caret-up":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-caret-up\">","carousel-horizontal":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-carousel-horizontal\">","carousel-vertical":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-carousel-vertical\">","cash-banknote":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-cash-banknote\">","category":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-category\">","chart-area-line":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-chart-area-line\">","chart-area":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-chart-area\">","chart-bubble":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-chart-bubble\">","chart-candle":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-chart-candle\">","chart-donut":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-chart-donut\">","chart-dots":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-chart-dots\">","chart-grid-dots":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-chart-grid-dots\">","chart-pie":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-chart-pie\">","cherry":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-cherry\">","chess-bishop":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-chess-bishop\">","chess-king":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-chess-king\">","chess-knight":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-chess-knight\">","chess-queen":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-chess-queen\">","chess-rook":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-chess-rook\">","chess":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-chess\">","circle-arrow-down-left":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-circle-arrow-down-left\">","circle-arrow-down-right":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-circle-arrow-down-right\">","circle-arrow-down":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-circle-arrow-down\">","circle-arrow-left":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-circle-arrow-left\">","circle-arrow-right":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-circle-arrow-right\">","circle-arrow-up-left":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-circle-arrow-up-left\">","circle-arrow-up-right":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-circle-arrow-up-right\">","circle-arrow-up":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-circle-arrow-up\">","circle-check":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-circle-check\">","circle-dot":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-circle-dot\">","circle-key":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-circle-key\">","circle-letter-a":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-circle-letter-a\">","circle-letter-b":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-circle-letter-b\">","circle-letter-c":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-circle-letter-c\">","circle-letter-d":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-circle-letter-d\">","circle-letter-e":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-circle-letter-e\">","circle-letter-f":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-circle-letter-f\">","circle-letter-g":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-circle-letter-g\">","circle-letter-h":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-circle-letter-h\">","circle-letter-i":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-circle-letter-i\">","circle-letter-j":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-circle-letter-j\">","circle-letter-k":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-circle-letter-k\">","circle-letter-l":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-circle-letter-l\">","circle-letter-m":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-circle-letter-m\">","circle-letter-n":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-circle-letter-n\">","circle-letter-o":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-circle-letter-o\">","circle-letter-p":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-circle-letter-p\">","circle-letter-q":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-circle-letter-q\">","circle-letter-r":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-circle-letter-r\">","circle-letter-s":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-circle-letter-s\">","circle-letter-t":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-circle-letter-t\">","circle-letter-u":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-circle-letter-u\">","circle-letter-v":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-circle-letter-v\">","circle-letter-w":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-circle-letter-w\">","circle-letter-x":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-circle-letter-x\">","circle-letter-y":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-circle-letter-y\">","circle-letter-z":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-circle-letter-z\">","circle-number-0":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-circle-number-0\">","circle-number-1":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-circle-number-1\">","circle-number-2":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-circle-number-2\">","circle-number-3":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-circle-number-3\">","circle-number-4":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-circle-number-4\">","circle-number-5":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-circle-number-5\">","circle-number-6":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-circle-number-6\">","circle-number-7":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-circle-number-7\">","circle-number-8":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-circle-number-8\">","circle-number-9":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-circle-number-9\">","circle-x":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-circle-x\">","circle":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-circle\">","circles":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-circles\">","clock-hour-1":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-clock-hour-1\">","clock-hour-10":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-clock-hour-10\">","clock-hour-11":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-clock-hour-11\">","clock-hour-12":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-clock-hour-12\">","clock-hour-2":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-clock-hour-2\">","clock-hour-3":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-clock-hour-3\">","clock-hour-4":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-clock-hour-4\">","clock-hour-5":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-clock-hour-5\">","clock-hour-6":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-clock-hour-6\">","clock-hour-7":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-clock-hour-7\">","clock-hour-8":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-clock-hour-8\">","clock-hour-9":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-clock-hour-9\">","clock":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-clock\">","cloud":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-cloud\">","clubs":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-clubs\">","coin-bitcoin":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-coin-bitcoin\">","coin-euro":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-coin-euro\">","coin-monero":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-coin-monero\">","coin-pound":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-coin-pound\">","coin-rupee":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-coin-rupee\">","coin-taka":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-coin-taka\">","coin-yen":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-coin-yen\">","coin-yuan":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-coin-yuan\">","coin":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-coin\">","compass":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-compass\">","cone-2":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-cone-2\">","cone":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-cone\">","contrast-2":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-contrast-2\">","contrast":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-contrast\">","cookie-man":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-cookie-man\">","cookie":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-cookie\">","copy-check":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-copy-check\">","copy-minus":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-copy-minus\">","copy-plus":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-copy-plus\">","copy-x":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-copy-x\">","copyleft":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-copyleft\">","copyright":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-copyright\">","credit-card":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-credit-card\">","crop-1-1":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-crop-1-1\">","crop-16-9":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-crop-16-9\">","crop-3-2":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-crop-3-2\">","crop-5-4":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-crop-5-4\">","crop-7-5":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-crop-7-5\">","crop-landscape":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-crop-landscape\">","crop-portrait":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-crop-portrait\">","cross":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-cross\">","device-heart-monitor":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-device-heart-monitor\">","device-mobile":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-device-mobile\">","device-tablet":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-device-tablet\">","dialpad":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-dialpad\">","diamond":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-diamond\">","diamonds":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-diamonds\">","dice-1":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-dice-1\">","dice-2":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-dice-2\">","dice-3":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-dice-3\">","dice-4":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-dice-4\">","dice-5":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-dice-5\">","dice-6":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-dice-6\">","dice":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-dice\">","direction-sign":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-direction-sign\">","droplet-half-2":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-droplet-half-2\">","droplet-half":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-droplet-half\">","droplet":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-droplet\">","egg":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-egg\">","eye":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-eye\">","file-x":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-file-x\">","file":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-file\">","filter":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-filter\">","flag-2":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-flag-2\">","flag-3":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-flag-3\">","flag":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-flag\">","flask-2":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-flask-2\">","flask":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-flask\">","folder":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-folder\">","forbid-2":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-forbid-2\">","forbid":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-forbid\">","fountain":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-fountain\">","function":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-function\">","gauge":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-gauge\">","ghost-2":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-ghost-2\">","ghost":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-ghost\">","gift-card":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-gift-card\">","gift":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-gift\">","glass-full":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-glass-full\">","globe":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-globe\">","gps":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-gps\">","graph":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-graph\">","guitar-pick":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-guitar-pick\">","headphones":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-headphones\">","heart":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-heart\">","help-circle":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-help-circle\">","help-hexagon":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-help-hexagon\">","help-octagon":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-help-octagon\">","help-square-rounded":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-help-square-rounded\">","help-square":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-help-square\">","help-triangle":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-help-triangle\">","hexagon-letter-a":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-hexagon-letter-a\">","hexagon-letter-b":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-hexagon-letter-b\">","hexagon-letter-c":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-hexagon-letter-c\">","hexagon-letter-d":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-hexagon-letter-d\">","hexagon-letter-e":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-hexagon-letter-e\">","hexagon-letter-f":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-hexagon-letter-f\">","hexagon-letter-g":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-hexagon-letter-g\">","hexagon-letter-h":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-hexagon-letter-h\">","hexagon-letter-i":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-hexagon-letter-i\">","hexagon-letter-j":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-hexagon-letter-j\">","hexagon-letter-k":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-hexagon-letter-k\">","hexagon-letter-l":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-hexagon-letter-l\">","hexagon-letter-m":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-hexagon-letter-m\">","hexagon-letter-n":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-hexagon-letter-n\">","hexagon-letter-o":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-hexagon-letter-o\">","hexagon-letter-p":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-hexagon-letter-p\">","hexagon-letter-q":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-hexagon-letter-q\">","hexagon-letter-r":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-hexagon-letter-r\">","hexagon-letter-s":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-hexagon-letter-s\">","hexagon-letter-t":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-hexagon-letter-t\">","hexagon-letter-u":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-hexagon-letter-u\">","hexagon-letter-v":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-hexagon-letter-v\">","hexagon-letter-w":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-hexagon-letter-w\">","hexagon-letter-x":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-hexagon-letter-x\">","hexagon-letter-y":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-hexagon-letter-y\">","hexagon-letter-z":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-hexagon-letter-z\">","hexagon-minus":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-hexagon-minus\">","hexagon-number-0":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-hexagon-number-0\">","hexagon-number-1":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-hexagon-number-1\">","hexagon-number-2":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-hexagon-number-2\">","hexagon-number-3":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-hexagon-number-3\">","hexagon-number-4":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-hexagon-number-4\">","hexagon-number-5":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-hexagon-number-5\">","hexagon-number-6":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-hexagon-number-6\">","hexagon-number-7":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-hexagon-number-7\">","hexagon-number-8":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-hexagon-number-8\">","hexagon-number-9":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-hexagon-number-9\">","hexagon-plus":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-hexagon-plus\">","hexagon":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-hexagon\">","home":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-home\">","hourglass":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-hourglass\">","info-circle":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-info-circle\">","info-hexagon":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-info-hexagon\">","info-octagon":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-info-octagon\">","info-square-rounded":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-info-square-rounded\">","info-square":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-info-square\">","info-triangle":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-info-triangle\">","inner-shadow-bottom-left":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-inner-shadow-bottom-left\">","inner-shadow-bottom-right":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-inner-shadow-bottom-right\">","inner-shadow-bottom":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-inner-shadow-bottom\">","inner-shadow-left":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-inner-shadow-left\">","inner-shadow-right":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-inner-shadow-right\">","inner-shadow-top-left":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-inner-shadow-top-left\">","inner-shadow-top-right":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-inner-shadow-top-right\">","inner-shadow-top":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-inner-shadow-top\">","ironing":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-ironing\">","jetpack":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-jetpack\">","jewish-star":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-jewish-star\">","key":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-key\">","keyframe-align-center":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-keyframe-align-center\">","keyframe-align-horizontal":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-keyframe-align-horizontal\">","keyframe-align-vertical":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-keyframe-align-vertical\">","keyframe":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-keyframe\">","keyframes":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-keyframes\">","layout-2":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-layout-2\">","layout-align-bottom":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-layout-align-bottom\">","layout-align-center":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-layout-align-center\">","layout-align-left":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-layout-align-left\">","layout-align-middle":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-layout-align-middle\">","layout-align-right":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-layout-align-right\">","layout-align-top":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-layout-align-top\">","layout-bottombar-collapse":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-layout-bottombar-collapse\">","layout-bottombar-expand":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-layout-bottombar-expand\">","layout-bottombar":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-layout-bottombar\">","layout-cards":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-layout-cards\">","layout-dashboard":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-layout-dashboard\">","layout-distribute-horizontal":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-layout-distribute-horizontal\">","layout-distribute-vertical":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-layout-distribute-vertical\">","layout-grid":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-layout-grid\">","layout-kanban":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-layout-kanban\">","layout-list":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-layout-list\">","layout-navbar-collapse":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-layout-navbar-collapse\">","layout-navbar-expand":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-layout-navbar-expand\">","layout-navbar":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-layout-navbar\">","layout-sidebar-left-collapse":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-layout-sidebar-left-collapse\">","layout-sidebar-left-expand":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-layout-sidebar-left-expand\">","layout-sidebar-right-collapse":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-layout-sidebar-right-collapse\">","layout-sidebar-right-expand":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-layout-sidebar-right-expand\">","layout-sidebar-right":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-layout-sidebar-right\">","layout-sidebar":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-layout-sidebar\">","layout":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-layout\">","lego":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-lego\">","location":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-location\">","lock-square-rounded":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-lock-square-rounded\">","lock":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-lock\">","lungs":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-lungs\">","macro":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-macro\">","magnet":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-magnet\">","mail-opened":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-mail-opened\">","mail":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-mail\">","man":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-man\">","manual-gearbox":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-manual-gearbox\">","map-pin":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-map-pin\">","medical-cross":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-medical-cross\">","message-circle-2":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-message-circle-2\">","mickey":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-mickey\">","microphone":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-microphone\">","microwave":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-microwave\">","mood-confuzed":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-mood-confuzed\">","mood-empty":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-mood-empty\">","mood-happy":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-mood-happy\">","mood-kid":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-mood-kid\">","mood-neutral":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-mood-neutral\">","mood-sad":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-mood-sad\">","mood-smile":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-mood-smile\">","moon":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-moon\">","mouse":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-mouse\">","mushroom":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-mushroom\">","navigation":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-navigation\">","octagon":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-octagon\">","oval-vertical":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-oval-vertical\">","oval":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-oval\">","paint":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-paint\">","paw":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-paw\">","pennant-2":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-pennant-2\">","pennant":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-pennant\">","pentagon":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-pentagon\">","phone":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-phone\">","photo":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-photo\">","pin":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-pin\">","pinned":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-pinned\">","player-eject":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-player-eject\">","player-pause":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-player-pause\">","player-play":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-player-play\">","player-record":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-player-record\">","player-skip-back":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-player-skip-back\">","player-skip-forward":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-player-skip-forward\">","player-stop":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-player-stop\">","player-track-next":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-player-track-next\">","player-track-prev":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-player-track-prev\">","point":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-point\">","pointer":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-pointer\">","polaroid":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-polaroid\">","puzzle":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-puzzle\">","radar":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-radar\">","radioactive":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-radioactive\">","rectangle-vertical":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-rectangle-vertical\">","rectangle":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-rectangle\">","relation-many-to-many":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-relation-many-to-many\">","relation-one-to-many":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-relation-one-to-many\">","relation-one-to-one":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-relation-one-to-one\">","replace":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-replace\">","rosette-discount-check":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-rosette-discount-check\">","rosette":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-rosette\">","section":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-section\">","settings":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-settings\">","shield-check":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-shield-check\">","shield-checkered":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-shield-checkered\">","shield-half":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-shield-half\">","shield-lock":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-shield-lock\">","shield":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-shield\">","shirt":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-shirt\">","shopping-cart":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-shopping-cart\">","sign-left":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-sign-left\">","sign-right":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-sign-right\">","soup":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-soup\">","spade":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-spade\">","square-arrow-down":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-square-arrow-down\">","square-arrow-left":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-square-arrow-left\">","square-arrow-right":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-square-arrow-right\">","square-arrow-up":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-square-arrow-up\">","square-asterisk":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-square-asterisk\">","square-check":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-square-check\">","square-chevron-down":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-square-chevron-down\">","square-chevron-left":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-square-chevron-left\">","square-chevron-right":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-square-chevron-right\">","square-chevron-up":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-square-chevron-up\">","square-chevrons-down":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-square-chevrons-down\">","square-chevrons-left":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-square-chevrons-left\">","square-chevrons-right":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-square-chevrons-right\">","square-chevrons-up":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-square-chevrons-up\">","square-dot":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-square-dot\">","square-f0":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-square-f0\">","square-f1":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-square-f1\">","square-f2":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-square-f2\">","square-f3":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-square-f3\">","square-f4":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-square-f4\">","square-f5":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-square-f5\">","square-f6":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-square-f6\">","square-f7":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-square-f7\">","square-f8":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-square-f8\">","square-f9":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-square-f9\">","square-letter-a":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-square-letter-a\">","square-letter-b":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-square-letter-b\">","square-letter-c":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-square-letter-c\">","square-letter-d":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-square-letter-d\">","square-letter-e":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-square-letter-e\">","square-letter-f":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-square-letter-f\">","square-letter-g":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-square-letter-g\">","square-letter-h":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-square-letter-h\">","square-letter-i":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-square-letter-i\">","square-letter-j":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-square-letter-j\">","square-letter-k":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-square-letter-k\">","square-letter-l":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-square-letter-l\">","square-letter-m":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-square-letter-m\">","square-letter-n":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-square-letter-n\">","square-letter-o":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-square-letter-o\">","square-letter-p":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-square-letter-p\">","square-letter-q":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-square-letter-q\">","square-letter-r":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-square-letter-r\">","square-letter-s":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-square-letter-s\">","square-letter-t":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-square-letter-t\">","square-letter-u":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-square-letter-u\">","square-letter-v":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-square-letter-v\">","square-letter-w":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-square-letter-w\">","square-letter-x":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-square-letter-x\">","square-letter-y":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-square-letter-y\">","square-letter-z":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-square-letter-z\">","square-minus":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-square-minus\">","square-number-0":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-square-number-0\">","square-number-1":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-square-number-1\">","square-number-2":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-square-number-2\">","square-number-3":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-square-number-3\">","square-number-4":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-square-number-4\">","square-number-5":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-square-number-5\">","square-number-6":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-square-number-6\">","square-number-7":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-square-number-7\">","square-number-8":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-square-number-8\">","square-number-9":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-square-number-9\">","square-rotated":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-square-rotated\">","square-rounded-arrow-down":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-square-rounded-arrow-down\">","square-rounded-arrow-left":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-square-rounded-arrow-left\">","square-rounded-arrow-right":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-square-rounded-arrow-right\">","square-rounded-arrow-up":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-square-rounded-arrow-up\">","square-rounded-check":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-square-rounded-check\">","square-rounded-chevron-down":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-square-rounded-chevron-down\">","square-rounded-chevron-left":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-square-rounded-chevron-left\">","square-rounded-chevron-right":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-square-rounded-chevron-right\">","square-rounded-chevron-up":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-square-rounded-chevron-up\">","square-rounded-chevrons-down":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-square-rounded-chevrons-down\">","square-rounded-chevrons-left":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-square-rounded-chevrons-left\">","square-rounded-chevrons-right":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-square-rounded-chevrons-right\">","square-rounded-chevrons-up":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-square-rounded-chevrons-up\">","square-rounded-letter-a":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-square-rounded-letter-a\">","square-rounded-letter-b":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-square-rounded-letter-b\">","square-rounded-letter-c":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-square-rounded-letter-c\">","square-rounded-letter-d":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-square-rounded-letter-d\">","square-rounded-letter-e":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-square-rounded-letter-e\">","square-rounded-letter-f":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-square-rounded-letter-f\">","square-rounded-letter-g":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-square-rounded-letter-g\">","square-rounded-letter-h":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-square-rounded-letter-h\">","square-rounded-letter-i":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-square-rounded-letter-i\">","square-rounded-letter-j":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-square-rounded-letter-j\">","square-rounded-letter-k":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-square-rounded-letter-k\">","square-rounded-letter-l":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-square-rounded-letter-l\">","square-rounded-letter-m":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-square-rounded-letter-m\">","square-rounded-letter-n":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-square-rounded-letter-n\">","square-rounded-letter-o":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-square-rounded-letter-o\">","square-rounded-letter-p":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-square-rounded-letter-p\">","square-rounded-letter-q":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-square-rounded-letter-q\">","square-rounded-letter-r":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-square-rounded-letter-r\">","square-rounded-letter-s":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-square-rounded-letter-s\">","square-rounded-letter-t":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-square-rounded-letter-t\">","square-rounded-letter-u":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-square-rounded-letter-u\">","square-rounded-letter-v":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-square-rounded-letter-v\">","square-rounded-letter-w":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-square-rounded-letter-w\">","square-rounded-letter-x":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-square-rounded-letter-x\">","square-rounded-letter-y":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-square-rounded-letter-y\">","square-rounded-letter-z":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-square-rounded-letter-z\">","square-rounded-minus":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-square-rounded-minus\">","square-rounded-number-0":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-square-rounded-number-0\">","square-rounded-number-1":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-square-rounded-number-1\">","square-rounded-number-2":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-square-rounded-number-2\">","square-rounded-number-3":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-square-rounded-number-3\">","square-rounded-number-4":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-square-rounded-number-4\">","square-rounded-number-5":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-square-rounded-number-5\">","square-rounded-number-6":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-square-rounded-number-6\">","square-rounded-number-7":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-square-rounded-number-7\">","square-rounded-number-8":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-square-rounded-number-8\">","square-rounded-number-9":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-square-rounded-number-9\">","square-rounded-plus":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-square-rounded-plus\">","square-rounded-x":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-square-rounded-x\">","square-rounded":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-square-rounded\">","square-x":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-square-x\">","square":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-square\">","squares":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-squares\">","stack-2":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-stack-2\">","stack-3":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-stack-3\">","stack":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-stack\">","star-half":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-star-half\">","star":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-star\">","stars":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-stars\">","sun":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-sun\">","table":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-table\">","thumb-down":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-thumb-down\">","thumb-up":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-thumb-up\">","timeline-event":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-timeline-event\">","transform":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-transform\">","transition-bottom":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-transition-bottom\">","transition-left":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-transition-left\">","transition-right":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-transition-right\">","transition-top":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-transition-top\">","trash-x":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-trash-x\">","trash":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-trash\">","triangle-inverted":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-triangle-inverted\">","triangle-square-circle":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-triangle-square-circle\">","triangle":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-triangle\">","trophy":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-trophy\">","umbrella":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-umbrella\">","user":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-user\">","versions":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-versions\">","windmill":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-windmill\">","woman":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-woman\">","xbox-a":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-xbox-a\">","xbox-b":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-xbox-b\">","xbox-x":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-xbox-x\">","xbox-y":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-xbox-y\">","yin-yang":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-yin-yang\">","zeppelin":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-zeppelin\">","zoom-cancel":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-zoom-cancel\">","zoom-check":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-zoom-check\">","zoom-code":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-zoom-code\">","zoom-exclamation":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-zoom-exclamation\">","zoom-in-area":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-zoom-in-area\">","zoom-in":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-zoom-in\">","zoom-money":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-zoom-money\">","zoom-out-area":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-zoom-out-area\">","zoom-out":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-zoom-out\">","zoom-pan":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-zoom-pan\">","zoom-question":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-zoom-question\">","zoom-scan":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-zoom-scan\">","zoom":"xmlns=\"http://www.w3.org/2000/svg\"width=\"24\"height=\"24\"viewBox=\"0 0 24 24\"fill=\"currentColor\"class=\"icon icon-tabler icons-tabler-filled icon-tabler-zoom\">","HEAD":"","TAIL":""}; diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 0000000..d3190e0 --- /dev/null +++ b/package-lock.json @@ -0,0 +1,2447 @@ +{ + "name": "@cdransf/eleventy-tabler-icons-filled", + "version": "1.0.0", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "@cdransf/eleventy-tabler-icons-filled", + "version": "1.0.0", + "license": "MIT", + "devDependencies": { + "@11ty/eleventy": "^2.0.1", + "@tabler/icons": "^3.0.1" + } + }, + "node_modules/@11ty/dependency-tree": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/@11ty/dependency-tree/-/dependency-tree-2.0.1.tgz", + "integrity": "sha512-5R+DsT9LJ9tXiSQ4y+KLFppCkQyXhzAm1AIuBWE/sbU0hSXY5pkhoqQYEcPJQFg/nglL+wD55iv2j+7O96UAvg==", + "dev": true + }, + "node_modules/@11ty/eleventy": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/@11ty/eleventy/-/eleventy-2.0.1.tgz", + "integrity": "sha512-t8XVUbCJByhVEa1RzO0zS2QzbL3wPY8ot1yUw9noqiSHxJWUwv6jiwm1/MZDPTYtkZH2ZHvdQIRQ5/SjG9XmLw==", + "dev": true, + "dependencies": { + "@11ty/dependency-tree": "^2.0.1", + "@11ty/eleventy-dev-server": "^1.0.4", + "@11ty/eleventy-utils": "^1.0.1", + "@11ty/lodash-custom": "^4.17.21", + "@iarna/toml": "^2.2.5", + "@sindresorhus/slugify": "^1.1.2", + "bcp-47-normalize": "^1.1.1", + "chokidar": "^3.5.3", + "cross-spawn": "^7.0.3", + "debug": "^4.3.4", + "dependency-graph": "^0.11.0", + "ejs": "^3.1.9", + "fast-glob": "^3.2.12", + "graceful-fs": "^4.2.11", + "gray-matter": "^4.0.3", + "hamljs": "^0.6.2", + "handlebars": "^4.7.7", + "is-glob": "^4.0.3", + "iso-639-1": "^2.1.15", + "kleur": "^4.1.5", + "liquidjs": "^10.7.0", + "luxon": "^3.3.0", + "markdown-it": "^13.0.1", + "micromatch": "^4.0.5", + "minimist": "^1.2.8", + "moo": "^0.5.2", + "multimatch": "^5.0.0", + "mustache": "^4.2.0", + "normalize-path": "^3.0.0", + "nunjucks": "^3.2.3", + "path-to-regexp": "^6.2.1", + "please-upgrade-node": "^3.2.0", + "posthtml": "^0.16.6", + "posthtml-urls": "^1.0.0", + "pug": "^3.0.2", + "recursive-copy": "^2.0.14", + "semver": "^7.3.8", + "slugify": "^1.6.6" + }, + "bin": { + "eleventy": "cmd.js" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/11ty" + } + }, + "node_modules/@11ty/eleventy-dev-server": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@11ty/eleventy-dev-server/-/eleventy-dev-server-1.0.4.tgz", + "integrity": "sha512-qVBmV2G1KF/0o5B/3fITlrrDHy4bONUI2YuN3/WJ3BNw4NU1d/we8XhKrlgq13nNvHoBx5czYp3LZt8qRG53Fg==", + "dev": true, + "dependencies": { + "@11ty/eleventy-utils": "^1.0.1", + "chokidar": "^3.5.3", + "debug": "^4.3.4", + "dev-ip": "^1.0.1", + "finalhandler": "^1.2.0", + "mime": "^3.0.0", + "minimist": "^1.2.8", + "morphdom": "^2.7.0", + "please-upgrade-node": "^3.2.0", + "ssri": "^8.0.1", + "ws": "^8.13.0" + }, + "bin": { + "eleventy-dev-server": "cmd.js" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/11ty" + } + }, + "node_modules/@11ty/eleventy-utils": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@11ty/eleventy-utils/-/eleventy-utils-1.0.2.tgz", + "integrity": "sha512-Zy2leMK1DQR6Q6ZPSagv7QpJaAz9uVbb+RmVetYFp3foMeQtOSZx7w2u5daRFmP+PeNq9vO9H4xtBToYFWZwHA==", + "dev": true, + "dependencies": { + "normalize-path": "^3.0.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/11ty" + } + }, + "node_modules/@11ty/lodash-custom": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/@11ty/lodash-custom/-/lodash-custom-4.17.21.tgz", + "integrity": "sha512-Mqt6im1xpb1Ykn3nbcCovWXK3ggywRJa+IXIdoz4wIIK+cvozADH63lexcuPpGS/gJ6/m2JxyyXDyupkMr5DHw==", + "dev": true, + "engines": { + "node": ">=14" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/11ty" + } + }, + "node_modules/@babel/helper-string-parser": { + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.23.4.tgz", + "integrity": "sha512-803gmbQdqwdf4olxrX4AJyFBV/RTr3rSmOj0rKwesmzlfhYNDEs+/iOcznzpNWlJlIlTJC2QfPFcHB6DlzdVLQ==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-identifier": { + "version": "7.22.20", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz", + "integrity": "sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/parser": { + "version": "7.24.0", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.24.0.tgz", + "integrity": "sha512-QuP/FxEAzMSjXygs8v4N9dvdXzEHN4W1oF3PxuWAtPo08UdM17u89RDMgjLn/mlc56iM0HlLmVkO/wgR+rDgHg==", + "dev": true, + "bin": { + "parser": "bin/babel-parser.js" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/types": { + "version": "7.24.0", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.24.0.tgz", + "integrity": "sha512-+j7a5c253RfKh8iABBhywc8NSfP5LURe7Uh4qpsh6jc+aLJguvmIUBdjSdEMQv2bENrCR5MfRdjGo7vzS/ob7w==", + "dev": true, + "dependencies": { + "@babel/helper-string-parser": "^7.23.4", + "@babel/helper-validator-identifier": "^7.22.20", + "to-fast-properties": "^2.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@iarna/toml": { + "version": "2.2.5", + "resolved": "https://registry.npmjs.org/@iarna/toml/-/toml-2.2.5.tgz", + "integrity": "sha512-trnsAYxU3xnS1gPHPyU961coFyLkh4gAD/0zQ5mymY4yOZ+CYvsPqUbOFSw0aDM4y0tV7tiFxL/1XfXPNC6IPg==", + "dev": true + }, + "node_modules/@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "dev": true, + "dependencies": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "dev": true, + "dependencies": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@sindresorhus/slugify": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@sindresorhus/slugify/-/slugify-1.1.2.tgz", + "integrity": "sha512-V9nR/W0Xd9TSGXpZ4iFUcFGhuOJtZX82Fzxj1YISlbSgKvIiNa7eLEZrT0vAraPOt++KHauIVNYgGRgjc13dXA==", + "dev": true, + "dependencies": { + "@sindresorhus/transliterate": "^0.1.1", + "escape-string-regexp": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@sindresorhus/transliterate": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/@sindresorhus/transliterate/-/transliterate-0.1.2.tgz", + "integrity": "sha512-5/kmIOY9FF32nicXH+5yLNTX4NJ4atl7jRgqAJuIn/iyDFXBktOKDxCvyGE/EzmF4ngSUvjXxQUQlQiZ5lfw+w==", + "dev": true, + "dependencies": { + "escape-string-regexp": "^2.0.0", + "lodash.deburr": "^4.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@sindresorhus/transliterate/node_modules/escape-string-regexp": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", + "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/@tabler/icons": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@tabler/icons/-/icons-3.0.1.tgz", + "integrity": "sha512-K/ZgJkxWcrMWdkgvS7VmgZ4F6SXM5UPolh2Y/dPTJnRpjMSySzfi93+XvfP2YfAzH7bd4ilqmTp7TADPLHrn0A==", + "dev": true, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/codecalm" + } + }, + "node_modules/@types/minimatch": { + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-3.0.5.tgz", + "integrity": "sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ==", + "dev": true + }, + "node_modules/a-sync-waterfall": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/a-sync-waterfall/-/a-sync-waterfall-1.0.1.tgz", + "integrity": "sha512-RYTOHHdWipFUliRFMCS4X2Yn2X8M87V/OpSqWzKKOGhzqyUxzyVmhHDH9sAvG+ZuQf/TAOFsLCpMw09I1ufUnA==", + "dev": true + }, + "node_modules/acorn": { + "version": "7.4.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", + "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", + "dev": true, + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/any-promise": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/any-promise/-/any-promise-0.1.0.tgz", + "integrity": "sha512-lqzY9o+BbeGHRCOyxQkt/Tgvz0IZhTmQiA+LxQW8wSNpcTbj8K+0cZiSEvbpNZZP9/11Gy7dnLO3GNWUXO4d1g==", + "dev": true + }, + "node_modules/anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "dev": true, + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "dev": true, + "dependencies": { + "sprintf-js": "~1.0.2" + } + }, + "node_modules/array-differ": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/array-differ/-/array-differ-3.0.0.tgz", + "integrity": "sha512-THtfYS6KtME/yIAhKjZ2ul7XI96lQGHRputJQHO80LAWQnuGP4iCIN8vdMRboGbIEYBwU33q8Tch1os2+X0kMg==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/array-union": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", + "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/array-uniq": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz", + "integrity": "sha512-MNha4BWQ6JbwhFhj03YK552f7cb3AzoE8SzeljgChvL1dl3IcvggXVz1DilzySZkCja+CXuZbdW7yATchWn8/Q==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/arrify": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/arrify/-/arrify-2.0.1.tgz", + "integrity": "sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/asap": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz", + "integrity": "sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==", + "dev": true + }, + "node_modules/assert-never": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/assert-never/-/assert-never-1.2.1.tgz", + "integrity": "sha512-TaTivMB6pYI1kXwrFlEhLeGfOqoDNdTxjCdwRfFFkEA30Eu+k48W34nlok2EYWJfFFzqaEmichdNM7th6M5HNw==", + "dev": true + }, + "node_modules/async": { + "version": "3.2.5", + "resolved": "https://registry.npmjs.org/async/-/async-3.2.5.tgz", + "integrity": "sha512-baNZyqaaLhyLVKm/DlvdW051MSgO6b8eVfIezl9E5PqWxFgzLm/wQntEW4zOytVburDEr0JlALEpdOFwvErLsg==", + "dev": true + }, + "node_modules/babel-walk": { + "version": "3.0.0-canary-5", + "resolved": "https://registry.npmjs.org/babel-walk/-/babel-walk-3.0.0-canary-5.tgz", + "integrity": "sha512-GAwkz0AihzY5bkwIY5QDR+LvsRQgB/B+1foMPvi0FZPMl5fjD7ICiznUiBdLYMH1QYe6vqu4gWYytZOccLouFw==", + "dev": true, + "dependencies": { + "@babel/types": "^7.9.6" + }, + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true + }, + "node_modules/bcp-47": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/bcp-47/-/bcp-47-1.0.8.tgz", + "integrity": "sha512-Y9y1QNBBtYtv7hcmoX0tR+tUNSFZGZ6OL6vKPObq8BbOhkCoyayF6ogfLTgAli/KuAEbsYHYUNq2AQuY6IuLag==", + "dev": true, + "dependencies": { + "is-alphabetical": "^1.0.0", + "is-alphanumerical": "^1.0.0", + "is-decimal": "^1.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/bcp-47-match": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/bcp-47-match/-/bcp-47-match-1.0.3.tgz", + "integrity": "sha512-LggQ4YTdjWQSKELZF5JwchnBa1u0pIQSZf5lSdOHEdbVP55h0qICA/FUp3+W99q0xqxYa1ZQizTUH87gecII5w==", + "dev": true, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/bcp-47-normalize": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/bcp-47-normalize/-/bcp-47-normalize-1.1.1.tgz", + "integrity": "sha512-jWZ1Jdu3cs0EZdfCkS0UE9Gg01PtxnChjEBySeB+Zo6nkqtFfnvtoQQgP1qU1Oo4qgJgxhTI6Sf9y/pZIhPs0A==", + "dev": true, + "dependencies": { + "bcp-47": "^1.0.0", + "bcp-47-match": "^1.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/binary-extensions": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", + "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dev": true, + "dependencies": { + "fill-range": "^7.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/call-bind": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.7.tgz", + "integrity": "sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==", + "dev": true, + "dependencies": { + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.4", + "set-function-length": "^1.2.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/character-parser": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/character-parser/-/character-parser-2.2.0.tgz", + "integrity": "sha512-+UqJQjFEFaTAs3bNsF2j2kEN1baG/zghZbdqoYEDxGZtJo9LBzl1A+m0D4n3qKx8N2FNv8/Xp6yV9mQmBuptaw==", + "dev": true, + "dependencies": { + "is-regex": "^1.0.3" + } + }, + "node_modules/chokidar": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz", + "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==", + "dev": true, + "dependencies": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + }, + "engines": { + "node": ">= 8.10.0" + }, + "funding": { + "url": "https://paulmillr.com/funding/" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, + "node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/commander": { + "version": "10.0.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-10.0.1.tgz", + "integrity": "sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==", + "dev": true, + "engines": { + "node": ">=14" + } + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "dev": true + }, + "node_modules/constantinople": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/constantinople/-/constantinople-4.0.1.tgz", + "integrity": "sha512-vCrqcSIq4//Gx74TXXCGnHpulY1dskqLTFGDmhrGxzeXL8lF8kvXv6mpNWlJj1uD4DW23D4ljAqbY4RRaaUZIw==", + "dev": true, + "dependencies": { + "@babel/parser": "^7.6.0", + "@babel/types": "^7.6.1" + } + }, + "node_modules/cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dev": true, + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dev": true, + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/define-data-property": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz", + "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==", + "dev": true, + "dependencies": { + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "gopd": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/dependency-graph": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/dependency-graph/-/dependency-graph-0.11.0.tgz", + "integrity": "sha512-JeMq7fEshyepOWDfcfHK06N3MhyPhz++vtqWhMT5O9A3K42rdsEDpfdVqjaqaAhsw6a+ZqeDvQVtD0hFHQWrzg==", + "dev": true, + "engines": { + "node": ">= 0.6.0" + } + }, + "node_modules/dev-ip": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/dev-ip/-/dev-ip-1.0.1.tgz", + "integrity": "sha512-LmVkry/oDShEgSZPNgqCIp2/TlqtExeGmymru3uCELnfyjY11IzpAproLYs+1X88fXO6DBoYP3ul2Xo2yz2j6A==", + "dev": true, + "bin": { + "dev-ip": "lib/dev-ip.js" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/doctypes": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/doctypes/-/doctypes-1.1.0.tgz", + "integrity": "sha512-LLBi6pEqS6Do3EKQ3J0NqHWV5hhb78Pi8vvESYwyOy2c31ZEZVdtitdzsQsKb7878PEERhzUk0ftqGhG6Mz+pQ==", + "dev": true + }, + "node_modules/dom-serializer": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz", + "integrity": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==", + "dev": true, + "dependencies": { + "domelementtype": "^2.0.1", + "domhandler": "^4.2.0", + "entities": "^2.0.0" + }, + "funding": { + "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" + } + }, + "node_modules/dom-serializer/node_modules/entities": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", + "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", + "dev": true, + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "node_modules/domelementtype": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", + "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/fb55" + } + ] + }, + "node_modules/domhandler": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz", + "integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==", + "dev": true, + "dependencies": { + "domelementtype": "^2.2.0" + }, + "engines": { + "node": ">= 4" + }, + "funding": { + "url": "https://github.com/fb55/domhandler?sponsor=1" + } + }, + "node_modules/domutils": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz", + "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==", + "dev": true, + "dependencies": { + "dom-serializer": "^1.0.1", + "domelementtype": "^2.2.0", + "domhandler": "^4.2.0" + }, + "funding": { + "url": "https://github.com/fb55/domutils?sponsor=1" + } + }, + "node_modules/ee-first": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", + "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==", + "dev": true + }, + "node_modules/ejs": { + "version": "3.1.9", + "resolved": "https://registry.npmjs.org/ejs/-/ejs-3.1.9.tgz", + "integrity": "sha512-rC+QVNMJWv+MtPgkt0y+0rVEIdbtxVADApW9JXrUVlzHetgcyczP/E7DJmWJ4fJCZF2cPcBk0laWO9ZHMG3DmQ==", + "dev": true, + "dependencies": { + "jake": "^10.8.5" + }, + "bin": { + "ejs": "bin/cli.js" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", + "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/entities": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/entities/-/entities-3.0.1.tgz", + "integrity": "sha512-WiyBqoomrwMdFG1e0kqvASYfnlb0lp8M5o5Fw2OFq1hNZxxcNk8Ik0Xm7LxzBhuidnZB/UtBqVCgUz3kBOP51Q==", + "dev": true, + "engines": { + "node": ">=0.12" + }, + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "node_modules/errno": { + "version": "0.1.8", + "resolved": "https://registry.npmjs.org/errno/-/errno-0.1.8.tgz", + "integrity": "sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==", + "dev": true, + "dependencies": { + "prr": "~1.0.1" + }, + "bin": { + "errno": "cli.js" + } + }, + "node_modules/es-define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.0.tgz", + "integrity": "sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==", + "dev": true, + "dependencies": { + "get-intrinsic": "^1.2.4" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-errors": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", + "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", + "dev": true, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", + "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==", + "dev": true + }, + "node_modules/escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/esprima": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", + "dev": true, + "bin": { + "esparse": "bin/esparse.js", + "esvalidate": "bin/esvalidate.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "dev": true, + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/fast-glob": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz", + "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", + "dev": true, + "dependencies": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" + }, + "engines": { + "node": ">=8.6.0" + } + }, + "node_modules/fastq": { + "version": "1.17.1", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.17.1.tgz", + "integrity": "sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==", + "dev": true, + "dependencies": { + "reusify": "^1.0.4" + } + }, + "node_modules/filelist": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/filelist/-/filelist-1.0.4.tgz", + "integrity": "sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==", + "dev": true, + "dependencies": { + "minimatch": "^5.0.1" + } + }, + "node_modules/filelist/node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/filelist/node_modules/minimatch": { + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", + "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", + "dev": true, + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dev": true, + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/finalhandler": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz", + "integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==", + "dev": true, + "dependencies": { + "debug": "2.6.9", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "statuses": "2.0.1", + "unpipe": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/finalhandler/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/finalhandler/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "node_modules/fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", + "dev": true + }, + "node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "dev": true, + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-intrinsic": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.4.tgz", + "integrity": "sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==", + "dev": true, + "dependencies": { + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3", + "hasown": "^2.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "dev": true, + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/gopd": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", + "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", + "dev": true, + "dependencies": { + "get-intrinsic": "^1.1.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", + "dev": true + }, + "node_modules/gray-matter": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/gray-matter/-/gray-matter-4.0.3.tgz", + "integrity": "sha512-5v6yZd4JK3eMI3FqqCouswVqwugaA9r4dNZB1wwcmrD02QkV5H0y7XBQW8QwQqEaZY1pM9aqORSORhJRdNK44Q==", + "dev": true, + "dependencies": { + "js-yaml": "^3.13.1", + "kind-of": "^6.0.2", + "section-matter": "^1.0.0", + "strip-bom-string": "^1.0.0" + }, + "engines": { + "node": ">=6.0" + } + }, + "node_modules/hamljs": { + "version": "0.6.2", + "resolved": "https://registry.npmjs.org/hamljs/-/hamljs-0.6.2.tgz", + "integrity": "sha512-/chXRp4WpL47I+HX1vCCdSbEXAljEG2FBMmgO7Am0bYsqgnEjreeWzUdX1onXqwZtcfgxbCg5WtEYYvuZ5muBg==", + "dev": true + }, + "node_modules/handlebars": { + "version": "4.7.8", + "resolved": "https://registry.npmjs.org/handlebars/-/handlebars-4.7.8.tgz", + "integrity": "sha512-vafaFqs8MZkRrSX7sFVUdo3ap/eNiLnb4IakshzvP56X5Nr1iGKAIqdX6tMlm6HcNRIkr6AxO5jFEoJzzpT8aQ==", + "dev": true, + "dependencies": { + "minimist": "^1.2.5", + "neo-async": "^2.6.2", + "source-map": "^0.6.1", + "wordwrap": "^1.0.0" + }, + "bin": { + "handlebars": "bin/handlebars" + }, + "engines": { + "node": ">=0.4.7" + }, + "optionalDependencies": { + "uglify-js": "^3.1.4" + } + }, + "node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/has-property-descriptors": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz", + "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==", + "dev": true, + "dependencies": { + "es-define-property": "^1.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-proto": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.3.tgz", + "integrity": "sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-symbols": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-tostringtag": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz", + "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==", + "dev": true, + "dependencies": { + "has-symbols": "^1.0.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/hasown": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", + "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", + "dev": true, + "dependencies": { + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/htmlparser2": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-7.2.0.tgz", + "integrity": "sha512-H7MImA4MS6cw7nbyURtLPO1Tms7C5H602LRETv95z1MxO/7CP7rDVROehUYeYBUYEON94NXXDEPmZuq+hX4sog==", + "dev": true, + "funding": [ + "https://github.com/fb55/htmlparser2?sponsor=1", + { + "type": "github", + "url": "https://github.com/sponsors/fb55" + } + ], + "dependencies": { + "domelementtype": "^2.0.1", + "domhandler": "^4.2.2", + "domutils": "^2.8.0", + "entities": "^3.0.1" + } + }, + "node_modules/http-equiv-refresh": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/http-equiv-refresh/-/http-equiv-refresh-1.0.0.tgz", + "integrity": "sha512-TScO04soylRN9i/QdOdgZyhydXg9z6XdaGzEyOgDKycePeDeTT4KvigjBcI+tgfTlieLWauGORMq5F1eIDa+1w==", + "dev": true, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "dev": true, + "dependencies": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "dev": true + }, + "node_modules/is-alphabetical": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-alphabetical/-/is-alphabetical-1.0.4.tgz", + "integrity": "sha512-DwzsA04LQ10FHTZuL0/grVDk4rFoVH1pjAToYwBrHSxcrBIGQuXrQMtD5U1b0U2XVgKZCTLLP8u2Qxqhy3l2Vg==", + "dev": true, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/is-alphanumerical": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-alphanumerical/-/is-alphanumerical-1.0.4.tgz", + "integrity": "sha512-UzoZUr+XfVz3t3v4KyGEniVL9BDRoQtY7tOyrRybkVNjDFWyo1yhXNGrrBTQxp3ib9BLAWs7k2YKBQsFRkZG9A==", + "dev": true, + "dependencies": { + "is-alphabetical": "^1.0.0", + "is-decimal": "^1.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "dev": true, + "dependencies": { + "binary-extensions": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-core-module": { + "version": "2.13.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.1.tgz", + "integrity": "sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==", + "dev": true, + "dependencies": { + "hasown": "^2.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-decimal": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-decimal/-/is-decimal-1.0.4.tgz", + "integrity": "sha512-RGdriMmQQvZ2aqaQq3awNA6dCGtKpiDFcOzrTWrDAT2MiWrKQVPmxLGHl7Y2nNu6led0kEyoX0enY0qXYsv9zw==", + "dev": true, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/is-expression": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/is-expression/-/is-expression-4.0.0.tgz", + "integrity": "sha512-zMIXX63sxzG3XrkHkrAPvm/OVZVSCPNkwMHU8oTX7/U3AL78I0QXCEICXUM13BIa8TYGZ68PiTKfQz3yaTNr4A==", + "dev": true, + "dependencies": { + "acorn": "^7.1.1", + "object-assign": "^4.1.1" + } + }, + "node_modules/is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dev": true, + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-json": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-json/-/is-json-2.0.1.tgz", + "integrity": "sha512-6BEnpVn1rcf3ngfmViLM6vjUjGErbdrL4rwlv+u1NO1XO8kqT4YGL8+19Q+Z/bas8tY90BTWMk2+fW1g6hQjbA==", + "dev": true + }, + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true, + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/is-promise": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/is-promise/-/is-promise-2.2.2.tgz", + "integrity": "sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ==", + "dev": true + }, + "node_modules/is-regex": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", + "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "dev": true + }, + "node_modules/iso-639-1": { + "version": "2.1.15", + "resolved": "https://registry.npmjs.org/iso-639-1/-/iso-639-1-2.1.15.tgz", + "integrity": "sha512-7c7mBznZu2ktfvyT582E2msM+Udc1EjOyhVRE/0ZsjD9LBtWSm23h3PtiRh2a35XoUsTQQjJXaJzuLjXsOdFDg==", + "dev": true, + "engines": { + "node": ">=6.0" + } + }, + "node_modules/jake": { + "version": "10.8.7", + "resolved": "https://registry.npmjs.org/jake/-/jake-10.8.7.tgz", + "integrity": "sha512-ZDi3aP+fG/LchyBzUM804VjddnwfSfsdeYkwt8NcbKRvo4rFkjhs456iLFn3k2ZUWvNe4i48WACDbza8fhq2+w==", + "dev": true, + "dependencies": { + "async": "^3.2.3", + "chalk": "^4.0.2", + "filelist": "^1.0.4", + "minimatch": "^3.1.2" + }, + "bin": { + "jake": "bin/cli.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/js-stringify": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/js-stringify/-/js-stringify-1.0.2.tgz", + "integrity": "sha512-rtS5ATOo2Q5k1G+DADISilDA6lv79zIiwFd6CcjuIxGKLFm5C+RLImRscVap9k55i+MOZwgliw+NejvkLuGD5g==", + "dev": true + }, + "node_modules/js-yaml": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", + "dev": true, + "dependencies": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/jstransformer": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/jstransformer/-/jstransformer-1.0.0.tgz", + "integrity": "sha512-C9YK3Rf8q6VAPDCCU9fnqo3mAfOH6vUGnMcP4AQAYIEpWtfGLpwOTmZ+igtdK5y+VvI2n3CyYSzy4Qh34eq24A==", + "dev": true, + "dependencies": { + "is-promise": "^2.0.0", + "promise": "^7.0.1" + } + }, + "node_modules/junk": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/junk/-/junk-1.0.3.tgz", + "integrity": "sha512-3KF80UaaSSxo8jVnRYtMKNGFOoVPBdkkVPsw+Ad0y4oxKXPduS6G6iHkrf69yJVff/VAaYXkV42rtZ7daJxU3w==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/kleur": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/kleur/-/kleur-4.1.5.tgz", + "integrity": "sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/linkify-it": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/linkify-it/-/linkify-it-4.0.1.tgz", + "integrity": "sha512-C7bfi1UZmoj8+PQx22XyeXCuBlokoyWQL5pWSP+EI6nzRylyThouddufc2c1NDIcP9k5agmN9fLpA7VNJfIiqw==", + "dev": true, + "dependencies": { + "uc.micro": "^1.0.1" + } + }, + "node_modules/liquidjs": { + "version": "10.10.1", + "resolved": "https://registry.npmjs.org/liquidjs/-/liquidjs-10.10.1.tgz", + "integrity": "sha512-h699VW79OLoshCTjFF02tmRCrd8t/E49LSIsjLwlg4k0TbMVjxsCRXVUEsURXbfKl3HUln2cShlDQCrSNm2YaA==", + "dev": true, + "dependencies": { + "commander": "^10.0.0" + }, + "bin": { + "liquid": "bin/liquid.js", + "liquidjs": "bin/liquid.js" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/liquidjs" + } + }, + "node_modules/list-to-array": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/list-to-array/-/list-to-array-1.1.0.tgz", + "integrity": "sha512-+dAZZ2mM+/m+vY9ezfoueVvrgnHIGi5FvgSymbIgJOFwiznWyA59mav95L+Mc6xPtL3s9gm5eNTlNtxJLbNM1g==", + "dev": true + }, + "node_modules/lodash.deburr": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/lodash.deburr/-/lodash.deburr-4.1.0.tgz", + "integrity": "sha512-m/M1U1f3ddMCs6Hq2tAsYThTBDaAKFDX3dwDo97GEYzamXi9SqUpjWi/Rrj/gf3X2n8ktwgZrlP1z6E3v/IExQ==", + "dev": true + }, + "node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/luxon": { + "version": "3.4.4", + "resolved": "https://registry.npmjs.org/luxon/-/luxon-3.4.4.tgz", + "integrity": "sha512-zobTr7akeGHnv7eBOXcRgMeCP6+uyYsczwmeRCauvpvaAltgNyTbLH/+VaEAPUeWBT+1GuNmz4wC/6jtQzbbVA==", + "dev": true, + "engines": { + "node": ">=12" + } + }, + "node_modules/markdown-it": { + "version": "13.0.2", + "resolved": "https://registry.npmjs.org/markdown-it/-/markdown-it-13.0.2.tgz", + "integrity": "sha512-FtwnEuuK+2yVU7goGn/MJ0WBZMM9ZPgU9spqlFs7/A/pDIUNSOQZhUgOqYCficIuR2QaFnrt8LHqBWsbTAoI5w==", + "dev": true, + "dependencies": { + "argparse": "^2.0.1", + "entities": "~3.0.1", + "linkify-it": "^4.0.1", + "mdurl": "^1.0.1", + "uc.micro": "^1.0.5" + }, + "bin": { + "markdown-it": "bin/markdown-it.js" + } + }, + "node_modules/markdown-it/node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true + }, + "node_modules/maximatch": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/maximatch/-/maximatch-0.1.0.tgz", + "integrity": "sha512-9ORVtDUFk4u/NFfo0vG/ND/z7UQCVZBL539YW0+U1I7H1BkZwizcPx5foFv7LCPcBnm2U6RjFnQOsIvN4/Vm2A==", + "dev": true, + "dependencies": { + "array-differ": "^1.0.0", + "array-union": "^1.0.1", + "arrify": "^1.0.0", + "minimatch": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/maximatch/node_modules/array-differ": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/array-differ/-/array-differ-1.0.0.tgz", + "integrity": "sha512-LeZY+DZDRnvP7eMuQ6LHfCzUGxAAIViUBliK24P3hWXL6y4SortgR6Nim6xrkfSLlmH0+k+9NYNwVC2s53ZrYQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/maximatch/node_modules/array-union": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz", + "integrity": "sha512-Dxr6QJj/RdU/hCaBjOfxW+q6lyuVE6JFWIrAUpuOOhoJJoQ99cUn3igRaHVB5P9WrgFVN0FfArM3x0cueOU8ng==", + "dev": true, + "dependencies": { + "array-uniq": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/maximatch/node_modules/arrify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz", + "integrity": "sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/mdurl": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/mdurl/-/mdurl-1.0.1.tgz", + "integrity": "sha512-/sKlQJCBYVY9Ers9hqzKou4H6V5UWc/M59TH2dvkt+84itfnq7uFOMLpOiOS4ujvHP4etln18fmIxA5R5fll0g==", + "dev": true + }, + "node_modules/merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "dev": true, + "dependencies": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/mime": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-3.0.0.tgz", + "integrity": "sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==", + "dev": true, + "bin": { + "mime": "cli.js" + }, + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/minimist": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/minipass": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/mkdirp": { + "version": "0.5.6", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", + "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==", + "dev": true, + "dependencies": { + "minimist": "^1.2.6" + }, + "bin": { + "mkdirp": "bin/cmd.js" + } + }, + "node_modules/moo": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/moo/-/moo-0.5.2.tgz", + "integrity": "sha512-iSAJLHYKnX41mKcJKjqvnAN9sf0LMDTXDEvFv+ffuRR9a1MIuXLjMNL6EsnDHSkKLTWNqQQ5uo61P4EbU4NU+Q==", + "dev": true + }, + "node_modules/morphdom": { + "version": "2.7.2", + "resolved": "https://registry.npmjs.org/morphdom/-/morphdom-2.7.2.tgz", + "integrity": "sha512-Dqb/lHFyTi7SZpY0a5R4I/0Edo+iPMbaUexsHHsLAByyixCDiLHPHyVoKVmrpL0THcT7V9Cgev9y21TQYq6wQg==", + "dev": true + }, + "node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true + }, + "node_modules/multimatch": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/multimatch/-/multimatch-5.0.0.tgz", + "integrity": "sha512-ypMKuglUrZUD99Tk2bUQ+xNQj43lPEfAeX2o9cTteAmShXy2VHDJpuwu1o0xqoKCt9jLVAvwyFKdLTPXKAfJyA==", + "dev": true, + "dependencies": { + "@types/minimatch": "^3.0.3", + "array-differ": "^3.0.0", + "array-union": "^2.1.0", + "arrify": "^2.0.1", + "minimatch": "^3.0.4" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/mustache": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/mustache/-/mustache-4.2.0.tgz", + "integrity": "sha512-71ippSywq5Yb7/tVYyGbkBggbU8H3u5Rz56fH60jGFgr8uHwxs+aSKeqmluIVzM0m0kB7xQjKS6qPfd0b2ZoqQ==", + "dev": true, + "bin": { + "mustache": "bin/mustache" + } + }, + "node_modules/neo-async": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", + "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==", + "dev": true + }, + "node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/nunjucks": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/nunjucks/-/nunjucks-3.2.4.tgz", + "integrity": "sha512-26XRV6BhkgK0VOxfbU5cQI+ICFUtMLixv1noZn1tGU38kQH5A5nmmbk/O45xdyBhD1esk47nKrY0mvQpZIhRjQ==", + "dev": true, + "dependencies": { + "a-sync-waterfall": "^1.0.0", + "asap": "^2.0.3", + "commander": "^5.1.0" + }, + "bin": { + "nunjucks-precompile": "bin/precompile" + }, + "engines": { + "node": ">= 6.9.0" + }, + "peerDependencies": { + "chokidar": "^3.3.0" + }, + "peerDependenciesMeta": { + "chokidar": { + "optional": true + } + } + }, + "node_modules/nunjucks/node_modules/commander": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-5.1.0.tgz", + "integrity": "sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==", + "dev": true, + "engines": { + "node": ">= 6" + } + }, + "node_modules/object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/on-finished": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", + "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", + "dev": true, + "dependencies": { + "ee-first": "1.1.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "dev": true, + "dependencies": { + "wrappy": "1" + } + }, + "node_modules/parse-srcset": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/parse-srcset/-/parse-srcset-1.0.2.tgz", + "integrity": "sha512-/2qh0lav6CmI15FzA3i/2Bzk2zCgQhGMkvhOhKNcBVQ1ldgpbfiNTVslmooUmWJcADi1f1kIeynbDRVzNlfR6Q==", + "dev": true + }, + "node_modules/parseurl": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", + "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "dev": true + }, + "node_modules/path-to-regexp": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-6.2.1.tgz", + "integrity": "sha512-JLyh7xT1kizaEvcaXOQwOc2/Yhw6KZOvPf1S8401UyLk86CU79LN3vl7ztXGm/pZ+YjoyAJ4rxmHwbkBXJX+yw==", + "dev": true + }, + "node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "dev": true, + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/please-upgrade-node": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/please-upgrade-node/-/please-upgrade-node-3.2.0.tgz", + "integrity": "sha512-gQR3WpIgNIKwBMVLkpMUeR3e1/E1y42bqDQZfql+kDeXd8COYfM8PQA4X6y7a8u9Ua9FHmsrrmirW2vHs45hWg==", + "dev": true, + "dependencies": { + "semver-compare": "^1.0.0" + } + }, + "node_modules/posthtml": { + "version": "0.16.6", + "resolved": "https://registry.npmjs.org/posthtml/-/posthtml-0.16.6.tgz", + "integrity": "sha512-JcEmHlyLK/o0uGAlj65vgg+7LIms0xKXe60lcDOTU7oVX/3LuEuLwrQpW3VJ7de5TaFKiW4kWkaIpJL42FEgxQ==", + "dev": true, + "dependencies": { + "posthtml-parser": "^0.11.0", + "posthtml-render": "^3.0.0" + }, + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/posthtml-parser": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/posthtml-parser/-/posthtml-parser-0.11.0.tgz", + "integrity": "sha512-QecJtfLekJbWVo/dMAA+OSwY79wpRmbqS5TeXvXSX+f0c6pW4/SE6inzZ2qkU7oAMCPqIDkZDvd/bQsSFUnKyw==", + "dev": true, + "dependencies": { + "htmlparser2": "^7.1.1" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/posthtml-render": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/posthtml-render/-/posthtml-render-3.0.0.tgz", + "integrity": "sha512-z+16RoxK3fUPgwaIgH9NGnK1HKY9XIDpydky5eQGgAFVXTCSezalv9U2jQuNV+Z9qV1fDWNzldcw4eK0SSbqKA==", + "dev": true, + "dependencies": { + "is-json": "^2.0.1" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/posthtml-urls": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/posthtml-urls/-/posthtml-urls-1.0.0.tgz", + "integrity": "sha512-CMJ0L009sGQVUuYM/g6WJdscsq6ooAwhUuF6CDlYPMLxKp2rmCYVebEU+wZGxnQstGJhZPMvXsRhtqekILd5/w==", + "dev": true, + "dependencies": { + "http-equiv-refresh": "^1.0.0", + "list-to-array": "^1.1.0", + "parse-srcset": "^1.0.2", + "promise-each": "^2.2.0" + }, + "engines": { + "node": ">= 4" + } + }, + "node_modules/promise": { + "version": "7.3.1", + "resolved": "https://registry.npmjs.org/promise/-/promise-7.3.1.tgz", + "integrity": "sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==", + "dev": true, + "dependencies": { + "asap": "~2.0.3" + } + }, + "node_modules/promise-each": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/promise-each/-/promise-each-2.2.0.tgz", + "integrity": "sha512-67roqt1k3QDA41DZ8xi0V+rF3GoaMiX7QilbXu0vXimut+9RcKBNZ/t60xCRgcsihmNUsEjh48xLfNqOrKblUg==", + "dev": true, + "dependencies": { + "any-promise": "^0.1.0" + } + }, + "node_modules/prr": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/prr/-/prr-1.0.1.tgz", + "integrity": "sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==", + "dev": true + }, + "node_modules/pug": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/pug/-/pug-3.0.2.tgz", + "integrity": "sha512-bp0I/hiK1D1vChHh6EfDxtndHji55XP/ZJKwsRqrz6lRia6ZC2OZbdAymlxdVFwd1L70ebrVJw4/eZ79skrIaw==", + "dev": true, + "dependencies": { + "pug-code-gen": "^3.0.2", + "pug-filters": "^4.0.0", + "pug-lexer": "^5.0.1", + "pug-linker": "^4.0.0", + "pug-load": "^3.0.0", + "pug-parser": "^6.0.0", + "pug-runtime": "^3.0.1", + "pug-strip-comments": "^2.0.0" + } + }, + "node_modules/pug-attrs": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pug-attrs/-/pug-attrs-3.0.0.tgz", + "integrity": "sha512-azINV9dUtzPMFQktvTXciNAfAuVh/L/JCl0vtPCwvOA21uZrC08K/UnmrL+SXGEVc1FwzjW62+xw5S/uaLj6cA==", + "dev": true, + "dependencies": { + "constantinople": "^4.0.1", + "js-stringify": "^1.0.2", + "pug-runtime": "^3.0.0" + } + }, + "node_modules/pug-code-gen": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/pug-code-gen/-/pug-code-gen-3.0.2.tgz", + "integrity": "sha512-nJMhW16MbiGRiyR4miDTQMRWDgKplnHyeLvioEJYbk1RsPI3FuA3saEP8uwnTb2nTJEKBU90NFVWJBk4OU5qyg==", + "dev": true, + "dependencies": { + "constantinople": "^4.0.1", + "doctypes": "^1.1.0", + "js-stringify": "^1.0.2", + "pug-attrs": "^3.0.0", + "pug-error": "^2.0.0", + "pug-runtime": "^3.0.0", + "void-elements": "^3.1.0", + "with": "^7.0.0" + } + }, + "node_modules/pug-error": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/pug-error/-/pug-error-2.0.0.tgz", + "integrity": "sha512-sjiUsi9M4RAGHktC1drQfCr5C5eriu24Lfbt4s+7SykztEOwVZtbFk1RRq0tzLxcMxMYTBR+zMQaG07J/btayQ==", + "dev": true + }, + "node_modules/pug-filters": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/pug-filters/-/pug-filters-4.0.0.tgz", + "integrity": "sha512-yeNFtq5Yxmfz0f9z2rMXGw/8/4i1cCFecw/Q7+D0V2DdtII5UvqE12VaZ2AY7ri6o5RNXiweGH79OCq+2RQU4A==", + "dev": true, + "dependencies": { + "constantinople": "^4.0.1", + "jstransformer": "1.0.0", + "pug-error": "^2.0.0", + "pug-walk": "^2.0.0", + "resolve": "^1.15.1" + } + }, + "node_modules/pug-lexer": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/pug-lexer/-/pug-lexer-5.0.1.tgz", + "integrity": "sha512-0I6C62+keXlZPZkOJeVam9aBLVP2EnbeDw3An+k0/QlqdwH6rv8284nko14Na7c0TtqtogfWXcRoFE4O4Ff20w==", + "dev": true, + "dependencies": { + "character-parser": "^2.2.0", + "is-expression": "^4.0.0", + "pug-error": "^2.0.0" + } + }, + "node_modules/pug-linker": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/pug-linker/-/pug-linker-4.0.0.tgz", + "integrity": "sha512-gjD1yzp0yxbQqnzBAdlhbgoJL5qIFJw78juN1NpTLt/mfPJ5VgC4BvkoD3G23qKzJtIIXBbcCt6FioLSFLOHdw==", + "dev": true, + "dependencies": { + "pug-error": "^2.0.0", + "pug-walk": "^2.0.0" + } + }, + "node_modules/pug-load": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pug-load/-/pug-load-3.0.0.tgz", + "integrity": "sha512-OCjTEnhLWZBvS4zni/WUMjH2YSUosnsmjGBB1An7CsKQarYSWQ0GCVyd4eQPMFJqZ8w9xgs01QdiZXKVjk92EQ==", + "dev": true, + "dependencies": { + "object-assign": "^4.1.1", + "pug-walk": "^2.0.0" + } + }, + "node_modules/pug-parser": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/pug-parser/-/pug-parser-6.0.0.tgz", + "integrity": "sha512-ukiYM/9cH6Cml+AOl5kETtM9NR3WulyVP2y4HOU45DyMim1IeP/OOiyEWRr6qk5I5klpsBnbuHpwKmTx6WURnw==", + "dev": true, + "dependencies": { + "pug-error": "^2.0.0", + "token-stream": "1.0.0" + } + }, + "node_modules/pug-runtime": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/pug-runtime/-/pug-runtime-3.0.1.tgz", + "integrity": "sha512-L50zbvrQ35TkpHwv0G6aLSuueDRwc/97XdY8kL3tOT0FmhgG7UypU3VztfV/LATAvmUfYi4wNxSajhSAeNN+Kg==", + "dev": true + }, + "node_modules/pug-strip-comments": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/pug-strip-comments/-/pug-strip-comments-2.0.0.tgz", + "integrity": "sha512-zo8DsDpH7eTkPHCXFeAk1xZXJbyoTfdPlNR0bK7rpOMuhBYb0f5qUVCO1xlsitYd3w5FQTK7zpNVKb3rZoUrrQ==", + "dev": true, + "dependencies": { + "pug-error": "^2.0.0" + } + }, + "node_modules/pug-walk": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/pug-walk/-/pug-walk-2.0.0.tgz", + "integrity": "sha512-yYELe9Q5q9IQhuvqsZNwA5hfPkMJ8u92bQLIMcsMxf/VADjNtEYptU+inlufAFYcWdHlwNfZOEnOOQrZrcyJCQ==", + "dev": true + }, + "node_modules/queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "dev": true, + "dependencies": { + "picomatch": "^2.2.1" + }, + "engines": { + "node": ">=8.10.0" + } + }, + "node_modules/recursive-copy": { + "version": "2.0.14", + "resolved": "https://registry.npmjs.org/recursive-copy/-/recursive-copy-2.0.14.tgz", + "integrity": "sha512-K8WNY8f8naTpfbA+RaXmkaQuD1IeW9EgNEfyGxSqqTQukpVtoOKros9jUqbpEsSw59YOmpd8nCBgtqJZy5nvog==", + "dev": true, + "dependencies": { + "errno": "^0.1.2", + "graceful-fs": "^4.1.4", + "junk": "^1.0.1", + "maximatch": "^0.1.0", + "mkdirp": "^0.5.1", + "pify": "^2.3.0", + "promise": "^7.0.1", + "rimraf": "^2.7.1", + "slash": "^1.0.0" + } + }, + "node_modules/resolve": { + "version": "1.22.8", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", + "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", + "dev": true, + "dependencies": { + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/reusify": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "dev": true, + "engines": { + "iojs": ">=1.0.0", + "node": ">=0.10.0" + } + }, + "node_modules/rimraf": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", + "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "dev": true, + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + } + }, + "node_modules/run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "dependencies": { + "queue-microtask": "^1.2.2" + } + }, + "node_modules/section-matter": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/section-matter/-/section-matter-1.0.0.tgz", + "integrity": "sha512-vfD3pmTzGpufjScBh50YHKzEu2lxBWhVEHsNGoEXmCmn2hKGfeNLYMzCJpe8cD7gqX7TJluOVpBkAequ6dgMmA==", + "dev": true, + "dependencies": { + "extend-shallow": "^2.0.1", + "kind-of": "^6.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/semver": { + "version": "7.6.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.0.tgz", + "integrity": "sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/semver-compare": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/semver-compare/-/semver-compare-1.0.0.tgz", + "integrity": "sha512-YM3/ITh2MJ5MtzaM429anh+x2jiLVjqILF4m4oyQB18W7Ggea7BfqdH/wGMK7dDiMghv/6WG7znWMwUDzJiXow==", + "dev": true + }, + "node_modules/set-function-length": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz", + "integrity": "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==", + "dev": true, + "dependencies": { + "define-data-property": "^1.1.4", + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.4", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/slash": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-1.0.0.tgz", + "integrity": "sha512-3TYDR7xWt4dIqV2JauJr+EJeW356RXijHeUlO+8djJ+uBXPn8/2dpzBc8yQhh583sVvc9CvFAeQVgijsH+PNNg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/slugify": { + "version": "1.6.6", + "resolved": "https://registry.npmjs.org/slugify/-/slugify-1.6.6.tgz", + "integrity": "sha512-h+z7HKHYXj6wJU+AnS/+IH8Uh9fdcX1Lrhg1/VMdf9PwoBQXFcXiAdsy2tSK0P6gKwJLXp02r90ahUCqHk9rrw==", + "dev": true, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==", + "dev": true + }, + "node_modules/ssri": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/ssri/-/ssri-8.0.1.tgz", + "integrity": "sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ==", + "dev": true, + "dependencies": { + "minipass": "^3.1.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/statuses": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", + "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/strip-bom-string": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/strip-bom-string/-/strip-bom-string-1.0.0.tgz", + "integrity": "sha512-uCC2VHvQRYu+lMh4My/sFNmF2klFymLX1wHJeXnbEJERpV/ZsVuonzerjfrGpIGF7LBVa1O7i9kjiWvJiFck8g==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/to-fast-properties": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", + "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/token-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/token-stream/-/token-stream-1.0.0.tgz", + "integrity": "sha512-VSsyNPPW74RpHwR8Fc21uubwHY7wMDeJLys2IX5zJNih+OnAnaifKHo+1LHT7DAdloQ7apeaaWg8l7qnf/TnEg==", + "dev": true + }, + "node_modules/uc.micro": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/uc.micro/-/uc.micro-1.0.6.tgz", + "integrity": "sha512-8Y75pvTYkLJW2hWQHXxoqRgV7qb9B+9vFEtidML+7koHUFapnVJAZ6cKs+Qjz5Aw3aZWHMC6u0wJE3At+nSGwA==", + "dev": true + }, + "node_modules/uglify-js": { + "version": "3.17.4", + "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.17.4.tgz", + "integrity": "sha512-T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g==", + "dev": true, + "optional": true, + "bin": { + "uglifyjs": "bin/uglifyjs" + }, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/unpipe": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", + "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/void-elements": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/void-elements/-/void-elements-3.1.0.tgz", + "integrity": "sha512-Dhxzh5HZuiHQhbvTW9AMetFfBHDMYpo23Uo9btPXgdYP+3T5S+p+jgNy7spra+veYhBP2dCSgxR/i2Y02h5/6w==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/with": { + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/with/-/with-7.0.2.tgz", + "integrity": "sha512-RNGKj82nUPg3g5ygxkQl0R937xLyho1J24ItRCBTr/m1YnZkzJy1hUiHUJrc/VlsDQzsCnInEGSg3bci0Lmd4w==", + "dev": true, + "dependencies": { + "@babel/parser": "^7.9.6", + "@babel/types": "^7.9.6", + "assert-never": "^1.2.1", + "babel-walk": "3.0.0-canary-5" + }, + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/wordwrap": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz", + "integrity": "sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==", + "dev": true + }, + "node_modules/wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", + "dev": true + }, + "node_modules/ws": { + "version": "8.16.0", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.16.0.tgz", + "integrity": "sha512-HS0c//TP7Ina87TfiPUz1rQzMhHrl/SG2guqRcTOIUYD2q8uhUdNHZYJUaQ8aTGPzCh+c6oawMKW35nFl1dxyQ==", + "dev": true, + "engines": { + "node": ">=10.0.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": ">=5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } + } + }, + "node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + } + } +} diff --git a/package.json b/package.json new file mode 100644 index 0000000..d1b6db3 --- /dev/null +++ b/package.json @@ -0,0 +1,38 @@ +{ + "name": "@cdransf/eleventy-tabler-icons-filled", + "version": "1.0.0", + "description": "Shortcodes to add filled Tabler icons to your Eleventy projects", + "main": "tablericons.js", + "files": [ + "tablericons.js", + "icons.js" + ], + "scripts": { + "build": "node build.js", + "postversion": "git push && git push --tags" + }, + "keywords": [ + "eleventy-plugin", + "eleventy", + "plugin", + "tabler-icons" + ], + "author": { + "email": "coryd@hey.com", + "name": "Cory Dransfeldt", + "url": "https://coryd.dev" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/cdransf/eleventy-tabler-icons-filled.git" + }, + "homepage": "https://github.com/cdransf/eleventy-tabler-icons-filled#readme", + "bugs": { + "url": "https://github.com/cdransf/eleventy-tabler-icons-filled/issues" + }, + "license": "MIT", + "devDependencies": { + "@11ty/eleventy": "^2.0.1", + "@tabler/icons": "^3.0.1" + } +} diff --git a/tablericons.js b/tablericons.js new file mode 100644 index 0000000..e97fc4a --- /dev/null +++ b/tablericons.js @@ -0,0 +1,55 @@ +const ICONS = require("./icons"); + +const initialConfig = { + className: "", + errorOnMissing: false, +}; + +module.exports = function tablericons(eleventyConfig, config = initialConfig) { + function tablericons(context = this, name, alt) { + const contents = ICONS[name]; + if (!contents) { + const message = `No tablericons found for name "${name}"`; + if (config.errorOnMissing) { + throw new Error(message); + } else { + console.warn(message + ` in ${context.page.inputPath}`); + return ""; + } + } + + if (!contents) return ""; + + return `${head(alt, config.className, name)}${contents}${ + ICONS.TAIL + }`; + } + + eleventyConfig.addShortcode("tablericon", function (name, alt, attrs) { + return tablericons(this, name, alt, attrs); + }); +}; + +function head(alt, className, iconName, attrs) { + let output = ICONS.HEAD.slice(0, -1); // Open tag + if (!alt) output += ` aria-hidden="true"`; + if (className) output += ` class="${className}"`; + output += ` data-tablericon-name="${iconName}"`; + + if (attrs) { + if (typeof attrs === "string") { + output += ` ${attrs}`; + } else { + Object.entries(attrs).forEach(([property, value]) => { + if (property && value) { + output += ` ${property}="${value}"`; + } + }); + } + } + + output += ">"; // Close tag + if (alt) output += `${alt}`; + + return output; +}