Compare changes

Choose any two refs to compare.

+22
.achecker.yml
···
+
ruleArchive: latest
+
policies:
+
- IBM_Accessibility_next
+
- WCAG_2_2
+
+
failLevels:
+
- violation
+
- potentialviolation
+
+
reportLevels:
+
- violation
+
- potentialviolation
+
- recommendation
+
- potenticalrecommendation
+
+
outputFormat:
+
- json
+
+
outputFilenameTimestamp: true
+
outputFolder: accessibility-results/
+
baselineFolder: test/baselines
+
cacheFolder: /tmp/accessibility-checker
+46
.codebook.toml
···
+
dictionaries = ["en_us"]
+
words = [
+
"apos",
+
"artifacting",
+
"boba",
+
"ctp",
+
"deno",
+
"dprint",
+
"drm",
+
"fatales",
+
"femmes",
+
"framefatales",
+
"gazzew",
+
"gdq",
+
"gooden",
+
"hlc",
+
"lightningcss",
+
"logitech",
+
"lume",
+
"metas",
+
"mousepads",
+
"nolebase",
+
"nonbinary",
+
"nwlc",
+
"overcomplicate",
+
"pagefind",
+
"plex",
+
"purgecss",
+
"qnot",
+
"repairability",
+
"rss",
+
"sindresorhus",
+
"speedrunner",
+
"speedrunning",
+
"tanc",
+
"theturnsignalblog",
+
"theyre",
+
"tldr",
+
"touchpads",
+
"vto",
+
"youre",
+
]
+
flag_words = []
+
ignore_paths = []
+
ignore_patterns = []
+
use_global = true
+3 -1
.env.dev
···
export LUME_DRAFTS="true"
-
export BROTLI_LEVEL=6
+
export PRODUCTION="false"
+
PUPPETEER_BROWSER=chrome-headless-shell
+
export PUPPETEER_EXECUTABLE_PATH=$PWD/temp.sh
+1 -1
.env.prod
···
export LUME_DRAFTS="false"
-
export BROTLI_LEVEL=11
+
export PRODUCTION="true"
+1 -3
.forgejo/workflows/deploy.yaml
···
steps:
- name: Checkout Repo
uses: https://code.forgejo.org/actions/checkout@v4
-
with:
-
submodules: true
- name: Run Lume Build
-
run: nix run nixpkgs#deno -- task prod
+
run: nix run . --impure -- task prod
- name: Deploy
uses: https://git.pyrox.dev/actions/pages-action@v3
+2
.gitignore
···
_cache
.direnv/bin
.direnv
+
accessibility-results/
+
temp.sh
+19
.tangled/workflows/deploy.yaml
···
+
when:
+
- event: ["push"]
+
branch: ["main"]
+
- event: ["manual"]
+
+
dependencies:
+
## from nixpkgs
+
nixpkgs:
+
- nodejs
+
- git
+
steps:
+
- name: "Set up SSH Key"
+
command: "mkdir .ssh ; echo $SSH_KEY > .ssh/id_ed25519"
+
+
- name: "Config Git"
+
command: "git config core.sshCommand 'ssh -i ~/.ssh/id_ed25519'"
+
+
- name: "Deploy"
+
command: "./deploy.sh"
+1 -1
.zed/tasks.json
···
},
{
"label": "render to _site",
-
"command": "just build",
+
"command": "deno task prod",
"use_new_terminal": true,
"allow_concurrent_runs": false,
"reveal": "always",
+14 -4
TODO.md
···
- CI Checks
- Performance, Accessibility, Best Practices, and SEO with
[lighthouse-ci](https://github.com/GoogleChrome/lighthouse-ci/blob/main/docs/getting-started.md)
-
- HTML, CSS, and JS validation
-
- [x] [HTML-Validate](https://html-validate.org/)
-
- [csstree-validator](https://www.npmjs.com/package/csstree-validator)
- Grammar checking for source files(including inclusive language, spell checking, and other basic
checks)
- Checking for valid [Microformats](https://microformats.org/wiki/Main_Page) data on all pages
that have it
-
- Webrings!
+
- Accessibility checking plugin using the
+
[IBM Equal Access Toolkit](https://github.com/IBMa/equal-access)
- Site Search with Lume's built-in [Pagefind plugin](https://lume.land/plugins/pagefind/)
- OpenGraph preview images, again using the built-in
[OG Images Plugin](https://lume.land/plugins/og_images/)
- Possibly
[Structured Data](https://developers.google.com/search/docs/appearance/structured-data/intro-structured-data)
- Slideshow mode for articles that are presented
+
+
Done:
+
+
- [x] HTML and CSS validation
+
- [x] [HTML-Validate](https://html-validate.org/)
+
- [validateHTML.ts](./plugins/validateHTML.ts)
+
- [x] [csstree-validator](https://www.npmjs.com/package/csstree-validator)
+
- [validateCSS.ts](./plugins/validateCSS.ts)
+
- Note: Does not work lmao
+
- [x] Webrings!
+
- [Webring Component](./src/_components/webring.vto)
+
- [Webring Data](./src/_data/webrings.toml)
+90 -70
_config.ts
···
import lume from "lume/mod.ts";
import date from "lume/plugins/date.ts";
-
import picture from "lume/plugins/picture.ts";
-
import source_maps from "lume/plugins/source_maps.ts";
import toml from "lume/plugins/toml.ts";
+
// Images
+
import picture from "lume/plugins/picture.ts";
+
import transformImages from "lume/plugins/transform_images.ts";
+
// URL Management
-
import relations from "lume/plugins/relations.ts";
-
import slugify_urls from "lume/plugins/slugify_urls.ts";
+
import slugifyUrls from "lume/plugins/slugify_urls.ts";
import resolveUrls from "lume/plugins/resolve_urls.ts";
// File Generation
import feed from "lume/plugins/feed.ts";
import metas from "lume/plugins/metas.ts";
+
import readingInfo from "lume/plugins/reading_info.ts";
import robots from "lume/plugins/robots.ts";
import sitemap from "lume/plugins/sitemap.ts";
+
import sourceMaps from "lume/plugins/source_maps.ts";
// Optimization
import brotli from "lume/plugins/brotli.ts";
import gzip from "lume/plugins/gzip.ts";
-
import minify_html from "lume/plugins/minify_html.ts";
+
import minifyHTML from "lume/plugins/minify_html.ts";
import svgo from "lume/plugins/svgo.ts";
-
import transform_images from "lume/plugins/transform_images.ts";
// Markdown-it plugins
-
import { BiDirectionalLinks } from "npm:@nolebase/markdown-it-bi-directional-links";
-
import { default as mdItObsidianCallouts } from "npm:markdown-it-obsidian-callouts";
+
import { BiDirectionalLinks } from "@nolebase/markdown-it-bi-directional-links";
+
import { default as mdItObsidianCallouts } from "markdown-it-obsidian-callouts";
// Additional external plugins
-
import toc from "https://deno.land/x/lume_markdown_plugins@v0.8.0/toc.ts";
+
import toc from "lume_markdown_plugins/toc.ts";
+
import slugify from "npm:@sindresorhus/slugify";
// CSS
// // Base dependencies
···
// // Optimization
import lightningcss from "lume/plugins/lightningcss.ts";
-
// Validation
+
// Custom Plugins
import validateHTML from "./plugins/validateHTML.ts";
+
import openInEditor from "./plugins/openInEditor.ts";
+
import footnotes from "./plugins/footnotes.ts";
+
// import checkAccessibility from "./plugins/checkAccessibility.ts";
// Disabled Plugins:
+
// import nav from "lume/plugins/nav.ts";
// import og_images from "lume/plugins/og_images.ts";
// import pagefind from "lume/plugins/pagefind.ts";
// import purgecss from "lume/plugins/purgecss.ts";
+
// import relations from "lume/plugins/relations.ts";
// import sri from "lume/plugins/sri.ts";
-
// import nav from "lume/plugins/nav.ts";
-
// import { default as md_linenums } from "npm:markdown-it-inject-linenumbers@0.3.0";
// To Add:
-
// https://deno.land/x/lume_markdown_plugins@v0.8.0 (footnotes plugins)
// https://deno.land/x/lume_shiki@0.0.16
+
const markdown = {
+
plugins: [
+
BiDirectionalLinks({
+
dir: Deno.cwd() + "/src/",
+
stillRenderNoMatched: false,
+
debug: false,
+
}),
+
mdItObsidianCallouts,
+
footnotes,
+
],
+
};
+
const site = lume({
src: "./src",
location: new URL("https://pyrox.dev"),
-
});
-
-
// site.hooks.addMarkdownItPlugin(md_linenums, {});
-
site.hooks.addMarkdownItPlugin(BiDirectionalLinks({
-
dir: Deno.cwd() + "/src/",
-
stillRenderNoMatched: false,
-
}));
-
site.hooks.addMarkdownItPlugin(mdItObsidianCallouts, {
-
icons: {
-
abstract: '<i class="bi bi-clipboard2-data"></i>',
-
bug: '<i class="bi bi-bug"></i>',
-
danger: '<i class="bi bi-lightning"></i>',
-
example: '<i class="bi bi-list-ul"></i>',
-
failure: '<i class="bi bi-x-lg"></i>',
-
info: '<i class="bi bi-info-circle"></i>',
-
note: '<i class="bi bi-pencil"></i>',
-
question: '<i class="bi bi-question-circle"></i>',
-
quote: '<i class="bi bi-quote"></i>',
-
success: '<i class="bi bi-check2"></i>',
-
tip: '<i class="bi bi-fire"></i>',
-
todo: '<i class="bi bi-check-circle"></i>',
-
warning: '<i class="bi bi-exclamation-triangle"></i>',
-
},
-
});
+
cssFile: "/styles.css",
+
}, { markdown });
+
// Ensure all URLs are to the final page links
+
site.use(resolveUrls());
// Copy Static Files
-
site.add(".css");
+
// site.ignore("/static/mocha.css");
site.add("static/.well-known", ".well-known");
-
site.add(".woff2");
-
// Tailwind CSS
-
site.use(tailwindcss());
// Fonts
site.use(
googleFonts({
subsets: ["latin", "latin-ext"],
-
folder: "/static/fonts/",
-
cssFile: "/static/fonts.css",
+
fontsFolder: "/static/fonts/",
fonts:
"https://fonts.googleapis.com/css2?family=IBM+Plex+Serif:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900",
}),
);
-
site.use(metas());
+
// Tailwind CSS
+
site.use(tailwindcss());
+
site.use(lightningcss({
+
options: {
+
minify: true,
+
},
+
}));
+
site.add([".css", ".woff2"]);
+
+
// Source Map Generation
+
// Applies to CSS and JS
+
site.use(sourceMaps());
+
+
site.use(slugifyUrls());
site.use(picture());
-
site.use(transform_images());
-
site.use(relations());
-
site.use(sitemap());
-
site.use(slugify_urls());
+
site.use(transformImages());
+
site.add([".png"]);
+
// site.use(relations());
site.use(svgo());
site.use(toml());
+
+
// Metadata
site.use(
date({
formats: {
···
},
}),
);
-
site.use(toc());
-
site.use(resolveUrls());
+
site.use(metas());
+
site.use(readingInfo({
+
// Number taken from:
+
// https://reader.ku.edu/sites/reader/files/2024-01/How%20many%20words%20do%20we%20read%20per%20minute%20(1).pdf
+
wordsPerMinute: 238,
+
}));
+
site.use(toc({
+
slugify: (s: string) => slugify(s),
+
}));
// RSS/JSON Feed Generation
site.use(
···
);
// CSS postprocessing
-
// site.use(purgecss());
-
site.use(lightningcss({
-
options: {
-
minify: true,
-
bundle: false,
-
},
-
}));
-
-
// Source Map Generation
-
// Applies to CSS and JS
-
site.use(source_maps());
+
site.use(sitemap());
+
// site.use(checkAccessibility());
site.use(validateHTML());
-
// Minify HTML Output
-
site.use(minify_html({
-
options: {
-
keep_html_and_head_opening_tags: true,
-
keep_spaces_between_attributes: true,
-
},
-
}));
+
site.data("production", Deno.env.get("PRODUCTION") == "true");
+
// This only applies in dev mode
+
if (Deno.env.get("PRODUCTION") == "false") {
+
site.use(openInEditor());
+
site.add("static/scripts/open-in-editor.js");
+
site.add("static/scripts/highlight-accessibility.js");
+
}
+
+
// This only applies in prod mode
+
if (Deno.env.get("PRODUCTION") == "true") {
+
// Minify HTML
+
site.use(minifyHTML({
+
options: {
+
do_not_minify_doctype: true,
+
keep_closing_tags: false,
+
keep_html_and_head_opening_tags: true,
+
keep_spaces_between_attributes: true,
+
ensure_spec_compliant_unquoted_attribute_values: true,
+
keep_comments: false,
+
},
+
}));
+
}
// robots.txt generation
site.use(
···
// Compress everything with Brotli/Gzip
site.use(
brotli({
-
quality: Deno.env.get("BROTLI_LEVEL"),
+
quality: 11,
extensions: [
".html",
".css",
···
}),
);
+
// Open in Editor in Dev mode
// Get current commit as a version number
// Taken from https://github.com/pixeldesu/pixelde.su/blob/main/_config.ts
-
// Associated usage in src/_includes/components/footer.vto also from the above repo
const commitCmd = new Deno.Command("git", { args: ["rev-parse", "HEAD"] });
const { stdout } = await commitCmd.output();
const commitHash = new TextDecoder().decode(stdout);
+18 -9
deno.json
···
{
"imports": {
-
"@catppuccin/tailwindcss": "npm:@catppuccin/tailwindcss@^0.1.6",
-
"@img/sharp-wasm32": "npm:@img/sharp-wasm32@0.33.5",
-
"@nolebase/markdown-it-bi-directional-links": "npm:@nolebase/markdown-it-bi-directional-links@^2.14.0",
-
"lume/": "https://cdn.jsdelivr.net/gh/lumeland/lume@f6e8b76726f84055e7d56f201bad44ab4162ed9c/",
-
"markdown-it-obsidian-callouts": "npm:markdown-it-obsidian-callouts@^0.3.1",
-
"sharp": "npm:sharp@0.33.5",
-
"html-validate": "npm:html-validate@9.4.0"
+
"@nolebase/markdown-it-bi-directional-links": "npm:@nolebase/markdown-it-bi-directional-links@^2.18.0",
+
"accessibility-checker": "npm:accessibility-checker@^4.0.6",
+
"lume/": "https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/",
+
"markdown-it-obsidian-callouts": "https://deno.land/x/markdown_it_obsidian_callouts_lite@0.4.1/src/index.ts",
+
"html-validate": "npm:html-validate@9.7.1",
+
"lume_markdown_plugins/": "https://deno.land/x/lume_markdown_plugins@v0.8.0/",
+
"sharp": "npm:sharp@0.34.3",
+
"lume/jsx-runtime": "https://deno.land/x/ssx@v0.1.10/jsx-runtime.ts"
},
"tasks": {
-
"lume": "echo \"import 'lume/cli.ts'\" | deno run --env-file=.env.dev -A -",
+
"lume": "echo \"import 'lume/cli.ts'\" | deno run --env-file=.env.dev --unstable-ffi --unstable-detect-cjs -A -",
"prod": "echo \"import 'lume/cli.ts'\" | deno run --env-file=.env.prod -A -",
"build": "deno task lume",
"serve": "deno task lume -s ",
···
"dprint": "deno run -A npm:dprint"
},
"compilerOptions": {
-
"types": ["lume/types.ts"]
+
"types": ["lume/types.ts"],
+
"jsx": "react-jsx",
+
"jsxImportSource": "lume"
},
"nodeModulesDir": "auto",
"fmt": {
···
"scripts/*/src/",
"src/static/icons/*.css",
"src/static/styles.css"
+
]
+
},
+
"unstable": ["temporal", "fmt-component"],
+
"lint": {
+
"plugins": [
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/lint.ts"
]
}
}
+2445 -1559
deno.lock
···
"version": "4",
"specifiers": {
"jsr:@davidbonnet/astring@1.8.6": "1.8.6",
-
"jsr:@hono/hono@4.6.16": "4.6.16",
+
"jsr:@luca/esbuild-deno-loader@0.11.1": "0.11.1",
+
"jsr:@minify-html/deno@0.16.4": "0.16.4",
+
"jsr:@std/bytes@^1.0.2": "1.0.5",
"jsr:@std/bytes@^1.0.5": "1.0.5",
-
"jsr:@std/cli@1.0.11": "1.0.11",
-
"jsr:@std/cli@1.0.12": "1.0.12",
-
"jsr:@std/cli@1.0.13": "1.0.13",
-
"jsr:@std/cli@^1.0.12": "1.0.13",
-
"jsr:@std/cli@^1.0.8": "1.0.11",
-
"jsr:@std/collections@^1.0.9": "1.0.10",
-
"jsr:@std/crypto@1.0.3": "1.0.3",
+
"jsr:@std/bytes@^1.0.6": "1.0.6",
+
"jsr:@std/cli@1.0.16": "1.0.16",
+
"jsr:@std/cli@1.0.20": "1.0.20",
+
"jsr:@std/cli@^1.0.16": "1.0.16",
+
"jsr:@std/cli@^1.0.20": "1.0.20",
+
"jsr:@std/collections@^1.0.10": "1.0.10",
+
"jsr:@std/collections@^1.1.1": "1.1.2",
"jsr:@std/crypto@1.0.4": "1.0.4",
-
"jsr:@std/encoding@1.0.6": "1.0.6",
-
"jsr:@std/encoding@1.0.7": "1.0.7",
-
"jsr:@std/encoding@^1.0.5": "1.0.6",
-
"jsr:@std/encoding@^1.0.7": "1.0.7",
-
"jsr:@std/fmt@1.0.4": "1.0.4",
-
"jsr:@std/fmt@1.0.5": "1.0.5",
-
"jsr:@std/fmt@^1.0.3": "1.0.4",
-
"jsr:@std/fmt@^1.0.4": "1.0.4",
-
"jsr:@std/fmt@^1.0.5": "1.0.5",
-
"jsr:@std/front-matter@1.0.5": "1.0.5",
-
"jsr:@std/front-matter@1.0.7": "1.0.7",
-
"jsr:@std/fs@1.0.10": "1.0.10",
-
"jsr:@std/fs@1.0.11": "1.0.11",
-
"jsr:@std/fs@1.0.13": "1.0.13",
-
"jsr:@std/fs@1.0.9": "1.0.9",
-
"jsr:@std/fs@^1.0.11": "1.0.13",
-
"jsr:@std/fs@^1.0.9": "1.0.10",
+
"jsr:@std/crypto@1.0.5": "1.0.5",
+
"jsr:@std/encoding@1.0.10": "1.0.10",
+
"jsr:@std/encoding@1.0.9": "1.0.9",
+
"jsr:@std/encoding@^1.0.10": "1.0.10",
+
"jsr:@std/encoding@^1.0.5": "1.0.9",
+
"jsr:@std/encoding@^1.0.9": "1.0.9",
+
"jsr:@std/fmt@1.0.6": "1.0.6",
+
"jsr:@std/fmt@1.0.8": "1.0.8",
+
"jsr:@std/fmt@^1.0.6": "1.0.6",
+
"jsr:@std/fmt@^1.0.8": "1.0.8",
+
"jsr:@std/front-matter@1.0.9": "1.0.9",
+
"jsr:@std/fs@1.0.16": "1.0.16",
+
"jsr:@std/fs@1.0.19": "1.0.19",
+
"jsr:@std/fs@^1.0.19": "1.0.19",
"jsr:@std/html@1.0.3": "1.0.3",
"jsr:@std/html@^1.0.3": "1.0.3",
-
"jsr:@std/http@1.0.12": "1.0.12",
-
"jsr:@std/http@1.0.13": "1.0.13",
-
"jsr:@std/io@0.225": "0.225.2",
-
"jsr:@std/io@~0.225.2": "0.225.2",
+
"jsr:@std/html@^1.0.4": "1.0.4",
+
"jsr:@std/http@1.0.14": "1.0.14",
+
"jsr:@std/http@1.0.19": "1.0.19",
+
"jsr:@std/internal@^1.0.9": "1.0.9",
"jsr:@std/json@1": "1.0.1",
+
"jsr:@std/json@^1.0.2": "1.0.2",
"jsr:@std/jsonc@1.0.1": "1.0.1",
-
"jsr:@std/log@0.224.13": "0.224.13",
-
"jsr:@std/log@0.224.14": "0.224.14",
+
"jsr:@std/jsonc@1.0.2": "1.0.2",
"jsr:@std/media-types@1.1.0": "1.1.0",
"jsr:@std/media-types@^1.1.0": "1.1.0",
"jsr:@std/net@^1.0.4": "1.0.4",
"jsr:@std/path@1.0.8": "1.0.8",
+
"jsr:@std/path@1.1.1": "1.1.1",
+
"jsr:@std/path@^1.0.6": "1.0.8",
"jsr:@std/path@^1.0.8": "1.0.8",
+
"jsr:@std/path@^1.1.1": "1.1.1",
+
"jsr:@std/streams@1.0.10": "1.0.10",
"jsr:@std/streams@1.0.9": "1.0.9",
-
"jsr:@std/streams@^1.0.8": "1.0.9",
+
"jsr:@std/streams@^1.0.10": "1.0.10",
"jsr:@std/streams@^1.0.9": "1.0.9",
-
"jsr:@std/tar@0.1.4": "0.1.4",
-
"jsr:@std/toml@1.0.2": "1.0.2",
-
"jsr:@std/toml@^1.0.1": "1.0.2",
-
"jsr:@std/toml@^1.0.2": "1.0.2",
+
"jsr:@std/toml@1.0.4": "1.0.4",
+
"jsr:@std/toml@1.0.8": "1.0.8",
+
"jsr:@std/toml@^1.0.3": "1.0.4",
"jsr:@std/yaml@1.0.5": "1.0.5",
+
"jsr:@std/yaml@1.0.8": "1.0.8",
"jsr:@std/yaml@^1.0.5": "1.0.5",
-
"npm:@catppuccin/tailwindcss@*": "0.1.6_tailwindcss@3.4.17__postcss@8.5.1",
-
"npm:@catppuccin/tailwindcss@~0.1.6": "0.1.6_tailwindcss@3.4.17__postcss@8.5.1",
-
"npm:@imagemagick/magick-wasm@0.0.31": "0.0.31",
-
"npm:@img/sharp-wasm32@0.33.5": "0.33.5",
-
"npm:@js-temporal/polyfill@0.4.4": "0.4.4",
-
"npm:@nolebase/markdown-it-bi-directional-links@*": "2.14.0_markdown-it@14.1.0",
-
"npm:@nolebase/markdown-it-bi-directional-links@^2.14.0": "2.14.0_markdown-it@14.1.0",
+
"npm:@nolebase/markdown-it-bi-directional-links@^2.18.0": "2.18.0_markdown-it@14.1.0",
+
"npm:@sindresorhus/slugify@*": "2.2.1",
+
"npm:@tailwindcss/node@4.1.11": "4.1.11",
"npm:@tailwindcss/oxide@4.0.3": "4.0.3",
-
"npm:@tailwindcss/oxide@4.0.6": "4.0.6",
+
"npm:@tailwindcss/oxide@4.1.11": "4.1.11",
+
"npm:@tailwindcss/oxide@4.1.4": "4.1.4",
"npm:@types/estree@1.0.6": "1.0.6",
-
"npm:autoprefixer@10.4.20": "10.4.20_postcss@8.5.1",
+
"npm:@types/node@*": "22.12.0",
+
"npm:accessibility-checker@^4.0.6": "4.0.6",
"npm:date-fns@4.1.0": "4.1.0",
-
"npm:dprint@*": "0.49.0",
+
"npm:dprint@*": "0.49.1",
"npm:estree-walker@3.0.3": "3.0.3",
-
"npm:highlight.js@11.11.1": "11.11.1",
-
"npm:html-validate@9.4.0": "9.4.0_ajv@8.17.1",
+
"npm:html-validate@9.7.1": "9.7.1_ajv@8.17.1",
"npm:ico-endec@0.1.6": "0.1.6",
-
"npm:lightningcss-wasm@1.29.1": "1.29.1",
+
"npm:lightningcss-wasm@1.29.3": "1.29.3",
+
"npm:lightningcss-wasm@1.30.1": "1.30.1",
"npm:markdown-it-attrs@4.3.1": "4.3.1_markdown-it@14.1.0",
"npm:markdown-it-deflist@3.0.0": "3.0.0",
-
"npm:markdown-it-inject-linenumbers@0.3.0": "0.3.0",
-
"npm:markdown-it-obsidian-callouts@*": "0.3.1_markdown-it@14.1.0",
-
"npm:markdown-it-obsidian-callouts@~0.3.1": "0.3.1_markdown-it@14.1.0",
"npm:markdown-it@14.1.0": "14.1.0",
"npm:meriyah@6.0.5": "6.0.5",
-
"npm:pagefind@1.3.0": "1.3.0",
-
"npm:postcss-import@16.1.0": "16.1.0_postcss@8.5.1",
-
"npm:postcss@8.5.1": "8.5.1",
-
"npm:postcss@8.5.2": "8.5.2",
-
"npm:purgecss-from-html@7.0.2": "7.0.2",
-
"npm:purgecss@7.0.2": "7.0.2",
"npm:remove-markdown@0.6.0": "0.6.0",
-
"npm:satori@0.12.1": "0.12.1",
-
"npm:sharp@0.33.5": "0.33.5",
+
"npm:remove-markdown@0.6.2": "0.6.2",
+
"npm:sharp@0.34.1": "0.34.1",
+
"npm:sharp@0.34.2": "0.34.2",
+
"npm:sharp@0.34.3": "0.34.3",
"npm:svg2png-wasm@1.4.1": "1.4.1",
"npm:svgo@3.3.2": "3.3.2",
-
"npm:tailwindcss@3.4.17": "3.4.17_postcss@8.5.1",
-
"npm:tailwindcss@4.0.6": "4.0.6",
-
"npm:unidecode@1.1.0": "1.1.0"
+
"npm:svgo@4.0.0": "4.0.0",
+
"npm:tailwindcss@4.1.11": "4.1.11",
+
"npm:tailwindcss@4.1.4": "4.1.4"
},
"jsr": {
"@davidbonnet/astring@1.8.6": {
"integrity": "98b4914c8863cdf8c0ff83bb5c528caa67a8dca6020ad6234113499f00583e3a"
},
-
"@hono/hono@4.6.16": {
-
"integrity": "b540c6b1352d73142895f7bb6bfd0b6cc514ede61c12940338c4ae5dd06cb326"
+
"@luca/esbuild-deno-loader@0.11.1": {
+
"integrity": "dc020d16d75b591f679f6b9288b10f38bdb4f24345edb2f5732affa1d9885267",
+
"dependencies": [
+
"jsr:@std/bytes@^1.0.2",
+
"jsr:@std/encoding@^1.0.5",
+
"jsr:@std/path@^1.0.6"
+
]
+
},
+
"@minify-html/deno@0.16.4": {
+
"integrity": "8d4bb62fef045a3959f62b82dd41e26ee1b2cf45be47b90e1d18d21b8277e695"
},
"@std/bytes@1.0.5": {
"integrity": "4465dd739d7963d964c809202ebea6d5c6b8e3829ef25c6a224290fbb8a1021e"
},
-
"@std/cli@1.0.11": {
-
"integrity": "ec219619fdcd31bcf0d8e53bee1e2706ec9a02f70255365a094f69755dadd340"
+
"@std/bytes@1.0.6": {
+
"integrity": "f6ac6adbd8ccd99314045f5703e23af0a68d7f7e58364b47d2c7f408aeb5820a"
},
-
"@std/cli@1.0.12": {
-
"integrity": "e5cfb7814d189da174ecd7a34fbbd63f3513e24a1b307feb2fcd5da47a070d90"
+
"@std/cli@1.0.16": {
+
"integrity": "02df293099c35b9e97d8ca05f57f54bd1ee08134f25d19a4756b3924695f4b00"
},
-
"@std/cli@1.0.13": {
-
"integrity": "5db2d95ab2dca3bca9fb6ad3c19908c314e93d6391c8b026725e4892d4615a69"
+
"@std/cli@1.0.20": {
+
"integrity": "a8c384a2c98cec6ec6a2055c273a916e2772485eb784af0db004c5ab8ba52333"
},
"@std/collections@1.0.10": {
"integrity": "903af106a3d92970d74e20f7ebff77d9658af9bef4403f1dc42a7801c0575899"
},
-
"@std/crypto@1.0.3": {
-
"integrity": "a2a32f51ddef632d299e3879cd027c630dcd4d1d9a5285d6e6788072f4e51e7f"
+
"@std/collections@1.1.2": {
+
"integrity": "f1685dd45c3ec27c39d0e8a642ccf810f391ec8a6cb5e7355926e6dacc64c43e"
},
"@std/crypto@1.0.4": {
"integrity": "cee245c453bd5366207f4d8aa25ea3e9c86cecad2be3fefcaa6cb17203d79340"
},
-
"@std/encoding@1.0.6": {
-
"integrity": "ca87122c196e8831737d9547acf001766618e78cd8c33920776c7f5885546069"
+
"@std/crypto@1.0.5": {
+
"integrity": "0dcfbb319fe0bba1bd3af904ceb4f948cde1b92979ec1614528380ed308a3b40"
},
-
"@std/encoding@1.0.7": {
-
"integrity": "f631247c1698fef289f2de9e2a33d571e46133b38d042905e3eac3715030a82d"
+
"@std/encoding@1.0.9": {
+
"integrity": "025b8f18eb1749bc30d1353bf48b77d1eb5e35610220fa226f5a046b9240c5d7"
},
-
"@std/fmt@1.0.4": {
-
"integrity": "e14fe5bedee26f80877e6705a97a79c7eed599e81bb1669127ef9e8bc1e29a74"
+
"@std/encoding@1.0.10": {
+
"integrity": "8783c6384a2d13abd5e9e87a7ae0520a30e9f56aeeaa3bdf910a3eaaf5c811a1"
},
-
"@std/fmt@1.0.5": {
-
"integrity": "0cfab43364bc36650d83c425cd6d99910fc20c4576631149f0f987eddede1a4d"
+
"@std/fmt@1.0.6": {
+
"integrity": "a2c56a69a2369876ddb3ad6a500bb6501b5bad47bb3ea16bfb0c18974d2661fc"
},
-
"@std/front-matter@1.0.5": {
-
"integrity": "abddc64030a33eb5bc524b8c73e7c417cea09177aaeb4abf75a56b540c4b6e60",
-
"dependencies": [
-
"jsr:@std/toml@^1.0.1",
-
"jsr:@std/yaml@^1.0.5"
-
]
+
"@std/fmt@1.0.8": {
+
"integrity": "71e1fc498787e4434d213647a6e43e794af4fd393ef8f52062246e06f7e372b7"
},
-
"@std/front-matter@1.0.7": {
-
"integrity": "a9e577403b3c0ef6a6836b54bd2034db49be765d99807dd629f2c4466d345c3e",
+
"@std/front-matter@1.0.9": {
+
"integrity": "ee6201d06674cbef137dda2252f62477450b48249e7d8d9ab57a30f85ff6f051",
"dependencies": [
-
"jsr:@std/toml@^1.0.2",
+
"jsr:@std/toml@^1.0.3",
"jsr:@std/yaml@^1.0.5"
]
},
-
"@std/fs@1.0.9": {
-
"integrity": "3eef7e3ed3d317b29432c7dcb3b20122820dbc574263f721cb0248ad91bad890",
+
"@std/fs@1.0.16": {
+
"integrity": "81878f62b6eeda0bf546197fc3daa5327c132fee1273f6113f940784a468b036",
"dependencies": [
"jsr:@std/path@^1.0.8"
]
},
-
"@std/fs@1.0.10": {
-
"integrity": "bf041f9d7a0a460817f0421be8946d0e06011b3433e6c83a215628de5e3c7c2c",
+
"@std/fs@1.0.19": {
+
"integrity": "051968c2b1eae4d2ea9f79a08a3845740ef6af10356aff43d3e2ef11ed09fb06",
"dependencies": [
-
"jsr:@std/path@^1.0.8"
-
]
-
},
-
"@std/fs@1.0.11": {
-
"integrity": "ba674672693340c5ebdd018b4fe1af46cb08741f42b4c538154e97d217b55bdd",
-
"dependencies": [
-
"jsr:@std/path@^1.0.8"
-
]
-
},
-
"@std/fs@1.0.13": {
-
"integrity": "756d3ff0ade91c9e72b228e8012b6ff00c3d4a4ac9c642c4dac083536bf6c605",
-
"dependencies": [
-
"jsr:@std/path@^1.0.8"
+
"jsr:@std/internal",
+
"jsr:@std/path@^1.1.1"
]
},
"@std/html@1.0.3": {
"integrity": "7a0ac35e050431fb49d44e61c8b8aac1ebd55937e0dc9ec6409aa4bab39a7988"
},
-
"@std/http@1.0.12": {
-
"integrity": "85246d8bfe9c8e2538518725b158bdc31f616e0869255f4a8d9e3de919cab2aa",
+
"@std/html@1.0.4": {
+
"integrity": "eff3497c08164e6ada49b7f81a28b5108087033823153d065e3f89467dd3d50e"
+
},
+
"@std/http@1.0.14": {
+
"integrity": "bfc4329d975dff2abd8170e83e37deb454fbc678fec3fdd2ef5b03d92768a4ef",
"dependencies": [
-
"jsr:@std/cli@^1.0.8",
-
"jsr:@std/encoding@^1.0.5",
-
"jsr:@std/fmt@^1.0.3",
+
"jsr:@std/cli@^1.0.16",
+
"jsr:@std/encoding@^1.0.9",
+
"jsr:@std/fmt@^1.0.6",
"jsr:@std/html@^1.0.3",
"jsr:@std/media-types@^1.1.0",
"jsr:@std/net",
"jsr:@std/path@^1.0.8",
-
"jsr:@std/streams@^1.0.8"
+
"jsr:@std/streams@^1.0.9"
]
},
-
"@std/http@1.0.13": {
-
"integrity": "d29618b982f7ae44380111f7e5b43da59b15db64101198bb5f77100d44eb1e1e",
+
"@std/http@1.0.19": {
+
"integrity": "52128c8d00a1f0b20019f8b72376e7ef5f3133375b6f805b5bc89b9de2ad4686",
"dependencies": [
-
"jsr:@std/cli@^1.0.12",
-
"jsr:@std/encoding@^1.0.7",
-
"jsr:@std/fmt@^1.0.5",
-
"jsr:@std/html@^1.0.3",
+
"jsr:@std/cli@^1.0.20",
+
"jsr:@std/encoding@^1.0.10",
+
"jsr:@std/fmt@^1.0.8",
+
"jsr:@std/fs@^1.0.19",
+
"jsr:@std/html@^1.0.4",
"jsr:@std/media-types@^1.1.0",
"jsr:@std/net",
-
"jsr:@std/path@^1.0.8",
-
"jsr:@std/streams@^1.0.9"
+
"jsr:@std/path@^1.1.1",
+
"jsr:@std/streams@^1.0.10"
]
},
-
"@std/io@0.225.2": {
-
"integrity": "3c740cd4ee4c082e6cfc86458f47e2ab7cb353dc6234d5e9b1f91a2de5f4d6c7"
+
"@std/internal@1.0.9": {
+
"integrity": "bdfb97f83e4db7a13e8faab26fb1958d1b80cc64366501af78a0aee151696eb8"
},
"@std/json@1.0.1": {
"integrity": "1f0f70737e8827f9acca086282e903677bc1bb0c8ffcd1f21bca60039563049f"
+
},
+
"@std/json@1.0.2": {
+
"integrity": "d9e5497801c15fb679f55a2c01c7794ad7a5dfda4dd1bebab5e409cb5e0d34d4"
},
"@std/jsonc@1.0.1": {
"integrity": "6b36956e2a7cbb08ca5ad7fbec72e661e6217c202f348496ea88747636710dda",
"dependencies": [
-
"jsr:@std/json"
+
"jsr:@std/json@1"
]
},
-
"@std/log@0.224.13": {
-
"integrity": "f04d82f676c9eb4306194ca166d296d9f1456fe4b7edf2a404a0d55c94d31df7",
+
"@std/jsonc@1.0.2": {
+
"integrity": "909605dae3af22bd75b1cbda8d64a32cf1fd2cf6efa3f9e224aba6d22c0f44c7",
"dependencies": [
-
"jsr:@std/fmt@^1.0.4",
-
"jsr:@std/fs@^1.0.9",
-
"jsr:@std/io@0.225"
-
]
-
},
-
"@std/log@0.224.14": {
-
"integrity": "257f7adceee3b53bb2bc86c7242e7d1bc59729e57d4981c4a7e5b876c808f05e",
-
"dependencies": [
-
"jsr:@std/fmt@^1.0.5",
-
"jsr:@std/fs@^1.0.11",
-
"jsr:@std/io@~0.225.2"
+
"jsr:@std/json@^1.0.2"
]
},
"@std/media-types@1.1.0": {
···
"@std/path@1.0.8": {
"integrity": "548fa456bb6a04d3c1a1e7477986b6cffbce95102d0bb447c67c4ee70e0364be"
},
+
"@std/path@1.1.1": {
+
"integrity": "fe00026bd3a7e6a27f73709b83c607798be40e20c81dde655ce34052fd82ec76",
+
"dependencies": [
+
"jsr:@std/internal"
+
]
+
},
"@std/streams@1.0.9": {
"integrity": "a9d26b1988cdd7aa7b1f4b51e1c36c1557f3f252880fa6cc5b9f37078b1a5035",
"dependencies": [
-
"jsr:@std/bytes"
+
"jsr:@std/bytes@^1.0.5"
]
},
-
"@std/tar@0.1.4": {
-
"integrity": "1bc1f1f9bfd557e849b31d6521348fdf5848886d87c851f1f0f992d002fe0ff5",
+
"@std/streams@1.0.10": {
+
"integrity": "75c0b1431873cd0d8b3d679015220204d36d3c7420d93b60acfc379eb0dc30af",
"dependencies": [
-
"jsr:@std/streams@^1.0.8"
+
"jsr:@std/bytes@^1.0.6"
]
},
-
"@std/toml@1.0.2": {
-
"integrity": "5892ba489c5b512265a384238a8fe8dddbbb9498b4b210ef1b9f0336a423a39b",
+
"@std/toml@1.0.4": {
+
"integrity": "8781e687d04c8fbe246b9c5714be01925792a94d943462c33777675ab557cff1",
"dependencies": [
-
"jsr:@std/collections"
+
"jsr:@std/collections@^1.0.10"
+
]
+
},
+
"@std/toml@1.0.8": {
+
"integrity": "eb8ae76b4cc1c6c13f2a91123675823adbec2380de75cd3748c628960d952164",
+
"dependencies": [
+
"jsr:@std/collections@^1.1.1"
]
},
"@std/yaml@1.0.5": {
"integrity": "71ba3d334305ee2149391931508b2c293a8490f94a337eef3a09cade1a2a2742"
+
},
+
"@std/yaml@1.0.8": {
+
"integrity": "90b8aab62995e929fa0ea5f4151c287275b63e321ac375c35ff7406ca60c169d"
}
},
"npm": {
-
"@alloc/quick-lru@5.2.0": {
-
"integrity": "sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw=="
-
},
-
"@catppuccin/tailwindcss@0.1.6_tailwindcss@3.3.3__postcss@8.5.1": {
-
"integrity": "sha512-V+Y0AwZ5SSyvOVAcDl7Ng30xy+m82OKnEJ+9+kcZZ7lRyXuZrAb2GScdq9XR3v+ggt8qiZ/G4TvaC9cJ88AAXA==",
+
"@ampproject/remapping@2.3.0": {
+
"integrity": "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==",
"dependencies": [
-
"tailwindcss@3.3.3_postcss@8.5.1"
+
"@jridgewell/gen-mapping",
+
"@jridgewell/trace-mapping"
]
},
-
"@catppuccin/tailwindcss@0.1.6_tailwindcss@3.4.17__postcss@8.5.1": {
-
"integrity": "sha512-V+Y0AwZ5SSyvOVAcDl7Ng30xy+m82OKnEJ+9+kcZZ7lRyXuZrAb2GScdq9XR3v+ggt8qiZ/G4TvaC9cJ88AAXA==",
+
"@babel/code-frame@7.27.1": {
+
"integrity": "sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==",
"dependencies": [
-
"tailwindcss@3.4.17_postcss@8.5.1"
+
"@babel/helper-validator-identifier",
+
"js-tokens",
+
"picocolors"
]
},
-
"@dprint/darwin-arm64@0.49.0": {
-
"integrity": "sha512-b8fwjdfYrX5H+QyeWiB27gPc1GMVdd2LorCtsZWC+MDQO6NOgpuxJePqccbQlFUumy2rfmQuLQprnldvQZhceg=="
+
"@babel/helper-validator-identifier@7.27.1": {
+
"integrity": "sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow=="
+
},
+
"@dprint/darwin-arm64@0.49.1": {
+
"integrity": "sha512-ib6KcJWo/M5RJWXOQKhP664FG1hAvG7nrbkh+j8n+oXdzmbyDdXTP+zW+aM3/sIQUkGaZky1xy1j2VeScMEEHQ=="
+
},
+
"@dprint/darwin-x64@0.49.1": {
+
"integrity": "sha512-vIVgnYxV7YYa1d6Uyz707RbgB9rwefGPam+rzaueFNPQjdOxPOTQDuMEJDS+Z3BlI00MfeoupIfIUGsXoM4dpQ=="
+
},
+
"@dprint/linux-arm64-glibc@0.49.1": {
+
"integrity": "sha512-ZeIh6qMPWLBBifDtU0XadpK36b4WoaTqCOt0rWKfoTjq1RAt78EgqETWp43Dbr6et/HvTgYdoWF0ZNEu2FJFFA=="
},
-
"@dprint/darwin-x64@0.49.0": {
-
"integrity": "sha512-cA/DIPlHClkufLufuIfcXHtZdlyP9U05RuJLvvAfHwJAxyeEC/chKYVc5BVz86RxMIq6czFGpJHoFtTjrfM3YA=="
+
"@dprint/linux-arm64-musl@0.49.1": {
+
"integrity": "sha512-/nuRyx+TykN6MqhlSCRs/t3o1XXlikiwTc9emWdzMeLGllYvJrcht9gRJ1/q1SqwCFhzgnD9H7roxxfji1tc+Q=="
},
-
"@dprint/linux-arm64-glibc@0.49.0": {
-
"integrity": "sha512-UBo3lDJhotT+qza2S48DOPI64MirkJMoFDidh/TJBjokio2TcGd+QUzuB9O7J1+R3AlbwyObcTECjJryCNohHQ=="
+
"@dprint/linux-riscv64-glibc@0.49.1": {
+
"integrity": "sha512-RHBqrnvGO+xW4Oh0QuToBqWtkXMcfjqa1TqbBFF03yopFzZA2oRKX83PhjTWgd/IglaOns0BgmaLJy/JBSxOfQ=="
},
-
"@dprint/linux-arm64-musl@0.49.0": {
-
"integrity": "sha512-XWAPL6Hp+zqk9bi57450wuy4yz4fvT72L3Zji3X7ChL5KD/apMUzQnZhmTpln2sxwIgJ3nCbzEzlF7jhhp/7KA=="
+
"@dprint/linux-x64-glibc@0.49.1": {
+
"integrity": "sha512-MjFE894mIQXOKBencuakKyzAI4KcDe/p0Y9lRp9YSw/FneR4QWH9VBH90h8fRxcIlWMArjFFJJAtsBnn5qgxeg=="
},
-
"@dprint/linux-riscv64-glibc@0.49.0": {
-
"integrity": "sha512-6GlGcauMeMbCCJ15OmAMkarouCifij9hb12Vz5UUZPevnutVoWRTQBPQLfllmd+9Znsp23fHnmzmykibdwj4Gw=="
+
"@dprint/linux-x64-musl@0.49.1": {
+
"integrity": "sha512-CvGBWOksHgrL1uzYqtPFvZz0+E82BzgoCIEHJeuYaveEn37qWZS5jqoCm/vz6BfoivE1dVuyyOT78Begj9KxkQ=="
},
-
"@dprint/linux-x64-glibc@0.49.0": {
-
"integrity": "sha512-PJUM1G8L2xwF9R1s4/J6kf29S2sJ/sZGy3ah7g5Uj+oYkZq6SlMOrx3xqCXEkKSa0T6Xuc1bUBcJyrjEf36xiw=="
+
"@dprint/win32-arm64@0.49.1": {
+
"integrity": "sha512-gQa4s82lMcXjfdxjWBQun6IJlXdPZZaIj2/2cqXWVEOYPKxAZ/JvGzt2pPG+i73h9KHjNLIV8M9ckqEH3oHufg=="
},
-
"@dprint/linux-x64-musl@0.49.0": {
-
"integrity": "sha512-+WIInBwbCXYmWZcYYmnD8HdcZj6q8ewy6mPpHH6SDMtWr6nrxzyIVLFr72XeiBoHnVsQFUhN+wv5Bm5NnpJtRw=="
+
"@dprint/win32-x64@0.49.1": {
+
"integrity": "sha512-nPU6+hoVze5JJlgET7woYWElBw0IUaB/9XKTaglknQuUUfsmD75D9pkgJTxdIxl9Bg/i5O7c9wb3Nj4XNiTIfw=="
},
-
"@dprint/win32-arm64@0.49.0": {
-
"integrity": "sha512-AteygrhmT7OXIgE/72REUfTPs/+qU0I1vhU379AYXgcWzOKy6Eeyi8lAt17oF7OmGT4IuyrKEDjpdTxhOWLsQw=="
+
"@emnapi/core@1.4.3": {
+
"integrity": "sha512-4m62DuCE07lw01soJwPiBGC0nAww0Q+RY70VZ+n49yDIO13yyinhbWCeNnaob0lakDtWQzSdtNWzJeOJt2ma+g==",
+
"dependencies": [
+
"@emnapi/wasi-threads",
+
"tslib"
+
]
},
-
"@dprint/win32-x64@0.49.0": {
-
"integrity": "sha512-8bE6P9T/32Gd+zMAkcwvUHzOLEMnbHEMgsgiKypYsdFTskpDz+y1GLJvMaxIFd2DB2tMx9TdBYuBQrJroTsMeQ=="
+
"@emnapi/runtime@1.4.3": {
+
"integrity": "sha512-pBPWdu6MLKROBX05wSNKcNb++m5Er+KQ9QkB+WVM+pW2Kx9hoSrVTnu3BdkI5eBLZoKu/J6mW/B6i6bJB2ytXQ==",
+
"dependencies": [
+
"tslib"
+
]
+
},
+
"@emnapi/runtime@1.4.4": {
+
"integrity": "sha512-hHyapA4A3gPaDCNfiqyZUStTMqIkKRshqPIuDOXv1hcBnD4U3l8cP0T1HMCfGRxQ6V64TGCcoswChANyOAwbQg==",
+
"dependencies": [
+
"tslib"
+
]
},
-
"@emnapi/runtime@1.3.1": {
-
"integrity": "sha512-kEBmG8KyqtxJZv+ygbEim+KCGtIq1fC22Ms3S4ziXmYKm8uyoLX0MHONVKwp+9opg390VaKRNt4a7A9NwmpNhw==",
+
"@emnapi/wasi-threads@1.0.2": {
+
"integrity": "sha512-5n3nTJblwRi8LlXkJ9eBzu+kZR8Yxcc7ubakyQTFzPMtIhFpUBRbsnc2Dv88IZDIbCDlBiWrknhB4Lsz7mg6BA==",
"dependencies": [
"tslib"
]
},
-
"@html-validate/stylish@4.2.0": {
-
"integrity": "sha512-Nl8HCv0hGRSLQ+n1OD4Hk3a+Urwk9HH0vQkAzzCarT4KlA7bRl+6xEiS5PZVwOmjtC7XiH/oNe3as9Fxcr2A1w==",
+
"@fast-csv/format@4.3.5": {
+
"integrity": "sha512-8iRn6QF3I8Ak78lNAa+Gdl5MJJBM5vRHivFtMRUWINdevNo00K7OXxS2PshawLKTejVwieIlPmK5YlLu6w4u8A==",
+
"dependencies": [
+
"@types/node@14.18.63",
+
"lodash.escaperegexp",
+
"lodash.isboolean",
+
"lodash.isequal",
+
"lodash.isfunction",
+
"lodash.isnil"
+
]
+
},
+
"@fast-csv/parse@4.3.6": {
+
"integrity": "sha512-uRsLYksqpbDmWaSmzvJcuApSEe38+6NQZBUsuAyMZKqHxH0g1wcJgsKUvN3WC8tewaqFjBMMGrkHmC+T7k8LvA==",
+
"dependencies": [
+
"@types/node@14.18.63",
+
"lodash.escaperegexp",
+
"lodash.groupby",
+
"lodash.isfunction",
+
"lodash.isnil",
+
"lodash.isundefined",
+
"lodash.uniq"
+
]
+
},
+
"@html-validate/stylish@4.3.0": {
+
"integrity": "sha512-eUfvKpRJg5TvzSfTf2EovrQoTKjkRnPUOUnXVJ2cQ4GbC/bQw98oxN+DdSf+HxOBK00YOhsP52xWdJPV1o4n5w==",
"dependencies": [
"kleur@4.1.5"
]
},
-
"@imagemagick/magick-wasm@0.0.31": {
-
"integrity": "sha512-QNivAUxSaItuiY8ziI/vRy6TtoecD7TOsD1LGZCG3wv8lfbdGbIj2QiJk0FlGkGwAVR966NlD3mkxPNvQrvq0w=="
+
"@img/sharp-darwin-arm64@0.34.1": {
+
"integrity": "sha512-pn44xgBtgpEbZsu+lWf2KNb6OAf70X68k+yk69Ic2Xz11zHR/w24/U49XT7AeRwJ0Px+mhALhU5LPci1Aymk7A==",
+
"dependencies": [
+
"@img/sharp-libvips-darwin-arm64@1.1.0"
+
]
+
},
+
"@img/sharp-darwin-arm64@0.34.2": {
+
"integrity": "sha512-OfXHZPppddivUJnqyKoi5YVeHRkkNE2zUFT2gbpKxp/JZCFYEYubnMg+gOp6lWfasPrTS+KPosKqdI+ELYVDtg==",
+
"dependencies": [
+
"@img/sharp-libvips-darwin-arm64@1.1.0"
+
]
+
},
+
"@img/sharp-darwin-arm64@0.34.3": {
+
"integrity": "sha512-ryFMfvxxpQRsgZJqBd4wsttYQbCxsJksrv9Lw/v798JcQ8+w84mBWuXwl+TT0WJ/WrYOLaYpwQXi3sA9nTIaIg==",
+
"dependencies": [
+
"@img/sharp-libvips-darwin-arm64@1.2.0"
+
]
+
},
+
"@img/sharp-darwin-x64@0.34.1": {
+
"integrity": "sha512-VfuYgG2r8BpYiOUN+BfYeFo69nP/MIwAtSJ7/Zpxc5QF3KS22z8Pvg3FkrSFJBPNQ7mmcUcYQFBmEQp7eu1F8Q==",
+
"dependencies": [
+
"@img/sharp-libvips-darwin-x64@1.1.0"
+
]
+
},
+
"@img/sharp-darwin-x64@0.34.2": {
+
"integrity": "sha512-dYvWqmjU9VxqXmjEtjmvHnGqF8GrVjM2Epj9rJ6BUIXvk8slvNDJbhGFvIoXzkDhrJC2jUxNLz/GUjjvSzfw+g==",
+
"dependencies": [
+
"@img/sharp-libvips-darwin-x64@1.1.0"
+
]
+
},
+
"@img/sharp-darwin-x64@0.34.3": {
+
"integrity": "sha512-yHpJYynROAj12TA6qil58hmPmAwxKKC7reUqtGLzsOHfP7/rniNGTL8tjWX6L3CTV4+5P4ypcS7Pp+7OB+8ihA==",
+
"dependencies": [
+
"@img/sharp-libvips-darwin-x64@1.2.0"
+
]
+
},
+
"@img/sharp-libvips-darwin-arm64@1.1.0": {
+
"integrity": "sha512-HZ/JUmPwrJSoM4DIQPv/BfNh9yrOA8tlBbqbLz4JZ5uew2+o22Ik+tHQJcih7QJuSa0zo5coHTfD5J8inqj9DA=="
+
},
+
"@img/sharp-libvips-darwin-arm64@1.2.0": {
+
"integrity": "sha512-sBZmpwmxqwlqG9ueWFXtockhsxefaV6O84BMOrhtg/YqbTaRdqDE7hxraVE3y6gVM4eExmfzW4a8el9ArLeEiQ=="
+
},
+
"@img/sharp-libvips-darwin-x64@1.1.0": {
+
"integrity": "sha512-Xzc2ToEmHN+hfvsl9wja0RlnXEgpKNmftriQp6XzY/RaSfwD9th+MSh0WQKzUreLKKINb3afirxW7A0fz2YWuQ=="
+
},
+
"@img/sharp-libvips-darwin-x64@1.2.0": {
+
"integrity": "sha512-M64XVuL94OgiNHa5/m2YvEQI5q2cl9d/wk0qFTDVXcYzi43lxuiFTftMR1tOnFQovVXNZJ5TURSDK2pNe9Yzqg=="
+
},
+
"@img/sharp-libvips-linux-arm64@1.1.0": {
+
"integrity": "sha512-IVfGJa7gjChDET1dK9SekxFFdflarnUB8PwW8aGwEoF3oAsSDuNUTYS+SKDOyOJxQyDC1aPFMuRYLoDInyV9Ew=="
+
},
+
"@img/sharp-libvips-linux-arm64@1.2.0": {
+
"integrity": "sha512-RXwd0CgG+uPRX5YYrkzKyalt2OJYRiJQ8ED/fi1tq9WQW2jsQIn0tqrlR5l5dr/rjqq6AHAxURhj2DVjyQWSOA=="
+
},
+
"@img/sharp-libvips-linux-arm@1.1.0": {
+
"integrity": "sha512-s8BAd0lwUIvYCJyRdFqvsj+BJIpDBSxs6ivrOPm/R7piTs5UIwY5OjXrP2bqXC9/moGsyRa37eYWYCOGVXxVrA=="
+
},
+
"@img/sharp-libvips-linux-arm@1.2.0": {
+
"integrity": "sha512-mWd2uWvDtL/nvIzThLq3fr2nnGfyr/XMXlq8ZJ9WMR6PXijHlC3ksp0IpuhK6bougvQrchUAfzRLnbsen0Cqvw=="
+
},
+
"@img/sharp-libvips-linux-ppc64@1.1.0": {
+
"integrity": "sha512-tiXxFZFbhnkWE2LA8oQj7KYR+bWBkiV2nilRldT7bqoEZ4HiDOcePr9wVDAZPi/Id5fT1oY9iGnDq20cwUz8lQ=="
+
},
+
"@img/sharp-libvips-linux-ppc64@1.2.0": {
+
"integrity": "sha512-Xod/7KaDDHkYu2phxxfeEPXfVXFKx70EAFZ0qyUdOjCcxbjqyJOEUpDe6RIyaunGxT34Anf9ue/wuWOqBW2WcQ=="
+
},
+
"@img/sharp-libvips-linux-s390x@1.1.0": {
+
"integrity": "sha512-xukSwvhguw7COyzvmjydRb3x/09+21HykyapcZchiCUkTThEQEOMtBj9UhkaBRLuBrgLFzQ2wbxdeCCJW/jgJA=="
+
},
+
"@img/sharp-libvips-linux-s390x@1.2.0": {
+
"integrity": "sha512-eMKfzDxLGT8mnmPJTNMcjfO33fLiTDsrMlUVcp6b96ETbnJmd4uvZxVJSKPQfS+odwfVaGifhsB07J1LynFehw=="
+
},
+
"@img/sharp-libvips-linux-x64@1.1.0": {
+
"integrity": "sha512-yRj2+reB8iMg9W5sULM3S74jVS7zqSzHG3Ol/twnAAkAhnGQnpjj6e4ayUz7V+FpKypwgs82xbRdYtchTTUB+Q=="
+
},
+
"@img/sharp-libvips-linux-x64@1.2.0": {
+
"integrity": "sha512-ZW3FPWIc7K1sH9E3nxIGB3y3dZkpJlMnkk7z5tu1nSkBoCgw2nSRTFHI5pB/3CQaJM0pdzMF3paf9ckKMSE9Tg=="
+
},
+
"@img/sharp-libvips-linuxmusl-arm64@1.1.0": {
+
"integrity": "sha512-jYZdG+whg0MDK+q2COKbYidaqW/WTz0cc1E+tMAusiDygrM4ypmSCjOJPmFTvHHJ8j/6cAGyeDWZOsK06tP33w=="
+
},
+
"@img/sharp-libvips-linuxmusl-arm64@1.2.0": {
+
"integrity": "sha512-UG+LqQJbf5VJ8NWJ5Z3tdIe/HXjuIdo4JeVNADXBFuG7z9zjoegpzzGIyV5zQKi4zaJjnAd2+g2nna8TZvuW9Q=="
+
},
+
"@img/sharp-libvips-linuxmusl-x64@1.1.0": {
+
"integrity": "sha512-wK7SBdwrAiycjXdkPnGCPLjYb9lD4l6Ze2gSdAGVZrEL05AOUJESWU2lhlC+Ffn5/G+VKuSm6zzbQSzFX/P65A=="
+
},
+
"@img/sharp-libvips-linuxmusl-x64@1.2.0": {
+
"integrity": "sha512-SRYOLR7CXPgNze8akZwjoGBoN1ThNZoqpOgfnOxmWsklTGVfJiGJoC/Lod7aNMGA1jSsKWM1+HRX43OP6p9+6Q=="
+
},
+
"@img/sharp-linux-arm64@0.34.1": {
+
"integrity": "sha512-kX2c+vbvaXC6vly1RDf/IWNXxrlxLNpBVWkdpRq5Ka7OOKj6nr66etKy2IENf6FtOgklkg9ZdGpEu9kwdlcwOQ==",
+
"dependencies": [
+
"@img/sharp-libvips-linux-arm64@1.1.0"
+
]
+
},
+
"@img/sharp-linux-arm64@0.34.2": {
+
"integrity": "sha512-D8n8wgWmPDakc83LORcfJepdOSN6MvWNzzz2ux0MnIbOqdieRZwVYY32zxVx+IFUT8er5KPcyU3XXsn+GzG/0Q==",
+
"dependencies": [
+
"@img/sharp-libvips-linux-arm64@1.1.0"
+
]
+
},
+
"@img/sharp-linux-arm64@0.34.3": {
+
"integrity": "sha512-QdrKe3EvQrqwkDrtuTIjI0bu6YEJHTgEeqdzI3uWJOH6G1O8Nl1iEeVYRGdj1h5I21CqxSvQp1Yv7xeU3ZewbA==",
+
"dependencies": [
+
"@img/sharp-libvips-linux-arm64@1.2.0"
+
]
},
-
"@img/sharp-darwin-arm64@0.33.5": {
-
"integrity": "sha512-UT4p+iz/2H4twwAoLCqfA9UH5pI6DggwKEGuaPy7nCVQ8ZsiY5PIcrRvD1DzuY3qYL07NtIQcWnBSY/heikIFQ==",
+
"@img/sharp-linux-arm@0.34.1": {
+
"integrity": "sha512-anKiszvACti2sGy9CirTlNyk7BjjZPiML1jt2ZkTdcvpLU1YH6CXwRAZCA2UmRXnhiIftXQ7+Oh62Ji25W72jA==",
"dependencies": [
-
"@img/sharp-libvips-darwin-arm64"
+
"@img/sharp-libvips-linux-arm@1.1.0"
]
},
-
"@img/sharp-darwin-x64@0.33.5": {
-
"integrity": "sha512-fyHac4jIc1ANYGRDxtiqelIbdWkIuQaI84Mv45KvGRRxSAa7o7d1ZKAOBaYbnepLC1WqxfpimdeWfvqqSGwR2Q==",
+
"@img/sharp-linux-arm@0.34.2": {
+
"integrity": "sha512-0DZzkvuEOqQUP9mo2kjjKNok5AmnOr1jB2XYjkaoNRwpAYMDzRmAqUIa1nRi58S2WswqSfPOWLNOr0FDT3H5RQ==",
"dependencies": [
-
"@img/sharp-libvips-darwin-x64"
+
"@img/sharp-libvips-linux-arm@1.1.0"
]
},
-
"@img/sharp-libvips-darwin-arm64@1.0.4": {
-
"integrity": "sha512-XblONe153h0O2zuFfTAbQYAX2JhYmDHeWikp1LM9Hul9gVPjFY427k6dFEcOL72O01QxQsWi761svJ/ev9xEDg=="
+
"@img/sharp-linux-arm@0.34.3": {
+
"integrity": "sha512-oBK9l+h6KBN0i3dC8rYntLiVfW8D8wH+NPNT3O/WBHeW0OQWCjfWksLUaPidsrDKpJgXp3G3/hkmhptAW0I3+A==",
+
"dependencies": [
+
"@img/sharp-libvips-linux-arm@1.2.0"
+
]
},
-
"@img/sharp-libvips-darwin-x64@1.0.4": {
-
"integrity": "sha512-xnGR8YuZYfJGmWPvmlunFaWJsb9T/AO2ykoP3Fz/0X5XV2aoYBPkX6xqCQvUTKKiLddarLaxpzNe+b1hjeWHAQ=="
+
"@img/sharp-linux-ppc64@0.34.3": {
+
"integrity": "sha512-GLtbLQMCNC5nxuImPR2+RgrviwKwVql28FWZIW1zWruy6zLgA5/x2ZXk3mxj58X/tszVF69KK0Is83V8YgWhLA==",
+
"dependencies": [
+
"@img/sharp-libvips-linux-ppc64@1.2.0"
+
]
},
-
"@img/sharp-libvips-linux-arm64@1.0.4": {
-
"integrity": "sha512-9B+taZ8DlyyqzZQnoeIvDVR/2F4EbMepXMc/NdVbkzsJbzkUjhXv/70GQJ7tdLA4YJgNP25zukcxpX2/SueNrA=="
+
"@img/sharp-linux-s390x@0.34.1": {
+
"integrity": "sha512-7s0KX2tI9mZI2buRipKIw2X1ufdTeaRgwmRabt5bi9chYfhur+/C1OXg3TKg/eag1W+6CCWLVmSauV1owmRPxA==",
+
"dependencies": [
+
"@img/sharp-libvips-linux-s390x@1.1.0"
+
]
},
-
"@img/sharp-libvips-linux-arm@1.0.5": {
-
"integrity": "sha512-gvcC4ACAOPRNATg/ov8/MnbxFDJqf/pDePbBnuBDcjsI8PssmjoKMAz4LtLaVi+OnSb5FK/yIOamqDwGmXW32g=="
+
"@img/sharp-linux-s390x@0.34.2": {
+
"integrity": "sha512-EGZ1xwhBI7dNISwxjChqBGELCWMGDvmxZXKjQRuqMrakhO8QoMgqCrdjnAqJq/CScxfRn+Bb7suXBElKQpPDiw==",
+
"dependencies": [
+
"@img/sharp-libvips-linux-s390x@1.1.0"
+
]
},
-
"@img/sharp-libvips-linux-s390x@1.0.4": {
-
"integrity": "sha512-u7Wz6ntiSSgGSGcjZ55im6uvTrOxSIS8/dgoVMoiGE9I6JAfU50yH5BoDlYA1tcuGS7g/QNtetJnxA6QEsCVTA=="
+
"@img/sharp-linux-s390x@0.34.3": {
+
"integrity": "sha512-3gahT+A6c4cdc2edhsLHmIOXMb17ltffJlxR0aC2VPZfwKoTGZec6u5GrFgdR7ciJSsHT27BD3TIuGcuRT0KmQ==",
+
"dependencies": [
+
"@img/sharp-libvips-linux-s390x@1.2.0"
+
]
},
-
"@img/sharp-libvips-linux-x64@1.0.4": {
-
"integrity": "sha512-MmWmQ3iPFZr0Iev+BAgVMb3ZyC4KeFc3jFxnNbEPas60e1cIfevbtuyf9nDGIzOaW9PdnDciJm+wFFaTlj5xYw=="
+
"@img/sharp-linux-x64@0.34.1": {
+
"integrity": "sha512-wExv7SH9nmoBW3Wr2gvQopX1k8q2g5V5Iag8Zk6AVENsjwd+3adjwxtp3Dcu2QhOXr8W9NusBU6XcQUohBZ5MA==",
+
"dependencies": [
+
"@img/sharp-libvips-linux-x64@1.1.0"
+
]
},
-
"@img/sharp-libvips-linuxmusl-arm64@1.0.4": {
-
"integrity": "sha512-9Ti+BbTYDcsbp4wfYib8Ctm1ilkugkA/uscUn6UXK1ldpC1JjiXbLfFZtRlBhjPZ5o1NCLiDbg8fhUPKStHoTA=="
+
"@img/sharp-linux-x64@0.34.2": {
+
"integrity": "sha512-sD7J+h5nFLMMmOXYH4DD9UtSNBD05tWSSdWAcEyzqW8Cn5UxXvsHAxmxSesYUsTOBmUnjtxghKDl15EvfqLFbQ==",
+
"dependencies": [
+
"@img/sharp-libvips-linux-x64@1.1.0"
+
]
},
-
"@img/sharp-libvips-linuxmusl-x64@1.0.4": {
-
"integrity": "sha512-viYN1KX9m+/hGkJtvYYp+CCLgnJXwiQB39damAO7WMdKWlIhmYTfHjwSbQeUK/20vY154mwezd9HflVFM1wVSw=="
+
"@img/sharp-linux-x64@0.34.3": {
+
"integrity": "sha512-8kYso8d806ypnSq3/Ly0QEw90V5ZoHh10yH0HnrzOCr6DKAPI6QVHvwleqMkVQ0m+fc7EH8ah0BB0QPuWY6zJQ==",
+
"dependencies": [
+
"@img/sharp-libvips-linux-x64@1.2.0"
+
]
},
-
"@img/sharp-linux-arm64@0.33.5": {
-
"integrity": "sha512-JMVv+AMRyGOHtO1RFBiJy/MBsgz0x4AWrT6QoEVVTyh1E39TrCUpTRI7mx9VksGX4awWASxqCYLCV4wBZHAYxA==",
+
"@img/sharp-linuxmusl-arm64@0.34.1": {
+
"integrity": "sha512-DfvyxzHxw4WGdPiTF0SOHnm11Xv4aQexvqhRDAoD00MzHekAj9a/jADXeXYCDFH/DzYruwHbXU7uz+H+nWmSOQ==",
"dependencies": [
-
"@img/sharp-libvips-linux-arm64"
+
"@img/sharp-libvips-linuxmusl-arm64@1.1.0"
]
},
-
"@img/sharp-linux-arm@0.33.5": {
-
"integrity": "sha512-JTS1eldqZbJxjvKaAkxhZmBqPRGmxgu+qFKSInv8moZ2AmT5Yib3EQ1c6gp493HvrvV8QgdOXdyaIBrhvFhBMQ==",
+
"@img/sharp-linuxmusl-arm64@0.34.2": {
+
"integrity": "sha512-NEE2vQ6wcxYav1/A22OOxoSOGiKnNmDzCYFOZ949xFmrWZOVII1Bp3NqVVpvj+3UeHMFyN5eP/V5hzViQ5CZNA==",
"dependencies": [
-
"@img/sharp-libvips-linux-arm"
+
"@img/sharp-libvips-linuxmusl-arm64@1.1.0"
]
},
-
"@img/sharp-linux-s390x@0.33.5": {
-
"integrity": "sha512-y/5PCd+mP4CA/sPDKl2961b+C9d+vPAveS33s6Z3zfASk2j5upL6fXVPZi7ztePZ5CuH+1kW8JtvxgbuXHRa4Q==",
+
"@img/sharp-linuxmusl-arm64@0.34.3": {
+
"integrity": "sha512-vAjbHDlr4izEiXM1OTggpCcPg9tn4YriK5vAjowJsHwdBIdx0fYRsURkxLG2RLm9gyBq66gwtWI8Gx0/ov+JKQ==",
"dependencies": [
-
"@img/sharp-libvips-linux-s390x"
+
"@img/sharp-libvips-linuxmusl-arm64@1.2.0"
]
},
-
"@img/sharp-linux-x64@0.33.5": {
-
"integrity": "sha512-opC+Ok5pRNAzuvq1AG0ar+1owsu842/Ab+4qvU879ippJBHvyY5n2mxF1izXqkPYlGuP/M556uh53jRLJmzTWA==",
+
"@img/sharp-linuxmusl-x64@0.34.1": {
+
"integrity": "sha512-pax/kTR407vNb9qaSIiWVnQplPcGU8LRIJpDT5o8PdAx5aAA7AS3X9PS8Isw1/WfqgQorPotjrZL3Pqh6C5EBg==",
"dependencies": [
-
"@img/sharp-libvips-linux-x64"
+
"@img/sharp-libvips-linuxmusl-x64@1.1.0"
]
},
-
"@img/sharp-linuxmusl-arm64@0.33.5": {
-
"integrity": "sha512-XrHMZwGQGvJg2V/oRSUfSAfjfPxO+4DkiRh6p2AFjLQztWUuY/o8Mq0eMQVIY7HJ1CDQUJlxGGZRw1a5bqmd1g==",
+
"@img/sharp-linuxmusl-x64@0.34.2": {
+
"integrity": "sha512-DOYMrDm5E6/8bm/yQLCWyuDJwUnlevR8xtF8bs+gjZ7cyUNYXiSf/E8Kp0Ss5xasIaXSHzb888V1BE4i1hFhAA==",
"dependencies": [
-
"@img/sharp-libvips-linuxmusl-arm64"
+
"@img/sharp-libvips-linuxmusl-x64@1.1.0"
]
},
-
"@img/sharp-linuxmusl-x64@0.33.5": {
-
"integrity": "sha512-WT+d/cgqKkkKySYmqoZ8y3pxx7lx9vVejxW/W4DOFMYVSkErR+w7mf2u8m/y4+xHe7yY9DAXQMWQhpnMuFfScw==",
+
"@img/sharp-linuxmusl-x64@0.34.3": {
+
"integrity": "sha512-gCWUn9547K5bwvOn9l5XGAEjVTTRji4aPTqLzGXHvIr6bIDZKNTA34seMPgM0WmSf+RYBH411VavCejp3PkOeQ==",
"dependencies": [
-
"@img/sharp-libvips-linuxmusl-x64"
+
"@img/sharp-libvips-linuxmusl-x64@1.2.0"
]
},
-
"@img/sharp-wasm32@0.33.5": {
-
"integrity": "sha512-ykUW4LVGaMcU9lu9thv85CbRMAwfeadCJHRsg2GmeRa/cJxsVY9Rbd57JcMxBkKHag5U/x7TSBpScF4U8ElVzg==",
+
"@img/sharp-wasm32@0.34.1": {
+
"integrity": "sha512-YDybQnYrLQfEpzGOQe7OKcyLUCML4YOXl428gOOzBgN6Gw0rv8dpsJ7PqTHxBnXnwXr8S1mYFSLSa727tpz0xg==",
"dependencies": [
-
"@emnapi/runtime"
+
"@emnapi/runtime@1.4.3"
]
},
-
"@img/sharp-win32-ia32@0.33.5": {
-
"integrity": "sha512-T36PblLaTwuVJ/zw/LaH0PdZkRz5rd3SmMHX8GSmR7vtNSP5Z6bQkExdSK7xGWyxLw4sUknBuugTelgw2faBbQ=="
+
"@img/sharp-wasm32@0.34.2": {
+
"integrity": "sha512-/VI4mdlJ9zkaq53MbIG6rZY+QRN3MLbR6usYlgITEzi4Rpx5S6LFKsycOQjkOGmqTNmkIdLjEvooFKwww6OpdQ==",
+
"dependencies": [
+
"@emnapi/runtime@1.4.3"
+
]
},
-
"@img/sharp-win32-x64@0.33.5": {
-
"integrity": "sha512-MpY/o8/8kj+EcnxwvrP4aTJSWw/aZ7JIGR4aBeZkZw5B7/Jn+tY9/VNwtcoGmdT7GfggGIU4kygOMSbYnOrAbg=="
+
"@img/sharp-wasm32@0.34.3": {
+
"integrity": "sha512-+CyRcpagHMGteySaWos8IbnXcHgfDn7pO2fiC2slJxvNq9gDipYBN42/RagzctVRKgxATmfqOSulgZv5e1RdMg==",
+
"dependencies": [
+
"@emnapi/runtime@1.4.4"
+
]
+
},
+
"@img/sharp-win32-arm64@0.34.2": {
+
"integrity": "sha512-cfP/r9FdS63VA5k0xiqaNaEoGxBg9k7uE+RQGzuK9fHt7jib4zAVVseR9LsE4gJcNWgT6APKMNnCcnyOtmSEUQ=="
+
},
+
"@img/sharp-win32-arm64@0.34.3": {
+
"integrity": "sha512-MjnHPnbqMXNC2UgeLJtX4XqoVHHlZNd+nPt1kRPmj63wURegwBhZlApELdtxM2OIZDRv/DFtLcNhVbd1z8GYXQ=="
+
},
+
"@img/sharp-win32-ia32@0.34.1": {
+
"integrity": "sha512-WKf/NAZITnonBf3U1LfdjoMgNO5JYRSlhovhRhMxXVdvWYveM4kM3L8m35onYIdh75cOMCo1BexgVQcCDzyoWw=="
+
},
+
"@img/sharp-win32-ia32@0.34.2": {
+
"integrity": "sha512-QLjGGvAbj0X/FXl8n1WbtQ6iVBpWU7JO94u/P2M4a8CFYsvQi4GW2mRy/JqkRx0qpBzaOdKJKw8uc930EX2AHw=="
+
},
+
"@img/sharp-win32-ia32@0.34.3": {
+
"integrity": "sha512-xuCdhH44WxuXgOM714hn4amodJMZl3OEvf0GVTm0BEyMeA2to+8HEdRPShH0SLYptJY1uBw+SCFP9WVQi1Q/cw=="
+
},
+
"@img/sharp-win32-x64@0.34.1": {
+
"integrity": "sha512-hw1iIAHpNE8q3uMIRCgGOeDoz9KtFNarFLQclLxr/LK1VBkj8nby18RjFvr6aP7USRYAjTZW6yisnBWMX571Tw=="
+
},
+
"@img/sharp-win32-x64@0.34.2": {
+
"integrity": "sha512-aUdT6zEYtDKCaxkofmmJDJYGCf0+pJg3eU9/oBuqvEeoB9dKI6ZLc/1iLJCTuJQDO4ptntAlkUmHgGjyuobZbw=="
+
},
+
"@img/sharp-win32-x64@0.34.3": {
+
"integrity": "sha512-OWwz05d++TxzLEv4VnsTz5CmZ6mI6S05sfQGEMrNrQcOEERbX46332IvE7pO/EUiw7jUrrS40z/M7kPyjfl04g=="
},
"@isaacs/cliui@8.0.2": {
"integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==",
···
"wrap-ansi-cjs@npm:wrap-ansi@7.0.0"
]
},
-
"@jridgewell/gen-mapping@0.3.8": {
-
"integrity": "sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA==",
+
"@isaacs/fs-minipass@4.0.1": {
+
"integrity": "sha512-wgm9Ehl2jpeqP3zw/7mo3kRHFp5MEDhqAdwy1fTGkHAwnkGOVsgpvQhL8B5n1qlb01jV3n/bI0ZfZp5lWA1k4w==",
+
"dependencies": [
+
"minipass"
+
]
+
},
+
"@jridgewell/gen-mapping@0.3.12": {
+
"integrity": "sha512-OuLGC46TjB5BbN1dH8JULVVZY4WTdkF7tV9Ys6wLL1rubZnCMstOhNHueU5bLCrnRuDhKPDM4g6sw4Bel5Gzqg==",
"dependencies": [
-
"@jridgewell/set-array",
"@jridgewell/sourcemap-codec",
"@jridgewell/trace-mapping"
]
···
"@jridgewell/resolve-uri@3.1.2": {
"integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw=="
},
-
"@jridgewell/set-array@1.2.1": {
-
"integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A=="
-
},
-
"@jridgewell/sourcemap-codec@1.5.0": {
-
"integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ=="
+
"@jridgewell/sourcemap-codec@1.5.4": {
+
"integrity": "sha512-VT2+G1VQs/9oz078bLrYbecdZKs912zQlkelYpuf+SXF+QvZDYJlbx/LSx+meSAwdDFnF8FVXW92AVjjkVmgFw=="
},
-
"@jridgewell/trace-mapping@0.3.25": {
-
"integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==",
+
"@jridgewell/trace-mapping@0.3.29": {
+
"integrity": "sha512-uw6guiW/gcAGPDhLmd77/6lW8QLeiV5RUTsAX46Db6oLhGaVj4lhnPwb184s1bkc8kdVg/+h988dro8GRDpmYQ==",
"dependencies": [
"@jridgewell/resolve-uri",
"@jridgewell/sourcemap-codec"
]
},
-
"@js-temporal/polyfill@0.4.4": {
-
"integrity": "sha512-2X6bvghJ/JAoZO52lbgyAPFj8uCflhTo2g7nkFzEQdXd/D8rEeD4HtmTEpmtGCva260fcd66YNXBOYdnmHqSOg==",
+
"@napi-rs/wasm-runtime@0.2.12": {
+
"integrity": "sha512-ZVWUcfwY4E/yPitQJl481FjFo3K22D6qF0DuFH6Y/nbnE11GY5uguDxZMGXPQ8WQ0128MXQD7TnfHyK4oWoIJQ==",
"dependencies": [
-
"jsbi",
-
"tslib"
+
"@emnapi/core",
+
"@emnapi/runtime@1.4.3",
+
"@tybys/wasm-util@0.10.0"
]
},
-
"@nodelib/fs.scandir@2.1.5": {
-
"integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==",
+
"@napi-rs/wasm-runtime@0.2.9": {
+
"integrity": "sha512-OKRBiajrrxB9ATokgEQoG87Z25c67pCpYcCwmXYX8PBftC9pBfN18gnm/fh1wurSLEKIAt+QRFLFCQISrb66Jg==",
"dependencies": [
-
"@nodelib/fs.stat",
-
"run-parallel"
+
"@emnapi/core",
+
"@emnapi/runtime@1.4.3",
+
"@tybys/wasm-util@0.9.0"
]
},
-
"@nodelib/fs.stat@2.0.5": {
-
"integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A=="
-
},
-
"@nodelib/fs.walk@1.2.8": {
-
"integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==",
-
"dependencies": [
-
"@nodelib/fs.scandir",
-
"fastq"
-
]
-
},
-
"@nolebase/markdown-it-bi-directional-links@2.14.0_markdown-it@14.1.0": {
-
"integrity": "sha512-AyWeMzGj8o90XYcEUcvM2DEuL3a+4vmZGZC+usGgOWrR3fArgEpQtYvZ7C51GopDfMLa/kD0mue/CxdJFK/ryw==",
+
"@nolebase/markdown-it-bi-directional-links@2.18.0_markdown-it@14.1.0": {
+
"integrity": "sha512-4h0KyNvL+UqxqIpPtRtZ9nLB1OuY2e9URDmvPLfzjkCQMwObOsQ+TvoOvdGeVGdZLUa37UmeeVCIVfLAH8Rbjg==",
"dependencies": [
"colorette",
-
"debug",
+
"debug@4.4.1",
"markdown-it",
"tinyglobby"
]
},
-
"@pagefind/darwin-arm64@1.3.0": {
-
"integrity": "sha512-365BEGl6ChOsauRjyVpBjXybflXAOvoMROw3TucAROHIcdBvXk9/2AmEvGFU0r75+vdQI4LJdJdpH4Y6Yqaj4A=="
-
},
-
"@pagefind/darwin-x64@1.3.0": {
-
"integrity": "sha512-zlGHA23uuXmS8z3XxEGmbHpWDxXfPZ47QS06tGUq0HDcZjXjXHeLG+cboOy828QIV5FXsm9MjfkP5e4ZNbOkow=="
-
},
-
"@pagefind/linux-arm64@1.3.0": {
-
"integrity": "sha512-8lsxNAiBRUk72JvetSBXs4WRpYrQrVJXjlRRnOL6UCdBN9Nlsz0t7hWstRk36+JqHpGWOKYiuHLzGYqYAqoOnQ=="
-
},
-
"@pagefind/linux-x64@1.3.0": {
-
"integrity": "sha512-hAvqdPJv7A20Ucb6FQGE6jhjqy+vZ6pf+s2tFMNtMBG+fzcdc91uTw7aP/1Vo5plD0dAOHwdxfkyw0ugal4kcQ=="
-
},
-
"@pagefind/windows-x64@1.3.0": {
-
"integrity": "sha512-BR1bIRWOMqkf8IoU576YDhij1Wd/Zf2kX/kCI0b2qzCKC8wcc2GQJaaRMCpzvCCrmliO4vtJ6RITp/AnoYUUmQ=="
-
},
"@pkgjs/parseargs@0.11.0": {
"integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg=="
},
-
"@shuding/opentype.js@1.4.0-beta.0": {
-
"integrity": "sha512-3NgmNyH3l/Hv6EvsWJbsvpcpUba6R8IREQ83nH83cyakCw7uM1arZKNfHwv1Wz6jgqrF/j4x5ELvR6PnK9nTcA==",
+
"@puppeteer/browsers@2.3.0": {
+
"integrity": "sha512-ioXoq9gPxkss4MYhD+SFaU9p1IHFUX0ILAWFPyjGaBdjLsYAlZw6j1iLA0N/m12uVHLFDfSYNF7EQccjinIMDA==",
"dependencies": [
-
"fflate",
-
"string.prototype.codepointat"
+
"debug@4.4.1",
+
"extract-zip",
+
"progress",
+
"proxy-agent",
+
"semver@7.7.2",
+
"tar-fs",
+
"unbzip2-stream",
+
"yargs"
]
},
-
"@sidvind/better-ajv-errors@3.0.1_ajv@8.17.1": {
-
"integrity": "sha512-++1mEYIeozfnwWI9P1ECvOPoacy+CgDASrmGvXPMCcqgx0YUzB01vZ78uHdQ443V6sTY+e9MzHqmN9DOls02aw==",
+
"@sidvind/better-ajv-errors@4.0.0_ajv@8.17.1": {
+
"integrity": "sha512-rLZQkN6IfNwG6iqZZwqFMcs7DvQX3ZrLVhsHmSO1LUA4EZAz+VZLpTBCIOFsC5Qu3xuwzVfRMZ+1rtk/mCRRZw==",
"dependencies": [
"ajv",
"kleur@4.1.5"
]
},
+
"@sindresorhus/slugify@2.2.1": {
+
"integrity": "sha512-MkngSCRZ8JdSOCHRaYd+D01XhvU3Hjy6MGl06zhOk614hp9EOAp5gIkBeQg7wtmxpitU6eAL4kdiRMcJa2dlrw==",
+
"dependencies": [
+
"@sindresorhus/transliterate",
+
"escape-string-regexp"
+
]
+
},
+
"@sindresorhus/transliterate@1.6.0": {
+
"integrity": "sha512-doH1gimEu3A46VX6aVxpHTeHrytJAG6HgdxntYnCFiIFHEM/ZGpG8KiZGBChchjQmG0XFIBL552kBTjVcMZXwQ==",
+
"dependencies": [
+
"escape-string-regexp"
+
]
+
},
+
"@tailwindcss/node@4.1.11": {
+
"integrity": "sha512-yzhzuGRmv5QyU9qLNg4GTlYI6STedBWRE7NjxP45CsFYYq9taI0zJXZBMqIC/c8fViNLhmrbpSFS57EoxUmD6Q==",
+
"dependencies": [
+
"@ampproject/remapping",
+
"enhanced-resolve",
+
"jiti",
+
"lightningcss",
+
"magic-string",
+
"source-map-js",
+
"tailwindcss@4.1.11"
+
]
+
},
"@tailwindcss/oxide-android-arm64@4.0.3": {
"integrity": "sha512-S8XOTQuMnpijZRlPm5HBzPJjZ28quB+40LSRHjRnQF6rRYKsvpr1qkY7dfwsetNdd+kMLOMDsvmuT8WnqqETvg=="
},
-
"@tailwindcss/oxide-android-arm64@4.0.6": {
-
"integrity": "sha512-xDbym6bDPW3D2XqQqX3PjqW3CKGe1KXH7Fdkc60sX5ZLVUbzPkFeunQaoP+BuYlLc2cC1FoClrIRYnRzof9Sow=="
+
"@tailwindcss/oxide-android-arm64@4.1.11": {
+
"integrity": "sha512-3IfFuATVRUMZZprEIx9OGDjG3Ou3jG4xQzNTvjDoKmU9JdmoCohQJ83MYd0GPnQIu89YoJqvMM0G3uqLRFtetg=="
+
},
+
"@tailwindcss/oxide-android-arm64@4.1.4": {
+
"integrity": "sha512-xMMAe/SaCN/vHfQYui3fqaBDEXMu22BVwQ33veLc8ep+DNy7CWN52L+TTG9y1K397w9nkzv+Mw+mZWISiqhmlA=="
},
"@tailwindcss/oxide-darwin-arm64@4.0.3": {
"integrity": "sha512-smrY2DpzhXvgDhZtQlYAl8+vxJ04lv2/64C1eiRxvsRT2nkw/q+zA1/eAYKvUHat6cIuwqDku3QucmrUT6pCeg=="
},
-
"@tailwindcss/oxide-darwin-arm64@4.0.6": {
-
"integrity": "sha512-1f71/ju/tvyGl5c2bDkchZHy8p8EK/tDHCxlpYJ1hGNvsYihZNurxVpZ0DefpN7cNc9RTT8DjrRoV8xXZKKRjg=="
+
"@tailwindcss/oxide-darwin-arm64@4.1.11": {
+
"integrity": "sha512-ESgStEOEsyg8J5YcMb1xl8WFOXfeBmrhAwGsFxxB2CxY9evy63+AtpbDLAyRkJnxLy2WsD1qF13E97uQyP1lfQ=="
+
},
+
"@tailwindcss/oxide-darwin-arm64@4.1.4": {
+
"integrity": "sha512-JGRj0SYFuDuAGilWFBlshcexev2hOKfNkoX+0QTksKYq2zgF9VY/vVMq9m8IObYnLna0Xlg+ytCi2FN2rOL0Sg=="
},
"@tailwindcss/oxide-darwin-x64@4.0.3": {
"integrity": "sha512-NTz8x/LcGUjpZAWUxz0ZuzHao90Wj9spoQgomwB+/hgceh5gcJDfvaBYqxLFpKzVglpnbDSq1Fg0p0zI4oa5Pg=="
},
-
"@tailwindcss/oxide-darwin-x64@4.0.6": {
-
"integrity": "sha512-s/hg/ZPgxFIrGMb0kqyeaqZt505P891buUkSezmrDY6lxv2ixIELAlOcUVTkVh245SeaeEiUVUPiUN37cwoL2g=="
+
"@tailwindcss/oxide-darwin-x64@4.1.11": {
+
"integrity": "sha512-EgnK8kRchgmgzG6jE10UQNaH9Mwi2n+yw1jWmof9Vyg2lpKNX2ioe7CJdf9M5f8V9uaQxInenZkOxnTVL3fhAw=="
+
},
+
"@tailwindcss/oxide-darwin-x64@4.1.4": {
+
"integrity": "sha512-sdDeLNvs3cYeWsEJ4H1DvjOzaGios4QbBTNLVLVs0XQ0V95bffT3+scptzYGPMjm7xv4+qMhCDrkHwhnUySEzA=="
},
"@tailwindcss/oxide-freebsd-x64@4.0.3": {
"integrity": "sha512-yQc9Q0JCOp3kkAV8gKgDctXO60IkQhHpqGB+KgOccDtD5UmN6Q5+gd+lcsDyQ7N8dRuK1fAud51xQpZJgKfm7g=="
},
-
"@tailwindcss/oxide-freebsd-x64@4.0.6": {
-
"integrity": "sha512-Z3Wo8FWZnmio8+xlcbb7JUo/hqRMSmhQw8IGIRoRJ7GmLR0C+25Wq+bEX/135xe/yEle2lFkhu9JBHd4wZYiig=="
+
"@tailwindcss/oxide-freebsd-x64@4.1.11": {
+
"integrity": "sha512-xdqKtbpHs7pQhIKmqVpxStnY1skuNh4CtbcyOHeX1YBE0hArj2romsFGb6yUmzkq/6M24nkxDqU8GYrKrz+UcA=="
+
},
+
"@tailwindcss/oxide-freebsd-x64@4.1.4": {
+
"integrity": "sha512-VHxAqxqdghM83HslPhRsNhHo91McsxRJaEnShJOMu8mHmEj9Ig7ToHJtDukkuLWLzLboh2XSjq/0zO6wgvykNA=="
},
"@tailwindcss/oxide-linux-arm-gnueabihf@4.0.3": {
"integrity": "sha512-e1ivVMLSnxTOU1O3npnxN16FEyWM/g3SuH2pP6udxXwa0/SnSAijRwcAYRpqIlhVKujr158S8UeHxQjC4fGl4w=="
},
-
"@tailwindcss/oxide-linux-arm-gnueabihf@4.0.6": {
-
"integrity": "sha512-SNSwkkim1myAgmnbHs4EjXsPL7rQbVGtjcok5EaIzkHkCAVK9QBQsWeP2Jm2/JJhq4wdx8tZB9Y7psMzHYWCkA=="
+
"@tailwindcss/oxide-linux-arm-gnueabihf@4.1.11": {
+
"integrity": "sha512-ryHQK2eyDYYMwB5wZL46uoxz2zzDZsFBwfjssgB7pzytAeCCa6glsiJGjhTEddq/4OsIjsLNMAiMlHNYnkEEeg=="
+
},
+
"@tailwindcss/oxide-linux-arm-gnueabihf@4.1.4": {
+
"integrity": "sha512-OTU/m/eV4gQKxy9r5acuesqaymyeSCnsx1cFto/I1WhPmi5HDxX1nkzb8KYBiwkHIGg7CTfo/AcGzoXAJBxLfg=="
},
"@tailwindcss/oxide-linux-arm64-gnu@4.0.3": {
"integrity": "sha512-PLrToqQqX6sdJ9DmMi8IxZWWrfjc9pdi9AEEPTrtMts3Jm9HBi1WqEeF1VwZZ2aW9TXloE5OwA35zuuq1Bhb/Q=="
},
-
"@tailwindcss/oxide-linux-arm64-gnu@4.0.6": {
-
"integrity": "sha512-tJ+mevtSDMQhKlwCCuhsFEFg058kBiSy4TkoeBG921EfrHKmexOaCyFKYhVXy4JtkaeeOcjJnCLasEeqml4i+Q=="
+
"@tailwindcss/oxide-linux-arm64-gnu@4.1.11": {
+
"integrity": "sha512-mYwqheq4BXF83j/w75ewkPJmPZIqqP1nhoghS9D57CLjsh3Nfq0m4ftTotRYtGnZd3eCztgbSPJ9QhfC91gDZQ=="
+
},
+
"@tailwindcss/oxide-linux-arm64-gnu@4.1.4": {
+
"integrity": "sha512-hKlLNvbmUC6z5g/J4H+Zx7f7w15whSVImokLPmP6ff1QqTVE+TxUM9PGuNsjHvkvlHUtGTdDnOvGNSEUiXI1Ww=="
},
"@tailwindcss/oxide-linux-arm64-musl@4.0.3": {
"integrity": "sha512-YlzRxx7N1ampfgSKzEDw0iwDkJXUInR4cgNEqmR4TzHkU2Vhg59CGPJrTI7dxOBofD8+O35R13Nk9Ytyv0JUFg=="
},
-
"@tailwindcss/oxide-linux-arm64-musl@4.0.6": {
-
"integrity": "sha512-IoArz1vfuTR4rALXMUXI/GWWfx2EaO4gFNtBNkDNOYhlTD4NVEwE45nbBoojYiTulajI4c2XH8UmVEVJTOJKxA=="
+
"@tailwindcss/oxide-linux-arm64-musl@4.1.11": {
+
"integrity": "sha512-m/NVRFNGlEHJrNVk3O6I9ggVuNjXHIPoD6bqay/pubtYC9QIdAMpS+cswZQPBLvVvEF6GtSNONbDkZrjWZXYNQ=="
+
},
+
"@tailwindcss/oxide-linux-arm64-musl@4.1.4": {
+
"integrity": "sha512-X3As2xhtgPTY/m5edUtddmZ8rCruvBvtxYLMw9OsZdH01L2gS2icsHRwxdU0dMItNfVmrBezueXZCHxVeeb7Aw=="
},
"@tailwindcss/oxide-linux-x64-gnu@4.0.3": {
"integrity": "sha512-Xfc3z/li6XkuD7Hs+Uk6pjyCXnfnd9zuQTKOyDTZJ544xc2yoMKUkuDw6Et9wb31MzU2/c0CIUpTDa71lL9KHw=="
},
-
"@tailwindcss/oxide-linux-x64-gnu@4.0.6": {
-
"integrity": "sha512-QtsUfLkEAeWAC3Owx9Kg+7JdzE+k9drPhwTAXbXugYB9RZUnEWWx5x3q/au6TvUYcL+n0RBqDEO2gucZRvRFgQ=="
+
"@tailwindcss/oxide-linux-x64-gnu@4.1.11": {
+
"integrity": "sha512-YW6sblI7xukSD2TdbbaeQVDysIm/UPJtObHJHKxDEcW2exAtY47j52f8jZXkqE1krdnkhCMGqP3dbniu1Te2Fg=="
+
},
+
"@tailwindcss/oxide-linux-x64-gnu@4.1.4": {
+
"integrity": "sha512-2VG4DqhGaDSmYIu6C4ua2vSLXnJsb/C9liej7TuSO04NK+JJJgJucDUgmX6sn7Gw3Cs5ZJ9ZLrnI0QRDOjLfNQ=="
},
"@tailwindcss/oxide-linux-x64-musl@4.0.3": {
"integrity": "sha512-ugKVqKzwa/cjmqSQG17aS9DYrEcQ/a5NITcgmOr3JLW4Iz64C37eoDlkC8tIepD3S/Td/ywKAolTQ8fKbjEL4g=="
},
-
"@tailwindcss/oxide-linux-x64-musl@4.0.6": {
-
"integrity": "sha512-QthvJqIji2KlGNwLcK/PPYo7w1Wsi/8NK0wAtRGbv4eOPdZHkQ9KUk+oCoP20oPO7i2a6X1aBAFQEL7i08nNMA=="
+
"@tailwindcss/oxide-linux-x64-musl@4.1.11": {
+
"integrity": "sha512-e3C/RRhGunWYNC3aSF7exsQkdXzQ/M+aYuZHKnw4U7KQwTJotnWsGOIVih0s2qQzmEzOFIJ3+xt7iq67K/p56Q=="
+
},
+
"@tailwindcss/oxide-linux-x64-musl@4.1.4": {
+
"integrity": "sha512-v+mxVgH2kmur/X5Mdrz9m7TsoVjbdYQT0b4Z+dr+I4RvreCNXyCFELZL/DO0M1RsidZTrm6O1eMnV6zlgEzTMQ=="
+
},
+
"@tailwindcss/oxide-wasm32-wasi@4.1.11": {
+
"integrity": "sha512-Xo1+/GU0JEN/C/dvcammKHzeM6NqKovG+6921MR6oadee5XPBaKOumrJCXvopJ/Qb5TH7LX/UAywbqrP4lax0g==",
+
"dependencies": [
+
"@emnapi/core",
+
"@emnapi/runtime@1.4.3",
+
"@emnapi/wasi-threads",
+
"@napi-rs/wasm-runtime@0.2.12",
+
"@tybys/wasm-util@0.9.0",
+
"tslib"
+
]
+
},
+
"@tailwindcss/oxide-wasm32-wasi@4.1.4": {
+
"integrity": "sha512-2TLe9ir+9esCf6Wm+lLWTMbgklIjiF0pbmDnwmhR9MksVOq+e8aP3TSsXySnBDDvTTVd/vKu1aNttEGj3P6l8Q==",
+
"dependencies": [
+
"@emnapi/core",
+
"@emnapi/runtime@1.4.3",
+
"@emnapi/wasi-threads",
+
"@napi-rs/wasm-runtime@0.2.9",
+
"@tybys/wasm-util@0.9.0",
+
"tslib"
+
]
},
"@tailwindcss/oxide-win32-arm64-msvc@4.0.3": {
"integrity": "sha512-qHPDMl+UUwsk1RMJMgAXvhraWqUUT+LR/tkXix5RA39UGxtTrHwsLIN1AhNxI5i2RFXAXfmFXDqZCdyQ4dWmAQ=="
},
-
"@tailwindcss/oxide-win32-arm64-msvc@4.0.6": {
-
"integrity": "sha512-+oka+dYX8jy9iP00DJ9Y100XsqvbqR5s0yfMZJuPR1H/lDVtDfsZiSix1UFBQ3X1HWxoEEl6iXNJHWd56TocVw=="
+
"@tailwindcss/oxide-win32-arm64-msvc@4.1.11": {
+
"integrity": "sha512-UgKYx5PwEKrac3GPNPf6HVMNhUIGuUh4wlDFR2jYYdkX6pL/rn73zTq/4pzUm8fOjAn5L8zDeHp9iXmUGOXZ+w=="
+
},
+
"@tailwindcss/oxide-win32-arm64-msvc@4.1.4": {
+
"integrity": "sha512-VlnhfilPlO0ltxW9/BgfLI5547PYzqBMPIzRrk4W7uupgCt8z6Trw/tAj6QUtF2om+1MH281Pg+HHUJoLesmng=="
},
"@tailwindcss/oxide-win32-x64-msvc@4.0.3": {
"integrity": "sha512-+ujwN4phBGyOsPyLgGgeCyUm4Mul+gqWVCIGuSXWgrx9xVUnf6LVXrw0BDBc9Aq1S2qMyOTX4OkCGbZeoIo8Qw=="
},
-
"@tailwindcss/oxide-win32-x64-msvc@4.0.6": {
-
"integrity": "sha512-+o+juAkik4p8Ue/0LiflQXPmVatl6Av3LEZXpBTfg4qkMIbZdhCGWFzHdt2NjoMiLOJCFDddoV6GYaimvK1Olw=="
+
"@tailwindcss/oxide-win32-x64-msvc@4.1.11": {
+
"integrity": "sha512-YfHoggn1j0LK7wR82TOucWc5LDCguHnoS879idHekmmiR7g9HUtMw9MI0NHatS28u/Xlkfi9w5RJWgz2Dl+5Qg=="
+
},
+
"@tailwindcss/oxide-win32-x64-msvc@4.1.4": {
+
"integrity": "sha512-+7S63t5zhYjslUGb8NcgLpFXD+Kq1F/zt5Xv5qTv7HaFTG/DHyHD9GA6ieNAxhgyA4IcKa/zy7Xx4Oad2/wuhw=="
},
"@tailwindcss/oxide@4.0.3": {
"integrity": "sha512-FFcp3VNvRjjmFA39ORM27g2mbflMQljhvM7gxBAujHxUy4LXlKa6yMF9wbHdTbPqTONiCyyOYxccvJyVyI/XBg==",
···
"@tailwindcss/oxide-win32-x64-msvc@4.0.3"
]
},
-
"@tailwindcss/oxide@4.0.6": {
-
"integrity": "sha512-lVyKV2y58UE9CeKVcYykULe9QaE1dtKdxDEdrTPIdbzRgBk6bdxHNAoDqvcqXbIGXubn3VOl1O/CFF77v/EqSA==",
+
"@tailwindcss/oxide@4.1.11": {
+
"integrity": "sha512-Q69XzrtAhuyfHo+5/HMgr1lAiPP/G40OMFAnws7xcFEYqcypZmdW8eGXaOUIeOl1dzPJBPENXgbjsOyhg2nkrg==",
"dependencies": [
-
"@tailwindcss/oxide-android-arm64@4.0.6",
-
"@tailwindcss/oxide-darwin-arm64@4.0.6",
-
"@tailwindcss/oxide-darwin-x64@4.0.6",
-
"@tailwindcss/oxide-freebsd-x64@4.0.6",
-
"@tailwindcss/oxide-linux-arm-gnueabihf@4.0.6",
-
"@tailwindcss/oxide-linux-arm64-gnu@4.0.6",
-
"@tailwindcss/oxide-linux-arm64-musl@4.0.6",
-
"@tailwindcss/oxide-linux-x64-gnu@4.0.6",
-
"@tailwindcss/oxide-linux-x64-musl@4.0.6",
-
"@tailwindcss/oxide-win32-arm64-msvc@4.0.6",
-
"@tailwindcss/oxide-win32-x64-msvc@4.0.6"
+
"@tailwindcss/oxide-android-arm64@4.1.11",
+
"@tailwindcss/oxide-darwin-arm64@4.1.11",
+
"@tailwindcss/oxide-darwin-x64@4.1.11",
+
"@tailwindcss/oxide-freebsd-x64@4.1.11",
+
"@tailwindcss/oxide-linux-arm-gnueabihf@4.1.11",
+
"@tailwindcss/oxide-linux-arm64-gnu@4.1.11",
+
"@tailwindcss/oxide-linux-arm64-musl@4.1.11",
+
"@tailwindcss/oxide-linux-x64-gnu@4.1.11",
+
"@tailwindcss/oxide-linux-x64-musl@4.1.11",
+
"@tailwindcss/oxide-wasm32-wasi@4.1.11",
+
"@tailwindcss/oxide-win32-arm64-msvc@4.1.11",
+
"@tailwindcss/oxide-win32-x64-msvc@4.1.11",
+
"detect-libc",
+
"tar"
+
]
+
},
+
"@tailwindcss/oxide@4.1.4": {
+
"integrity": "sha512-p5wOpXyOJx7mKh5MXh5oKk+kqcz8T+bA3z/5VWWeQwFrmuBItGwz8Y2CHk/sJ+dNb9B0nYFfn0rj/cKHZyjahQ==",
+
"dependencies": [
+
"@tailwindcss/oxide-android-arm64@4.1.4",
+
"@tailwindcss/oxide-darwin-arm64@4.1.4",
+
"@tailwindcss/oxide-darwin-x64@4.1.4",
+
"@tailwindcss/oxide-freebsd-x64@4.1.4",
+
"@tailwindcss/oxide-linux-arm-gnueabihf@4.1.4",
+
"@tailwindcss/oxide-linux-arm64-gnu@4.1.4",
+
"@tailwindcss/oxide-linux-arm64-musl@4.1.4",
+
"@tailwindcss/oxide-linux-x64-gnu@4.1.4",
+
"@tailwindcss/oxide-linux-x64-musl@4.1.4",
+
"@tailwindcss/oxide-wasm32-wasi@4.1.4",
+
"@tailwindcss/oxide-win32-arm64-msvc@4.1.4",
+
"@tailwindcss/oxide-win32-x64-msvc@4.1.4"
]
+
},
+
"@testim/chrome-version@1.1.4": {
+
"integrity": "sha512-kIhULpw9TrGYnHp/8VfdcneIcxKnLixmADtukQRtJUmsVlMg0niMkwV0xZmi8hqa57xqilIHjWFA0GKvEjVU5g=="
+
},
+
"@tootallnate/quickjs-emscripten@0.23.0": {
+
"integrity": "sha512-C5Mc6rdnsaJDjO3UpGW/CQTHtCKaYlScZTly4JIu97Jxo/odCiH0ITnDXSJPTOrEKk/ycSZ0AOgTmkDtkOsvIA=="
},
"@trysound/sax@0.2.0": {
"integrity": "sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA=="
},
+
"@tybys/wasm-util@0.10.0": {
+
"integrity": "sha512-VyyPYFlOMNylG45GoAe0xDoLwWuowvf92F9kySqzYh8vmYm7D2u4iUJKa1tOUpS70Ku13ASrOkS4ScXFsTaCNQ==",
+
"dependencies": [
+
"tslib"
+
]
+
},
+
"@tybys/wasm-util@0.9.0": {
+
"integrity": "sha512-6+7nlbMVX/PVDCwaIQ8nTOPveOcFLSt8GcXdx8hD0bt39uWxYT88uXzqTd4fTvqta7oeUJqudepapKNt2DYJFw==",
+
"dependencies": [
+
"tslib"
+
]
+
},
"@types/estree@1.0.6": {
"integrity": "sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw=="
},
+
"@types/node@14.18.63": {
+
"integrity": "sha512-fAtCfv4jJg+ExtXhvCkCqUKZ+4ok/JQk01qDKhL5BDDoS3AxKXhV5/MAVUZyQnSEd2GT92fkgZl0pz0Q0AzcIQ=="
+
},
+
"@types/node@22.12.0": {
+
"integrity": "sha512-Fll2FZ1riMjNmlmJOdAyY5pUbkftXslB5DgEzlIuNaiWhXd00FhWxVC/r4yV/4wBb9JfImTu+jiSvXTkJ7F/gA==",
+
"dependencies": [
+
"undici-types"
+
]
+
},
+
"@types/yauzl@2.10.3": {
+
"integrity": "sha512-oJoftv0LSuaDZE3Le4DbKX+KS9G36NzOeSap90UIK0yMA/NhKJhqlSGtNDORNRaIbQfzjXDrQa0ytJ6mNRGz/Q==",
+
"dependencies": [
+
"@types/node@22.12.0"
+
]
+
},
+
"accessibility-checker@4.0.6": {
+
"integrity": "sha512-no0sJFq/MgGx2PvuZebxAWt2b8bwXLqZT2Bex65TpDK6uVYs0+duVhVz0wSWPc4cldPWZA0lOryhA0WzvL/gBA==",
+
"dependencies": [
+
"chromedriver",
+
"deep-diff",
+
"exceljs",
+
"js-yaml",
+
"puppeteer",
+
"string-hash"
+
]
+
},
+
"agent-base@7.1.4": {
+
"integrity": "sha512-MnA+YT8fwfJPgBx3m60MNqakm30XOkyIoH1y6huTQvC0PwZG7ki8NacLBcrPbNoo8vEZy7Jpuk7+jMO+CUovTQ=="
+
},
"ajv@8.17.1": {
"integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==",
"dependencies": [
···
"ansi-styles@6.2.1": {
"integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug=="
},
-
"any-promise@1.3.0": {
-
"integrity": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A=="
+
"archiver-utils@2.1.0": {
+
"integrity": "sha512-bEL/yUb/fNNiNTuUz979Z0Yg5L+LzLxGJz8x79lYmR54fmTIb6ob/hNQgkQnIUDWIFjZVQwl9Xs356I6BAMHfw==",
+
"dependencies": [
+
"glob@7.2.3",
+
"graceful-fs",
+
"lazystream",
+
"lodash.defaults",
+
"lodash.difference",
+
"lodash.flatten",
+
"lodash.isplainobject",
+
"lodash.union",
+
"normalize-path",
+
"readable-stream@2.3.8"
+
]
},
-
"anymatch@3.1.3": {
-
"integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==",
+
"archiver-utils@3.0.4": {
+
"integrity": "sha512-KVgf4XQVrTjhyWmx6cte4RxonPLR9onExufI1jhvw/MQ4BB6IsZD5gT8Lq+u/+pRkWna/6JoHpiQioaqFP5Rzw==",
"dependencies": [
+
"glob@7.2.3",
+
"graceful-fs",
+
"lazystream",
+
"lodash.defaults",
+
"lodash.difference",
+
"lodash.flatten",
+
"lodash.isplainobject",
+
"lodash.union",
"normalize-path",
-
"picomatch@2.3.1"
+
"readable-stream@3.6.2"
]
},
-
"arg@5.0.2": {
-
"integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg=="
+
"archiver@5.3.2": {
+
"integrity": "sha512-+25nxyyznAXF7Nef3y0EbBeqmGZgeN/BxHX29Rs39djAfaFalmQ89SE6CWyDCHzGL0yt/ycBtNOmGTW0FyGWNw==",
+
"dependencies": [
+
"archiver-utils@2.1.0",
+
"async",
+
"buffer-crc32",
+
"readable-stream@3.6.2",
+
"readdir-glob",
+
"tar-stream@2.2.0",
+
"zip-stream"
+
]
},
"argparse@2.0.1": {
"integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q=="
},
-
"autoprefixer@10.4.20_postcss@8.5.1": {
-
"integrity": "sha512-XY25y5xSv/wEoqzDyXXME4AFfkZI0P23z6Fs3YgymDnKJkCGOnkL0iTxCa85UTqaSgfcqyf3UA6+c7wUvx/16g==",
+
"ast-types@0.13.4": {
+
"integrity": "sha512-x1FCFnFifvYDDzTaLII71vG5uvDwgtmDTEVWAxrgeiR8VjMONcCXJx7E+USjDtHlwFmt9MysbqgF9b9Vjr6w+w==",
"dependencies": [
-
"browserslist",
-
"caniuse-lite",
-
"fraction.js",
-
"normalize-range",
-
"picocolors",
-
"postcss@8.5.1",
-
"postcss-value-parser"
+
"tslib"
]
},
+
"async@3.2.6": {
+
"integrity": "sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA=="
+
},
+
"asynckit@0.4.0": {
+
"integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q=="
+
},
+
"axios@1.10.0": {
+
"integrity": "sha512-/1xYAC4MP/HEG+3duIhFr4ZQXR4sQXOIe+o6sdqzeykGLx6Upp/1p8MHqhINOvGeP7xyNHe7tsiJByc4SSVUxw==",
+
"dependencies": [
+
"follow-redirects",
+
"form-data",
+
"proxy-from-env"
+
]
+
},
+
"b4a@1.6.7": {
+
"integrity": "sha512-OnAYlL5b7LEkALw87fUVafQw5rVR9RjwGd4KUwNQ6DrrNmaVaUCgLipfVlzrPQ4tWOR9P0IXGNOx50jYCCdSJg=="
+
},
"balanced-match@1.0.2": {
"integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw=="
},
-
"base64-js@0.0.8": {
-
"integrity": "sha512-3XSA2cR/h/73EzlXXdU6YNycmYI7+kicTxks4eJg2g39biHR84slg2+des+p7iHYhbRg/udIS4TD53WabcOUkw=="
+
"bare-events@2.6.0": {
+
"integrity": "sha512-EKZ5BTXYExaNqi3I3f9RtEsaI/xBSGjE0XZCZilPzFAV/goswFHuPd9jEZlPIZ/iNZJwDSao9qRiScySz7MbQg=="
+
},
+
"bare-fs@4.1.6_bare-events@2.6.0": {
+
"integrity": "sha512-25RsLF33BqooOEFNdMcEhMpJy8EoR88zSMrnOQOaM3USnOK2VmaJ1uaQEwPA6AQjrv1lXChScosN6CzbwbO9OQ==",
+
"dependencies": [
+
"bare-events",
+
"bare-path",
+
"bare-stream"
+
]
+
},
+
"bare-os@3.6.1": {
+
"integrity": "sha512-uaIjxokhFidJP+bmmvKSgiMzj2sV5GPHaZVAIktcxcpCyBFFWO+YlikVAdhmUo2vYFvFhOXIAlldqV29L8126g=="
+
},
+
"bare-path@3.0.0": {
+
"integrity": "sha512-tyfW2cQcB5NN8Saijrhqn0Zh7AnFNsnczRcuWODH0eYAXBsJ5gVxAUuNr7tsHSC6IZ77cA0SitzT+s47kot8Mw==",
+
"dependencies": [
+
"bare-os"
+
]
+
},
+
"bare-stream@2.6.5_bare-events@2.6.0": {
+
"integrity": "sha512-jSmxKJNJmHySi6hC42zlZnq00rga4jjxcgNZjY9N5WlOe/iOoGRtdwGsHzQv2RlH2KOYMwGUXhf2zXd32BA9RA==",
+
"dependencies": [
+
"bare-events",
+
"streamx"
+
]
+
},
+
"base64-js@1.5.1": {
+
"integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA=="
},
-
"binary-extensions@2.3.0": {
-
"integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw=="
+
"basic-ftp@5.0.5": {
+
"integrity": "sha512-4Bcg1P8xhUuqcii/S0Z9wiHIrQVPMermM1any+MX5GeGD7faD3/msQUDGLol9wOcz4/jbg/WJnGqoJF6LiBdtg=="
+
},
+
"big-integer@1.6.52": {
+
"integrity": "sha512-QxD8cf2eVqJOOz63z6JIN9BzvVs/dlySa5HGSBH5xtR8dPteIRQnBxxKqkNTiT6jbDTF6jAfrd4oMcND9RGbQg=="
+
},
+
"binary@0.3.0": {
+
"integrity": "sha512-D4H1y5KYwpJgK8wk1Cue5LLPgmwHKYSChkbspQg5JtVuR5ulGckxfR62H3AE9UDkdMC8yyXlqYihuz3Aqg2XZg==",
+
"dependencies": [
+
"buffers",
+
"chainsaw"
+
]
+
},
+
"bl@4.1.0": {
+
"integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==",
+
"dependencies": [
+
"buffer",
+
"inherits",
+
"readable-stream@3.6.2"
+
]
+
},
+
"bluebird@3.4.7": {
+
"integrity": "sha512-iD3898SR7sWVRHbiQv+sHUtHnMvC1o3nW5rAcqnq3uOn07DSAppZYUkIGslDz6gXC7HfunPe7YVBgoEJASPcHA=="
},
"boolbase@1.0.0": {
"integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww=="
},
-
"brace-expansion@1.1.11": {
-
"integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
+
"brace-expansion@1.1.12": {
+
"integrity": "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==",
"dependencies": [
"balanced-match",
"concat-map"
]
},
-
"brace-expansion@2.0.1": {
-
"integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==",
+
"brace-expansion@2.0.2": {
+
"integrity": "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==",
"dependencies": [
"balanced-match"
]
},
-
"braces@3.0.3": {
-
"integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==",
+
"buffer-crc32@0.2.13": {
+
"integrity": "sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ=="
+
},
+
"buffer-indexof-polyfill@1.0.2": {
+
"integrity": "sha512-I7wzHwA3t1/lwXQh+A5PbNvJxgfo5r3xulgpYDB5zckTu/Z9oUK9biouBKQUjEqzaz3HnAT6TYoovmE+GqSf7A=="
+
},
+
"buffer@5.7.1": {
+
"integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==",
+
"dependencies": [
+
"base64-js",
+
"ieee754"
+
]
+
},
+
"buffers@0.1.1": {
+
"integrity": "sha512-9q/rDEGSb/Qsvv2qvzIzdluL5k7AaJOTrw23z9reQthrbF7is4CtlT0DXyO1oei2DCp4uojjzQ7igaSHp1kAEQ=="
+
},
+
"call-bind-apply-helpers@1.0.2": {
+
"integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==",
"dependencies": [
-
"fill-range"
+
"es-errors",
+
"function-bind"
]
},
-
"browserslist@4.24.4": {
-
"integrity": "sha512-KDi1Ny1gSePi1vm0q4oxSF8b4DR44GF4BbmS2YdhPLOEqd8pDviZOGH/GsmRwoWJ2+5Lr085X7naowMwKHDG1A==",
+
"callsites@3.1.0": {
+
"integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ=="
+
},
+
"chainsaw@0.1.0": {
+
"integrity": "sha512-75kWfWt6MEKNC8xYXIdRpDehRYY/tNSgwKaJq+dbbDcxORuVrrQ+SEHoWsniVn9XPYfP4gmdWIeDk/4YNp1rNQ==",
"dependencies": [
-
"caniuse-lite",
-
"electron-to-chromium",
-
"node-releases",
-
"update-browserslist-db"
+
"traverse"
]
},
-
"camelcase-css@2.0.1": {
-
"integrity": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA=="
+
"chownr@3.0.0": {
+
"integrity": "sha512-+IxzY9BZOQd/XuYPRmrvEVjF/nqj5kgT4kEq7VofrDoM1MxoRjEWkrCC3EtLi59TVawxTAn+orJwFQcrqEN1+g=="
},
-
"camelize@1.0.1": {
-
"integrity": "sha512-dU+Tx2fsypxTgtLoE36npi3UqcjSSMNYfkqgmoEhtZrraP5VWq0K7FkWVTYa8eMPtnU/G2txVsfdCJTn9uzpuQ=="
+
"chromedriver@138.0.2": {
+
"integrity": "sha512-mmAtTCK0GHum+zbgcv3PYDX7tqNdTXDsd2t6WWI/Tm/Ts2xCGlc5XUcL3oxw1Dn/kmPJOurwrYJKO7vV4xkisA==",
+
"dependencies": [
+
"@testim/chrome-version",
+
"axios",
+
"compare-versions",
+
"extract-zip",
+
"proxy-agent",
+
"proxy-from-env",
+
"tcp-port-used"
+
]
},
-
"caniuse-lite@1.0.30001696": {
-
"integrity": "sha512-pDCPkvzfa39ehJtJ+OwGT/2yvT2SbjfHhiIW2LWOAcMQ7BzwxT/XuyUp4OTOd0XFWA6BKw0JalnBHgSi5DGJBQ=="
+
"chromium-bidi@0.6.3_devtools-protocol@0.0.1312386": {
+
"integrity": "sha512-qXlsCmpCZJAnoTYI83Iu6EdYQpMYdVkCfq08KDh2pmlVqK5t5IA9mGs4/LwCwp4fqisSOMXZxP3HIh8w8aRn0A==",
+
"dependencies": [
+
"devtools-protocol",
+
"mitt",
+
"urlpattern-polyfill",
+
"zod"
+
]
},
-
"chokidar@3.6.0": {
-
"integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==",
+
"cliui@8.0.1": {
+
"integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==",
"dependencies": [
-
"anymatch",
-
"braces",
-
"fsevents",
-
"glob-parent@5.1.2",
-
"is-binary-path",
-
"is-glob",
-
"normalize-path",
-
"readdirp"
+
"string-width@4.2.3",
+
"strip-ansi@6.0.1",
+
"wrap-ansi@7.0.0"
]
},
"color-convert@2.0.1": {
···
"colorette@2.0.20": {
"integrity": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w=="
},
-
"commander@12.1.0": {
-
"integrity": "sha512-Vw8qHK3bZM9y/P10u3Vib8o/DdkvA2OtPtZvD871QKjy74Wj1WSKFILMPRPSdUSx5RFK1arlJzEtA4PkFgnbuA=="
+
"combined-stream@1.0.8": {
+
"integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==",
+
"dependencies": [
+
"delayed-stream"
+
]
},
-
"commander@4.1.1": {
-
"integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA=="
+
"commander@11.1.0": {
+
"integrity": "sha512-yPVavfyCcRhmorC7rWlkHn15b4wDVgVmBA7kV4QVBsF7kv/9TKJAbAXVTxvTnwP8HHKjRCJDClKbciiYS7p0DQ=="
},
"commander@7.2.0": {
"integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw=="
},
+
"compare-versions@6.1.1": {
+
"integrity": "sha512-4hm4VPpIecmlg59CHXnRDnqGplJFrbLG4aFEl5vl6cK1u76ws3LLvX7ikFnTDl5vo39sjWD6AaDPYodJp/NNHg=="
+
},
+
"compress-commons@4.1.2": {
+
"integrity": "sha512-D3uMHtGc/fcO1Gt1/L7i1e33VOvD4A9hfQLP+6ewd+BvG/gQ84Yh4oftEhAdjSMgBgwGL+jsppT7JYNpo6MHHg==",
+
"dependencies": [
+
"buffer-crc32",
+
"crc32-stream",
+
"normalize-path",
+
"readable-stream@3.6.2"
+
]
+
},
"concat-map@0.0.1": {
"integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg=="
},
+
"core-util-is@1.0.3": {
+
"integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ=="
+
},
+
"cosmiconfig@9.0.0": {
+
"integrity": "sha512-itvL5h8RETACmOTFc4UfIyB2RfEHi71Ax6E/PivVxq9NseKbOWpeyHEOIbmAw1rs8Ak0VursQNww7lf7YtUwzg==",
+
"dependencies": [
+
"env-paths",
+
"import-fresh",
+
"js-yaml",
+
"parse-json"
+
]
+
},
+
"crc-32@1.2.2": {
+
"integrity": "sha512-ROmzCKrTnOwybPcJApAA6WBWij23HVfGVNKqqrZpuyZOHqK2CwHSvpGuyt/UNNvaIjEd8X5IFGp4Mh+Ie1IHJQ=="
+
},
+
"crc32-stream@4.0.3": {
+
"integrity": "sha512-NT7w2JVU7DFroFdYkeq8cywxrgjPHWkdX1wjpRQXPX5Asews3tA+Ght6lddQO5Mkumffp3X7GEqku3epj2toIw==",
+
"dependencies": [
+
"crc-32",
+
"readable-stream@3.6.2"
+
]
+
},
"cross-spawn@7.0.6": {
"integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==",
"dependencies": [
···
"which"
]
},
-
"css-background-parser@0.1.0": {
-
"integrity": "sha512-2EZLisiZQ+7m4wwur/qiYJRniHX4K5Tc9w93MT3AS0WS1u5kaZ4FKXlOTBhOjc+CgEgPiGY+fX1yWD8UwpEqUA=="
-
},
-
"css-box-shadow@1.0.0-3": {
-
"integrity": "sha512-9jaqR6e7Ohds+aWwmhe6wILJ99xYQbfmK9QQB9CcMjDbTxPZjwEmUQpU91OG05Xgm8BahT5fW+svbsQGjS/zPg=="
-
},
-
"css-color-keywords@1.0.0": {
-
"integrity": "sha512-FyyrDHZKEjXDpNJYvVsV960FiqQyXc/LlYmsxl2BcdMb2WPx0OGRVgTg55rPSyLSNMqP52R9r8geSp7apN3Ofg=="
-
},
-
"css-gradient-parser@0.0.16": {
-
"integrity": "sha512-3O5QdqgFRUbXvK1x5INf1YkBz1UKSWqrd63vWsum8MNHDBYD5urm3QtxZbKU259OrEXNM26lP/MPY3d1IGkBgA=="
-
},
"css-select@5.1.0": {
"integrity": "sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==",
"dependencies": [
···
"nth-check"
]
},
-
"css-to-react-native@3.2.0": {
-
"integrity": "sha512-e8RKaLXMOFii+02mOlqwjbD00KSEKqblnpO9e++1aXS1fPQOpS1YoqdVHBqPjHNoxeF2mimzVqawm2KCbEdtHQ==",
-
"dependencies": [
-
"camelize",
-
"css-color-keywords",
-
"postcss-value-parser"
-
]
-
},
"css-tree@2.2.1": {
"integrity": "sha512-OA0mILzGc1kCOCSJerOeqDxDQ4HOh+G8NbOJFOTgOCzpw7fCBubk0fEyxp8AgOL/jvLgYA/uV0cMbe43ElF1JA==",
"dependencies": [
···
"source-map-js"
]
},
+
"css-tree@3.1.0": {
+
"integrity": "sha512-0eW44TGN5SQXU1mWSkKwFstI/22X2bG1nYzZTYMAWjylYURhse752YgbE4Cx46AC+bAvI+/dYTPRk1LqSUnu6w==",
+
"dependencies": [
+
"mdn-data@2.12.2",
+
"source-map-js"
+
]
+
},
"css-what@6.1.0": {
"integrity": "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw=="
-
},
-
"cssesc@3.0.0": {
-
"integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg=="
},
"csso@5.0.5": {
"integrity": "sha512-0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ==",
···
"css-tree@2.2.1"
]
},
+
"data-uri-to-buffer@6.0.2": {
+
"integrity": "sha512-7hvf7/GW8e86rW0ptuwS3OcBGDjIi6SZva7hCyWC0yYry2cOPmLIjXAUHI6DK2HsnwJd9ifmt57i8eV2n4YNpw=="
+
},
"date-fns@4.1.0": {
"integrity": "sha512-Ukq0owbQXxa/U3EGtsdVBkR1w7KOQ5gIBqdH2hkvknzZPYvBxb/aa6E8L7tmjFtkwZBu3UXBbjIgPo/Ez4xaNg=="
},
-
"debug@4.4.0": {
-
"integrity": "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==",
+
"dayjs@1.11.13": {
+
"integrity": "sha512-oaMBel6gjolK862uaPQOVTA7q3TZhuSvuMQAAglQDOWYO9A91IrAOUJEyKVlqJlHE0vq5p5UXxzdPfMH/x6xNg=="
+
},
+
"debug@4.3.1": {
+
"integrity": "sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ==",
"dependencies": [
-
"ms"
+
"ms@2.1.2"
]
},
-
"detect-libc@2.0.3": {
-
"integrity": "sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw=="
+
"debug@4.4.1": {
+
"integrity": "sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==",
+
"dependencies": [
+
"ms@2.1.3"
+
]
},
-
"didyoumean@1.2.2": {
-
"integrity": "sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw=="
+
"deep-diff@1.0.2": {
+
"integrity": "sha512-aWS3UIVH+NPGCD1kki+DCU9Dua032iSsO43LqQpcs4R3+dVv7tX0qBGjiVHJHjplsoUM2XRO/KB92glqc68awg=="
+
},
+
"deep-is@0.1.4": {
+
"integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ=="
+
},
+
"degenerator@5.0.1": {
+
"integrity": "sha512-TllpMR/t0M5sqCXfj85i4XaAzxmS5tVA16dqvdkMwGmzI+dXLXnw3J+3Vdv7VKw+ThlTMboK6i9rnZ6Nntj5CQ==",
+
"dependencies": [
+
"ast-types",
+
"escodegen",
+
"esprima"
+
]
+
},
+
"delayed-stream@1.0.0": {
+
"integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ=="
+
},
+
"detect-libc@2.0.4": {
+
"integrity": "sha512-3UDv+G9CsCKO1WKMGw9fwq/SWJYbI0c5Y7LU1AXYoDdbhE2AHQ6N6Nb34sG8Fj7T5APy8qXDCKuuIHd1BR0tVA=="
},
-
"dlv@1.1.3": {
-
"integrity": "sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA=="
+
"devtools-protocol@0.0.1312386": {
+
"integrity": "sha512-DPnhUXvmvKT2dFA/j7B+riVLUt9Q6RKJlcppojL5CoRywJJKLDYnRlw0gTFKfgDPHP5E04UoB71SxoJlVZy8FA=="
},
"dom-serializer@2.0.0": {
"integrity": "sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==",
···
"domhandler"
]
},
-
"dprint@0.49.0": {
-
"integrity": "sha512-xtBPZbPKWOOJH5al4h6rgzsGHuXpyK7TFJCQ5/TW8Z4zkcB9dfmPAh14/Yp5YZcB798D0liztXw+Nd7suzdzBQ==",
+
"dprint@0.49.1": {
+
"integrity": "sha512-pO9XH79SyXybj2Vhc9ITZMEI8cJkdlQQRoD8oEfPH6Jjpp/7WX5kIgECVd3DBOjjAdCSiW6R47v3gJBx/qZVkw==",
"dependencies": [
"@dprint/darwin-arm64",
"@dprint/darwin-x64",
···
"@dprint/win32-x64"
]
},
+
"dunder-proto@1.0.1": {
+
"integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==",
+
"dependencies": [
+
"call-bind-apply-helpers",
+
"es-errors",
+
"gopd"
+
]
+
},
+
"duplexer2@0.1.4": {
+
"integrity": "sha512-asLFVfWWtJ90ZyOUHMqk7/S2w2guQKxUI2itj3d92ADHhxUSbCMGi1f1cBcJ7xM1To+pE/Khbwo1yuNbMEPKeA==",
+
"dependencies": [
+
"readable-stream@2.3.8"
+
]
+
},
"eastasianwidth@0.2.0": {
"integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA=="
},
-
"electron-to-chromium@1.5.90": {
-
"integrity": "sha512-C3PN4aydfW91Natdyd449Kw+BzhLmof6tzy5W1pFC5SpQxVXT+oyiyOG9AgYYSN9OdA/ik3YkCrpwqI8ug5Tug=="
-
},
-
"emoji-regex@10.4.0": {
-
"integrity": "sha512-EC+0oUMY1Rqm4O6LLrgjtYDvcVYTy7chDnM4Q7030tP4Kwj3u/pR6gP9ygnp2CJMK5Gq+9Q2oqmrFJAz01DXjw=="
-
},
"emoji-regex@8.0.0": {
"integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A=="
},
"emoji-regex@9.2.2": {
"integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg=="
},
+
"end-of-stream@1.4.5": {
+
"integrity": "sha512-ooEGc6HP26xXq/N+GCGOT0JKCLDGrq2bQUZrQ7gyrJiZANJ/8YDTxTpQBXGMn+WbIQXNVpyWymm7KYVICQnyOg==",
+
"dependencies": [
+
"once"
+
]
+
},
+
"enhanced-resolve@5.18.2": {
+
"integrity": "sha512-6Jw4sE1maoRJo3q8MsSIn2onJFbLTOjY9hlx4DZXmOKvLRd1Ok2kXmAGXaafL2+ijsJZ1ClYbl/pmqr9+k4iUQ==",
+
"dependencies": [
+
"graceful-fs",
+
"tapable"
+
]
+
},
"entities@4.5.0": {
"integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw=="
},
+
"env-paths@2.2.1": {
+
"integrity": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A=="
+
},
+
"error-ex@1.3.2": {
+
"integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==",
+
"dependencies": [
+
"is-arrayish@0.2.1"
+
]
+
},
+
"es-define-property@1.0.1": {
+
"integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g=="
+
},
+
"es-errors@1.3.0": {
+
"integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw=="
+
},
+
"es-object-atoms@1.1.1": {
+
"integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==",
+
"dependencies": [
+
"es-errors"
+
]
+
},
+
"es-set-tostringtag@2.1.0": {
+
"integrity": "sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==",
+
"dependencies": [
+
"es-errors",
+
"get-intrinsic",
+
"has-tostringtag",
+
"hasown"
+
]
+
},
"escalade@3.2.0": {
"integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA=="
},
-
"escape-html@1.0.3": {
-
"integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow=="
+
"escape-string-regexp@5.0.0": {
+
"integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw=="
+
},
+
"escodegen@2.1.0": {
+
"integrity": "sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==",
+
"dependencies": [
+
"esprima",
+
"estraverse",
+
"esutils",
+
"source-map"
+
]
+
},
+
"esprima@4.0.1": {
+
"integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A=="
+
},
+
"estraverse@5.3.0": {
+
"integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA=="
},
"estree-walker@3.0.3": {
"integrity": "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==",
···
"@types/estree"
]
},
-
"fast-deep-equal@3.1.3": {
-
"integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q=="
+
"esutils@2.0.3": {
+
"integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g=="
},
-
"fast-glob@3.3.1": {
-
"integrity": "sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==",
+
"exceljs@4.4.0": {
+
"integrity": "sha512-XctvKaEMaj1Ii9oDOqbW/6e1gXknSY4g/aLCDicOXqBE4M0nRWkUu0PTp++UPNzoFY12BNHMfs/VadKIS6llvg==",
"dependencies": [
-
"@nodelib/fs.stat",
-
"@nodelib/fs.walk",
-
"glob-parent@5.1.2",
-
"merge2",
-
"micromatch@4.0.5"
+
"archiver",
+
"dayjs",
+
"fast-csv",
+
"jszip",
+
"readable-stream@3.6.2",
+
"saxes",
+
"tmp",
+
"unzipper",
+
"uuid"
]
},
-
"fast-glob@3.3.3": {
-
"integrity": "sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==",
+
"extract-zip@2.0.1": {
+
"integrity": "sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==",
+
"dependencies": [
+
"@types/yauzl",
+
"debug@4.4.1",
+
"get-stream",
+
"yauzl"
+
]
+
},
+
"fast-csv@4.3.6": {
+
"integrity": "sha512-2RNSpuwwsJGP0frGsOmTb9oUF+VkFSM4SyLTDgwf2ciHWTarN0lQTC+F2f/t5J9QjW+c65VFIAAu85GsvMIusw==",
"dependencies": [
-
"@nodelib/fs.stat",
-
"@nodelib/fs.walk",
-
"glob-parent@5.1.2",
-
"merge2",
-
"micromatch@4.0.8"
+
"@fast-csv/format",
+
"@fast-csv/parse"
]
},
+
"fast-deep-equal@3.1.3": {
+
"integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q=="
+
},
+
"fast-fifo@1.3.2": {
+
"integrity": "sha512-/d9sfos4yxzpwkDkuN7k2SqFKtYNmCTzgfEpz82x34IM9/zc8KGxQoXg1liNC/izpRM/MBdt44Nmx41ZWqk+FQ=="
+
},
"fast-uri@3.0.6": {
"integrity": "sha512-Atfo14OibSv5wAp4VWNsFYE1AchQRTv9cBGWET4pZWHzYshFSS9NQI6I57rdKn9croWVMbYFbLhJ+yJvmZIIHw=="
},
-
"fastq@1.15.0": {
-
"integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==",
+
"fd-slicer@1.1.0": {
+
"integrity": "sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==",
"dependencies": [
-
"reusify"
+
"pend"
]
},
-
"fdir@6.4.3_picomatch@4.0.2": {
-
"integrity": "sha512-PMXmW2y1hDDfTSRc9gaXIuCCRpuoz3Kaz8cUelp3smouvfT632ozg2vrT6lJsHKKOF59YLbOGfAWGUcKEfRMQw==",
+
"fdir@6.4.6_picomatch@4.0.2": {
+
"integrity": "sha512-hiFoqpyZcfNm1yc4u8oWCf9A2c4D3QjCrks3zmoVKVxpQRzmPNar1hUJcBG2RQHvEVGDN+Jm81ZheVLAQMK6+w==",
"dependencies": [
-
"picomatch@4.0.2"
+
"picomatch"
]
},
-
"fflate@0.7.4": {
-
"integrity": "sha512-5u2V/CDW15QM1XbbgS+0DfPxVB+jUKhWEKuuFuHncbk3tEEqzmoXL+2KyOFuKGqOnmdIy0/davWF1CkuwtibCw=="
+
"follow-redirects@1.15.9": {
+
"integrity": "sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ=="
},
-
"fill-range@7.1.1": {
-
"integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==",
+
"foreground-child@3.3.1": {
+
"integrity": "sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==",
"dependencies": [
-
"to-regex-range"
+
"cross-spawn",
+
"signal-exit"
]
},
-
"foreground-child@3.3.0": {
-
"integrity": "sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==",
+
"form-data@4.0.3": {
+
"integrity": "sha512-qsITQPfmvMOSAdeyZ+12I1c+CKSstAFAwu+97zrnWAbIr5u8wfsExUzCesVLC8NgHuRUqNN4Zy6UPWUTRGslcA==",
"dependencies": [
-
"cross-spawn",
-
"signal-exit"
+
"asynckit",
+
"combined-stream",
+
"es-set-tostringtag",
+
"hasown",
+
"mime-types"
]
},
-
"fraction.js@4.3.7": {
-
"integrity": "sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew=="
+
"fs-constants@1.0.0": {
+
"integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow=="
},
"fs.realpath@1.0.0": {
"integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw=="
},
-
"fsevents@2.3.3": {
-
"integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw=="
+
"fstream@1.0.12": {
+
"integrity": "sha512-WvJ193OHa0GHPEL+AycEJgxvBEwyfRkN1vhjca23OaPVMCaLCXTd5qAu82AjTcgP1UJmytkOKb63Ypde7raDIg==",
+
"dependencies": [
+
"graceful-fs",
+
"inherits",
+
"mkdirp@0.5.6",
+
"rimraf"
+
]
},
-
"glob-parent@5.1.2": {
-
"integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==",
+
"function-bind@1.1.2": {
+
"integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA=="
+
},
+
"get-caller-file@2.0.5": {
+
"integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg=="
+
},
+
"get-intrinsic@1.3.0": {
+
"integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==",
+
"dependencies": [
+
"call-bind-apply-helpers",
+
"es-define-property",
+
"es-errors",
+
"es-object-atoms",
+
"function-bind",
+
"get-proto",
+
"gopd",
+
"has-symbols",
+
"hasown",
+
"math-intrinsics"
+
]
+
},
+
"get-proto@1.0.1": {
+
"integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==",
+
"dependencies": [
+
"dunder-proto",
+
"es-object-atoms"
+
]
+
},
+
"get-stream@5.2.0": {
+
"integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==",
"dependencies": [
-
"is-glob"
+
"pump"
]
},
-
"glob-parent@6.0.2": {
-
"integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==",
+
"get-uri@6.0.5": {
+
"integrity": "sha512-b1O07XYq8eRuVzBNgJLstU6FYc1tS6wnMtF1I1D9lE8LxZSOGZ7LhxN54yPP6mGw5f2CkXY2BQUL9Fx41qvcIg==",
"dependencies": [
-
"is-glob"
+
"basic-ftp",
+
"data-uri-to-buffer",
+
"debug@4.4.1"
]
},
"glob@10.4.5": {
"integrity": "sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==",
"dependencies": [
"foreground-child",
-
"jackspeak@3.4.3",
+
"jackspeak",
"minimatch@9.0.5",
"minipass",
"package-json-from-dist",
-
"path-scurry@1.11.1"
-
]
-
},
-
"glob@11.0.1": {
-
"integrity": "sha512-zrQDm8XPnYEKawJScsnM0QzobJxlT/kHOOlRTio8IH/GrmxRE5fjllkzdaHclIuNjUQTJYH2xHNIGfdpJkDJUw==",
-
"dependencies": [
-
"foreground-child",
-
"jackspeak@4.0.2",
-
"minimatch@10.0.1",
-
"minipass",
-
"package-json-from-dist",
-
"path-scurry@2.0.0"
+
"path-scurry"
},
-
"glob@7.1.6": {
-
"integrity": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==",
+
"glob@7.2.3": {
+
"integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==",
"dependencies": [
"fs.realpath",
"inflight",
···
"path-is-absolute"
},
-
"has@1.0.4": {
-
"integrity": "sha512-qdSAmqLF6209RFj4VVItywPMbm3vWylknmB3nvNiUIs72xAimcM8nVYxYr7ncvZq5qzk9MKIZR8ijqD/1QuYjQ=="
+
"gopd@1.2.0": {
+
"integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg=="
},
-
"hex-rgb@4.3.0": {
-
"integrity": "sha512-Ox1pJVrDCyGHMG9CFg1tmrRUMRPRsAWYc/PinY0XzJU4K7y7vjNoLKIQ7BR5UJMCxNN8EM1MNDmHWA/B3aZUuw=="
+
"graceful-fs@4.2.11": {
+
"integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ=="
},
-
"highlight.js@11.11.1": {
-
"integrity": "sha512-Xwwo44whKBVCYoliBQwaPvtd/2tYFkRQtXDWj1nackaV2JPXx3L0+Jvd8/qCJ2p+ML0/XVkJ2q+Mr+UVdpJK5w=="
+
"has-symbols@1.1.0": {
+
"integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ=="
+
},
+
"has-tostringtag@1.0.2": {
+
"integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==",
+
"dependencies": [
+
"has-symbols"
+
]
+
},
+
"hasown@2.0.2": {
+
"integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==",
+
"dependencies": [
+
"function-bind"
+
]
},
-
"html-validate@9.4.0_ajv@8.17.1": {
-
"integrity": "sha512-Io8vjeAf2JJJTHJDGvozVB6Vv/IZRkNRruSENg9lmLzE1gUcr77sIdtE2rzwLkBsCESDv5+nAAtk2TCer78jxA==",
+
"html-validate@9.7.1_ajv@8.17.1": {
+
"integrity": "sha512-sOCmfMGrSwax20SG2s+4iC8WqsE7JqncN6kh+YFwrb/gvP2VYN8WEnD4PIrnKBIeRf9ju8BGi50NdpHx9UNS9w==",
"dependencies": [
"@html-validate/stylish",
"@sidvind/better-ajv-errors",
···
"kleur@4.1.5",
"minimist",
"prompts",
-
"semver"
+
"semver@7.7.2"
+
]
+
},
+
"http-proxy-agent@7.0.2": {
+
"integrity": "sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==",
+
"dependencies": [
+
"agent-base",
+
"debug@4.4.1"
+
]
+
},
+
"https-proxy-agent@7.0.6": {
+
"integrity": "sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw==",
+
"dependencies": [
+
"agent-base",
+
"debug@4.4.1"
},
"ico-endec@0.1.6": {
"integrity": "sha512-ZdLU38ZoED3g1j3iEyzcQj+wAkY2xfWNkymszfJPoxucIUhK7NayQ+/C4Kv0nDFMIsbtbEHldv3V8PU494/ueQ=="
},
+
"ieee754@1.2.1": {
+
"integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA=="
+
},
+
"immediate@3.0.6": {
+
"integrity": "sha512-XXOFtyqDjNDAQxVfYxuF7g9Il/IbWmmlQg2MYKOH8ExIT1qg6xc4zyS3HaEEATgs1btfzxq15ciUiY7gjSXRGQ=="
+
},
+
"import-fresh@3.3.1": {
+
"integrity": "sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==",
+
"dependencies": [
+
"parent-module",
+
"resolve-from"
+
]
+
},
"inflight@1.0.6": {
"integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==",
"dependencies": [
···
"inherits@2.0.4": {
"integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ=="
},
-
"is-arrayish@0.3.2": {
-
"integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ=="
-
},
-
"is-binary-path@2.1.0": {
-
"integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==",
+
"ip-address@9.0.5": {
+
"integrity": "sha512-zHtQzGojZXTwZTHQqra+ETKd4Sn3vgi7uBmlPoXVWZqYvuKmtI0l/VZTjqGmJY9x88GGOaZ9+G9ES8hC4T4X8g==",
"dependencies": [
-
"binary-extensions"
+
"jsbn",
+
"sprintf-js"
},
-
"is-core-module@2.13.0": {
-
"integrity": "sha512-Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ==",
-
"dependencies": [
-
"has"
-
]
+
"ip-regex@4.3.0": {
+
"integrity": "sha512-B9ZWJxHHOHUhUjCPrMpLD4xEq35bUTClHM1S6CBU5ixQnkZmwipwgc96vAd7AAGM9TGHvJR+Uss+/Ak6UphK+Q=="
},
-
"is-extglob@2.1.1": {
-
"integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ=="
+
"is-arrayish@0.2.1": {
+
"integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg=="
+
},
+
"is-arrayish@0.3.2": {
+
"integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ=="
},
"is-fullwidth-code-point@3.0.0": {
"integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg=="
},
-
"is-glob@4.0.3": {
-
"integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==",
+
"is-url@1.2.4": {
+
"integrity": "sha512-ITvGim8FhRiYe4IQ5uHSkj7pVaPDrCTkNd3yq3cV7iZAcJdHTUMPMEHcqSOy9xZ9qFenQCvi+2wjH9a1nXqHww=="
+
},
+
"is2@2.0.9": {
+
"integrity": "sha512-rZkHeBn9Zzq52sd9IUIV3a5mfwBY+o2HePMh0wkGBM4z4qjvy2GwVxQ6nNXSfw6MmVP6gf1QIlWjiOavhM3x5g==",
"dependencies": [
-
"is-extglob"
+
"deep-is",
+
"ip-regex",
+
"is-url"
},
-
"is-number@7.0.0": {
-
"integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng=="
+
"isarray@1.0.0": {
+
"integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ=="
},
"isexe@2.0.0": {
"integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw=="
···
"@pkgjs/parseargs"
},
-
"jackspeak@4.0.2": {
-
"integrity": "sha512-bZsjR/iRjl1Nk1UkjGpAzLNfQtzuijhn2g+pbZb98HQ1Gk8vM9hfbxeMBP+M2/UUdwj0RqGG3mlvk2MsAqwvEw==",
+
"jiti@2.4.2": {
+
"integrity": "sha512-rg9zJN+G4n2nfJl5MW3BMygZX56zKPNVEYYqq7adpmMh4Jn2QNEwhvQlFy6jPVdcod7txZtKHWnyZiA3a0zP7A=="
+
},
+
"js-tokens@4.0.0": {
+
"integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ=="
+
},
+
"js-yaml@4.1.0": {
+
"integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==",
"dependencies": [
-
"@isaacs/cliui"
+
"argparse"
},
-
"jiti@1.21.7": {
-
"integrity": "sha512-/imKNG4EbWNrVjoNC/1H5/9GFy+tqjGBHCaSsN+P2RnPqjsLmv6UD3Ej+Kj8nBWaRAwyk7kK5ZUc+OEatnTR3A=="
+
"jsbn@1.1.0": {
+
"integrity": "sha512-4bYVV3aAMtDTTu4+xsDYa6sy9GyJ69/amsu9sYF2zqjiEoZA5xJi3BrfX3uY+/IekIu7MwdObdbDWpoZdBv3/A=="
},
-
"jsbi@4.3.0": {
-
"integrity": "sha512-SnZNcinB4RIcnEyZqFPdGPVgrg2AcnykiBy0sHVJQKHYeaLUvi3Exj+iaPpLnFVkDPZIV4U0yvgC9/R4uEAZ9g=="
+
"json-parse-even-better-errors@2.3.1": {
+
"integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w=="
},
"json-schema-traverse@1.0.0": {
"integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug=="
},
+
"jszip@3.10.1": {
+
"integrity": "sha512-xXDvecyTpGLrqFrvkrUSoxxfJI5AH7U8zxxtVclpsUtMCq4JQ290LY8AW5c7Ggnr/Y/oK+bQMbqK2qmtk3pN4g==",
+
"dependencies": [
+
"lie",
+
"pako",
+
"readable-stream@2.3.8",
+
"setimmediate"
+
]
+
},
"kleur@3.0.3": {
"integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w=="
},
"kleur@4.1.5": {
"integrity": "sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ=="
},
-
"lightningcss-wasm@1.29.1": {
-
"integrity": "sha512-yrcX5OfnB5NJY32h2kOCaUr/OUz/os51uy/dTqSi+Z5lkUgnI9XIzlFDjbru/DaMkJ7v08QKN14Yr75SvDnqjA==",
+
"lazystream@1.0.1": {
+
"integrity": "sha512-b94GiNHQNy6JNTrt5w6zNyffMrNkXZb3KTkCZJb2V1xaEGCk093vkZ2jk3tpaeP33/OiXC+WvK9AxUebnf5nbw==",
+
"dependencies": [
+
"readable-stream@2.3.8"
+
]
+
},
+
"lie@3.3.0": {
+
"integrity": "sha512-UaiMJzeWRlEujzAuw5LokY1L5ecNQYZKfmyZ9L7wDHb/p5etKaxXhohBcrw0EYby+G/NA52vRSN4N39dxHAIwQ==",
+
"dependencies": [
+
"immediate"
+
]
+
},
+
"lightningcss-darwin-arm64@1.30.1": {
+
"integrity": "sha512-c8JK7hyE65X1MHMN+Viq9n11RRC7hgin3HhYKhrMyaXflk5GVplZ60IxyoVtzILeKr+xAJwg6zK6sjTBJ0FKYQ=="
+
},
+
"lightningcss-darwin-x64@1.30.1": {
+
"integrity": "sha512-k1EvjakfumAQoTfcXUcHQZhSpLlkAuEkdMBsI/ivWw9hL+7FtilQc0Cy3hrx0AAQrVtQAbMI7YjCgYgvn37PzA=="
+
},
+
"lightningcss-freebsd-x64@1.30.1": {
+
"integrity": "sha512-kmW6UGCGg2PcyUE59K5r0kWfKPAVy4SltVeut+umLCFoJ53RdCUWxcRDzO1eTaxf/7Q2H7LTquFHPL5R+Gjyig=="
+
},
+
"lightningcss-linux-arm-gnueabihf@1.30.1": {
+
"integrity": "sha512-MjxUShl1v8pit+6D/zSPq9S9dQ2NPFSQwGvxBCYaBYLPlCWuPh9/t1MRS8iUaR8i+a6w7aps+B4N0S1TYP/R+Q=="
+
},
+
"lightningcss-linux-arm64-gnu@1.30.1": {
+
"integrity": "sha512-gB72maP8rmrKsnKYy8XUuXi/4OctJiuQjcuqWNlJQ6jZiWqtPvqFziskH3hnajfvKB27ynbVCucKSm2rkQp4Bw=="
+
},
+
"lightningcss-linux-arm64-musl@1.30.1": {
+
"integrity": "sha512-jmUQVx4331m6LIX+0wUhBbmMX7TCfjF5FoOH6SD1CttzuYlGNVpA7QnrmLxrsub43ClTINfGSYyHe2HWeLl5CQ=="
+
},
+
"lightningcss-linux-x64-gnu@1.30.1": {
+
"integrity": "sha512-piWx3z4wN8J8z3+O5kO74+yr6ze/dKmPnI7vLqfSqI8bccaTGY5xiSGVIJBDd5K5BHlvVLpUB3S2YCfelyJ1bw=="
+
},
+
"lightningcss-linux-x64-musl@1.30.1": {
+
"integrity": "sha512-rRomAK7eIkL+tHY0YPxbc5Dra2gXlI63HL+v1Pdi1a3sC+tJTcFrHX+E86sulgAXeI7rSzDYhPSeHHjqFhqfeQ=="
+
},
+
"lightningcss-wasm@1.29.3": {
+
"integrity": "sha512-j02QNSRVBKxsSBinpSCgx3x8XwwOoO50ekDO1O5rBf+dS0j46qSojv+3BDzMNCaGFJ18EjcnXGDkG3ImIbU/PQ==",
"dependencies": [
"napi-wasm"
},
-
"lilconfig@2.1.0": {
-
"integrity": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ=="
+
"lightningcss-wasm@1.30.1": {
+
"integrity": "sha512-KJTnKEn0REV6DoJzxG0m5EKVEFA1CVE1isDYpXjsuqWXwLKFPJtA9Z9BSzPZJwAZFN2KaUzy+IWGP59p5bm2sA==",
+
"dependencies": [
+
"napi-wasm"
+
]
+
},
+
"lightningcss-win32-arm64-msvc@1.30.1": {
+
"integrity": "sha512-mSL4rqPi4iXq5YVqzSsJgMVFENoa4nGTT/GjO2c0Yl9OuQfPsIfncvLrEW6RbbB24WtZ3xP/2CCmI3tNkNV4oA=="
},
-
"lilconfig@3.1.3": {
-
"integrity": "sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw=="
+
"lightningcss-win32-x64-msvc@1.30.1": {
+
"integrity": "sha512-PVqXh48wh4T53F/1CCu8PIPCxLzWyCnn/9T5W1Jpmdy5h9Cwd+0YQS6/LwhHXSafuc61/xg9Lv5OrCby6a++jg=="
},
-
"linebreak@1.1.0": {
-
"integrity": "sha512-MHp03UImeVhB7XZtjd0E4n6+3xr5Dq/9xI/5FptGk5FrbDR3zagPa2DS6U8ks/3HjbKWG9Q1M2ufOzxV2qLYSQ==",
+
"lightningcss@1.30.1": {
+
"integrity": "sha512-xi6IyHML+c9+Q3W0S4fCQJOym42pyurFiJUHEcEyHS0CeKzia4yZDEsLlqOFykxOdHpNy0NmvVO31vcSqAxJCg==",
"dependencies": [
-
"base64-js",
-
"unicode-trie"
+
"detect-libc",
+
"lightningcss-darwin-arm64",
+
"lightningcss-darwin-x64",
+
"lightningcss-freebsd-x64",
+
"lightningcss-linux-arm-gnueabihf",
+
"lightningcss-linux-arm64-gnu",
+
"lightningcss-linux-arm64-musl",
+
"lightningcss-linux-x64-gnu",
+
"lightningcss-linux-x64-musl",
+
"lightningcss-win32-arm64-msvc",
+
"lightningcss-win32-x64-msvc"
},
"lines-and-columns@1.2.4": {
···
"uc.micro"
},
+
"listenercount@1.0.1": {
+
"integrity": "sha512-3mk/Zag0+IJxeDrxSgaDPy4zZ3w05PRZeJNnlWhzFz5OkX49J4krc+A8X2d2M69vGMBEX0uyl8M+W+8gH+kBqQ=="
+
},
+
"lodash.defaults@4.2.0": {
+
"integrity": "sha512-qjxPLHd3r5DnsdGacqOMU6pb/avJzdh9tFX2ymgoZE27BmjXrNy/y4LoaiTeAb+O3gL8AfpJGtqfX/ae2leYYQ=="
+
},
+
"lodash.difference@4.5.0": {
+
"integrity": "sha512-dS2j+W26TQ7taQBGN8Lbbq04ssV3emRw4NY58WErlTO29pIqS0HmoT5aJ9+TUQ1N3G+JOZSji4eugsWwGp9yPA=="
+
},
+
"lodash.escaperegexp@4.1.2": {
+
"integrity": "sha512-TM9YBvyC84ZxE3rgfefxUWiQKLilstD6k7PTGt6wfbtXF8ixIJLOL3VYyV/z+ZiPLsVxAsKAFVwWlWeb2Y8Yyw=="
+
},
+
"lodash.flatten@4.4.0": {
+
"integrity": "sha512-C5N2Z3DgnnKr0LOpv/hKCgKdb7ZZwafIrsesve6lmzvZIRZRGaZ/l6Q8+2W7NaT+ZwO3fFlSCzCzrDCFdJfZ4g=="
+
},
+
"lodash.groupby@4.6.0": {
+
"integrity": "sha512-5dcWxm23+VAoz+awKmBaiBvzox8+RqMgFhi7UvX9DHZr2HdxHXM/Wrf8cfKpsW37RNrvtPn6hSwNqurSILbmJw=="
+
},
+
"lodash.isboolean@3.0.3": {
+
"integrity": "sha512-Bz5mupy2SVbPHURB98VAcw+aHh4vRV5IPNhILUCsOzRmsTmSQ17jIuqopAentWoehktxGd9e/hbIXq980/1QJg=="
+
},
+
"lodash.isequal@4.5.0": {
+
"integrity": "sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ=="
+
},
+
"lodash.isfunction@3.0.9": {
+
"integrity": "sha512-AirXNj15uRIMMPihnkInB4i3NHeb4iBtNg9WRWuK2o31S+ePwwNmDPaTL3o7dTJ+VXNZim7rFs4rxN4YU1oUJw=="
+
},
+
"lodash.isnil@4.0.0": {
+
"integrity": "sha512-up2Mzq3545mwVnMhTDMdfoG1OurpA/s5t88JmQX809eH3C8491iu2sfKhTfhQtKY78oPNhiaHJUpT/dUDAAtng=="
+
},
+
"lodash.isplainobject@4.0.6": {
+
"integrity": "sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA=="
+
},
+
"lodash.isundefined@3.0.1": {
+
"integrity": "sha512-MXB1is3s899/cD8jheYYE2V9qTHwKvt+npCwpD+1Sxm3Q3cECXCiYHjeHWXNwr6Q0SOBPrYUDxendrO6goVTEA=="
+
},
+
"lodash.union@4.6.0": {
+
"integrity": "sha512-c4pB2CdGrGdjMKYLA+XiRDO7Y0PRQbm/Gzg8qMj+QH+pFVAoTp5sBpO0odL3FjoPCGjK96p6qsP+yQoiLoOBcw=="
+
},
+
"lodash.uniq@4.5.0": {
+
"integrity": "sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ=="
+
},
"lru-cache@10.4.3": {
"integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ=="
},
-
"lru-cache@11.0.2": {
-
"integrity": "sha512-123qHRfJBmo2jXDbo/a5YOQrJoHF/GNQTLzQ5+IdK5pWpceK17yRc6ozlWd25FxvGKQbIUs91fDFkXmDHTKcyA=="
+
"lru-cache@7.18.3": {
+
"integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA=="
+
},
+
"magic-string@0.30.17": {
+
"integrity": "sha512-sNPKHvyjVf7gyjwS4xGTaW/mCnF8wnjtifKBEhxfZ7E/S8tQ0rssrwGNn6q8JH/ohItJfSQp9mBtQYuTlH5QnA==",
+
"dependencies": [
+
"@jridgewell/sourcemap-codec"
+
]
},
"markdown-it-attrs@4.3.1_markdown-it@14.1.0": {
"integrity": "sha512-/ko6cba+H6gdZ0DOw7BbNMZtfuJTRp9g/IrGIuz8lYc/EfnmWRpaR3CFPnNbVz0LDvF8Gf1hFGPqrQqq7De0rg==",
···
"markdown-it-deflist@3.0.0": {
"integrity": "sha512-OxPmQ/keJZwbubjiQWOvKLHwpV2wZ5I3Smc81OjhwbfJsjdRrvD5aLTQxmZzzePeO0kbGzAo3Krk4QLgA8PWLg=="
},
-
"markdown-it-inject-linenumbers@0.3.0": {
-
"integrity": "sha512-c9ymcXUunjCJ8vNBNrg3JMT5d94IxAy6KHJ891vuZf/go98opU77X5neiVIi9Rer3v+03WYk5913J1pVmJOV0g=="
-
},
-
"markdown-it-obsidian-callouts@0.3.1_markdown-it@14.1.0": {
-
"integrity": "sha512-MCvbHofaDxUD9hwrQg9+62Yq5Ev1K2glr5ogUxvFWm7WGG3SKqC90/ozWZ/ofqUvD5iw2KLElSWLHvL1crUeqA==",
-
"dependencies": [
-
"markdown-it"
-
]
-
},
"markdown-it@14.1.0": {
"integrity": "sha512-a54IwgWPaeBCAAsv13YgmALOF1elABB08FxO9i+r4VFk5Vl4pKokRPeX8u5TCgSsPi6ec1otfLjdOpVcgbpshg==",
"dependencies": [
···
"punycode.js",
"uc.micro"
+
},
+
"math-intrinsics@1.1.0": {
+
"integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g=="
},
"mdn-data@2.0.28": {
"integrity": "sha512-aylIc7Z9y4yzHYAJNuESG3hfhC+0Ibp/MAMiaOZgNv4pmEdFyfZhhhny4MNiAfWdBQ1RQ2mfDWmM1x8SvGyp8g=="
···
"mdn-data@2.0.30": {
"integrity": "sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA=="
},
+
"mdn-data@2.12.2": {
+
"integrity": "sha512-IEn+pegP1aManZuckezWCO+XZQDplx1366JoVhTpMpBB1sPey/SbveZQUosKiKiGYjg1wH4pMlNgXbCiYgihQA=="
+
},
"mdurl@2.0.0": {
"integrity": "sha512-Lf+9+2r+Tdp5wXDXC4PcIBjTDtq4UKjCPMQhKIuzpJNW0b96kVqSwW0bT7FhRSfmAiFYgP+SCRvdrDozfh0U5w=="
},
-
"merge2@1.4.1": {
-
"integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg=="
-
},
"meriyah@6.0.5": {
"integrity": "sha512-SrMqQCox7TTwtftWKHy/ZaVe+ZRpRl20pAgDo+PS9hzcAJrMjYsBJQPPiLXTnjztrqdfGS+Zz99r6Bwvydta1w=="
},
-
"micromatch@4.0.5": {
-
"integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==",
-
"dependencies": [
-
"braces",
-
"picomatch@2.3.1"
-
]
+
"mime-db@1.52.0": {
+
"integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg=="
},
-
"micromatch@4.0.8": {
-
"integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==",
+
"mime-types@2.1.35": {
+
"integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==",
"dependencies": [
-
"braces",
-
"picomatch@2.3.1"
+
"mime-db"
},
-
"minimatch@10.0.1": {
-
"integrity": "sha512-ethXTt3SGGR+95gudmqJ1eNhRO7eGEGIgYA9vnPatK4/etz2MEVDno5GMCibdMTuBMyElzIlgxMna3K94XDIDQ==",
+
"minimatch@3.1.2": {
+
"integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
"dependencies": [
-
"brace-expansion@2.0.1"
+
"brace-expansion@1.1.12"
},
-
"minimatch@3.1.2": {
-
"integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
+
"minimatch@5.1.6": {
+
"integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==",
"dependencies": [
-
"brace-expansion@1.1.11"
+
"brace-expansion@2.0.2"
},
"minimatch@9.0.5": {
"integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==",
"dependencies": [
-
"brace-expansion@2.0.1"
+
"brace-expansion@2.0.2"
},
"minimist@1.2.8": {
···
"minipass@7.1.2": {
"integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw=="
},
-
"ms@2.1.3": {
-
"integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA=="
+
"minizlib@3.0.2": {
+
"integrity": "sha512-oG62iEk+CYt5Xj2YqI5Xi9xWUeZhDI8jjQmC5oThVH5JGCTgIjr7ciJDzC7MBzYd//WvR1OTmP5Q38Q8ShQtVA==",
+
"dependencies": [
+
"minipass"
+
]
},
-
"mz@2.7.0": {
-
"integrity": "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==",
+
"mitt@3.0.1": {
+
"integrity": "sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw=="
+
},
+
"mkdirp@0.5.6": {
+
"integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==",
"dependencies": [
-
"any-promise",
-
"object-assign",
-
"thenify-all"
+
"minimist"
},
-
"nanoid@3.3.8": {
-
"integrity": "sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w=="
+
"mkdirp@3.0.1": {
+
"integrity": "sha512-+NsyUUAZDmo6YVHzL/stxSu3t9YS1iljliy3BSDrXJ/dkn1KYdmtZODGGjLcc9XLgVVpH4KshHB8XmZgMhaBXg=="
+
},
+
"ms@2.1.2": {
+
"integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="
+
},
+
"ms@2.1.3": {
+
"integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA=="
},
"napi-wasm@1.1.3": {
"integrity": "sha512-h/4nMGsHjZDCYmQVNODIrYACVJ+I9KItbG+0si6W/jSjdA9JbWDoU4LLeMXVcEQGHjttI2tuXqDrbGF7qkUHHg=="
},
-
"node-releases@2.0.19": {
-
"integrity": "sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw=="
+
"netmask@2.0.2": {
+
"integrity": "sha512-dBpDMdxv9Irdq66304OLfEmQ9tbNRFnFTuZiLo+bD+r332bBmMJ8GBLXklIXXgxd3+v9+KUnZaUR5PJMa75Gsg=="
},
"normalize-path@3.0.0": {
"integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA=="
-
},
-
"normalize-range@0.1.2": {
-
"integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA=="
},
"nth-check@2.1.1": {
"integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==",
···
"boolbase"
},
-
"object-assign@4.1.1": {
-
"integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg=="
-
},
-
"object-hash@3.0.0": {
-
"integrity": "sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw=="
-
},
"once@1.4.0": {
"integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==",
"dependencies": [
"wrappy"
},
-
"package-json-from-dist@1.0.1": {
-
"integrity": "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw=="
-
},
-
"pagefind@1.3.0": {
-
"integrity": "sha512-8KPLGT5g9s+olKMRTU9LFekLizkVIu9tes90O1/aigJ0T5LmyPqTzGJrETnSw3meSYg58YH7JTzhTTW/3z6VAw==",
+
"pac-proxy-agent@7.2.0": {
+
"integrity": "sha512-TEB8ESquiLMc0lV8vcd5Ql/JAKAoyzHFXaStwjkzpOpC5Yv+pIzLfHvjTSdf3vpa2bMiUQrg9i6276yn8666aA==",
"dependencies": [
-
"@pagefind/darwin-arm64",
-
"@pagefind/darwin-x64",
-
"@pagefind/linux-arm64",
-
"@pagefind/linux-x64",
-
"@pagefind/windows-x64"
+
"@tootallnate/quickjs-emscripten",
+
"agent-base",
+
"debug@4.4.1",
+
"get-uri",
+
"http-proxy-agent",
+
"https-proxy-agent",
+
"pac-resolver",
+
"socks-proxy-agent"
},
-
"pako@0.2.9": {
-
"integrity": "sha512-NUcwaKxUxWrZLpDG+z/xZaCgQITkA/Dv4V/T6bw7VON6l1Xz/VnrBqrYjZQ12TamKHzITTfOEIYUj48y2KXImA=="
-
},
-
"parse-css-color@0.2.1": {
-
"integrity": "sha512-bwS/GGIFV3b6KS4uwpzCFj4w297Yl3uqnSgIPsoQkx7GMLROXfMnWvxfNkL0oh8HVhZA4hvJoEoEIqonfJ3BWg==",
+
"pac-resolver@7.0.1": {
+
"integrity": "sha512-5NPgf87AT2STgwa2ntRMr45jTKrYBGkVU36yT0ig/n/GMAa3oPqhZfIQ2kMEimReg0+t9kZViDVZ83qfVUlckg==",
"dependencies": [
-
"color-name",
-
"hex-rgb"
+
"degenerator",
+
"netmask"
},
-
"parse5-htmlparser2-tree-adapter@7.1.0": {
-
"integrity": "sha512-ruw5xyKs6lrpo9x9rCZqZZnIUntICjQAd0Wsmp396Ul9lN/h+ifgVV1x1gZHi8euej6wTfpqX8j+BFQxF0NS/g==",
+
"package-json-from-dist@1.0.1": {
+
"integrity": "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw=="
+
},
+
"pako@1.0.11": {
+
"integrity": "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw=="
+
},
+
"parent-module@1.0.1": {
+
"integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==",
"dependencies": [
-
"domhandler",
-
"parse5"
+
"callsites"
},
-
"parse5@7.2.1": {
-
"integrity": "sha512-BuBYQYlv1ckiPdQi/ohiivi9Sagc9JG+Ozs0r7b/0iK3sKmrb0b9FdWdBbOdx6hBCM/F9Ir82ofnBhtZOjCRPQ==",
+
"parse-json@5.2.0": {
+
"integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==",
"dependencies": [
-
"entities"
+
"@babel/code-frame",
+
"error-ex",
+
"json-parse-even-better-errors",
+
"lines-and-columns"
},
"path-is-absolute@1.0.1": {
···
"path-key@3.1.1": {
"integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q=="
},
-
"path-parse@1.0.7": {
-
"integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw=="
-
},
"path-scurry@1.11.1": {
"integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==",
"dependencies": [
···
"minipass"
},
-
"path-scurry@2.0.0": {
-
"integrity": "sha512-ypGJsmGtdXUOeM5u93TyeIEfEhM6s+ljAhrk5vAvSx8uyY/02OvrZnA0YNGUrPXfpJMgI1ODd3nwz8Npx4O4cg==",
-
"dependencies": [
-
"lru-cache@11.0.2",
-
"minipass"
-
]
+
"pend@1.2.0": {
+
"integrity": "sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg=="
},
"picocolors@1.1.1": {
"integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA=="
},
-
"picomatch@2.3.1": {
-
"integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA=="
-
},
"picomatch@4.0.2": {
"integrity": "sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg=="
},
-
"pify@2.3.0": {
-
"integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog=="
+
"process-nextick-args@2.0.1": {
+
"integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag=="
},
-
"pirates@4.0.6": {
-
"integrity": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg=="
+
"progress@2.0.3": {
+
"integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA=="
},
-
"postcss-import@15.1.0_postcss@8.5.1": {
-
"integrity": "sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==",
+
"prompts@2.4.2": {
+
"integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==",
"dependencies": [
-
"postcss@8.5.1",
-
"postcss-value-parser",
-
"read-cache",
-
"resolve"
+
"kleur@3.0.3",
+
"sisteransi"
},
-
"postcss-import@16.1.0_postcss@8.5.1": {
-
"integrity": "sha512-7hsAZ4xGXl4MW+OKEWCnF6T5jqBw80/EE9aXg1r2yyn1RsVEU8EtKXbijEODa+rg7iih4bKf7vlvTGYR4CnPNg==",
+
"proxy-agent@6.5.0": {
+
"integrity": "sha512-TmatMXdr2KlRiA2CyDu8GqR8EjahTG3aY3nXjdzFyoZbmB8hrBsTyMezhULIXKnC0jpfjlmiZ3+EaCzoInSu/A==",
"dependencies": [
-
"postcss@8.5.1",
-
"postcss-value-parser",
-
"read-cache",
-
"resolve"
+
"agent-base",
+
"debug@4.4.1",
+
"http-proxy-agent",
+
"https-proxy-agent",
+
"lru-cache@7.18.3",
+
"pac-proxy-agent",
+
"proxy-from-env",
+
"socks-proxy-agent"
},
-
"postcss-js@4.0.1_postcss@8.5.1": {
-
"integrity": "sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==",
-
"dependencies": [
-
"camelcase-css",
-
"postcss@8.5.1"
-
]
+
"proxy-from-env@1.1.0": {
+
"integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg=="
},
-
"postcss-load-config@4.0.1_postcss@8.5.1": {
-
"integrity": "sha512-vEJIc8RdiBRu3oRAI0ymerOn+7rPuMvRXslTvZUKZonDHFIczxztIyJ1urxM1x9JXEikvpWWTUUqal5j/8QgvA==",
+
"pump@3.0.3": {
+
"integrity": "sha512-todwxLMY7/heScKmntwQG8CXVkWUOdYxIvY2s0VWAAMh/nd8SoYiRaKjlr7+iCs984f2P8zvrfWcDDYVb73NfA==",
"dependencies": [
-
"lilconfig@2.1.0",
-
"postcss@8.5.1",
-
"yaml"
+
"end-of-stream",
+
"once"
},
-
"postcss-load-config@4.0.2_postcss@8.5.1": {
-
"integrity": "sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==",
-
"dependencies": [
-
"lilconfig@3.1.3",
-
"postcss@8.5.1",
-
"yaml"
-
]
+
"punycode.js@2.3.1": {
+
"integrity": "sha512-uxFIHU0YlHYhDQtV4R9J6a52SLx28BCjT+4ieh7IGbgwVJWO+km431c4yRlREUAsAmt/uMjQUyQHNEPf0M39CA=="
},
-
"postcss-nested@6.0.1_postcss@8.5.1": {
-
"integrity": "sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==",
+
"puppeteer-core@22.15.0_devtools-protocol@0.0.1312386": {
+
"integrity": "sha512-cHArnywCiAAVXa3t4GGL2vttNxh7GqXtIYGym99egkNJ3oG//wL9LkvO4WE8W1TJe95t1F1ocu9X4xWaGsOKOA==",
"dependencies": [
-
"postcss@8.5.1",
-
"postcss-selector-parser"
+
"@puppeteer/browsers",
+
"chromium-bidi",
+
"debug@4.4.1",
+
"devtools-protocol",
+
"ws"
},
-
"postcss-nested@6.2.0_postcss@8.5.1": {
-
"integrity": "sha512-HQbt28KulC5AJzG+cZtj9kvKB93CFCdLvog1WFLf1D+xmMvPGlBstkpTEZfK5+AN9hfJocyBFCNiqyS48bpgzQ==",
+
"puppeteer@22.15.0": {
+
"integrity": "sha512-XjCY1SiSEi1T7iSYuxS82ft85kwDJUS7wj1Z0eGVXKdtr5g4xnVcbjwxhq5xBnpK/E7x1VZZoJDxpjAOasHT4Q==",
"dependencies": [
-
"postcss@8.5.1",
-
"postcss-selector-parser"
+
"@puppeteer/browsers",
+
"cosmiconfig",
+
"devtools-protocol",
+
"puppeteer-core"
},
-
"postcss-selector-parser@6.1.2": {
-
"integrity": "sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==",
+
"readable-stream@2.3.8": {
+
"integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==",
"dependencies": [
-
"cssesc",
+
"core-util-is",
+
"inherits",
+
"isarray",
+
"process-nextick-args",
+
"safe-buffer@5.1.2",
+
"string_decoder@1.1.1",
"util-deprecate"
},
-
"postcss-value-parser@4.2.0": {
-
"integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ=="
-
},
-
"postcss@8.5.1": {
-
"integrity": "sha512-6oz2beyjc5VMn/KV1pPw8fliQkhBXrVn1Z3TVyqZxU8kZpzEKhBdmCFqI6ZbmGtamQvQGuU1sgPTk8ZrXDD7jQ==",
+
"readable-stream@3.6.2": {
+
"integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==",
"dependencies": [
-
"nanoid",
-
"picocolors",
-
"source-map-js"
+
"inherits",
+
"string_decoder@1.3.0",
+
"util-deprecate"
},
-
"postcss@8.5.2": {
-
"integrity": "sha512-MjOadfU3Ys9KYoX0AdkBlFEF1Vx37uCCeN4ZHnmwm9FfpbsGWMZeBLMmmpY+6Ocqod7mkdZ0DT31OlbsFrLlkA==",
+
"readdir-glob@1.1.3": {
+
"integrity": "sha512-v05I2k7xN8zXvPD9N+z/uhXPaj0sUFCe2rcWZIpBsqxfP7xXFQ0tipAd/wjj1YxWyWtUS5IDJpOG82JKt2EAVA==",
"dependencies": [
-
"nanoid",
-
"picocolors",
-
"source-map-js"
+
"minimatch@5.1.6"
},
-
"prompts@2.4.2": {
-
"integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==",
-
"dependencies": [
-
"kleur@3.0.3",
-
"sisteransi"
-
]
+
"remove-markdown@0.6.0": {
+
"integrity": "sha512-B9g8yo5Zp1wXfZ77M1RLpqI7xrBBERkp7+3/Btm9N/uZV5xhXZjzIxDbCKz7CSj141lWDuCnQuH12DKLUv4Ghw=="
},
-
"punycode.js@2.3.1": {
-
"integrity": "sha512-uxFIHU0YlHYhDQtV4R9J6a52SLx28BCjT+4ieh7IGbgwVJWO+km431c4yRlREUAsAmt/uMjQUyQHNEPf0M39CA=="
+
"remove-markdown@0.6.2": {
+
"integrity": "sha512-EijDXJZbzpGbQBd852ViUzcqgpMujthM+SAEHiWCMcZonRbZ+xViWKLJA/vrwbDwYdxrs1aFDjpBhcGrZoJRGA=="
},
-
"purgecss-from-html@7.0.2": {
-
"integrity": "sha512-eJOLW9wIt30qvruvz+FCBmaW5XLt+bx0VCGKn+ZhEDzj69e834kt4pIWhIn0APFfwYu4t9x5rSkjyAvbI77xqg==",
-
"dependencies": [
-
"parse5",
-
"parse5-htmlparser2-tree-adapter"
-
]
+
"require-directory@2.1.1": {
+
"integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q=="
},
-
"purgecss@7.0.2": {
-
"integrity": "sha512-4Ku8KoxNhOWi9X1XJ73XY5fv+I+hhTRedKpGs/2gaBKU8ijUiIKF/uyyIyh7Wo713bELSICF5/NswjcuOqYouQ==",
-
"dependencies": [
-
"commander@12.1.0",
-
"glob@11.0.1",
-
"postcss@8.5.1",
-
"postcss-selector-parser"
-
]
+
"require-from-string@2.0.2": {
+
"integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw=="
},
-
"queue-microtask@1.2.3": {
-
"integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A=="
+
"resolve-from@4.0.0": {
+
"integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g=="
},
-
"read-cache@1.0.0": {
-
"integrity": "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==",
+
"rimraf@2.7.1": {
+
"integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==",
"dependencies": [
-
"pify"
+
"glob@7.2.3"
},
-
"readdirp@3.6.0": {
-
"integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==",
-
"dependencies": [
-
"picomatch@2.3.1"
-
]
+
"safe-buffer@5.1.2": {
+
"integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g=="
},
-
"remove-markdown@0.6.0": {
-
"integrity": "sha512-B9g8yo5Zp1wXfZ77M1RLpqI7xrBBERkp7+3/Btm9N/uZV5xhXZjzIxDbCKz7CSj141lWDuCnQuH12DKLUv4Ghw=="
+
"safe-buffer@5.2.1": {
+
"integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ=="
},
-
"require-from-string@2.0.2": {
-
"integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw=="
+
"sax@1.4.1": {
+
"integrity": "sha512-+aWOz7yVScEGoKNd4PA10LZ8sk0A/z5+nXQG5giUO5rprX9jgYsTdov9qCchZiPIZezbZH+jRut8nPodFAX4Jg=="
},
-
"resolve@1.22.8": {
-
"integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==",
+
"saxes@5.0.1": {
+
"integrity": "sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw==",
"dependencies": [
-
"is-core-module",
-
"path-parse",
-
"supports-preserve-symlinks-flag"
+
"xmlchars"
},
-
"reusify@1.0.4": {
-
"integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw=="
+
"semver@7.7.1": {
+
"integrity": "sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA=="
+
},
+
"semver@7.7.2": {
+
"integrity": "sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA=="
+
},
+
"setimmediate@1.0.5": {
+
"integrity": "sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA=="
},
-
"run-parallel@1.2.0": {
-
"integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==",
+
"sharp@0.34.1": {
+
"integrity": "sha512-1j0w61+eVxu7DawFJtnfYcvSv6qPFvfTaqzTQ2BLknVhHTwGS8sc63ZBF4rzkWMBVKybo4S5OBtDdZahh2A1xg==",
"dependencies": [
-
"queue-microtask"
+
"@img/sharp-darwin-arm64@0.34.1",
+
"@img/sharp-darwin-x64@0.34.1",
+
"@img/sharp-libvips-darwin-arm64@1.1.0",
+
"@img/sharp-libvips-darwin-x64@1.1.0",
+
"@img/sharp-libvips-linux-arm@1.1.0",
+
"@img/sharp-libvips-linux-arm64@1.1.0",
+
"@img/sharp-libvips-linux-ppc64@1.1.0",
+
"@img/sharp-libvips-linux-s390x@1.1.0",
+
"@img/sharp-libvips-linux-x64@1.1.0",
+
"@img/sharp-libvips-linuxmusl-arm64@1.1.0",
+
"@img/sharp-libvips-linuxmusl-x64@1.1.0",
+
"@img/sharp-linux-arm@0.34.1",
+
"@img/sharp-linux-arm64@0.34.1",
+
"@img/sharp-linux-s390x@0.34.1",
+
"@img/sharp-linux-x64@0.34.1",
+
"@img/sharp-linuxmusl-arm64@0.34.1",
+
"@img/sharp-linuxmusl-x64@0.34.1",
+
"@img/sharp-wasm32@0.34.1",
+
"@img/sharp-win32-ia32@0.34.1",
+
"@img/sharp-win32-x64@0.34.1",
+
"color",
+
"detect-libc",
+
"semver@7.7.1"
},
-
"satori@0.12.1": {
-
"integrity": "sha512-0SbjchvDrDbeXeQgxWVtSWxww7qcFgk3DtSE2/blHOSlLsSHwIqO2fCrtVa/EudJ7Eqno8A33QNx56rUyGbLuw==",
+
"sharp@0.34.2": {
+
"integrity": "sha512-lszvBmB9QURERtyKT2bNmsgxXK0ShJrL/fvqlonCo7e6xBF8nT8xU6pW+PMIbLsz0RxQk3rgH9kd8UmvOzlMJg==",
"dependencies": [
-
"@shuding/opentype.js",
-
"css-background-parser",
-
"css-box-shadow",
-
"css-gradient-parser",
-
"css-to-react-native",
-
"emoji-regex@10.4.0",
-
"escape-html",
-
"linebreak",
-
"parse-css-color",
-
"postcss-value-parser",
-
"yoga-wasm-web"
+
"@img/sharp-darwin-arm64@0.34.2",
+
"@img/sharp-darwin-x64@0.34.2",
+
"@img/sharp-libvips-darwin-arm64@1.1.0",
+
"@img/sharp-libvips-darwin-x64@1.1.0",
+
"@img/sharp-libvips-linux-arm@1.1.0",
+
"@img/sharp-libvips-linux-arm64@1.1.0",
+
"@img/sharp-libvips-linux-ppc64@1.1.0",
+
"@img/sharp-libvips-linux-s390x@1.1.0",
+
"@img/sharp-libvips-linux-x64@1.1.0",
+
"@img/sharp-libvips-linuxmusl-arm64@1.1.0",
+
"@img/sharp-libvips-linuxmusl-x64@1.1.0",
+
"@img/sharp-linux-arm@0.34.2",
+
"@img/sharp-linux-arm64@0.34.2",
+
"@img/sharp-linux-s390x@0.34.2",
+
"@img/sharp-linux-x64@0.34.2",
+
"@img/sharp-linuxmusl-arm64@0.34.2",
+
"@img/sharp-linuxmusl-x64@0.34.2",
+
"@img/sharp-wasm32@0.34.2",
+
"@img/sharp-win32-arm64@0.34.2",
+
"@img/sharp-win32-ia32@0.34.2",
+
"@img/sharp-win32-x64@0.34.2",
+
"color",
+
"detect-libc",
+
"semver@7.7.2"
},
-
"semver@7.7.0": {
-
"integrity": "sha512-DrfFnPzblFmNrIZzg5RzHegbiRWg7KMR7btwi2yjHwx06zsUbO5g613sVwEV7FTwmzJu+Io0lJe2GJ3LxqpvBQ=="
-
},
-
"sharp@0.33.5": {
-
"integrity": "sha512-haPVm1EkS9pgvHrQ/F3Xy+hgcuMV0Wm9vfIBSiwZ05k+xgb0PkBQpGsAA/oWdDobNaZTH5ppvHtzCFbnSEwHVw==",
+
"sharp@0.34.3": {
+
"integrity": "sha512-eX2IQ6nFohW4DbvHIOLRB3MHFpYqaqvXd3Tp5e/T/dSH83fxaNJQRvDMhASmkNTsNTVF2/OOopzRCt7xokgPfg==",
"dependencies": [
-
"@img/sharp-darwin-arm64",
-
"@img/sharp-darwin-x64",
-
"@img/sharp-libvips-darwin-arm64",
-
"@img/sharp-libvips-darwin-x64",
-
"@img/sharp-libvips-linux-arm",
-
"@img/sharp-libvips-linux-arm64",
-
"@img/sharp-libvips-linux-s390x",
-
"@img/sharp-libvips-linux-x64",
-
"@img/sharp-libvips-linuxmusl-arm64",
-
"@img/sharp-libvips-linuxmusl-x64",
-
"@img/sharp-linux-arm",
-
"@img/sharp-linux-arm64",
-
"@img/sharp-linux-s390x",
-
"@img/sharp-linux-x64",
-
"@img/sharp-linuxmusl-arm64",
-
"@img/sharp-linuxmusl-x64",
-
"@img/sharp-wasm32",
-
"@img/sharp-win32-ia32",
-
"@img/sharp-win32-x64",
+
"@img/sharp-darwin-arm64@0.34.3",
+
"@img/sharp-darwin-x64@0.34.3",
+
"@img/sharp-libvips-darwin-arm64@1.2.0",
+
"@img/sharp-libvips-darwin-x64@1.2.0",
+
"@img/sharp-libvips-linux-arm@1.2.0",
+
"@img/sharp-libvips-linux-arm64@1.2.0",
+
"@img/sharp-libvips-linux-ppc64@1.2.0",
+
"@img/sharp-libvips-linux-s390x@1.2.0",
+
"@img/sharp-libvips-linux-x64@1.2.0",
+
"@img/sharp-libvips-linuxmusl-arm64@1.2.0",
+
"@img/sharp-libvips-linuxmusl-x64@1.2.0",
+
"@img/sharp-linux-arm@0.34.3",
+
"@img/sharp-linux-arm64@0.34.3",
+
"@img/sharp-linux-ppc64",
+
"@img/sharp-linux-s390x@0.34.3",
+
"@img/sharp-linux-x64@0.34.3",
+
"@img/sharp-linuxmusl-arm64@0.34.3",
+
"@img/sharp-linuxmusl-x64@0.34.3",
+
"@img/sharp-wasm32@0.34.3",
+
"@img/sharp-win32-arm64@0.34.3",
+
"@img/sharp-win32-ia32@0.34.3",
+
"@img/sharp-win32-x64@0.34.3",
"color",
"detect-libc",
-
"semver"
+
"semver@7.7.2"
},
"shebang-command@2.0.0": {
···
"simple-swizzle@0.2.2": {
"integrity": "sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==",
"dependencies": [
-
"is-arrayish"
+
"is-arrayish@0.3.2"
},
"sisteransi@1.0.5": {
"integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg=="
},
+
"smart-buffer@4.2.0": {
+
"integrity": "sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg=="
+
},
+
"socks-proxy-agent@8.0.5": {
+
"integrity": "sha512-HehCEsotFqbPW9sJ8WVYB6UbmIMv7kUUORIF2Nncq4VQvBfNBLibW9YZR5dlYCSUhwcD628pRllm7n+E+YTzJw==",
+
"dependencies": [
+
"agent-base",
+
"debug@4.4.1",
+
"socks"
+
]
+
},
+
"socks@2.8.6": {
+
"integrity": "sha512-pe4Y2yzru68lXCb38aAqRf5gvN8YdjP1lok5o0J7BOHljkyCGKVz7H3vpVIXKD27rj2giOJ7DwVyk/GWrPHDWA==",
+
"dependencies": [
+
"ip-address",
+
"smart-buffer"
+
]
+
},
"source-map-js@1.2.1": {
"integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA=="
},
+
"source-map@0.6.1": {
+
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g=="
+
},
+
"sprintf-js@1.1.3": {
+
"integrity": "sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA=="
+
},
+
"streamx@2.22.1": {
+
"integrity": "sha512-znKXEBxfatz2GBNK02kRnCXjV+AA4kjZIUxeWSr3UGirZMJfTE9uiwKHobnbgxWyL/JWro8tTq+vOqAK1/qbSA==",
+
"dependencies": [
+
"bare-events",
+
"fast-fifo",
+
"text-decoder"
+
]
+
},
+
"string-hash@1.1.3": {
+
"integrity": "sha512-kJUvRUFK49aub+a7T1nNE66EJbZBMnBgoC1UbCZ5n6bsZKBRga4KgBRTMn/pFkeCZSYtNeSyMxPDM0AXWELk2A=="
+
},
"string-width@4.2.3": {
"integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
"dependencies": [
···
"strip-ansi@7.1.0"
},
-
"string.prototype.codepointat@0.2.1": {
-
"integrity": "sha512-2cBVCj6I4IOvEnjgO/hWqXjqBGsY+zwPmHl12Srk9IXSZ56Jwwmy+66XO5Iut/oQVR7t5ihYdLB0GMa4alEUcg=="
+
"string_decoder@1.1.1": {
+
"integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==",
+
"dependencies": [
+
"safe-buffer@5.1.2"
+
]
+
},
+
"string_decoder@1.3.0": {
+
"integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==",
+
"dependencies": [
+
"safe-buffer@5.2.1"
+
]
},
"strip-ansi@6.0.1": {
"integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
···
"ansi-regex@6.1.0"
},
-
"sucrase@3.34.0": {
-
"integrity": "sha512-70/LQEZ07TEcxiU2dz51FKaE6hCTWC6vr7FOk3Gr0U60C3shtAN+H+BFr9XlYe5xqf3RA8nrc+VIwzCfnxuXJw==",
-
"dependencies": [
-
"@jridgewell/gen-mapping",
-
"commander@4.1.1",
-
"glob@7.1.6",
-
"lines-and-columns",
-
"mz",
-
"pirates",
-
"ts-interface-checker"
-
]
-
},
-
"sucrase@3.35.0": {
-
"integrity": "sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==",
-
"dependencies": [
-
"@jridgewell/gen-mapping",
-
"commander@4.1.1",
-
"glob@10.4.5",
-
"lines-and-columns",
-
"mz",
-
"pirates",
-
"ts-interface-checker"
-
]
-
},
-
"supports-preserve-symlinks-flag@1.0.0": {
-
"integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w=="
-
},
"svg2png-wasm@1.4.1": {
"integrity": "sha512-ZFy1NtwZVAsslaTQoI+/QqX2sg0vjmgJ/jGAuLZZvYcRlndI54hLPiwLC9JzXlFBerfxN5JiS7kpEUG0mrXS3Q=="
},
···
"picocolors"
},
-
"tailwindcss@3.3.3_postcss@8.5.1": {
-
"integrity": "sha512-A0KgSkef7eE4Mf+nKJ83i75TMyq8HqY3qmFIJSWy8bNt0v1lG7jUcpGpoTFxAwYcWOphcTBLPPJg+bDfhDf52w==",
+
"svgo@4.0.0": {
+
"integrity": "sha512-VvrHQ+9uniE+Mvx3+C9IEe/lWasXCU0nXMY2kZeLrHNICuRiC8uMPyM14UEaMOFA5mhyQqEkB02VoQ16n3DLaw==",
"dependencies": [
-
"@alloc/quick-lru",
-
"arg",
-
"chokidar",
-
"didyoumean",
-
"dlv",
-
"fast-glob@3.3.1",
-
"glob-parent@6.0.2",
-
"is-glob",
-
"jiti",
-
"lilconfig@2.1.0",
-
"micromatch@4.0.5",
-
"normalize-path",
-
"object-hash",
+
"commander@11.1.0",
+
"css-select",
+
"css-tree@3.1.0",
+
"css-what",
+
"csso",
"picocolors",
-
"postcss@8.5.1",
-
"postcss-import@15.1.0_postcss@8.5.1",
-
"postcss-js",
-
"postcss-load-config@4.0.1_postcss@8.5.1",
-
"postcss-nested@6.0.1_postcss@8.5.1",
-
"postcss-selector-parser",
-
"resolve",
-
"sucrase@3.34.0"
+
"sax"
},
-
"tailwindcss@3.4.17_postcss@8.5.1": {
-
"integrity": "sha512-w33E2aCvSDP0tW9RZuNXadXlkHXqFzSkQew/aIa2i/Sj8fThxwovwlXHSPXTbAHwEIhBFXAedUhP2tueAKP8Og==",
+
"tailwindcss@4.1.11": {
+
"integrity": "sha512-2E9TBm6MDD/xKYe+dvJZAmg3yxIEDNRc0jwlNyDg/4Fil2QcSLjFKGVff0lAf1jjeaArlG/M75Ey/EYr/OJtBA=="
+
},
+
"tailwindcss@4.1.4": {
+
"integrity": "sha512-1ZIUqtPITFbv/DxRmDr5/agPqJwF69d24m9qmM1939TJehgY539CtzeZRjbLt5G6fSy/7YqqYsfvoTEw9xUI2A=="
+
},
+
"tapable@2.2.2": {
+
"integrity": "sha512-Re10+NauLTMCudc7T5WLFLAwDhQ0JWdrMK+9B2M8zR5hRExKmsRDCBA7/aV/pNJFltmBFO5BAMlQFi/vq3nKOg=="
+
},
+
"tar-fs@3.1.0": {
+
"integrity": "sha512-5Mty5y/sOF1YWj1J6GiBodjlDc05CUR8PKXrsnFAiSG0xA+GHeWLovaZPYUDXkH/1iKRf2+M5+OrRgzC7O9b7w==",
"dependencies": [
-
"@alloc/quick-lru",
-
"arg",
-
"chokidar",
-
"didyoumean",
-
"dlv",
-
"fast-glob@3.3.3",
-
"glob-parent@6.0.2",
-
"is-glob",
-
"jiti",
-
"lilconfig@3.1.3",
-
"micromatch@4.0.8",
-
"normalize-path",
-
"object-hash",
-
"picocolors",
-
"postcss@8.5.1",
-
"postcss-import@15.1.0_postcss@8.5.1",
-
"postcss-js",
-
"postcss-load-config@4.0.2_postcss@8.5.1",
-
"postcss-nested@6.2.0_postcss@8.5.1",
-
"postcss-selector-parser",
-
"resolve",
-
"sucrase@3.35.0"
+
"bare-fs",
+
"bare-path",
+
"pump",
+
"tar-stream@3.1.7"
},
-
"tailwindcss@4.0.6": {
-
"integrity": "sha512-mysewHYJKaXgNOW6pp5xon/emCsfAMnO8WMaGKZZ35fomnR/T5gYnRg2/yRTTrtXiEl1tiVkeRt0eMO6HxEZqw=="
+
"tar-stream@2.2.0": {
+
"integrity": "sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==",
+
"dependencies": [
+
"bl",
+
"end-of-stream",
+
"fs-constants",
+
"inherits",
+
"readable-stream@3.6.2"
+
]
},
-
"thenify-all@1.6.0": {
-
"integrity": "sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==",
+
"tar-stream@3.1.7": {
+
"integrity": "sha512-qJj60CXt7IU1Ffyc3NJMjh6EkuCFej46zUqJ4J7pqYlThyd9bO0XBTmcOIhSzZJVWfsLks0+nle/j538YAW9RQ==",
"dependencies": [
-
"thenify"
+
"b4a",
+
"fast-fifo",
+
"streamx"
},
-
"thenify@3.3.1": {
-
"integrity": "sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==",
+
"tar@7.4.3": {
+
"integrity": "sha512-5S7Va8hKfV7W5U6g3aYxXmlPoZVAwUMy9AOKyF2fVuZa2UD3qZjg578OrLRt8PcNN1PleVaL/5/yYATNL0ICUw==",
"dependencies": [
-
"any-promise"
+
"@isaacs/fs-minipass",
+
"chownr",
+
"minipass",
+
"minizlib",
+
"mkdirp@3.0.1",
+
"yallist"
},
-
"tiny-inflate@1.0.3": {
-
"integrity": "sha512-pkY1fj1cKHb2seWDy0B16HeWyczlJA9/WW3u3c4z/NiWDsO3DOU5D7nhTLE9CF0yXv/QZFY7sEJmj24dK+Rrqw=="
+
"tcp-port-used@1.0.2": {
+
"integrity": "sha512-l7ar8lLUD3XS1V2lfoJlCBaeoaWo/2xfYt81hM7VlvR4RrMVFqfmzfhLVk40hAb368uitje5gPtBRL1m/DGvLA==",
+
"dependencies": [
+
"debug@4.3.1",
+
"is2"
+
]
},
-
"tinyglobby@0.2.10_picomatch@4.0.2": {
-
"integrity": "sha512-Zc+8eJlFMvgatPZTl6A9L/yht8QqdmUNtURHaKZLmKBE12hNPSrqNkUp2cs3M/UKmNVVAMFQYSjYIVHDjW5zew==",
+
"text-decoder@1.2.3": {
+
"integrity": "sha512-3/o9z3X0X0fTupwsYvR03pJ/DjWuqqrfwBgTQzdWDiQSm9KitAyz/9WqsT2JQW7KV2m+bC2ol/zqpW37NHxLaA==",
"dependencies": [
-
"fdir",
-
"picomatch@4.0.2"
+
"b4a"
},
-
"to-regex-range@5.0.1": {
-
"integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
+
"through@2.3.8": {
+
"integrity": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg=="
+
},
+
"tinyglobby@0.2.14_picomatch@4.0.2": {
+
"integrity": "sha512-tX5e7OM1HnYr2+a2C/4V0htOcSQcoSTH9KgJnVvNm5zm/cyEWKJ7j7YutsH9CxMdtOkkLFy2AHrMci9IM8IPZQ==",
"dependencies": [
-
"is-number"
+
"fdir",
+
"picomatch"
},
-
"ts-interface-checker@0.1.13": {
-
"integrity": "sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA=="
+
"tmp@0.2.3": {
+
"integrity": "sha512-nZD7m9iCPC5g0pYmcaxogYKggSfLsdxl8of3Q/oIbqCqLLIO9IAF0GWjX1z9NZRHPiXv8Wex4yDCaZsgEw0Y8w=="
+
},
+
"traverse@0.3.9": {
+
"integrity": "sha512-iawgk0hLP3SxGKDfnDJf8wTz4p2qImnyihM5Hh/sGvQ3K37dPi/w8sRhdNIxYA1TwFwc5mDhIJq+O0RsvXBKdQ=="
},
"tslib@2.8.1": {
"integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w=="
···
"uc.micro@2.1.0": {
"integrity": "sha512-ARDJmphmdvUk6Glw7y9DQ2bFkKBHwQHLi2lsaH6PPmz/Ka9sFOBsBluozhDltWmnv9u/cF6Rt87znRTPV+yp/A=="
},
-
"unicode-trie@2.0.0": {
-
"integrity": "sha512-x7bc76x0bm4prf1VLg79uhAzKw8DVboClSN5VxJuQ+LKDOVEW9CdH+VY7SP+vX7xCYQqzzgQpFqz15zeLvAtZQ==",
+
"unbzip2-stream@1.4.3": {
+
"integrity": "sha512-mlExGW4w71ebDJviH16lQLtZS32VKqsSfk80GCfUlwT/4/hNRFsoscrF/c++9xinkMzECL1uL9DDwXqFWkruPg==",
"dependencies": [
-
"pako",
-
"tiny-inflate"
+
"buffer",
+
"through"
},
-
"unidecode@1.1.0": {
-
"integrity": "sha512-GIp57N6DVVJi8dpeIU6/leJGdv7W65ZSXFLFiNmxvexXkc0nXdqUvhA/qL9KqBKsILxMwg5MnmYNOIDJLb5JVA=="
+
"undici-types@6.20.0": {
+
"integrity": "sha512-Ny6QZ2Nju20vw1SRHe3d9jVu6gJ+4e3+MMpqu7pqE5HT6WsTSlce++GQmK5UXS8mzV8DSYHrQH+Xrf2jVcuKNg=="
},
-
"update-browserslist-db@1.1.2_browserslist@4.24.4": {
-
"integrity": "sha512-PPypAm5qvlD7XMZC3BujecnaOxwhrtoFR+Dqkk5Aa/6DssiH0ibKoketaj9w8LP7Bont1rYeoV5plxD7RTEPRg==",
+
"unzipper@0.10.14": {
+
"integrity": "sha512-ti4wZj+0bQTiX2KmKWuwj7lhV+2n//uXEotUmGuQqrbVZSEGFMbI68+c6JCQ8aAmUWYvtHEz2A8K6wXvueR/6g==",
"dependencies": [
-
"browserslist",
-
"escalade",
-
"picocolors"
+
"big-integer",
+
"binary",
+
"bluebird",
+
"buffer-indexof-polyfill",
+
"duplexer2",
+
"fstream",
+
"graceful-fs",
+
"listenercount",
+
"readable-stream@2.3.8",
+
"setimmediate"
},
+
"urlpattern-polyfill@10.0.0": {
+
"integrity": "sha512-H/A06tKD7sS1O1X2SshBVeA5FLycRpjqiBeqGKmBwBDBy28EnRjORxTNe269KSSr5un5qyWi1iL61wLxpd+ZOg=="
+
},
"util-deprecate@1.0.2": {
"integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw=="
+
},
+
"uuid@8.3.2": {
+
"integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg=="
},
"which@2.0.2": {
"integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
···
"wrappy@1.0.2": {
"integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ=="
},
-
"yaml@2.7.0": {
-
"integrity": "sha512-+hSoy/QHluxmC9kCIJyL/uyFmLmc+e5CFR5Wa+bpIhIj85LVb9ZH2nVnqrHoSvKogwODv0ClqZkmiSSaIH5LTA=="
+
"ws@8.18.3": {
+
"integrity": "sha512-PEIGCY5tSlUt50cqyMXfCzX+oOPqN0vuGqWzbcJ2xvnkzkq46oOpz7dQaTDBdfICb4N14+GARUDw2XV2N4tvzg=="
+
},
+
"xmlchars@2.2.0": {
+
"integrity": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw=="
+
},
+
"y18n@5.0.8": {
+
"integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA=="
+
},
+
"yallist@5.0.0": {
+
"integrity": "sha512-YgvUTfwqyc7UXVMrB+SImsVYSmTS8X/tSrtdNZMImM+n7+QTriRXyXim0mBrTXNeqzVF0KWGgHPeiyViFFrNDw=="
+
},
+
"yargs-parser@21.1.1": {
+
"integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw=="
+
},
+
"yargs@17.7.2": {
+
"integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==",
+
"dependencies": [
+
"cliui",
+
"escalade",
+
"get-caller-file",
+
"require-directory",
+
"string-width@4.2.3",
+
"y18n",
+
"yargs-parser"
+
]
},
-
"yoga-wasm-web@0.3.3": {
-
"integrity": "sha512-N+d4UJSJbt/R3wqY7Coqs5pcV0aUj2j9IaQ3rNj9bVCLld8tTGKRa2USARjnvZJWVx1NDmQev8EknoczaOQDOA=="
+
"yauzl@2.10.0": {
+
"integrity": "sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==",
+
"dependencies": [
+
"buffer-crc32",
+
"fd-slicer"
+
]
+
},
+
"zip-stream@4.1.1": {
+
"integrity": "sha512-9qv4rlDiopXg4E69k+vMHjNN63YFMe9sZMrdlvKnCjlCRWeCBswPPMPUfx+ipsAWq1LXHe70RcbaHdJJpS6hyQ==",
+
"dependencies": [
+
"archiver-utils@3.0.4",
+
"compress-commons",
+
"readable-stream@3.6.2"
+
]
+
},
+
"zod@3.23.8": {
+
"integrity": "sha512-XBx9AXhXktjUqnepgTiE5flcKIYWi/rme0Eaj+5Y0lftuGBq+jyRu/md4WnuxqgP1ubdpNCsYEYPxrzVHD8d6g=="
},
"remote": {
-
"https://cdn.jsdelivr.net/gh/lumeland/cms@v0.9.2/adapters/lume.ts": "ce2f4c68b1461bd9f208c31c61196fda8d60086cac441af1e7cde10c3683555d",
-
"https://cdn.jsdelivr.net/gh/lumeland/cms@v0.9.2/core/cms.ts": "274a3ca6a53543107e1dc7f93dec2c66dc25db5bbb647456d434210032ad77a4",
-
"https://cdn.jsdelivr.net/gh/lumeland/cms@v0.9.2/core/collection.ts": "5066e101d10ac402cc9a1f7a1469fd0ad7a5abf99c3dd95d1f3353ddd14cab2a",
-
"https://cdn.jsdelivr.net/gh/lumeland/cms@v0.9.2/core/document.ts": "7086d5c4f71c37c6737d703f985adfb9c236bed6e64f4b43644987e176c913d0",
-
"https://cdn.jsdelivr.net/gh/lumeland/cms@v0.9.2/core/git.ts": "a61a3a41b8c736d1f0db1bf580c862a83d95803f5a74bc17af68e62c7e6aff00",
-
"https://cdn.jsdelivr.net/gh/lumeland/cms@v0.9.2/core/routes/auth.ts": "fed0ac4b94588ac1a469b0982a525ae412c6a8316bd24d51ae7e94e3580373c1",
-
"https://cdn.jsdelivr.net/gh/lumeland/cms@v0.9.2/core/routes/collection.ts": "77b2e9e9133995a4e77cac2087e540c7aa70c5dd90d312422fa8446953cf77a3",
-
"https://cdn.jsdelivr.net/gh/lumeland/cms@v0.9.2/core/routes/document.ts": "5f9b01893b4f435dd64d28d16c647b3ed7373fcc56f6a658420850348198109f",
-
"https://cdn.jsdelivr.net/gh/lumeland/cms@v0.9.2/core/routes/files.ts": "42ac6579f651f61a00849f0f69d37af769d1f52ca1c0cdf9f5d23a66b0dfedc7",
-
"https://cdn.jsdelivr.net/gh/lumeland/cms@v0.9.2/core/routes/index.ts": "96454ddf14ec2adc13ef3875e79fd9c6df1dbc4d10bdb7cb0e0ff2b206dff015",
-
"https://cdn.jsdelivr.net/gh/lumeland/cms@v0.9.2/core/routes/versions.ts": "4d56ef0a1fe97a2864eeda04f0256d6f45f2d79da8c50c1f3079cea94d1b56cf",
-
"https://cdn.jsdelivr.net/gh/lumeland/cms@v0.9.2/core/templates/breadcrumb.ts": "7a7ed1704382bb73e45d807b526b0ccc8713f6e04034948c9bf8f12fd1c05394",
-
"https://cdn.jsdelivr.net/gh/lumeland/cms@v0.9.2/core/templates/collection/create.ts": "2781633aaecf7de23804758c66a5c93eb77feeed38d70e00688a4bd51bda109b",
-
"https://cdn.jsdelivr.net/gh/lumeland/cms@v0.9.2/core/templates/collection/edit.ts": "23262a5125de0730345db897b32cd5cbc76225fa57c8ff134b94b18de31d7840",
-
"https://cdn.jsdelivr.net/gh/lumeland/cms@v0.9.2/core/templates/collection/list.ts": "07f4ceff2fc8e7f6b20da8ebdf1ca091f6fd75c6a1355945d393ac90901a9dd1",
-
"https://cdn.jsdelivr.net/gh/lumeland/cms@v0.9.2/core/templates/document/edit.ts": "bca9067901a39f8ff2b14c264fde080ff5bf6b42b6278d29b26dd097c20cea71",
-
"https://cdn.jsdelivr.net/gh/lumeland/cms@v0.9.2/core/templates/index.ts": "8bc174ff229e43ab751e6d6274b315a6399f3bab9bd7b4ad3975ac8d0437101c",
-
"https://cdn.jsdelivr.net/gh/lumeland/cms@v0.9.2/core/templates/layout.ts": "fcbc1f3c82659a97a0414856ed257290b5be8c03141c18483ecf56bbae7b789f",
-
"https://cdn.jsdelivr.net/gh/lumeland/cms@v0.9.2/core/templates/notfound.ts": "c89b3b113a6cd847b7dfa6155688c01e8e53754e5f0548149971ae5da5c439cd",
-
"https://cdn.jsdelivr.net/gh/lumeland/cms@v0.9.2/core/templates/tree.ts": "45150ba7337ba38cdecaa68e01ef79172cd609d711dd56829769be5d5df08c5c",
-
"https://cdn.jsdelivr.net/gh/lumeland/cms@v0.9.2/core/templates/uploads/create.ts": "8c6119cdce5a5a822333d3819496cda21eb287f1ef75dcfb3a9523f78ee0d304",
-
"https://cdn.jsdelivr.net/gh/lumeland/cms@v0.9.2/core/templates/uploads/crop.ts": "be789439a70b835094e133d2e4ac6bde11fd0ac8cc85e2ccae5620f5861d4082",
-
"https://cdn.jsdelivr.net/gh/lumeland/cms@v0.9.2/core/templates/uploads/list.ts": "04ed7e891596e5222be5087d87f72285ac0fe78053ff1e0e949c6a9fbc70cc16",
-
"https://cdn.jsdelivr.net/gh/lumeland/cms@v0.9.2/core/templates/uploads/view.ts": "fec98bf13603d30df682d2526fca1dc78ce88f536a740068e82c284bf93b11f0",
-
"https://cdn.jsdelivr.net/gh/lumeland/cms@v0.9.2/core/upload.ts": "cb99f605ec831b9f91c5ae4889b012adee612a31a9744898e345d55aeb920204",
-
"https://cdn.jsdelivr.net/gh/lumeland/cms@v0.9.2/core/utils/data.ts": "b7e2dcd3f07b142aba97e5540741fd0724d583dd4d6ec12115e3907ae6258025",
-
"https://cdn.jsdelivr.net/gh/lumeland/cms@v0.9.2/core/utils/env.ts": "723cb01d9509e0942a32ff568314b5ac27152c94e0070dc0cd6a706c74f33a62",
-
"https://cdn.jsdelivr.net/gh/lumeland/cms@v0.9.2/core/utils/event.ts": "a7915a3e6bf7b34c166ee3aefc8ca5aab1631de50e0d851f78d0e8c8d0c766d8",
-
"https://cdn.jsdelivr.net/gh/lumeland/cms@v0.9.2/core/utils/path.ts": "cd949fd0db7ca4bc8f05abbaa8a1398868784c424b6edff953a29ee8f6c87490",
-
"https://cdn.jsdelivr.net/gh/lumeland/cms@v0.9.2/core/utils/string.ts": "6e287cfb18e4a3093b4c0d4e73bdcbc34557f3e8268f09e83e0ff438dcf999a2",
-
"https://cdn.jsdelivr.net/gh/lumeland/cms@v0.9.2/deps/hono.ts": "2f2fc71e8c620604b3767171440f6971943125b1c15ff2df0f3c3c3a7d82eccd",
-
"https://cdn.jsdelivr.net/gh/lumeland/cms@v0.9.2/deps/imagick.ts": "e2054263419bad3a1a58e391b2ca007aaa9d33f66bc7c149c6f8f217b73c869a",
-
"https://cdn.jsdelivr.net/gh/lumeland/cms@v0.9.2/deps/std.ts": "6d54d857a476776ea342ceff5b8bcf84ca45e24f1b7bb39cd1c1996a2c20c3b1",
-
"https://cdn.jsdelivr.net/gh/lumeland/cms@v0.9.2/fields/core.ts": "1488b5d506ee3f913a87f8d0e27d25eeeb64599ff4d84991f51dc068b4f0b8b1",
-
"https://cdn.jsdelivr.net/gh/lumeland/cms@v0.9.2/mod.ts": "8c0e794889d779e84137f4d3b9673f5a5a1083777afdffa571d0a7af54ddceac",
-
"https://cdn.jsdelivr.net/gh/lumeland/cms@v0.9.2/storage/fs.ts": "166caec312350faec096d7a95f2625c1b4f440192676efe55e03e52442f95679",
-
"https://cdn.jsdelivr.net/gh/lumeland/cms@v0.9.2/storage/transformers/front_matter.ts": "d0809292ae1ccb367c7e7852a2b6bd383e4da531ff95da4a640afa181412fe0d",
-
"https://cdn.jsdelivr.net/gh/lumeland/cms@v0.9.2/storage/transformers/json.ts": "eb5d664be2042cc266a4fc737bbeeb1b4eb586e2beab8ca1965b07c2b066ee68",
-
"https://cdn.jsdelivr.net/gh/lumeland/cms@v0.9.2/storage/transformers/mod.ts": "d828136358c98c93b45b5a1f1c7f383f9788ec47ede04bcb03de8ee0b19c2b3c",
-
"https://cdn.jsdelivr.net/gh/lumeland/cms@v0.9.2/storage/transformers/yaml.ts": "87ce4b914a91ecec833558c29a5bbe8ca33f5cdf05141ba5e9c4e497aace561c",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/cli.ts": "a3254363ab2d55df4ff1f25e253f5edc53da1088c33a74efe36e605e74bb67c4",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/cli/build.ts": "a3acda3c702d6a51a8fe65ea3abc17813deea0db71e442de6120a747f56a2466",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/cli/build_worker.ts": "ef70f1b58f42bd4fd15ee528b3a40593621207c2d40bd877150f453cb8610d04",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/cli/cms.ts": "7f3f46c3353661a7679926d0ddcfe3e596f3c97ad2de7f535bde5906e42c3f5a",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/cli/create.ts": "f340056e3b01a61007f82b47a174ede55df2d80d343e492a3853d44007bb8fc6",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/cli/missing_worker_apis.ts": "70625ded7fee5de7d215e0829ce8dc4bb7060f6a496c09db880ebaec8b3efb92",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/cli/run.ts": "27e7c84c2bcadc3aa4ca4fbad02330f33000dca9a2ef41780bad3676606bc029",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/cli/upgrade.ts": "a11e7c9024f78c2e7376c57b4a99e389dbf490769779d2d37a4a3ccd6ef27d9e",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/cli/utils.ts": "4697e4280ff62b537507ed707ec84ea707b0519f8de32e2e762f498104a8d1ae",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/core/cache.ts": "2a76b1561b1870317c7ba2b88021a2f7e18233dd8dcb15eb8e5d4b98bbb280b9",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/core/component_loader.ts": "7262ea89c7b898d1c86815759e8235729db0725a72075fabc9f4a0e274f7b5aa",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/core/data_loader.ts": "8698a9e9b1aac27147dc835ba89a0e30828c81338eceae86630607d78f146215",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/core/events.ts": "e4fd1786eb7dd4a041d7d922779b9edf1ee89e51fd17ba5e756f380879ccb557",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/core/file.ts": "7c3f24a86b5a2c59c6ddc15ce7d86d171eab25495ebfe87f2530b924af18c9ea",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/core/formats.ts": "e65130e5c5f2e49435619479710c812199b480a9e145fdc6b2bac11cfe6ea08e",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/core/fs.ts": "361cd6cbb575a329013d7098542d45a5c28aa2fdd1de0b15c9015f47403f4f06",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/core/loaders/binary.ts": "bb1e1cf3faac49f6007dc6814168dc0f633da17356db18e68862e4b2a87a3f33",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/core/loaders/json.ts": "632e840340edf7d79091fb37474a1cbf86dd2d218090fb6f6c0420f5f5e9c2ce",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/core/loaders/module.ts": "abcb210fa6724b83407407cd0f7ef90462b35a2017bc135a3d124dd7f38843f6",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/core/loaders/text.ts": "42860fc3482651fa6cfba18a734bb548d6e6e1163bf1015c2abc447ab150acbd",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/core/loaders/toml.ts": "72ddfef2deea62815c28e27faa2c5356e09b3109e9547e47a6defea3d3332452",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/core/loaders/yaml.ts": "241dc41fbe51b92e38dc748eda614c35d80fb8c63a6d40253453c6bb78c9c47e",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/core/processors.ts": "0f4eef7e2dc44ef8eea1b8ab1fcc0dc577b0d3c47f800a8482379db7d94241a8",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/core/renderer.ts": "beeefafbc45030cc3d9c8ca7a214e1a28d70431574090045f0e63f2f9414843a",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/core/scopes.ts": "dbdf93d7a9cead84833779e974f190b1379356ec7c0ccd34aa92f917c2cdd2f9",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/core/scripts.ts": "286969b120d2290ba57a7fdd9b37e587aacf4e4162d92f51f1f1e9e18c864f30",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/core/searcher.ts": "9093c2c64d1190b55a886b2905a224e0cbf86532bea4883e065e391851a8f14c",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/core/server.ts": "3d663ed7cffed0af107ff03adf344ab62f25ac302d49b3fb85ec4a479b2e12ab",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/core/site.ts": "97ce888262f060501e8b4117c1e9863eb3fc7d370fcb9f6f553f59904dee2667",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/core/slugifier.ts": "70427c98d32533171933304d34867c15d6b7bcfd48c7d1e0347184b8c4fb8b8e",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/core/source.ts": "dcdb3e4d5edee754b322ae34829d46a02ead0815f912e7cbf4d60a964faa9886",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/core/utils/cli_options.ts": "ce8731a5e9c23b95217b6967dc4e5c434637a33d16806189acc6a87728b2e649",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/core/utils/concurrent.ts": "cb0775b3d95f3faa356aa3a3e489dccef8807ed93cc4f84fcf5bc81e87c29504",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/core/utils/data_values.ts": "ff6866d0c61bdca40c6ba98826ccc8626d8a553d4f8f4a7d320041eea21aa900",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/core/utils/date.ts": "4972e6e43d9756a3858494004e1b45df3b947033abe68db02acfc0bbb7847ce1",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/core/utils/digest.ts": "445b387983391af73269686292a65bb677119a25a327776885ff1242a9397ad8",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/core/utils/dom.ts": "d406fb5c48ceb012286d0aff66ef635261eda666de2ce07538c0cf9366b8fecd",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/core/utils/env.ts": "d2440f14ad27e65b0a42b35a52f59ccce0430dd52950bd5df103bb1c9ba1a4a7",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/core/utils/generator.ts": "1e664e9fd4c469e38a0acf5c94fd49dac4f38cb6334563ea4b7fc498b5958877",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/core/utils/log.ts": "371a419a167f3002e28fd3cb8d8409e210a844f5f1212f36e607417f77d65a8a",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/core/utils/lume_config.ts": "6898667e47285849e775d409aafbc6e807acdb2062e752aae26fe2ebaee36197",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/core/utils/lume_version.ts": "c1c63818097e4a273183429ab5b2446a253307f7bc2d0d6361a17b4f230a617d",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/core/utils/merge_data.ts": "a574d97eeaa1513d30440488f52e988f0fe2085397611852673cea10076f01ff",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/core/utils/net.ts": "21698915e73bd493d66343e9c197200e08e7b0602b2e1fa4e5393c9cf9d6c6e2",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/core/utils/object.ts": "2ae792cc546e452f92bec9cb92a572bb750162d787a11f0dfda5a1d806049883",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/core/utils/page_content.ts": "bbadb588f9d9fcf1a2af156ce4b68974dfad39b65c3c8d42a6f1895b194c7eec",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/core/utils/page_date.ts": "2a3d9c203df298ca61f568fdf509945f127f990769623c3edfd753d39807b757",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/core/utils/page_url.ts": "ff59e321814efbb921d3e62392c0e4f27d2b67799c4f25dd884d04eb35ba9bb8",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/core/utils/path.ts": "82a45e232b20d656b3a24541f602fa8d623d30183fe284576bfb322781860304",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/core/utils/read.ts": "e096b1f37f8f0a6820e6ee00af1832d133598d55c961b226d057a5467207c5cd",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/core/watcher.ts": "6c6c4b5feb540958bfd3ca78f420f4278d39eb317e9476aeec85d0ca69368873",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/core/writer.ts": "7c56cdae2fcbaebe3c4d66d6c75bc056906d82517d880ba8e02acbb464e6c6b6",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/deps/base64.ts": "5ef648c7379d3f2b949442d75a6a28792be2113c6edb5860a64205b29f89030d",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/deps/brotli.ts": "7500a8ea7474fa73fae329b00974379de587b4fcdcc68449097e6504c49f19a1",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/deps/cli.ts": "d9b7db60c2345e08c6f6fd461711e56e70f8539d5f5974a506c06bc81e97c710",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/deps/cliffy.ts": "faff0c2ca187ec9fd1ad8660141f85b9d05b5c36bab25b40eb5038c02590a310",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/deps/colors.ts": "d0fc91d58b85772bff7f77349a114162f09aa98dd8b38e85249605ae603de7c9",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/deps/crypto.ts": "020df39e6ba16ec8f3936b0ceff03a3d64bde8900a976ba3a519b5cc09d337d2",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/deps/dom.ts": "82cd9bc09d35f39d73cb6d4e8ea79bdbc6e19f68021476161440a88959b3323c",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/deps/front_matter.ts": "279c53db46ac7f557f217ffb7fbd0c307ad6cbd8ff64d91cd8b023a3b50b2c92",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/deps/fs.ts": "3c3f866b438f37d8f00e0c306c2610415587e861927d7550c8d764bba7b295a0",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/deps/hex.ts": "a24dd4cebd12358d5c5860af61c3ef732837cbfc97437af59c4b7d49e2f24e1a",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/deps/highlight.ts": "e8f830a1137ff7e8246ce21518452b8cbf8089db409458c6d9c31040c11d8428",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/deps/http.ts": "499d1e2f89bad31d06adb3d6a76207b7fc81b3fb91f274d46ca9ae2464fed97d",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/deps/init.ts": "05d45af66ebdfe63e43540618f51ece8f99d98dc49de890f10eeb43abe9ed0f3",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/deps/jsonc.ts": "e359eb0ef9f5f15518e6afe9bafb5b48bd5798dc000c8e210953c29cb319e607",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/deps/lightningcss.ts": "e0866a0b15ff5411d4f70c3fc4a46be2929c9a7499acc549ce0e2b22ae9facbd",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/deps/log.ts": "a7c738aa0d4b3a7595816499ccbddbcb045239a2c441166e3fc961d1698054d4",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/deps/markdown_it.ts": "24c1c0fd18c99b9067d9ff5d051f934cb7c3446e6afbad934f6268af8d1ceb4d",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/deps/media_types.ts": "fab5c276f8abd1db34ed7c5ccdc3d88f7a1a075cc1d1156919cab0ef35587afc",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/deps/minify_html.ts": "d6b88e9bcbcef9d0658916f852e6f9322ed88622368b01da4477533b66c11591",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/deps/pagefind.ts": "b88cbf55ec97a7b02100a9b68c9f16bcc622e0d93122b6a19c766c389a167e35",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/deps/path.ts": "2cb9b457032c687de61df71a5855a97d7de18386bfe3048c03377c733e96b3ab",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/deps/purgecss.ts": "524914d3311933aaeb8052c89c361efdc4656bf6fb8aeec9d1b3d7750dbf8d3f",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/deps/remove-markdown.ts": "c975349bb4b0a325384b8171b1648d5b79366efc8814413c8e93bfeded3280e3",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/deps/satori.ts": "4ed807a234a0abe729e4e583775501332c788750bf934d03ea5ed4dccaeb8320",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/deps/sharp.ts": "b0692f7293a33a6b191ef672420e3eb37c308ccbe5cf55d15231254e2972a8e0",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/deps/svg2png.ts": "d761fb39c37e5c5ba4ac2db25768cf0c2ff34643d3d1847a9fe736449175d5ec",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/deps/svgo.ts": "688d1272b1a2113d8ad35e70854a189d6c238b04b8237529acdaa8028abc40d6",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/deps/tailwindcss.ts": "a94c7e0431995304fb6a88a55c04bcc527ba6d4eeda207dd67d4f9b314f6683f",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/deps/temporal.ts": "1958b134c4186b0ab39316fa33ba19d1a4203e2ea445080429d60d296b91a552",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/deps/toml.ts": "cc55b94f0c44e4113ff09e153e8b1c58bc5f585b7ea1e8f14f96c8152241b166",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/deps/unidecode.ts": "e476000bf9278edd64eb79a426ec68ac45e1c691a114ee07f9b89b4d30ffca1c",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/deps/unocss.ts": "9a98cde5e492a026c2735c84e4fd3a7940415d34273a147ca45d4c6da21c214f",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/deps/vento.ts": "c905c9d3cf1553fa489dc3657de6183e0d6149f17ed0e27f84426556a5ed7267",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/deps/xml.ts": "a2171f6ed75576354faa685ebd62b63cf1d4ee518477f295604526416dd27e2f",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/deps/yaml.ts": "cbcf4d295ed88066e12a718750f09cebbf30fefa32e186844b597bce74b35557",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/middlewares/logger.ts": "c96f1a9f9d5757555b6f141865ce8551ac176f90c8ee3e9ad797b2b400a9a567",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/middlewares/no_cache.ts": "0119e3ae3a596ab12c42df693b93e5b03dd9608e289d862242751a9739438f35",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/middlewares/no_cors.ts": "4d24619b5373c98bcc3baf404db47ba088c87ac8538ea1784e58d197b81d4d02",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/middlewares/not_found.ts": "4507842d422267062c34662dceab17affcaad01858a5890fda163a8ddeb31487",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/middlewares/reload.ts": "ed0ec1c4627243d035895e2d7ecaf7a0bd1c04415476a34d13861ea9a6f9a6c5",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/middlewares/reload_client.js": "992ac4a2f4a9fb4a1ab5f23f674ef202a43d73652cdebcf7b1552b482a7410ef",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/mod.ts": "b91306d53104315c28b14ec8938b7a16a03da5202cb5488cd9b5deeda34103b5",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/plugins/brotli.ts": "549bf246f6bc31c91da59b27a42328f3cfc1d5357b359549ca344678799ff4bc",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/plugins/code_highlight.ts": "de9dd53e4a86b1ee7c9ac637961d4113e3b92b8b9b74f47397f039b1aa39b83d",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/plugins/feed.ts": "cfb10ca5bab8a44d5d8fa6d0624035b6300110be8a21cda0f815b827ba2bf307",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/plugins/json.ts": "5c49499e56b919ec848d4118ec97dd4fe0a323a6cc4c648dc45ab55297614c12",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/plugins/lightningcss.ts": "2006c712b89e9f0b88852127efc7f4c856eefec565941c5ab9ea362d35ae996a",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/plugins/markdown.ts": "7e82d897c1e35bf119dcd18b6aec7a6ba5aa06848897b34ff9cd161ec7c8757e",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/plugins/metas.ts": "a4fd1c073a00b527f91ba00f2ae61e55ee81f96b8807614c01fbf358f4f57363",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/plugins/minify_html.ts": "3a8b2037199cda2814e8c712086789b8be3646d7c29ea31c27f4fa5b03de5c41",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/plugins/modules.ts": "4e177c0ffe972b9deef10db2bf0ae52b405418af4dbac03db9e7ffbd6a3ec6ae",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/plugins/nav.ts": "bb20bb3fb8eeec2486f26b671c0c131f32b38587d1d8d56c0ae1bbee77f72dfc",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/plugins/og_images.ts": "9029f8a15d6a3f9e2aff380285d1b283cd9aa78c6970a7e50661a7e834a12f6b",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/plugins/pagefind.ts": "1e3b99c9104d85ba0cd8548cde23e02ee25f8f3d7f449d7420cf9d4ba487eb3c",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/plugins/paginate.ts": "6a1a9a24d0fabed2f722a6a6f29d98559219c69475685034181816e82d367f2e",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/plugins/picture.ts": "6e3a19d2e8fc464ea0139a8a784666924e55f98c4358a5f4e6348d56788cf8a8",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/plugins/purgecss.ts": "7d4906ea2415d8611b8af6947eaaaf56bc33040806e5b840410368f1b62fb86c",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/plugins/relations.ts": "0228745729a6361b6da6daee0df72ce4c1ebcd4e100d20e00778ff1e643c0a27",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/plugins/robots.ts": "97bf9b5e0957f7229a1a3e6fc11d708af42b968ad35f0cf00b770ebf5eaa717f",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/plugins/search.ts": "5acb5be828bbbd012fb9226cb97ec3e370d43d05aa44d16e7e7d50bab368b442",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/plugins/sitemap.ts": "9e2054569e6dd380a6ba3093eb2b4c63b1263590dd62bab134ebcd52c6616125",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/plugins/slugify_urls.ts": "95dffa7d5d7fbe06b97e6a4237df087def04e133d0a2d543d1f8023e6b9505f0",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/plugins/source_maps.ts": "afd62c4e911d2037c9edd70b1f5fe0b7b8d9cf66c1748f210a5731947b494fe4",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/plugins/sri.ts": "a1c7ff7458f55e830ed0563c8aa1d23310258c652050d7bb6cef15d908a38780",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/plugins/svgo.ts": "e22a4998b3793e1b583a1290bd8bf2b8f37b8df5d7014f45a629a5547440c24d",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/plugins/tailwindcss.ts": "b7830504a89caf2a56583cd914f1227a291b3af5b2206b338bfd877d7559a262",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/plugins/toml.ts": "e5bf35ed4915587acd453f002b00ae9b88c1782cadc25c703d7642a390af43ea",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/plugins/transform_images.ts": "165b093f280bf0174c54d04b8344b2b610c92c3ced97121149fda13b1ad25887",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/plugins/unocss.ts": "0331e3dff39b42e21229999ec369626df15c50c21eb623d0ece950fd26045edb",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/plugins/url.ts": "15f2e80b6fcbf86f8795a3676b8d533bab003ac016ff127e58165a6ac3bffc1a",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/plugins/vento.ts": "cf36711e93ce30664759306dd283328604e7669e209d28cd8f7df581e4ba9b66",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/plugins/yaml.ts": "d0ebf37c38648172c6b95c502753a3edf60278ab4f6a063f3ca00f31e0dd90cc",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/types.ts": "5f580502f366b9b25106eb72d49b30d9af7715c8a304fe6e21f382d3c2a4cc38",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@ca4e31e5e1ac05ddfea1d521238fa50a6acc11bf/cli.ts": "a3254363ab2d55df4ff1f25e253f5edc53da1088c33a74efe36e605e74bb67c4",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@ca4e31e5e1ac05ddfea1d521238fa50a6acc11bf/cli/build.ts": "a3acda3c702d6a51a8fe65ea3abc17813deea0db71e442de6120a747f56a2466",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@ca4e31e5e1ac05ddfea1d521238fa50a6acc11bf/cli/build_worker.ts": "ef70f1b58f42bd4fd15ee528b3a40593621207c2d40bd877150f453cb8610d04",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@ca4e31e5e1ac05ddfea1d521238fa50a6acc11bf/cli/cms.ts": "7f3f46c3353661a7679926d0ddcfe3e596f3c97ad2de7f535bde5906e42c3f5a",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@ca4e31e5e1ac05ddfea1d521238fa50a6acc11bf/cli/create.ts": "f340056e3b01a61007f82b47a174ede55df2d80d343e492a3853d44007bb8fc6",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@ca4e31e5e1ac05ddfea1d521238fa50a6acc11bf/cli/missing_worker_apis.ts": "70625ded7fee5de7d215e0829ce8dc4bb7060f6a496c09db880ebaec8b3efb92",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@ca4e31e5e1ac05ddfea1d521238fa50a6acc11bf/cli/run.ts": "27e7c84c2bcadc3aa4ca4fbad02330f33000dca9a2ef41780bad3676606bc029",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@ca4e31e5e1ac05ddfea1d521238fa50a6acc11bf/cli/upgrade.ts": "a11e7c9024f78c2e7376c57b4a99e389dbf490769779d2d37a4a3ccd6ef27d9e",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@ca4e31e5e1ac05ddfea1d521238fa50a6acc11bf/cli/utils.ts": "4697e4280ff62b537507ed707ec84ea707b0519f8de32e2e762f498104a8d1ae",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@ca4e31e5e1ac05ddfea1d521238fa50a6acc11bf/core/cache.ts": "2a76b1561b1870317c7ba2b88021a2f7e18233dd8dcb15eb8e5d4b98bbb280b9",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@ca4e31e5e1ac05ddfea1d521238fa50a6acc11bf/core/component_loader.ts": "63313c4329493de9d45c35a5636b01be7520c0b039da8132516fcdaabc0e9a5d",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@ca4e31e5e1ac05ddfea1d521238fa50a6acc11bf/core/data_loader.ts": "8698a9e9b1aac27147dc835ba89a0e30828c81338eceae86630607d78f146215",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@ca4e31e5e1ac05ddfea1d521238fa50a6acc11bf/core/events.ts": "e4fd1786eb7dd4a041d7d922779b9edf1ee89e51fd17ba5e756f380879ccb557",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@ca4e31e5e1ac05ddfea1d521238fa50a6acc11bf/core/file.ts": "7c3f24a86b5a2c59c6ddc15ce7d86d171eab25495ebfe87f2530b924af18c9ea",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@ca4e31e5e1ac05ddfea1d521238fa50a6acc11bf/core/formats.ts": "e65130e5c5f2e49435619479710c812199b480a9e145fdc6b2bac11cfe6ea08e",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@ca4e31e5e1ac05ddfea1d521238fa50a6acc11bf/core/fs.ts": "361cd6cbb575a329013d7098542d45a5c28aa2fdd1de0b15c9015f47403f4f06",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@ca4e31e5e1ac05ddfea1d521238fa50a6acc11bf/core/loaders/binary.ts": "bb1e1cf3faac49f6007dc6814168dc0f633da17356db18e68862e4b2a87a3f33",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@ca4e31e5e1ac05ddfea1d521238fa50a6acc11bf/core/loaders/json.ts": "632e840340edf7d79091fb37474a1cbf86dd2d218090fb6f6c0420f5f5e9c2ce",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@ca4e31e5e1ac05ddfea1d521238fa50a6acc11bf/core/loaders/module.ts": "abcb210fa6724b83407407cd0f7ef90462b35a2017bc135a3d124dd7f38843f6",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@ca4e31e5e1ac05ddfea1d521238fa50a6acc11bf/core/loaders/text.ts": "42860fc3482651fa6cfba18a734bb548d6e6e1163bf1015c2abc447ab150acbd",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@ca4e31e5e1ac05ddfea1d521238fa50a6acc11bf/core/loaders/toml.ts": "72ddfef2deea62815c28e27faa2c5356e09b3109e9547e47a6defea3d3332452",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@ca4e31e5e1ac05ddfea1d521238fa50a6acc11bf/core/loaders/yaml.ts": "241dc41fbe51b92e38dc748eda614c35d80fb8c63a6d40253453c6bb78c9c47e",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@ca4e31e5e1ac05ddfea1d521238fa50a6acc11bf/core/processors.ts": "0f4eef7e2dc44ef8eea1b8ab1fcc0dc577b0d3c47f800a8482379db7d94241a8",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@ca4e31e5e1ac05ddfea1d521238fa50a6acc11bf/core/renderer.ts": "beeefafbc45030cc3d9c8ca7a214e1a28d70431574090045f0e63f2f9414843a",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@ca4e31e5e1ac05ddfea1d521238fa50a6acc11bf/core/scopes.ts": "dbdf93d7a9cead84833779e974f190b1379356ec7c0ccd34aa92f917c2cdd2f9",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@ca4e31e5e1ac05ddfea1d521238fa50a6acc11bf/core/scripts.ts": "286969b120d2290ba57a7fdd9b37e587aacf4e4162d92f51f1f1e9e18c864f30",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@ca4e31e5e1ac05ddfea1d521238fa50a6acc11bf/core/searcher.ts": "9093c2c64d1190b55a886b2905a224e0cbf86532bea4883e065e391851a8f14c",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@ca4e31e5e1ac05ddfea1d521238fa50a6acc11bf/core/server.ts": "f1c90ea43e91f9e525e3a3e7e2c484dd88db56f6e39853a16a53f18e94230637",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@ca4e31e5e1ac05ddfea1d521238fa50a6acc11bf/core/site.ts": "78278d862042fadd607d0a78ef42ed6a5a4e7025e9f9bf3129d3867d0e85baab",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@ca4e31e5e1ac05ddfea1d521238fa50a6acc11bf/core/slugifier.ts": "70427c98d32533171933304d34867c15d6b7bcfd48c7d1e0347184b8c4fb8b8e",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@ca4e31e5e1ac05ddfea1d521238fa50a6acc11bf/core/source.ts": "e89a5ff7081dfab56d8486599a37147bb16159c47df3fe55db041491059959d3",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@ca4e31e5e1ac05ddfea1d521238fa50a6acc11bf/core/utils/cli_options.ts": "ce8731a5e9c23b95217b6967dc4e5c434637a33d16806189acc6a87728b2e649",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@ca4e31e5e1ac05ddfea1d521238fa50a6acc11bf/core/utils/concurrent.ts": "cb0775b3d95f3faa356aa3a3e489dccef8807ed93cc4f84fcf5bc81e87c29504",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@ca4e31e5e1ac05ddfea1d521238fa50a6acc11bf/core/utils/data_values.ts": "ff6866d0c61bdca40c6ba98826ccc8626d8a553d4f8f4a7d320041eea21aa900",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@ca4e31e5e1ac05ddfea1d521238fa50a6acc11bf/core/utils/date.ts": "4972e6e43d9756a3858494004e1b45df3b947033abe68db02acfc0bbb7847ce1",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@ca4e31e5e1ac05ddfea1d521238fa50a6acc11bf/core/utils/digest.ts": "445b387983391af73269686292a65bb677119a25a327776885ff1242a9397ad8",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@ca4e31e5e1ac05ddfea1d521238fa50a6acc11bf/core/utils/dom.ts": "d406fb5c48ceb012286d0aff66ef635261eda666de2ce07538c0cf9366b8fecd",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@ca4e31e5e1ac05ddfea1d521238fa50a6acc11bf/core/utils/env.ts": "d2440f14ad27e65b0a42b35a52f59ccce0430dd52950bd5df103bb1c9ba1a4a7",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@ca4e31e5e1ac05ddfea1d521238fa50a6acc11bf/core/utils/generator.ts": "1e664e9fd4c469e38a0acf5c94fd49dac4f38cb6334563ea4b7fc498b5958877",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@ca4e31e5e1ac05ddfea1d521238fa50a6acc11bf/core/utils/log.ts": "371a419a167f3002e28fd3cb8d8409e210a844f5f1212f36e607417f77d65a8a",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@ca4e31e5e1ac05ddfea1d521238fa50a6acc11bf/core/utils/lume_config.ts": "6898667e47285849e775d409aafbc6e807acdb2062e752aae26fe2ebaee36197",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@ca4e31e5e1ac05ddfea1d521238fa50a6acc11bf/core/utils/lume_version.ts": "c1c63818097e4a273183429ab5b2446a253307f7bc2d0d6361a17b4f230a617d",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@ca4e31e5e1ac05ddfea1d521238fa50a6acc11bf/core/utils/merge_data.ts": "a574d97eeaa1513d30440488f52e988f0fe2085397611852673cea10076f01ff",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@ca4e31e5e1ac05ddfea1d521238fa50a6acc11bf/core/utils/net.ts": "21698915e73bd493d66343e9c197200e08e7b0602b2e1fa4e5393c9cf9d6c6e2",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@ca4e31e5e1ac05ddfea1d521238fa50a6acc11bf/core/utils/object.ts": "2ae792cc546e452f92bec9cb92a572bb750162d787a11f0dfda5a1d806049883",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@ca4e31e5e1ac05ddfea1d521238fa50a6acc11bf/core/utils/page_content.ts": "bbadb588f9d9fcf1a2af156ce4b68974dfad39b65c3c8d42a6f1895b194c7eec",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@ca4e31e5e1ac05ddfea1d521238fa50a6acc11bf/core/utils/page_date.ts": "2a3d9c203df298ca61f568fdf509945f127f990769623c3edfd753d39807b757",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@ca4e31e5e1ac05ddfea1d521238fa50a6acc11bf/core/utils/page_url.ts": "ff59e321814efbb921d3e62392c0e4f27d2b67799c4f25dd884d04eb35ba9bb8",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@ca4e31e5e1ac05ddfea1d521238fa50a6acc11bf/core/utils/path.ts": "82a45e232b20d656b3a24541f602fa8d623d30183fe284576bfb322781860304",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@ca4e31e5e1ac05ddfea1d521238fa50a6acc11bf/core/utils/read.ts": "e096b1f37f8f0a6820e6ee00af1832d133598d55c961b226d057a5467207c5cd",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@ca4e31e5e1ac05ddfea1d521238fa50a6acc11bf/core/watcher.ts": "6c6c4b5feb540958bfd3ca78f420f4278d39eb317e9476aeec85d0ca69368873",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@ca4e31e5e1ac05ddfea1d521238fa50a6acc11bf/core/writer.ts": "7c56cdae2fcbaebe3c4d66d6c75bc056906d82517d880ba8e02acbb464e6c6b6",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@ca4e31e5e1ac05ddfea1d521238fa50a6acc11bf/deps/base64.ts": "e2059f11343da26acc2e677d1f87f484e4da3e1f34f642e577cf18f6e752c224",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@ca4e31e5e1ac05ddfea1d521238fa50a6acc11bf/deps/brotli.ts": "7500a8ea7474fa73fae329b00974379de587b4fcdcc68449097e6504c49f19a1",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@ca4e31e5e1ac05ddfea1d521238fa50a6acc11bf/deps/cli.ts": "e2f6645e214662f35d6ed020e8b1cfb8eafaa8f7a1365109cbf4fe20cb9468ff",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@ca4e31e5e1ac05ddfea1d521238fa50a6acc11bf/deps/cliffy.ts": "faff0c2ca187ec9fd1ad8660141f85b9d05b5c36bab25b40eb5038c02590a310",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@ca4e31e5e1ac05ddfea1d521238fa50a6acc11bf/deps/colors.ts": "6b2544e53b836534ad251b47f56b67f1a87a7eb7483dda13a7ced905cc087791",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@ca4e31e5e1ac05ddfea1d521238fa50a6acc11bf/deps/crypto.ts": "70046784de20c6412d0c554dc08093b4527184987126943a613ade39fa12c3eb",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@ca4e31e5e1ac05ddfea1d521238fa50a6acc11bf/deps/date.ts": "cbd4703210520fafd80daf364d9aa4180b322e88f6d01269f6002cfd10a33109",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@ca4e31e5e1ac05ddfea1d521238fa50a6acc11bf/deps/dom.ts": "82cd9bc09d35f39d73cb6d4e8ea79bdbc6e19f68021476161440a88959b3323c",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@ca4e31e5e1ac05ddfea1d521238fa50a6acc11bf/deps/front_matter.ts": "279c53db46ac7f557f217ffb7fbd0c307ad6cbd8ff64d91cd8b023a3b50b2c92",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@ca4e31e5e1ac05ddfea1d521238fa50a6acc11bf/deps/fs.ts": "a18e29ecdb8711a09e534876e4866ab56719c3745d61145e815acedbafb02c46",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@ca4e31e5e1ac05ddfea1d521238fa50a6acc11bf/deps/hex.ts": "663a8bef15a21db473d0f8d8ac1c3ac9a658e5ee37032ae430eff3fea652813c",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@ca4e31e5e1ac05ddfea1d521238fa50a6acc11bf/deps/http.ts": "3523ed68b54224df945c1cdec9b6b8eb0d00a8e0602eb0367528d9ebb07b32a5",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@ca4e31e5e1ac05ddfea1d521238fa50a6acc11bf/deps/init.ts": "05d45af66ebdfe63e43540618f51ece8f99d98dc49de890f10eeb43abe9ed0f3",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@ca4e31e5e1ac05ddfea1d521238fa50a6acc11bf/deps/jsonc.ts": "e359eb0ef9f5f15518e6afe9bafb5b48bd5798dc000c8e210953c29cb319e607",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@ca4e31e5e1ac05ddfea1d521238fa50a6acc11bf/deps/lightningcss.ts": "e0866a0b15ff5411d4f70c3fc4a46be2929c9a7499acc549ce0e2b22ae9facbd",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@ca4e31e5e1ac05ddfea1d521238fa50a6acc11bf/deps/log.ts": "26457db654fe564ea9e52161d5d446d45de2a041b49b8f61cd22cbef2145f8e2",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@ca4e31e5e1ac05ddfea1d521238fa50a6acc11bf/deps/markdown_it.ts": "24c1c0fd18c99b9067d9ff5d051f934cb7c3446e6afbad934f6268af8d1ceb4d",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@ca4e31e5e1ac05ddfea1d521238fa50a6acc11bf/deps/media_types.ts": "fab5c276f8abd1db34ed7c5ccdc3d88f7a1a075cc1d1156919cab0ef35587afc",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@ca4e31e5e1ac05ddfea1d521238fa50a6acc11bf/deps/minify_html.ts": "d6b88e9bcbcef9d0658916f852e6f9322ed88622368b01da4477533b66c11591",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@ca4e31e5e1ac05ddfea1d521238fa50a6acc11bf/deps/path.ts": "2cb9b457032c687de61df71a5855a97d7de18386bfe3048c03377c733e96b3ab",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@ca4e31e5e1ac05ddfea1d521238fa50a6acc11bf/deps/postcss.ts": "4121308d00c8479aac92f1ba8b1a44f4ecbf4bd5db6956fb0b3bff999d7f0985",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@ca4e31e5e1ac05ddfea1d521238fa50a6acc11bf/deps/purgecss.ts": "524914d3311933aaeb8052c89c361efdc4656bf6fb8aeec9d1b3d7750dbf8d3f",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@ca4e31e5e1ac05ddfea1d521238fa50a6acc11bf/deps/remove-markdown.ts": "c975349bb4b0a325384b8171b1648d5b79366efc8814413c8e93bfeded3280e3",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@ca4e31e5e1ac05ddfea1d521238fa50a6acc11bf/deps/sharp.ts": "b0692f7293a33a6b191ef672420e3eb37c308ccbe5cf55d15231254e2972a8e0",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@ca4e31e5e1ac05ddfea1d521238fa50a6acc11bf/deps/svg2png.ts": "d761fb39c37e5c5ba4ac2db25768cf0c2ff34643d3d1847a9fe736449175d5ec",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@ca4e31e5e1ac05ddfea1d521238fa50a6acc11bf/deps/svgo.ts": "688d1272b1a2113d8ad35e70854a189d6c238b04b8237529acdaa8028abc40d6",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@ca4e31e5e1ac05ddfea1d521238fa50a6acc11bf/deps/tailwindcss.ts": "f3103ddcb10e234f33d9cdb0a776bfaacceae93d93fbdfb990372b7bcfed4836",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@ca4e31e5e1ac05ddfea1d521238fa50a6acc11bf/deps/temporal.ts": "1958b134c4186b0ab39316fa33ba19d1a4203e2ea445080429d60d296b91a552",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@ca4e31e5e1ac05ddfea1d521238fa50a6acc11bf/deps/toml.ts": "cc55b94f0c44e4113ff09e153e8b1c58bc5f585b7ea1e8f14f96c8152241b166",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@ca4e31e5e1ac05ddfea1d521238fa50a6acc11bf/deps/unidecode.ts": "e476000bf9278edd64eb79a426ec68ac45e1c691a114ee07f9b89b4d30ffca1c",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@ca4e31e5e1ac05ddfea1d521238fa50a6acc11bf/deps/vento.ts": "c905c9d3cf1553fa489dc3657de6183e0d6149f17ed0e27f84426556a5ed7267",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@ca4e31e5e1ac05ddfea1d521238fa50a6acc11bf/deps/xml.ts": "a2171f6ed75576354faa685ebd62b63cf1d4ee518477f295604526416dd27e2f",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@ca4e31e5e1ac05ddfea1d521238fa50a6acc11bf/deps/yaml.ts": "cbcf4d295ed88066e12a718750f09cebbf30fefa32e186844b597bce74b35557",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@ca4e31e5e1ac05ddfea1d521238fa50a6acc11bf/middlewares/logger.ts": "c96f1a9f9d5757555b6f141865ce8551ac176f90c8ee3e9ad797b2b400a9a567",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@ca4e31e5e1ac05ddfea1d521238fa50a6acc11bf/middlewares/no_cache.ts": "0119e3ae3a596ab12c42df693b93e5b03dd9608e289d862242751a9739438f35",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@ca4e31e5e1ac05ddfea1d521238fa50a6acc11bf/middlewares/no_cors.ts": "4d24619b5373c98bcc3baf404db47ba088c87ac8538ea1784e58d197b81d4d02",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@ca4e31e5e1ac05ddfea1d521238fa50a6acc11bf/middlewares/not_found.ts": "4507842d422267062c34662dceab17affcaad01858a5890fda163a8ddeb31487",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@ca4e31e5e1ac05ddfea1d521238fa50a6acc11bf/middlewares/reload.ts": "ed0ec1c4627243d035895e2d7ecaf7a0bd1c04415476a34d13861ea9a6f9a6c5",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@ca4e31e5e1ac05ddfea1d521238fa50a6acc11bf/middlewares/reload_client.js": "992ac4a2f4a9fb4a1ab5f23f674ef202a43d73652cdebcf7b1552b482a7410ef",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@ca4e31e5e1ac05ddfea1d521238fa50a6acc11bf/mod.ts": "b91306d53104315c28b14ec8938b7a16a03da5202cb5488cd9b5deeda34103b5",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@ca4e31e5e1ac05ddfea1d521238fa50a6acc11bf/plugins/brotli.ts": "549bf246f6bc31c91da59b27a42328f3cfc1d5357b359549ca344678799ff4bc",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@ca4e31e5e1ac05ddfea1d521238fa50a6acc11bf/plugins/date.ts": "cbf280a28f8aef6f2c9ab9b5234875ab5994fe68e0f977798043e056dfc9a56f",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@ca4e31e5e1ac05ddfea1d521238fa50a6acc11bf/plugins/feed.ts": "914702397b3dc533a4cb7bd7e88f04f9f379390780ea6990a511e2390c57ab4b",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@ca4e31e5e1ac05ddfea1d521238fa50a6acc11bf/plugins/google_fonts.ts": "773c5d5855407ef127a97817c84f521a8006596bde04fb47231ec20900378a72",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@ca4e31e5e1ac05ddfea1d521238fa50a6acc11bf/plugins/json.ts": "5c49499e56b919ec848d4118ec97dd4fe0a323a6cc4c648dc45ab55297614c12",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@ca4e31e5e1ac05ddfea1d521238fa50a6acc11bf/plugins/lightningcss.ts": "2006c712b89e9f0b88852127efc7f4c856eefec565941c5ab9ea362d35ae996a",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@ca4e31e5e1ac05ddfea1d521238fa50a6acc11bf/plugins/markdown.ts": "7e82d897c1e35bf119dcd18b6aec7a6ba5aa06848897b34ff9cd161ec7c8757e",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@ca4e31e5e1ac05ddfea1d521238fa50a6acc11bf/plugins/metas.ts": "a4fd1c073a00b527f91ba00f2ae61e55ee81f96b8807614c01fbf358f4f57363",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@ca4e31e5e1ac05ddfea1d521238fa50a6acc11bf/plugins/minify_html.ts": "3a8b2037199cda2814e8c712086789b8be3646d7c29ea31c27f4fa5b03de5c41",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@ca4e31e5e1ac05ddfea1d521238fa50a6acc11bf/plugins/modules.ts": "4e177c0ffe972b9deef10db2bf0ae52b405418af4dbac03db9e7ffbd6a3ec6ae",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@ca4e31e5e1ac05ddfea1d521238fa50a6acc11bf/plugins/paginate.ts": "6a1a9a24d0fabed2f722a6a6f29d98559219c69475685034181816e82d367f2e",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@ca4e31e5e1ac05ddfea1d521238fa50a6acc11bf/plugins/picture.ts": "6e3a19d2e8fc464ea0139a8a784666924e55f98c4358a5f4e6348d56788cf8a8",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@ca4e31e5e1ac05ddfea1d521238fa50a6acc11bf/plugins/postcss.ts": "d74976aa0af86dac36835f624e12bd97bdb485c96a89eb97e2057d0f7685c16b",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@ca4e31e5e1ac05ddfea1d521238fa50a6acc11bf/plugins/purgecss.ts": "7d4906ea2415d8611b8af6947eaaaf56bc33040806e5b840410368f1b62fb86c",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@ca4e31e5e1ac05ddfea1d521238fa50a6acc11bf/plugins/relations.ts": "0228745729a6361b6da6daee0df72ce4c1ebcd4e100d20e00778ff1e643c0a27",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@ca4e31e5e1ac05ddfea1d521238fa50a6acc11bf/plugins/robots.ts": "97bf9b5e0957f7229a1a3e6fc11d708af42b968ad35f0cf00b770ebf5eaa717f",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@ca4e31e5e1ac05ddfea1d521238fa50a6acc11bf/plugins/search.ts": "5acb5be828bbbd012fb9226cb97ec3e370d43d05aa44d16e7e7d50bab368b442",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@ca4e31e5e1ac05ddfea1d521238fa50a6acc11bf/plugins/sitemap.ts": "57600034ce49e875a2658f86cb2668b634102db6db5583ddbfbadbec66a538ae",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@ca4e31e5e1ac05ddfea1d521238fa50a6acc11bf/plugins/slugify_urls.ts": "95dffa7d5d7fbe06b97e6a4237df087def04e133d0a2d543d1f8023e6b9505f0",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@ca4e31e5e1ac05ddfea1d521238fa50a6acc11bf/plugins/source_maps.ts": "afd62c4e911d2037c9edd70b1f5fe0b7b8d9cf66c1748f210a5731947b494fe4",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@ca4e31e5e1ac05ddfea1d521238fa50a6acc11bf/plugins/svgo.ts": "e22a4998b3793e1b583a1290bd8bf2b8f37b8df5d7014f45a629a5547440c24d",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@ca4e31e5e1ac05ddfea1d521238fa50a6acc11bf/plugins/tailwindcss.ts": "3f7e3bb5358b09ea2a291eae947e3058200ad9842242955f20662beed968821d",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@ca4e31e5e1ac05ddfea1d521238fa50a6acc11bf/plugins/toml.ts": "e5bf35ed4915587acd453f002b00ae9b88c1782cadc25c703d7642a390af43ea",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@ca4e31e5e1ac05ddfea1d521238fa50a6acc11bf/plugins/transform_images.ts": "165b093f280bf0174c54d04b8344b2b610c92c3ced97121149fda13b1ad25887",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@ca4e31e5e1ac05ddfea1d521238fa50a6acc11bf/plugins/url.ts": "15f2e80b6fcbf86f8795a3676b8d533bab003ac016ff127e58165a6ac3bffc1a",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@ca4e31e5e1ac05ddfea1d521238fa50a6acc11bf/plugins/vento.ts": "cf36711e93ce30664759306dd283328604e7669e209d28cd8f7df581e4ba9b66",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@ca4e31e5e1ac05ddfea1d521238fa50a6acc11bf/plugins/yaml.ts": "d0ebf37c38648172c6b95c502753a3edf60278ab4f6a063f3ca00f31e0dd90cc",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@ca4e31e5e1ac05ddfea1d521238fa50a6acc11bf/types.ts": "5f580502f366b9b25106eb72d49b30d9af7715c8a304fe6e21f382d3c2a4cc38",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@d2489f6aa6afbb8e9c244bd9b2f25d037fddb6bb/cli.ts": "a3254363ab2d55df4ff1f25e253f5edc53da1088c33a74efe36e605e74bb67c4",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@d2489f6aa6afbb8e9c244bd9b2f25d037fddb6bb/cli/build.ts": "a3acda3c702d6a51a8fe65ea3abc17813deea0db71e442de6120a747f56a2466",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@d2489f6aa6afbb8e9c244bd9b2f25d037fddb6bb/cli/build_worker.ts": "76dc2fdafec8b1389f807729191d596d091c377d3a1bd1702a25776482e2e783",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@d2489f6aa6afbb8e9c244bd9b2f25d037fddb6bb/cli/cms.ts": "7f3f46c3353661a7679926d0ddcfe3e596f3c97ad2de7f535bde5906e42c3f5a",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@d2489f6aa6afbb8e9c244bd9b2f25d037fddb6bb/cli/create.ts": "f340056e3b01a61007f82b47a174ede55df2d80d343e492a3853d44007bb8fc6",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@d2489f6aa6afbb8e9c244bd9b2f25d037fddb6bb/cli/missing_worker_apis.ts": "70625ded7fee5de7d215e0829ce8dc4bb7060f6a496c09db880ebaec8b3efb92",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@d2489f6aa6afbb8e9c244bd9b2f25d037fddb6bb/cli/run.ts": "27e7c84c2bcadc3aa4ca4fbad02330f33000dca9a2ef41780bad3676606bc029",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@d2489f6aa6afbb8e9c244bd9b2f25d037fddb6bb/cli/upgrade.ts": "a11e7c9024f78c2e7376c57b4a99e389dbf490769779d2d37a4a3ccd6ef27d9e",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@d2489f6aa6afbb8e9c244bd9b2f25d037fddb6bb/cli/utils.ts": "4697e4280ff62b537507ed707ec84ea707b0519f8de32e2e762f498104a8d1ae",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@d2489f6aa6afbb8e9c244bd9b2f25d037fddb6bb/core/cache.ts": "2a76b1561b1870317c7ba2b88021a2f7e18233dd8dcb15eb8e5d4b98bbb280b9",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@d2489f6aa6afbb8e9c244bd9b2f25d037fddb6bb/core/component_loader.ts": "63313c4329493de9d45c35a5636b01be7520c0b039da8132516fcdaabc0e9a5d",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@d2489f6aa6afbb8e9c244bd9b2f25d037fddb6bb/core/data_loader.ts": "8698a9e9b1aac27147dc835ba89a0e30828c81338eceae86630607d78f146215",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@d2489f6aa6afbb8e9c244bd9b2f25d037fddb6bb/core/events.ts": "e4fd1786eb7dd4a041d7d922779b9edf1ee89e51fd17ba5e756f380879ccb557",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@d2489f6aa6afbb8e9c244bd9b2f25d037fddb6bb/core/file.ts": "7c3f24a86b5a2c59c6ddc15ce7d86d171eab25495ebfe87f2530b924af18c9ea",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@d2489f6aa6afbb8e9c244bd9b2f25d037fddb6bb/core/formats.ts": "e65130e5c5f2e49435619479710c812199b480a9e145fdc6b2bac11cfe6ea08e",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@d2489f6aa6afbb8e9c244bd9b2f25d037fddb6bb/core/fs.ts": "361cd6cbb575a329013d7098542d45a5c28aa2fdd1de0b15c9015f47403f4f06",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@d2489f6aa6afbb8e9c244bd9b2f25d037fddb6bb/core/loaders/binary.ts": "bb1e1cf3faac49f6007dc6814168dc0f633da17356db18e68862e4b2a87a3f33",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@d2489f6aa6afbb8e9c244bd9b2f25d037fddb6bb/core/loaders/json.ts": "632e840340edf7d79091fb37474a1cbf86dd2d218090fb6f6c0420f5f5e9c2ce",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@d2489f6aa6afbb8e9c244bd9b2f25d037fddb6bb/core/loaders/module.ts": "abcb210fa6724b83407407cd0f7ef90462b35a2017bc135a3d124dd7f38843f6",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@d2489f6aa6afbb8e9c244bd9b2f25d037fddb6bb/core/loaders/text.ts": "42860fc3482651fa6cfba18a734bb548d6e6e1163bf1015c2abc447ab150acbd",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@d2489f6aa6afbb8e9c244bd9b2f25d037fddb6bb/core/loaders/toml.ts": "72ddfef2deea62815c28e27faa2c5356e09b3109e9547e47a6defea3d3332452",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@d2489f6aa6afbb8e9c244bd9b2f25d037fddb6bb/core/loaders/yaml.ts": "241dc41fbe51b92e38dc748eda614c35d80fb8c63a6d40253453c6bb78c9c47e",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@d2489f6aa6afbb8e9c244bd9b2f25d037fddb6bb/core/processors.ts": "0f4eef7e2dc44ef8eea1b8ab1fcc0dc577b0d3c47f800a8482379db7d94241a8",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@d2489f6aa6afbb8e9c244bd9b2f25d037fddb6bb/core/renderer.ts": "beeefafbc45030cc3d9c8ca7a214e1a28d70431574090045f0e63f2f9414843a",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@d2489f6aa6afbb8e9c244bd9b2f25d037fddb6bb/core/scopes.ts": "dbdf93d7a9cead84833779e974f190b1379356ec7c0ccd34aa92f917c2cdd2f9",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@d2489f6aa6afbb8e9c244bd9b2f25d037fddb6bb/core/scripts.ts": "286969b120d2290ba57a7fdd9b37e587aacf4e4162d92f51f1f1e9e18c864f30",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@d2489f6aa6afbb8e9c244bd9b2f25d037fddb6bb/core/searcher.ts": "9093c2c64d1190b55a886b2905a224e0cbf86532bea4883e065e391851a8f14c",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@d2489f6aa6afbb8e9c244bd9b2f25d037fddb6bb/core/server.ts": "f1c90ea43e91f9e525e3a3e7e2c484dd88db56f6e39853a16a53f18e94230637",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@d2489f6aa6afbb8e9c244bd9b2f25d037fddb6bb/core/site.ts": "ed95cf518957495f3ea5db86a05f8679a25d0e9ea86a7aa11003ad3c1c47ee7f",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@d2489f6aa6afbb8e9c244bd9b2f25d037fddb6bb/core/slugifier.ts": "70427c98d32533171933304d34867c15d6b7bcfd48c7d1e0347184b8c4fb8b8e",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@d2489f6aa6afbb8e9c244bd9b2f25d037fddb6bb/core/source.ts": "e89a5ff7081dfab56d8486599a37147bb16159c47df3fe55db041491059959d3",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@d2489f6aa6afbb8e9c244bd9b2f25d037fddb6bb/core/utils/cli_options.ts": "ce8731a5e9c23b95217b6967dc4e5c434637a33d16806189acc6a87728b2e649",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@d2489f6aa6afbb8e9c244bd9b2f25d037fddb6bb/core/utils/concurrent.ts": "cb0775b3d95f3faa356aa3a3e489dccef8807ed93cc4f84fcf5bc81e87c29504",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@d2489f6aa6afbb8e9c244bd9b2f25d037fddb6bb/core/utils/data_values.ts": "ff6866d0c61bdca40c6ba98826ccc8626d8a553d4f8f4a7d320041eea21aa900",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@d2489f6aa6afbb8e9c244bd9b2f25d037fddb6bb/core/utils/date.ts": "4972e6e43d9756a3858494004e1b45df3b947033abe68db02acfc0bbb7847ce1",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@d2489f6aa6afbb8e9c244bd9b2f25d037fddb6bb/core/utils/digest.ts": "445b387983391af73269686292a65bb677119a25a327776885ff1242a9397ad8",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@d2489f6aa6afbb8e9c244bd9b2f25d037fddb6bb/core/utils/dom.ts": "d406fb5c48ceb012286d0aff66ef635261eda666de2ce07538c0cf9366b8fecd",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@d2489f6aa6afbb8e9c244bd9b2f25d037fddb6bb/core/utils/env.ts": "d2440f14ad27e65b0a42b35a52f59ccce0430dd52950bd5df103bb1c9ba1a4a7",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@d2489f6aa6afbb8e9c244bd9b2f25d037fddb6bb/core/utils/generator.ts": "1e664e9fd4c469e38a0acf5c94fd49dac4f38cb6334563ea4b7fc498b5958877",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@d2489f6aa6afbb8e9c244bd9b2f25d037fddb6bb/core/utils/log.ts": "371a419a167f3002e28fd3cb8d8409e210a844f5f1212f36e607417f77d65a8a",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@d2489f6aa6afbb8e9c244bd9b2f25d037fddb6bb/core/utils/lume_config.ts": "6898667e47285849e775d409aafbc6e807acdb2062e752aae26fe2ebaee36197",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@d2489f6aa6afbb8e9c244bd9b2f25d037fddb6bb/core/utils/lume_version.ts": "c1c63818097e4a273183429ab5b2446a253307f7bc2d0d6361a17b4f230a617d",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@d2489f6aa6afbb8e9c244bd9b2f25d037fddb6bb/core/utils/merge_data.ts": "a574d97eeaa1513d30440488f52e988f0fe2085397611852673cea10076f01ff",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@d2489f6aa6afbb8e9c244bd9b2f25d037fddb6bb/core/utils/net.ts": "21698915e73bd493d66343e9c197200e08e7b0602b2e1fa4e5393c9cf9d6c6e2",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@d2489f6aa6afbb8e9c244bd9b2f25d037fddb6bb/core/utils/object.ts": "2ae792cc546e452f92bec9cb92a572bb750162d787a11f0dfda5a1d806049883",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@d2489f6aa6afbb8e9c244bd9b2f25d037fddb6bb/core/utils/page_content.ts": "bbadb588f9d9fcf1a2af156ce4b68974dfad39b65c3c8d42a6f1895b194c7eec",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@d2489f6aa6afbb8e9c244bd9b2f25d037fddb6bb/core/utils/page_date.ts": "2a3d9c203df298ca61f568fdf509945f127f990769623c3edfd753d39807b757",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@d2489f6aa6afbb8e9c244bd9b2f25d037fddb6bb/core/utils/page_url.ts": "ff59e321814efbb921d3e62392c0e4f27d2b67799c4f25dd884d04eb35ba9bb8",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@d2489f6aa6afbb8e9c244bd9b2f25d037fddb6bb/core/utils/path.ts": "82a45e232b20d656b3a24541f602fa8d623d30183fe284576bfb322781860304",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@d2489f6aa6afbb8e9c244bd9b2f25d037fddb6bb/core/utils/read.ts": "e096b1f37f8f0a6820e6ee00af1832d133598d55c961b226d057a5467207c5cd",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@d2489f6aa6afbb8e9c244bd9b2f25d037fddb6bb/core/watcher.ts": "6c6c4b5feb540958bfd3ca78f420f4278d39eb317e9476aeec85d0ca69368873",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@d2489f6aa6afbb8e9c244bd9b2f25d037fddb6bb/core/writer.ts": "7c56cdae2fcbaebe3c4d66d6c75bc056906d82517d880ba8e02acbb464e6c6b6",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@d2489f6aa6afbb8e9c244bd9b2f25d037fddb6bb/deps/base64.ts": "e2059f11343da26acc2e677d1f87f484e4da3e1f34f642e577cf18f6e752c224",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@d2489f6aa6afbb8e9c244bd9b2f25d037fddb6bb/deps/brotli.ts": "7500a8ea7474fa73fae329b00974379de587b4fcdcc68449097e6504c49f19a1",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@d2489f6aa6afbb8e9c244bd9b2f25d037fddb6bb/deps/cli.ts": "854af07f6c75ff2393a9b95722edb7f7ca869f9f55924d6938b4c66bbb48b6da",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@d2489f6aa6afbb8e9c244bd9b2f25d037fddb6bb/deps/cliffy.ts": "faff0c2ca187ec9fd1ad8660141f85b9d05b5c36bab25b40eb5038c02590a310",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@d2489f6aa6afbb8e9c244bd9b2f25d037fddb6bb/deps/colors.ts": "6b2544e53b836534ad251b47f56b67f1a87a7eb7483dda13a7ced905cc087791",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@d2489f6aa6afbb8e9c244bd9b2f25d037fddb6bb/deps/crypto.ts": "70046784de20c6412d0c554dc08093b4527184987126943a613ade39fa12c3eb",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@d2489f6aa6afbb8e9c244bd9b2f25d037fddb6bb/deps/date.ts": "cbd4703210520fafd80daf364d9aa4180b322e88f6d01269f6002cfd10a33109",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@d2489f6aa6afbb8e9c244bd9b2f25d037fddb6bb/deps/dom.ts": "82cd9bc09d35f39d73cb6d4e8ea79bdbc6e19f68021476161440a88959b3323c",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@d2489f6aa6afbb8e9c244bd9b2f25d037fddb6bb/deps/front_matter.ts": "5b04435f209b48339bd718349965a66072c1bdca3747ac96263143cbe0963f61",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@d2489f6aa6afbb8e9c244bd9b2f25d037fddb6bb/deps/fs.ts": "805be5e4466063cf7487cb82396a23dcd039bf2b503672572043c35073ff4353",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@d2489f6aa6afbb8e9c244bd9b2f25d037fddb6bb/deps/hex.ts": "663a8bef15a21db473d0f8d8ac1c3ac9a658e5ee37032ae430eff3fea652813c",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@d2489f6aa6afbb8e9c244bd9b2f25d037fddb6bb/deps/http.ts": "3523ed68b54224df945c1cdec9b6b8eb0d00a8e0602eb0367528d9ebb07b32a5",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@d2489f6aa6afbb8e9c244bd9b2f25d037fddb6bb/deps/init.ts": "05d45af66ebdfe63e43540618f51ece8f99d98dc49de890f10eeb43abe9ed0f3",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@d2489f6aa6afbb8e9c244bd9b2f25d037fddb6bb/deps/jsonc.ts": "e359eb0ef9f5f15518e6afe9bafb5b48bd5798dc000c8e210953c29cb319e607",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@d2489f6aa6afbb8e9c244bd9b2f25d037fddb6bb/deps/lightningcss.ts": "e0866a0b15ff5411d4f70c3fc4a46be2929c9a7499acc549ce0e2b22ae9facbd",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@d2489f6aa6afbb8e9c244bd9b2f25d037fddb6bb/deps/log.ts": "26457db654fe564ea9e52161d5d446d45de2a041b49b8f61cd22cbef2145f8e2",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@d2489f6aa6afbb8e9c244bd9b2f25d037fddb6bb/deps/markdown_it.ts": "24c1c0fd18c99b9067d9ff5d051f934cb7c3446e6afbad934f6268af8d1ceb4d",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@d2489f6aa6afbb8e9c244bd9b2f25d037fddb6bb/deps/media_types.ts": "fab5c276f8abd1db34ed7c5ccdc3d88f7a1a075cc1d1156919cab0ef35587afc",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@d2489f6aa6afbb8e9c244bd9b2f25d037fddb6bb/deps/minify_html.ts": "d6b88e9bcbcef9d0658916f852e6f9322ed88622368b01da4477533b66c11591",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@d2489f6aa6afbb8e9c244bd9b2f25d037fddb6bb/deps/path.ts": "2cb9b457032c687de61df71a5855a97d7de18386bfe3048c03377c733e96b3ab",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@d2489f6aa6afbb8e9c244bd9b2f25d037fddb6bb/deps/purgecss.ts": "524914d3311933aaeb8052c89c361efdc4656bf6fb8aeec9d1b3d7750dbf8d3f",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@d2489f6aa6afbb8e9c244bd9b2f25d037fddb6bb/deps/remove-markdown.ts": "c975349bb4b0a325384b8171b1648d5b79366efc8814413c8e93bfeded3280e3",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@d2489f6aa6afbb8e9c244bd9b2f25d037fddb6bb/deps/sharp.ts": "b0692f7293a33a6b191ef672420e3eb37c308ccbe5cf55d15231254e2972a8e0",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@d2489f6aa6afbb8e9c244bd9b2f25d037fddb6bb/deps/svg2png.ts": "d761fb39c37e5c5ba4ac2db25768cf0c2ff34643d3d1847a9fe736449175d5ec",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@d2489f6aa6afbb8e9c244bd9b2f25d037fddb6bb/deps/svgo.ts": "688d1272b1a2113d8ad35e70854a189d6c238b04b8237529acdaa8028abc40d6",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@d2489f6aa6afbb8e9c244bd9b2f25d037fddb6bb/deps/tailwindcss.ts": "f3103ddcb10e234f33d9cdb0a776bfaacceae93d93fbdfb990372b7bcfed4836",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@d2489f6aa6afbb8e9c244bd9b2f25d037fddb6bb/deps/temporal.ts": "1958b134c4186b0ab39316fa33ba19d1a4203e2ea445080429d60d296b91a552",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@d2489f6aa6afbb8e9c244bd9b2f25d037fddb6bb/deps/toml.ts": "cc55b94f0c44e4113ff09e153e8b1c58bc5f585b7ea1e8f14f96c8152241b166",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@d2489f6aa6afbb8e9c244bd9b2f25d037fddb6bb/deps/unidecode.ts": "e476000bf9278edd64eb79a426ec68ac45e1c691a114ee07f9b89b4d30ffca1c",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@d2489f6aa6afbb8e9c244bd9b2f25d037fddb6bb/deps/vento.ts": "c905c9d3cf1553fa489dc3657de6183e0d6149f17ed0e27f84426556a5ed7267",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@d2489f6aa6afbb8e9c244bd9b2f25d037fddb6bb/deps/xml.ts": "a2171f6ed75576354faa685ebd62b63cf1d4ee518477f295604526416dd27e2f",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@d2489f6aa6afbb8e9c244bd9b2f25d037fddb6bb/deps/yaml.ts": "cbcf4d295ed88066e12a718750f09cebbf30fefa32e186844b597bce74b35557",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@d2489f6aa6afbb8e9c244bd9b2f25d037fddb6bb/middlewares/logger.ts": "c96f1a9f9d5757555b6f141865ce8551ac176f90c8ee3e9ad797b2b400a9a567",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@d2489f6aa6afbb8e9c244bd9b2f25d037fddb6bb/middlewares/no_cache.ts": "0119e3ae3a596ab12c42df693b93e5b03dd9608e289d862242751a9739438f35",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@d2489f6aa6afbb8e9c244bd9b2f25d037fddb6bb/middlewares/no_cors.ts": "4d24619b5373c98bcc3baf404db47ba088c87ac8538ea1784e58d197b81d4d02",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@d2489f6aa6afbb8e9c244bd9b2f25d037fddb6bb/middlewares/not_found.ts": "4507842d422267062c34662dceab17affcaad01858a5890fda163a8ddeb31487",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@d2489f6aa6afbb8e9c244bd9b2f25d037fddb6bb/middlewares/reload.ts": "ae0580c01fccf0370880d98e729177f6ef2b99ff432488649ab48e33104f69d9",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@d2489f6aa6afbb8e9c244bd9b2f25d037fddb6bb/middlewares/reload_client.js": "65b5a8b834697dc1a7efecea68918eb434ae6df850d442b326a5084886e8b9cd",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@d2489f6aa6afbb8e9c244bd9b2f25d037fddb6bb/mod.ts": "b91306d53104315c28b14ec8938b7a16a03da5202cb5488cd9b5deeda34103b5",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@d2489f6aa6afbb8e9c244bd9b2f25d037fddb6bb/plugins/brotli.ts": "549bf246f6bc31c91da59b27a42328f3cfc1d5357b359549ca344678799ff4bc",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@d2489f6aa6afbb8e9c244bd9b2f25d037fddb6bb/plugins/date.ts": "cbf280a28f8aef6f2c9ab9b5234875ab5994fe68e0f977798043e056dfc9a56f",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@d2489f6aa6afbb8e9c244bd9b2f25d037fddb6bb/plugins/feed.ts": "914702397b3dc533a4cb7bd7e88f04f9f379390780ea6990a511e2390c57ab4b",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@d2489f6aa6afbb8e9c244bd9b2f25d037fddb6bb/plugins/google_fonts.ts": "773c5d5855407ef127a97817c84f521a8006596bde04fb47231ec20900378a72",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@d2489f6aa6afbb8e9c244bd9b2f25d037fddb6bb/plugins/json.ts": "5c49499e56b919ec848d4118ec97dd4fe0a323a6cc4c648dc45ab55297614c12",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@d2489f6aa6afbb8e9c244bd9b2f25d037fddb6bb/plugins/lightningcss.ts": "2006c712b89e9f0b88852127efc7f4c856eefec565941c5ab9ea362d35ae996a",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@d2489f6aa6afbb8e9c244bd9b2f25d037fddb6bb/plugins/markdown.ts": "7e82d897c1e35bf119dcd18b6aec7a6ba5aa06848897b34ff9cd161ec7c8757e",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@d2489f6aa6afbb8e9c244bd9b2f25d037fddb6bb/plugins/metas.ts": "ecaf7a634b2293442324afe4f5b378e1757784937af4a091710209b6cbebf399",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@d2489f6aa6afbb8e9c244bd9b2f25d037fddb6bb/plugins/minify_html.ts": "3a8b2037199cda2814e8c712086789b8be3646d7c29ea31c27f4fa5b03de5c41",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@d2489f6aa6afbb8e9c244bd9b2f25d037fddb6bb/plugins/modules.ts": "4e177c0ffe972b9deef10db2bf0ae52b405418af4dbac03db9e7ffbd6a3ec6ae",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@d2489f6aa6afbb8e9c244bd9b2f25d037fddb6bb/plugins/paginate.ts": "6a1a9a24d0fabed2f722a6a6f29d98559219c69475685034181816e82d367f2e",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@d2489f6aa6afbb8e9c244bd9b2f25d037fddb6bb/plugins/picture.ts": "6e3a19d2e8fc464ea0139a8a784666924e55f98c4358a5f4e6348d56788cf8a8",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@d2489f6aa6afbb8e9c244bd9b2f25d037fddb6bb/plugins/purgecss.ts": "7d4906ea2415d8611b8af6947eaaaf56bc33040806e5b840410368f1b62fb86c",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@d2489f6aa6afbb8e9c244bd9b2f25d037fddb6bb/plugins/relations.ts": "0228745729a6361b6da6daee0df72ce4c1ebcd4e100d20e00778ff1e643c0a27",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@d2489f6aa6afbb8e9c244bd9b2f25d037fddb6bb/plugins/robots.ts": "97bf9b5e0957f7229a1a3e6fc11d708af42b968ad35f0cf00b770ebf5eaa717f",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@d2489f6aa6afbb8e9c244bd9b2f25d037fddb6bb/plugins/search.ts": "5acb5be828bbbd012fb9226cb97ec3e370d43d05aa44d16e7e7d50bab368b442",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@d2489f6aa6afbb8e9c244bd9b2f25d037fddb6bb/plugins/sitemap.ts": "57600034ce49e875a2658f86cb2668b634102db6db5583ddbfbadbec66a538ae",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@d2489f6aa6afbb8e9c244bd9b2f25d037fddb6bb/plugins/slugify_urls.ts": "95dffa7d5d7fbe06b97e6a4237df087def04e133d0a2d543d1f8023e6b9505f0",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@d2489f6aa6afbb8e9c244bd9b2f25d037fddb6bb/plugins/source_maps.ts": "afd62c4e911d2037c9edd70b1f5fe0b7b8d9cf66c1748f210a5731947b494fe4",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@d2489f6aa6afbb8e9c244bd9b2f25d037fddb6bb/plugins/svgo.ts": "e22a4998b3793e1b583a1290bd8bf2b8f37b8df5d7014f45a629a5547440c24d",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@d2489f6aa6afbb8e9c244bd9b2f25d037fddb6bb/plugins/tailwindcss.ts": "3f7e3bb5358b09ea2a291eae947e3058200ad9842242955f20662beed968821d",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@d2489f6aa6afbb8e9c244bd9b2f25d037fddb6bb/plugins/toml.ts": "e5bf35ed4915587acd453f002b00ae9b88c1782cadc25c703d7642a390af43ea",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@d2489f6aa6afbb8e9c244bd9b2f25d037fddb6bb/plugins/transform_images.ts": "165b093f280bf0174c54d04b8344b2b610c92c3ced97121149fda13b1ad25887",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@d2489f6aa6afbb8e9c244bd9b2f25d037fddb6bb/plugins/url.ts": "15f2e80b6fcbf86f8795a3676b8d533bab003ac016ff127e58165a6ac3bffc1a",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@d2489f6aa6afbb8e9c244bd9b2f25d037fddb6bb/plugins/vento.ts": "cf36711e93ce30664759306dd283328604e7669e209d28cd8f7df581e4ba9b66",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@d2489f6aa6afbb8e9c244bd9b2f25d037fddb6bb/plugins/yaml.ts": "d0ebf37c38648172c6b95c502753a3edf60278ab4f6a063f3ca00f31e0dd90cc",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@d2489f6aa6afbb8e9c244bd9b2f25d037fddb6bb/types.ts": "5f580502f366b9b25106eb72d49b30d9af7715c8a304fe6e21f382d3c2a4cc38",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@f6e8b76726f84055e7d56f201bad44ab4162ed9c/cli.ts": "a3254363ab2d55df4ff1f25e253f5edc53da1088c33a74efe36e605e74bb67c4",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@f6e8b76726f84055e7d56f201bad44ab4162ed9c/cli/build.ts": "a3acda3c702d6a51a8fe65ea3abc17813deea0db71e442de6120a747f56a2466",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@f6e8b76726f84055e7d56f201bad44ab4162ed9c/cli/build_worker.ts": "76dc2fdafec8b1389f807729191d596d091c377d3a1bd1702a25776482e2e783",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@f6e8b76726f84055e7d56f201bad44ab4162ed9c/cli/cms.ts": "7f3f46c3353661a7679926d0ddcfe3e596f3c97ad2de7f535bde5906e42c3f5a",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@f6e8b76726f84055e7d56f201bad44ab4162ed9c/cli/create.ts": "f340056e3b01a61007f82b47a174ede55df2d80d343e492a3853d44007bb8fc6",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@f6e8b76726f84055e7d56f201bad44ab4162ed9c/cli/missing_worker_apis.ts": "70625ded7fee5de7d215e0829ce8dc4bb7060f6a496c09db880ebaec8b3efb92",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@f6e8b76726f84055e7d56f201bad44ab4162ed9c/cli/run.ts": "27e7c84c2bcadc3aa4ca4fbad02330f33000dca9a2ef41780bad3676606bc029",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@f6e8b76726f84055e7d56f201bad44ab4162ed9c/cli/upgrade.ts": "a11e7c9024f78c2e7376c57b4a99e389dbf490769779d2d37a4a3ccd6ef27d9e",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@f6e8b76726f84055e7d56f201bad44ab4162ed9c/cli/utils.ts": "4697e4280ff62b537507ed707ec84ea707b0519f8de32e2e762f498104a8d1ae",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@f6e8b76726f84055e7d56f201bad44ab4162ed9c/core/cache.ts": "2a76b1561b1870317c7ba2b88021a2f7e18233dd8dcb15eb8e5d4b98bbb280b9",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@f6e8b76726f84055e7d56f201bad44ab4162ed9c/core/component_loader.ts": "63313c4329493de9d45c35a5636b01be7520c0b039da8132516fcdaabc0e9a5d",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@f6e8b76726f84055e7d56f201bad44ab4162ed9c/core/data_loader.ts": "8698a9e9b1aac27147dc835ba89a0e30828c81338eceae86630607d78f146215",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@f6e8b76726f84055e7d56f201bad44ab4162ed9c/core/events.ts": "e4fd1786eb7dd4a041d7d922779b9edf1ee89e51fd17ba5e756f380879ccb557",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@f6e8b76726f84055e7d56f201bad44ab4162ed9c/core/file.ts": "7c3f24a86b5a2c59c6ddc15ce7d86d171eab25495ebfe87f2530b924af18c9ea",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@f6e8b76726f84055e7d56f201bad44ab4162ed9c/core/formats.ts": "e65130e5c5f2e49435619479710c812199b480a9e145fdc6b2bac11cfe6ea08e",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@f6e8b76726f84055e7d56f201bad44ab4162ed9c/core/fs.ts": "361cd6cbb575a329013d7098542d45a5c28aa2fdd1de0b15c9015f47403f4f06",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@f6e8b76726f84055e7d56f201bad44ab4162ed9c/core/loaders/binary.ts": "bb1e1cf3faac49f6007dc6814168dc0f633da17356db18e68862e4b2a87a3f33",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@f6e8b76726f84055e7d56f201bad44ab4162ed9c/core/loaders/json.ts": "632e840340edf7d79091fb37474a1cbf86dd2d218090fb6f6c0420f5f5e9c2ce",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@f6e8b76726f84055e7d56f201bad44ab4162ed9c/core/loaders/module.ts": "abcb210fa6724b83407407cd0f7ef90462b35a2017bc135a3d124dd7f38843f6",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@f6e8b76726f84055e7d56f201bad44ab4162ed9c/core/loaders/text.ts": "42860fc3482651fa6cfba18a734bb548d6e6e1163bf1015c2abc447ab150acbd",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@f6e8b76726f84055e7d56f201bad44ab4162ed9c/core/loaders/toml.ts": "72ddfef2deea62815c28e27faa2c5356e09b3109e9547e47a6defea3d3332452",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@f6e8b76726f84055e7d56f201bad44ab4162ed9c/core/loaders/yaml.ts": "241dc41fbe51b92e38dc748eda614c35d80fb8c63a6d40253453c6bb78c9c47e",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@f6e8b76726f84055e7d56f201bad44ab4162ed9c/core/processors.ts": "0f4eef7e2dc44ef8eea1b8ab1fcc0dc577b0d3c47f800a8482379db7d94241a8",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@f6e8b76726f84055e7d56f201bad44ab4162ed9c/core/renderer.ts": "beeefafbc45030cc3d9c8ca7a214e1a28d70431574090045f0e63f2f9414843a",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@f6e8b76726f84055e7d56f201bad44ab4162ed9c/core/scopes.ts": "dbdf93d7a9cead84833779e974f190b1379356ec7c0ccd34aa92f917c2cdd2f9",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@f6e8b76726f84055e7d56f201bad44ab4162ed9c/core/scripts.ts": "286969b120d2290ba57a7fdd9b37e587aacf4e4162d92f51f1f1e9e18c864f30",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@f6e8b76726f84055e7d56f201bad44ab4162ed9c/core/searcher.ts": "9093c2c64d1190b55a886b2905a224e0cbf86532bea4883e065e391851a8f14c",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@f6e8b76726f84055e7d56f201bad44ab4162ed9c/core/server.ts": "f1c90ea43e91f9e525e3a3e7e2c484dd88db56f6e39853a16a53f18e94230637",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@f6e8b76726f84055e7d56f201bad44ab4162ed9c/core/site.ts": "ed95cf518957495f3ea5db86a05f8679a25d0e9ea86a7aa11003ad3c1c47ee7f",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@f6e8b76726f84055e7d56f201bad44ab4162ed9c/core/slugifier.ts": "70427c98d32533171933304d34867c15d6b7bcfd48c7d1e0347184b8c4fb8b8e",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@f6e8b76726f84055e7d56f201bad44ab4162ed9c/core/source.ts": "e89a5ff7081dfab56d8486599a37147bb16159c47df3fe55db041491059959d3",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@f6e8b76726f84055e7d56f201bad44ab4162ed9c/core/utils/cli_options.ts": "ce8731a5e9c23b95217b6967dc4e5c434637a33d16806189acc6a87728b2e649",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@f6e8b76726f84055e7d56f201bad44ab4162ed9c/core/utils/concurrent.ts": "cb0775b3d95f3faa356aa3a3e489dccef8807ed93cc4f84fcf5bc81e87c29504",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@f6e8b76726f84055e7d56f201bad44ab4162ed9c/core/utils/css_urls.ts": "74d7c468b790ca6c76d0ea1042336f423510d4f3ca2ba418922c847a2e10550a",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@f6e8b76726f84055e7d56f201bad44ab4162ed9c/core/utils/data_values.ts": "ff6866d0c61bdca40c6ba98826ccc8626d8a553d4f8f4a7d320041eea21aa900",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@f6e8b76726f84055e7d56f201bad44ab4162ed9c/core/utils/date.ts": "4972e6e43d9756a3858494004e1b45df3b947033abe68db02acfc0bbb7847ce1",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@f6e8b76726f84055e7d56f201bad44ab4162ed9c/core/utils/digest.ts": "445b387983391af73269686292a65bb677119a25a327776885ff1242a9397ad8",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@f6e8b76726f84055e7d56f201bad44ab4162ed9c/core/utils/dom.ts": "d406fb5c48ceb012286d0aff66ef635261eda666de2ce07538c0cf9366b8fecd",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@f6e8b76726f84055e7d56f201bad44ab4162ed9c/core/utils/dom_links.ts": "f4a197edd4a77b504e82d097613b02684fb5ba73cd415608b913bc658e6ddb28",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@f6e8b76726f84055e7d56f201bad44ab4162ed9c/core/utils/env.ts": "d2440f14ad27e65b0a42b35a52f59ccce0430dd52950bd5df103bb1c9ba1a4a7",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@f6e8b76726f84055e7d56f201bad44ab4162ed9c/core/utils/generator.ts": "1e664e9fd4c469e38a0acf5c94fd49dac4f38cb6334563ea4b7fc498b5958877",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@f6e8b76726f84055e7d56f201bad44ab4162ed9c/core/utils/log.ts": "371a419a167f3002e28fd3cb8d8409e210a844f5f1212f36e607417f77d65a8a",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@f6e8b76726f84055e7d56f201bad44ab4162ed9c/core/utils/lume_config.ts": "6898667e47285849e775d409aafbc6e807acdb2062e752aae26fe2ebaee36197",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@f6e8b76726f84055e7d56f201bad44ab4162ed9c/core/utils/lume_version.ts": "c1c63818097e4a273183429ab5b2446a253307f7bc2d0d6361a17b4f230a617d",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@f6e8b76726f84055e7d56f201bad44ab4162ed9c/core/utils/merge_data.ts": "a574d97eeaa1513d30440488f52e988f0fe2085397611852673cea10076f01ff",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@f6e8b76726f84055e7d56f201bad44ab4162ed9c/core/utils/net.ts": "21698915e73bd493d66343e9c197200e08e7b0602b2e1fa4e5393c9cf9d6c6e2",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@f6e8b76726f84055e7d56f201bad44ab4162ed9c/core/utils/object.ts": "2ae792cc546e452f92bec9cb92a572bb750162d787a11f0dfda5a1d806049883",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@f6e8b76726f84055e7d56f201bad44ab4162ed9c/core/utils/page_content.ts": "bbadb588f9d9fcf1a2af156ce4b68974dfad39b65c3c8d42a6f1895b194c7eec",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@f6e8b76726f84055e7d56f201bad44ab4162ed9c/core/utils/page_date.ts": "2a3d9c203df298ca61f568fdf509945f127f990769623c3edfd753d39807b757",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@f6e8b76726f84055e7d56f201bad44ab4162ed9c/core/utils/page_url.ts": "ff59e321814efbb921d3e62392c0e4f27d2b67799c4f25dd884d04eb35ba9bb8",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@f6e8b76726f84055e7d56f201bad44ab4162ed9c/core/utils/path.ts": "82a45e232b20d656b3a24541f602fa8d623d30183fe284576bfb322781860304",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@f6e8b76726f84055e7d56f201bad44ab4162ed9c/core/utils/read.ts": "e096b1f37f8f0a6820e6ee00af1832d133598d55c961b226d057a5467207c5cd",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@f6e8b76726f84055e7d56f201bad44ab4162ed9c/core/watcher.ts": "6c6c4b5feb540958bfd3ca78f420f4278d39eb317e9476aeec85d0ca69368873",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@f6e8b76726f84055e7d56f201bad44ab4162ed9c/core/writer.ts": "7c56cdae2fcbaebe3c4d66d6c75bc056906d82517d880ba8e02acbb464e6c6b6",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@f6e8b76726f84055e7d56f201bad44ab4162ed9c/deps/base64.ts": "e2059f11343da26acc2e677d1f87f484e4da3e1f34f642e577cf18f6e752c224",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@f6e8b76726f84055e7d56f201bad44ab4162ed9c/deps/brotli.ts": "7500a8ea7474fa73fae329b00974379de587b4fcdcc68449097e6504c49f19a1",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@f6e8b76726f84055e7d56f201bad44ab4162ed9c/deps/cli.ts": "854af07f6c75ff2393a9b95722edb7f7ca869f9f55924d6938b4c66bbb48b6da",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@f6e8b76726f84055e7d56f201bad44ab4162ed9c/deps/cliffy.ts": "faff0c2ca187ec9fd1ad8660141f85b9d05b5c36bab25b40eb5038c02590a310",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@f6e8b76726f84055e7d56f201bad44ab4162ed9c/deps/colors.ts": "6b2544e53b836534ad251b47f56b67f1a87a7eb7483dda13a7ced905cc087791",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@f6e8b76726f84055e7d56f201bad44ab4162ed9c/deps/crypto.ts": "70046784de20c6412d0c554dc08093b4527184987126943a613ade39fa12c3eb",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@f6e8b76726f84055e7d56f201bad44ab4162ed9c/deps/date.ts": "cbd4703210520fafd80daf364d9aa4180b322e88f6d01269f6002cfd10a33109",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@f6e8b76726f84055e7d56f201bad44ab4162ed9c/deps/dom.ts": "82cd9bc09d35f39d73cb6d4e8ea79bdbc6e19f68021476161440a88959b3323c",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@f6e8b76726f84055e7d56f201bad44ab4162ed9c/deps/front_matter.ts": "5b04435f209b48339bd718349965a66072c1bdca3747ac96263143cbe0963f61",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@f6e8b76726f84055e7d56f201bad44ab4162ed9c/deps/fs.ts": "805be5e4466063cf7487cb82396a23dcd039bf2b503672572043c35073ff4353",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@f6e8b76726f84055e7d56f201bad44ab4162ed9c/deps/hex.ts": "663a8bef15a21db473d0f8d8ac1c3ac9a658e5ee37032ae430eff3fea652813c",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@f6e8b76726f84055e7d56f201bad44ab4162ed9c/deps/http.ts": "3523ed68b54224df945c1cdec9b6b8eb0d00a8e0602eb0367528d9ebb07b32a5",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@f6e8b76726f84055e7d56f201bad44ab4162ed9c/deps/init.ts": "05d45af66ebdfe63e43540618f51ece8f99d98dc49de890f10eeb43abe9ed0f3",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@f6e8b76726f84055e7d56f201bad44ab4162ed9c/deps/jsonc.ts": "e359eb0ef9f5f15518e6afe9bafb5b48bd5798dc000c8e210953c29cb319e607",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@f6e8b76726f84055e7d56f201bad44ab4162ed9c/deps/lightningcss.ts": "e0866a0b15ff5411d4f70c3fc4a46be2929c9a7499acc549ce0e2b22ae9facbd",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@f6e8b76726f84055e7d56f201bad44ab4162ed9c/deps/log.ts": "26457db654fe564ea9e52161d5d446d45de2a041b49b8f61cd22cbef2145f8e2",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@f6e8b76726f84055e7d56f201bad44ab4162ed9c/deps/markdown_it.ts": "24c1c0fd18c99b9067d9ff5d051f934cb7c3446e6afbad934f6268af8d1ceb4d",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@f6e8b76726f84055e7d56f201bad44ab4162ed9c/deps/media_types.ts": "fab5c276f8abd1db34ed7c5ccdc3d88f7a1a075cc1d1156919cab0ef35587afc",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@f6e8b76726f84055e7d56f201bad44ab4162ed9c/deps/minify_html.ts": "d6b88e9bcbcef9d0658916f852e6f9322ed88622368b01da4477533b66c11591",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@f6e8b76726f84055e7d56f201bad44ab4162ed9c/deps/path.ts": "2cb9b457032c687de61df71a5855a97d7de18386bfe3048c03377c733e96b3ab",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@f6e8b76726f84055e7d56f201bad44ab4162ed9c/deps/purgecss.ts": "524914d3311933aaeb8052c89c361efdc4656bf6fb8aeec9d1b3d7750dbf8d3f",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@f6e8b76726f84055e7d56f201bad44ab4162ed9c/deps/remove-markdown.ts": "c975349bb4b0a325384b8171b1648d5b79366efc8814413c8e93bfeded3280e3",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@f6e8b76726f84055e7d56f201bad44ab4162ed9c/deps/sharp.ts": "b0692f7293a33a6b191ef672420e3eb37c308ccbe5cf55d15231254e2972a8e0",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@f6e8b76726f84055e7d56f201bad44ab4162ed9c/deps/streams.ts": "e78fdd0a968390117fb3d6bd83de09b72f54eec27d8ef873aea9ad03c1087c3b",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@f6e8b76726f84055e7d56f201bad44ab4162ed9c/deps/svg2png.ts": "d761fb39c37e5c5ba4ac2db25768cf0c2ff34643d3d1847a9fe736449175d5ec",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@f6e8b76726f84055e7d56f201bad44ab4162ed9c/deps/svgo.ts": "688d1272b1a2113d8ad35e70854a189d6c238b04b8237529acdaa8028abc40d6",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@f6e8b76726f84055e7d56f201bad44ab4162ed9c/deps/tailwindcss.ts": "f3103ddcb10e234f33d9cdb0a776bfaacceae93d93fbdfb990372b7bcfed4836",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@f6e8b76726f84055e7d56f201bad44ab4162ed9c/deps/temporal.ts": "1958b134c4186b0ab39316fa33ba19d1a4203e2ea445080429d60d296b91a552",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@f6e8b76726f84055e7d56f201bad44ab4162ed9c/deps/toml.ts": "cc55b94f0c44e4113ff09e153e8b1c58bc5f585b7ea1e8f14f96c8152241b166",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@f6e8b76726f84055e7d56f201bad44ab4162ed9c/deps/unidecode.ts": "e476000bf9278edd64eb79a426ec68ac45e1c691a114ee07f9b89b4d30ffca1c",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@f6e8b76726f84055e7d56f201bad44ab4162ed9c/deps/vento.ts": "c905c9d3cf1553fa489dc3657de6183e0d6149f17ed0e27f84426556a5ed7267",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@f6e8b76726f84055e7d56f201bad44ab4162ed9c/deps/xml.ts": "a2171f6ed75576354faa685ebd62b63cf1d4ee518477f295604526416dd27e2f",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@f6e8b76726f84055e7d56f201bad44ab4162ed9c/deps/yaml.ts": "cbcf4d295ed88066e12a718750f09cebbf30fefa32e186844b597bce74b35557",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@f6e8b76726f84055e7d56f201bad44ab4162ed9c/middlewares/logger.ts": "c96f1a9f9d5757555b6f141865ce8551ac176f90c8ee3e9ad797b2b400a9a567",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@f6e8b76726f84055e7d56f201bad44ab4162ed9c/middlewares/no_cache.ts": "0119e3ae3a596ab12c42df693b93e5b03dd9608e289d862242751a9739438f35",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@f6e8b76726f84055e7d56f201bad44ab4162ed9c/middlewares/no_cors.ts": "4d24619b5373c98bcc3baf404db47ba088c87ac8538ea1784e58d197b81d4d02",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@f6e8b76726f84055e7d56f201bad44ab4162ed9c/middlewares/not_found.ts": "4507842d422267062c34662dceab17affcaad01858a5890fda163a8ddeb31487",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@f6e8b76726f84055e7d56f201bad44ab4162ed9c/middlewares/reload.ts": "ae0580c01fccf0370880d98e729177f6ef2b99ff432488649ab48e33104f69d9",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@f6e8b76726f84055e7d56f201bad44ab4162ed9c/middlewares/reload_client.js": "65b5a8b834697dc1a7efecea68918eb434ae6df850d442b326a5084886e8b9cd",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@f6e8b76726f84055e7d56f201bad44ab4162ed9c/mod.ts": "b91306d53104315c28b14ec8938b7a16a03da5202cb5488cd9b5deeda34103b5",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@f6e8b76726f84055e7d56f201bad44ab4162ed9c/plugins/brotli.ts": "549bf246f6bc31c91da59b27a42328f3cfc1d5357b359549ca344678799ff4bc",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@f6e8b76726f84055e7d56f201bad44ab4162ed9c/plugins/date.ts": "cbf280a28f8aef6f2c9ab9b5234875ab5994fe68e0f977798043e056dfc9a56f",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@f6e8b76726f84055e7d56f201bad44ab4162ed9c/plugins/feed.ts": "914702397b3dc533a4cb7bd7e88f04f9f379390780ea6990a511e2390c57ab4b",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@f6e8b76726f84055e7d56f201bad44ab4162ed9c/plugins/google_fonts.ts": "773c5d5855407ef127a97817c84f521a8006596bde04fb47231ec20900378a72",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@f6e8b76726f84055e7d56f201bad44ab4162ed9c/plugins/gzip.ts": "0026c36672db566ebc7dc0d48d0b94ad21063c9b7ebf691ab9d78aa62ed88784",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@f6e8b76726f84055e7d56f201bad44ab4162ed9c/plugins/json.ts": "5c49499e56b919ec848d4118ec97dd4fe0a323a6cc4c648dc45ab55297614c12",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@f6e8b76726f84055e7d56f201bad44ab4162ed9c/plugins/lightningcss.ts": "2006c712b89e9f0b88852127efc7f4c856eefec565941c5ab9ea362d35ae996a",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@f6e8b76726f84055e7d56f201bad44ab4162ed9c/plugins/markdown.ts": "7e82d897c1e35bf119dcd18b6aec7a6ba5aa06848897b34ff9cd161ec7c8757e",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@f6e8b76726f84055e7d56f201bad44ab4162ed9c/plugins/metas.ts": "ecaf7a634b2293442324afe4f5b378e1757784937af4a091710209b6cbebf399",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@f6e8b76726f84055e7d56f201bad44ab4162ed9c/plugins/minify_html.ts": "3a8b2037199cda2814e8c712086789b8be3646d7c29ea31c27f4fa5b03de5c41",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@f6e8b76726f84055e7d56f201bad44ab4162ed9c/plugins/modify_urls.ts": "48ae054061500f8e05063d5f94c95627b0dde4ba591daacb35010f457ec24802",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@f6e8b76726f84055e7d56f201bad44ab4162ed9c/plugins/modules.ts": "4e177c0ffe972b9deef10db2bf0ae52b405418af4dbac03db9e7ffbd6a3ec6ae",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@f6e8b76726f84055e7d56f201bad44ab4162ed9c/plugins/paginate.ts": "6a1a9a24d0fabed2f722a6a6f29d98559219c69475685034181816e82d367f2e",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@f6e8b76726f84055e7d56f201bad44ab4162ed9c/plugins/picture.ts": "6e3a19d2e8fc464ea0139a8a784666924e55f98c4358a5f4e6348d56788cf8a8",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@f6e8b76726f84055e7d56f201bad44ab4162ed9c/plugins/purgecss.ts": "7d4906ea2415d8611b8af6947eaaaf56bc33040806e5b840410368f1b62fb86c",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@f6e8b76726f84055e7d56f201bad44ab4162ed9c/plugins/relations.ts": "0228745729a6361b6da6daee0df72ce4c1ebcd4e100d20e00778ff1e643c0a27",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@f6e8b76726f84055e7d56f201bad44ab4162ed9c/plugins/resolve_urls.ts": "910dbccd25fcacacc72d577a3df37c5f3cc4adce0ec52b2fc8903863c2e2afae",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@f6e8b76726f84055e7d56f201bad44ab4162ed9c/plugins/robots.ts": "97bf9b5e0957f7229a1a3e6fc11d708af42b968ad35f0cf00b770ebf5eaa717f",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@f6e8b76726f84055e7d56f201bad44ab4162ed9c/plugins/search.ts": "5acb5be828bbbd012fb9226cb97ec3e370d43d05aa44d16e7e7d50bab368b442",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@f6e8b76726f84055e7d56f201bad44ab4162ed9c/plugins/sitemap.ts": "57600034ce49e875a2658f86cb2668b634102db6db5583ddbfbadbec66a538ae",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@f6e8b76726f84055e7d56f201bad44ab4162ed9c/plugins/slugify_urls.ts": "95dffa7d5d7fbe06b97e6a4237df087def04e133d0a2d543d1f8023e6b9505f0",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@f6e8b76726f84055e7d56f201bad44ab4162ed9c/plugins/source_maps.ts": "afd62c4e911d2037c9edd70b1f5fe0b7b8d9cf66c1748f210a5731947b494fe4",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@f6e8b76726f84055e7d56f201bad44ab4162ed9c/plugins/svgo.ts": "e22a4998b3793e1b583a1290bd8bf2b8f37b8df5d7014f45a629a5547440c24d",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@f6e8b76726f84055e7d56f201bad44ab4162ed9c/plugins/tailwindcss.ts": "64c0f94f59e8e236540b6deca5bc39b5ece274612b891b94df29d1e324803934",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@f6e8b76726f84055e7d56f201bad44ab4162ed9c/plugins/toml.ts": "e5bf35ed4915587acd453f002b00ae9b88c1782cadc25c703d7642a390af43ea",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@f6e8b76726f84055e7d56f201bad44ab4162ed9c/plugins/transform_images.ts": "165b093f280bf0174c54d04b8344b2b610c92c3ced97121149fda13b1ad25887",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@f6e8b76726f84055e7d56f201bad44ab4162ed9c/plugins/url.ts": "15f2e80b6fcbf86f8795a3676b8d533bab003ac016ff127e58165a6ac3bffc1a",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@f6e8b76726f84055e7d56f201bad44ab4162ed9c/plugins/vento.ts": "cf36711e93ce30664759306dd283328604e7669e209d28cd8f7df581e4ba9b66",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@f6e8b76726f84055e7d56f201bad44ab4162ed9c/plugins/yaml.ts": "d0ebf37c38648172c6b95c502753a3edf60278ab4f6a063f3ca00f31e0dd90cc",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@f6e8b76726f84055e7d56f201bad44ab4162ed9c/types.ts": "5f580502f366b9b25106eb72d49b30d9af7715c8a304fe6e21f382d3c2a4cc38",
+
"https://cdn.jsdelivr.net/gh/lumeland/bar@0.1.8/types.ts": "38f3714e1432c174009495333972f85fb306eb6313112ac8830fda9f1f47e87f",
+
"https://cdn.jsdelivr.net/gh/lumeland/bar@006e4aeda5bea28316e0eb98b91ce2da4b59420b/lume-bar.js": "37fa4c70f213095ef49851eec962a5469fa5b431b69c9ff73ac701e19a5ee5d9",
+
"https://cdn.jsdelivr.net/gh/lumeland/bar@9d07935f8cff6addb1baad41fec50c843809dd58/lume-bar.js": "9404d5053fa81971c76aa539ccecf87ac8530b5016cf1a833ddd193ebc1f2cd5",
+
"https://cdn.jsdelivr.net/gh/lumeland/bar@d24249e5adfa8c5692aa778e38920b026531d1b8/lume-bar.js": "e9a6fc487dc5bd64b437387bece62a67594622c70a836cf47d59c30f76c43c39",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/cli.ts": "a3254363ab2d55df4ff1f25e253f5edc53da1088c33a74efe36e605e74bb67c4",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/cli/build.ts": "a3acda3c702d6a51a8fe65ea3abc17813deea0db71e442de6120a747f56a2466",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/cli/build_worker.ts": "34781766980dcee3c433aaa65df138168cb163a2cbd89bac53efce167ed6bfbf",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/cli/cms.ts": "7f3f46c3353661a7679926d0ddcfe3e596f3c97ad2de7f535bde5906e42c3f5a",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/cli/create.ts": "f340056e3b01a61007f82b47a174ede55df2d80d343e492a3853d44007bb8fc6",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/cli/missing_worker_apis.ts": "70625ded7fee5de7d215e0829ce8dc4bb7060f6a496c09db880ebaec8b3efb92",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/cli/run.ts": "27e7c84c2bcadc3aa4ca4fbad02330f33000dca9a2ef41780bad3676606bc029",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/cli/upgrade.ts": "a11e7c9024f78c2e7376c57b4a99e389dbf490769779d2d37a4a3ccd6ef27d9e",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/cli/utils.ts": "8fcc2d3d8003e4b651201ef2e343209c6a752959b5acb0da7038d132e9097ef2",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/core/cache.ts": "a6df9d9208b2276fa9269fec8f5c8ae2d48fc373af537414d8b57e5505ead9d0",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/core/components.ts": "78c684e0786e745caf6a4c746f183027a1dcd6cb327651c0e95f3d3510593221",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/core/data_loader.ts": "8698a9e9b1aac27147dc835ba89a0e30828c81338eceae86630607d78f146215",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/core/debugbar.ts": "db2d8eb01b61171ff642bf1a8393f96fa0b279dd54df85de733b287ef5d4ce88",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/core/events.ts": "e4fd1786eb7dd4a041d7d922779b9edf1ee89e51fd17ba5e756f380879ccb557",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/core/file.ts": "dd75602565b746b61ff4baf1d6624a2a60bc240fd3718143510d7f7111679c22",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/core/formats.ts": "e65130e5c5f2e49435619479710c812199b480a9e145fdc6b2bac11cfe6ea08e",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/core/fs.ts": "22d77101afaef582f18cf1619bb9eed7fd5cd0b3ce840588a53432fcd90cd8af",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/core/loaders/binary.ts": "bb1e1cf3faac49f6007dc6814168dc0f633da17356db18e68862e4b2a87a3f33",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/core/loaders/json.ts": "632e840340edf7d79091fb37474a1cbf86dd2d218090fb6f6c0420f5f5e9c2ce",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/core/loaders/module.ts": "abcb210fa6724b83407407cd0f7ef90462b35a2017bc135a3d124dd7f38843f6",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/core/loaders/text.ts": "42860fc3482651fa6cfba18a734bb548d6e6e1163bf1015c2abc447ab150acbd",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/core/loaders/toml.ts": "72ddfef2deea62815c28e27faa2c5356e09b3109e9547e47a6defea3d3332452",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/core/loaders/yaml.ts": "241dc41fbe51b92e38dc748eda614c35d80fb8c63a6d40253453c6bb78c9c47e",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/core/processors.ts": "0f4eef7e2dc44ef8eea1b8ab1fcc0dc577b0d3c47f800a8482379db7d94241a8",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/core/renderer.ts": "5e9ca876833fc0d593e41228e556313aacae86070ebfcc514a0b8dd605fe62ef",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/core/scopes.ts": "dbdf93d7a9cead84833779e974f190b1379356ec7c0ccd34aa92f917c2cdd2f9",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/core/scripts.ts": "286969b120d2290ba57a7fdd9b37e587aacf4e4162d92f51f1f1e9e18c864f30",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/core/searcher.ts": "19530e0149ca925334f98052863a52cdfbbeea9977342b209829999a34e816a6",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/core/server.ts": "19cdd234f18c601d8386c7aa6d589616ce367fc571a96d4715f220a522e17ae8",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/core/site.ts": "3f36b7eb1397194e222389673d20063096233f40280d54cc9975e1923e80ef39",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/core/slugifier.ts": "3cb058f841f6eba1862f70f43e21de591af99cc6efacd9bb11dc0dbbab9eb703",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/core/source.ts": "a8968859d500d2eaee3f2f2b861bf29ddea3af67450098aee7bf2eb87e12d23f",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/core/utils/cli_options.ts": "ce8731a5e9c23b95217b6967dc4e5c434637a33d16806189acc6a87728b2e649",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/core/utils/concurrent.ts": "cb0775b3d95f3faa356aa3a3e489dccef8807ed93cc4f84fcf5bc81e87c29504",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/core/utils/css_urls.ts": "aab446be75151a054524f8f913809dca722bf1da40c174745688208d8513ff53",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/core/utils/data_values.ts": "589eb8299f7e767a10c2f2c4b9ef03ca9e79ba232b7f22fd151be9d1d68e1dc0",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/core/utils/date.ts": "3eb0b0e2ea15a95cdfe737be70cd4f48cbe49401928cb04c25a230f411ab2478",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/core/utils/digest.ts": "445b387983391af73269686292a65bb677119a25a327776885ff1242a9397ad8",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/core/utils/dom.ts": "fffb0c0c3ae613282e0447c3e4c122a62f44c776771d525a0ca09759883b4b9e",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/core/utils/dom_links.ts": "f4a197edd4a77b504e82d097613b02684fb5ba73cd415608b913bc658e6ddb28",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/core/utils/env.ts": "d2440f14ad27e65b0a42b35a52f59ccce0430dd52950bd5df103bb1c9ba1a4a7",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/core/utils/generator.ts": "1e664e9fd4c469e38a0acf5c94fd49dac4f38cb6334563ea4b7fc498b5958877",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/core/utils/log.ts": "5182c632d38f4df39ba224b35f659229a21a0c0bae5162a1ad25b8189776830b",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/core/utils/lume_config.ts": "70ae5b1a8e6dddfc9fe516dc46c712aabf67f7a77d94a7d3bb16740d7c98f4ae",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/core/utils/lume_version.ts": "c1c63818097e4a273183429ab5b2446a253307f7bc2d0d6361a17b4f230a617d",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/core/utils/merge_data.ts": "4ac5067e5b2ff3ba88ef2e009ee718e512aeb097a28f785b8bc733cb8805251c",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/core/utils/net.ts": "21698915e73bd493d66343e9c197200e08e7b0602b2e1fa4e5393c9cf9d6c6e2",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/core/utils/object.ts": "70f4d7b289478810499e5631cb9458e2961db12b5caa51ec34f87b6b5f6d4674",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/core/utils/page_content.ts": "bbadb588f9d9fcf1a2af156ce4b68974dfad39b65c3c8d42a6f1895b194c7eec",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/core/utils/page_date.ts": "2a3d9c203df298ca61f568fdf509945f127f990769623c3edfd753d39807b757",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/core/utils/page_url.ts": "fb2590298489a5afa3caa6f9c72a6b32b7287df10c0174c41ee2fb4a07a541ce",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/core/utils/path.ts": "7a1d199113928cc35782aa3262cbe6f7a4894bc262d7d300de9385b3da45602f",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/core/utils/read.ts": "f435e42e01ee022f50a5d1afc08b0a2a481cfa1e9c5844690939f1fdf6faf1bf",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/core/utils/tokens.ts": "201777343e716403bfb1dbbc1a988a85b8d3f12699daaacbe8bbdc3c352a57ff",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/core/watcher.ts": "6c6c4b5feb540958bfd3ca78f420f4278d39eb317e9476aeec85d0ca69368873",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/core/writer.ts": "e8952538d57c0b587a3e9344b9b10d1b71274aca234b927b05a09c88ac3f4304",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/deps/base64.ts": "19e9998658eeeef3e0b3e55d83cdad139c656c2e43975d879c9538ed32dfdfb1",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/deps/brotli.ts": "7500a8ea7474fa73fae329b00974379de587b4fcdcc68449097e6504c49f19a1",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/deps/cli.ts": "72ed8873486903eab076bf0f0edf7b94c78206aa98dd53f6393d150cc1737d3f",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/deps/cliffy.ts": "faff0c2ca187ec9fd1ad8660141f85b9d05b5c36bab25b40eb5038c02590a310",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/deps/colors.ts": "963410817371ad594349da1dc042f162d5f9e739e0d2b0a1141702673b525a51",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/deps/crypto.ts": "70046784de20c6412d0c554dc08093b4527184987126943a613ade39fa12c3eb",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/deps/date.ts": "cbd4703210520fafd80daf364d9aa4180b322e88f6d01269f6002cfd10a33109",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/deps/dom.ts": "82cd9bc09d35f39d73cb6d4e8ea79bdbc6e19f68021476161440a88959b3323c",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/deps/esbuild.ts": "08ea6541b2647f59a547223d69a0c46a4969b8297725d065f56a877ff9b8fe18",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/deps/front_matter.ts": "f5e5780d4a0502d50cde1f42a4aa7830756dc9bd0251ba7448cecd1eaa60878f",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/deps/fs.ts": "f9ba2c0d76a3a6adc68e1d28533bed765365951746e2bfdba66c97f0b29a297a",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/deps/hex.ts": "e0a0041c47fe814cc12735e909fee21f9c6e8b708227874691e90799444e68f1",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/deps/http.ts": "fdc2edd220d2084562ea09a06ef5b937c28f29e4023febbad8843ed82022a198",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/deps/init.ts": "05d45af66ebdfe63e43540618f51ece8f99d98dc49de890f10eeb43abe9ed0f3",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/deps/jsonc.ts": "e359eb0ef9f5f15518e6afe9bafb5b48bd5798dc000c8e210953c29cb319e607",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/deps/lightningcss.ts": "19f090ee781028aacd9817f204972b162c065e4c0ea99e24935eb489d2aadfd6",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/deps/markdown_it.ts": "24c1c0fd18c99b9067d9ff5d051f934cb7c3446e6afbad934f6268af8d1ceb4d",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/deps/media_types.ts": "fab5c276f8abd1db34ed7c5ccdc3d88f7a1a075cc1d1156919cab0ef35587afc",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/deps/minify_html.ts": "4dff2674ed8b4d068a487c46c5f222e910869e21db62f6dc5dc93cff89be30eb",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/deps/path.ts": "2cb9b457032c687de61df71a5855a97d7de18386bfe3048c03377c733e96b3ab",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/deps/remove-markdown.ts": "c975349bb4b0a325384b8171b1648d5b79366efc8814413c8e93bfeded3280e3",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/deps/sharp.ts": "9ca04f2007e969208bf4f16a6f51754dadff8e1a5500df3a7934aed5ed184e2b",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/deps/streams.ts": "e78fdd0a968390117fb3d6bd83de09b72f54eec27d8ef873aea9ad03c1087c3b",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/deps/svg2png.ts": "d761fb39c37e5c5ba4ac2db25768cf0c2ff34643d3d1847a9fe736449175d5ec",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/deps/svgo.ts": "688d1272b1a2113d8ad35e70854a189d6c238b04b8237529acdaa8028abc40d6",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/deps/tailwindcss.ts": "cf0992c5c0b8681e94eb9be1d6eb928021ea9bd44d7d1a6f7612d4ae14a753d4",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/deps/toml.ts": "6cada3f115f55f1a7a234b13156535a6de145f7efac75251e2aed2d6f574e5fa",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/deps/vento.ts": "52abaab33bf360365323bf4c2b1ddcf3aee604146470e917729575271eb7b8a2",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/deps/xml.ts": "a2171f6ed75576354faa685ebd62b63cf1d4ee518477f295604526416dd27e2f",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/deps/yaml.ts": "cbcf4d295ed88066e12a718750f09cebbf30fefa32e186844b597bce74b35557",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/middlewares/logger.ts": "c96f1a9f9d5757555b6f141865ce8551ac176f90c8ee3e9ad797b2b400a9a567",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/middlewares/no_cache.ts": "0119e3ae3a596ab12c42df693b93e5b03dd9608e289d862242751a9739438f35",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/middlewares/no_cors.ts": "4d24619b5373c98bcc3baf404db47ba088c87ac8538ea1784e58d197b81d4d02",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/middlewares/not_found.ts": "c5916a6788d570647814bdd0daefbdeaf544878176acd3e84c231a0f02407ca7",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/middlewares/reload.ts": "309cdeca7db2e9dde64e8bb2a3aa2885f81cfcfbd51d629205763ef93642ab88",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/middlewares/reload_client.js": "03ee388dcfd74a597fc71971c9ab6dbd69e87ab5047e591444e353fcc2141165",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/mod.ts": "4ed2edf622df6109304095952f8a02844f5abc2992b6c9886af632b058f1a8f4",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/plugins/brotli.ts": "549bf246f6bc31c91da59b27a42328f3cfc1d5357b359549ca344678799ff4bc",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/plugins/date.ts": "cbf280a28f8aef6f2c9ab9b5234875ab5994fe68e0f977798043e056dfc9a56f",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/plugins/feed.ts": "b07aed4cda270cfaacb26f9974dbb962f936dbfde4d770c53e478e4682c791e1",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/plugins/google_fonts.ts": "c92eaa60e62b34befbf6f9e8027e0fd4d7ab655778646ff1202044707a18dee9",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/plugins/gzip.ts": "0026c36672db566ebc7dc0d48d0b94ad21063c9b7ebf691ab9d78aa62ed88784",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/plugins/json.ts": "5c49499e56b919ec848d4118ec97dd4fe0a323a6cc4c648dc45ab55297614c12",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/plugins/lightningcss.ts": "8d35daf87e28c6c59ee3428cf93db5e87007d7f816c57a3d0bcd3a1fc998e327",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/plugins/markdown.ts": "7e82d897c1e35bf119dcd18b6aec7a6ba5aa06848897b34ff9cd161ec7c8757e",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/plugins/metas.ts": "ecaf7a634b2293442324afe4f5b378e1757784937af4a091710209b6cbebf399",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/plugins/minify_html.ts": "5ffde4af62c6adf465c7f0f31c2eff40c90d20660842b397abc3241d3abc5cea",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/plugins/modify_urls.ts": "9c1b7cc856038d46b64f395065d2852f9b4af94ef9a41c2e9e3021d448b1d3b6",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/plugins/modules.ts": "4e177c0ffe972b9deef10db2bf0ae52b405418af4dbac03db9e7ffbd6a3ec6ae",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/plugins/paginate.ts": "6a1a9a24d0fabed2f722a6a6f29d98559219c69475685034181816e82d367f2e",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/plugins/picture.ts": "c2ce2c0815cc5ad7c0f28f1b11df7c82c8b8d6f85dec9bd3b5ac59fb14fb559d",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/plugins/reading_info.ts": "b43ea47c4d972599714b0ec595c2f6be566510c5c670ba7d56d5b5ffee36cd8d",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/plugins/resolve_urls.ts": "910dbccd25fcacacc72d577a3df37c5f3cc4adce0ec52b2fc8903863c2e2afae",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/plugins/robots.ts": "97bf9b5e0957f7229a1a3e6fc11d708af42b968ad35f0cf00b770ebf5eaa717f",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/plugins/search.ts": "5acb5be828bbbd012fb9226cb97ec3e370d43d05aa44d16e7e7d50bab368b442",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/plugins/sitemap.ts": "cd14078374b24416fcaa6ea6af586dc12ef048079fafb21d8ee1c50d25f1f5d1",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/plugins/slugify_urls.ts": "ec2a78b13f094d99c90d1789149d98a60ea39297cbdc1d514fd267d8c8a42b85",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/plugins/source_maps.ts": "490efa0e103d9133078117f6e855b4b1351292f562c75bda5f3240d45dacbe52",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/plugins/svgo.ts": "8c3098ada9d4aeeffd0b34b42e35c750bc7db1b36be45596dce0acd39da2077c",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/plugins/tailwindcss.ts": "57efc565dee3018c462efa37484bb6c619a3008de8dd77fd9456fdd0a3eb30ca",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/plugins/toml.ts": "e5bf35ed4915587acd453f002b00ae9b88c1782cadc25c703d7642a390af43ea",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/plugins/transform_images.ts": "ad7f921eaebc9056204d339ed81b92820148bc6941f3235f6b9bea1ea7f0c457",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/plugins/url.ts": "15f2e80b6fcbf86f8795a3676b8d533bab003ac016ff127e58165a6ac3bffc1a",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/plugins/vento.ts": "d74100c7168d49b3817559792c9a8fd1d380b3244051d92dfebc7531cb8b7665",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/plugins/yaml.ts": "d0ebf37c38648172c6b95c502753a3edf60278ab4f6a063f3ca00f31e0dd90cc",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/types.ts": "5f580502f366b9b25106eb72d49b30d9af7715c8a304fe6e21f382d3c2a4cc38",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/cli.ts": "a3254363ab2d55df4ff1f25e253f5edc53da1088c33a74efe36e605e74bb67c4",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/cli/build.ts": "a3acda3c702d6a51a8fe65ea3abc17813deea0db71e442de6120a747f56a2466",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/cli/build_worker.ts": "a13a9aa75d85c79768f18d95d8d7b17d5fb7cce0ca4c665fdb76a5f255e575a9",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/cli/cms.ts": "7f3f46c3353661a7679926d0ddcfe3e596f3c97ad2de7f535bde5906e42c3f5a",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/cli/create.ts": "f340056e3b01a61007f82b47a174ede55df2d80d343e492a3853d44007bb8fc6",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/cli/missing_worker_apis.ts": "70625ded7fee5de7d215e0829ce8dc4bb7060f6a496c09db880ebaec8b3efb92",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/cli/run.ts": "27e7c84c2bcadc3aa4ca4fbad02330f33000dca9a2ef41780bad3676606bc029",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/cli/upgrade.ts": "a11e7c9024f78c2e7376c57b4a99e389dbf490769779d2d37a4a3ccd6ef27d9e",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/cli/utils.ts": "8fcc2d3d8003e4b651201ef2e343209c6a752959b5acb0da7038d132e9097ef2",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/core/cache.ts": "a6df9d9208b2276fa9269fec8f5c8ae2d48fc373af537414d8b57e5505ead9d0",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/core/components.ts": "78c684e0786e745caf6a4c746f183027a1dcd6cb327651c0e95f3d3510593221",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/core/data_loader.ts": "8698a9e9b1aac27147dc835ba89a0e30828c81338eceae86630607d78f146215",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/core/events.ts": "e4fd1786eb7dd4a041d7d922779b9edf1ee89e51fd17ba5e756f380879ccb557",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/core/file.ts": "5dee345b3a5a2039d305602dda44c9b55db15a76f824ef021864736ec3915633",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/core/formats.ts": "e65130e5c5f2e49435619479710c812199b480a9e145fdc6b2bac11cfe6ea08e",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/core/fs.ts": "22d77101afaef582f18cf1619bb9eed7fd5cd0b3ce840588a53432fcd90cd8af",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/core/loaders/binary.ts": "bb1e1cf3faac49f6007dc6814168dc0f633da17356db18e68862e4b2a87a3f33",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/core/loaders/json.ts": "632e840340edf7d79091fb37474a1cbf86dd2d218090fb6f6c0420f5f5e9c2ce",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/core/loaders/module.ts": "abcb210fa6724b83407407cd0f7ef90462b35a2017bc135a3d124dd7f38843f6",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/core/loaders/text.ts": "42860fc3482651fa6cfba18a734bb548d6e6e1163bf1015c2abc447ab150acbd",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/core/loaders/toml.ts": "72ddfef2deea62815c28e27faa2c5356e09b3109e9547e47a6defea3d3332452",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/core/loaders/yaml.ts": "241dc41fbe51b92e38dc748eda614c35d80fb8c63a6d40253453c6bb78c9c47e",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/core/processors.ts": "0f4eef7e2dc44ef8eea1b8ab1fcc0dc577b0d3c47f800a8482379db7d94241a8",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/core/renderer.ts": "49ea50b6f089c307fe6d4b07713dd81500f54e22f117a5c68b4366c11f379aa5",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/core/scopes.ts": "dbdf93d7a9cead84833779e974f190b1379356ec7c0ccd34aa92f917c2cdd2f9",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/core/scripts.ts": "286969b120d2290ba57a7fdd9b37e587aacf4e4162d92f51f1f1e9e18c864f30",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/core/searcher.ts": "9093c2c64d1190b55a886b2905a224e0cbf86532bea4883e065e391851a8f14c",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/core/server.ts": "19cdd234f18c601d8386c7aa6d589616ce367fc571a96d4715f220a522e17ae8",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/core/site.ts": "fcc6acc7210bbf96875ddd719388e55c6ac55a945e91475cf3a22468313238bf",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/core/slugifier.ts": "3cb058f841f6eba1862f70f43e21de591af99cc6efacd9bb11dc0dbbab9eb703",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/core/source.ts": "a8968859d500d2eaee3f2f2b861bf29ddea3af67450098aee7bf2eb87e12d23f",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/core/utils/cli_options.ts": "ce8731a5e9c23b95217b6967dc4e5c434637a33d16806189acc6a87728b2e649",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/core/utils/concurrent.ts": "cb0775b3d95f3faa356aa3a3e489dccef8807ed93cc4f84fcf5bc81e87c29504",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/core/utils/css_urls.ts": "aab446be75151a054524f8f913809dca722bf1da40c174745688208d8513ff53",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/core/utils/data_values.ts": "ff6866d0c61bdca40c6ba98826ccc8626d8a553d4f8f4a7d320041eea21aa900",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/core/utils/date.ts": "3eb0b0e2ea15a95cdfe737be70cd4f48cbe49401928cb04c25a230f411ab2478",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/core/utils/digest.ts": "445b387983391af73269686292a65bb677119a25a327776885ff1242a9397ad8",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/core/utils/dom.ts": "fffb0c0c3ae613282e0447c3e4c122a62f44c776771d525a0ca09759883b4b9e",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/core/utils/dom_links.ts": "f4a197edd4a77b504e82d097613b02684fb5ba73cd415608b913bc658e6ddb28",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/core/utils/env.ts": "d2440f14ad27e65b0a42b35a52f59ccce0430dd52950bd5df103bb1c9ba1a4a7",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/core/utils/generator.ts": "1e664e9fd4c469e38a0acf5c94fd49dac4f38cb6334563ea4b7fc498b5958877",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/core/utils/log.ts": "fcd238217bd6939a6f924b786c59e8c704f69858f7d682b14471cc49f07316c3",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/core/utils/lume_config.ts": "7552a61a87fdf70401522f50e601d8cf032f100fcbfffc7e3022d72f49279303",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/core/utils/lume_version.ts": "c1c63818097e4a273183429ab5b2446a253307f7bc2d0d6361a17b4f230a617d",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/core/utils/merge_data.ts": "4ac5067e5b2ff3ba88ef2e009ee718e512aeb097a28f785b8bc733cb8805251c",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/core/utils/net.ts": "21698915e73bd493d66343e9c197200e08e7b0602b2e1fa4e5393c9cf9d6c6e2",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/core/utils/object.ts": "70f4d7b289478810499e5631cb9458e2961db12b5caa51ec34f87b6b5f6d4674",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/core/utils/page_content.ts": "bbadb588f9d9fcf1a2af156ce4b68974dfad39b65c3c8d42a6f1895b194c7eec",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/core/utils/page_date.ts": "2a3d9c203df298ca61f568fdf509945f127f990769623c3edfd753d39807b757",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/core/utils/page_url.ts": "fb2590298489a5afa3caa6f9c72a6b32b7287df10c0174c41ee2fb4a07a541ce",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/core/utils/path.ts": "7a1d199113928cc35782aa3262cbe6f7a4894bc262d7d300de9385b3da45602f",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/core/utils/read.ts": "f435e42e01ee022f50a5d1afc08b0a2a481cfa1e9c5844690939f1fdf6faf1bf",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/core/utils/tokens.ts": "201777343e716403bfb1dbbc1a988a85b8d3f12699daaacbe8bbdc3c352a57ff",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/core/watcher.ts": "6c6c4b5feb540958bfd3ca78f420f4278d39eb317e9476aeec85d0ca69368873",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/core/writer.ts": "e8952538d57c0b587a3e9344b9b10d1b71274aca234b927b05a09c88ac3f4304",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/deps/base64.ts": "19e9998658eeeef3e0b3e55d83cdad139c656c2e43975d879c9538ed32dfdfb1",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/deps/brotli.ts": "7500a8ea7474fa73fae329b00974379de587b4fcdcc68449097e6504c49f19a1",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/deps/cli.ts": "72ed8873486903eab076bf0f0edf7b94c78206aa98dd53f6393d150cc1737d3f",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/deps/cliffy.ts": "faff0c2ca187ec9fd1ad8660141f85b9d05b5c36bab25b40eb5038c02590a310",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/deps/colors.ts": "963410817371ad594349da1dc042f162d5f9e739e0d2b0a1141702673b525a51",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/deps/crypto.ts": "70046784de20c6412d0c554dc08093b4527184987126943a613ade39fa12c3eb",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/deps/date.ts": "cbd4703210520fafd80daf364d9aa4180b322e88f6d01269f6002cfd10a33109",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/deps/dom.ts": "82cd9bc09d35f39d73cb6d4e8ea79bdbc6e19f68021476161440a88959b3323c",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/deps/esbuild.ts": "08ea6541b2647f59a547223d69a0c46a4969b8297725d065f56a877ff9b8fe18",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/deps/front_matter.ts": "f5e5780d4a0502d50cde1f42a4aa7830756dc9bd0251ba7448cecd1eaa60878f",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/deps/fs.ts": "f9ba2c0d76a3a6adc68e1d28533bed765365951746e2bfdba66c97f0b29a297a",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/deps/hex.ts": "e0a0041c47fe814cc12735e909fee21f9c6e8b708227874691e90799444e68f1",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/deps/http.ts": "fdc2edd220d2084562ea09a06ef5b937c28f29e4023febbad8843ed82022a198",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/deps/init.ts": "05d45af66ebdfe63e43540618f51ece8f99d98dc49de890f10eeb43abe9ed0f3",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/deps/jsonc.ts": "e359eb0ef9f5f15518e6afe9bafb5b48bd5798dc000c8e210953c29cb319e607",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/deps/lightningcss.ts": "19f090ee781028aacd9817f204972b162c065e4c0ea99e24935eb489d2aadfd6",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/deps/markdown_it.ts": "24c1c0fd18c99b9067d9ff5d051f934cb7c3446e6afbad934f6268af8d1ceb4d",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/deps/media_types.ts": "fab5c276f8abd1db34ed7c5ccdc3d88f7a1a075cc1d1156919cab0ef35587afc",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/deps/minify_html.ts": "4dff2674ed8b4d068a487c46c5f222e910869e21db62f6dc5dc93cff89be30eb",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/deps/path.ts": "2cb9b457032c687de61df71a5855a97d7de18386bfe3048c03377c733e96b3ab",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/deps/remove-markdown.ts": "c975349bb4b0a325384b8171b1648d5b79366efc8814413c8e93bfeded3280e3",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/deps/sharp.ts": "9ca04f2007e969208bf4f16a6f51754dadff8e1a5500df3a7934aed5ed184e2b",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/deps/streams.ts": "e78fdd0a968390117fb3d6bd83de09b72f54eec27d8ef873aea9ad03c1087c3b",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/deps/svg2png.ts": "d761fb39c37e5c5ba4ac2db25768cf0c2ff34643d3d1847a9fe736449175d5ec",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/deps/svgo.ts": "688d1272b1a2113d8ad35e70854a189d6c238b04b8237529acdaa8028abc40d6",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/deps/tailwindcss.ts": "cf0992c5c0b8681e94eb9be1d6eb928021ea9bd44d7d1a6f7612d4ae14a753d4",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/deps/toml.ts": "6cada3f115f55f1a7a234b13156535a6de145f7efac75251e2aed2d6f574e5fa",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/deps/vento.ts": "52abaab33bf360365323bf4c2b1ddcf3aee604146470e917729575271eb7b8a2",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/deps/xml.ts": "a2171f6ed75576354faa685ebd62b63cf1d4ee518477f295604526416dd27e2f",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/deps/yaml.ts": "cbcf4d295ed88066e12a718750f09cebbf30fefa32e186844b597bce74b35557",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/middlewares/logger.ts": "c96f1a9f9d5757555b6f141865ce8551ac176f90c8ee3e9ad797b2b400a9a567",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/middlewares/no_cache.ts": "0119e3ae3a596ab12c42df693b93e5b03dd9608e289d862242751a9739438f35",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/middlewares/no_cors.ts": "4d24619b5373c98bcc3baf404db47ba088c87ac8538ea1784e58d197b81d4d02",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/middlewares/not_found.ts": "c5916a6788d570647814bdd0daefbdeaf544878176acd3e84c231a0f02407ca7",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/middlewares/reload.ts": "98d9f9e1d2337f1c6c62e8210019ec3c327ac94af4929ee0d25b35e8cff42cd5",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/middlewares/reload_client.js": "eb06101148db8499240bdb910167eb25d13e7d7273f60b140ab9c2d4e55490a1",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/mod.ts": "4ed2edf622df6109304095952f8a02844f5abc2992b6c9886af632b058f1a8f4",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/plugins/brotli.ts": "549bf246f6bc31c91da59b27a42328f3cfc1d5357b359549ca344678799ff4bc",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/plugins/date.ts": "cbf280a28f8aef6f2c9ab9b5234875ab5994fe68e0f977798043e056dfc9a56f",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/plugins/feed.ts": "435353560e83412e6feb6d868fec30c0fb81d0433fe4720b55b80156b781fbb7",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/plugins/google_fonts.ts": "b45216dd0b6d857f03b58c5641f8adfc872f39f727a29c99e285b046bf835db5",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/plugins/gzip.ts": "0026c36672db566ebc7dc0d48d0b94ad21063c9b7ebf691ab9d78aa62ed88784",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/plugins/json.ts": "5c49499e56b919ec848d4118ec97dd4fe0a323a6cc4c648dc45ab55297614c12",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/plugins/lightningcss.ts": "504b893a02c7564a12d274aa2957c5060d44f630120853d37344348b4e5b56a3",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/plugins/markdown.ts": "7e82d897c1e35bf119dcd18b6aec7a6ba5aa06848897b34ff9cd161ec7c8757e",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/plugins/metas.ts": "ecaf7a634b2293442324afe4f5b378e1757784937af4a091710209b6cbebf399",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/plugins/minify_html.ts": "5ffde4af62c6adf465c7f0f31c2eff40c90d20660842b397abc3241d3abc5cea",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/plugins/modify_urls.ts": "9c1b7cc856038d46b64f395065d2852f9b4af94ef9a41c2e9e3021d448b1d3b6",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/plugins/modules.ts": "4e177c0ffe972b9deef10db2bf0ae52b405418af4dbac03db9e7ffbd6a3ec6ae",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/plugins/paginate.ts": "6a1a9a24d0fabed2f722a6a6f29d98559219c69475685034181816e82d367f2e",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/plugins/picture.ts": "bbe17dbb3494e0a342be1c9685739797f1bf4c93ff55d4a9258c91a5b793868c",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/plugins/reading_info.ts": "b43ea47c4d972599714b0ec595c2f6be566510c5c670ba7d56d5b5ffee36cd8d",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/plugins/resolve_urls.ts": "910dbccd25fcacacc72d577a3df37c5f3cc4adce0ec52b2fc8903863c2e2afae",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/plugins/robots.ts": "97bf9b5e0957f7229a1a3e6fc11d708af42b968ad35f0cf00b770ebf5eaa717f",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/plugins/search.ts": "5acb5be828bbbd012fb9226cb97ec3e370d43d05aa44d16e7e7d50bab368b442",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/plugins/sitemap.ts": "cd14078374b24416fcaa6ea6af586dc12ef048079fafb21d8ee1c50d25f1f5d1",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/plugins/slugify_urls.ts": "ec2a78b13f094d99c90d1789149d98a60ea39297cbdc1d514fd267d8c8a42b85",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/plugins/source_maps.ts": "a04dc9939040800e64e37031d8dc7c58e8ffff026a8447c37fc715f8978712d8",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/plugins/svgo.ts": "e22a4998b3793e1b583a1290bd8bf2b8f37b8df5d7014f45a629a5547440c24d",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/plugins/tailwindcss.ts": "7cb3b1a183d062533711196657c0f456106fa1d44e6b69c92ad487692b2e0d98",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/plugins/toml.ts": "e5bf35ed4915587acd453f002b00ae9b88c1782cadc25c703d7642a390af43ea",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/plugins/transform_images.ts": "000e8ceb653ab399a0a2bd9b152e599994ed8a517c5bb129f710bae3fe7ebd30",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/plugins/url.ts": "15f2e80b6fcbf86f8795a3676b8d533bab003ac016ff127e58165a6ac3bffc1a",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/plugins/vento.ts": "34403bdb7a01b712f0b3a48a4e601387ac73668b145557d7150c3f3e54dd75e8",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/plugins/yaml.ts": "d0ebf37c38648172c6b95c502753a3edf60278ab4f6a063f3ca00f31e0dd90cc",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/types.ts": "5f580502f366b9b25106eb72d49b30d9af7715c8a304fe6e21f382d3c2a4cc38",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/cli.ts": "a3254363ab2d55df4ff1f25e253f5edc53da1088c33a74efe36e605e74bb67c4",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/cli/build.ts": "a3acda3c702d6a51a8fe65ea3abc17813deea0db71e442de6120a747f56a2466",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/cli/build_worker.ts": "34781766980dcee3c433aaa65df138168cb163a2cbd89bac53efce167ed6bfbf",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/cli/cms.ts": "7f3f46c3353661a7679926d0ddcfe3e596f3c97ad2de7f535bde5906e42c3f5a",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/cli/create.ts": "f340056e3b01a61007f82b47a174ede55df2d80d343e492a3853d44007bb8fc6",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/cli/missing_worker_apis.ts": "70625ded7fee5de7d215e0829ce8dc4bb7060f6a496c09db880ebaec8b3efb92",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/cli/run.ts": "27e7c84c2bcadc3aa4ca4fbad02330f33000dca9a2ef41780bad3676606bc029",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/cli/upgrade.ts": "a11e7c9024f78c2e7376c57b4a99e389dbf490769779d2d37a4a3ccd6ef27d9e",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/cli/utils.ts": "8fcc2d3d8003e4b651201ef2e343209c6a752959b5acb0da7038d132e9097ef2",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/cache.ts": "a6df9d9208b2276fa9269fec8f5c8ae2d48fc373af537414d8b57e5505ead9d0",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/components.ts": "78c684e0786e745caf6a4c746f183027a1dcd6cb327651c0e95f3d3510593221",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/data_loader.ts": "8698a9e9b1aac27147dc835ba89a0e30828c81338eceae86630607d78f146215",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/debugbar.ts": "db2d8eb01b61171ff642bf1a8393f96fa0b279dd54df85de733b287ef5d4ce88",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/events.ts": "e4fd1786eb7dd4a041d7d922779b9edf1ee89e51fd17ba5e756f380879ccb557",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/file.ts": "dd75602565b746b61ff4baf1d6624a2a60bc240fd3718143510d7f7111679c22",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/formats.ts": "e65130e5c5f2e49435619479710c812199b480a9e145fdc6b2bac11cfe6ea08e",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/fs.ts": "22d77101afaef582f18cf1619bb9eed7fd5cd0b3ce840588a53432fcd90cd8af",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/loaders/binary.ts": "bb1e1cf3faac49f6007dc6814168dc0f633da17356db18e68862e4b2a87a3f33",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/loaders/json.ts": "632e840340edf7d79091fb37474a1cbf86dd2d218090fb6f6c0420f5f5e9c2ce",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/loaders/module.ts": "abcb210fa6724b83407407cd0f7ef90462b35a2017bc135a3d124dd7f38843f6",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/loaders/text.ts": "42860fc3482651fa6cfba18a734bb548d6e6e1163bf1015c2abc447ab150acbd",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/loaders/toml.ts": "72ddfef2deea62815c28e27faa2c5356e09b3109e9547e47a6defea3d3332452",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/loaders/yaml.ts": "241dc41fbe51b92e38dc748eda614c35d80fb8c63a6d40253453c6bb78c9c47e",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/processors.ts": "0f4eef7e2dc44ef8eea1b8ab1fcc0dc577b0d3c47f800a8482379db7d94241a8",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/renderer.ts": "5e9ca876833fc0d593e41228e556313aacae86070ebfcc514a0b8dd605fe62ef",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/scopes.ts": "dbdf93d7a9cead84833779e974f190b1379356ec7c0ccd34aa92f917c2cdd2f9",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/scripts.ts": "286969b120d2290ba57a7fdd9b37e587aacf4e4162d92f51f1f1e9e18c864f30",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/searcher.ts": "19530e0149ca925334f98052863a52cdfbbeea9977342b209829999a34e816a6",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/server.ts": "19cdd234f18c601d8386c7aa6d589616ce367fc571a96d4715f220a522e17ae8",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/site.ts": "3f36b7eb1397194e222389673d20063096233f40280d54cc9975e1923e80ef39",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/slugifier.ts": "3cb058f841f6eba1862f70f43e21de591af99cc6efacd9bb11dc0dbbab9eb703",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/source.ts": "a8968859d500d2eaee3f2f2b861bf29ddea3af67450098aee7bf2eb87e12d23f",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/utils/cli_options.ts": "ce8731a5e9c23b95217b6967dc4e5c434637a33d16806189acc6a87728b2e649",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/utils/concurrent.ts": "cb0775b3d95f3faa356aa3a3e489dccef8807ed93cc4f84fcf5bc81e87c29504",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/utils/css_urls.ts": "aab446be75151a054524f8f913809dca722bf1da40c174745688208d8513ff53",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/utils/data_values.ts": "589eb8299f7e767a10c2f2c4b9ef03ca9e79ba232b7f22fd151be9d1d68e1dc0",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/utils/date.ts": "3eb0b0e2ea15a95cdfe737be70cd4f48cbe49401928cb04c25a230f411ab2478",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/utils/digest.ts": "445b387983391af73269686292a65bb677119a25a327776885ff1242a9397ad8",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/utils/dom.ts": "fffb0c0c3ae613282e0447c3e4c122a62f44c776771d525a0ca09759883b4b9e",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/utils/dom_links.ts": "f4a197edd4a77b504e82d097613b02684fb5ba73cd415608b913bc658e6ddb28",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/utils/env.ts": "d2440f14ad27e65b0a42b35a52f59ccce0430dd52950bd5df103bb1c9ba1a4a7",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/utils/generator.ts": "1e664e9fd4c469e38a0acf5c94fd49dac4f38cb6334563ea4b7fc498b5958877",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/utils/log.ts": "c04403c5fd81bc8c065f86251d233d7869a5730a777898fc62150b8ed44a43b9",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/utils/lume_config.ts": "70ae5b1a8e6dddfc9fe516dc46c712aabf67f7a77d94a7d3bb16740d7c98f4ae",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/utils/lume_version.ts": "c1c63818097e4a273183429ab5b2446a253307f7bc2d0d6361a17b4f230a617d",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/utils/merge_data.ts": "4ac5067e5b2ff3ba88ef2e009ee718e512aeb097a28f785b8bc733cb8805251c",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/utils/net.ts": "21698915e73bd493d66343e9c197200e08e7b0602b2e1fa4e5393c9cf9d6c6e2",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/utils/object.ts": "70f4d7b289478810499e5631cb9458e2961db12b5caa51ec34f87b6b5f6d4674",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/utils/page_content.ts": "bbadb588f9d9fcf1a2af156ce4b68974dfad39b65c3c8d42a6f1895b194c7eec",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/utils/page_date.ts": "2a3d9c203df298ca61f568fdf509945f127f990769623c3edfd753d39807b757",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/utils/page_url.ts": "fb2590298489a5afa3caa6f9c72a6b32b7287df10c0174c41ee2fb4a07a541ce",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/utils/path.ts": "7a1d199113928cc35782aa3262cbe6f7a4894bc262d7d300de9385b3da45602f",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/utils/read.ts": "f435e42e01ee022f50a5d1afc08b0a2a481cfa1e9c5844690939f1fdf6faf1bf",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/utils/tokens.ts": "201777343e716403bfb1dbbc1a988a85b8d3f12699daaacbe8bbdc3c352a57ff",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/watcher.ts": "6c6c4b5feb540958bfd3ca78f420f4278d39eb317e9476aeec85d0ca69368873",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/writer.ts": "e8952538d57c0b587a3e9344b9b10d1b71274aca234b927b05a09c88ac3f4304",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/deps/base64.ts": "19e9998658eeeef3e0b3e55d83cdad139c656c2e43975d879c9538ed32dfdfb1",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/deps/brotli.ts": "7500a8ea7474fa73fae329b00974379de587b4fcdcc68449097e6504c49f19a1",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/deps/cli.ts": "72ed8873486903eab076bf0f0edf7b94c78206aa98dd53f6393d150cc1737d3f",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/deps/cliffy.ts": "faff0c2ca187ec9fd1ad8660141f85b9d05b5c36bab25b40eb5038c02590a310",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/deps/colors.ts": "963410817371ad594349da1dc042f162d5f9e739e0d2b0a1141702673b525a51",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/deps/crypto.ts": "70046784de20c6412d0c554dc08093b4527184987126943a613ade39fa12c3eb",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/deps/date.ts": "cbd4703210520fafd80daf364d9aa4180b322e88f6d01269f6002cfd10a33109",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/deps/dom.ts": "82cd9bc09d35f39d73cb6d4e8ea79bdbc6e19f68021476161440a88959b3323c",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/deps/esbuild.ts": "08ea6541b2647f59a547223d69a0c46a4969b8297725d065f56a877ff9b8fe18",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/deps/front_matter.ts": "f5e5780d4a0502d50cde1f42a4aa7830756dc9bd0251ba7448cecd1eaa60878f",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/deps/fs.ts": "f9ba2c0d76a3a6adc68e1d28533bed765365951746e2bfdba66c97f0b29a297a",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/deps/hex.ts": "e0a0041c47fe814cc12735e909fee21f9c6e8b708227874691e90799444e68f1",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/deps/http.ts": "fdc2edd220d2084562ea09a06ef5b937c28f29e4023febbad8843ed82022a198",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/deps/init.ts": "05d45af66ebdfe63e43540618f51ece8f99d98dc49de890f10eeb43abe9ed0f3",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/deps/jsonc.ts": "e359eb0ef9f5f15518e6afe9bafb5b48bd5798dc000c8e210953c29cb319e607",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/deps/lightningcss.ts": "19f090ee781028aacd9817f204972b162c065e4c0ea99e24935eb489d2aadfd6",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/deps/markdown_it.ts": "24c1c0fd18c99b9067d9ff5d051f934cb7c3446e6afbad934f6268af8d1ceb4d",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/deps/media_types.ts": "fab5c276f8abd1db34ed7c5ccdc3d88f7a1a075cc1d1156919cab0ef35587afc",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/deps/minify_html.ts": "4dff2674ed8b4d068a487c46c5f222e910869e21db62f6dc5dc93cff89be30eb",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/deps/path.ts": "2cb9b457032c687de61df71a5855a97d7de18386bfe3048c03377c733e96b3ab",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/deps/remove-markdown.ts": "c975349bb4b0a325384b8171b1648d5b79366efc8814413c8e93bfeded3280e3",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/deps/sharp.ts": "9ca04f2007e969208bf4f16a6f51754dadff8e1a5500df3a7934aed5ed184e2b",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/deps/streams.ts": "e78fdd0a968390117fb3d6bd83de09b72f54eec27d8ef873aea9ad03c1087c3b",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/deps/svg2png.ts": "d761fb39c37e5c5ba4ac2db25768cf0c2ff34643d3d1847a9fe736449175d5ec",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/deps/svgo.ts": "688d1272b1a2113d8ad35e70854a189d6c238b04b8237529acdaa8028abc40d6",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/deps/tailwindcss.ts": "cf0992c5c0b8681e94eb9be1d6eb928021ea9bd44d7d1a6f7612d4ae14a753d4",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/deps/toml.ts": "6cada3f115f55f1a7a234b13156535a6de145f7efac75251e2aed2d6f574e5fa",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/deps/vento.ts": "52abaab33bf360365323bf4c2b1ddcf3aee604146470e917729575271eb7b8a2",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/deps/xml.ts": "a2171f6ed75576354faa685ebd62b63cf1d4ee518477f295604526416dd27e2f",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/deps/yaml.ts": "cbcf4d295ed88066e12a718750f09cebbf30fefa32e186844b597bce74b35557",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/lint.ts": "1b2d74e52e36d6f17d765ca0b934178fe18589b82f12bcb7147e2cd800df7057",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/middlewares/logger.ts": "c96f1a9f9d5757555b6f141865ce8551ac176f90c8ee3e9ad797b2b400a9a567",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/middlewares/no_cache.ts": "0119e3ae3a596ab12c42df693b93e5b03dd9608e289d862242751a9739438f35",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/middlewares/no_cors.ts": "4d24619b5373c98bcc3baf404db47ba088c87ac8538ea1784e58d197b81d4d02",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/middlewares/not_found.ts": "c5916a6788d570647814bdd0daefbdeaf544878176acd3e84c231a0f02407ca7",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/middlewares/reload.ts": "309cdeca7db2e9dde64e8bb2a3aa2885f81cfcfbd51d629205763ef93642ab88",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/middlewares/reload_client.js": "30bb4d057ee2b88799bb28329d03d97dee6cc6c565fc811fa6da13e8acae0511",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/mod.ts": "4ed2edf622df6109304095952f8a02844f5abc2992b6c9886af632b058f1a8f4",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/plugins/brotli.ts": "549bf246f6bc31c91da59b27a42328f3cfc1d5357b359549ca344678799ff4bc",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/plugins/date.ts": "cbf280a28f8aef6f2c9ab9b5234875ab5994fe68e0f977798043e056dfc9a56f",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/plugins/feed.ts": "435353560e83412e6feb6d868fec30c0fb81d0433fe4720b55b80156b781fbb7",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/plugins/google_fonts.ts": "b45216dd0b6d857f03b58c5641f8adfc872f39f727a29c99e285b046bf835db5",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/plugins/gzip.ts": "0026c36672db566ebc7dc0d48d0b94ad21063c9b7ebf691ab9d78aa62ed88784",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/plugins/json.ts": "5c49499e56b919ec848d4118ec97dd4fe0a323a6cc4c648dc45ab55297614c12",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/plugins/lightningcss.ts": "504b893a02c7564a12d274aa2957c5060d44f630120853d37344348b4e5b56a3",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/plugins/markdown.ts": "7e82d897c1e35bf119dcd18b6aec7a6ba5aa06848897b34ff9cd161ec7c8757e",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/plugins/metas.ts": "ecaf7a634b2293442324afe4f5b378e1757784937af4a091710209b6cbebf399",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/plugins/minify_html.ts": "5ffde4af62c6adf465c7f0f31c2eff40c90d20660842b397abc3241d3abc5cea",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/plugins/modify_urls.ts": "9c1b7cc856038d46b64f395065d2852f9b4af94ef9a41c2e9e3021d448b1d3b6",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/plugins/modules.ts": "4e177c0ffe972b9deef10db2bf0ae52b405418af4dbac03db9e7ffbd6a3ec6ae",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/plugins/paginate.ts": "6a1a9a24d0fabed2f722a6a6f29d98559219c69475685034181816e82d367f2e",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/plugins/picture.ts": "bbe17dbb3494e0a342be1c9685739797f1bf4c93ff55d4a9258c91a5b793868c",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/plugins/reading_info.ts": "b43ea47c4d972599714b0ec595c2f6be566510c5c670ba7d56d5b5ffee36cd8d",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/plugins/resolve_urls.ts": "910dbccd25fcacacc72d577a3df37c5f3cc4adce0ec52b2fc8903863c2e2afae",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/plugins/robots.ts": "97bf9b5e0957f7229a1a3e6fc11d708af42b968ad35f0cf00b770ebf5eaa717f",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/plugins/search.ts": "5acb5be828bbbd012fb9226cb97ec3e370d43d05aa44d16e7e7d50bab368b442",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/plugins/sitemap.ts": "cd14078374b24416fcaa6ea6af586dc12ef048079fafb21d8ee1c50d25f1f5d1",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/plugins/slugify_urls.ts": "ec2a78b13f094d99c90d1789149d98a60ea39297cbdc1d514fd267d8c8a42b85",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/plugins/source_maps.ts": "a04dc9939040800e64e37031d8dc7c58e8ffff026a8447c37fc715f8978712d8",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/plugins/svgo.ts": "e22a4998b3793e1b583a1290bd8bf2b8f37b8df5d7014f45a629a5547440c24d",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/plugins/tailwindcss.ts": "7cb3b1a183d062533711196657c0f456106fa1d44e6b69c92ad487692b2e0d98",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/plugins/toml.ts": "e5bf35ed4915587acd453f002b00ae9b88c1782cadc25c703d7642a390af43ea",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/plugins/transform_images.ts": "7c715aa54fdf6629f46816501e7e80cdbbbf67fe8b908c601d66a6b1277eff75",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/plugins/url.ts": "15f2e80b6fcbf86f8795a3676b8d533bab003ac016ff127e58165a6ac3bffc1a",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/plugins/vento.ts": "34403bdb7a01b712f0b3a48a4e601387ac73668b145557d7150c3f3e54dd75e8",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/plugins/yaml.ts": "d0ebf37c38648172c6b95c502753a3edf60278ab4f6a063f3ca00f31e0dd90cc",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/types.ts": "5f580502f366b9b25106eb72d49b30d9af7715c8a304fe6e21f382d3c2a4cc38",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/cli.ts": "a3254363ab2d55df4ff1f25e253f5edc53da1088c33a74efe36e605e74bb67c4",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/cli/build.ts": "a3acda3c702d6a51a8fe65ea3abc17813deea0db71e442de6120a747f56a2466",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/cli/build_worker.ts": "34781766980dcee3c433aaa65df138168cb163a2cbd89bac53efce167ed6bfbf",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/cli/cms.ts": "7f3f46c3353661a7679926d0ddcfe3e596f3c97ad2de7f535bde5906e42c3f5a",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/cli/create.ts": "f340056e3b01a61007f82b47a174ede55df2d80d343e492a3853d44007bb8fc6",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/cli/missing_worker_apis.ts": "70625ded7fee5de7d215e0829ce8dc4bb7060f6a496c09db880ebaec8b3efb92",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/cli/run.ts": "27e7c84c2bcadc3aa4ca4fbad02330f33000dca9a2ef41780bad3676606bc029",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/cli/upgrade.ts": "a11e7c9024f78c2e7376c57b4a99e389dbf490769779d2d37a4a3ccd6ef27d9e",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/cli/utils.ts": "8fcc2d3d8003e4b651201ef2e343209c6a752959b5acb0da7038d132e9097ef2",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/core/cache.ts": "a6df9d9208b2276fa9269fec8f5c8ae2d48fc373af537414d8b57e5505ead9d0",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/core/components.ts": "e5b0d2aca8e630735534a4cb781802fe9c194c3be4e1010c0abe73617c607d84",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/core/data_loader.ts": "8698a9e9b1aac27147dc835ba89a0e30828c81338eceae86630607d78f146215",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/core/debugbar.ts": "1f317b5ce7a14ae6a60fb907bf4ce2bcab1c30e0e68b767e2fa93bced57563fd",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/core/events.ts": "e4fd1786eb7dd4a041d7d922779b9edf1ee89e51fd17ba5e756f380879ccb557",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/core/file.ts": "7006371e0962c74e5519142d432284065eff8009c051df2ce064ca8b19d9a7b9",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/core/formats.ts": "e65130e5c5f2e49435619479710c812199b480a9e145fdc6b2bac11cfe6ea08e",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/core/fs.ts": "22d77101afaef582f18cf1619bb9eed7fd5cd0b3ce840588a53432fcd90cd8af",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/core/loaders/binary.ts": "bb1e1cf3faac49f6007dc6814168dc0f633da17356db18e68862e4b2a87a3f33",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/core/loaders/json.ts": "ae28e711196215ca2772e9e31f2646ff4c3cf3f66ae75bf8cbcab94de5dbd24f",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/core/loaders/module.ts": "abcb210fa6724b83407407cd0f7ef90462b35a2017bc135a3d124dd7f38843f6",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/core/loaders/text.ts": "42860fc3482651fa6cfba18a734bb548d6e6e1163bf1015c2abc447ab150acbd",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/core/loaders/toml.ts": "72ddfef2deea62815c28e27faa2c5356e09b3109e9547e47a6defea3d3332452",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/core/loaders/yaml.ts": "241dc41fbe51b92e38dc748eda614c35d80fb8c63a6d40253453c6bb78c9c47e",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/core/processors.ts": "047a87b0c9a0377ef15daaf1b671a29d541e4bb744c152f02a5c4f0a80fbbb64",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/core/renderer.ts": "8c69046aa0fdc51fddbbd36c02aeb9b2226a5853f4ae8aeb549c17c43af13e88",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/core/scopes.ts": "dbdf93d7a9cead84833779e974f190b1379356ec7c0ccd34aa92f917c2cdd2f9",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/core/scripts.ts": "286969b120d2290ba57a7fdd9b37e587aacf4e4162d92f51f1f1e9e18c864f30",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/core/searcher.ts": "19530e0149ca925334f98052863a52cdfbbeea9977342b209829999a34e816a6",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/core/server.ts": "19cdd234f18c601d8386c7aa6d589616ce367fc571a96d4715f220a522e17ae8",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/core/site.ts": "201f6745c2ed3bd0c26548c51768f8c676bd46774c1170aa4badcd7369fecbcf",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/core/slugifier.ts": "614c35473ea6a5b91b70a0cbd0df87c137e6572cf154cb3e1c5e514f520f9676",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/core/source.ts": "d4dbe91058369ffaf23778da7e8d8287234f3901eed378accb7933e76529a216",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/core/utils/browsers.ts": "f668e129d6b969663f736d1759b0544577e0ea609727d1009bf8d6e3ec9eef3e",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/core/utils/cli_options.ts": "ce8731a5e9c23b95217b6967dc4e5c434637a33d16806189acc6a87728b2e649",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/core/utils/concurrent.ts": "cb0775b3d95f3faa356aa3a3e489dccef8807ed93cc4f84fcf5bc81e87c29504",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/core/utils/css_urls.ts": "aab446be75151a054524f8f913809dca722bf1da40c174745688208d8513ff53",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/core/utils/data_values.ts": "589eb8299f7e767a10c2f2c4b9ef03ca9e79ba232b7f22fd151be9d1d68e1dc0",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/core/utils/date.ts": "3eb0b0e2ea15a95cdfe737be70cd4f48cbe49401928cb04c25a230f411ab2478",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/core/utils/digest.ts": "445b387983391af73269686292a65bb677119a25a327776885ff1242a9397ad8",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/core/utils/dom.ts": "fffb0c0c3ae613282e0447c3e4c122a62f44c776771d525a0ca09759883b4b9e",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/core/utils/dom_links.ts": "f4a197edd4a77b504e82d097613b02684fb5ba73cd415608b913bc658e6ddb28",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/core/utils/env.ts": "9d0d859303e8cb799d122088f077c54b85258763f2541313be3bf66b58ce33a3",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/core/utils/format.ts": "bad71315eefd5ad0413841bbe5e8406d636d58d3ed3ef48674655b3a21a0aab0",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/core/utils/generator.ts": "1e664e9fd4c469e38a0acf5c94fd49dac4f38cb6334563ea4b7fc498b5958877",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/core/utils/log.ts": "9652d9b7a78fa61d667b6749a35ea02a00927b541d6d4d72e7f3de1881101bde",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/core/utils/lume_config.ts": "3715adca952a4c6054b0f4a25792859ae683a85b11c225b36d027ac26baabe95",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/core/utils/lume_version.ts": "c1c63818097e4a273183429ab5b2446a253307f7bc2d0d6361a17b4f230a617d",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/core/utils/merge_data.ts": "4ac5067e5b2ff3ba88ef2e009ee718e512aeb097a28f785b8bc733cb8805251c",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/core/utils/net.ts": "21698915e73bd493d66343e9c197200e08e7b0602b2e1fa4e5393c9cf9d6c6e2",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/core/utils/object.ts": "70f4d7b289478810499e5631cb9458e2961db12b5caa51ec34f87b6b5f6d4674",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/core/utils/page_content.ts": "bbadb588f9d9fcf1a2af156ce4b68974dfad39b65c3c8d42a6f1895b194c7eec",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/core/utils/page_date.ts": "2a3d9c203df298ca61f568fdf509945f127f990769623c3edfd753d39807b757",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/core/utils/page_url.ts": "fb2590298489a5afa3caa6f9c72a6b32b7287df10c0174c41ee2fb4a07a541ce",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/core/utils/path.ts": "7a1d199113928cc35782aa3262cbe6f7a4894bc262d7d300de9385b3da45602f",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/core/utils/read.ts": "f435e42e01ee022f50a5d1afc08b0a2a481cfa1e9c5844690939f1fdf6faf1bf",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/core/utils/tokens.ts": "201777343e716403bfb1dbbc1a988a85b8d3f12699daaacbe8bbdc3c352a57ff",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/core/watcher.ts": "1669b186143b275016d97baecd4f210207a67f54fc78a364da79a4d5022c1b59",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/core/writer.ts": "e8952538d57c0b587a3e9344b9b10d1b71274aca234b927b05a09c88ac3f4304",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/deps/base64.ts": "c7b786540e9f348726e6c6f3ba00866328463f7323ebd02d91c6bc7b125e19b0",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/deps/brotli.ts": "7500a8ea7474fa73fae329b00974379de587b4fcdcc68449097e6504c49f19a1",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/deps/cli.ts": "68432a318c0d1131efafa0d042b82d5f01bab4df2038428eac950b1112b54d44",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/deps/cliffy.ts": "faff0c2ca187ec9fd1ad8660141f85b9d05b5c36bab25b40eb5038c02590a310",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/deps/colors.ts": "01c038ca4f8ad503ae0c81338223e3e9e1cbcaf0a14cc12bb6cd6c12f249df98",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/deps/crypto.ts": "0939b1e974472d1db1d611b4160a5a51d796da1368289277d2e26803243959d5",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/deps/date.ts": "cbd4703210520fafd80daf364d9aa4180b322e88f6d01269f6002cfd10a33109",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/deps/debugbar.ts": "17e47ca0b2fbdcb57ec56d8abaa6adaa060e5aedb3eb7ac60e3cee5f5c76c611",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/deps/dom.ts": "fc1699465615031d79deac25057ba6dca5b85876d8759c1738bc266d19118cc4",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/deps/esbuild.ts": "38585349e52c2e2771e32d88717b062ab3f88df3d7d01be2c877fe34e4c176a4",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/deps/front_matter.ts": "f5e5780d4a0502d50cde1f42a4aa7830756dc9bd0251ba7448cecd1eaa60878f",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/deps/fs.ts": "95fbbfe19afd419842d0c36f0f480f1ec0e027a3310a389ef79e6cf2baf5aa27",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/deps/hex.ts": "828718f24a780ff3ade8d0a8a5b57497cb31c257560ef12af99b6eb1a31e3bbd",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/deps/http.ts": "351273c383d7b180332cca0343799075d15b830530c1d2e44f26e7d746d09fed",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/deps/init.ts": "05d45af66ebdfe63e43540618f51ece8f99d98dc49de890f10eeb43abe9ed0f3",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/deps/jsonc.ts": "79f0eddc3c9e593310eb8e5918eb1506b1c7d7816e4ecb96894f634ecbe626ff",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/deps/lightningcss.ts": "5f5167c6eb306ef759f0043f8f33f2eaf63c69210aa1aa837505e990ee619c46",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/deps/markdown_it.ts": "24c1c0fd18c99b9067d9ff5d051f934cb7c3446e6afbad934f6268af8d1ceb4d",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/deps/media_types.ts": "fab5c276f8abd1db34ed7c5ccdc3d88f7a1a075cc1d1156919cab0ef35587afc",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/deps/minify_html.ts": "4dff2674ed8b4d068a487c46c5f222e910869e21db62f6dc5dc93cff89be30eb",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/deps/path.ts": "694822db2e75db402af9ef4dc451c1ed3232c108a54c0a394e9bbd6eac952a6c",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/deps/remove-markdown.ts": "e304dcdd2c1042a1de5b2df53c9c8c39f4462307f95d13e4b2fa1ded26851013",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/deps/sharp.ts": "7992230874d7ce02308fa0bd39096c1a38a87d1fbd4324aa9b39bd60dd7f19b2",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/deps/streams.ts": "f1a51d8add43f42977de70dc915a13719ca955f27e084bdb1b77ca8d43b4a694",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/deps/svg2png.ts": "d761fb39c37e5c5ba4ac2db25768cf0c2ff34643d3d1847a9fe736449175d5ec",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/deps/svgo.ts": "fb77b7afea07dc9e3e3f335bff1847f790ab794b9ad11537cbb04a90b17ae4fb",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/deps/tailwindcss.ts": "1ff01644065adbc14b01b6cf5c167c7451ec87125aecdff7c122a845683179c9",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/deps/toml.ts": "d3467ce8d50cf04744256929e9c5be23b9a7ec4112432de4a0ea90a2c93c0e1b",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/deps/vento.ts": "75b591df43212d319a5b4fc572330fd1ed54d1f4889090b1e94608ccca284bfc",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/deps/xml.ts": "9bdab076e6e859b7bfb76a36503674b5f2fb6fa39a5f75f0d2ae3ee2bc9111a2",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/deps/yaml.ts": "c39763fe8d32897c6429ea37de02809bced924e2588ba902c95c3b2c2fed1b5d",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/lint.ts": "4b369361e0cff20a8dfd9e3ff8cb642aa805e7532825ea3a5378eb1f80901fc6",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/middlewares/logger.ts": "c96f1a9f9d5757555b6f141865ce8551ac176f90c8ee3e9ad797b2b400a9a567",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/middlewares/no_cache.ts": "0119e3ae3a596ab12c42df693b93e5b03dd9608e289d862242751a9739438f35",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/middlewares/no_cors.ts": "4d24619b5373c98bcc3baf404db47ba088c87ac8538ea1784e58d197b81d4d02",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/middlewares/not_found.ts": "0f92cd91239444247a1c3dce1bed4e978445687ca76f544a0ccd483a352f761a",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/middlewares/reload.ts": "4ebe51dea8fc471ab248b6b8a68ef2bef75baaa01a5577cb298413e414d86d18",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/middlewares/reload_client.js": "9026da20a25fe58ad36233539ada3f38d56d935c5b0c1c69b7fcd21511efadee",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/mod.ts": "4ed2edf622df6109304095952f8a02844f5abc2992b6c9886af632b058f1a8f4",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/plugins/brotli.ts": "a593602afc7fdfa79dab6c28f8e9e7fe6eb926f33a101e5684398d51cdf4ac66",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/plugins/date.ts": "cbf280a28f8aef6f2c9ab9b5234875ab5994fe68e0f977798043e056dfc9a56f",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/plugins/feed.ts": "21414e0e067598e59eddc378bd4d6e7c724b3123243575287fe8a38b5184f1f6",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/plugins/google_fonts.ts": "4fa4e743721e2de423f316d13ba2c5990f69648733c8bb049cd0fba41a05b9bf",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/plugins/gzip.ts": "7f47580b051d6c4659ca06012793f3816833a99df859518cfdc12015a23cac58",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/plugins/json.ts": "5c49499e56b919ec848d4118ec97dd4fe0a323a6cc4c648dc45ab55297614c12",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/plugins/lightningcss.ts": "d5c0ab69d782df21232dfc6b395252cbbcafc1deba030dea454ca4da423e4e4d",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/plugins/markdown.ts": "7e82d897c1e35bf119dcd18b6aec7a6ba5aa06848897b34ff9cd161ec7c8757e",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/plugins/metas.ts": "1e5826aadd5856af0c28a34e2f5580c718aa6cee6e7d7c63835e7c22467dc310",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/plugins/minify_html.ts": "5ea00fdc8622f9379c99c9618d6e3c7eb2d5e03559a3a8fcc0090fa8ab059d84",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/plugins/modify_urls.ts": "ddead1740f1c38a692586065e4e770085c9697cd103ab8865c260841f16010d8",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/plugins/modules.ts": "4e177c0ffe972b9deef10db2bf0ae52b405418af4dbac03db9e7ffbd6a3ec6ae",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/plugins/paginate.ts": "6a1a9a24d0fabed2f722a6a6f29d98559219c69475685034181816e82d367f2e",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/plugins/picture.ts": "7cfa6bff4e4432b8dfb90d13108249adb71a02a6c76fbffd8b372d1516bcfae4",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/plugins/reading_info.ts": "c73a25c756ec75faba76b913a5170fedb8ed9338d17f9d34834f790d26c32bc2",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/plugins/resolve_urls.ts": "910dbccd25fcacacc72d577a3df37c5f3cc4adce0ec52b2fc8903863c2e2afae",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/plugins/robots.ts": "8fe0e4aeba1b28d7f8e4810b1f8bc3f71e0fdb93b3108ebdcd4299e1ea66f18e",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/plugins/search.ts": "5acb5be828bbbd012fb9226cb97ec3e370d43d05aa44d16e7e7d50bab368b442",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/plugins/sitemap.ts": "217bca8ee867900c3a1037c03353df2293ac6781448cf311a9179da46db8644c",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/plugins/slugify_urls.ts": "caec9df61b72da5641c69a38ff814eae4b2f69459a08753e7f7d1ca47f798d8a",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/plugins/source_maps.ts": "10afd5d8617003ed68db9895bc13e57d1742697fa55657e27efd535da6e52c34",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/plugins/svgo.ts": "046fdbd6e471f9b6b06267afba6160b183e030c257df973f2dd8f594e7367f0b",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/plugins/tailwindcss.ts": "5bb346053d22f87b62cedabee59fa8b1b03d4304806f572f11d4e65b8e0d1a42",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/plugins/toml.ts": "e5bf35ed4915587acd453f002b00ae9b88c1782cadc25c703d7642a390af43ea",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/plugins/transform_images.ts": "577c793870c89427ced408b2beaf0d90f61e843dc67f07b046cdce72a6a7841d",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/plugins/url.ts": "15f2e80b6fcbf86f8795a3676b8d533bab003ac016ff127e58165a6ac3bffc1a",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/plugins/vento.ts": "908ffbf31864507afa72c506584f2d28c2449b57a339ddfe8a7220eecf082766",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/plugins/yaml.ts": "d0ebf37c38648172c6b95c502753a3edf60278ab4f6a063f3ca00f31e0dd90cc",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/types.ts": "5f580502f366b9b25106eb72d49b30d9af7715c8a304fe6e21f382d3c2a4cc38",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/cli.ts": "a3254363ab2d55df4ff1f25e253f5edc53da1088c33a74efe36e605e74bb67c4",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/cli/build.ts": "a3acda3c702d6a51a8fe65ea3abc17813deea0db71e442de6120a747f56a2466",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/cli/build_worker.ts": "34781766980dcee3c433aaa65df138168cb163a2cbd89bac53efce167ed6bfbf",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/cli/cms.ts": "7f3f46c3353661a7679926d0ddcfe3e596f3c97ad2de7f535bde5906e42c3f5a",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/cli/create.ts": "f340056e3b01a61007f82b47a174ede55df2d80d343e492a3853d44007bb8fc6",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/cli/missing_worker_apis.ts": "70625ded7fee5de7d215e0829ce8dc4bb7060f6a496c09db880ebaec8b3efb92",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/cli/run.ts": "27e7c84c2bcadc3aa4ca4fbad02330f33000dca9a2ef41780bad3676606bc029",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/cli/upgrade.ts": "a11e7c9024f78c2e7376c57b4a99e389dbf490769779d2d37a4a3ccd6ef27d9e",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/cli/utils.ts": "8fcc2d3d8003e4b651201ef2e343209c6a752959b5acb0da7038d132e9097ef2",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/cache.ts": "a6df9d9208b2276fa9269fec8f5c8ae2d48fc373af537414d8b57e5505ead9d0",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/components.ts": "78c684e0786e745caf6a4c746f183027a1dcd6cb327651c0e95f3d3510593221",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/data_loader.ts": "8698a9e9b1aac27147dc835ba89a0e30828c81338eceae86630607d78f146215",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/debugbar.ts": "85d52c5bcd7f5ef5213e9ab7730f5f5a30a9a59db361e517fae5dfe4f13766c0",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/events.ts": "e4fd1786eb7dd4a041d7d922779b9edf1ee89e51fd17ba5e756f380879ccb557",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/file.ts": "dd75602565b746b61ff4baf1d6624a2a60bc240fd3718143510d7f7111679c22",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/formats.ts": "e65130e5c5f2e49435619479710c812199b480a9e145fdc6b2bac11cfe6ea08e",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/fs.ts": "22d77101afaef582f18cf1619bb9eed7fd5cd0b3ce840588a53432fcd90cd8af",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/loaders/binary.ts": "bb1e1cf3faac49f6007dc6814168dc0f633da17356db18e68862e4b2a87a3f33",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/loaders/json.ts": "632e840340edf7d79091fb37474a1cbf86dd2d218090fb6f6c0420f5f5e9c2ce",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/loaders/module.ts": "abcb210fa6724b83407407cd0f7ef90462b35a2017bc135a3d124dd7f38843f6",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/loaders/text.ts": "42860fc3482651fa6cfba18a734bb548d6e6e1163bf1015c2abc447ab150acbd",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/loaders/toml.ts": "72ddfef2deea62815c28e27faa2c5356e09b3109e9547e47a6defea3d3332452",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/loaders/yaml.ts": "241dc41fbe51b92e38dc748eda614c35d80fb8c63a6d40253453c6bb78c9c47e",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/processors.ts": "0f4eef7e2dc44ef8eea1b8ab1fcc0dc577b0d3c47f800a8482379db7d94241a8",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/renderer.ts": "5e9ca876833fc0d593e41228e556313aacae86070ebfcc514a0b8dd605fe62ef",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/scopes.ts": "dbdf93d7a9cead84833779e974f190b1379356ec7c0ccd34aa92f917c2cdd2f9",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/scripts.ts": "286969b120d2290ba57a7fdd9b37e587aacf4e4162d92f51f1f1e9e18c864f30",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/searcher.ts": "19530e0149ca925334f98052863a52cdfbbeea9977342b209829999a34e816a6",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/server.ts": "19cdd234f18c601d8386c7aa6d589616ce367fc571a96d4715f220a522e17ae8",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/site.ts": "95c194b432fb301cba8722a9e37a9153d0a52ee66e7773433915010fa93d44d9",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/slugifier.ts": "3cb058f841f6eba1862f70f43e21de591af99cc6efacd9bb11dc0dbbab9eb703",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/source.ts": "a8968859d500d2eaee3f2f2b861bf29ddea3af67450098aee7bf2eb87e12d23f",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/utils/cli_options.ts": "ce8731a5e9c23b95217b6967dc4e5c434637a33d16806189acc6a87728b2e649",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/utils/concurrent.ts": "cb0775b3d95f3faa356aa3a3e489dccef8807ed93cc4f84fcf5bc81e87c29504",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/utils/css_urls.ts": "aab446be75151a054524f8f913809dca722bf1da40c174745688208d8513ff53",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/utils/data_values.ts": "589eb8299f7e767a10c2f2c4b9ef03ca9e79ba232b7f22fd151be9d1d68e1dc0",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/utils/date.ts": "3eb0b0e2ea15a95cdfe737be70cd4f48cbe49401928cb04c25a230f411ab2478",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/utils/digest.ts": "445b387983391af73269686292a65bb677119a25a327776885ff1242a9397ad8",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/utils/dom.ts": "fffb0c0c3ae613282e0447c3e4c122a62f44c776771d525a0ca09759883b4b9e",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/utils/dom_links.ts": "f4a197edd4a77b504e82d097613b02684fb5ba73cd415608b913bc658e6ddb28",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/utils/env.ts": "d2440f14ad27e65b0a42b35a52f59ccce0430dd52950bd5df103bb1c9ba1a4a7",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/utils/generator.ts": "1e664e9fd4c469e38a0acf5c94fd49dac4f38cb6334563ea4b7fc498b5958877",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/utils/log.ts": "fcd238217bd6939a6f924b786c59e8c704f69858f7d682b14471cc49f07316c3",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/utils/lume_config.ts": "70ae5b1a8e6dddfc9fe516dc46c712aabf67f7a77d94a7d3bb16740d7c98f4ae",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/utils/lume_version.ts": "c1c63818097e4a273183429ab5b2446a253307f7bc2d0d6361a17b4f230a617d",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/utils/merge_data.ts": "4ac5067e5b2ff3ba88ef2e009ee718e512aeb097a28f785b8bc733cb8805251c",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/utils/net.ts": "21698915e73bd493d66343e9c197200e08e7b0602b2e1fa4e5393c9cf9d6c6e2",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/utils/object.ts": "70f4d7b289478810499e5631cb9458e2961db12b5caa51ec34f87b6b5f6d4674",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/utils/page_content.ts": "bbadb588f9d9fcf1a2af156ce4b68974dfad39b65c3c8d42a6f1895b194c7eec",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/utils/page_date.ts": "2a3d9c203df298ca61f568fdf509945f127f990769623c3edfd753d39807b757",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/utils/page_url.ts": "fb2590298489a5afa3caa6f9c72a6b32b7287df10c0174c41ee2fb4a07a541ce",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/utils/path.ts": "7a1d199113928cc35782aa3262cbe6f7a4894bc262d7d300de9385b3da45602f",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/utils/read.ts": "f435e42e01ee022f50a5d1afc08b0a2a481cfa1e9c5844690939f1fdf6faf1bf",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/utils/tokens.ts": "201777343e716403bfb1dbbc1a988a85b8d3f12699daaacbe8bbdc3c352a57ff",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/watcher.ts": "6c6c4b5feb540958bfd3ca78f420f4278d39eb317e9476aeec85d0ca69368873",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/writer.ts": "e8952538d57c0b587a3e9344b9b10d1b71274aca234b927b05a09c88ac3f4304",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/deps/base64.ts": "19e9998658eeeef3e0b3e55d83cdad139c656c2e43975d879c9538ed32dfdfb1",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/deps/brotli.ts": "7500a8ea7474fa73fae329b00974379de587b4fcdcc68449097e6504c49f19a1",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/deps/cli.ts": "72ed8873486903eab076bf0f0edf7b94c78206aa98dd53f6393d150cc1737d3f",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/deps/cliffy.ts": "faff0c2ca187ec9fd1ad8660141f85b9d05b5c36bab25b40eb5038c02590a310",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/deps/colors.ts": "963410817371ad594349da1dc042f162d5f9e739e0d2b0a1141702673b525a51",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/deps/crypto.ts": "70046784de20c6412d0c554dc08093b4527184987126943a613ade39fa12c3eb",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/deps/date.ts": "cbd4703210520fafd80daf364d9aa4180b322e88f6d01269f6002cfd10a33109",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/deps/dom.ts": "82cd9bc09d35f39d73cb6d4e8ea79bdbc6e19f68021476161440a88959b3323c",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/deps/esbuild.ts": "08ea6541b2647f59a547223d69a0c46a4969b8297725d065f56a877ff9b8fe18",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/deps/front_matter.ts": "f5e5780d4a0502d50cde1f42a4aa7830756dc9bd0251ba7448cecd1eaa60878f",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/deps/fs.ts": "f9ba2c0d76a3a6adc68e1d28533bed765365951746e2bfdba66c97f0b29a297a",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/deps/hex.ts": "e0a0041c47fe814cc12735e909fee21f9c6e8b708227874691e90799444e68f1",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/deps/http.ts": "fdc2edd220d2084562ea09a06ef5b937c28f29e4023febbad8843ed82022a198",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/deps/init.ts": "05d45af66ebdfe63e43540618f51ece8f99d98dc49de890f10eeb43abe9ed0f3",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/deps/jsonc.ts": "e359eb0ef9f5f15518e6afe9bafb5b48bd5798dc000c8e210953c29cb319e607",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/deps/lightningcss.ts": "19f090ee781028aacd9817f204972b162c065e4c0ea99e24935eb489d2aadfd6",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/deps/markdown_it.ts": "24c1c0fd18c99b9067d9ff5d051f934cb7c3446e6afbad934f6268af8d1ceb4d",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/deps/media_types.ts": "fab5c276f8abd1db34ed7c5ccdc3d88f7a1a075cc1d1156919cab0ef35587afc",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/deps/minify_html.ts": "4dff2674ed8b4d068a487c46c5f222e910869e21db62f6dc5dc93cff89be30eb",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/deps/path.ts": "2cb9b457032c687de61df71a5855a97d7de18386bfe3048c03377c733e96b3ab",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/deps/remove-markdown.ts": "c975349bb4b0a325384b8171b1648d5b79366efc8814413c8e93bfeded3280e3",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/deps/sharp.ts": "9ca04f2007e969208bf4f16a6f51754dadff8e1a5500df3a7934aed5ed184e2b",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/deps/streams.ts": "e78fdd0a968390117fb3d6bd83de09b72f54eec27d8ef873aea9ad03c1087c3b",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/deps/svg2png.ts": "d761fb39c37e5c5ba4ac2db25768cf0c2ff34643d3d1847a9fe736449175d5ec",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/deps/svgo.ts": "688d1272b1a2113d8ad35e70854a189d6c238b04b8237529acdaa8028abc40d6",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/deps/tailwindcss.ts": "cf0992c5c0b8681e94eb9be1d6eb928021ea9bd44d7d1a6f7612d4ae14a753d4",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/deps/toml.ts": "6cada3f115f55f1a7a234b13156535a6de145f7efac75251e2aed2d6f574e5fa",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/deps/vento.ts": "52abaab33bf360365323bf4c2b1ddcf3aee604146470e917729575271eb7b8a2",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/deps/xml.ts": "a2171f6ed75576354faa685ebd62b63cf1d4ee518477f295604526416dd27e2f",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/deps/yaml.ts": "cbcf4d295ed88066e12a718750f09cebbf30fefa32e186844b597bce74b35557",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/lint.ts": "1b2d74e52e36d6f17d765ca0b934178fe18589b82f12bcb7147e2cd800df7057",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/middlewares/logger.ts": "c96f1a9f9d5757555b6f141865ce8551ac176f90c8ee3e9ad797b2b400a9a567",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/middlewares/no_cache.ts": "0119e3ae3a596ab12c42df693b93e5b03dd9608e289d862242751a9739438f35",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/middlewares/no_cors.ts": "4d24619b5373c98bcc3baf404db47ba088c87ac8538ea1784e58d197b81d4d02",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/middlewares/not_found.ts": "c5916a6788d570647814bdd0daefbdeaf544878176acd3e84c231a0f02407ca7",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/middlewares/reload.ts": "309cdeca7db2e9dde64e8bb2a3aa2885f81cfcfbd51d629205763ef93642ab88",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/middlewares/reload_client.js": "3712a605f695e97a7b72e86728f1aedb23e7a2fd732ae4adecf5fd6b510ab7eb",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/mod.ts": "4ed2edf622df6109304095952f8a02844f5abc2992b6c9886af632b058f1a8f4",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/plugins/brotli.ts": "549bf246f6bc31c91da59b27a42328f3cfc1d5357b359549ca344678799ff4bc",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/plugins/date.ts": "cbf280a28f8aef6f2c9ab9b5234875ab5994fe68e0f977798043e056dfc9a56f",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/plugins/feed.ts": "435353560e83412e6feb6d868fec30c0fb81d0433fe4720b55b80156b781fbb7",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/plugins/google_fonts.ts": "b45216dd0b6d857f03b58c5641f8adfc872f39f727a29c99e285b046bf835db5",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/plugins/gzip.ts": "0026c36672db566ebc7dc0d48d0b94ad21063c9b7ebf691ab9d78aa62ed88784",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/plugins/json.ts": "5c49499e56b919ec848d4118ec97dd4fe0a323a6cc4c648dc45ab55297614c12",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/plugins/lightningcss.ts": "504b893a02c7564a12d274aa2957c5060d44f630120853d37344348b4e5b56a3",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/plugins/markdown.ts": "7e82d897c1e35bf119dcd18b6aec7a6ba5aa06848897b34ff9cd161ec7c8757e",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/plugins/metas.ts": "ecaf7a634b2293442324afe4f5b378e1757784937af4a091710209b6cbebf399",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/plugins/minify_html.ts": "5ffde4af62c6adf465c7f0f31c2eff40c90d20660842b397abc3241d3abc5cea",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/plugins/modify_urls.ts": "9c1b7cc856038d46b64f395065d2852f9b4af94ef9a41c2e9e3021d448b1d3b6",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/plugins/modules.ts": "4e177c0ffe972b9deef10db2bf0ae52b405418af4dbac03db9e7ffbd6a3ec6ae",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/plugins/paginate.ts": "6a1a9a24d0fabed2f722a6a6f29d98559219c69475685034181816e82d367f2e",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/plugins/picture.ts": "bbe17dbb3494e0a342be1c9685739797f1bf4c93ff55d4a9258c91a5b793868c",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/plugins/reading_info.ts": "b43ea47c4d972599714b0ec595c2f6be566510c5c670ba7d56d5b5ffee36cd8d",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/plugins/resolve_urls.ts": "910dbccd25fcacacc72d577a3df37c5f3cc4adce0ec52b2fc8903863c2e2afae",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/plugins/robots.ts": "97bf9b5e0957f7229a1a3e6fc11d708af42b968ad35f0cf00b770ebf5eaa717f",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/plugins/search.ts": "5acb5be828bbbd012fb9226cb97ec3e370d43d05aa44d16e7e7d50bab368b442",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/plugins/sitemap.ts": "cd14078374b24416fcaa6ea6af586dc12ef048079fafb21d8ee1c50d25f1f5d1",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/plugins/slugify_urls.ts": "ec2a78b13f094d99c90d1789149d98a60ea39297cbdc1d514fd267d8c8a42b85",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/plugins/source_maps.ts": "a04dc9939040800e64e37031d8dc7c58e8ffff026a8447c37fc715f8978712d8",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/plugins/svgo.ts": "e22a4998b3793e1b583a1290bd8bf2b8f37b8df5d7014f45a629a5547440c24d",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/plugins/tailwindcss.ts": "7cb3b1a183d062533711196657c0f456106fa1d44e6b69c92ad487692b2e0d98",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/plugins/toml.ts": "e5bf35ed4915587acd453f002b00ae9b88c1782cadc25c703d7642a390af43ea",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/plugins/transform_images.ts": "7c715aa54fdf6629f46816501e7e80cdbbbf67fe8b908c601d66a6b1277eff75",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/plugins/url.ts": "15f2e80b6fcbf86f8795a3676b8d533bab003ac016ff127e58165a6ac3bffc1a",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/plugins/vento.ts": "34403bdb7a01b712f0b3a48a4e601387ac73668b145557d7150c3f3e54dd75e8",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/plugins/yaml.ts": "d0ebf37c38648172c6b95c502753a3edf60278ab4f6a063f3ca00f31e0dd90cc",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/types.ts": "5f580502f366b9b25106eb72d49b30d9af7715c8a304fe6e21f382d3c2a4cc38",
+
"https://cdn.jsdelivr.net/gh/oscarotero/dom@0.1.5/dom.js": "13a19df209f72e0548623233ddfd06c16ec56cb427e11bb1b174894c2c21a44c",
+
"https://cdn.jsdelivr.net/gh/oscarotero/dom@0.1.6/dom.js": "5c9cbf211e94e1fb974100e6a322779d03b2e6a6390854333fe0199878f9ca48",
"https://deno.land/std@0.159.0/encoding/ascii85.ts": "f2b9cb8da1a55b3f120d3de2e78ac993183a4fd00dfa9cb03b51cf3a75bc0baa",
"https://deno.land/std@0.170.0/_util/asserts.ts": "d0844e9b62510f89ce1f9878b046f6a57bf88f208a10304aab50efcb48365272",
"https://deno.land/std@0.170.0/_util/os.ts": "8a33345f74990e627b9dfe2de9b040004b08ea5146c7c9e8fe9a29070d193934",
···
"https://deno.land/x/cliffy@v0.25.7/table/row.ts": "5f519ba7488d2ef76cbbf50527f10f7957bfd668ce5b9169abbc44ec88302645",
"https://deno.land/x/cliffy@v0.25.7/table/table.ts": "ec204c9d08bb3ff1939c5ac7412a4c9ed7d00925d4fc92aff9bfe07bd269258d",
"https://deno.land/x/cliffy@v0.25.7/table/utils.ts": "187bb7dcbcfb16199a5d906113f584740901dfca1007400cba0df7dcd341bc29",
-
"https://deno.land/x/dbin@v0.3.0/mod.ts": "59ab427a025578770aabffb5be3060db3c92b1f4b94b5d73e5f4eb1a2d1eaa86",
"https://deno.land/x/deno_dom@v0.1.49/build/deno-wasm/deno-wasm.js": "d6841a06342eb6a2798ef28de79ad69c0f2fa349fa04d3ca45e5fcfbf50a9340",
"https://deno.land/x/deno_dom@v0.1.49/deno-dom-wasm.ts": "0669396686fb207f1354af33df6aabe2189b4eceafdb1bf7f3d6bbb2637b6b03",
"https://deno.land/x/deno_dom@v0.1.49/src/api.ts": "0ff5790f0a3eeecb4e00b7d8fbfa319b165962cf6d0182a65ba90f158d74f7d7",
···
"https://deno.land/x/deno_dom@v0.1.49/src/dom/utils-types.ts": "96db30e3e4a75b194201bb9fa30988215da7f91b380fca6a5143e51ece2a8436",
"https://deno.land/x/deno_dom@v0.1.49/src/dom/utils.ts": "bc429635e9204051ba1ecc1b212031b5ee7c6bcd95120c91bef696804aa67e74",
"https://deno.land/x/deno_dom@v0.1.49/src/parser.ts": "e06b2300d693e6ae7564e53dfa5c9a9e97fdb8c044c39c52c8b93b5d60860be3",
-
"https://deno.land/x/imagemagick_deno@0.0.31/mod.ts": "124d7f045429f6e6c486b86e72d025410d09576bc0d8075e69f97118a1a33413",
-
"https://deno.land/x/lume@v2.5.1/cli.ts": "a3254363ab2d55df4ff1f25e253f5edc53da1088c33a74efe36e605e74bb67c4",
-
"https://deno.land/x/lume@v2.5.1/cli/build.ts": "a3acda3c702d6a51a8fe65ea3abc17813deea0db71e442de6120a747f56a2466",
-
"https://deno.land/x/lume@v2.5.1/cli/build_worker.ts": "ef70f1b58f42bd4fd15ee528b3a40593621207c2d40bd877150f453cb8610d04",
-
"https://deno.land/x/lume@v2.5.1/cli/cms.ts": "7f3f46c3353661a7679926d0ddcfe3e596f3c97ad2de7f535bde5906e42c3f5a",
-
"https://deno.land/x/lume@v2.5.1/cli/cms_worker.ts": "c053e8d97b46e499309269f97b6429a6c0acdfd5ef797d783861dfd5a8b9a755",
-
"https://deno.land/x/lume@v2.5.1/cli/create.ts": "f340056e3b01a61007f82b47a174ede55df2d80d343e492a3853d44007bb8fc6",
-
"https://deno.land/x/lume@v2.5.1/cli/missing_worker_apis.ts": "70625ded7fee5de7d215e0829ce8dc4bb7060f6a496c09db880ebaec8b3efb92",
-
"https://deno.land/x/lume@v2.5.1/cli/run.ts": "27e7c84c2bcadc3aa4ca4fbad02330f33000dca9a2ef41780bad3676606bc029",
-
"https://deno.land/x/lume@v2.5.1/cli/upgrade.ts": "a11e7c9024f78c2e7376c57b4a99e389dbf490769779d2d37a4a3ccd6ef27d9e",
-
"https://deno.land/x/lume@v2.5.1/cli/utils.ts": "4697e4280ff62b537507ed707ec84ea707b0519f8de32e2e762f498104a8d1ae",
-
"https://deno.land/x/lume@v2.5.1/core/cache.ts": "e0d7f71e84bcc1c7f76d7ad35b9e9260a694215019f9c80763e17489b628f909",
-
"https://deno.land/x/lume@v2.5.1/core/component_loader.ts": "da80bf80a168d0b91b59eb3449fbf62627d8bf67879df34e71970616d47ce2ec",
-
"https://deno.land/x/lume@v2.5.1/core/data_loader.ts": "8698a9e9b1aac27147dc835ba89a0e30828c81338eceae86630607d78f146215",
-
"https://deno.land/x/lume@v2.5.1/core/events.ts": "e4fd1786eb7dd4a041d7d922779b9edf1ee89e51fd17ba5e756f380879ccb557",
-
"https://deno.land/x/lume@v2.5.1/core/file.ts": "27c04304793dec9972a24575ade217ace1eb204dd342d03930fd51fa5b8c2fbb",
-
"https://deno.land/x/lume@v2.5.1/core/formats.ts": "24d9f5ccf384b2474f457cc0d3855e6ad411ded0d6acf4afe36547ba93fc706f",
-
"https://deno.land/x/lume@v2.5.1/core/fs.ts": "0409ca756906a066300e8bdbad590a122aeffa4fa4192cd20b854c6f555bf00d",
-
"https://deno.land/x/lume@v2.5.1/core/loaders/binary.ts": "bb1e1cf3faac49f6007dc6814168dc0f633da17356db18e68862e4b2a87a3f33",
-
"https://deno.land/x/lume@v2.5.1/core/loaders/json.ts": "632e840340edf7d79091fb37474a1cbf86dd2d218090fb6f6c0420f5f5e9c2ce",
-
"https://deno.land/x/lume@v2.5.1/core/loaders/mod.ts": "f33af1a2fa0913cf393cd9ef6bf5aea2d03d1058e8966ad7f1483efbcc7df118",
-
"https://deno.land/x/lume@v2.5.1/core/loaders/module.ts": "abcb210fa6724b83407407cd0f7ef90462b35a2017bc135a3d124dd7f38843f6",
-
"https://deno.land/x/lume@v2.5.1/core/loaders/text.ts": "42860fc3482651fa6cfba18a734bb548d6e6e1163bf1015c2abc447ab150acbd",
-
"https://deno.land/x/lume@v2.5.1/core/loaders/toml.ts": "72ddfef2deea62815c28e27faa2c5356e09b3109e9547e47a6defea3d3332452",
-
"https://deno.land/x/lume@v2.5.1/core/loaders/yaml.ts": "241dc41fbe51b92e38dc748eda614c35d80fb8c63a6d40253453c6bb78c9c47e",
-
"https://deno.land/x/lume@v2.5.1/core/processors.ts": "ce9b97307740723afd86d1773e946981a96769189ba6acd649b412e48552045d",
-
"https://deno.land/x/lume@v2.5.1/core/renderer.ts": "b1879895f7544326e61e95a6413689975e79eabae0c48ca5912f06d2b4afde43",
-
"https://deno.land/x/lume@v2.5.1/core/scopes.ts": "dbdf93d7a9cead84833779e974f190b1379356ec7c0ccd34aa92f917c2cdd2f9",
-
"https://deno.land/x/lume@v2.5.1/core/scripts.ts": "286969b120d2290ba57a7fdd9b37e587aacf4e4162d92f51f1f1e9e18c864f30",
-
"https://deno.land/x/lume@v2.5.1/core/searcher.ts": "9093c2c64d1190b55a886b2905a224e0cbf86532bea4883e065e391851a8f14c",
-
"https://deno.land/x/lume@v2.5.1/core/server.ts": "3d663ed7cffed0af107ff03adf344ab62f25ac302d49b3fb85ec4a479b2e12ab",
-
"https://deno.land/x/lume@v2.5.1/core/site.ts": "b1698b4c722358538f3160487457dbca3e43a4a838d94e1c8d4c4ca3b5ef77f5",
-
"https://deno.land/x/lume@v2.5.1/core/slugifier.ts": "70427c98d32533171933304d34867c15d6b7bcfd48c7d1e0347184b8c4fb8b8e",
-
"https://deno.land/x/lume@v2.5.1/core/source.ts": "1a5bc2c5fe89e7acbafcc38c4b72de8f609064b9ecf454472fadfe6f44d3dd4d",
-
"https://deno.land/x/lume@v2.5.1/core/utils/cli_options.ts": "ce8731a5e9c23b95217b6967dc4e5c434637a33d16806189acc6a87728b2e649",
-
"https://deno.land/x/lume@v2.5.1/core/utils/concurrent.ts": "cb0775b3d95f3faa356aa3a3e489dccef8807ed93cc4f84fcf5bc81e87c29504",
-
"https://deno.land/x/lume@v2.5.1/core/utils/data_values.ts": "ff6866d0c61bdca40c6ba98826ccc8626d8a553d4f8f4a7d320041eea21aa900",
-
"https://deno.land/x/lume@v2.5.1/core/utils/date.ts": "4972e6e43d9756a3858494004e1b45df3b947033abe68db02acfc0bbb7847ce1",
-
"https://deno.land/x/lume@v2.5.1/core/utils/digest.ts": "445b387983391af73269686292a65bb677119a25a327776885ff1242a9397ad8",
-
"https://deno.land/x/lume@v2.5.1/core/utils/dom.ts": "d406fb5c48ceb012286d0aff66ef635261eda666de2ce07538c0cf9366b8fecd",
-
"https://deno.land/x/lume@v2.5.1/core/utils/env.ts": "d2440f14ad27e65b0a42b35a52f59ccce0430dd52950bd5df103bb1c9ba1a4a7",
-
"https://deno.land/x/lume@v2.5.1/core/utils/generator.ts": "1e664e9fd4c469e38a0acf5c94fd49dac4f38cb6334563ea4b7fc498b5958877",
-
"https://deno.land/x/lume@v2.5.1/core/utils/log.ts": "9b229e345d85ce8bd2d108bff99c8c57fcbded62e65776af294f94f349b48641",
-
"https://deno.land/x/lume@v2.5.1/core/utils/lume_config.ts": "f2d03d5343b944bc35a0915470fffe907a2df73e22b49d95d51a79bc268e790f",
-
"https://deno.land/x/lume@v2.5.1/core/utils/lume_version.ts": "96ce8c0144b5adbc170f388b60be706244d1bd100413e748e9cf23878838c87c",
-
"https://deno.land/x/lume@v2.5.1/core/utils/merge_data.ts": "a574d97eeaa1513d30440488f52e988f0fe2085397611852673cea10076f01ff",
-
"https://deno.land/x/lume@v2.5.1/core/utils/net.ts": "21698915e73bd493d66343e9c197200e08e7b0602b2e1fa4e5393c9cf9d6c6e2",
-
"https://deno.land/x/lume@v2.5.1/core/utils/object.ts": "e00ee6e91264064772c87e69e128a09ba0e30c2c41be4a5302881f59f456fc31",
-
"https://deno.land/x/lume@v2.5.1/core/utils/page_content.ts": "e7d4323a7b66d1ae26c1263dd5a13a0c5e9f73583c9cf83454ad61f157d8351d",
-
"https://deno.land/x/lume@v2.5.1/core/utils/page_date.ts": "2a3d9c203df298ca61f568fdf509945f127f990769623c3edfd753d39807b757",
-
"https://deno.land/x/lume@v2.5.1/core/utils/page_url.ts": "8d672d6e292a50952727dda75edd70d7ec98d793de569b24e1f90a35e7836b16",
-
"https://deno.land/x/lume@v2.5.1/core/utils/path.ts": "109b9a6c450929db4f7b133859f5eebbe92999d3cc523a19988a058abec582b5",
-
"https://deno.land/x/lume@v2.5.1/core/utils/read.ts": "e096b1f37f8f0a6820e6ee00af1832d133598d55c961b226d057a5467207c5cd",
-
"https://deno.land/x/lume@v2.5.1/core/watcher.ts": "6c6c4b5feb540958bfd3ca78f420f4278d39eb317e9476aeec85d0ca69368873",
-
"https://deno.land/x/lume@v2.5.1/core/writer.ts": "7c56cdae2fcbaebe3c4d66d6c75bc056906d82517d880ba8e02acbb464e6c6b6",
-
"https://deno.land/x/lume@v2.5.1/deps/base64.ts": "5ef648c7379d3f2b949442d75a6a28792be2113c6edb5860a64205b29f89030d",
-
"https://deno.land/x/lume@v2.5.1/deps/brotli.ts": "7500a8ea7474fa73fae329b00974379de587b4fcdcc68449097e6504c49f19a1",
-
"https://deno.land/x/lume@v2.5.1/deps/cli.ts": "d9b7db60c2345e08c6f6fd461711e56e70f8539d5f5974a506c06bc81e97c710",
-
"https://deno.land/x/lume@v2.5.1/deps/cliffy.ts": "faff0c2ca187ec9fd1ad8660141f85b9d05b5c36bab25b40eb5038c02590a310",
-
"https://deno.land/x/lume@v2.5.1/deps/colors.ts": "d0fc91d58b85772bff7f77349a114162f09aa98dd8b38e85249605ae603de7c9",
-
"https://deno.land/x/lume@v2.5.1/deps/crypto.ts": "020df39e6ba16ec8f3936b0ceff03a3d64bde8900a976ba3a519b5cc09d337d2",
-
"https://deno.land/x/lume@v2.5.1/deps/date.ts": "cbd4703210520fafd80daf364d9aa4180b322e88f6d01269f6002cfd10a33109",
-
"https://deno.land/x/lume@v2.5.1/deps/dom.ts": "82cd9bc09d35f39d73cb6d4e8ea79bdbc6e19f68021476161440a88959b3323c",
-
"https://deno.land/x/lume@v2.5.1/deps/front_matter.ts": "279c53db46ac7f557f217ffb7fbd0c307ad6cbd8ff64d91cd8b023a3b50b2c92",
-
"https://deno.land/x/lume@v2.5.1/deps/fs.ts": "3c3f866b438f37d8f00e0c306c2610415587e861927d7550c8d764bba7b295a0",
-
"https://deno.land/x/lume@v2.5.1/deps/hex.ts": "a24dd4cebd12358d5c5860af61c3ef732837cbfc97437af59c4b7d49e2f24e1a",
-
"https://deno.land/x/lume@v2.5.1/deps/highlight.ts": "e8f830a1137ff7e8246ce21518452b8cbf8089db409458c6d9c31040c11d8428",
-
"https://deno.land/x/lume@v2.5.1/deps/http.ts": "499d1e2f89bad31d06adb3d6a76207b7fc81b3fb91f274d46ca9ae2464fed97d",
-
"https://deno.land/x/lume@v2.5.1/deps/icons.ts": "1b5b4b0518edf26a9d07eaa37198c364baf32474ec8a399d46f7ca954685c588",
-
"https://deno.land/x/lume@v2.5.1/deps/init.ts": "05d45af66ebdfe63e43540618f51ece8f99d98dc49de890f10eeb43abe9ed0f3",
-
"https://deno.land/x/lume@v2.5.1/deps/jsonc.ts": "e359eb0ef9f5f15518e6afe9bafb5b48bd5798dc000c8e210953c29cb319e607",
-
"https://deno.land/x/lume@v2.5.1/deps/lightningcss.ts": "e0866a0b15ff5411d4f70c3fc4a46be2929c9a7499acc549ce0e2b22ae9facbd",
-
"https://deno.land/x/lume@v2.5.1/deps/log.ts": "a7c738aa0d4b3a7595816499ccbddbcb045239a2c441166e3fc961d1698054d4",
-
"https://deno.land/x/lume@v2.5.1/deps/markdown_it.ts": "24c1c0fd18c99b9067d9ff5d051f934cb7c3446e6afbad934f6268af8d1ceb4d",
-
"https://deno.land/x/lume@v2.5.1/deps/media_types.ts": "fab5c276f8abd1db34ed7c5ccdc3d88f7a1a075cc1d1156919cab0ef35587afc",
-
"https://deno.land/x/lume@v2.5.1/deps/minify_html.ts": "d6b88e9bcbcef9d0658916f852e6f9322ed88622368b01da4477533b66c11591",
-
"https://deno.land/x/lume@v2.5.1/deps/pagefind.ts": "b88cbf55ec97a7b02100a9b68c9f16bcc622e0d93122b6a19c766c389a167e35",
-
"https://deno.land/x/lume@v2.5.1/deps/path.ts": "2cb9b457032c687de61df71a5855a97d7de18386bfe3048c03377c733e96b3ab",
-
"https://deno.land/x/lume@v2.5.1/deps/postcss.ts": "3cba55033b826def9d9c07e432b1e147d9ed8e16df4e41ce953d5b3e539ee62d",
-
"https://deno.land/x/lume@v2.5.1/deps/purgecss.ts": "524914d3311933aaeb8052c89c361efdc4656bf6fb8aeec9d1b3d7750dbf8d3f",
-
"https://deno.land/x/lume@v2.5.1/deps/remove-markdown.ts": "c975349bb4b0a325384b8171b1648d5b79366efc8814413c8e93bfeded3280e3",
-
"https://deno.land/x/lume@v2.5.1/deps/satori.ts": "4ed807a234a0abe729e4e583775501332c788750bf934d03ea5ed4dccaeb8320",
-
"https://deno.land/x/lume@v2.5.1/deps/sharp.ts": "fa8536302a8137d3bfe6f0f4de7153424998115db053bff8131b6344906501e7",
-
"https://deno.land/x/lume@v2.5.1/deps/svg2png.ts": "d761fb39c37e5c5ba4ac2db25768cf0c2ff34643d3d1847a9fe736449175d5ec",
-
"https://deno.land/x/lume@v2.5.1/deps/svgo.ts": "688d1272b1a2113d8ad35e70854a189d6c238b04b8237529acdaa8028abc40d6",
-
"https://deno.land/x/lume@v2.5.1/deps/tailwindcss.ts": "36f3d8f8833345ae2f316b97e28a4b343b7614a567a2e99032b79b336cf91f03",
-
"https://deno.land/x/lume@v2.5.1/deps/temporal.ts": "1958b134c4186b0ab39316fa33ba19d1a4203e2ea445080429d60d296b91a552",
-
"https://deno.land/x/lume@v2.5.1/deps/toml.ts": "cc55b94f0c44e4113ff09e153e8b1c58bc5f585b7ea1e8f14f96c8152241b166",
-
"https://deno.land/x/lume@v2.5.1/deps/unidecode.ts": "e476000bf9278edd64eb79a426ec68ac45e1c691a114ee07f9b89b4d30ffca1c",
-
"https://deno.land/x/lume@v2.5.1/deps/unocss.ts": "9a98cde5e492a026c2735c84e4fd3a7940415d34273a147ca45d4c6da21c214f",
-
"https://deno.land/x/lume@v2.5.1/deps/vento.ts": "c905c9d3cf1553fa489dc3657de6183e0d6149f17ed0e27f84426556a5ed7267",
-
"https://deno.land/x/lume@v2.5.1/deps/xml.ts": "a2171f6ed75576354faa685ebd62b63cf1d4ee518477f295604526416dd27e2f",
-
"https://deno.land/x/lume@v2.5.1/deps/yaml.ts": "cbcf4d295ed88066e12a718750f09cebbf30fefa32e186844b597bce74b35557",
-
"https://deno.land/x/lume@v2.5.1/middlewares/logger.ts": "c96f1a9f9d5757555b6f141865ce8551ac176f90c8ee3e9ad797b2b400a9a567",
-
"https://deno.land/x/lume@v2.5.1/middlewares/no_cache.ts": "0119e3ae3a596ab12c42df693b93e5b03dd9608e289d862242751a9739438f35",
-
"https://deno.land/x/lume@v2.5.1/middlewares/no_cors.ts": "4d24619b5373c98bcc3baf404db47ba088c87ac8538ea1784e58d197b81d4d02",
-
"https://deno.land/x/lume@v2.5.1/middlewares/not_found.ts": "4507842d422267062c34662dceab17affcaad01858a5890fda163a8ddeb31487",
-
"https://deno.land/x/lume@v2.5.1/middlewares/reload.ts": "ed0ec1c4627243d035895e2d7ecaf7a0bd1c04415476a34d13861ea9a6f9a6c5",
-
"https://deno.land/x/lume@v2.5.1/middlewares/reload_client.js": "992ac4a2f4a9fb4a1ab5f23f674ef202a43d73652cdebcf7b1552b482a7410ef",
-
"https://deno.land/x/lume@v2.5.1/mod.ts": "097c8497b7bc917b3558f87611b21fa0507d4ad28b863fd41a9bf7683aed1042",
-
"https://deno.land/x/lume@v2.5.1/plugins/brotli.ts": "eae2e4c959bfa0d1e8d8cd43504269ed08a2b0597b6de229b57ca5c4afb5b4a7",
-
"https://deno.land/x/lume@v2.5.1/plugins/code_highlight.ts": "5f53c1de6ac37424bd65a057a40cbb97a45161f5dd991abd0d906fce8562717a",
-
"https://deno.land/x/lume@v2.5.1/plugins/date.ts": "d92823f67326e4f5d73d8cda2e357d36c07a30f4824d95b9402ae4202b336e0c",
-
"https://deno.land/x/lume@v2.5.1/plugins/favicon.ts": "5822264902eb1ab06d9b5c56767ac2997f40c31eba66983b083d02af2d7244e5",
-
"https://deno.land/x/lume@v2.5.1/plugins/feed.ts": "dca36538791d0128cba55eaeeebd8c61cea9de61783d338676cf900f9b085902",
-
"https://deno.land/x/lume@v2.5.1/plugins/google_fonts.ts": "40c74c2180cc1b37d2dcd7dcbd5a570140f0af424dfd27412f4a7c6339ab5d58",
-
"https://deno.land/x/lume@v2.5.1/plugins/icons.ts": "9565658cadfb619629b4fe3eccdde4f0267f469950a2e63b834ffac80c33ab6f",
-
"https://deno.land/x/lume@v2.5.1/plugins/inline.ts": "bda09ad738b7b2940ccc1155446f847c6c14ee3213fa34314f799c132a99b33c",
-
"https://deno.land/x/lume@v2.5.1/plugins/json.ts": "67e5e2e00f8e8640f33c1f97a2bf82a7c97a67a838804637b87b16b72f9042e1",
-
"https://deno.land/x/lume@v2.5.1/plugins/lightningcss.ts": "66e1ba77047fc0b0b490460f05b82068d654394121bf3b339077731d8e54ec1d",
-
"https://deno.land/x/lume@v2.5.1/plugins/markdown.ts": "c7027605edee274762edb20f7040ccba6415c5fe656cc6e25ce91c448f467fd8",
-
"https://deno.land/x/lume@v2.5.1/plugins/metas.ts": "f15088136492bf6ffe869afd029467cd5a46099a273571b1e74beda2553708d7",
-
"https://deno.land/x/lume@v2.5.1/plugins/minify_html.ts": "521bdd0e00c2bb9bb486818f8909616945aaf11f127a67a3d11687d9893294d0",
-
"https://deno.land/x/lume@v2.5.1/plugins/modules.ts": "e64197315d930e462aca24e444d0cfcefb37bfea168b2306122b892a1e1c5b8e",
-
"https://deno.land/x/lume@v2.5.1/plugins/nav.ts": "94ebec9e576ff96697cae85af8d8a7dffb9e48aa90db9fb3f4308a2efc5edbb6",
-
"https://deno.land/x/lume@v2.5.1/plugins/og_images.ts": "5e53962fd5129b76a6a06c92509d4101111a27919de68efead1b9c84ccc20755",
-
"https://deno.land/x/lume@v2.5.1/plugins/pagefind.ts": "9b38d8ffb322d7fa4a4e9e8db36f6688835df00eb9901cebeb0b719ea65204fb",
-
"https://deno.land/x/lume@v2.5.1/plugins/paginate.ts": "7dfee977a205dfe0af33a3e406f73017badd2d4593cf27e5bd897da7ab12ba8a",
-
"https://deno.land/x/lume@v2.5.1/plugins/picture.ts": "51c353193e0d2b4f9f3d3e64177216d4e0605a9e572e1bd1378f725710c627f3",
-
"https://deno.land/x/lume@v2.5.1/plugins/postcss.ts": "0f3e78e44c7503e8d597ed286c5eab39ad5e212cb7912424b7ad2a072e8d07aa",
-
"https://deno.land/x/lume@v2.5.1/plugins/purgecss.ts": "b9ab7ac977fc3f404428fb2df73c8202e3083b6556020439589becf2cc1867e4",
-
"https://deno.land/x/lume@v2.5.1/plugins/relations.ts": "0228745729a6361b6da6daee0df72ce4c1ebcd4e100d20e00778ff1e643c0a27",
-
"https://deno.land/x/lume@v2.5.1/plugins/robots.ts": "154607ea9976b8c4dbbfb8791bdb2a65c5e9540073fcca03d80642582f16fba5",
-
"https://deno.land/x/lume@v2.5.1/plugins/search.ts": "ff570560c6ca95598a1cbfb3a77611477ee7dbb53300bcc3ba14d18c9e5eba79",
-
"https://deno.land/x/lume@v2.5.1/plugins/sitemap.ts": "a8f7ce33eb4b5fe480d170bb0b69bc219f5a8612ea31ca5b8643d68a3e5531ad",
-
"https://deno.land/x/lume@v2.5.1/plugins/slugify_urls.ts": "e96aca4b6fcf8f0abd70d211204efe758e28beb07c36f907095fa617d8bf1cb9",
-
"https://deno.land/x/lume@v2.5.1/plugins/source_maps.ts": "6260905d95155c1fd44eb221a8dee096c6c13052899477bd84e8e180d3a740b3",
-
"https://deno.land/x/lume@v2.5.1/plugins/sri.ts": "fae1bc58158d96827219f410a5f7fb4b54b2601caeea706a924311414500abc0",
-
"https://deno.land/x/lume@v2.5.1/plugins/svgo.ts": "f63a913294f753ad7e3bfaae571577590da767828c8d744a3650ca1f746d1221",
-
"https://deno.land/x/lume@v2.5.1/plugins/tailwindcss.ts": "0438edca49cd3097e665e5c1f1270cc280a40a446c8f22fa86bfb9733063b1d1",
-
"https://deno.land/x/lume@v2.5.1/plugins/toml.ts": "72c75546056e503a59752e33dc25542f2aa21d743bd47f498d722b97958212f5",
-
"https://deno.land/x/lume@v2.5.1/plugins/transform_images.ts": "d77f2c9aed9f5087d8e396ecc81d4692ae0f3c0123a869d42b64072ade008d40",
-
"https://deno.land/x/lume@v2.5.1/plugins/unocss.ts": "f89d32f81ad34e37612503bab8481b15a9f4fd12d05cd00ad72647ca07bf967c",
-
"https://deno.land/x/lume@v2.5.1/plugins/url.ts": "3718185697778f3b4dd17924d9d282d0a5a74030301e7fcae8a7f1b21f0ef9a9",
-
"https://deno.land/x/lume@v2.5.1/plugins/vento.ts": "cc1db79fe3f75757269fd75ff18382d222ec3bb00a4329ddb56e0a00f28c0302",
-
"https://deno.land/x/lume@v2.5.1/plugins/yaml.ts": "8cb20b4bf3a265be0d975235b537c9807db2f34d357fc27546c05d628d3fda9f",
-
"https://deno.land/x/lume@v2.5.1/types.ts": "516bec311f10083c5b1d8109e8afd17f02b49cc62c45dca53706f286cb855dba",
-
"https://deno.land/x/lume_init@v0.3.0/deps.ts": "51061dea0c2f1cb2a326062c6cdd531dfaa6b8c9692e7f786cef2eef709e612a",
-
"https://deno.land/x/lume_init@v0.3.0/init.ts": "051fa551fca62c4844a986a18e1e15084b6332366fbe05613a1b1399d03f8bec",
-
"https://deno.land/x/lume_init@v0.3.0/mod.ts": "8f2731c650153c640e74e693c212fe30ae32d6d55ae636397f6644b3ccc45907",
-
"https://deno.land/x/lume_init@v0.3.0/steps/cms.ts": "02d6e24c7a38038ec109dedf501c2424a2cf6dc56b29a44f7c1da55d55c82958",
-
"https://deno.land/x/lume_init@v0.3.0/steps/git.ts": "58236a061310228d6442a2d60bb670d22794c50d9cbfb22da040ac5126c8d6b6",
-
"https://deno.land/x/lume_init@v0.3.0/steps/load.ts": "30047e55ad89f8f674192eec30f2fdf3ce7dc2e39250eb75e434308570df70db",
-
"https://deno.land/x/lume_init@v0.3.0/steps/plugins.ts": "d0c916800e97c1f4664e83c3dd2c780f8e491664bc6b050a60e3f563237f77ba",
-
"https://deno.land/x/lume_init@v0.3.0/steps/save.ts": "8ae5b20ac02d43a8ab608825ad2c1f093aa2cd0099fb80da1ecc866aeea58c6f",
-
"https://deno.land/x/lume_init@v0.3.0/steps/start.ts": "cce583f821157722545f5058d3ccfaa0526468a618c34982705fa01603cb320a",
-
"https://deno.land/x/lume_init@v0.3.0/steps/success.ts": "986a3cf2f1ac795f398cf04ea3fded39266fa169e87fae61b3377be1649f04be",
-
"https://deno.land/x/lume_init@v0.3.0/steps/themes.ts": "008d9c7c9371bd73c0f86d18a46f17aa70d775181934a2d4cea3bf2cb5e466a7",
-
"https://deno.land/x/lume_init@v0.3.0/steps/update.ts": "ae09f416ab44b628f1d3f9d1e3394f4e661bbb3d915661a4585c79e4147fdf0a",
-
"https://deno.land/x/lume_init@v0.3.0/steps/utils.ts": "55fb173934c2f8db41cc0b0801783458f26f8c78ddb37fe67d2b38aba4513570",
-
"https://deno.land/x/lume_init@v0.3.0/upgrade.ts": "2a5ca0b4ae0db1f6771e6ec4cede420b6c267e882a38e5647bc7218fda862483",
-
"https://deno.land/x/lume_markdown_plugins@v0.8.0/title.ts": "03cf0c80d1454385bda883e3ebbfe3c0dd8512d887ae5095303e447bfa45a0b0",
-
"https://deno.land/x/lume_markdown_plugins@v0.8.0/title/mod.ts": "f77140fdce40c65d5422ffc071803d6922e736fa83209dc7ace40006bf908432",
+
"https://deno.land/x/deno_dom@v0.1.53/build/deno-wasm/deno-wasm.js": "567c1baaf7d3c381cb9c35937403cbaa83bdaa2ae2f4bf59230648c4e3349a0d",
+
"https://deno.land/x/deno_dom@v0.1.53/build/deno-wasm/deno-wasm_bg-wasm.js": "989a0f81b2270eb172bcaf48de4a98da2a3a3bbcf5df334e64602bc8712aec2e",
+
"https://deno.land/x/deno_dom@v0.1.53/build/deno-wasm/deno-wasm_bg.wasm": "05645f46bbdd0fb2a0f5ff759885f553919af1586c3a93fdd29393a6c2920728",
+
"https://deno.land/x/deno_dom@v0.1.53/build/deno-wasm/env.js": "17da784c11b192c591dbf7df21ec6f65f63f45ca9a713e4ca100f3c886b4023f",
+
"https://deno.land/x/deno_dom@v0.1.53/build/deno-wasm/wbg.js": "b5b6de12bc010fa23438c8a8276067b9044a405da516d0bbe4ae61b7c6d61a22",
+
"https://deno.land/x/deno_dom@v0.1.53/deno-dom-wasm.ts": "4f8ede24992eb4b3426c3930a511d9f33e4db8fe81ca8d1c63ed12f0a76ac3a4",
+
"https://deno.land/x/deno_dom@v0.1.53/src/api.ts": "0ff5790f0a3eeecb4e00b7d8fbfa319b165962cf6d0182a65ba90f158d74f7d7",
+
"https://deno.land/x/deno_dom@v0.1.53/src/constructor-lock.ts": "0e7b297e8b9cf921a3b0d3a692ec5fb462c5afc47ec554292e20090b9e16b40a",
+
"https://deno.land/x/deno_dom@v0.1.53/src/deserialize.ts": "514953418b7ae558ed7361ad9be21013f46cba2f58bd7f4acc90cf1e89f9c8cf",
+
"https://deno.land/x/deno_dom@v0.1.53/src/dom/document-fragment.ts": "0b915d094830d43b330dc2fb8012b990f2c815773c6cdcd4a9fdff99fe47412e",
+
"https://deno.land/x/deno_dom@v0.1.53/src/dom/document.ts": "ad584ac4ce6dce03f0ff6ef4b7db86fd598f9c7824da1387f7f2acd7d6948e4a",
+
"https://deno.land/x/deno_dom@v0.1.53/src/dom/dom-parser.ts": "784ee0e766d4a01e14420f328053fd3a0016c6b40ee442edc3ae80f5d9777927",
+
"https://deno.land/x/deno_dom@v0.1.53/src/dom/element.ts": "7d330192fbfd406fb67ab7a3387576fe35fec129b7c52c2ea38615144fa5b12e",
+
"https://deno.land/x/deno_dom@v0.1.53/src/dom/elements/html-template-element.ts": "1707dfb4cbb145f3bcb94426d7cdedbaa336620d0afed30e99f50fe87ba24a98",
+
"https://deno.land/x/deno_dom@v0.1.53/src/dom/html-collection.ts": "dcf328e883877f7748d3e20fb6319e739f297a6e24f4b00ec5b1a2f390cfa3c6",
+
"https://deno.land/x/deno_dom@v0.1.53/src/dom/node-list.ts": "be9793475d82539da8b97a17b6b5538cc723538c10cc5820a23e5e4b2248845d",
+
"https://deno.land/x/deno_dom@v0.1.53/src/dom/node.ts": "53ada9e4b2ae21f10f5941ff257ed4585920ae392020544648f349c05d15d30c",
+
"https://deno.land/x/deno_dom@v0.1.53/src/dom/selectors/custom-api.ts": "852696bd58e534bc41bd3be9e2250b60b67cd95fd28ed16b1deff1d548531a71",
+
"https://deno.land/x/deno_dom@v0.1.53/src/dom/selectors/nwsapi-types.ts": "c43b36c36acc5d32caabaa54fda8c9d239b2b0fcbce9a28efb93c84aa1021698",
+
"https://deno.land/x/deno_dom@v0.1.53/src/dom/selectors/nwsapi.js": "985d7d8fc1eabbb88946b47a1c44c1b2d4aa79ff23c21424219f1528fa27a2ff",
+
"https://deno.land/x/deno_dom@v0.1.53/src/dom/selectors/selectors.ts": "83eab57be2290fb48e3130533448c93c6c61239f2a2f3b85f1917f80ca0fdc75",
+
"https://deno.land/x/deno_dom@v0.1.53/src/dom/selectors/sizzle-types.ts": "78149e2502409989ce861ed636b813b059e16bc267bb543e7c2b26ef43e4798b",
+
"https://deno.land/x/deno_dom@v0.1.53/src/dom/selectors/sizzle.js": "c3aed60c1045a106d8e546ac2f85cc82e65f62d9af2f8f515210b9212286682a",
+
"https://deno.land/x/deno_dom@v0.1.53/src/dom/string-cache.ts": "8e935804f7bac244cc70cec90a28c9f6d30fea14c61c2c4ea48fca274376d786",
+
"https://deno.land/x/deno_dom@v0.1.53/src/dom/utils-types.ts": "96db30e3e4a75b194201bb9fa30988215da7f91b380fca6a5143e51ece2a8436",
+
"https://deno.land/x/deno_dom@v0.1.53/src/dom/utils.ts": "bc429635e9204051ba1ecc1b212031b5ee7c6bcd95120c91bef696804aa67e74",
+
"https://deno.land/x/deno_dom@v0.1.53/src/parser.ts": "e06b2300d693e6ae7564e53dfa5c9a9e97fdb8c044c39c52c8b93b5d60860be3",
+
"https://deno.land/x/denoflate@1.2.1/mod.ts": "f5628e44b80b3d80ed525afa2ba0f12408e3849db817d47a883b801f9ce69dd6",
+
"https://deno.land/x/denoflate@1.2.1/pkg/denoflate.js": "b9f9ad9457d3f12f28b1fb35c555f57443427f74decb403113d67364e4f2caf4",
+
"https://deno.land/x/denoflate@1.2.1/pkg/denoflate_bg.wasm.js": "d581956245407a2115a3d7e8d85a9641c032940a8e810acbd59ca86afd34d44d",
+
"https://deno.land/x/esbuild@v0.25.2/mod.js": "fde73e72559dc2932556506581bc61462cff72d0394382334500d956851cd9f5",
+
"https://deno.land/x/esbuild@v0.25.5/mod.js": "57b9635116b05e6f214dea72d7f488c13808ee1b8055d96fa5da1c0dffe890cf",
+
"https://deno.land/x/lume_init@v0.3.1/deps.ts": "51061dea0c2f1cb2a326062c6cdd531dfaa6b8c9692e7f786cef2eef709e612a",
+
"https://deno.land/x/lume_init@v0.3.1/init.ts": "051fa551fca62c4844a986a18e1e15084b6332366fbe05613a1b1399d03f8bec",
+
"https://deno.land/x/lume_init@v0.3.1/mod.ts": "8f2731c650153c640e74e693c212fe30ae32d6d55ae636397f6644b3ccc45907",
+
"https://deno.land/x/lume_init@v0.3.1/steps/cms.ts": "3544d01bb1b0e904bad22289104810792ea75a266bc50f230aebbc12c7799bc5",
+
"https://deno.land/x/lume_init@v0.3.1/steps/git.ts": "58236a061310228d6442a2d60bb670d22794c50d9cbfb22da040ac5126c8d6b6",
+
"https://deno.land/x/lume_init@v0.3.1/steps/load.ts": "30047e55ad89f8f674192eec30f2fdf3ce7dc2e39250eb75e434308570df70db",
+
"https://deno.land/x/lume_init@v0.3.1/steps/plugins.ts": "d0c916800e97c1f4664e83c3dd2c780f8e491664bc6b050a60e3f563237f77ba",
+
"https://deno.land/x/lume_init@v0.3.1/steps/save.ts": "8ae5b20ac02d43a8ab608825ad2c1f093aa2cd0099fb80da1ecc866aeea58c6f",
+
"https://deno.land/x/lume_init@v0.3.1/steps/start.ts": "8f39e47368dc2e50b3a8f5dd9e5759885d0025cecad9a35dcd4b3dc3b53a760e",
+
"https://deno.land/x/lume_init@v0.3.1/steps/success.ts": "986a3cf2f1ac795f398cf04ea3fded39266fa169e87fae61b3377be1649f04be",
+
"https://deno.land/x/lume_init@v0.3.1/steps/themes.ts": "008d9c7c9371bd73c0f86d18a46f17aa70d775181934a2d4cea3bf2cb5e466a7",
+
"https://deno.land/x/lume_init@v0.3.1/steps/update.ts": "eb3df6b218ee744eff19a0effc41b9aea5fe91aca9230636b93c3bda8d03f83c",
+
"https://deno.land/x/lume_init@v0.3.1/steps/utils.ts": "d94b4b4bb718450ed4dcffc6031035cc068df8e01927ab5881333b10804b7ac7",
+
"https://deno.land/x/lume_init@v0.3.1/upgrade.ts": "2a5ca0b4ae0db1f6771e6ec4cede420b6c267e882a38e5647bc7218fda862483",
+
"https://deno.land/x/lume_init@v0.3.4/deps.ts": "51061dea0c2f1cb2a326062c6cdd531dfaa6b8c9692e7f786cef2eef709e612a",
+
"https://deno.land/x/lume_init@v0.3.4/init.ts": "82f2b2846651a1239c7a89c9a83e7c2eb95032413b9817d267066fcabae26c9c",
+
"https://deno.land/x/lume_init@v0.3.4/mod.ts": "ddcc4f23d248649a06642498ac4c1c1d129424f8a357eb338db441d02f4cb087",
+
"https://deno.land/x/lume_init@v0.3.4/steps/cms.ts": "82935cbcaa649d4bbb3e7b2d64b4a30ea7a4d36bee3faabfc19c5bc380dd7416",
+
"https://deno.land/x/lume_init@v0.3.4/steps/git.ts": "58236a061310228d6442a2d60bb670d22794c50d9cbfb22da040ac5126c8d6b6",
+
"https://deno.land/x/lume_init@v0.3.4/steps/load.ts": "82ce37a99d1fd182c355692c7ec91f72658e81172b11bca0829e4ae4da58cdfb",
+
"https://deno.land/x/lume_init@v0.3.4/steps/plugins.ts": "f672205df3370a4b6b1338120b7fab08ac183d3ab4f5830c67252f7894abe3bd",
+
"https://deno.land/x/lume_init@v0.3.4/steps/save.ts": "91b033d3a07b1cef365ce27f5dd3925c90a3923290e2120eaec1c1c79bbc34c2",
+
"https://deno.land/x/lume_init@v0.3.4/steps/start.ts": "229b6bf89a78858237f7c1233a9666fb63484caa001d0ff8f45e389b3b0938aa",
+
"https://deno.land/x/lume_init@v0.3.4/steps/success.ts": "986a3cf2f1ac795f398cf04ea3fded39266fa169e87fae61b3377be1649f04be",
+
"https://deno.land/x/lume_init@v0.3.4/steps/themes.ts": "755f3a05078db11facdae103713d2671f27f1b9324846349cab244d7581c5f19",
+
"https://deno.land/x/lume_init@v0.3.4/steps/update.ts": "1271c0d6895dfb2acf1495a36676e4f1c454e9ba090a85bf88835e0756f26d3a",
+
"https://deno.land/x/lume_init@v0.3.4/steps/utils.ts": "fa1eba2ae29193395465022119069b322f8164c3064bbdd9e0664cb385f00e7b",
+
"https://deno.land/x/lume_init@v0.3.4/upgrade.ts": "caddf7613b93b5a92473b450b06ee9477322f31d191b583d5716a6870929a20e",
+
"https://deno.land/x/lume_init@v0.4.1/deps.ts": "51061dea0c2f1cb2a326062c6cdd531dfaa6b8c9692e7f786cef2eef709e612a",
+
"https://deno.land/x/lume_init@v0.4.1/init.ts": "82f2b2846651a1239c7a89c9a83e7c2eb95032413b9817d267066fcabae26c9c",
+
"https://deno.land/x/lume_init@v0.4.1/mod.ts": "8f2731c650153c640e74e693c212fe30ae32d6d55ae636397f6644b3ccc45907",
+
"https://deno.land/x/lume_init@v0.4.1/steps/cms.ts": "82935cbcaa649d4bbb3e7b2d64b4a30ea7a4d36bee3faabfc19c5bc380dd7416",
+
"https://deno.land/x/lume_init@v0.4.1/steps/git.ts": "58236a061310228d6442a2d60bb670d22794c50d9cbfb22da040ac5126c8d6b6",
+
"https://deno.land/x/lume_init@v0.4.1/steps/load.ts": "82ce37a99d1fd182c355692c7ec91f72658e81172b11bca0829e4ae4da58cdfb",
+
"https://deno.land/x/lume_init@v0.4.1/steps/plugins.ts": "f672205df3370a4b6b1338120b7fab08ac183d3ab4f5830c67252f7894abe3bd",
+
"https://deno.land/x/lume_init@v0.4.1/steps/save.ts": "91b033d3a07b1cef365ce27f5dd3925c90a3923290e2120eaec1c1c79bbc34c2",
+
"https://deno.land/x/lume_init@v0.4.1/steps/start.ts": "8a4b2c5c0b792110f7047315c70d26eabccd0a3b2af12eec65b7f58c886ed9cc",
+
"https://deno.land/x/lume_init@v0.4.1/steps/success.ts": "986a3cf2f1ac795f398cf04ea3fded39266fa169e87fae61b3377be1649f04be",
+
"https://deno.land/x/lume_init@v0.4.1/steps/themes.ts": "755f3a05078db11facdae103713d2671f27f1b9324846349cab244d7581c5f19",
+
"https://deno.land/x/lume_init@v0.4.1/steps/update.ts": "1271c0d6895dfb2acf1495a36676e4f1c454e9ba090a85bf88835e0756f26d3a",
+
"https://deno.land/x/lume_init@v0.4.1/steps/utils.ts": "fa1eba2ae29193395465022119069b322f8164c3064bbdd9e0664cb385f00e7b",
+
"https://deno.land/x/lume_init@v0.4.1/upgrade.ts": "2a5ca0b4ae0db1f6771e6ec4cede420b6c267e882a38e5647bc7218fda862483",
"https://deno.land/x/lume_markdown_plugins@v0.8.0/toc.ts": "1fe2769056a022303b3871fc4b7be26b7738d44a31e5fd08debd527e9dc49ecc",
"https://deno.land/x/lume_markdown_plugins@v0.8.0/toc/anchors.ts": "8a4a1c6b2c63156622695ceba57fa7100a6e5f109c9a383a1dcaf755233c8184",
"https://deno.land/x/lume_markdown_plugins@v0.8.0/toc/mod.ts": "8c7aa6e1dcfabda4264503495a3875388108cd9a5a94b54853b45a8e8cba9f78",
"https://deno.land/x/lume_markdown_plugins@v0.8.0/utils.ts": "6e6c3c394709eff39080562732c2dafe404f225253aaded937133ea694c4b735",
-
"https://deno.land/x/lume_markdown_plugins@v0.8.0/wikilinks.ts": "ec5421e67ef7ed6721b9e2e3dc43fb2117ce7d718cdf0a5be0ff87e53372ae1f",
-
"https://deno.land/x/lume_markdown_plugins@v0.8.0/wikilinks/mod.ts": "cdb967c026e9ade6fac17ea592351037aab35e6f06c47286d5f941adfea5425e",
"https://deno.land/x/lz4@v0.1.2/mod.ts": "4decfc1a3569d03fd1813bd39128b71c8f082850fe98ecfdde20025772916582",
"https://deno.land/x/lz4@v0.1.2/wasm.js": "b9c65605327ba273f0c76a6dc596ec534d4cda0f0225d7a94ebc606782319e46",
-
"https://deno.land/x/minify_html@0.15.0/mod.js": "0974387d0bee4646a9cb959c641c170442b0d2a6bddcb9857758636afd8676d5",
-
"https://deno.land/x/vento@v1.12.15/deps.ts": "155958dfada8d8cb3c8a001413c759928647b23e0e9db25195614549b58d085f",
-
"https://deno.land/x/vento@v1.12.15/mod.ts": "cfaac455f70af8e59aa0c03ef39b641635094225255f0fbaa76f4771e683f2ca",
-
"https://deno.land/x/vento@v1.12.15/plugins/auto_trim.ts": "503137c3f5cec20e0c491d7963b0dc310de1a6a2e74d41913bbf6475eb1c807e",
-
"https://deno.land/x/vento@v1.12.15/plugins/echo.ts": "59adb9137e736029cf18e3d95e010803c8728046d0d040702c16c4930c7b6160",
-
"https://deno.land/x/vento@v1.12.15/plugins/escape.ts": "22754819f9a8437ecb4de0df1d3513c5b92fd6be74274d344d9750811030b181",
-
"https://deno.land/x/vento@v1.12.15/plugins/export.ts": "4cda1bd2d7e28e6d23382a64a6d72e7340bef07fcbc32f604a4705c148b914f1",
-
"https://deno.land/x/vento@v1.12.15/plugins/for.ts": "7eabf1f5f4b52aa3cccafcdfcbbd808628e386b90e61527adbcf1f23e4ab1777",
-
"https://deno.land/x/vento@v1.12.15/plugins/function.ts": "24c33bf586844ff8940daac2535dcae7f5ce39b443e795ebf16a2c23694850bf",
-
"https://deno.land/x/vento@v1.12.15/plugins/if.ts": "f992b1f599be11eafaa15bf607eee467ffd4276dec145d7b73cd24c0c6920631",
-
"https://deno.land/x/vento@v1.12.15/plugins/import.ts": "c36710067e1ea4074097b139c95d001fc1a2e759e05f1346da068405657924b4",
-
"https://deno.land/x/vento@v1.12.15/plugins/include.ts": "d93d330d3df25a5cfcc34e85c3e6685214280792f3242064e50c94748acfb1f4",
-
"https://deno.land/x/vento@v1.12.15/plugins/js.ts": "68d78ef2fc7a981d1f124f2f91830135ad46fcbd4dde7d5464cb5103c9293a5e",
-
"https://deno.land/x/vento@v1.12.15/plugins/layout.ts": "da84978f0639e95e472edddc2f9837757c28113a04dbe67399087c3a4d14780e",
-
"https://deno.land/x/vento@v1.12.15/plugins/set.ts": "0938601748ab7cc5ca3bb80c97e041183ef90fd3d9819dc7546ce9079b717a6d",
-
"https://deno.land/x/vento@v1.12.15/plugins/trim.ts": "93bce5e32aac9fd1dc4e7acf0278438d710cd1f61f80ce3af719a06cca7f2e3d",
-
"https://deno.land/x/vento@v1.12.15/plugins/unescape.ts": "dd2d9dbd116b68004f11ab17c9daaf9378ee14300c2d0ec8f422df09d41462ba",
-
"https://deno.land/x/vento@v1.12.15/src/environment.ts": "34ca5c981d0a54a678d421cd80a14aeb7974a8126944782048cb26348469c3d0",
-
"https://deno.land/x/vento@v1.12.15/src/errors.ts": "18b9b674715c9c23ea5acd410381fe89df438e224c41a83d26484b1dd4520f40",
-
"https://deno.land/x/vento@v1.12.15/src/js.ts": "c4ac5e2b2cd2995523d3167c5708c424686fd30d2d3951ff965a76dbdfb74e37",
-
"https://deno.land/x/vento@v1.12.15/src/loader.ts": "c05add67f582e937ee611852075ce2cc038b5e80e3e609eef96fa5ed74a5086c",
-
"https://deno.land/x/vento@v1.12.15/src/tokenizer.ts": "127ddad02054f63b8b646e4dfbf555e1e34e9b8dcbd58d86b3729a4de95abd27",
-
"https://deno.land/x/vento@v1.12.15/src/transformer.ts": "a3f4bce5d500267bdbc1f945765bdd5430ec3dbfea4fe963a9289159dde230bd",
+
"https://deno.land/x/markdown_it_obsidian_callouts_lite@0.4.1/src/@types/index.ts": "46cd40eb4d19172a67dea39849dd3c89642345a70ef8fff4501343713fb0cad9",
+
"https://deno.land/x/markdown_it_obsidian_callouts_lite@0.4.1/src/index.ts": "f388a00e36a020d3e8ebad1fe60911e6fa8b001db8747a60efd11571377a22fa",
+
"https://deno.land/x/markdown_it_obsidian_callouts_lite@0.4.1/src/inspect.ts": "ff2eafd39916e86fbdf6c094e6cb0bf45078084d0cfeae60ce7ba869610ec857",
+
"https://deno.land/x/ssx@v0.1.10/css.ts": "39972fa9e375465b82e4fbf735dcc727acc89fdd836f93a395cfb3ccab54e7f0",
+
"https://deno.land/x/ssx@v0.1.10/html.ts": "5ad7bfd7a6a5b676b2686d406c105bbb02bea537183d95e0c04e76853a9ee155",
+
"https://deno.land/x/ssx@v0.1.10/jsx-runtime.ts": "f3d37c172698f0b0d7510c2023119264057cbc64a5602d4ca9091e80199a2abe",
+
"https://deno.land/x/ssx@v0.1.8/css.ts": "6756e74b96e3694631745ce12f80f4eb89c88940f44fbd97e4b676811bbc225c",
+
"https://deno.land/x/ssx@v0.1.8/html.ts": "26185b76f311467f1e2f93131ebb6f48b709cf6e9eefd254d95260ccaa0e1e6b",
+
"https://deno.land/x/ssx@v0.1.8/jsx-runtime.ts": "79b5c6b482b43b84bc07ef5fe0d010572de5cffa94a6eecf9aaff6f51d102df9",
+
"https://deno.land/x/ssx@v0.1.9/css.ts": "39972fa9e375465b82e4fbf735dcc727acc89fdd836f93a395cfb3ccab54e7f0",
+
"https://deno.land/x/ssx@v0.1.9/html.ts": "5ad7bfd7a6a5b676b2686d406c105bbb02bea537183d95e0c04e76853a9ee155",
+
"https://deno.land/x/ssx@v0.1.9/jsx-runtime.ts": "d0df99b2a626dbe06d0fc5d968746bb070672365f15e7fdd3b84285843af3148",
+
"https://deno.land/x/vento@v1.12.16/bare.ts": "3aa85855ad52cb60df03644a63927cb6a04c8edb5e653175ebf0332094a3cf7d",
+
"https://deno.land/x/vento@v1.12.16/deps.ts": "155958dfada8d8cb3c8a001413c759928647b23e0e9db25195614549b58d085f",
+
"https://deno.land/x/vento@v1.12.16/mod.ts": "53262793b5e0176acdec84aa9c34ed3ecb0c45cc9d396bf34a06ed4ad3d9930a",
+
"https://deno.land/x/vento@v1.12.16/plugins/auto_trim.ts": "503137c3f5cec20e0c491d7963b0dc310de1a6a2e74d41913bbf6475eb1c807e",
+
"https://deno.land/x/vento@v1.12.16/plugins/echo.ts": "59adb9137e736029cf18e3d95e010803c8728046d0d040702c16c4930c7b6160",
+
"https://deno.land/x/vento@v1.12.16/plugins/escape.ts": "22754819f9a8437ecb4de0df1d3513c5b92fd6be74274d344d9750811030b181",
+
"https://deno.land/x/vento@v1.12.16/plugins/export.ts": "4cda1bd2d7e28e6d23382a64a6d72e7340bef07fcbc32f604a4705c148b914f1",
+
"https://deno.land/x/vento@v1.12.16/plugins/for.ts": "7eabf1f5f4b52aa3cccafcdfcbbd808628e386b90e61527adbcf1f23e4ab1777",
+
"https://deno.land/x/vento@v1.12.16/plugins/function.ts": "24c33bf586844ff8940daac2535dcae7f5ce39b443e795ebf16a2c23694850bf",
+
"https://deno.land/x/vento@v1.12.16/plugins/if.ts": "f992b1f599be11eafaa15bf607eee467ffd4276dec145d7b73cd24c0c6920631",
+
"https://deno.land/x/vento@v1.12.16/plugins/import.ts": "c36710067e1ea4074097b139c95d001fc1a2e759e05f1346da068405657924b4",
+
"https://deno.land/x/vento@v1.12.16/plugins/include.ts": "d93d330d3df25a5cfcc34e85c3e6685214280792f3242064e50c94748acfb1f4",
+
"https://deno.land/x/vento@v1.12.16/plugins/js.ts": "68d78ef2fc7a981d1f124f2f91830135ad46fcbd4dde7d5464cb5103c9293a5e",
+
"https://deno.land/x/vento@v1.12.16/plugins/layout.ts": "da84978f0639e95e472edddc2f9837757c28113a04dbe67399087c3a4d14780e",
+
"https://deno.land/x/vento@v1.12.16/plugins/set.ts": "0938601748ab7cc5ca3bb80c97e041183ef90fd3d9819dc7546ce9079b717a6d",
+
"https://deno.land/x/vento@v1.12.16/plugins/trim.ts": "93bce5e32aac9fd1dc4e7acf0278438d710cd1f61f80ce3af719a06cca7f2e3d",
+
"https://deno.land/x/vento@v1.12.16/plugins/unescape.ts": "dd2d9dbd116b68004f11ab17c9daaf9378ee14300c2d0ec8f422df09d41462ba",
+
"https://deno.land/x/vento@v1.12.16/src/environment.ts": "34ca5c981d0a54a678d421cd80a14aeb7974a8126944782048cb26348469c3d0",
+
"https://deno.land/x/vento@v1.12.16/src/errors.ts": "18b9b674715c9c23ea5acd410381fe89df438e224c41a83d26484b1dd4520f40",
+
"https://deno.land/x/vento@v1.12.16/src/js.ts": "c4ac5e2b2cd2995523d3167c5708c424686fd30d2d3951ff965a76dbdfb74e37",
+
"https://deno.land/x/vento@v1.12.16/src/loader.ts": "c05add67f582e937ee611852075ce2cc038b5e80e3e609eef96fa5ed74a5086c",
+
"https://deno.land/x/vento@v1.12.16/src/tokenizer.ts": "127ddad02054f63b8b646e4dfbf555e1e34e9b8dcbd58d86b3729a4de95abd27",
+
"https://deno.land/x/vento@v1.12.16/src/transformer.ts": "9ff70c554b3889151745b5f7117bc5c02b889e6e16ca53e5b8c1fa6b767fb451",
+
"https://deno.land/x/vento@v1.14.0/bare.ts": "b6cdcc245d4626832ab3a7fb4f2885541e997d2806334d8048d39401fa63d50e",
+
"https://deno.land/x/vento@v1.14.0/deps.ts": "335313038bb45962d6b3ee54e2d2da217945a1f2f6ffc45b2fa9cdcf78f38f42",
+
"https://deno.land/x/vento@v1.14.0/mod.ts": "53262793b5e0176acdec84aa9c34ed3ecb0c45cc9d396bf34a06ed4ad3d9930a",
+
"https://deno.land/x/vento@v1.14.0/plugins/auto_trim.ts": "7deee73efbc25d6a75517074451287d9d9be97c01104d9b79eaac07b19e43c86",
+
"https://deno.land/x/vento@v1.14.0/plugins/echo.ts": "59adb9137e736029cf18e3d95e010803c8728046d0d040702c16c4930c7b6160",
+
"https://deno.land/x/vento@v1.14.0/plugins/escape.ts": "22754819f9a8437ecb4de0df1d3513c5b92fd6be74274d344d9750811030b181",
+
"https://deno.land/x/vento@v1.14.0/plugins/export.ts": "4cda1bd2d7e28e6d23382a64a6d72e7340bef07fcbc32f604a4705c148b914f1",
+
"https://deno.land/x/vento@v1.14.0/plugins/for.ts": "9863b425ed79b53119a868b044f1510a396a7d41a1e571679f06394d2a7fa9f6",
+
"https://deno.land/x/vento@v1.14.0/plugins/function.ts": "622c0bb80399f80846e036e6e53fe731a6bc589a7dc208f2b48ea5fa339eae53",
+
"https://deno.land/x/vento@v1.14.0/plugins/if.ts": "5b261b617c69a287a2dec26e2c0fb7b99c83a1923b13dfca94b54f3295ca7764",
+
"https://deno.land/x/vento@v1.14.0/plugins/import.ts": "c36710067e1ea4074097b139c95d001fc1a2e759e05f1346da068405657924b4",
+
"https://deno.land/x/vento@v1.14.0/plugins/include.ts": "d93d330d3df25a5cfcc34e85c3e6685214280792f3242064e50c94748acfb1f4",
+
"https://deno.land/x/vento@v1.14.0/plugins/js.ts": "68d78ef2fc7a981d1f124f2f91830135ad46fcbd4dde7d5464cb5103c9293a5e",
+
"https://deno.land/x/vento@v1.14.0/plugins/layout.ts": "da84978f0639e95e472edddc2f9837757c28113a04dbe67399087c3a4d14780e",
+
"https://deno.land/x/vento@v1.14.0/plugins/set.ts": "4db19b26a841a8efd57305daf3a5d795c7eb9db1b922a4a5a2b5fb3dee70088b",
+
"https://deno.land/x/vento@v1.14.0/plugins/trim.ts": "93bce5e32aac9fd1dc4e7acf0278438d710cd1f61f80ce3af719a06cca7f2e3d",
+
"https://deno.land/x/vento@v1.14.0/plugins/unescape.ts": "dd2d9dbd116b68004f11ab17c9daaf9378ee14300c2d0ec8f422df09d41462ba",
+
"https://deno.land/x/vento@v1.14.0/src/environment.ts": "92bb2a329f660ec749f53c94bf28a087411d6a4c94abfc9fdeb3e6076ddec97c",
+
"https://deno.land/x/vento@v1.14.0/src/errors.ts": "18b9b674715c9c23ea5acd410381fe89df438e224c41a83d26484b1dd4520f40",
+
"https://deno.land/x/vento@v1.14.0/src/js.ts": "071e188dbc4bf0ce0fe44132b7161c83345a353820ff000494920cce8e2fca72",
+
"https://deno.land/x/vento@v1.14.0/src/loader.ts": "a7089dea54db2b4d437e74a2d0a45341bc21763ca13f6adb60a38b524cc86255",
+
"https://deno.land/x/vento@v1.14.0/src/tokenizer.ts": "127ddad02054f63b8b646e4dfbf555e1e34e9b8dcbd58d86b3729a4de95abd27",
+
"https://deno.land/x/vento@v1.14.0/src/transformer.ts": "9ff70c554b3889151745b5f7117bc5c02b889e6e16ca53e5b8c1fa6b767fb451",
"https://deno.land/x/xml@6.0.4/mod.ts": "b59e5c0dd9fe7ed597c21c39aacf089aa82fe5c5eaad3f411a43a9c104359f4e",
"https://deno.land/x/xml@6.0.4/parse.ts": "1302c75d8fd40df39310bb8ae6716302f0b77c61c607437dc023d3d792a0df54",
"https://deno.land/x/xml@6.0.4/stringify.ts": "0e2f79798d413c5386bf5de90bbe9901f99951ceae484050a8ef89e2b4da9dd0",
-
"https://deno.land/x/xml@6.0.4/wasm_xml_parser/wasm_xml_parser.js": "0804d738e6d94284b043546260b547bb4731fbfd3b3851139740e863dabf25bd"
+
"https://deno.land/x/xml@6.0.4/wasm_xml_parser/wasm_xml_parser.js": "0804d738e6d94284b043546260b547bb4731fbfd3b3851139740e863dabf25bd",
+
"https://deno.land/x/xml@7.0.0/mod.ts": "ca2bb5a9a90d236a2b6242c8643717e0c53f645092d2407792dad728e1367f9a",
+
"https://deno.land/x/xml@7.0.0/parse.ts": "8ae0d8339f589c29ab203dd7887e06325e2064efedfe9c61e2cd6d907443b664",
+
"https://deno.land/x/xml@7.0.0/stringify.ts": "f604d3d88b8bdaff11dbc9d57a6e98fd9b353e3bfbafcaa3f421e6b470ea0e02",
+
"https://deno.land/x/xml@7.0.0/wasm_xml_parser/wasm_xml_parser.js": "960229e82be5dfc58d2d4fe47d800034f892f8f13da4492e0a95fee64050fb34"
},
"workspace": {
"dependencies": [
-
"npm:@catppuccin/tailwindcss@~0.1.6",
-
"npm:@img/sharp-wasm32@0.33.5",
-
"npm:@nolebase/markdown-it-bi-directional-links@^2.14.0",
-
"npm:html-validate@9.4.0",
-
"npm:markdown-it-obsidian-callouts@~0.3.1",
-
"npm:sharp@0.33.5"
+
"npm:@nolebase/markdown-it-bi-directional-links@^2.18.0",
+
"npm:accessibility-checker@^4.0.6",
+
"npm:html-validate@9.7.1",
+
"npm:sharp@0.34.3"
+33
deploy.sh
···
+
#!/usr/bin/env nix
+
#! nix develop --impure --command bash
+
+
# Build site
+
deno task prod
+
+
COMMIT_ID=$(git rev-parse --short HEAD)
+
+
echo "Cleaning up /tmp/pages..."
+
rm -rf /tmp/pages
+
mkdir -p /tmp/pages
+
chmod 777 /tmp/pages
+
+
echo "Copying built site into /tmp/pages..."
+
cp -rT ./_site /tmp/pages
+
rm -rf /tmp/pages/.git
+
+
echo "Initializing git repo..."
+
cd /tmp/pages
+
git init -b pages /tmp/pages
+
git config user.name "[BOT] PyroNet Actions"
+
git config user.email "actions-noreply@pyrox.dev"
+
+
echo "Making commit..."
+
git add --all
+
git commit -m "Deploying $COMMIT_ID to Tangled"
+
+
echo "Pushing to Tangled..."
+
git remote add origin " git@knot.pyrox.dev:pyrox.dev/blog"
+
git push --force origin "pages:pages"
+
+
echo "Cleaning up tmpdir..."
+
rm -rf /tmp/pages
+3 -3
flake.lock
···
"nodes": {
"nixpkgs": {
"locked": {
-
"lastModified": 1739451785,
-
"narHash": "sha256-3ebRdThRic9bHMuNi2IAA/ek9b32bsy8F5R4SvGTIog=",
+
"lastModified": 1753151930,
+
"narHash": "sha256-XSQy6wRKHhRe//iVY5lS/ZpI/Jn6crWI8fQzl647wCg=",
"owner": "nixos",
"repo": "nixpkgs",
-
"rev": "1128e89fd5e11bb25aedbfc287733c6502202ea9",
+
"rev": "83e677f31c84212343f4cc553bab85c2efcad60a",
"type": "github"
},
"original": {
+23 -3
flake.nix
···
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";
};
-
outputs = { nixpkgs, ... }: let
+
outputs = { self, nixpkgs, ... }: let
pkgs = import nixpkgs {
allowUnfree = true;
};
+
fhs = pkgs.buildFHSEnv {
+
name = "deno";
+
runScript = "deno";
+
targetPkgs = pkgs: [
+
pkgs.deno
+
pkgs.nss
+
];
+
};
in {
-
devShells.x86_64-linux.default = pkgs.mkShellNoCC {
+
packages.x86_64-linux = {
+
deno-fhs = fhs;
+
default = self.packages.x86_64-linux.deno-fhs;
+
};
+
apps.x86_64-linux = {
+
deno-fhs = {
+
type = "app";
+
program = pkgs.lib.getExe self.packages.x86_64-linux.default;
+
};
+
default = self.apps.x86_64-linux.deno-fhs;
+
};
+
+
devShells.x86_64-linux.default = pkgs.mkShell {
buildInputs = [
-
pkgs.deno
+
fhs
pkgs.just
pkgs.caddy
(pkgs.python3.withPackages (
+10 -3
justfile
···
alias b := build
alias c := cms
alias f := fonts
+
alias d := deploy
serve:
-
steam-run deno task --unstable-ffi serve
+
deno task --unstable-ffi serve
caddy:
caddy run
build:
-
steam-run deno task --unstable-ffi lume
+
deno task --unstable-ffi lume
cms:
-
steam-run deno task --unstable-ffi cms
+
deno task --unstable-ffi cms
+
+
prod:
+
deno task --unstable-ffi prod
fonts set="bootstrap":
python scripts/{{set}}-icons/gen-css.py
···
add-class set="bootstrap":
python scripts/{{set}}-icons/add-class.py
just fonts {{set}}
+
+
deploy: prod
+
bash deploy.sh
+82
plugins/checkAccessibility.ts
···
+
import * as aChecker from "accessibility-checker";
+
import "lume/types.ts";
+
import { rm } from "node:fs";
+
+
// HTML Accessibility Plugin, by dish
+
// version 1.0.0
+
// Based on IBM's accessibility-checker library
+
+
export default function () {
+
return (site: Lume.Site) => {
+
site.process([".html"], checkPages);
+
+
async function checkPages(pages: Lume.Page[]) {
+
const barReport = site.debugBar?.collection("Accessibility Checker");
+
if (barReport) {
+
barReport.icon = "wheelchair-motion";
+
barReport.contexts = {
+
"violation": {
+
background: "error",
+
},
+
"potentialviolation": {
+
background: "error",
+
},
+
"recommendation": {
+
background: "info",
+
},
+
"potentialrecommendation": {
+
background: "info",
+
},
+
};
+
}
+
console.info("[checkAccessibility] Starting...");
+
rm(`${Deno.cwd()}/accessibility-results`, { recursive: true, force: true }, (err) => {
+
if (err) throw err;
+
});
+
for (const page of pages) {
+
const label = page.outputPath.substring(0, page.outputPath.length - 5);
+
try {
+
let res = await aChecker.getCompliance(
+
page.content,
+
label,
+
);
+
if (aChecker.assertCompliance(res.report) === 0) {
+
(() => {});
+
} else {
+
barReport?.items.push({
+
title: page.data.url,
+
details: `${res.report.results.length} errors`,
+
items: Array.from(res.report.results).map((rep) => ({
+
title: `${rep.ruleId} - ${rep.reasonId}`,
+
context: rep.level,
+
text: rep.message,
+
actions: [
+
{
+
text: "Highlight",
+
icon: "question",
+
onclick: `highlightElement("${rep.path.dom}", "${page.outputPath}")`,
+
},
+
{
+
text: "Help",
+
icon: "question",
+
href: rep.help,
+
target: "_blank",
+
},
+
],
+
})),
+
});
+
}
+
} catch (err) {
+
console.error(err);
+
}
+
}
+
await aChecker.close();
+
}
+
};
+
}
+
+
function lookupRule(rules: Object, ruleId: string, reasonId: string) {
+
const rule = rules[ruleId];
+
const reason: string = rule[reasonId];
+
return reason;
+
}
+323
plugins/footnotes.ts
···
+
// deno-lint-ignore-file no-explicit-any
+
+
export interface Options {
+
/** Key to save the title in the page data */
+
key: string;
+
+
/** The prefix to assign to all ids */
+
idPrefix: string;
+
+
/** The prefix to assign to all references ids */
+
referenceIdPrefix: string;
+
+
/** HTML attributes to the <sup> element used for the reference */
+
referenceAttrs: Record<string, string>;
+
}
+
+
export const defaults: Options = {
+
key: "footnotes",
+
idPrefix: "fn-",
+
referenceIdPrefix: "fnref-",
+
referenceAttrs: {
+
class: "fn-ref",
+
},
+
};
+
+
export default function footNotes(md: any, userOptions: Partial<Options> = {}) {
+
const options = Object.assign({}, defaults, userOptions) as Options;
+
const parseLinkLabel = md.helpers.parseLinkLabel;
+
const isSpace = md.utils.isSpace;
+
+
md.renderer.rules.footnote_reference = function (tokens: any[], idx: number) {
+
const { id, label } = tokens[idx].meta;
+
const attrs = Object.entries(options.referenceAttrs)
+
.map(([key, value]) => `${key}="${value}"`);
+
+
attrs.push(`href="#${options.idPrefix}${id}"`);
+
attrs.push(`id="${options.referenceIdPrefix}${id}"`);
+
+
return `<sup><a ${attrs.join(" ")}>${id}</a></sup>`;
+
};
+
+
// Process footnote block definition
+
function footnote_block(
+
state: any,
+
startLine: number,
+
endLine: number,
+
silent: boolean,
+
) {
+
const start = state.bMarks[startLine] + state.tShift[startLine];
+
const max = state.eMarks[startLine];
+
+
/* Line should be at least 5 characters: [^x]: */
+
if (
+
start + 4 > max ||
+
state.src.charCodeAt(start) !== 0x5B || /* [ */
+
state.src.charCodeAt(start + 1) !== 0x5E /* ^ */
+
) {
+
return false;
+
}
+
+
let pos;
+
+
for (pos = start + 2; pos < max; pos++) {
+
if (state.src.charCodeAt(pos) === 0x20) {
+
return false;
+
}
+
if (state.src.charCodeAt(pos) === 0x5D /* ] */) {
+
break;
+
}
+
}
+
+
// no empty footnote labels
+
if (pos === start + 2) {
+
return false;
+
}
+
+
if (pos + 1 >= max || state.src.charCodeAt(++pos) !== 0x3A /* : */) {
+
return false;
+
}
+
+
if (silent) {
+
return true;
+
}
+
+
pos++;
+
+
const footnotes = getFootnotes(state);
+
const label = state.src.slice(start + 2, pos - 2);
+
const id = footnotes.size + 1;
+
+
const openToken = new state.Token("footnote_reference_open", "", 1);
+
openToken.meta = { id };
+
openToken.level = state.level++;
+
state.tokens.push(openToken);
+
+
footnotes.set(id, { id, label });
+
+
const oldBMark = state.bMarks[startLine];
+
const oldTShift = state.tShift[startLine];
+
const oldSCount = state.sCount[startLine];
+
const oldParentType = state.parentType;
+
+
const posAfterColon = pos;
+
const initial = state.sCount[startLine] + pos -
+
(state.bMarks[startLine] + state.tShift[startLine]);
+
let offset = initial;
+
+
while (pos < max) {
+
const ch = state.src.charCodeAt(pos);
+
+
if (!isSpace(ch)) {
+
break;
+
}
+
if (ch === 0x09) {
+
offset += 4 - offset % 4;
+
} else {
+
offset++;
+
}
+
+
pos++;
+
}
+
+
state.tShift[startLine] = pos - posAfterColon;
+
state.sCount[startLine] = offset - initial;
+
state.bMarks[startLine] = posAfterColon;
+
state.blkIndent += 4;
+
state.parentType = "footnote";
+
+
if (state.sCount[startLine] < state.blkIndent) {
+
state.sCount[startLine] += state.blkIndent;
+
}
+
+
state.md.block.tokenize(state, startLine, endLine, true);
+
+
state.parentType = oldParentType;
+
state.blkIndent -= 4;
+
state.tShift[startLine] = oldTShift;
+
state.sCount[startLine] = oldSCount;
+
state.bMarks[startLine] = oldBMark;
+
+
const closeToken = new state.Token("footnote_reference_close", "", -1);
+
closeToken.level = --state.level;
+
state.tokens.push(closeToken);
+
+
return true;
+
}
+
+
// Process inline footnotes (^[...])
+
function footnote_inline(state: any, silent: boolean) {
+
const max = state.posMax;
+
const start = state.pos;
+
+
/* Line should be at least 2 characters: ^[ */
+
if (
+
start + 2 >= max ||
+
state.src.charCodeAt(start) !== 0x5E ||
+
state.src.charCodeAt(start + 1) !== 0x5B
+
) {
+
return false;
+
}
+
+
const labelStart = start + 2;
+
const labelEnd = parseLinkLabel(state, start + 1);
+
+
// parser failed to find ']', so it's not a valid note
+
if (labelEnd < 0) {
+
return false;
+
}
+
+
// We found the end of the link, and know for a fact it's a valid link;
+
// so all that's left to do is to call tokenizer.
+
//
+
if (!silent) {
+
const footnotes = getFootnotes(state);
+
const id = footnotes.size + 1;
+
const label = id.toString();
+
+
const token = state.push("footnote_reference", "", 0);
+
token.meta = { id, label };
+
+
footnotes.set(id, {
+
id,
+
label,
+
content: `${state.src.slice(labelStart, labelEnd)}`,
+
});
+
}
+
+
state.pos = labelEnd + 1;
+
state.posMax = max;
+
return true;
+
}
+
+
// Process footnote references ([^...])
+
function footnote_reference(state: any, silent: boolean) {
+
const max = state.posMax;
+
const start = state.pos;
+
+
/* Line should be at least 4 characters: [^x] */
+
if (
+
start + 3 > max ||
+
state.src.charCodeAt(start) !== 0x5B /* [ */ ||
+
state.src.charCodeAt(start + 1) !== 0x5E /* ^ */
+
) {
+
return false;
+
}
+
+
const labelStart = start + 2;
+
let labelEnd = 0;
+
+
for (labelEnd = labelStart; labelEnd < max; labelEnd++) {
+
const char = state.src.charCodeAt(labelEnd);
+
+
if (char === 0x20 || char === 0x0A) {
+
return false;
+
}
+
+
if (char === 0x5D /* ] */) {
+
break;
+
}
+
}
+
+
if (labelStart === labelEnd || labelEnd >= max) {
+
return false;
+
}
+
+
if (!silent) {
+
const label = state.src.slice(labelStart, labelEnd);
+
const footnote = searchFootnote(state, label);
+
const token = state.push("footnote_reference", "", 0);
+
token.meta = { ...footnote };
+
}
+
+
state.pos = ++labelEnd;
+
state.posMax = max;
+
return true;
+
}
+
+
// Glue footnote tokens to end of token stream
+
function footnote_tail(state: any) {
+
const footnotes = getFootnotes(state);
+
+
if (!footnotes.size) {
+
return;
+
}
+
+
let currentFootnote: Footnote | undefined;
+
let currentTokens: any[] | undefined;
+
+
state.tokens = state.tokens.filter(function (tok: any) {
+
if (tok.type === "footnote_reference_open") {
+
currentFootnote = footnotes.get(tok.meta.id)!;
+
currentTokens = [];
+
return false;
+
}
+
+
if (tok.type === "footnote_reference_close") {
+
currentFootnote!.content = md.renderer.render(
+
currentTokens,
+
state.md.options,
+
state.env,
+
);
+
currentTokens = undefined;
+
return false;
+
}
+
+
if (currentTokens) {
+
currentTokens.push(tok);
+
}
+
+
return !currentTokens;
+
});
+
}
+
+
md.block.ruler.before("reference", "footnote_block", footnote_block, {
+
alt: ["paragraph", "reference"],
+
});
+
md.inline.ruler.after("image", "footnote_inline", footnote_inline);
+
md.inline.ruler.after("footnote_inline", "footnote_reference", footnote_reference);
+
md.core.ruler.after("inline", "footnote_tail", footnote_tail);
+
+
md.core.ruler.push("saveFootnotes", function (state: any) {
+
const data = state.env.data?.page?.data;
+
+
if (!data || data[options.key]) {
+
return;
+
}
+
+
const footnotes = getFootnotes(state);
+
data[options.key] = Array.from(footnotes.values()).map((footnote) => ({
+
id: `${options.idPrefix}${footnote.id}`,
+
refId: `${options.referenceIdPrefix}${footnote.id}`,
+
label: footnote.label,
+
content: footnote.content,
+
rawId: `${footnote.id}`,
+
}));
+
});
+
}
+
+
interface Footnote {
+
id: number;
+
label?: string;
+
content?: string;
+
tokens?: any[];
+
rawId?: string;
+
}
+
+
function getFootnotes(state: any): Map<number, Footnote> {
+
if (!state.env.fn) {
+
state.env.fn = new Map<number, Footnote>();
+
}
+
+
return state.env.fn;
+
}
+
+
function searchFootnote(state: any, label: string) {
+
const map = getFootnotes(state);
+
+
for (const value of map.values()) {
+
if (value.label === label) {
+
return value;
+
}
+
}
+
}
+75
plugins/openInEditor.ts
···
+
// deno-lint-ignore-file no-explicit-any
+
// ^- NOTE: No idea for the typing of markdown-it plugin context, so we disable this check
+
// Taken from https://github.com/pixeldesu/pixelde.su/blob/main/plugins/markdown-it/vscode.ts and edited for my use
+
+
import "lume/types.ts";
+
+
// Cache object for frontmatter line counts so we only reload files once
+
const FRONTMATTER_LINE_CACHE: Record<string, number> = {};
+
+
function markdownItOpenInEditor(md: any) {
+
// Override the default paragraph renderer
+
const defaultRender = md.renderer.rules.paragraph_open ||
+
function (
+
tokens: Record<number, any>,
+
idx: number,
+
options: any,
+
_env: any,
+
self: any,
+
) {
+
return self.renderToken(tokens, idx, options);
+
};
+
+
md.renderer.rules.paragraph_open = function (
+
tokens: Record<number, any>,
+
idx: number,
+
options: any,
+
env: any,
+
self: any,
+
) {
+
const token = tokens[idx];
+
const filePath = env.data.page.src.entry.src || "";
+
+
// FIXME: This is extremely ugly, having to reload the file to get the full context to
+
// calculate the line number offset for the frontmatter. For some reason this is
+
// pretty fast however, so I'll let it slide for now.
+
if (!FRONTMATTER_LINE_CACHE[filePath]) {
+
FRONTMATTER_LINE_CACHE[filePath] = countFrontMatterLines(
+
Deno.readTextFileSync(filePath),
+
);
+
}
+
const lineNumber = FRONTMATTER_LINE_CACHE[filePath] +
+
(token.map ? token.map[0] : 1);
+
+
// Create a wrapper element with context to open the file in the editor
+
const clickableElementStart = `<div data-editor-file="${filePath}:${lineNumber}">`;
+
+
return clickableElementStart +
+
defaultRender(tokens, idx, options, env, self);
+
};
+
+
md.renderer.rules.paragraph_close = function (
+
tokens: Record<number, any>,
+
idx: number,
+
options: any,
+
_env: any,
+
self: any,
+
) {
+
return self.renderToken(tokens, idx, options) + "</div>";
+
};
+
}
+
+
function countFrontMatterLines(content: string) {
+
const frontMatterPattern = /^---\s*\n([\s\S]*?)\n---\s*\n/;
+
const match = content.match(frontMatterPattern);
+
if (match) {
+
return match[0].split("\n").length;
+
}
+
return 0;
+
}
+
+
export default function () {
+
return function (site: Lume.Site) {
+
site.hooks.addMarkdownItPlugin(markdownItOpenInEditor);
+
};
+
}
+19
plugins/validateCSS.ts
···
+
import { validate } from "csstree-validator";
+
import "lume/types.ts";
+
import { log } from "lume/core/utils/log.ts";
+
+
// CSS Validation Plugin, by dish
+
// version 1.0.0
+
+
export default function () {
+
return (site: Lume.Site) => {
+
site.process([".css"], validateStylesheets);
+
+
function validateStylesheets(pages: Lume.Page[]) {
+
for (const page of pages) {
+
log.info(page.content as string);
+
log.error(validate(page.content as string, page.sourcePath));
+
}
+
}
+
};
+
}
+52 -13
plugins/validateHTML.ts
···
import { merge } from "lume/core/utils/object.ts";
import { log } from "lume/core/utils/log.ts";
+
// HTML Validation Plugin, by dish
+
// version 1.0.1
+
export const defaults: ConfigData = {
extends: ["html-validate:recommended", "html-validate:document"],
rules: {
···
"attr-quotes": "off",
"no-trailing-whitespace": "off",
"void-style": "warn",
-
"require-sri": ["error", { target: "crossorigin" }],
+
"require-sri": ["off", { target: "crossorigin" }],
},
};
export default function (userOptions?: ConfigData) {
const options = merge(defaults, userOptions);
const htmlvalidate = new HtmlValidate(options);
-
const format = formatterFactory("text");
return (site: Lume.Site) => {
site.process([".html"], validatePages);
+
const barReport = site.debugBar?.collection("HTML Validator");
+
if (barReport) {
+
barReport.icon = "shield-check";
+
barReport.contexts = {
+
"error": {
+
background: "error",
+
},
+
"warning": {
+
background: "warning",
+
},
+
"success": {
+
background: "success",
+
},
+
};
+
}
async function validatePages(pages: Lume.Page[]) {
-
var reports: Array<Promise<Report>> = [];
for (const page of pages) {
const report = await htmlvalidate.validateString(page.content as string, page.outputPath);
-
reports.push(report);
-
}
-
const merged: Report | Promise<Report> = Reporter.merge(reports);
-
-
if (merged.valid) {
-
log.info("[validateHTML] Validation successful!");
-
}
-
-
if (!merged.valid) {
-
log.error("[validateHTML]:\n" + format(merged.results));
+
if (report.valid == true) {
+
barReport?.items.push({
+
title: page.data.url,
+
context: "success",
+
text: "No errors or warnings on page",
+
});
+
} else {
+
barReport?.items.push({
+
title: page.data.url,
+
details: `${report.errorCount} errors, ${report.warningCount} warnings`,
+
items: Array.from(report.results[0].messages).map((msg) => ({
+
title: msg.message,
+
context: severity(msg.severity),
+
code: msg.ruleId,
+
actions: [
+
{
+
text: "Rule",
+
icon: "question",
+
href: msg.ruleUrl,
+
target: "_blank",
+
},
+
],
+
})),
+
});
+
}
}
}
};
}
+
+
function severity(level: number) {
+
if (level == 1) {
+
return "warning";
+
}
+
+
return "error";
+
}
+2 -1
scripts/bootstrap-icons/src/classes.json
···
[
+
"bi-arrow-return-left",
"bi-bug",
"bi-check-circle",
"bi-check2",
···
"bi-clipboard2-data",
"bi-exclamation-triangle",
"bi-fire",
+
"bi-hash",
"bi-info-circle",
"bi-lightning",
"bi-list-ul",
-
"bi-paragraph",
"bi-pencil",
"bi-question-circle",
"bi-quote",
+1762 -1756
scripts/simple-icons/src/simple-icons.css
···
@font-face {
font-family: 'Simple Icons';
src:
-
url("/static/icons/si.min.woff2") format('woff2')
+
url("/static/icons/si.min.woff2") format('woff2'),
}
.si {
···
.si-freebsd::before { content: "\ee06"; }
.si-freebsd.si--color::before { color: #AB2B28; }
.si-freecad::before { content: "\ee07"; }
-
.si-freecad.si--color::before { color: #729FCF; }
+
.si-freecad.si--color::before { color: #418FDE; }
.si-freecodecamp::before { content: "\ee08"; }
.si-freecodecamp.si--color::before { color: #0A0A23; }
.si-freedesktopdotorg::before { content: "\ee09"; }
···
.si-kit.si--color::before { color: #000000; }
.si-kitsu::before { content: "\efeb"; }
.si-kitsu.si--color::before { color: #FD755C; }
-
.si-klarna::before { content: "\efec"; }
+
.si-kiwix::before { content: "\efec"; }
+
.si-kiwix.si--color::before { color: #000000; }
+
.si-klarna::before { content: "\efed"; }
.si-klarna.si--color::before { color: #FFB3C7; }
-
.si-kleinanzeigen::before { content: "\efed"; }
+
.si-kleinanzeigen::before { content: "\efee"; }
.si-kleinanzeigen.si--color::before { color: #1D4B00; }
-
.si-klm::before { content: "\efee"; }
+
.si-klm::before { content: "\efef"; }
.si-klm.si--color::before { color: #00A1DE; }
-
.si-klook::before { content: "\efef"; }
+
.si-klook::before { content: "\eff0"; }
.si-klook.si--color::before { color: #FF5722; }
-
.si-knative::before { content: "\eff0"; }
+
.si-knative::before { content: "\eff1"; }
.si-knative.si--color::before { color: #0865AD; }
-
.si-knexdotjs::before { content: "\eff1"; }
+
.si-knexdotjs::before { content: "\eff2"; }
.si-knexdotjs.si--color::before { color: #D26B38; }
-
.si-knime::before { content: "\eff2"; }
+
.si-knime::before { content: "\eff3"; }
.si-knime.si--color::before { color: #FDD800; }
-
.si-knip::before { content: "\eff3"; }
+
.si-knip::before { content: "\eff4"; }
.si-knip.si--color::before { color: #F56E0F; }
-
.si-knowledgebase::before { content: "\eff4"; }
+
.si-knowledgebase::before { content: "\eff5"; }
.si-knowledgebase.si--color::before { color: #9146FF; }
-
.si-known::before { content: "\eff5"; }
+
.si-known::before { content: "\eff6"; }
.si-known.si--color::before { color: #333333; }
-
.si-kofi::before { content: "\eff6"; }
+
.si-kofi::before { content: "\eff7"; }
.si-kofi.si--color::before { color: #FF6433; }
-
.si-koa::before { content: "\eff7"; }
+
.si-koa::before { content: "\eff8"; }
.si-koa.si--color::before { color: #33333D; }
-
.si-koc::before { content: "\eff8"; }
+
.si-koc::before { content: "\eff9"; }
.si-koc.si--color::before { color: #F9423A; }
-
.si-kodak::before { content: "\eff9"; }
+
.si-kodak::before { content: "\effa"; }
.si-kodak.si--color::before { color: #ED0000; }
-
.si-kodi::before { content: "\effa"; }
+
.si-kodi::before { content: "\effb"; }
.si-kodi.si--color::before { color: #17B2E7; }
-
.si-koenigsegg::before { content: "\effb"; }
+
.si-koenigsegg::before { content: "\effc"; }
.si-koenigsegg.si--color::before { color: #000000; }
-
.si-kofax::before { content: "\effc"; }
+
.si-kofax::before { content: "\effd"; }
.si-kofax.si--color::before { color: #00558C; }
-
.si-komoot::before { content: "\effd"; }
+
.si-komoot::before { content: "\effe"; }
.si-komoot.si--color::before { color: #6AA127; }
-
.si-konami::before { content: "\effe"; }
+
.si-konami::before { content: "\efff"; }
.si-konami.si--color::before { color: #B60014; }
-
.si-kong::before { content: "\efff"; }
+
.si-kong::before { content: "\f000"; }
.si-kong.si--color::before { color: #003459; }
-
.si-kongregate::before { content: "\f000"; }
+
.si-kongregate::before { content: "\f001"; }
.si-kongregate.si--color::before { color: #F04438; }
-
.si-konva::before { content: "\f001"; }
+
.si-konva::before { content: "\f002"; }
.si-konva.si--color::before { color: #0D83CD; }
-
.si-kotlin::before { content: "\f002"; }
+
.si-kotlin::before { content: "\f003"; }
.si-kotlin.si--color::before { color: #7F52FF; }
-
.si-koyeb::before { content: "\f003"; }
+
.si-koyeb::before { content: "\f004"; }
.si-koyeb.si--color::before { color: #121212; }
-
.si-krita::before { content: "\f004"; }
+
.si-krita::before { content: "\f005"; }
.si-krita.si--color::before { color: #3BABFF; }
-
.si-ktm::before { content: "\f005"; }
+
.si-ktm::before { content: "\f006"; }
.si-ktm.si--color::before { color: #FF6600; }
-
.si-ktor::before { content: "\f006"; }
+
.si-ktor::before { content: "\f007"; }
.si-ktor.si--color::before { color: #087CFA; }
-
.si-kuaishou::before { content: "\f007"; }
+
.si-kuaishou::before { content: "\f008"; }
.si-kuaishou.si--color::before { color: #FF4906; }
-
.si-kubernetes::before { content: "\f008"; }
+
.si-kubernetes::before { content: "\f009"; }
.si-kubernetes.si--color::before { color: #326CE5; }
-
.si-kubuntu::before { content: "\f009"; }
+
.si-kubuntu::before { content: "\f00a"; }
.si-kubuntu.si--color::before { color: #0079C1; }
-
.si-kucoin::before { content: "\f00a"; }
+
.si-kucoin::before { content: "\f00b"; }
.si-kucoin.si--color::before { color: #01BC8D; }
-
.si-kueski::before { content: "\f00b"; }
+
.si-kueski::before { content: "\f00c"; }
.si-kueski.si--color::before { color: #0075FF; }
-
.si-kuma::before { content: "\f00c"; }
+
.si-kuma::before { content: "\f00d"; }
.si-kuma.si--color::before { color: #290B53; }
-
.si-kununu::before { content: "\f00d"; }
+
.si-kununu::before { content: "\f00e"; }
.si-kununu.si--color::before { color: #FFC62E; }
-
.si-kuula::before { content: "\f00e"; }
+
.si-kuula::before { content: "\f00f"; }
.si-kuula.si--color::before { color: #4092B4; }
-
.si-kx::before { content: "\f00f"; }
+
.si-kx::before { content: "\f010"; }
.si-kx.si--color::before { color: #101820; }
-
.si-kyocera::before { content: "\f010"; }
+
.si-kyocera::before { content: "\f011"; }
.si-kyocera.si--color::before { color: #DF0522; }
-
.si-lequipe::before { content: "\f011"; }
+
.si-lequipe::before { content: "\f012"; }
.si-lequipe.si--color::before { color: #E42829; }
-
.si-labview::before { content: "\f012"; }
+
.si-labview::before { content: "\f013"; }
.si-labview.si--color::before { color: #FFDB00; }
-
.si-lada::before { content: "\f013"; }
+
.si-lada::before { content: "\f014"; }
.si-lada.si--color::before { color: #ED6B21; }
-
.si-lamborghini::before { content: "\f014"; }
+
.si-lamborghini::before { content: "\f015"; }
.si-lamborghini.si--color::before { color: #B6A272; }
-
.si-landrover::before { content: "\f015"; }
+
.si-landrover::before { content: "\f016"; }
.si-landrover.si--color::before { color: #005A2B; }
-
.si-langchain::before { content: "\f016"; }
+
.si-langchain::before { content: "\f017"; }
.si-langchain.si--color::before { color: #1C3C3C; }
-
.si-langflow::before { content: "\f017"; }
+
.si-langflow::before { content: "\f018"; }
.si-langflow.si--color::before { color: #000000; }
-
.si-langgraph::before { content: "\f018"; }
+
.si-langgraph::before { content: "\f019"; }
.si-langgraph.si--color::before { color: #1C3C3C; }
-
.si-languagetool::before { content: "\f019"; }
+
.si-languagetool::before { content: "\f01a"; }
.si-languagetool.si--color::before { color: #45A1FC; }
-
.si-lapce::before { content: "\f01a"; }
+
.si-lapce::before { content: "\f01b"; }
.si-lapce.si--color::before { color: #3B82F6; }
-
.si-laragon::before { content: "\f01b"; }
+
.si-laragon::before { content: "\f01c"; }
.si-laragon.si--color::before { color: #0E83CD; }
-
.si-laravel::before { content: "\f01c"; }
+
.si-laravel::before { content: "\f01d"; }
.si-laravel.si--color::before { color: #FF2D20; }
-
.si-laravelhorizon::before { content: "\f01d"; }
+
.si-laravelhorizon::before { content: "\f01e"; }
.si-laravelhorizon.si--color::before { color: #405263; }
-
.si-laravelnova::before { content: "\f01e"; }
+
.si-laravelnova::before { content: "\f01f"; }
.si-laravelnova.si--color::before { color: #252D37; }
-
.si-lastdotfm::before { content: "\f01f"; }
+
.si-lastdotfm::before { content: "\f020"; }
.si-lastdotfm.si--color::before { color: #D51007; }
-
.si-lastpass::before { content: "\f020"; }
+
.si-lastpass::before { content: "\f021"; }
.si-lastpass.si--color::before { color: #D32D27; }
-
.si-latex::before { content: "\f021"; }
+
.si-latex::before { content: "\f022"; }
.si-latex.si--color::before { color: #008080; }
-
.si-launchpad::before { content: "\f022"; }
+
.si-launchpad::before { content: "\f023"; }
.si-launchpad.si--color::before { color: #F8C300; }
-
.si-lazarus::before { content: "\f023"; }
+
.si-lazarus::before { content: "\f024"; }
.si-lazarus.si--color::before { color: #000000; }
-
.si-lazyvim::before { content: "\f024"; }
+
.si-lazyvim::before { content: "\f025"; }
.si-lazyvim.si--color::before { color: #2E7DE9; }
-
.si-lbry::before { content: "\f025"; }
+
.si-lbry::before { content: "\f026"; }
.si-lbry.si--color::before { color: #2F9176; }
-
.si-leaderprice::before { content: "\f026"; }
+
.si-leaderprice::before { content: "\f027"; }
.si-leaderprice.si--color::before { color: #E50005; }
-
.si-leaflet::before { content: "\f027"; }
+
.si-leaflet::before { content: "\f028"; }
.si-leaflet.si--color::before { color: #199900; }
-
.si-leagueoflegends::before { content: "\f028"; }
+
.si-leagueoflegends::before { content: "\f029"; }
.si-leagueoflegends.si--color::before { color: #C28F2C; }
-
.si-leanpub::before { content: "\f029"; }
+
.si-leanpub::before { content: "\f02a"; }
.si-leanpub.si--color::before { color: #262425; }
-
.si-leetcode::before { content: "\f02a"; }
+
.si-leetcode::before { content: "\f02b"; }
.si-leetcode.si--color::before { color: #FFA116; }
-
.si-lefthook::before { content: "\f02b"; }
+
.si-lefthook::before { content: "\f02c"; }
.si-lefthook.si--color::before { color: #FF1E1E; }
-
.si-legacygames::before { content: "\f02c"; }
+
.si-legacygames::before { content: "\f02d"; }
.si-legacygames.si--color::before { color: #144B9E; }
-
.si-leica::before { content: "\f02d"; }
+
.si-leica::before { content: "\f02e"; }
.si-leica.si--color::before { color: #E20612; }
-
.si-lemmy::before { content: "\f02e"; }
+
.si-lemmy::before { content: "\f02f"; }
.si-lemmy.si--color::before { color: #000000; }
-
.si-lemonsqueezy::before { content: "\f02f"; }
+
.si-lemonsqueezy::before { content: "\f030"; }
.si-lemonsqueezy.si--color::before { color: #FFC233; }
-
.si-lenovo::before { content: "\f030"; }
+
.si-lenovo::before { content: "\f031"; }
.si-lenovo.si--color::before { color: #E2231A; }
-
.si-lens::before { content: "\f031"; }
+
.si-lens::before { content: "\f032"; }
.si-lens.si--color::before { color: #3D90CE; }
-
.si-leptos::before { content: "\f032"; }
+
.si-leptos::before { content: "\f033"; }
.si-leptos.si--color::before { color: #EF3939; }
-
.si-lerna::before { content: "\f033"; }
+
.si-lerna::before { content: "\f034"; }
.si-lerna.si--color::before { color: #C084FC; }
-
.si-leroymerlin::before { content: "\f034"; }
+
.si-leroymerlin::before { content: "\f035"; }
.si-leroymerlin.si--color::before { color: #78BE20; }
-
.si-leslibraires::before { content: "\f035"; }
+
.si-leslibraires::before { content: "\f036"; }
.si-leslibraires.si--color::before { color: #CF4A0C; }
-
.si-less::before { content: "\f036"; }
+
.si-less::before { content: "\f037"; }
.si-less.si--color::before { color: #1D365D; }
-
.si-letsencrypt::before { content: "\f037"; }
+
.si-letsencrypt::before { content: "\f038"; }
.si-letsencrypt.si--color::before { color: #003A70; }
-
.si-letterboxd::before { content: "\f038"; }
+
.si-letterboxd::before { content: "\f039"; }
.si-letterboxd.si--color::before { color: #202830; }
-
.si-levelsdotfyi::before { content: "\f039"; }
+
.si-levelsdotfyi::before { content: "\f03a"; }
.si-levelsdotfyi.si--color::before { color: #788B95; }
-
.si-lg::before { content: "\f03a"; }
+
.si-lg::before { content: "\f03b"; }
.si-lg.si--color::before { color: #A50034; }
-
.si-lining::before { content: "\f03b"; }
+
.si-lining::before { content: "\f03c"; }
.si-lining.si--color::before { color: #C5242C; }
-
.si-liberadotchat::before { content: "\f03c"; }
+
.si-liberadotchat::before { content: "\f03d"; }
.si-liberadotchat.si--color::before { color: #FF55DD; }
-
.si-liberapay::before { content: "\f03d"; }
+
.si-liberapay::before { content: "\f03e"; }
.si-liberapay.si--color::before { color: #F6C915; }
-
.si-librariesdotio::before { content: "\f03e"; }
+
.si-librariesdotio::before { content: "\f03f"; }
.si-librariesdotio.si--color::before { color: #337AB7; }
-
.si-librarything::before { content: "\f03f"; }
+
.si-librarything::before { content: "\f040"; }
.si-librarything.si--color::before { color: #251A15; }
-
.si-libreoffice::before { content: "\f040"; }
+
.si-libreoffice::before { content: "\f041"; }
.si-libreoffice.si--color::before { color: #18A303; }
-
.si-libreofficebase::before { content: "\f041"; }
+
.si-libreofficebase::before { content: "\f042"; }
.si-libreofficebase.si--color::before { color: #7324A9; }
-
.si-libreofficecalc::before { content: "\f042"; }
+
.si-libreofficecalc::before { content: "\f043"; }
.si-libreofficecalc.si--color::before { color: #007C3C; }
-
.si-libreofficedraw::before { content: "\f043"; }
+
.si-libreofficedraw::before { content: "\f044"; }
.si-libreofficedraw.si--color::before { color: #CB6D30; }
-
.si-libreofficeimpress::before { content: "\f044"; }
+
.si-libreofficeimpress::before { content: "\f045"; }
.si-libreofficeimpress.si--color::before { color: #D0120D; }
-
.si-libreofficemath::before { content: "\f045"; }
+
.si-libreofficemath::before { content: "\f046"; }
.si-libreofficemath.si--color::before { color: #C10018; }
-
.si-libreofficewriter::before { content: "\f046"; }
+
.si-libreofficewriter::before { content: "\f047"; }
.si-libreofficewriter.si--color::before { color: #083FA6; }
-
.si-libretranslate::before { content: "\f047"; }
+
.si-libretranslate::before { content: "\f048"; }
.si-libretranslate.si--color::before { color: #1565C0; }
-
.si-libretube::before { content: "\f048"; }
+
.si-libretube::before { content: "\f049"; }
.si-libretube.si--color::before { color: #FF9699; }
-
.si-librewolf::before { content: "\f049"; }
+
.si-librewolf::before { content: "\f04a"; }
.si-librewolf.si--color::before { color: #00ACFF; }
-
.si-libuv::before { content: "\f04a"; }
+
.si-libuv::before { content: "\f04b"; }
.si-libuv.si--color::before { color: #403C3D; }
-
.si-lichess::before { content: "\f04b"; }
+
.si-lichess::before { content: "\f04c"; }
.si-lichess.si--color::before { color: #000000; }
-
.si-lidl::before { content: "\f04c"; }
+
.si-lidl::before { content: "\f04d"; }
.si-lidl.si--color::before { color: #0050AA; }
-
.si-lifx::before { content: "\f04d"; }
+
.si-lifx::before { content: "\f04e"; }
.si-lifx.si--color::before { color: #000000; }
-
.si-lightburn::before { content: "\f04e"; }
+
.si-lightburn::before { content: "\f04f"; }
.si-lightburn.si--color::before { color: #57182D; }
-
.si-lighthouse::before { content: "\f04f"; }
+
.si-lighthouse::before { content: "\f050"; }
.si-lighthouse.si--color::before { color: #F44B21; }
-
.si-lightning::before { content: "\f050"; }
+
.si-lightning::before { content: "\f051"; }
.si-lightning.si--color::before { color: #792EE5; }
-
.si-limesurvey::before { content: "\f051"; }
+
.si-limesurvey::before { content: "\f052"; }
.si-limesurvey.si--color::before { color: #14AE5C; }
-
.si-line::before { content: "\f052"; }
+
.si-line::before { content: "\f053"; }
.si-line.si--color::before { color: #00C300; }
-
.si-lineageos::before { content: "\f053"; }
+
.si-lineageos::before { content: "\f054"; }
.si-lineageos.si--color::before { color: #167C80; }
-
.si-linear::before { content: "\f054"; }
+
.si-linear::before { content: "\f055"; }
.si-linear.si--color::before { color: #5E6AD2; }
-
.si-linkerd::before { content: "\f055"; }
+
.si-linkerd::before { content: "\f056"; }
.si-linkerd.si--color::before { color: #2BEDA7; }
-
.si-linkfire::before { content: "\f056"; }
+
.si-linkfire::before { content: "\f057"; }
.si-linkfire.si--color::before { color: #FF3850; }
-
.si-linksys::before { content: "\f057"; }
+
.si-linksys::before { content: "\f058"; }
.si-linksys.si--color::before { color: #000000; }
-
.si-linktree::before { content: "\f058"; }
+
.si-linktree::before { content: "\f059"; }
.si-linktree.si--color::before { color: #43E55E; }
-
.si-linphone::before { content: "\f059"; }
+
.si-linphone::before { content: "\f05a"; }
.si-linphone.si--color::before { color: #FF5E00; }
-
.si-lintcode::before { content: "\f05a"; }
+
.si-lintcode::before { content: "\f05b"; }
.si-lintcode.si--color::before { color: #13B4FF; }
-
.si-linux::before { content: "\f05b"; }
+
.si-linux::before { content: "\f05c"; }
.si-linux.si--color::before { color: #FCC624; }
-
.si-linuxcontainers::before { content: "\f05c"; }
+
.si-linuxcontainers::before { content: "\f05d"; }
.si-linuxcontainers.si--color::before { color: #333333; }
-
.si-linuxfoundation::before { content: "\f05d"; }
+
.si-linuxfoundation::before { content: "\f05e"; }
.si-linuxfoundation.si--color::before { color: #003778; }
-
.si-linuxmint::before { content: "\f05e"; }
+
.si-linuxmint::before { content: "\f05f"; }
.si-linuxmint.si--color::before { color: #86BE43; }
-
.si-linuxprofessionalinstitute::before { content: "\f05f"; }
+
.si-linuxprofessionalinstitute::before { content: "\f060"; }
.si-linuxprofessionalinstitute.si--color::before { color: #FDC300; }
-
.si-linuxserver::before { content: "\f060"; }
+
.si-linuxserver::before { content: "\f061"; }
.si-linuxserver.si--color::before { color: #DA3B8A; }
-
.si-lionair::before { content: "\f061"; }
+
.si-lionair::before { content: "\f062"; }
.si-lionair.si--color::before { color: #ED3237; }
-
.si-liquibase::before { content: "\f062"; }
+
.si-liquibase::before { content: "\f063"; }
.si-liquibase.si--color::before { color: #2962FF; }
-
.si-listmonk::before { content: "\f063"; }
+
.si-listmonk::before { content: "\f064"; }
.si-listmonk.si--color::before { color: #0055D4; }
-
.si-lit::before { content: "\f064"; }
+
.si-lit::before { content: "\f065"; }
.si-lit.si--color::before { color: #324FFF; }
-
.si-litecoin::before { content: "\f065"; }
+
.si-litecoin::before { content: "\f066"; }
.si-litecoin.si--color::before { color: #A6A9AA; }
-
.si-literal::before { content: "\f066"; }
+
.si-literal::before { content: "\f067"; }
.si-literal.si--color::before { color: #000000; }
-
.si-litiengine::before { content: "\f067"; }
+
.si-litiengine::before { content: "\f068"; }
.si-litiengine.si--color::before { color: #00A5BC; }
-
.si-livechat::before { content: "\f068"; }
+
.si-livechat::before { content: "\f069"; }
.si-livechat.si--color::before { color: #FF5100; }
-
.si-livejournal::before { content: "\f069"; }
+
.si-livejournal::before { content: "\f06a"; }
.si-livejournal.si--color::before { color: #00B0EA; }
-
.si-livewire::before { content: "\f06a"; }
+
.si-livewire::before { content: "\f06b"; }
.si-livewire.si--color::before { color: #4E56A6; }
-
.si-llvm::before { content: "\f06b"; }
+
.si-llvm::before { content: "\f06c"; }
.si-llvm.si--color::before { color: #262D3A; }
-
.si-lmms::before { content: "\f06c"; }
+
.si-lmms::before { content: "\f06d"; }
.si-lmms.si--color::before { color: #10B146; }
-
.si-lobsters::before { content: "\f06d"; }
+
.si-lobsters::before { content: "\f06e"; }
.si-lobsters.si--color::before { color: #AC130D; }
-
.si-local::before { content: "\f06e"; }
+
.si-local::before { content: "\f06f"; }
.si-local.si--color::before { color: #51BB7B; }
-
.si-lodash::before { content: "\f06f"; }
+
.si-lodash::before { content: "\f070"; }
.si-lodash.si--color::before { color: #3492FF; }
-
.si-logitech::before { content: "\f070"; }
+
.si-logitech::before { content: "\f071"; }
.si-logitech.si--color::before { color: #00B8FC; }
-
.si-logitechg::before { content: "\f071"; }
+
.si-logitechg::before { content: "\f072"; }
.si-logitechg.si--color::before { color: #00B8FC; }
-
.si-logmein::before { content: "\f072"; }
+
.si-logmein::before { content: "\f073"; }
.si-logmein.si--color::before { color: #45B6F2; }
-
.si-logseq::before { content: "\f073"; }
+
.si-logseq::before { content: "\f074"; }
.si-logseq.si--color::before { color: #85C8C8; }
-
.si-logstash::before { content: "\f074"; }
+
.si-logstash::before { content: "\f075"; }
.si-logstash.si--color::before { color: #005571; }
-
.si-looker::before { content: "\f075"; }
+
.si-looker::before { content: "\f076"; }
.si-looker.si--color::before { color: #4285F4; }
-
.si-loom::before { content: "\f076"; }
+
.si-loom::before { content: "\f077"; }
.si-loom.si--color::before { color: #625DF5; }
-
.si-loop::before { content: "\f077"; }
+
.si-loop::before { content: "\f078"; }
.si-loop.si--color::before { color: #F29400; }
-
.si-loopback::before { content: "\f078"; }
+
.si-loopback::before { content: "\f079"; }
.si-loopback.si--color::before { color: #3F5DFF; }
-
.si-lootcrate::before { content: "\f079"; }
+
.si-lootcrate::before { content: "\f07a"; }
.si-lootcrate.si--color::before { color: #1E1E1E; }
-
.si-lospec::before { content: "\f07a"; }
+
.si-lospec::before { content: "\f07b"; }
.si-lospec.si--color::before { color: #EAEAEA; }
-
.si-lotpolishairlines::before { content: "\f07b"; }
+
.si-lotpolishairlines::before { content: "\f07c"; }
.si-lotpolishairlines.si--color::before { color: #11397E; }
-
.si-lottiefiles::before { content: "\f07c"; }
+
.si-lottiefiles::before { content: "\f07d"; }
.si-lottiefiles.si--color::before { color: #00DDB3; }
-
.si-ltspice::before { content: "\f07d"; }
+
.si-ltspice::before { content: "\f07e"; }
.si-ltspice.si--color::before { color: #900028; }
-
.si-lua::before { content: "\f07e"; }
+
.si-lua::before { content: "\f07f"; }
.si-lua.si--color::before { color: #2C2D72; }
-
.si-lubuntu::before { content: "\f07f"; }
+
.si-lubuntu::before { content: "\f080"; }
.si-lubuntu.si--color::before { color: #0068C8; }
-
.si-lucia::before { content: "\f080"; }
+
.si-lucia::before { content: "\f081"; }
.si-lucia.si--color::before { color: #5F57FF; }
-
.si-lucid::before { content: "\f081"; }
+
.si-lucid::before { content: "\f082"; }
.si-lucid.si--color::before { color: #282C33; }
-
.si-lucide::before { content: "\f082"; }
+
.si-lucide::before { content: "\f083"; }
.si-lucide.si--color::before { color: #F56565; }
-
.si-ludwig::before { content: "\f083"; }
+
.si-ludwig::before { content: "\f084"; }
.si-ludwig.si--color::before { color: #FFFFFF; }
-
.si-lufthansa::before { content: "\f084"; }
+
.si-lufthansa::before { content: "\f085"; }
.si-lufthansa.si--color::before { color: #05164D; }
-
.si-lumen::before { content: "\f085"; }
+
.si-lumen::before { content: "\f086"; }
.si-lumen.si--color::before { color: #E74430; }
-
.si-lunacy::before { content: "\f086"; }
+
.si-lunacy::before { content: "\f087"; }
.si-lunacy.si--color::before { color: #179DE3; }
-
.si-lutris::before { content: "\f087"; }
+
.si-lutris::before { content: "\f088"; }
.si-lutris.si--color::before { color: #FF9900; }
-
.si-lvgl::before { content: "\f088"; }
+
.si-lvgl::before { content: "\f089"; }
.si-lvgl.si--color::before { color: #343839; }
-
.si-lydia::before { content: "\f089"; }
+
.si-lydia::before { content: "\f08a"; }
.si-lydia.si--color::before { color: #0180FF; }
-
.si-lyft::before { content: "\f08a"; }
+
.si-lyft::before { content: "\f08b"; }
.si-lyft.si--color::before { color: #FF00BF; }
-
.si-maas::before { content: "\f08b"; }
+
.si-maas::before { content: "\f08c"; }
.si-maas.si--color::before { color: #E95420; }
-
.si-macos::before { content: "\f08c"; }
+
.si-macos::before { content: "\f08d"; }
.si-macos.si--color::before { color: #000000; }
-
.si-macpaw::before { content: "\f08d"; }
+
.si-macpaw::before { content: "\f08e"; }
.si-macpaw.si--color::before { color: #000000; }
-
.si-macys::before { content: "\f08e"; }
+
.si-macys::before { content: "\f08f"; }
.si-macys.si--color::before { color: #E21A2C; }
-
.si-magasinsu::before { content: "\f08f"; }
+
.si-magasinsu::before { content: "\f090"; }
.si-magasinsu.si--color::before { color: #E71B34; }
-
.si-magic::before { content: "\f090"; }
+
.si-magic::before { content: "\f091"; }
.si-magic.si--color::before { color: #6851FF; }
-
.si-magisk::before { content: "\f091"; }
+
.si-magisk::before { content: "\f092"; }
.si-magisk.si--color::before { color: #00AF9C; }
-
.si-mahindra::before { content: "\f092"; }
+
.si-mahindra::before { content: "\f093"; }
.si-mahindra.si--color::before { color: #DD052B; }
-
.si-maildotcom::before { content: "\f093"; }
+
.si-maildotcom::before { content: "\f094"; }
.si-maildotcom.si--color::before { color: #004788; }
-
.si-maildotru::before { content: "\f094"; }
+
.si-maildotru::before { content: "\f095"; }
.si-maildotru.si--color::before { color: #005FF9; }
-
.si-mailboxdotorg::before { content: "\f095"; }
+
.si-mailboxdotorg::before { content: "\f096"; }
.si-mailboxdotorg.si--color::before { color: #76BB21; }
-
.si-mailchimp::before { content: "\f096"; }
+
.si-mailchimp::before { content: "\f097"; }
.si-mailchimp.si--color::before { color: #FFE01B; }
-
.si-mailgun::before { content: "\f097"; }
+
.si-mailgun::before { content: "\f098"; }
.si-mailgun.si--color::before { color: #F06B66; }
-
.si-mailtrap::before { content: "\f098"; }
+
.si-mailtrap::before { content: "\f099"; }
.si-mailtrap.si--color::before { color: #22D172; }
-
.si-mainwp::before { content: "\f099"; }
+
.si-mainwp::before { content: "\f09a"; }
.si-mainwp.si--color::before { color: #7FB100; }
-
.si-majorleaguehacking::before { content: "\f09a"; }
+
.si-majorleaguehacking::before { content: "\f09b"; }
.si-majorleaguehacking.si--color::before { color: #265A8F; }
-
.si-make::before { content: "\f09b"; }
+
.si-make::before { content: "\f09c"; }
.si-make.si--color::before { color: #6D00CC; }
-
.si-makerbot::before { content: "\f09c"; }
+
.si-makerbot::before { content: "\f09d"; }
.si-makerbot.si--color::before { color: #FF1E0D; }
-
.si-malt::before { content: "\f09d"; }
+
.si-malt::before { content: "\f09e"; }
.si-malt.si--color::before { color: #FC5757; }
-
.si-malwarebytes::before { content: "\f09e"; }
+
.si-malwarebytes::before { content: "\f09f"; }
.si-malwarebytes.si--color::before { color: #0D3ECC; }
-
.si-mambaui::before { content: "\f09f"; }
+
.si-mambaui::before { content: "\f0a0"; }
.si-mambaui.si--color::before { color: #6D28D9; }
-
.si-mamp::before { content: "\f0a0"; }
+
.si-mamp::before { content: "\f0a1"; }
.si-mamp.si--color::before { color: #02749C; }
-
.si-man::before { content: "\f0a1"; }
+
.si-man::before { content: "\f0a2"; }
.si-man.si--color::before { color: #E40045; }
-
.si-manageiq::before { content: "\f0a2"; }
+
.si-manageiq::before { content: "\f0a3"; }
.si-manageiq.si--color::before { color: #EF2929; }
-
.si-manjaro::before { content: "\f0a3"; }
+
.si-manjaro::before { content: "\f0a4"; }
.si-manjaro.si--color::before { color: #35BF5C; }
-
.si-mantine::before { content: "\f0a4"; }
+
.si-mantine::before { content: "\f0a5"; }
.si-mantine.si--color::before { color: #339AF0; }
-
.si-mapbox::before { content: "\f0a5"; }
+
.si-mapbox::before { content: "\f0a6"; }
.si-mapbox.si--color::before { color: #000000; }
-
.si-mapillary::before { content: "\f0a6"; }
+
.si-mapillary::before { content: "\f0a7"; }
.si-mapillary.si--color::before { color: #00AF66; }
-
.si-maplibre::before { content: "\f0a7"; }
+
.si-maplibre::before { content: "\f0a8"; }
.si-maplibre.si--color::before { color: #396CB2; }
-
.si-maptiler::before { content: "\f0a8"; }
+
.si-maptiler::before { content: "\f0a9"; }
.si-maptiler.si--color::before { color: #323357; }
-
.si-mariadb::before { content: "\f0a9"; }
+
.si-mariadb::before { content: "\f0aa"; }
.si-mariadb.si--color::before { color: #003545; }
-
.si-mariadbfoundation::before { content: "\f0aa"; }
+
.si-mariadbfoundation::before { content: "\f0ab"; }
.si-mariadbfoundation.si--color::before { color: #1F305F; }
-
.si-markdown::before { content: "\f0ab"; }
+
.si-markdown::before { content: "\f0ac"; }
.si-markdown.si--color::before { color: #000000; }
-
.si-marko::before { content: "\f0ac"; }
+
.si-marko::before { content: "\f0ad"; }
.si-marko.si--color::before { color: #2596BE; }
-
.si-marriott::before { content: "\f0ad"; }
+
.si-marriott::before { content: "\f0ae"; }
.si-marriott.si--color::before { color: #A70023; }
-
.si-marvelapp::before { content: "\f0ae"; }
+
.si-marvelapp::before { content: "\f0af"; }
.si-marvelapp.si--color::before { color: #1FB6FF; }
-
.si-maserati::before { content: "\f0af"; }
+
.si-maserati::before { content: "\f0b0"; }
.si-maserati.si--color::before { color: #0C2340; }
-
.si-mastercard::before { content: "\f0b0"; }
+
.si-mastercard::before { content: "\f0b1"; }
.si-mastercard.si--color::before { color: #EB001B; }
-
.si-mastercomfig::before { content: "\f0b1"; }
+
.si-mastercomfig::before { content: "\f0b2"; }
.si-mastercomfig.si--color::before { color: #009688; }
-
.si-mastodon::before { content: "\f0b2"; }
+
.si-mastodon::before { content: "\f0b3"; }
.si-mastodon.si--color::before { color: #6364FF; }
-
.si-materialdesign::before { content: "\f0b3"; }
+
.si-materialdesign::before { content: "\f0b4"; }
.si-materialdesign.si--color::before { color: #757575; }
-
.si-materialdesignicons::before { content: "\f0b4"; }
+
.si-materialdesignicons::before { content: "\f0b5"; }
.si-materialdesignicons.si--color::before { color: #2196F3; }
-
.si-materialformkdocs::before { content: "\f0b5"; }
+
.si-materialformkdocs::before { content: "\f0b6"; }
.si-materialformkdocs.si--color::before { color: #526CFE; }
-
.si-matillion::before { content: "\f0b6"; }
+
.si-matillion::before { content: "\f0b7"; }
.si-matillion.si--color::before { color: #19E57F; }
-
.si-matomo::before { content: "\f0b7"; }
+
.si-matomo::before { content: "\f0b8"; }
.si-matomo.si--color::before { color: #3152A0; }
-
.si-matrix::before { content: "\f0b8"; }
+
.si-matrix::before { content: "\f0b9"; }
.si-matrix.si--color::before { color: #000000; }
-
.si-matterdotjs::before { content: "\f0b9"; }
+
.si-matterdotjs::before { content: "\f0ba"; }
.si-matterdotjs.si--color::before { color: #4B5562; }
-
.si-mattermost::before { content: "\f0ba"; }
+
.si-mattermost::before { content: "\f0bb"; }
.si-mattermost.si--color::before { color: #0058CC; }
-
.si-matternet::before { content: "\f0bb"; }
+
.si-matternet::before { content: "\f0bc"; }
.si-matternet.si--color::before { color: #261C29; }
-
.si-mautic::before { content: "\f0bc"; }
+
.si-mautic::before { content: "\f0bd"; }
.si-mautic.si--color::before { color: #4E5E9E; }
-
.si-max::before { content: "\f0bd"; }
+
.si-max::before { content: "\f0be"; }
.si-max.si--color::before { color: #525252; }
-
.si-maxplanckgesellschaft::before { content: "\f0be"; }
+
.si-maxplanckgesellschaft::before { content: "\f0bf"; }
.si-maxplanckgesellschaft.si--color::before { color: #006C66; }
-
.si-maytag::before { content: "\f0bf"; }
+
.si-maytag::before { content: "\f0c0"; }
.si-maytag.si--color::before { color: #002E5F; }
-
.si-mazda::before { content: "\f0c0"; }
+
.si-mazda::before { content: "\f0c1"; }
.si-mazda.si--color::before { color: #101010; }
-
.si-maze::before { content: "\f0c1"; }
+
.si-maze::before { content: "\f0c2"; }
.si-maze.si--color::before { color: #000000; }
-
.si-mcafee::before { content: "\f0c2"; }
+
.si-mcafee::before { content: "\f0c3"; }
.si-mcafee.si--color::before { color: #C01818; }
-
.si-mcdonalds::before { content: "\f0c3"; }
+
.si-mcdonalds::before { content: "\f0c4"; }
.si-mcdonalds.si--color::before { color: #FBC817; }
-
.si-mclaren::before { content: "\f0c4"; }
+
.si-mclaren::before { content: "\f0c5"; }
.si-mclaren.si--color::before { color: #FF0000; }
-
.si-mdbook::before { content: "\f0c5"; }
+
.si-mdbook::before { content: "\f0c6"; }
.si-mdbook.si--color::before { color: #000000; }
-
.si-mdnwebdocs::before { content: "\f0c6"; }
+
.si-mdnwebdocs::before { content: "\f0c7"; }
.si-mdnwebdocs.si--color::before { color: #000000; }
-
.si-mdx::before { content: "\f0c7"; }
+
.si-mdx::before { content: "\f0c8"; }
.si-mdx.si--color::before { color: #1B1F24; }
-
.si-mealie::before { content: "\f0c8"; }
+
.si-mealie::before { content: "\f0c9"; }
.si-mealie.si--color::before { color: #E58325; }
-
.si-mediafire::before { content: "\f0c9"; }
+
.si-mediafire::before { content: "\f0ca"; }
.si-mediafire.si--color::before { color: #1299F3; }
-
.si-mediamarkt::before { content: "\f0ca"; }
+
.si-mediamarkt::before { content: "\f0cb"; }
.si-mediamarkt.si--color::before { color: #DF0000; }
-
.si-mediapipe::before { content: "\f0cb"; }
+
.si-mediapipe::before { content: "\f0cc"; }
.si-mediapipe.si--color::before { color: #0097A7; }
-
.si-mediatek::before { content: "\f0cc"; }
+
.si-mediatek::before { content: "\f0cd"; }
.si-mediatek.si--color::before { color: #EC9430; }
-
.si-medibangpaint::before { content: "\f0cd"; }
+
.si-medibangpaint::before { content: "\f0ce"; }
.si-medibangpaint.si--color::before { color: #00DBDE; }
-
.si-medium::before { content: "\f0ce"; }
+
.si-medium::before { content: "\f0cf"; }
.si-medium.si--color::before { color: #000000; }
-
.si-medusa::before { content: "\f0cf"; }
+
.si-medusa::before { content: "\f0d0"; }
.si-medusa.si--color::before { color: #000000; }
-
.si-meetup::before { content: "\f0d0"; }
+
.si-meetup::before { content: "\f0d1"; }
.si-meetup.si--color::before { color: #ED1C40; }
-
.si-mega::before { content: "\f0d1"; }
+
.si-mega::before { content: "\f0d2"; }
.si-mega.si--color::before { color: #D9272E; }
-
.si-meilisearch::before { content: "\f0d2"; }
+
.si-meilisearch::before { content: "\f0d3"; }
.si-meilisearch.si--color::before { color: #FF5CAA; }
-
.si-meituan::before { content: "\f0d3"; }
+
.si-meituan::before { content: "\f0d4"; }
.si-meituan.si--color::before { color: #FFD100; }
-
.si-meizu::before { content: "\f0d4"; }
+
.si-meizu::before { content: "\f0d5"; }
.si-meizu.si--color::before { color: #FF4132; }
-
.si-mendeley::before { content: "\f0d5"; }
+
.si-mendeley::before { content: "\f0d6"; }
.si-mendeley.si--color::before { color: #9D1620; }
-
.si-mentorcruise::before { content: "\f0d6"; }
+
.si-mentorcruise::before { content: "\f0d7"; }
.si-mentorcruise.si--color::before { color: #172E59; }
-
.si-mercadopago::before { content: "\f0d7"; }
+
.si-mercadopago::before { content: "\f0d8"; }
.si-mercadopago.si--color::before { color: #00B1EA; }
-
.si-mercedes::before { content: "\f0d8"; }
+
.si-mercedes::before { content: "\f0d9"; }
.si-mercedes.si--color::before { color: #242424; }
-
.si-merck::before { content: "\f0d9"; }
+
.si-merck::before { content: "\f0da"; }
.si-merck.si--color::before { color: #007A73; }
-
.si-mercurial::before { content: "\f0da"; }
+
.si-mercurial::before { content: "\f0db"; }
.si-mercurial.si--color::before { color: #999999; }
-
.si-mermaid::before { content: "\f0db"; }
+
.si-mermaid::before { content: "\f0dc"; }
.si-mermaid.si--color::before { color: #FF3670; }
-
.si-messenger::before { content: "\f0dc"; }
+
.si-messenger::before { content: "\f0dd"; }
.si-messenger.si--color::before { color: #00B2FF; }
-
.si-meta::before { content: "\f0dd"; }
+
.si-meta::before { content: "\f0de"; }
.si-meta.si--color::before { color: #0467DF; }
-
.si-metabase::before { content: "\f0de"; }
+
.si-metabase::before { content: "\f0df"; }
.si-metabase.si--color::before { color: #509EE3; }
-
.si-metacritic::before { content: "\f0df"; }
+
.si-metacritic::before { content: "\f0e0"; }
.si-metacritic.si--color::before { color: #000000; }
-
.si-metafilter::before { content: "\f0e0"; }
+
.si-metafilter::before { content: "\f0e1"; }
.si-metafilter.si--color::before { color: #065A8F; }
-
.si-metasploit::before { content: "\f0e1"; }
+
.si-metasploit::before { content: "\f0e2"; }
.si-metasploit.si--color::before { color: #2596CD; }
-
.si-meteor::before { content: "\f0e2"; }
+
.si-meteor::before { content: "\f0e3"; }
.si-meteor.si--color::before { color: #DE4F4F; }
-
.si-metro::before { content: "\f0e3"; }
+
.si-metro::before { content: "\f0e4"; }
.si-metro.si--color::before { color: #EF4242; }
-
.si-metrodelaciudaddemexico::before { content: "\f0e4"; }
+
.si-metrodelaciudaddemexico::before { content: "\f0e5"; }
.si-metrodelaciudaddemexico.si--color::before { color: #F77E1C; }
-
.si-metrodemadrid::before { content: "\f0e5"; }
+
.si-metrodemadrid::before { content: "\f0e6"; }
.si-metrodemadrid.si--color::before { color: #255E9C; }
-
.si-metrodeparis::before { content: "\f0e6"; }
+
.si-metrodeparis::before { content: "\f0e7"; }
.si-metrodeparis.si--color::before { color: #003E95; }
-
.si-mewe::before { content: "\f0e7"; }
+
.si-mewe::before { content: "\f0e8"; }
.si-mewe.si--color::before { color: #17377F; }
-
.si-mg::before { content: "\f0e8"; }
+
.si-mg::before { content: "\f0e9"; }
.si-mg.si--color::before { color: #FF0000; }
-
.si-microeditor::before { content: "\f0e9"; }
+
.si-microeditor::before { content: "\f0ea"; }
.si-microeditor.si--color::before { color: #2E3192; }
-
.si-microbit::before { content: "\f0ea"; }
+
.si-microbit::before { content: "\f0eb"; }
.si-microbit.si--color::before { color: #00ED00; }
-
.si-microdotblog::before { content: "\f0eb"; }
+
.si-microdotblog::before { content: "\f0ec"; }
.si-microdotblog.si--color::before { color: #FF8800; }
-
.si-micropython::before { content: "\f0ec"; }
+
.si-micropython::before { content: "\f0ed"; }
.si-micropython.si--color::before { color: #2B2728; }
-
.si-microstation::before { content: "\f0ed"; }
+
.si-microstation::before { content: "\f0ee"; }
.si-microstation.si--color::before { color: #62BB47; }
-
.si-microstrategy::before { content: "\f0ee"; }
+
.si-microstrategy::before { content: "\f0ef"; }
.si-microstrategy.si--color::before { color: #D9232E; }
-
.si-midi::before { content: "\f0ef"; }
+
.si-midi::before { content: "\f0f0"; }
.si-midi.si--color::before { color: #000000; }
-
.si-migadu::before { content: "\f0f0"; }
+
.si-migadu::before { content: "\f0f1"; }
.si-migadu.si--color::before { color: #0043CE; }
-
.si-mihoyo::before { content: "\f0f1"; }
+
.si-mihoyo::before { content: "\f0f2"; }
.si-mihoyo.si--color::before { color: #4EA4DD; }
-
.si-mikrotik::before { content: "\f0f2"; }
+
.si-mikrotik::before { content: "\f0f3"; }
.si-mikrotik.si--color::before { color: #293239; }
-
.si-milanote::before { content: "\f0f3"; }
+
.si-milanote::before { content: "\f0f4"; }
.si-milanote.si--color::before { color: #31303A; }
-
.si-milvus::before { content: "\f0f4"; }
+
.si-milvus::before { content: "\f0f5"; }
.si-milvus.si--color::before { color: #00A1EA; }
-
.si-minds::before { content: "\f0f5"; }
+
.si-minds::before { content: "\f0f6"; }
.si-minds.si--color::before { color: #FED12F; }
-
.si-minetest::before { content: "\f0f6"; }
+
.si-minetest::before { content: "\f0f7"; }
.si-minetest.si--color::before { color: #53AC56; }
-
.si-mingww64::before { content: "\f0f7"; }
+
.si-mingww64::before { content: "\f0f8"; }
.si-mingww64.si--color::before { color: #000000; }
-
.si-mini::before { content: "\f0f8"; }
+
.si-mini::before { content: "\f0f9"; }
.si-mini.si--color::before { color: #000000; }
-
.si-minio::before { content: "\f0f9"; }
+
.si-minio::before { content: "\f0fa"; }
.si-minio.si--color::before { color: #C72E49; }
-
.si-mintlify::before { content: "\f0fa"; }
+
.si-mintlify::before { content: "\f0fb"; }
.si-mintlify.si--color::before { color: #18E299; }
-
.si-minutemailer::before { content: "\f0fb"; }
+
.si-minutemailer::before { content: "\f0fc"; }
.si-minutemailer.si--color::before { color: #30B980; }
-
.si-miraheze::before { content: "\f0fc"; }
+
.si-miraheze::before { content: "\f0fd"; }
.si-miraheze.si--color::before { color: #FFFC00; }
-
.si-miro::before { content: "\f0fd"; }
+
.si-miro::before { content: "\f0fe"; }
.si-miro.si--color::before { color: #050038; }
-
.si-misskey::before { content: "\f0fe"; }
+
.si-misskey::before { content: "\f0ff"; }
.si-misskey.si--color::before { color: #A1CA03; }
-
.si-mitsubishi::before { content: "\f0ff"; }
+
.si-mitsubishi::before { content: "\f100"; }
.si-mitsubishi.si--color::before { color: #E60012; }
-
.si-mix::before { content: "\f100"; }
+
.si-mix::before { content: "\f101"; }
.si-mix.si--color::before { color: #FF8126; }
-
.si-mixcloud::before { content: "\f101"; }
+
.si-mixcloud::before { content: "\f102"; }
.si-mixcloud.si--color::before { color: #5000FF; }
-
.si-mixpanel::before { content: "\f102"; }
+
.si-mixpanel::before { content: "\f103"; }
.si-mixpanel.si--color::before { color: #7856FF; }
-
.si-mlb::before { content: "\f103"; }
+
.si-mlb::before { content: "\f104"; }
.si-mlb.si--color::before { color: #041E42; }
-
.si-mlflow::before { content: "\f104"; }
+
.si-mlflow::before { content: "\f105"; }
.si-mlflow.si--color::before { color: #0194E2; }
-
.si-mobx::before { content: "\f105"; }
+
.si-mobx::before { content: "\f106"; }
.si-mobx.si--color::before { color: #FF9955; }
-
.si-mobxstatetree::before { content: "\f106"; }
+
.si-mobxstatetree::before { content: "\f107"; }
.si-mobxstatetree.si--color::before { color: #FF7102; }
-
.si-mocha::before { content: "\f107"; }
+
.si-mocha::before { content: "\f108"; }
.si-mocha.si--color::before { color: #8D6748; }
-
.si-mockserviceworker::before { content: "\f108"; }
+
.si-mockserviceworker::before { content: "\f109"; }
.si-mockserviceworker.si--color::before { color: #FF6A33; }
-
.si-modal::before { content: "\f109"; }
+
.si-modal::before { content: "\f10a"; }
.si-modal.si--color::before { color: #7FEE64; }
-
.si-modin::before { content: "\f10a"; }
+
.si-modin::before { content: "\f10b"; }
.si-modin.si--color::before { color: #001729; }
-
.si-modrinth::before { content: "\f10b"; }
+
.si-modrinth::before { content: "\f10c"; }
.si-modrinth.si--color::before { color: #00AF5C; }
-
.si-modx::before { content: "\f10c"; }
+
.si-modx::before { content: "\f10d"; }
.si-modx.si--color::before { color: #102C53; }
-
.si-mojeek::before { content: "\f10d"; }
+
.si-mojeek::before { content: "\f10e"; }
.si-mojeek.si--color::before { color: #7AB93C; }
-
.si-moleculer::before { content: "\f10e"; }
+
.si-moleculer::before { content: "\f10f"; }
.si-moleculer.si--color::before { color: #3CAFCE; }
-
.si-momenteo::before { content: "\f10f"; }
+
.si-momenteo::before { content: "\f110"; }
.si-momenteo.si--color::before { color: #5A6AB1; }
-
.si-monero::before { content: "\f110"; }
+
.si-monero::before { content: "\f111"; }
.si-monero.si--color::before { color: #FF6600; }
-
.si-moneygram::before { content: "\f111"; }
+
.si-moneygram::before { content: "\f112"; }
.si-moneygram.si--color::before { color: #DA291C; }
-
.si-mongodb::before { content: "\f112"; }
+
.si-mongodb::before { content: "\f113"; }
.si-mongodb.si--color::before { color: #47A248; }
-
.si-mongoose::before { content: "\f113"; }
+
.si-mongoose::before { content: "\f114"; }
.si-mongoose.si--color::before { color: #880000; }
-
.si-mongoosedotws::before { content: "\f114"; }
+
.si-mongoosedotws::before { content: "\f115"; }
.si-mongoosedotws.si--color::before { color: #F04D35; }
-
.si-monica::before { content: "\f115"; }
+
.si-monica::before { content: "\f116"; }
.si-monica.si--color::before { color: #2C2B29; }
-
.si-monkeytie::before { content: "\f116"; }
+
.si-monkeytie::before { content: "\f117"; }
.si-monkeytie.si--color::before { color: #1A52C2; }
-
.si-monkeytype::before { content: "\f117"; }
+
.si-monkeytype::before { content: "\f118"; }
.si-monkeytype.si--color::before { color: #E2B714; }
-
.si-monogame::before { content: "\f118"; }
+
.si-monogame::before { content: "\f119"; }
.si-monogame.si--color::before { color: #E73C00; }
-
.si-monoprix::before { content: "\f119"; }
+
.si-monoprix::before { content: "\f11a"; }
.si-monoprix.si--color::before { color: #FB1911; }
-
.si-monster::before { content: "\f11a"; }
+
.si-monster::before { content: "\f11b"; }
.si-monster.si--color::before { color: #6D4C9F; }
-
.si-monzo::before { content: "\f11b"; }
+
.si-monzo::before { content: "\f11c"; }
.si-monzo.si--color::before { color: #14233C; }
-
.si-moo::before { content: "\f11c"; }
+
.si-moo::before { content: "\f11d"; }
.si-moo.si--color::before { color: #00945E; }
-
.si-moodle::before { content: "\f11d"; }
+
.si-moodle::before { content: "\f11e"; }
.si-moodle.si--color::before { color: #F98012; }
-
.si-moonrepo::before { content: "\f11e"; }
+
.si-moonrepo::before { content: "\f11f"; }
.si-moonrepo.si--color::before { color: #6F53F3; }
-
.si-moq::before { content: "\f11f"; }
+
.si-moq::before { content: "\f120"; }
.si-moq.si--color::before { color: #F4BE00; }
-
.si-moqups::before { content: "\f120"; }
+
.si-moqups::before { content: "\f121"; }
.si-moqups.si--color::before { color: #006BE5; }
-
.si-morrisons::before { content: "\f121"; }
+
.si-morrisons::before { content: "\f122"; }
.si-morrisons.si--color::before { color: #007531; }
-
.si-moscowmetro::before { content: "\f122"; }
+
.si-moscowmetro::before { content: "\f123"; }
.si-moscowmetro.si--color::before { color: #D9232E; }
-
.si-motorola::before { content: "\f123"; }
+
.si-motorola::before { content: "\f124"; }
.si-motorola.si--color::before { color: #E1140A; }
-
.si-movistar::before { content: "\f124"; }
+
.si-movistar::before { content: "\f125"; }
.si-movistar.si--color::before { color: #019DF4; }
-
.si-mozilla::before { content: "\f125"; }
+
.si-mozilla::before { content: "\f126"; }
.si-mozilla.si--color::before { color: #000000; }
-
.si-mpv::before { content: "\f126"; }
+
.si-mpv::before { content: "\f127"; }
.si-mpv.si--color::before { color: #691F69; }
-
.si-mqtt::before { content: "\f127"; }
+
.si-mqtt::before { content: "\f128"; }
.si-mqtt.si--color::before { color: #660066; }
-
.si-msi::before { content: "\f128"; }
+
.si-msi::before { content: "\f129"; }
.si-msi.si--color::before { color: #FF0000; }
-
.si-msibusiness::before { content: "\f129"; }
+
.si-msibusiness::before { content: "\f12a"; }
.si-msibusiness.si--color::before { color: #9A8555; }
-
.si-mta::before { content: "\f12a"; }
+
.si-mta::before { content: "\f12b"; }
.si-mta.si--color::before { color: #0039A6; }
-
.si-mtr::before { content: "\f12b"; }
+
.si-mtr::before { content: "\f12c"; }
.si-mtr.si--color::before { color: #AC2E45; }
-
.si-mubi::before { content: "\f12c"; }
+
.si-mubi::before { content: "\f12d"; }
.si-mubi.si--color::before { color: #000000; }
-
.si-mui::before { content: "\f12d"; }
+
.si-mui::before { content: "\f12e"; }
.si-mui.si--color::before { color: #007FFF; }
-
.si-mulesoft::before { content: "\f12e"; }
+
.si-mulesoft::before { content: "\f12f"; }
.si-mulesoft.si--color::before { color: #00A0DF; }
-
.si-muller::before { content: "\f12f"; }
+
.si-muller::before { content: "\f130"; }
.si-muller.si--color::before { color: #F46519; }
-
.si-mullvad::before { content: "\f130"; }
+
.si-mullvad::before { content: "\f131"; }
.si-mullvad.si--color::before { color: #294D73; }
-
.si-multisim::before { content: "\f131"; }
+
.si-multisim::before { content: "\f132"; }
.si-multisim.si--color::before { color: #57B685; }
-
.si-mumble::before { content: "\f132"; }
+
.si-mumble::before { content: "\f133"; }
.si-mumble.si--color::before { color: #000000; }
-
.si-muo::before { content: "\f133"; }
+
.si-muo::before { content: "\f134"; }
.si-muo.si--color::before { color: #C60D0D; }
-
.si-mural::before { content: "\f134"; }
+
.si-mural::before { content: "\f135"; }
.si-mural.si--color::before { color: #FF4B4B; }
-
.si-musescore::before { content: "\f135"; }
+
.si-musescore::before { content: "\f136"; }
.si-musescore.si--color::before { color: #1A70B8; }
-
.si-musicbrainz::before { content: "\f136"; }
+
.si-musicbrainz::before { content: "\f137"; }
.si-musicbrainz.si--color::before { color: #BA478F; }
-
.si-mxlinux::before { content: "\f137"; }
+
.si-mxlinux::before { content: "\f138"; }
.si-mxlinux.si--color::before { color: #000000; }
-
.si-myanimelist::before { content: "\f138"; }
+
.si-myanimelist::before { content: "\f139"; }
.si-myanimelist.si--color::before { color: #2E51A2; }
-
.si-myget::before { content: "\f139"; }
+
.si-myget::before { content: "\f13a"; }
.si-myget.si--color::before { color: #0C79CE; }
-
.si-myob::before { content: "\f13a"; }
+
.si-myob::before { content: "\f13b"; }
.si-myob.si--color::before { color: #6100A5; }
-
.si-myspace::before { content: "\f13b"; }
+
.si-myspace::before { content: "\f13c"; }
.si-myspace.si--color::before { color: #030303; }
-
.si-mysql::before { content: "\f13c"; }
+
.si-mysql::before { content: "\f13d"; }
.si-mysql.si--color::before { color: #4479A1; }
-
.si-n26::before { content: "\f13d"; }
+
.si-n26::before { content: "\f13e"; }
.si-n26.si--color::before { color: #48AC98; }
-
.si-n8n::before { content: "\f13e"; }
+
.si-n8n::before { content: "\f13f"; }
.si-n8n.si--color::before { color: #EA4B71; }
-
.si-namebase::before { content: "\f13f"; }
+
.si-namebase::before { content: "\f140"; }
.si-namebase.si--color::before { color: #0068FF; }
-
.si-namecheap::before { content: "\f140"; }
+
.si-namecheap::before { content: "\f141"; }
.si-namecheap.si--color::before { color: #DE3723; }
-
.si-namemc::before { content: "\f141"; }
+
.si-namemc::before { content: "\f142"; }
.si-namemc.si--color::before { color: #12161A; }
-
.si-namesilo::before { content: "\f142"; }
+
.si-namesilo::before { content: "\f143"; }
.si-namesilo.si--color::before { color: #031B4E; }
-
.si-namuwiki::before { content: "\f143"; }
+
.si-namuwiki::before { content: "\f144"; }
.si-namuwiki.si--color::before { color: #008275; }
-
.si-nano::before { content: "\f144"; }
+
.si-nano::before { content: "\f145"; }
.si-nano.si--color::before { color: #4A90E2; }
-
.si-nanostores::before { content: "\f145"; }
+
.si-nanostores::before { content: "\f146"; }
.si-nanostores.si--color::before { color: #000000; }
-
.si-napster::before { content: "\f146"; }
+
.si-napster::before { content: "\f147"; }
.si-napster.si--color::before { color: #2259FF; }
-
.si-nasa::before { content: "\f147"; }
+
.si-nasa::before { content: "\f148"; }
.si-nasa.si--color::before { color: #E03C31; }
-
.si-nationalgrid::before { content: "\f148"; }
+
.si-nationalgrid::before { content: "\f149"; }
.si-nationalgrid.si--color::before { color: #00148C; }
-
.si-nationalrail::before { content: "\f149"; }
+
.si-nationalrail::before { content: "\f14a"; }
.si-nationalrail.si--color::before { color: #003366; }
-
.si-nativescript::before { content: "\f14a"; }
+
.si-nativescript::before { content: "\f14b"; }
.si-nativescript.si--color::before { color: #65ADF1; }
-
.si-natsdotio::before { content: "\f14b"; }
+
.si-natsdotio::before { content: "\f14c"; }
.si-natsdotio.si--color::before { color: #27AAE1; }
-
.si-naver::before { content: "\f14c"; }
+
.si-naver::before { content: "\f14d"; }
.si-naver.si--color::before { color: #03C75A; }
-
.si-nba::before { content: "\f14d"; }
+
.si-nba::before { content: "\f14e"; }
.si-nba.si--color::before { color: #253B73; }
-
.si-nbb::before { content: "\f14e"; }
+
.si-nbb::before { content: "\f14f"; }
.si-nbb.si--color::before { color: #FF7100; }
-
.si-nbc::before { content: "\f14f"; }
+
.si-nbc::before { content: "\f150"; }
.si-nbc.si--color::before { color: #222222; }
-
.si-ndr::before { content: "\f150"; }
+
.si-ndr::before { content: "\f151"; }
.si-ndr.si--color::before { color: #0C1754; }
-
.si-near::before { content: "\f151"; }
+
.si-near::before { content: "\f152"; }
.si-near.si--color::before { color: #000000; }
-
.si-nebula::before { content: "\f152"; }
+
.si-nebula::before { content: "\f153"; }
.si-nebula.si--color::before { color: #2CADFE; }
-
.si-nec::before { content: "\f153"; }
+
.si-nec::before { content: "\f154"; }
.si-nec.si--color::before { color: #1414A0; }
-
.si-neo4j::before { content: "\f154"; }
+
.si-neo4j::before { content: "\f155"; }
.si-neo4j.si--color::before { color: #4581C3; }
-
.si-neovim::before { content: "\f155"; }
+
.si-neovim::before { content: "\f156"; }
.si-neovim.si--color::before { color: #57A143; }
-
.si-neptune::before { content: "\f156"; }
+
.si-neptune::before { content: "\f157"; }
.si-neptune.si--color::before { color: #5B69C2; }
-
.si-nestjs::before { content: "\f157"; }
+
.si-nestjs::before { content: "\f158"; }
.si-nestjs.si--color::before { color: #E0234E; }
-
.si-netapp::before { content: "\f158"; }
+
.si-netapp::before { content: "\f159"; }
.si-netapp.si--color::before { color: #0067C5; }
-
.si-netbsd::before { content: "\f159"; }
+
.si-netbsd::before { content: "\f15a"; }
.si-netbsd.si--color::before { color: #FF6600; }
-
.si-netcup::before { content: "\f15a"; }
+
.si-netcup::before { content: "\f15b"; }
.si-netcup.si--color::before { color: #056473; }
-
.si-netdata::before { content: "\f15b"; }
+
.si-netdata::before { content: "\f15c"; }
.si-netdata.si--color::before { color: #00AB44; }
-
.si-neteasecloudmusic::before { content: "\f15c"; }
+
.si-neteasecloudmusic::before { content: "\f15d"; }
.si-neteasecloudmusic.si--color::before { color: #D43C33; }
-
.si-netflix::before { content: "\f15d"; }
+
.si-netflix::before { content: "\f15e"; }
.si-netflix.si--color::before { color: #E50914; }
-
.si-netgear::before { content: "\f15e"; }
+
.si-netgear::before { content: "\f15f"; }
.si-netgear.si--color::before { color: #2C262D; }
-
.si-netlify::before { content: "\f15f"; }
+
.si-netlify::before { content: "\f160"; }
.si-netlify.si--color::before { color: #00C7B7; }
-
.si-nette::before { content: "\f160"; }
+
.si-nette::before { content: "\f161"; }
.si-nette.si--color::before { color: #3484D2; }
-
.si-netto::before { content: "\f161"; }
+
.si-netto::before { content: "\f162"; }
.si-netto.si--color::before { color: #FFE500; }
-
.si-neutralinojs::before { content: "\f162"; }
+
.si-neutralinojs::before { content: "\f163"; }
.si-neutralinojs.si--color::before { color: #F89901; }
-
.si-newbalance::before { content: "\f163"; }
+
.si-newbalance::before { content: "\f164"; }
.si-newbalance.si--color::before { color: #CF0A2C; }
-
.si-newjapanprowrestling::before { content: "\f164"; }
+
.si-newjapanprowrestling::before { content: "\f165"; }
.si-newjapanprowrestling.si--color::before { color: #FF160B; }
-
.si-newrelic::before { content: "\f165"; }
+
.si-newrelic::before { content: "\f166"; }
.si-newrelic.si--color::before { color: #1CE783; }
-
.si-newyorktimes::before { content: "\f166"; }
+
.si-newyorktimes::before { content: "\f167"; }
.si-newyorktimes.si--color::before { color: #000000; }
-
.si-newegg::before { content: "\f167"; }
+
.si-newegg::before { content: "\f168"; }
.si-newegg.si--color::before { color: #E05E00; }
-
.si-nexon::before { content: "\f168"; }
+
.si-nexon::before { content: "\f169"; }
.si-nexon.si--color::before { color: #000000; }
-
.si-nextdotjs::before { content: "\f169"; }
+
.si-nextdotjs::before { content: "\f16a"; }
.si-nextdotjs.si--color::before { color: #000000; }
-
.si-nextbilliondotai::before { content: "\f16a"; }
+
.si-nextbilliondotai::before { content: "\f16b"; }
.si-nextbilliondotai.si--color::before { color: #8D5A9E; }
-
.si-nextcloud::before { content: "\f16b"; }
+
.si-nextcloud::before { content: "\f16c"; }
.si-nextcloud.si--color::before { color: #0082C9; }
-
.si-nextdns::before { content: "\f16c"; }
+
.si-nextdns::before { content: "\f16d"; }
.si-nextdns.si--color::before { color: #007BFF; }
-
.si-nextdoor::before { content: "\f16d"; }
+
.si-nextdoor::before { content: "\f16e"; }
.si-nextdoor.si--color::before { color: #8ED500; }
-
.si-nextflow::before { content: "\f16e"; }
+
.si-nextflow::before { content: "\f16f"; }
.si-nextflow.si--color::before { color: #0DC09D; }
-
.si-nextra::before { content: "\f16f"; }
+
.si-nextra::before { content: "\f170"; }
.si-nextra.si--color::before { color: #000000; }
-
.si-nextui::before { content: "\f170"; }
+
.si-nextui::before { content: "\f171"; }
.si-nextui.si--color::before { color: #000000; }
-
.si-nexusmods::before { content: "\f171"; }
+
.si-nexusmods::before { content: "\f172"; }
.si-nexusmods.si--color::before { color: #E6832B; }
-
.si-nfcore::before { content: "\f172"; }
+
.si-nfcore::before { content: "\f173"; }
.si-nfcore.si--color::before { color: #24B064; }
-
.si-nfc::before { content: "\f173"; }
+
.si-nfc::before { content: "\f174"; }
.si-nfc.si--color::before { color: #002E5F; }
-
.si-nginx::before { content: "\f174"; }
+
.si-nginx::before { content: "\f175"; }
.si-nginx.si--color::before { color: #009639; }
-
.si-nginxproxymanager::before { content: "\f175"; }
+
.si-nginxproxymanager::before { content: "\f176"; }
.si-nginxproxymanager.si--color::before { color: #F15833; }
-
.si-ngrok::before { content: "\f176"; }
+
.si-ngrok::before { content: "\f177"; }
.si-ngrok.si--color::before { color: #1F1E37; }
-
.si-ngrx::before { content: "\f177"; }
+
.si-ngrx::before { content: "\f178"; }
.si-ngrx.si--color::before { color: #BA2BD2; }
-
.si-nhl::before { content: "\f178"; }
+
.si-nhl::before { content: "\f179"; }
.si-nhl.si--color::before { color: #000000; }
-
.si-nicehash::before { content: "\f179"; }
+
.si-nicehash::before { content: "\f17a"; }
.si-nicehash.si--color::before { color: #FBC342; }
-
.si-niconico::before { content: "\f17a"; }
+
.si-niconico::before { content: "\f17b"; }
.si-niconico.si--color::before { color: #231815; }
-
.si-nike::before { content: "\f17b"; }
+
.si-nike::before { content: "\f17c"; }
.si-nike.si--color::before { color: #111111; }
-
.si-nikon::before { content: "\f17c"; }
+
.si-nikon::before { content: "\f17d"; }
.si-nikon.si--color::before { color: #FFE100; }
-
.si-nim::before { content: "\f17d"; }
+
.si-nim::before { content: "\f17e"; }
.si-nim.si--color::before { color: #FFE953; }
-
.si-nissan::before { content: "\f17e"; }
+
.si-nissan::before { content: "\f17f"; }
.si-nissan.si--color::before { color: #C3002F; }
-
.si-nixos::before { content: "\f17f"; }
+
.si-nixos::before { content: "\f180"; }
.si-nixos.si--color::before { color: #5277C3; }
-
.si-nodered::before { content: "\f180"; }
+
.si-nodered::before { content: "\f181"; }
.si-nodered.si--color::before { color: #8F0000; }
-
.si-nodedotjs::before { content: "\f181"; }
+
.si-nodedotjs::before { content: "\f182"; }
.si-nodedotjs.si--color::before { color: #5FA04E; }
-
.si-nodemon::before { content: "\f182"; }
+
.si-nodemon::before { content: "\f183"; }
.si-nodemon.si--color::before { color: #76D04B; }
-
.si-nokia::before { content: "\f183"; }
+
.si-nokia::before { content: "\f184"; }
.si-nokia.si--color::before { color: #005AFF; }
-
.si-nomad::before { content: "\f184"; }
+
.si-nomad::before { content: "\f185"; }
.si-nomad.si--color::before { color: #00CA8E; }
-
.si-norco::before { content: "\f185"; }
+
.si-norco::before { content: "\f186"; }
.si-norco.si--color::before { color: #00FF00; }
-
.si-nordicsemiconductor::before { content: "\f186"; }
+
.si-nordicsemiconductor::before { content: "\f187"; }
.si-nordicsemiconductor.si--color::before { color: #00A9CE; }
-
.si-nordvpn::before { content: "\f187"; }
+
.si-nordvpn::before { content: "\f188"; }
.si-nordvpn.si--color::before { color: #4687FF; }
-
.si-normalizedotcss::before { content: "\f188"; }
+
.si-normalizedotcss::before { content: "\f189"; }
.si-normalizedotcss.si--color::before { color: #E3695F; }
-
.si-norton::before { content: "\f189"; }
+
.si-norton::before { content: "\f18a"; }
.si-norton.si--color::before { color: #FFE01A; }
-
.si-norwegian::before { content: "\f18a"; }
+
.si-norwegian::before { content: "\f18b"; }
.si-norwegian.si--color::before { color: #D81939; }
-
.si-notepadplusplus::before { content: "\f18b"; }
+
.si-notepadplusplus::before { content: "\f18c"; }
.si-notepadplusplus.si--color::before { color: #90E59A; }
-
.si-notion::before { content: "\f18c"; }
+
.si-notion::before { content: "\f18d"; }
.si-notion.si--color::before { color: #000000; }
-
.si-notist::before { content: "\f18d"; }
+
.si-notist::before { content: "\f18e"; }
.si-notist.si--color::before { color: #333333; }
-
.si-nounproject::before { content: "\f18e"; }
+
.si-nounproject::before { content: "\f18f"; }
.si-nounproject.si--color::before { color: #000000; }
-
.si-novu::before { content: "\f18f"; }
+
.si-novu::before { content: "\f190"; }
.si-novu.si--color::before { color: #000000; }
-
.si-now::before { content: "\f190"; }
+
.si-now::before { content: "\f191"; }
.si-now.si--color::before { color: #001211; }
-
.si-npm::before { content: "\f191"; }
+
.si-npm::before { content: "\f192"; }
.si-npm.si--color::before { color: #CB3837; }
-
.si-nrwl::before { content: "\f192"; }
+
.si-nrwl::before { content: "\f193"; }
.si-nrwl.si--color::before { color: #96D7E8; }
-
.si-nsis::before { content: "\f193"; }
+
.si-nsis::before { content: "\f194"; }
.si-nsis.si--color::before { color: #01B0F0; }
-
.si-ntfy::before { content: "\f194"; }
+
.si-ntfy::before { content: "\f195"; }
.si-ntfy.si--color::before { color: #317F6F; }
-
.si-nubank::before { content: "\f195"; }
+
.si-nubank::before { content: "\f196"; }
.si-nubank.si--color::before { color: #820AD1; }
-
.si-nucleo::before { content: "\f196"; }
+
.si-nucleo::before { content: "\f197"; }
.si-nucleo.si--color::before { color: #252B2D; }
-
.si-nuget::before { content: "\f197"; }
+
.si-nuget::before { content: "\f198"; }
.si-nuget.si--color::before { color: #004880; }
-
.si-nuke::before { content: "\f198"; }
+
.si-nuke::before { content: "\f199"; }
.si-nuke.si--color::before { color: #000000; }
-
.si-numba::before { content: "\f199"; }
+
.si-numba::before { content: "\f19a"; }
.si-numba.si--color::before { color: #00A3E0; }
-
.si-numpy::before { content: "\f19a"; }
+
.si-numpy::before { content: "\f19b"; }
.si-numpy.si--color::before { color: #013243; }
-
.si-nunjucks::before { content: "\f19b"; }
+
.si-nunjucks::before { content: "\f19c"; }
.si-nunjucks.si--color::before { color: #1C4913; }
-
.si-nushell::before { content: "\f19c"; }
+
.si-nushell::before { content: "\f19d"; }
.si-nushell.si--color::before { color: #4E9A06; }
-
.si-nutanix::before { content: "\f19d"; }
+
.si-nutanix::before { content: "\f19e"; }
.si-nutanix.si--color::before { color: #024DA1; }
-
.si-nuxt::before { content: "\f19e"; }
+
.si-nuxt::before { content: "\f19f"; }
.si-nuxt.si--color::before { color: #00DC82; }
-
.si-nvidia::before { content: "\f19f"; }
+
.si-nvidia::before { content: "\f1a0"; }
.si-nvidia.si--color::before { color: #76B900; }
-
.si-nvm::before { content: "\f1a0"; }
+
.si-nvm::before { content: "\f1a1"; }
.si-nvm.si--color::before { color: #F4DD4B; }
-
.si-nx::before { content: "\f1a1"; }
+
.si-nx::before { content: "\f1a2"; }
.si-nx.si--color::before { color: #143055; }
-
.si-nxp::before { content: "\f1a2"; }
+
.si-nxp::before { content: "\f1a3"; }
.si-nxp.si--color::before { color: #000000; }
-
.si-nzxt::before { content: "\f1a3"; }
+
.si-nzxt::before { content: "\f1a4"; }
.si-nzxt.si--color::before { color: #000000; }
-
.si-oreilly::before { content: "\f1a4"; }
+
.si-oreilly::before { content: "\f1a5"; }
.si-oreilly.si--color::before { color: #D3002D; }
-
.si-o2::before { content: "\f1a5"; }
+
.si-o2::before { content: "\f1a6"; }
.si-o2.si--color::before { color: #0050FF; }
-
.si-obb::before { content: "\f1a6"; }
+
.si-obb::before { content: "\f1a7"; }
.si-obb.si--color::before { color: #E40327; }
-
.si-obsstudio::before { content: "\f1a7"; }
+
.si-obsstudio::before { content: "\f1a8"; }
.si-obsstudio.si--color::before { color: #302E31; }
-
.si-observable::before { content: "\f1a8"; }
+
.si-observable::before { content: "\f1a9"; }
.si-observable.si--color::before { color: #353E58; }
-
.si-obsidian::before { content: "\f1a9"; }
+
.si-obsidian::before { content: "\f1aa"; }
.si-obsidian.si--color::before { color: #7C3AED; }
-
.si-obtainium::before { content: "\f1aa"; }
+
.si-obtainium::before { content: "\f1ab"; }
.si-obtainium.si--color::before { color: #D2BCFD; }
-
.si-ocaml::before { content: "\f1ab"; }
+
.si-ocaml::before { content: "\f1ac"; }
.si-ocaml.si--color::before { color: #EC6813; }
-
.si-oclc::before { content: "\f1ac"; }
+
.si-oclc::before { content: "\f1ad"; }
.si-oclc.si--color::before { color: #007DBA; }
-
.si-oclif::before { content: "\f1ad"; }
+
.si-oclif::before { content: "\f1ae"; }
.si-oclif.si--color::before { color: #000000; }
-
.si-octanerender::before { content: "\f1ae"; }
+
.si-octanerender::before { content: "\f1af"; }
.si-octanerender.si--color::before { color: #000000; }
-
.si-octave::before { content: "\f1af"; }
+
.si-octave::before { content: "\f1b0"; }
.si-octave.si--color::before { color: #0790C0; }
-
.si-octobercms::before { content: "\f1b0"; }
+
.si-octobercms::before { content: "\f1b1"; }
.si-octobercms.si--color::before { color: #DB6A26; }
-
.si-octoprint::before { content: "\f1b1"; }
+
.si-octoprint::before { content: "\f1b2"; }
.si-octoprint.si--color::before { color: #13C100; }
-
.si-octopusdeploy::before { content: "\f1b2"; }
+
.si-octopusdeploy::before { content: "\f1b3"; }
.si-octopusdeploy.si--color::before { color: #2F93E0; }
-
.si-oculus::before { content: "\f1b3"; }
+
.si-oculus::before { content: "\f1b4"; }
.si-oculus.si--color::before { color: #1C1E20; }
-
.si-odin::before { content: "\f1b4"; }
+
.si-odin::before { content: "\f1b5"; }
.si-odin.si--color::before { color: #3882D2; }
-
.si-odnoklassniki::before { content: "\f1b5"; }
+
.si-odnoklassniki::before { content: "\f1b6"; }
.si-odnoklassniki.si--color::before { color: #EE8208; }
-
.si-odoo::before { content: "\f1b6"; }
+
.si-odoo::before { content: "\f1b7"; }
.si-odoo.si--color::before { color: #714B67; }
-
.si-odysee::before { content: "\f1b7"; }
+
.si-odysee::before { content: "\f1b8"; }
.si-odysee.si--color::before { color: #EF1970; }
-
.si-ohdear::before { content: "\f1b8"; }
+
.si-ohdear::before { content: "\f1b9"; }
.si-ohdear.si--color::before { color: #FF3900; }
-
.si-okcupid::before { content: "\f1b9"; }
+
.si-okcupid::before { content: "\f1ba"; }
.si-okcupid.si--color::before { color: #0500BE; }
-
.si-okta::before { content: "\f1ba"; }
+
.si-okta::before { content: "\f1bb"; }
.si-okta.si--color::before { color: #007DC1; }
-
.si-okx::before { content: "\f1bb"; }
+
.si-okx::before { content: "\f1bc"; }
.si-okx.si--color::before { color: #000000; }
-
.si-ollama::before { content: "\f1bc"; }
+
.si-ollama::before { content: "\f1bd"; }
.si-ollama.si--color::before { color: #000000; }
-
.si-omadacloud::before { content: "\f1bd"; }
+
.si-omadacloud::before { content: "\f1be"; }
.si-omadacloud.si--color::before { color: #10C1D0; }
-
.si-oneplus::before { content: "\f1be"; }
+
.si-oneplus::before { content: "\f1bf"; }
.si-oneplus.si--color::before { color: #F5010C; }
-
.si-onlyfans::before { content: "\f1bf"; }
+
.si-onlyfans::before { content: "\f1c0"; }
.si-onlyfans.si--color::before { color: #00AFF0; }
-
.si-onlyoffice::before { content: "\f1c0"; }
+
.si-onlyoffice::before { content: "\f1c1"; }
.si-onlyoffice.si--color::before { color: #444444; }
-
.si-onnx::before { content: "\f1c1"; }
+
.si-onnx::before { content: "\f1c2"; }
.si-onnx.si--color::before { color: #005CED; }
-
.si-onstar::before { content: "\f1c2"; }
+
.si-onstar::before { content: "\f1c3"; }
.si-onstar.si--color::before { color: #003D7D; }
-
.si-opel::before { content: "\f1c3"; }
+
.si-opel::before { content: "\f1c4"; }
.si-opel.si--color::before { color: #F7FF14; }
-
.si-openaccess::before { content: "\f1c4"; }
+
.si-openaccess::before { content: "\f1c5"; }
.si-openaccess.si--color::before { color: #F68212; }
-
.si-openbadges::before { content: "\f1c5"; }
+
.si-openbadges::before { content: "\f1c6"; }
.si-openbadges.si--color::before { color: #073B5A; }
-
.si-openbugbounty::before { content: "\f1c6"; }
+
.si-openbugbounty::before { content: "\f1c7"; }
.si-openbugbounty.si--color::before { color: #F67909; }
-
.si-opencollective::before { content: "\f1c7"; }
+
.si-opencollective::before { content: "\f1c8"; }
.si-opencollective.si--color::before { color: #7FADF2; }
-
.si-opencontainersinitiative::before { content: "\f1c8"; }
+
.si-opencontainersinitiative::before { content: "\f1c9"; }
.si-opencontainersinitiative.si--color::before { color: #262261; }
-
.si-opensourcehardware::before { content: "\f1c9"; }
+
.si-opensourcehardware::before { content: "\f1ca"; }
.si-opensourcehardware.si--color::before { color: #0099B0; }
-
.si-opensourceinitiative::before { content: "\f1ca"; }
+
.si-opensourceinitiative::before { content: "\f1cb"; }
.si-opensourceinitiative.si--color::before { color: #3DA639; }
-
.si-open3d::before { content: "\f1cb"; }
+
.si-open3d::before { content: "\f1cc"; }
.si-open3d.si--color::before { color: #000000; }
-
.si-openai::before { content: "\f1cc"; }
+
.si-openai::before { content: "\f1cd"; }
.si-openai.si--color::before { color: #412991; }
-
.si-openaigym::before { content: "\f1cd"; }
+
.si-openaigym::before { content: "\f1ce"; }
.si-openaigym.si--color::before { color: #0081A5; }
-
.si-openapiinitiative::before { content: "\f1ce"; }
+
.si-openapiinitiative::before { content: "\f1cf"; }
.si-openapiinitiative.si--color::before { color: #6BA539; }
-
.si-openbsd::before { content: "\f1cf"; }
+
.si-openbsd::before { content: "\f1d0"; }
.si-openbsd.si--color::before { color: #F2CA30; }
-
.si-opencv::before { content: "\f1d0"; }
+
.si-opencv::before { content: "\f1d1"; }
.si-opencv.si--color::before { color: #5C3EE8; }
-
.si-openfaas::before { content: "\f1d1"; }
+
.si-openfaas::before { content: "\f1d2"; }
.si-openfaas.si--color::before { color: #3B5EE9; }
-
.si-opengl::before { content: "\f1d2"; }
+
.si-opengl::before { content: "\f1d3"; }
.si-opengl.si--color::before { color: #5586A4; }
-
.si-openhab::before { content: "\f1d3"; }
+
.si-openhab::before { content: "\f1d4"; }
.si-openhab.si--color::before { color: #E64A19; }
-
.si-openid::before { content: "\f1d4"; }
+
.si-openid::before { content: "\f1d5"; }
.si-openid.si--color::before { color: #F78C40; }
-
.si-openjdk::before { content: "\f1d5"; }
+
.si-openjdk::before { content: "\f1d6"; }
.si-openjdk.si--color::before { color: #000000; }
-
.si-openjsfoundation::before { content: "\f1d6"; }
+
.si-openjsfoundation::before { content: "\f1d7"; }
.si-openjsfoundation.si--color::before { color: #0075C9; }
-
.si-openlayers::before { content: "\f1d7"; }
+
.si-openlayers::before { content: "\f1d8"; }
.si-openlayers.si--color::before { color: #1F6B75; }
-
.si-openmediavault::before { content: "\f1d8"; }
+
.si-openmediavault::before { content: "\f1d9"; }
.si-openmediavault.si--color::before { color: #5DACDF; }
-
.si-openmined::before { content: "\f1d9"; }
+
.si-openmined::before { content: "\f1da"; }
.si-openmined.si--color::before { color: #ED986C; }
-
.si-opennebula::before { content: "\f1da"; }
+
.si-opennebula::before { content: "\f1db"; }
.si-opennebula.si--color::before { color: #0097C2; }
-
.si-openproject::before { content: "\f1db"; }
+
.si-openproject::before { content: "\f1dc"; }
.si-openproject.si--color::before { color: #0770B8; }
-
.si-openscad::before { content: "\f1dc"; }
+
.si-openscad::before { content: "\f1dd"; }
.si-openscad.si--color::before { color: #F9D72C; }
-
.si-opensea::before { content: "\f1dd"; }
+
.si-opensea::before { content: "\f1de"; }
.si-opensea.si--color::before { color: #2081E2; }
-
.si-opensearch::before { content: "\f1de"; }
+
.si-opensearch::before { content: "\f1df"; }
.si-opensearch.si--color::before { color: #005EB8; }
-
.si-openssl::before { content: "\f1df"; }
+
.si-openssl::before { content: "\f1e0"; }
.si-openssl.si--color::before { color: #721412; }
-
.si-openstack::before { content: "\f1e0"; }
+
.si-openstack::before { content: "\f1e1"; }
.si-openstack.si--color::before { color: #ED1944; }
-
.si-openstreetmap::before { content: "\f1e1"; }
+
.si-openstreetmap::before { content: "\f1e2"; }
.si-openstreetmap.si--color::before { color: #7EBC6F; }
-
.si-opensuse::before { content: "\f1e2"; }
+
.si-opensuse::before { content: "\f1e3"; }
.si-opensuse.si--color::before { color: #73BA25; }
-
.si-opentelemetry::before { content: "\f1e3"; }
+
.si-opentelemetry::before { content: "\f1e4"; }
.si-opentelemetry.si--color::before { color: #000000; }
-
.si-opentext::before { content: "\f1e4"; }
+
.si-opentext::before { content: "\f1e5"; }
.si-opentext.si--color::before { color: #000000; }
-
.si-opentofu::before { content: "\f1e5"; }
+
.si-opentofu::before { content: "\f1e6"; }
.si-opentofu.si--color::before { color: #FFDA18; }
-
.si-openverse::before { content: "\f1e6"; }
+
.si-openverse::before { content: "\f1e7"; }
.si-openverse.si--color::before { color: #FFE033; }
-
.si-openvpn::before { content: "\f1e7"; }
+
.si-openvpn::before { content: "\f1e8"; }
.si-openvpn.si--color::before { color: #EA7E20; }
-
.si-openwrt::before { content: "\f1e8"; }
+
.si-openwrt::before { content: "\f1e9"; }
.si-openwrt.si--color::before { color: #00B5E2; }
-
.si-openzeppelin::before { content: "\f1e9"; }
+
.si-openzeppelin::before { content: "\f1ea"; }
.si-openzeppelin.si--color::before { color: #4E5EE4; }
-
.si-openzfs::before { content: "\f1ea"; }
+
.si-openzfs::before { content: "\f1eb"; }
.si-openzfs.si--color::before { color: #2A667F; }
-
.si-opera::before { content: "\f1eb"; }
+
.si-opera::before { content: "\f1ec"; }
.si-opera.si--color::before { color: #FF1B2D; }
-
.si-operagx::before { content: "\f1ec"; }
+
.si-operagx::before { content: "\f1ed"; }
.si-operagx.si--color::before { color: #EE2950; }
-
.si-opnsense::before { content: "\f1ed"; }
+
.si-opnsense::before { content: "\f1ee"; }
.si-opnsense.si--color::before { color: #D94F00; }
-
.si-oppo::before { content: "\f1ee"; }
+
.si-oppo::before { content: "\f1ef"; }
.si-oppo.si--color::before { color: #2D683D; }
-
.si-opsgenie::before { content: "\f1ef"; }
+
.si-opsgenie::before { content: "\f1f0"; }
.si-opsgenie.si--color::before { color: #172B4D; }
-
.si-opslevel::before { content: "\f1f0"; }
+
.si-opslevel::before { content: "\f1f1"; }
.si-opslevel.si--color::before { color: #0A53E0; }
-
.si-optimism::before { content: "\f1f1"; }
+
.si-optimism::before { content: "\f1f2"; }
.si-optimism.si--color::before { color: #FF0420; }
-
.si-orange::before { content: "\f1f2"; }
+
.si-orange::before { content: "\f1f3"; }
.si-orange.si--color::before { color: #FF7900; }
-
.si-orcid::before { content: "\f1f3"; }
+
.si-orcid::before { content: "\f1f4"; }
.si-orcid.si--color::before { color: #A6CE39; }
-
.si-org::before { content: "\f1f4"; }
+
.si-org::before { content: "\f1f5"; }
.si-org.si--color::before { color: #77AA99; }
-
.si-organicmaps::before { content: "\f1f5"; }
+
.si-organicmaps::before { content: "\f1f6"; }
.si-organicmaps.si--color::before { color: #006C35; }
-
.si-origin::before { content: "\f1f6"; }
+
.si-origin::before { content: "\f1f7"; }
.si-origin.si--color::before { color: #F56C2D; }
-
.si-osano::before { content: "\f1f7"; }
+
.si-osano::before { content: "\f1f8"; }
.si-osano.si--color::before { color: #7764FA; }
-
.si-osf::before { content: "\f1f8"; }
+
.si-osf::before { content: "\f1f9"; }
.si-osf.si--color::before { color: #2CB9F1; }
-
.si-osgeo::before { content: "\f1f9"; }
+
.si-osgeo::before { content: "\f1fa"; }
.si-osgeo.si--color::before { color: #4CB05B; }
-
.si-oshkosh::before { content: "\f1fa"; }
+
.si-oshkosh::before { content: "\f1fb"; }
.si-oshkosh.si--color::before { color: #E6830F; }
-
.si-osmc::before { content: "\f1fb"; }
+
.si-osmc::before { content: "\f1fc"; }
.si-osmc.si--color::before { color: #17394A; }
-
.si-osu::before { content: "\f1fc"; }
+
.si-osu::before { content: "\f1fd"; }
.si-osu.si--color::before { color: #FF66AA; }
-
.si-otto::before { content: "\f1fd"; }
+
.si-otto::before { content: "\f1fe"; }
.si-otto.si--color::before { color: #D4021D; }
-
.si-outline::before { content: "\f1fe"; }
+
.si-outline::before { content: "\f1ff"; }
.si-outline.si--color::before { color: #000000; }
-
.si-overcast::before { content: "\f1ff"; }
+
.si-overcast::before { content: "\f200"; }
.si-overcast.si--color::before { color: #FC7E0F; }
-
.si-overleaf::before { content: "\f200"; }
+
.si-overleaf::before { content: "\f201"; }
.si-overleaf.si--color::before { color: #47A141; }
-
.si-ovh::before { content: "\f201"; }
+
.si-ovh::before { content: "\f202"; }
.si-ovh.si--color::before { color: #123F6D; }
-
.si-owasp::before { content: "\f202"; }
+
.si-owasp::before { content: "\f203"; }
.si-owasp.si--color::before { color: #000000; }
-
.si-dependencycheck::before { content: "\f203"; }
+
.si-dependencycheck::before { content: "\f204"; }
.si-dependencycheck.si--color::before { color: #F78D0A; }
-
.si-owncloud::before { content: "\f204"; }
+
.si-owncloud::before { content: "\f205"; }
.si-owncloud.si--color::before { color: #041E42; }
-
.si-oxygen::before { content: "\f205"; }
+
.si-oxygen::before { content: "\f206"; }
.si-oxygen.si--color::before { color: #3A209E; }
-
.si-oyo::before { content: "\f206"; }
+
.si-oyo::before { content: "\f207"; }
.si-oyo.si--color::before { color: #EE2E24; }
-
.si-p5dotjs::before { content: "\f207"; }
+
.si-p5dotjs::before { content: "\f208"; }
.si-p5dotjs.si--color::before { color: #ED225D; }
-
.si-packagist::before { content: "\f208"; }
+
.si-packagist::before { content: "\f209"; }
.si-packagist.si--color::before { color: #F28D1A; }
-
.si-packer::before { content: "\f209"; }
+
.si-packer::before { content: "\f20a"; }
.si-packer.si--color::before { color: #02A8EF; }
-
.si-packt::before { content: "\f20a"; }
+
.si-packt::before { content: "\f20b"; }
.si-packt.si--color::before { color: #F37143; }
-
.si-paddle::before { content: "\f20b"; }
+
.si-paddle::before { content: "\f20c"; }
.si-paddle.si--color::before { color: #FDDD35; }
-
.si-paddlepaddle::before { content: "\f20c"; }
+
.si-paddlepaddle::before { content: "\f20d"; }
.si-paddlepaddle.si--color::before { color: #0062B0; }
-
.si-paddypower::before { content: "\f20d"; }
+
.si-paddypower::before { content: "\f20e"; }
.si-paddypower.si--color::before { color: #004833; }
-
.si-pagekit::before { content: "\f20e"; }
+
.si-pagekit::before { content: "\f20f"; }
.si-pagekit.si--color::before { color: #212121; }
-
.si-pagerduty::before { content: "\f20f"; }
+
.si-pagerduty::before { content: "\f210"; }
.si-pagerduty.si--color::before { color: #06AC38; }
-
.si-pagespeedinsights::before { content: "\f210"; }
+
.si-pagespeedinsights::before { content: "\f211"; }
.si-pagespeedinsights.si--color::before { color: #4285F4; }
-
.si-pagseguro::before { content: "\f211"; }
+
.si-pagseguro::before { content: "\f212"; }
.si-pagseguro.si--color::before { color: #FFC801; }
-
.si-palantir::before { content: "\f212"; }
+
.si-palantir::before { content: "\f213"; }
.si-palantir.si--color::before { color: #101113; }
-
.si-paloaltonetworks::before { content: "\f213"; }
+
.si-paloaltonetworks::before { content: "\f214"; }
.si-paloaltonetworks.si--color::before { color: #F04E23; }
-
.si-paloaltosoftware::before { content: "\f214"; }
+
.si-paloaltosoftware::before { content: "\f215"; }
.si-paloaltosoftware.si--color::before { color: #83DA77; }
-
.si-panasonic::before { content: "\f215"; }
+
.si-panasonic::before { content: "\f216"; }
.si-panasonic.si--color::before { color: #0049AB; }
-
.si-pandas::before { content: "\f216"; }
+
.si-pandas::before { content: "\f217"; }
.si-pandas.si--color::before { color: #150458; }
-
.si-pandora::before { content: "\f217"; }
+
.si-pandora::before { content: "\f218"; }
.si-pandora.si--color::before { color: #224099; }
-
.si-pantheon::before { content: "\f218"; }
+
.si-pantheon::before { content: "\f219"; }
.si-pantheon.si--color::before { color: #FFDC28; }
-
.si-paperlessngx::before { content: "\f219"; }
+
.si-paperlessngx::before { content: "\f21a"; }
.si-paperlessngx.si--color::before { color: #17541F; }
-
.si-paperswithcode::before { content: "\f21a"; }
+
.si-paperswithcode::before { content: "\f21b"; }
.si-paperswithcode.si--color::before { color: #21CBCE; }
-
.si-paperspace::before { content: "\f21b"; }
+
.si-paperspace::before { content: "\f21c"; }
.si-paperspace.si--color::before { color: #000000; }
-
.si-paradoxinteractive::before { content: "\f21c"; }
+
.si-paradoxinteractive::before { content: "\f21d"; }
.si-paradoxinteractive.si--color::before { color: #101010; }
-
.si-paramountplus::before { content: "\f21d"; }
+
.si-paramountplus::before { content: "\f21e"; }
.si-paramountplus.si--color::before { color: #0064FF; }
-
.si-paritysubstrate::before { content: "\f21e"; }
+
.si-paritysubstrate::before { content: "\f21f"; }
.si-paritysubstrate.si--color::before { color: #282828; }
-
.si-parrotsecurity::before { content: "\f21f"; }
+
.si-parrotsecurity::before { content: "\f220"; }
.si-parrotsecurity.si--color::before { color: #15E0ED; }
-
.si-parsedotly::before { content: "\f220"; }
+
.si-parsedotly::before { content: "\f221"; }
.si-parsedotly.si--color::before { color: #5BA745; }
-
.si-passport::before { content: "\f221"; }
+
.si-passport::before { content: "\f222"; }
.si-passport.si--color::before { color: #34E27A; }
-
.si-pastebin::before { content: "\f222"; }
+
.si-pastebin::before { content: "\f223"; }
.si-pastebin.si--color::before { color: #02456C; }
-
.si-patreon::before { content: "\f223"; }
+
.si-patreon::before { content: "\f224"; }
.si-patreon.si--color::before { color: #000000; }
-
.si-paychex::before { content: "\f224"; }
+
.si-paychex::before { content: "\f225"; }
.si-paychex.si--color::before { color: #004B8D; }
-
.si-payhip::before { content: "\f225"; }
+
.si-payhip::before { content: "\f226"; }
.si-payhip.si--color::before { color: #5C6AC4; }
-
.si-payloadcms::before { content: "\f226"; }
+
.si-payloadcms::before { content: "\f227"; }
.si-payloadcms.si--color::before { color: #000000; }
-
.si-payoneer::before { content: "\f227"; }
+
.si-payoneer::before { content: "\f228"; }
.si-payoneer.si--color::before { color: #FF4800; }
-
.si-paypal::before { content: "\f228"; }
+
.si-paypal::before { content: "\f229"; }
.si-paypal.si--color::before { color: #003087; }
-
.si-paytm::before { content: "\f229"; }
+
.si-paytm::before { content: "\f22a"; }
.si-paytm.si--color::before { color: #20336B; }
-
.si-pcgamingwiki::before { content: "\f22a"; }
+
.si-pcgamingwiki::before { content: "\f22b"; }
.si-pcgamingwiki.si--color::before { color: #556DB3; }
-
.si-pdm::before { content: "\f22b"; }
+
.si-pdm::before { content: "\f22c"; }
.si-pdm.si--color::before { color: #AC75D7; }
-
.si-pdq::before { content: "\f22c"; }
+
.si-pdq::before { content: "\f22d"; }
.si-pdq.si--color::before { color: #231F20; }
-
.si-peakdesign::before { content: "\f22d"; }
+
.si-peakdesign::before { content: "\f22e"; }
.si-peakdesign.si--color::before { color: #1C1B1C; }
-
.si-pearson::before { content: "\f22e"; }
+
.si-pearson::before { content: "\f22f"; }
.si-pearson.si--color::before { color: #000000; }
-
.si-peerlist::before { content: "\f22f"; }
+
.si-peerlist::before { content: "\f230"; }
.si-peerlist.si--color::before { color: #00AA45; }
-
.si-peertube::before { content: "\f230"; }
+
.si-peertube::before { content: "\f231"; }
.si-peertube.si--color::before { color: #F1680D; }
-
.si-pegasusairlines::before { content: "\f231"; }
+
.si-pegasusairlines::before { content: "\f232"; }
.si-pegasusairlines.si--color::before { color: #FDC43E; }
-
.si-pelican::before { content: "\f232"; }
+
.si-pelican::before { content: "\f233"; }
.si-pelican.si--color::before { color: #14A0C4; }
-
.si-peloton::before { content: "\f233"; }
+
.si-peloton::before { content: "\f234"; }
.si-peloton.si--color::before { color: #181A1D; }
-
.si-penny::before { content: "\f234"; }
+
.si-penny::before { content: "\f235"; }
.si-penny.si--color::before { color: #CD1414; }
-
.si-penpot::before { content: "\f235"; }
+
.si-penpot::before { content: "\f236"; }
.si-penpot.si--color::before { color: #000000; }
-
.si-percy::before { content: "\f236"; }
+
.si-percy::before { content: "\f237"; }
.si-percy.si--color::before { color: #9E66BF; }
-
.si-perforce::before { content: "\f237"; }
+
.si-perforce::before { content: "\f238"; }
.si-perforce.si--color::before { color: #404040; }
-
.si-perl::before { content: "\f238"; }
+
.si-perl::before { content: "\f239"; }
.si-perl.si--color::before { color: #0073A1; }
-
.si-perplexity::before { content: "\f239"; }
+
.si-perplexity::before { content: "\f23a"; }
.si-perplexity.si--color::before { color: #1FB8CD; }
-
.si-persistent::before { content: "\f23a"; }
+
.si-persistent::before { content: "\f23b"; }
.si-persistent.si--color::before { color: #FD5F07; }
-
.si-personio::before { content: "\f23b"; }
+
.si-personio::before { content: "\f23c"; }
.si-personio.si--color::before { color: #000000; }
-
.si-petsathome::before { content: "\f23c"; }
+
.si-petsathome::before { content: "\f23d"; }
.si-petsathome.si--color::before { color: #00AA28; }
-
.si-peugeot::before { content: "\f23d"; }
+
.si-peugeot::before { content: "\f23e"; }
.si-peugeot.si--color::before { color: #000000; }
-
.si-pexels::before { content: "\f23e"; }
+
.si-pexels::before { content: "\f23f"; }
.si-pexels.si--color::before { color: #05A081; }
-
.si-pfsense::before { content: "\f23f"; }
+
.si-pfsense::before { content: "\f240"; }
.si-pfsense.si--color::before { color: #212121; }
-
.si-phabricator::before { content: "\f240"; }
+
.si-phabricator::before { content: "\f241"; }
.si-phabricator.si--color::before { color: #4A5F88; }
-
.si-philipshue::before { content: "\f241"; }
+
.si-philipshue::before { content: "\f242"; }
.si-philipshue.si--color::before { color: #0065D3; }
-
.si-phoenixframework::before { content: "\f242"; }
+
.si-phoenixframework::before { content: "\f243"; }
.si-phoenixframework.si--color::before { color: #FD4F00; }
-
.si-phonepe::before { content: "\f243"; }
+
.si-phonepe::before { content: "\f244"; }
.si-phonepe.si--color::before { color: #5F259F; }
-
.si-phosphoricons::before { content: "\f244"; }
+
.si-phosphoricons::before { content: "\f245"; }
.si-phosphoricons.si--color::before { color: #3C402B; }
-
.si-photobucket::before { content: "\f245"; }
+
.si-photobucket::before { content: "\f246"; }
.si-photobucket.si--color::before { color: #1C47CB; }
-
.si-photocrowd::before { content: "\f246"; }
+
.si-photocrowd::before { content: "\f247"; }
.si-photocrowd.si--color::before { color: #3DAD4B; }
-
.si-photon::before { content: "\f247"; }
+
.si-photon::before { content: "\f248"; }
.si-photon.si--color::before { color: #004480; }
-
.si-photopea::before { content: "\f248"; }
+
.si-photopea::before { content: "\f249"; }
.si-photopea.si--color::before { color: #18A497; }
-
.si-php::before { content: "\f249"; }
+
.si-php::before { content: "\f24a"; }
.si-php.si--color::before { color: #777BB4; }
-
.si-phpbb::before { content: "\f24a"; }
+
.si-phpbb::before { content: "\f24b"; }
.si-phpbb.si--color::before { color: #009BDF; }
-
.si-phpmyadmin::before { content: "\f24b"; }
+
.si-phpmyadmin::before { content: "\f24c"; }
.si-phpmyadmin.si--color::before { color: #6C78AF; }
-
.si-phpstorm::before { content: "\f24c"; }
+
.si-phpstorm::before { content: "\f24d"; }
.si-phpstorm.si--color::before { color: #000000; }
-
.si-pinetwork::before { content: "\f24d"; }
+
.si-pinetwork::before { content: "\f24e"; }
.si-pinetwork.si--color::before { color: #F4AF47; }
-
.si-pihole::before { content: "\f24e"; }
+
.si-pihole::before { content: "\f24f"; }
.si-pihole.si--color::before { color: #96060C; }
-
.si-piaggiogroup::before { content: "\f24f"; }
+
.si-piaggiogroup::before { content: "\f250"; }
.si-piaggiogroup.si--color::before { color: #000000; }
-
.si-piapro::before { content: "\f250"; }
+
.si-piapro::before { content: "\f251"; }
.si-piapro.si--color::before { color: #E4007B; }
-
.si-picardsurgeles::before { content: "\f251"; }
+
.si-picardsurgeles::before { content: "\f252"; }
.si-picardsurgeles.si--color::before { color: #2D4999; }
-
.si-picartodottv::before { content: "\f252"; }
+
.si-picartodottv::before { content: "\f253"; }
.si-picartodottv.si--color::before { color: #1DA456; }
-
.si-picnic::before { content: "\f253"; }
+
.si-picnic::before { content: "\f254"; }
.si-picnic.si--color::before { color: #E1171E; }
-
.si-picpay::before { content: "\f254"; }
+
.si-picpay::before { content: "\f255"; }
.si-picpay.si--color::before { color: #21C25E; }
-
.si-picrew::before { content: "\f255"; }
+
.si-picrew::before { content: "\f256"; }
.si-picrew.si--color::before { color: #FFBD16; }
-
.si-picsart::before { content: "\f256"; }
+
.si-picsart::before { content: "\f257"; }
.si-picsart.si--color::before { color: #C209C1; }
-
.si-picxy::before { content: "\f257"; }
+
.si-picxy::before { content: "\f258"; }
.si-picxy.si--color::before { color: #2E3192; }
-
.si-pimcore::before { content: "\f258"; }
+
.si-pimcore::before { content: "\f259"; }
.si-pimcore.si--color::before { color: #6428B4; }
-
.si-pinboard::before { content: "\f259"; }
+
.si-pinboard::before { content: "\f25a"; }
.si-pinboard.si--color::before { color: #0000FF; }
-
.si-pinescript::before { content: "\f25a"; }
+
.si-pinescript::before { content: "\f25b"; }
.si-pinescript.si--color::before { color: #00B453; }
-
.si-pingdom::before { content: "\f25b"; }
+
.si-pingdom::before { content: "\f25c"; }
.si-pingdom.si--color::before { color: #FFF000; }
-
.si-pino::before { content: "\f25c"; }
+
.si-pino::before { content: "\f25d"; }
.si-pino.si--color::before { color: #687634; }
-
.si-pinterest::before { content: "\f25d"; }
+
.si-pinterest::before { content: "\f25e"; }
.si-pinterest.si--color::before { color: #BD081C; }
-
.si-pioneerdj::before { content: "\f25e"; }
+
.si-pioneerdj::before { content: "\f25f"; }
.si-pioneerdj.si--color::before { color: #1A1928; }
-
.si-piped::before { content: "\f25f"; }
+
.si-piped::before { content: "\f260"; }
.si-piped.si--color::before { color: #F84330; }
-
.si-pipx::before { content: "\f260"; }
+
.si-pipx::before { content: "\f261"; }
.si-pipx.si--color::before { color: #2CFFAA; }
-
.si-pivotaltracker::before { content: "\f261"; }
+
.si-pivotaltracker::before { content: "\f262"; }
.si-pivotaltracker.si--color::before { color: #517A9E; }
-
.si-piwigo::before { content: "\f262"; }
+
.si-piwigo::before { content: "\f263"; }
.si-piwigo.si--color::before { color: #FF7700; }
-
.si-pix::before { content: "\f263"; }
+
.si-pix::before { content: "\f264"; }
.si-pix.si--color::before { color: #77B6A8; }
-
.si-pixabay::before { content: "\f264"; }
+
.si-pixabay::before { content: "\f265"; }
.si-pixabay.si--color::before { color: #2EC66D; }
-
.si-pixelfed::before { content: "\f265"; }
+
.si-pixelfed::before { content: "\f266"; }
.si-pixelfed.si--color::before { color: #6366F1; }
-
.si-pixiv::before { content: "\f266"; }
+
.si-pixiv::before { content: "\f267"; }
.si-pixiv.si--color::before { color: #0096FA; }
-
.si-pixlr::before { content: "\f267"; }
+
.si-pixlr::before { content: "\f268"; }
.si-pixlr.si--color::before { color: #3EBBDF; }
-
.si-pkgsrc::before { content: "\f268"; }
+
.si-pkgsrc::before { content: "\f269"; }
.si-pkgsrc.si--color::before { color: #FF6600; }
-
.si-planet::before { content: "\f269"; }
+
.si-planet::before { content: "\f26a"; }
.si-planet.si--color::before { color: #009DB1; }
-
.si-planetscale::before { content: "\f26a"; }
+
.si-planetscale::before { content: "\f26b"; }
.si-planetscale.si--color::before { color: #000000; }
-
.si-plangrid::before { content: "\f26b"; }
+
.si-plangrid::before { content: "\f26c"; }
.si-plangrid.si--color::before { color: #0085DE; }
-
.si-platformdotsh::before { content: "\f26c"; }
+
.si-platformdotsh::before { content: "\f26d"; }
.si-platformdotsh.si--color::before { color: #1A182A; }
-
.si-platformio::before { content: "\f26d"; }
+
.si-platformio::before { content: "\f26e"; }
.si-platformio.si--color::before { color: #F5822A; }
-
.si-platzi::before { content: "\f26e"; }
+
.si-platzi::before { content: "\f26f"; }
.si-platzi.si--color::before { color: #98CA3F; }
-
.si-plausibleanalytics::before { content: "\f26f"; }
+
.si-plausibleanalytics::before { content: "\f270"; }
.si-plausibleanalytics.si--color::before { color: #5850EC; }
-
.si-playcanvas::before { content: "\f270"; }
+
.si-playcanvas::before { content: "\f271"; }
.si-playcanvas.si--color::before { color: #E05F2C; }
-
.si-playerfm::before { content: "\f271"; }
+
.si-playerfm::before { content: "\f272"; }
.si-playerfm.si--color::before { color: #C8122A; }
-
.si-playerdotme::before { content: "\f272"; }
+
.si-playerdotme::before { content: "\f273"; }
.si-playerdotme.si--color::before { color: #C0379A; }
-
.si-playstation::before { content: "\f273"; }
+
.si-playstation::before { content: "\f274"; }
.si-playstation.si--color::before { color: #0070D1; }
-
.si-playstation2::before { content: "\f274"; }
+
.si-playstation2::before { content: "\f275"; }
.si-playstation2.si--color::before { color: #003791; }
-
.si-playstation3::before { content: "\f275"; }
+
.si-playstation3::before { content: "\f276"; }
.si-playstation3.si--color::before { color: #003791; }
-
.si-playstation4::before { content: "\f276"; }
+
.si-playstation4::before { content: "\f277"; }
.si-playstation4.si--color::before { color: #003791; }
-
.si-playstation5::before { content: "\f277"; }
+
.si-playstation5::before { content: "\f278"; }
.si-playstation5.si--color::before { color: #003791; }
-
.si-playstationportable::before { content: "\f278"; }
+
.si-playstationportable::before { content: "\f279"; }
.si-playstationportable.si--color::before { color: #003791; }
-
.si-playstationvita::before { content: "\f279"; }
+
.si-playstationvita::before { content: "\f27a"; }
.si-playstationvita.si--color::before { color: #003791; }
-
.si-pleroma::before { content: "\f27a"; }
+
.si-pleroma::before { content: "\f27b"; }
.si-pleroma.si--color::before { color: #FBA457; }
-
.si-plesk::before { content: "\f27b"; }
+
.si-plesk::before { content: "\f27c"; }
.si-plesk.si--color::before { color: #52BBE6; }
-
.si-plex::before { content: "\f27c"; }
+
.si-plex::before { content: "\f27d"; }
.si-plex.si--color::before { color: #EBAF00; }
-
.si-plotly::before { content: "\f27d"; }
+
.si-plotly::before { content: "\f27e"; }
.si-plotly.si--color::before { color: #3F4F75; }
-
.si-plume::before { content: "\f27e"; }
+
.si-plume::before { content: "\f27f"; }
.si-plume.si--color::before { color: #7C5CDF; }
-
.si-pluralsight::before { content: "\f27f"; }
+
.si-pluralsight::before { content: "\f280"; }
.si-pluralsight.si--color::before { color: #F15B2A; }
-
.si-plurk::before { content: "\f280"; }
+
.si-plurk::before { content: "\f281"; }
.si-plurk.si--color::before { color: #FF574D; }
-
.si-pluscodes::before { content: "\f281"; }
+
.si-pluscodes::before { content: "\f282"; }
.si-pluscodes.si--color::before { color: #4285F4; }
-
.si-pm2::before { content: "\f282"; }
+
.si-pm2::before { content: "\f283"; }
.si-pm2.si--color::before { color: #2B037A; }
-
.si-pnpm::before { content: "\f283"; }
+
.si-pnpm::before { content: "\f284"; }
.si-pnpm.si--color::before { color: #F69220; }
-
.si-pocket::before { content: "\f284"; }
+
.si-pocket::before { content: "\f285"; }
.si-pocket.si--color::before { color: #EF3F56; }
-
.si-pocketcasts::before { content: "\f285"; }
+
.si-pocketcasts::before { content: "\f286"; }
.si-pocketcasts.si--color::before { color: #F43E37; }
-
.si-pocketbase::before { content: "\f286"; }
+
.si-pocketbase::before { content: "\f287"; }
.si-pocketbase.si--color::before { color: #B8DBE4; }
-
.si-podcastaddict::before { content: "\f287"; }
+
.si-podcastaddict::before { content: "\f288"; }
.si-podcastaddict.si--color::before { color: #F4842D; }
-
.si-podcastindex::before { content: "\f288"; }
+
.si-podcastindex::before { content: "\f289"; }
.si-podcastindex.si--color::before { color: #F90000; }
-
.si-podman::before { content: "\f289"; }
+
.si-podman::before { content: "\f28a"; }
.si-podman.si--color::before { color: #892CA0; }
-
.si-poe::before { content: "\f28a"; }
+
.si-poe::before { content: "\f28b"; }
.si-poe.si--color::before { color: #5D5CDE; }
-
.si-poetry::before { content: "\f28b"; }
+
.si-poetry::before { content: "\f28c"; }
.si-poetry.si--color::before { color: #60A5FA; }
-
.si-pointy::before { content: "\f28c"; }
+
.si-pointy::before { content: "\f28d"; }
.si-pointy.si--color::before { color: #009DE0; }
-
.si-polars::before { content: "\f28d"; }
+
.si-polars::before { content: "\f28e"; }
.si-polars.si--color::before { color: #CD792C; }
-
.si-polestar::before { content: "\f28e"; }
+
.si-polestar::before { content: "\f28f"; }
.si-polestar.si--color::before { color: #000000; }
-
.si-polkadot::before { content: "\f28f"; }
+
.si-polkadot::before { content: "\f290"; }
.si-polkadot.si--color::before { color: #E6007A; }
-
.si-poly::before { content: "\f290"; }
+
.si-poly::before { content: "\f291"; }
.si-poly.si--color::before { color: #EB3C00; }
-
.si-polygon::before { content: "\f291"; }
+
.si-polygon::before { content: "\f292"; }
.si-polygon.si--color::before { color: #7B3FE4; }
-
.si-polymerproject::before { content: "\f292"; }
+
.si-polymerproject::before { content: "\f293"; }
.si-polymerproject.si--color::before { color: #FF4470; }
-
.si-polywork::before { content: "\f293"; }
+
.si-polywork::before { content: "\f294"; }
.si-polywork.si--color::before { color: #543DE0; }
-
.si-pond5::before { content: "\f294"; }
+
.si-pond5::before { content: "\f295"; }
.si-pond5.si--color::before { color: #000000; }
-
.si-popos::before { content: "\f295"; }
+
.si-popos::before { content: "\f296"; }
.si-popos.si--color::before { color: #48B9C7; }
-
.si-porkbun::before { content: "\f296"; }
+
.si-porkbun::before { content: "\f297"; }
.si-porkbun.si--color::before { color: #EF7878; }
-
.si-porsche::before { content: "\f297"; }
+
.si-porsche::before { content: "\f298"; }
.si-porsche.si--color::before { color: #B12B28; }
-
.si-portainer::before { content: "\f298"; }
+
.si-portainer::before { content: "\f299"; }
.si-portainer.si--color::before { color: #13BEF9; }
-
.si-portswigger::before { content: "\f299"; }
+
.si-portswigger::before { content: "\f29a"; }
.si-portswigger.si--color::before { color: #FF6633; }
-
.si-posit::before { content: "\f29a"; }
+
.si-posit::before { content: "\f29b"; }
.si-posit.si--color::before { color: #447099; }
-
.si-postcss::before { content: "\f29b"; }
+
.si-postcss::before { content: "\f29c"; }
.si-postcss.si--color::before { color: #DD3A0A; }
-
.si-postgresql::before { content: "\f29c"; }
+
.si-postgresql::before { content: "\f29d"; }
.si-postgresql.si--color::before { color: #4169E1; }
-
.si-posthog::before { content: "\f29d"; }
+
.si-posthog::before { content: "\f29e"; }
.si-posthog.si--color::before { color: #000000; }
-
.si-postman::before { content: "\f29e"; }
+
.si-postman::before { content: "\f29f"; }
.si-postman.si--color::before { color: #FF6C37; }
-
.si-postmates::before { content: "\f29f"; }
+
.si-postmates::before { content: "\f2a0"; }
.si-postmates.si--color::before { color: #FFDF18; }
-
.si-powers::before { content: "\f2a0"; }
+
.si-powers::before { content: "\f2a1"; }
.si-powers.si--color::before { color: #E74536; }
-
.si-prdotco::before { content: "\f2a1"; }
+
.si-prdotco::before { content: "\f2a2"; }
.si-prdotco.si--color::before { color: #0080FF; }
-
.si-precommit::before { content: "\f2a2"; }
+
.si-precommit::before { content: "\f2a3"; }
.si-precommit.si--color::before { color: #FAB040; }
-
.si-preact::before { content: "\f2a3"; }
+
.si-preact::before { content: "\f2a4"; }
.si-preact.si--color::before { color: #673AB8; }
-
.si-prefect::before { content: "\f2a4"; }
+
.si-prefect::before { content: "\f2a5"; }
.si-prefect.si--color::before { color: #070E10; }
-
.si-premierleague::before { content: "\f2a5"; }
+
.si-premierleague::before { content: "\f2a6"; }
.si-premierleague.si--color::before { color: #360D3A; }
-
.si-prepbytes::before { content: "\f2a6"; }
+
.si-prepbytes::before { content: "\f2a7"; }
.si-prepbytes.si--color::before { color: #5A87C6; }
-
.si-prestashop::before { content: "\f2a7"; }
+
.si-prestashop::before { content: "\f2a8"; }
.si-prestashop.si--color::before { color: #DF0067; }
-
.si-presto::before { content: "\f2a8"; }
+
.si-presto::before { content: "\f2a9"; }
.si-presto.si--color::before { color: #5890FF; }
-
.si-prettier::before { content: "\f2a9"; }
+
.si-prettier::before { content: "\f2aa"; }
.si-prettier.si--color::before { color: #F7B93E; }
-
.si-pretzel::before { content: "\f2aa"; }
+
.si-pretzel::before { content: "\f2ab"; }
.si-pretzel.si--color::before { color: #1BB3A4; }
-
.si-prevention::before { content: "\f2ab"; }
+
.si-prevention::before { content: "\f2ac"; }
.si-prevention.si--color::before { color: #44C1C5; }
-
.si-prezi::before { content: "\f2ac"; }
+
.si-prezi::before { content: "\f2ad"; }
.si-prezi.si--color::before { color: #3181FF; }
-
.si-prime::before { content: "\f2ad"; }
+
.si-prime::before { content: "\f2ae"; }
.si-prime.si--color::before { color: #00A8E1; }
-
.si-primevideo::before { content: "\f2ae"; }
+
.si-primevideo::before { content: "\f2af"; }
.si-primevideo.si--color::before { color: #1F2E3E; }
-
.si-primefaces::before { content: "\f2af"; }
+
.si-primefaces::before { content: "\f2b0"; }
.si-primefaces.si--color::before { color: #263238; }
-
.si-primeng::before { content: "\f2b0"; }
+
.si-primeng::before { content: "\f2b1"; }
.si-primeng.si--color::before { color: #DD0031; }
-
.si-primereact::before { content: "\f2b1"; }
+
.si-primereact::before { content: "\f2b2"; }
.si-primereact.si--color::before { color: #03C4E8; }
-
.si-primevue::before { content: "\f2b2"; }
+
.si-primevue::before { content: "\f2b3"; }
.si-primevue.si--color::before { color: #41B883; }
-
.si-printables::before { content: "\f2b3"; }
+
.si-printables::before { content: "\f2b4"; }
.si-printables.si--color::before { color: #FA6831; }
-
.si-prisma::before { content: "\f2b4"; }
+
.si-prisma::before { content: "\f2b5"; }
.si-prisma.si--color::before { color: #2D3748; }
-
.si-prismic::before { content: "\f2b5"; }
+
.si-prismic::before { content: "\f2b6"; }
.si-prismic.si--color::before { color: #5163BA; }
-
.si-privatedivision::before { content: "\f2b6"; }
+
.si-privatedivision::before { content: "\f2b7"; }
.si-privatedivision.si--color::before { color: #000000; }
-
.si-privateinternetaccess::before { content: "\f2b7"; }
+
.si-privateinternetaccess::before { content: "\f2b8"; }
.si-privateinternetaccess.si--color::before { color: #1E811F; }
-
.si-protools::before { content: "\f2b8"; }
+
.si-protools::before { content: "\f2b9"; }
.si-protools.si--color::before { color: #7ACB10; }
-
.si-probot::before { content: "\f2b9"; }
+
.si-probot::before { content: "\f2ba"; }
.si-probot.si--color::before { color: #00B0D8; }
-
.si-processingfoundation::before { content: "\f2ba"; }
+
.si-processingfoundation::before { content: "\f2bb"; }
.si-processingfoundation.si--color::before { color: #006699; }
-
.si-processwire::before { content: "\f2bb"; }
+
.si-processwire::before { content: "\f2bc"; }
.si-processwire.si--color::before { color: #2480E6; }
-
.si-producthunt::before { content: "\f2bc"; }
+
.si-producthunt::before { content: "\f2bd"; }
.si-producthunt.si--color::before { color: #DA552F; }
-
.si-progate::before { content: "\f2bd"; }
+
.si-progate::before { content: "\f2be"; }
.si-progate.si--color::before { color: #380953; }
-
.si-progress::before { content: "\f2be"; }
+
.si-progress::before { content: "\f2bf"; }
.si-progress.si--color::before { color: #5CE500; }
-
.si-prometheus::before { content: "\f2bf"; }
+
.si-prometheus::before { content: "\f2c0"; }
.si-prometheus.si--color::before { color: #E6522C; }
-
.si-pronounsdotpage::before { content: "\f2c0"; }
+
.si-pronounsdotpage::before { content: "\f2c1"; }
.si-pronounsdotpage.si--color::before { color: #C71585; }
-
.si-prosieben::before { content: "\f2c1"; }
+
.si-prosieben::before { content: "\f2c2"; }
.si-prosieben.si--color::before { color: #E6000F; }
-
.si-proteus::before { content: "\f2c2"; }
+
.si-proteus::before { content: "\f2c3"; }
.si-proteus.si--color::before { color: #1C79B3; }
-
.si-protodotio::before { content: "\f2c3"; }
+
.si-protodotio::before { content: "\f2c4"; }
.si-protodotio.si--color::before { color: #34A7C1; }
-
.si-protocolsdotio::before { content: "\f2c4"; }
+
.si-protocolsdotio::before { content: "\f2c5"; }
.si-protocolsdotio.si--color::before { color: #4D9FE7; }
-
.si-proton::before { content: "\f2c5"; }
+
.si-proton::before { content: "\f2c6"; }
.si-proton.si--color::before { color: #6D4AFF; }
-
.si-protoncalendar::before { content: "\f2c6"; }
+
.si-protoncalendar::before { content: "\f2c7"; }
.si-protoncalendar.si--color::before { color: #50B0E9; }
-
.si-protondrive::before { content: "\f2c7"; }
+
.si-protondrive::before { content: "\f2c8"; }
.si-protondrive.si--color::before { color: #EB508D; }
-
.si-protonmail::before { content: "\f2c8"; }
+
.si-protonmail::before { content: "\f2c9"; }
.si-protonmail.si--color::before { color: #6D4AFF; }
-
.si-protonvpn::before { content: "\f2c9"; }
+
.si-protonvpn::before { content: "\f2ca"; }
.si-protonvpn.si--color::before { color: #66DEB1; }
-
.si-protondb::before { content: "\f2ca"; }
+
.si-protondb::before { content: "\f2cb"; }
.si-protondb.si--color::before { color: #F50057; }
-
.si-protractor::before { content: "\f2cb"; }
+
.si-protractor::before { content: "\f2cc"; }
.si-protractor.si--color::before { color: #ED163A; }
-
.si-proxmox::before { content: "\f2cc"; }
+
.si-proxmox::before { content: "\f2cd"; }
.si-proxmox.si--color::before { color: #E57000; }
-
.si-pterodactyl::before { content: "\f2cd"; }
+
.si-pterodactyl::before { content: "\f2ce"; }
.si-pterodactyl.si--color::before { color: #10539F; }
-
.si-pubg::before { content: "\f2ce"; }
+
.si-pubg::before { content: "\f2cf"; }
.si-pubg.si--color::before { color: #F4B942; }
-
.si-publons::before { content: "\f2cf"; }
+
.si-publons::before { content: "\f2d0"; }
.si-publons.si--color::before { color: #336699; }
-
.si-pubmed::before { content: "\f2d0"; }
+
.si-pubmed::before { content: "\f2d1"; }
.si-pubmed.si--color::before { color: #326599; }
-
.si-pug::before { content: "\f2d1"; }
+
.si-pug::before { content: "\f2d2"; }
.si-pug.si--color::before { color: #A86454; }
-
.si-pulumi::before { content: "\f2d2"; }
+
.si-pulumi::before { content: "\f2d3"; }
.si-pulumi.si--color::before { color: #8A3391; }
-
.si-puma::before { content: "\f2d3"; }
+
.si-puma::before { content: "\f2d4"; }
.si-puma.si--color::before { color: #242B2F; }
-
.si-puppet::before { content: "\f2d4"; }
+
.si-puppet::before { content: "\f2d5"; }
.si-puppet.si--color::before { color: #FFAE1A; }
-
.si-puppeteer::before { content: "\f2d5"; }
+
.si-puppeteer::before { content: "\f2d6"; }
.si-puppeteer.si--color::before { color: #40B5A4; }
-
.si-purescript::before { content: "\f2d6"; }
+
.si-purescript::before { content: "\f2d7"; }
.si-purescript.si--color::before { color: #14161A; }
-
.si-purgecss::before { content: "\f2d7"; }
+
.si-purgecss::before { content: "\f2d8"; }
.si-purgecss.si--color::before { color: #14161A; }
-
.si-purism::before { content: "\f2d8"; }
+
.si-purism::before { content: "\f2d9"; }
.si-purism.si--color::before { color: #2D2D2D; }
-
.si-pushbullet::before { content: "\f2d9"; }
+
.si-pushbullet::before { content: "\f2da"; }
.si-pushbullet.si--color::before { color: #4AB367; }
-
.si-pusher::before { content: "\f2da"; }
+
.si-pusher::before { content: "\f2db"; }
.si-pusher.si--color::before { color: #300D4F; }
-
.si-pwa::before { content: "\f2db"; }
+
.si-pwa::before { content: "\f2dc"; }
.si-pwa.si--color::before { color: #5A0FC8; }
-
.si-pycharm::before { content: "\f2dc"; }
+
.si-pycharm::before { content: "\f2dd"; }
.si-pycharm.si--color::before { color: #000000; }
-
.si-pycqa::before { content: "\f2dd"; }
+
.si-pycqa::before { content: "\f2de"; }
.si-pycqa.si--color::before { color: #201B44; }
-
.si-pydantic::before { content: "\f2de"; }
+
.si-pydantic::before { content: "\f2df"; }
.si-pydantic.si--color::before { color: #E92063; }
-
.si-pyg::before { content: "\f2df"; }
+
.si-pyg::before { content: "\f2e0"; }
.si-pyg.si--color::before { color: #3C2179; }
-
.si-pypi::before { content: "\f2e0"; }
+
.si-pypi::before { content: "\f2e1"; }
.si-pypi.si--color::before { color: #3775A9; }
-
.si-pypy::before { content: "\f2e1"; }
+
.si-pypy::before { content: "\f2e2"; }
.si-pypy.si--color::before { color: #193440; }
-
.si-pyscaffold::before { content: "\f2e2"; }
+
.si-pyscaffold::before { content: "\f2e3"; }
.si-pyscaffold.si--color::before { color: #005CA0; }
-
.si-pysyft::before { content: "\f2e3"; }
+
.si-pysyft::before { content: "\f2e4"; }
.si-pysyft.si--color::before { color: #F1BF7A; }
-
.si-pytest::before { content: "\f2e4"; }
+
.si-pytest::before { content: "\f2e5"; }
.si-pytest.si--color::before { color: #0A9EDC; }
-
.si-python::before { content: "\f2e5"; }
+
.si-python::before { content: "\f2e6"; }
.si-python.si--color::before { color: #3776AB; }
-
.si-pythonanywhere::before { content: "\f2e6"; }
+
.si-pythonanywhere::before { content: "\f2e7"; }
.si-pythonanywhere.si--color::before { color: #1D9FD7; }
-
.si-pytorch::before { content: "\f2e7"; }
+
.si-pytorch::before { content: "\f2e8"; }
.si-pytorch.si--color::before { color: #EE4C2C; }
-
.si-pyup::before { content: "\f2e8"; }
+
.si-pyup::before { content: "\f2e9"; }
.si-pyup.si--color::before { color: #9F55FF; }
-
.si-qantas::before { content: "\f2e9"; }
+
.si-qantas::before { content: "\f2ea"; }
.si-qantas.si--color::before { color: #E40000; }
-
.si-qase::before { content: "\f2ea"; }
+
.si-qase::before { content: "\f2eb"; }
.si-qase.si--color::before { color: #4F46DC; }
-
.si-qatarairways::before { content: "\f2eb"; }
+
.si-qatarairways::before { content: "\f2ec"; }
.si-qatarairways.si--color::before { color: #5C0D34; }
-
.si-qbittorrent::before { content: "\f2ec"; }
+
.si-qbittorrent::before { content: "\f2ed"; }
.si-qbittorrent.si--color::before { color: #2F67BA; }
-
.si-qemu::before { content: "\f2ed"; }
+
.si-qemu::before { content: "\f2ee"; }
.si-qemu.si--color::before { color: #FF6600; }
-
.si-qgis::before { content: "\f2ee"; }
+
.si-qgis::before { content: "\f2ef"; }
.si-qgis.si--color::before { color: #589632; }
-
.si-qi::before { content: "\f2ef"; }
+
.si-qi::before { content: "\f2f0"; }
.si-qi.si--color::before { color: #000000; }
-
.si-qiita::before { content: "\f2f0"; }
+
.si-qiita::before { content: "\f2f1"; }
.si-qiita.si--color::before { color: #55C500; }
-
.si-qiskit::before { content: "\f2f1"; }
+
.si-qiskit::before { content: "\f2f2"; }
.si-qiskit.si--color::before { color: #6929C4; }
-
.si-qiwi::before { content: "\f2f2"; }
+
.si-qiwi::before { content: "\f2f3"; }
.si-qiwi.si--color::before { color: #FF8C00; }
-
.si-qlik::before { content: "\f2f3"; }
+
.si-qlik::before { content: "\f2f4"; }
.si-qlik.si--color::before { color: #009848; }
-
.si-qmk::before { content: "\f2f4"; }
+
.si-qmk::before { content: "\f2f5"; }
.si-qmk.si--color::before { color: #333333; }
-
.si-qnap::before { content: "\f2f5"; }
+
.si-qnap::before { content: "\f2f6"; }
.si-qnap.si--color::before { color: #0C2E82; }
-
.si-qq::before { content: "\f2f6"; }
+
.si-qq::before { content: "\f2f7"; }
.si-qq.si--color::before { color: #1EBAFC; }
-
.si-qt::before { content: "\f2f7"; }
+
.si-qt::before { content: "\f2f8"; }
.si-qt.si--color::before { color: #41CD52; }
-
.si-qualcomm::before { content: "\f2f8"; }
+
.si-qualcomm::before { content: "\f2f9"; }
.si-qualcomm.si--color::before { color: #3253DC; }
-
.si-qualtrics::before { content: "\f2f9"; }
+
.si-qualtrics::before { content: "\f2fa"; }
.si-qualtrics.si--color::before { color: #00B4EF; }
-
.si-qualys::before { content: "\f2fa"; }
+
.si-qualys::before { content: "\f2fb"; }
.si-qualys.si--color::before { color: #ED2E26; }
-
.si-quantcast::before { content: "\f2fb"; }
+
.si-quantcast::before { content: "\f2fc"; }
.si-quantcast.si--color::before { color: #000000; }
-
.si-quantconnect::before { content: "\f2fc"; }
+
.si-quantconnect::before { content: "\f2fd"; }
.si-quantconnect.si--color::before { color: #F98309; }
-
.si-quarkus::before { content: "\f2fd"; }
+
.si-quarkus::before { content: "\f2fe"; }
.si-quarkus.si--color::before { color: #4695EB; }
-
.si-quarto::before { content: "\f2fe"; }
+
.si-quarto::before { content: "\f2ff"; }
.si-quarto.si--color::before { color: #39729E; }
-
.si-quasar::before { content: "\f2ff"; }
+
.si-quasar::before { content: "\f300"; }
.si-quasar.si--color::before { color: #050A14; }
-
.si-qubesos::before { content: "\f300"; }
+
.si-qubesos::before { content: "\f301"; }
.si-qubesos.si--color::before { color: #3874D8; }
-
.si-quest::before { content: "\f301"; }
+
.si-quest::before { content: "\f302"; }
.si-quest.si--color::before { color: #FB4F14; }
-
.si-quickbooks::before { content: "\f302"; }
+
.si-quickbooks::before { content: "\f303"; }
.si-quickbooks.si--color::before { color: #2CA01C; }
-
.si-quicklook::before { content: "\f303"; }
+
.si-quicklook::before { content: "\f304"; }
.si-quicklook.si--color::before { color: #0078D3; }
-
.si-quicktime::before { content: "\f304"; }
+
.si-quicktime::before { content: "\f305"; }
.si-quicktime.si--color::before { color: #1C69F0; }
-
.si-quicktype::before { content: "\f305"; }
+
.si-quicktype::before { content: "\f306"; }
.si-quicktype.si--color::before { color: #159588; }
-
.si-quip::before { content: "\f306"; }
+
.si-quip::before { content: "\f307"; }
.si-quip.si--color::before { color: #F27557; }
-
.si-quizlet::before { content: "\f307"; }
+
.si-quizlet::before { content: "\f308"; }
.si-quizlet.si--color::before { color: #4255FF; }
-
.si-quora::before { content: "\f308"; }
+
.si-quora::before { content: "\f309"; }
.si-quora.si--color::before { color: #B92B27; }
-
.si-qwant::before { content: "\f309"; }
+
.si-qwant::before { content: "\f30a"; }
.si-qwant.si--color::before { color: #282B2F; }
-
.si-qwik::before { content: "\f30a"; }
+
.si-qwik::before { content: "\f30b"; }
.si-qwik.si--color::before { color: #AC7EF4; }
-
.si-qwiklabs::before { content: "\f30b"; }
+
.si-qwiklabs::before { content: "\f30c"; }
.si-qwiklabs.si--color::before { color: #F5CD0E; }
-
.si-qzone::before { content: "\f30c"; }
+
.si-qzone::before { content: "\f30d"; }
.si-qzone.si--color::before { color: #FECE00; }
-
.si-r::before { content: "\f30d"; }
+
.si-r::before { content: "\f30e"; }
.si-r.si--color::before { color: #276DC3; }
-
.si-r3::before { content: "\f30e"; }
+
.si-r3::before { content: "\f30f"; }
.si-r3.si--color::before { color: #EC1D24; }
-
.si-rabbitmq::before { content: "\f30f"; }
+
.si-rabbitmq::before { content: "\f310"; }
.si-rabbitmq.si--color::before { color: #FF6600; }
-
.si-racket::before { content: "\f310"; }
+
.si-racket::before { content: "\f311"; }
.si-racket.si--color::before { color: #9F1D20; }
-
.si-radstudio::before { content: "\f311"; }
+
.si-radstudio::before { content: "\f312"; }
.si-radstudio.si--color::before { color: #E62431; }
-
.si-radar::before { content: "\f312"; }
+
.si-radar::before { content: "\f313"; }
.si-radar.si--color::before { color: #007AFF; }
-
.si-radarr::before { content: "\f313"; }
+
.si-radarr::before { content: "\f314"; }
.si-radarr.si--color::before { color: #FFCB3D; }
-
.si-radixui::before { content: "\f314"; }
+
.si-radixui::before { content: "\f315"; }
.si-radixui.si--color::before { color: #161618; }
-
.si-railway::before { content: "\f315"; }
+
.si-railway::before { content: "\f316"; }
.si-railway.si--color::before { color: #0B0D0E; }
-
.si-rainmeter::before { content: "\f316"; }
+
.si-rainmeter::before { content: "\f317"; }
.si-rainmeter.si--color::before { color: #19519B; }
-
.si-rakuten::before { content: "\f317"; }
+
.si-rakuten::before { content: "\f318"; }
.si-rakuten.si--color::before { color: #BF0000; }
-
.si-ram::before { content: "\f318"; }
+
.si-ram::before { content: "\f319"; }
.si-ram.si--color::before { color: #000000; }
-
.si-rancher::before { content: "\f319"; }
+
.si-rancher::before { content: "\f31a"; }
.si-rancher.si--color::before { color: #0075A8; }
-
.si-rapid::before { content: "\f31a"; }
+
.si-rapid::before { content: "\f31b"; }
.si-rapid.si--color::before { color: #0055DA; }
-
.si-rarible::before { content: "\f31b"; }
+
.si-rarible::before { content: "\f31c"; }
.si-rarible.si--color::before { color: #FEDA03; }
-
.si-rasa::before { content: "\f31c"; }
+
.si-rasa::before { content: "\f31d"; }
.si-rasa.si--color::before { color: #5A17EE; }
-
.si-raspberrypi::before { content: "\f31d"; }
+
.si-raspberrypi::before { content: "\f31e"; }
.si-raspberrypi.si--color::before { color: #A22846; }
-
.si-ravelry::before { content: "\f31e"; }
+
.si-ravelry::before { content: "\f31f"; }
.si-ravelry.si--color::before { color: #EE6E62; }
-
.si-ray::before { content: "\f31f"; }
+
.si-ray::before { content: "\f320"; }
.si-ray.si--color::before { color: #028CF0; }
-
.si-raycast::before { content: "\f320"; }
+
.si-raycast::before { content: "\f321"; }
.si-raycast.si--color::before { color: #FF6363; }
-
.si-raylib::before { content: "\f321"; }
+
.si-raylib::before { content: "\f322"; }
.si-raylib.si--color::before { color: #000000; }
-
.si-razer::before { content: "\f322"; }
+
.si-razer::before { content: "\f323"; }
.si-razer.si--color::before { color: #00FF00; }
-
.si-razorpay::before { content: "\f323"; }
+
.si-razorpay::before { content: "\f324"; }
.si-razorpay.si--color::before { color: #0C2451; }
-
.si-rclone::before { content: "\f324"; }
+
.si-rclone::before { content: "\f325"; }
.si-rclone.si--color::before { color: #3F79AD; }
-
.si-react::before { content: "\f325"; }
+
.si-react::before { content: "\f326"; }
.si-react.si--color::before { color: #61DAFB; }
-
.si-reactbootstrap::before { content: "\f326"; }
+
.si-reactbootstrap::before { content: "\f327"; }
.si-reactbootstrap.si--color::before { color: #41E0FD; }
-
.si-reacthookform::before { content: "\f327"; }
+
.si-reacthookform::before { content: "\f328"; }
.si-reacthookform.si--color::before { color: #EC5990; }
-
.si-reactquery::before { content: "\f328"; }
+
.si-reactquery::before { content: "\f329"; }
.si-reactquery.si--color::before { color: #FF4154; }
-
.si-reactrouter::before { content: "\f329"; }
+
.si-reactrouter::before { content: "\f32a"; }
.si-reactrouter.si--color::before { color: #CA4245; }
-
.si-reacttable::before { content: "\f32a"; }
+
.si-reacttable::before { content: "\f32b"; }
.si-reacttable.si--color::before { color: #FF4154; }
-
.si-reactiveresume::before { content: "\f32b"; }
+
.si-reactiveresume::before { content: "\f32c"; }
.si-reactiveresume.si--color::before { color: #000000; }
-
.si-reactivex::before { content: "\f32c"; }
+
.si-reactivex::before { content: "\f32d"; }
.si-reactivex.si--color::before { color: #B7178C; }
-
.si-reactos::before { content: "\f32d"; }
+
.si-reactos::before { content: "\f32e"; }
.si-reactos.si--color::before { color: #0088CC; }
-
.si-readthedocs::before { content: "\f32e"; }
+
.si-readthedocs::before { content: "\f32f"; }
.si-readthedocs.si--color::before { color: #8CA1AF; }
-
.si-readdotcv::before { content: "\f32f"; }
+
.si-readdotcv::before { content: "\f330"; }
.si-readdotcv.si--color::before { color: #111111; }
-
.si-readme::before { content: "\f330"; }
+
.si-readme::before { content: "\f331"; }
.si-readme.si--color::before { color: #018EF5; }
-
.si-reason::before { content: "\f331"; }
+
.si-reason::before { content: "\f332"; }
.si-reason.si--color::before { color: #DD4B39; }
-
.si-reasonstudios::before { content: "\f332"; }
+
.si-reasonstudios::before { content: "\f333"; }
.si-reasonstudios.si--color::before { color: #FFFFFF; }
-
.si-recoil::before { content: "\f333"; }
+
.si-recoil::before { content: "\f334"; }
.si-recoil.si--color::before { color: #3578E5; }
-
.si-red::before { content: "\f334"; }
+
.si-red::before { content: "\f335"; }
.si-red.si--color::before { color: #B32629; }
-
.si-redbull::before { content: "\f335"; }
+
.si-redbull::before { content: "\f336"; }
.si-redbull.si--color::before { color: #DB0A40; }
-
.si-redcandlegames::before { content: "\f336"; }
+
.si-redcandlegames::before { content: "\f337"; }
.si-redcandlegames.si--color::before { color: #D23735; }
-
.si-redhat::before { content: "\f337"; }
+
.si-redhat::before { content: "\f338"; }
.si-redhat.si--color::before { color: #EE0000; }
-
.si-redhatopenshift::before { content: "\f338"; }
+
.si-redhatopenshift::before { content: "\f339"; }
.si-redhatopenshift.si--color::before { color: #EE0000; }
-
.si-redash::before { content: "\f339"; }
+
.si-redash::before { content: "\f33a"; }
.si-redash.si--color::before { color: #FF7964; }
-
.si-redbubble::before { content: "\f33a"; }
+
.si-redbubble::before { content: "\f33b"; }
.si-redbubble.si--color::before { color: #E41321; }
-
.si-reddit::before { content: "\f33b"; }
+
.si-reddit::before { content: "\f33c"; }
.si-reddit.si--color::before { color: #FF4500; }
-
.si-redis::before { content: "\f33c"; }
+
.si-redis::before { content: "\f33d"; }
.si-redis.si--color::before { color: #FF4438; }
-
.si-redmine::before { content: "\f33d"; }
+
.si-redmine::before { content: "\f33e"; }
.si-redmine.si--color::before { color: #B32024; }
-
.si-redox::before { content: "\f33e"; }
+
.si-redox::before { content: "\f33f"; }
.si-redox.si--color::before { color: #000000; }
-
.si-redragon::before { content: "\f33f"; }
+
.si-redragon::before { content: "\f340"; }
.si-redragon.si--color::before { color: #E60012; }
-
.si-redsys::before { content: "\f340"; }
+
.si-redsys::before { content: "\f341"; }
.si-redsys.si--color::before { color: #DC7C26; }
-
.si-redux::before { content: "\f341"; }
+
.si-redux::before { content: "\f342"; }
.si-redux.si--color::before { color: #764ABC; }
-
.si-reduxsaga::before { content: "\f342"; }
+
.si-reduxsaga::before { content: "\f343"; }
.si-reduxsaga.si--color::before { color: #999999; }
-
.si-redwoodjs::before { content: "\f343"; }
+
.si-redwoodjs::before { content: "\f344"; }
.si-redwoodjs.si--color::before { color: #BF4722; }
-
.si-reebok::before { content: "\f344"; }
+
.si-reebok::before { content: "\f345"; }
.si-reebok.si--color::before { color: #E41D1B; }
-
.si-refine::before { content: "\f345"; }
+
.si-refine::before { content: "\f346"; }
.si-refine.si--color::before { color: #14141F; }
-
.si-refinedgithub::before { content: "\f346"; }
+
.si-refinedgithub::before { content: "\f347"; }
.si-refinedgithub.si--color::before { color: #9E95B7; }
-
.si-relay::before { content: "\f347"; }
+
.si-relay::before { content: "\f348"; }
.si-relay.si--color::before { color: #F26B00; }
-
.si-relianceindustrieslimited::before { content: "\f348"; }
+
.si-relianceindustrieslimited::before { content: "\f349"; }
.si-relianceindustrieslimited.si--color::before { color: #D1AB66; }
-
.si-remark::before { content: "\f349"; }
+
.si-remark::before { content: "\f34a"; }
.si-remark.si--color::before { color: #000000; }
-
.si-remedyentertainment::before { content: "\f34a"; }
+
.si-remedyentertainment::before { content: "\f34b"; }
.si-remedyentertainment.si--color::before { color: #D6001C; }
-
.si-remix::before { content: "\f34b"; }
+
.si-remix::before { content: "\f34c"; }
.si-remix.si--color::before { color: #000000; }
-
.si-removedotbg::before { content: "\f34c"; }
+
.si-removedotbg::before { content: "\f34d"; }
.si-removedotbg.si--color::before { color: #54616C; }
-
.si-renpy::before { content: "\f34d"; }
+
.si-renpy::before { content: "\f34e"; }
.si-renpy.si--color::before { color: #FF7F7F; }
-
.si-renault::before { content: "\f34e"; }
+
.si-renault::before { content: "\f34f"; }
.si-renault.si--color::before { color: #FFCC33; }
-
.si-render::before { content: "\f34f"; }
+
.si-render::before { content: "\f350"; }
.si-render.si--color::before { color: #000000; }
-
.si-renovate::before { content: "\f350"; }
+
.si-renovate::before { content: "\f351"; }
.si-renovate.si--color::before { color: #308BE3; }
-
.si-renren::before { content: "\f351"; }
+
.si-renren::before { content: "\f352"; }
.si-renren.si--color::before { color: #217DC6; }
-
.si-replicate::before { content: "\f352"; }
+
.si-replicate::before { content: "\f353"; }
.si-replicate.si--color::before { color: #000000; }
-
.si-replit::before { content: "\f353"; }
+
.si-replit::before { content: "\f354"; }
.si-replit.si--color::before { color: #F26207; }
-
.si-republicofgamers::before { content: "\f354"; }
+
.si-republicofgamers::before { content: "\f355"; }
.si-republicofgamers.si--color::before { color: #FF0029; }
-
.si-rescript::before { content: "\f355"; }
+
.si-rescript::before { content: "\f356"; }
.si-rescript.si--color::before { color: #E6484F; }
-
.si-rescuetime::before { content: "\f356"; }
+
.si-rescuetime::before { content: "\f357"; }
.si-rescuetime.si--color::before { color: #161A3B; }
-
.si-researchgate::before { content: "\f357"; }
+
.si-researchgate::before { content: "\f358"; }
.si-researchgate.si--color::before { color: #00CCBB; }
-
.si-resend::before { content: "\f358"; }
+
.si-resend::before { content: "\f359"; }
.si-resend.si--color::before { color: #000000; }
-
.si-resharper::before { content: "\f359"; }
+
.si-resharper::before { content: "\f35a"; }
.si-resharper.si--color::before { color: #000000; }
-
.si-resurrectionremixos::before { content: "\f35a"; }
+
.si-resurrectionremixos::before { content: "\f35b"; }
.si-resurrectionremixos.si--color::before { color: #000000; }
-
.si-retool::before { content: "\f35b"; }
+
.si-retool::before { content: "\f35c"; }
.si-retool.si--color::before { color: #3D3D3D; }
-
.si-retroarch::before { content: "\f35c"; }
+
.si-retroarch::before { content: "\f35d"; }
.si-retroarch.si--color::before { color: #000000; }
-
.si-retropie::before { content: "\f35d"; }
+
.si-retropie::before { content: "\f35e"; }
.si-retropie.si--color::before { color: #CC0000; }
-
.si-revanced::before { content: "\f35e"; }
+
.si-revanced::before { content: "\f35f"; }
.si-revanced.si--color::before { color: #9ED5FF; }
-
.si-revealdotjs::before { content: "\f35f"; }
+
.si-revealdotjs::before { content: "\f360"; }
.si-revealdotjs.si--color::before { color: #F2E142; }
-
.si-reverbnation::before { content: "\f360"; }
+
.si-reverbnation::before { content: "\f361"; }
.si-reverbnation.si--color::before { color: #E43526; }
-
.si-revoltdotchat::before { content: "\f361"; }
+
.si-revoltdotchat::before { content: "\f362"; }
.si-revoltdotchat.si--color::before { color: #FF4655; }
-
.si-revolut::before { content: "\f362"; }
+
.si-revolut::before { content: "\f363"; }
.si-revolut.si--color::before { color: #191C1F; }
-
.si-rewe::before { content: "\f363"; }
+
.si-rewe::before { content: "\f364"; }
.si-rewe.si--color::before { color: #CC071E; }
-
.si-rezgo::before { content: "\f364"; }
+
.si-rezgo::before { content: "\f365"; }
.si-rezgo.si--color::before { color: #F76C00; }
-
.si-rhinoceros::before { content: "\f365"; }
+
.si-rhinoceros::before { content: "\f366"; }
.si-rhinoceros.si--color::before { color: #801010; }
-
.si-rich::before { content: "\f366"; }
+
.si-rich::before { content: "\f367"; }
.si-rich.si--color::before { color: #FAE742; }
-
.si-rider::before { content: "\f367"; }
+
.si-rider::before { content: "\f368"; }
.si-rider.si--color::before { color: #000000; }
-
.si-rimacautomobili::before { content: "\f368"; }
+
.si-rimacautomobili::before { content: "\f369"; }
.si-rimacautomobili.si--color::before { color: #0A222E; }
-
.si-rime::before { content: "\f369"; }
+
.si-rime::before { content: "\f36a"; }
.si-rime.si--color::before { color: #000000; }
-
.si-ring::before { content: "\f36a"; }
+
.si-ring::before { content: "\f36b"; }
.si-ring.si--color::before { color: #1C9AD6; }
-
.si-riotgames::before { content: "\f36b"; }
+
.si-riotgames::before { content: "\f36c"; }
.si-riotgames.si--color::before { color: #EB0029; }
-
.si-ripple::before { content: "\f36c"; }
+
.si-ripple::before { content: "\f36d"; }
.si-ripple.si--color::before { color: #0085C0; }
-
.si-riscv::before { content: "\f36d"; }
+
.si-riscv::before { content: "\f36e"; }
.si-riscv.si--color::before { color: #283272; }
-
.si-riseup::before { content: "\f36e"; }
+
.si-riseup::before { content: "\f36f"; }
.si-riseup.si--color::before { color: #FF0000; }
-
.si-ritzcarlton::before { content: "\f36f"; }
+
.si-ritzcarlton::before { content: "\f370"; }
.si-ritzcarlton.si--color::before { color: #000000; }
-
.si-rive::before { content: "\f370"; }
+
.si-rive::before { content: "\f371"; }
.si-rive.si--color::before { color: #1D1D1D; }
-
.si-roadmapdotsh::before { content: "\f371"; }
+
.si-roadmapdotsh::before { content: "\f372"; }
.si-roadmapdotsh.si--color::before { color: #000000; }
-
.si-roamresearch::before { content: "\f372"; }
+
.si-roamresearch::before { content: "\f373"; }
.si-roamresearch.si--color::before { color: #343A40; }
-
.si-robinhood::before { content: "\f373"; }
+
.si-robinhood::before { content: "\f374"; }
.si-robinhood.si--color::before { color: #CCFF00; }
-
.si-roblox::before { content: "\f374"; }
+
.si-roblox::before { content: "\f375"; }
.si-roblox.si--color::before { color: #000000; }
-
.si-robloxstudio::before { content: "\f375"; }
+
.si-robloxstudio::before { content: "\f376"; }
.si-robloxstudio.si--color::before { color: #00A2FF; }
-
.si-roboflow::before { content: "\f376"; }
+
.si-roboflow::before { content: "\f377"; }
.si-roboflow.si--color::before { color: #6706CE; }
-
.si-robotframework::before { content: "\f377"; }
+
.si-robotframework::before { content: "\f378"; }
.si-robotframework.si--color::before { color: #000000; }
-
.si-rocket::before { content: "\f378"; }
+
.si-rocket::before { content: "\f379"; }
.si-rocket.si--color::before { color: #D33847; }
-
.si-rocketdotchat::before { content: "\f379"; }
+
.si-rocketdotchat::before { content: "\f37a"; }
.si-rocketdotchat.si--color::before { color: #F5455C; }
-
.si-rocksdb::before { content: "\f37a"; }
+
.si-rocksdb::before { content: "\f37b"; }
.si-rocksdb.si--color::before { color: #2A2A2A; }
-
.si-rockstargames::before { content: "\f37b"; }
+
.si-rockstargames::before { content: "\f37c"; }
.si-rockstargames.si--color::before { color: #FCAF17; }
-
.si-rockwellautomation::before { content: "\f37c"; }
+
.si-rockwellautomation::before { content: "\f37d"; }
.si-rockwellautomation.si--color::before { color: #CD163F; }
-
.si-rockylinux::before { content: "\f37d"; }
+
.si-rockylinux::before { content: "\f37e"; }
.si-rockylinux.si--color::before { color: #10B981; }
-
.si-roku::before { content: "\f37e"; }
+
.si-roku::before { content: "\f37f"; }
.si-roku.si--color::before { color: #662D91; }
-
.si-roll20::before { content: "\f37f"; }
+
.si-roll20::before { content: "\f380"; }
.si-roll20.si--color::before { color: #E10085; }
-
.si-rollsroyce::before { content: "\f380"; }
+
.si-rollsroyce::before { content: "\f381"; }
.si-rollsroyce.si--color::before { color: #281432; }
-
.si-rollupdotjs::before { content: "\f381"; }
+
.si-rollupdotjs::before { content: "\f382"; }
.si-rollupdotjs.si--color::before { color: #EC4A3F; }
-
.si-rook::before { content: "\f382"; }
+
.si-rook::before { content: "\f383"; }
.si-rook.si--color::before { color: #2AC6EA; }
-
.si-roon::before { content: "\f383"; }
+
.si-roon::before { content: "\f384"; }
.si-roon.si--color::before { color: #2039F3; }
-
.si-rootme::before { content: "\f384"; }
+
.si-rootme::before { content: "\f385"; }
.si-rootme.si--color::before { color: #000000; }
-
.si-roots::before { content: "\f385"; }
+
.si-roots::before { content: "\f386"; }
.si-roots.si--color::before { color: #525DDC; }
-
.si-rootsbedrock::before { content: "\f386"; }
+
.si-rootsbedrock::before { content: "\f387"; }
.si-rootsbedrock.si--color::before { color: #525DDC; }
-
.si-rootssage::before { content: "\f387"; }
+
.si-rootssage::before { content: "\f388"; }
.si-rootssage.si--color::before { color: #525DDC; }
-
.si-ros::before { content: "\f388"; }
+
.si-ros::before { content: "\f389"; }
.si-ros.si--color::before { color: #22314E; }
-
.si-rossmann::before { content: "\f389"; }
+
.si-rossmann::before { content: "\f38a"; }
.si-rossmann.si--color::before { color: #C3002D; }
-
.si-rotaryinternational::before { content: "\f38a"; }
+
.si-rotaryinternational::before { content: "\f38b"; }
.si-rotaryinternational.si--color::before { color: #F7A81B; }
-
.si-rottentomatoes::before { content: "\f38b"; }
+
.si-rottentomatoes::before { content: "\f38c"; }
.si-rottentomatoes.si--color::before { color: #FA320A; }
-
.si-roundcube::before { content: "\f38c"; }
+
.si-roundcube::before { content: "\f38d"; }
.si-roundcube.si--color::before { color: #37BEFF; }
-
.si-rsocket::before { content: "\f38d"; }
+
.si-rsocket::before { content: "\f38e"; }
.si-rsocket.si--color::before { color: #EF0092; }
-
.si-rss::before { content: "\f38e"; }
+
.si-rss::before { content: "\f38f"; }
.si-rss.si--color::before { color: #FFA500; }
-
.si-rstudioide::before { content: "\f38f"; }
+
.si-rstudioide::before { content: "\f390"; }
.si-rstudioide.si--color::before { color: #75AADB; }
-
.si-rte::before { content: "\f390"; }
+
.si-rte::before { content: "\f391"; }
.si-rte.si--color::before { color: #00A7B3; }
-
.si-rtl::before { content: "\f391"; }
+
.si-rtl::before { content: "\f392"; }
.si-rtl.si--color::before { color: #FA002E; }
-
.si-rtlzwei::before { content: "\f392"; }
+
.si-rtlzwei::before { content: "\f393"; }
.si-rtlzwei.si--color::before { color: #00BCF6; }
-
.si-rtm::before { content: "\f393"; }
+
.si-rtm::before { content: "\f394"; }
.si-rtm.si--color::before { color: #36474F; }
-
.si-rubocop::before { content: "\f394"; }
+
.si-rubocop::before { content: "\f395"; }
.si-rubocop.si--color::before { color: #000000; }
-
.si-ruby::before { content: "\f395"; }
+
.si-ruby::before { content: "\f396"; }
.si-ruby.si--color::before { color: #CC342D; }
-
.si-rubyonrails::before { content: "\f396"; }
+
.si-rubyonrails::before { content: "\f397"; }
.si-rubyonrails.si--color::before { color: #D30001; }
-
.si-rubysinatra::before { content: "\f397"; }
+
.si-rubysinatra::before { content: "\f398"; }
.si-rubysinatra.si--color::before { color: #000000; }
-
.si-rubygems::before { content: "\f398"; }
+
.si-rubygems::before { content: "\f399"; }
.si-rubygems.si--color::before { color: #E9573F; }
-
.si-rubymine::before { content: "\f399"; }
+
.si-rubymine::before { content: "\f39a"; }
.si-rubymine.si--color::before { color: #000000; }
-
.si-ruff::before { content: "\f39a"; }
+
.si-ruff::before { content: "\f39b"; }
.si-ruff.si--color::before { color: #D7FF64; }
-
.si-rumahweb::before { content: "\f39b"; }
+
.si-rumahweb::before { content: "\f39c"; }
.si-rumahweb.si--color::before { color: #2EB4E3; }
-
.si-rumble::before { content: "\f39c"; }
+
.si-rumble::before { content: "\f39d"; }
.si-rumble.si--color::before { color: #85C742; }
-
.si-rundeck::before { content: "\f39d"; }
+
.si-rundeck::before { content: "\f39e"; }
.si-rundeck.si--color::before { color: #F73F39; }
-
.si-runkeeper::before { content: "\f39e"; }
+
.si-runkeeper::before { content: "\f39f"; }
.si-runkeeper.si--color::before { color: #001E62; }
-
.si-runkit::before { content: "\f39f"; }
+
.si-runkit::before { content: "\f3a0"; }
.si-runkit.si--color::before { color: #491757; }
-
.si-runrundotit::before { content: "\f3a0"; }
+
.si-runrundotit::before { content: "\f3a1"; }
.si-runrundotit.si--color::before { color: #DB3729; }
-
.si-rust::before { content: "\f3a1"; }
+
.si-rust::before { content: "\f3a2"; }
.si-rust.si--color::before { color: #000000; }
-
.si-rustdesk::before { content: "\f3a2"; }
+
.si-rustdesk::before { content: "\f3a3"; }
.si-rustdesk.si--color::before { color: #024EFF; }
-
.si-rxdb::before { content: "\f3a3"; }
+
.si-rxdb::before { content: "\f3a4"; }
.si-rxdb.si--color::before { color: #8D1F89; }
-
.si-ryanair::before { content: "\f3a4"; }
+
.si-ryanair::before { content: "\f3a5"; }
.si-ryanair.si--color::before { color: #073590; }
-
.si-rye::before { content: "\f3a5"; }
+
.si-rye::before { content: "\f3a6"; }
.si-rye.si--color::before { color: #000000; }
-
.si-s7airlines::before { content: "\f3a6"; }
+
.si-s7airlines::before { content: "\f3a7"; }
.si-s7airlines.si--color::before { color: #C4D600; }
-
.si-sabanci::before { content: "\f3a7"; }
+
.si-sabanci::before { content: "\f3a8"; }
.si-sabanci.si--color::before { color: #004B93; }
-
.si-safari::before { content: "\f3a8"; }
+
.si-safari::before { content: "\f3a9"; }
.si-safari.si--color::before { color: #006CFF; }
-
.si-sage::before { content: "\f3a9"; }
+
.si-sage::before { content: "\f3aa"; }
.si-sage.si--color::before { color: #00D639; }
-
.si-sahibinden::before { content: "\f3aa"; }
+
.si-sagemath::before { content: "\f3ab"; }
+
.si-sagemath.si--color::before { color: #3333FF; }
+
.si-sahibinden::before { content: "\f3ac"; }
.si-sahibinden.si--color::before { color: #FFE800; }
-
.si-sailfishos::before { content: "\f3ab"; }
+
.si-sailfishos::before { content: "\f3ad"; }
.si-sailfishos.si--color::before { color: #053766; }
-
.si-sailsdotjs::before { content: "\f3ac"; }
+
.si-sailsdotjs::before { content: "\f3ae"; }
.si-sailsdotjs.si--color::before { color: #14ACC2; }
-
.si-salesforce::before { content: "\f3ad"; }
+
.si-salesforce::before { content: "\f3af"; }
.si-salesforce.si--color::before { color: #00A1E0; }
-
.si-salla::before { content: "\f3ae"; }
+
.si-salla::before { content: "\f3b0"; }
.si-salla.si--color::before { color: #BAF3E6; }
-
.si-saltproject::before { content: "\f3af"; }
+
.si-saltproject::before { content: "\f3b1"; }
.si-saltproject.si--color::before { color: #57BCAD; }
-
.si-samsclub::before { content: "\f3b0"; }
+
.si-samsclub::before { content: "\f3b2"; }
.si-samsclub.si--color::before { color: #0067A0; }
-
.si-samsung::before { content: "\f3b1"; }
+
.si-samsung::before { content: "\f3b3"; }
.si-samsung.si--color::before { color: #1428A0; }
-
.si-samsungpay::before { content: "\f3b2"; }
+
.si-samsungpay::before { content: "\f3b4"; }
.si-samsungpay.si--color::before { color: #1428A0; }
-
.si-sanfranciscomunicipalrailway::before { content: "\f3b3"; }
+
.si-sanfranciscomunicipalrailway::before { content: "\f3b5"; }
.si-sanfranciscomunicipalrailway.si--color::before { color: #BA0C2F; }
-
.si-sandisk::before { content: "\f3b4"; }
+
.si-sandisk::before { content: "\f3b6"; }
.si-sandisk.si--color::before { color: #ED1C24; }
-
.si-sanic::before { content: "\f3b5"; }
+
.si-sanic::before { content: "\f3b7"; }
.si-sanic.si--color::before { color: #FF0D68; }
-
.si-sanity::before { content: "\f3b6"; }
+
.si-sanity::before { content: "\f3b8"; }
.si-sanity.si--color::before { color: #F03E2F; }
-
.si-saopaulometro::before { content: "\f3b7"; }
+
.si-saopaulometro::before { content: "\f3b9"; }
.si-saopaulometro.si--color::before { color: #004382; }
-
.si-sap::before { content: "\f3b8"; }
+
.si-sap::before { content: "\f3ba"; }
.si-sap.si--color::before { color: #0FAAFF; }
-
.si-sartorius::before { content: "\f3b9"; }
+
.si-sartorius::before { content: "\f3bb"; }
.si-sartorius.si--color::before { color: #FFED00; }
-
.si-sass::before { content: "\f3ba"; }
+
.si-sass::before { content: "\f3bc"; }
.si-sass.si--color::before { color: #CC6699; }
-
.si-sat1::before { content: "\f3bb"; }
+
.si-sat1::before { content: "\f3bd"; }
.si-sat1.si--color::before { color: #047DA3; }
-
.si-satellite::before { content: "\f3bc"; }
+
.si-satellite::before { content: "\f3be"; }
.si-satellite.si--color::before { color: #000000; }
-
.si-saturn::before { content: "\f3bd"; }
+
.si-saturn::before { content: "\f3bf"; }
.si-saturn.si--color::before { color: #EB680B; }
-
.si-saucelabs::before { content: "\f3be"; }
+
.si-saucelabs::before { content: "\f3c0"; }
.si-saucelabs.si--color::before { color: #3DDC91; }
-
.si-saudia::before { content: "\f3bf"; }
+
.si-saudia::before { content: "\f3c1"; }
.si-saudia.si--color::before { color: #026938; }
-
.si-scala::before { content: "\f3c0"; }
+
.si-scala::before { content: "\f3c2"; }
.si-scala.si--color::before { color: #DC322F; }
-
.si-scalar::before { content: "\f3c1"; }
+
.si-scalar::before { content: "\f3c3"; }
.si-scalar.si--color::before { color: #1A1A1A; }
-
.si-scaleway::before { content: "\f3c2"; }
+
.si-scaleway::before { content: "\f3c4"; }
.si-scaleway.si--color::before { color: #4F0599; }
-
.si-scania::before { content: "\f3c3"; }
+
.si-scania::before { content: "\f3c5"; }
.si-scania.si--color::before { color: #041E42; }
-
.si-schneiderelectric::before { content: "\f3c4"; }
+
.si-schneiderelectric::before { content: "\f3c6"; }
.si-schneiderelectric.si--color::before { color: #3DCD58; }
-
.si-scikitlearn::before { content: "\f3c5"; }
+
.si-scikitlearn::before { content: "\f3c7"; }
.si-scikitlearn.si--color::before { color: #F7931E; }
-
.si-scilab::before { content: "\f3c6"; }
+
.si-scilab::before { content: "\f3c8"; }
.si-scilab.si--color::before { color: #CD1925; }
-
.si-scipy::before { content: "\f3c7"; }
+
.si-scipy::before { content: "\f3c9"; }
.si-scipy.si--color::before { color: #8CAAE6; }
-
.si-scopus::before { content: "\f3c8"; }
+
.si-scopus::before { content: "\f3ca"; }
.si-scopus.si--color::before { color: #E9711C; }
-
.si-scpfoundation::before { content: "\f3c9"; }
+
.si-scpfoundation::before { content: "\f3cb"; }
.si-scpfoundation.si--color::before { color: #FFFFFF; }
-
.si-scrapbox::before { content: "\f3ca"; }
+
.si-scrapbox::before { content: "\f3cc"; }
.si-scrapbox.si--color::before { color: #06B632; }
-
.si-scrapy::before { content: "\f3cb"; }
+
.si-scrapy::before { content: "\f3cd"; }
.si-scrapy.si--color::before { color: #60A839; }
-
.si-scratch::before { content: "\f3cc"; }
+
.si-scratch::before { content: "\f3ce"; }
.si-scratch.si--color::before { color: #4D97FF; }
-
.si-screencastify::before { content: "\f3cd"; }
+
.si-screencastify::before { content: "\f3cf"; }
.si-screencastify.si--color::before { color: #FF8282; }
-
.si-scribd::before { content: "\f3ce"; }
+
.si-scribd::before { content: "\f3d0"; }
.si-scribd.si--color::before { color: #1E7B85; }
-
.si-scrimba::before { content: "\f3cf"; }
+
.si-scrimba::before { content: "\f3d1"; }
.si-scrimba.si--color::before { color: #2B283A; }
-
.si-scrollreveal::before { content: "\f3d0"; }
+
.si-scrollreveal::before { content: "\f3d2"; }
.si-scrollreveal.si--color::before { color: #FFCB36; }
-
.si-scrumalliance::before { content: "\f3d1"; }
+
.si-scrumalliance::before { content: "\f3d3"; }
.si-scrumalliance.si--color::before { color: #009FDA; }
-
.si-scrutinizerci::before { content: "\f3d2"; }
+
.si-scrutinizerci::before { content: "\f3d4"; }
.si-scrutinizerci.si--color::before { color: #8A9296; }
-
.si-scylladb::before { content: "\f3d3"; }
+
.si-scylladb::before { content: "\f3d5"; }
.si-scylladb.si--color::before { color: #6CD5E7; }
-
.si-seagate::before { content: "\f3d4"; }
+
.si-seagate::before { content: "\f3d6"; }
.si-seagate.si--color::before { color: #6EBE49; }
-
.si-searxng::before { content: "\f3d5"; }
+
.si-searxng::before { content: "\f3d7"; }
.si-searxng.si--color::before { color: #3050FF; }
-
.si-seat::before { content: "\f3d6"; }
+
.si-seat::before { content: "\f3d8"; }
.si-seat.si--color::before { color: #33302E; }
-
.si-seatgeek::before { content: "\f3d7"; }
+
.si-seatgeek::before { content: "\f3d9"; }
.si-seatgeek.si--color::before { color: #FF5B49; }
-
.si-securityscorecard::before { content: "\f3d8"; }
+
.si-securityscorecard::before { content: "\f3da"; }
.si-securityscorecard.si--color::before { color: #7033FD; }
-
.si-sefaria::before { content: "\f3d9"; }
+
.si-sefaria::before { content: "\f3db"; }
.si-sefaria.si--color::before { color: #212E50; }
-
.si-sega::before { content: "\f3da"; }
+
.si-sega::before { content: "\f3dc"; }
.si-sega.si--color::before { color: #0089CF; }
-
.si-selenium::before { content: "\f3db"; }
+
.si-selenium::before { content: "\f3dd"; }
.si-selenium.si--color::before { color: #43B02A; }
-
.si-sellfy::before { content: "\f3dc"; }
+
.si-sellfy::before { content: "\f3de"; }
.si-sellfy.si--color::before { color: #21B352; }
-
.si-semanticscholar::before { content: "\f3dd"; }
+
.si-semanticscholar::before { content: "\f3df"; }
.si-semanticscholar.si--color::before { color: #1857B6; }
-
.si-semanticui::before { content: "\f3de"; }
+
.si-semanticui::before { content: "\f3e0"; }
.si-semanticui.si--color::before { color: #00B5AD; }
-
.si-semanticuireact::before { content: "\f3df"; }
+
.si-semanticuireact::before { content: "\f3e1"; }
.si-semanticuireact.si--color::before { color: #35BDB2; }
-
.si-semanticweb::before { content: "\f3e0"; }
+
.si-semanticweb::before { content: "\f3e2"; }
.si-semanticweb.si--color::before { color: #005A9C; }
-
.si-semanticrelease::before { content: "\f3e1"; }
+
.si-semanticrelease::before { content: "\f3e3"; }
.si-semanticrelease.si--color::before { color: #494949; }
-
.si-semaphoreci::before { content: "\f3e2"; }
+
.si-semaphoreci::before { content: "\f3e4"; }
.si-semaphoreci.si--color::before { color: #19A974; }
-
.si-semrush::before { content: "\f3e3"; }
+
.si-semrush::before { content: "\f3e5"; }
.si-semrush.si--color::before { color: #FF642D; }
-
.si-semver::before { content: "\f3e4"; }
+
.si-semver::before { content: "\f3e6"; }
.si-semver.si--color::before { color: #3F4551; }
-
.si-sencha::before { content: "\f3e5"; }
+
.si-sencha::before { content: "\f3e7"; }
.si-sencha.si--color::before { color: #86BC40; }
-
.si-sendgrid::before { content: "\f3e6"; }
+
.si-sendgrid::before { content: "\f3e8"; }
.si-sendgrid.si--color::before { color: #51A9E3; }
-
.si-sennheiser::before { content: "\f3e7"; }
+
.si-sennheiser::before { content: "\f3e9"; }
.si-sennheiser.si--color::before { color: #000000; }
-
.si-sensu::before { content: "\f3e8"; }
+
.si-sensu::before { content: "\f3ea"; }
.si-sensu.si--color::before { color: #89C967; }
-
.si-sentry::before { content: "\f3e9"; }
+
.si-sentry::before { content: "\f3eb"; }
.si-sentry.si--color::before { color: #362D59; }
-
.si-sepa::before { content: "\f3ea"; }
+
.si-sepa::before { content: "\f3ec"; }
.si-sepa.si--color::before { color: #2350A9; }
-
.si-sequelize::before { content: "\f3eb"; }
+
.si-sequelize::before { content: "\f3ed"; }
.si-sequelize.si--color::before { color: #52B0E7; }
-
.si-serverfault::before { content: "\f3ec"; }
+
.si-serverfault::before { content: "\f3ee"; }
.si-serverfault.si--color::before { color: #E7282D; }
-
.si-serverless::before { content: "\f3ed"; }
+
.si-serverless::before { content: "\f3ef"; }
.si-serverless.si--color::before { color: #FD5750; }
-
.si-session::before { content: "\f3ee"; }
+
.si-session::before { content: "\f3f0"; }
.si-session.si--color::before { color: #000000; }
-
.si-sessionize::before { content: "\f3ef"; }
+
.si-sessionize::before { content: "\f3f1"; }
.si-sessionize.si--color::before { color: #1AB394; }
-
.si-setapp::before { content: "\f3f0"; }
+
.si-setapp::before { content: "\f3f2"; }
.si-setapp.si--color::before { color: #E6C3A5; }
-
.si-sfml::before { content: "\f3f1"; }
+
.si-sfml::before { content: "\f3f3"; }
.si-sfml.si--color::before { color: #8CC445; }
-
.si-shadcnui::before { content: "\f3f2"; }
+
.si-shadcnui::before { content: "\f3f4"; }
.si-shadcnui.si--color::before { color: #000000; }
-
.si-shadow::before { content: "\f3f3"; }
+
.si-shadow::before { content: "\f3f5"; }
.si-shadow.si--color::before { color: #0A0C0D; }
-
.si-shanghaimetro::before { content: "\f3f4"; }
+
.si-shanghaimetro::before { content: "\f3f6"; }
.si-shanghaimetro.si--color::before { color: #EC1C24; }
-
.si-sharex::before { content: "\f3f5"; }
+
.si-sharex::before { content: "\f3f7"; }
.si-sharex.si--color::before { color: #2885F1; }
-
.si-sharp::before { content: "\f3f6"; }
+
.si-sharp::before { content: "\f3f8"; }
.si-sharp.si--color::before { color: #99CC00; }
-
.si-shazam::before { content: "\f3f7"; }
+
.si-shazam::before { content: "\f3f9"; }
.si-shazam.si--color::before { color: #0088FF; }
-
.si-shell::before { content: "\f3f8"; }
+
.si-shell::before { content: "\f3fa"; }
.si-shell.si--color::before { color: #FFD500; }
-
.si-shelly::before { content: "\f3f9"; }
+
.si-shelly::before { content: "\f3fb"; }
.si-shelly.si--color::before { color: #4495D1; }
-
.si-shenzhenmetro::before { content: "\f3fa"; }
+
.si-shenzhenmetro::before { content: "\f3fc"; }
.si-shenzhenmetro.si--color::before { color: #009943; }
-
.si-shieldsdotio::before { content: "\f3fb"; }
+
.si-shieldsdotio::before { content: "\f3fd"; }
.si-shieldsdotio.si--color::before { color: #000000; }
-
.si-shikimori::before { content: "\f3fc"; }
+
.si-shikimori::before { content: "\f3fe"; }
.si-shikimori.si--color::before { color: #343434; }
-
.si-shopee::before { content: "\f3fd"; }
+
.si-shopee::before { content: "\f3ff"; }
.si-shopee.si--color::before { color: #EE4D2D; }
-
.si-shopify::before { content: "\f3fe"; }
+
.si-shopify::before { content: "\f400"; }
.si-shopify.si--color::before { color: #7AB55C; }
-
.si-shopware::before { content: "\f3ff"; }
+
.si-shopware::before { content: "\f401"; }
.si-shopware.si--color::before { color: #189EFF; }
-
.si-shortcut::before { content: "\f400"; }
+
.si-shortcut::before { content: "\f402"; }
.si-shortcut.si--color::before { color: #58B1E4; }
-
.si-showpad::before { content: "\f401"; }
+
.si-showpad::before { content: "\f403"; }
.si-showpad.si--color::before { color: #2D2E83; }
-
.si-showtime::before { content: "\f402"; }
+
.si-showtime::before { content: "\f404"; }
.si-showtime.si--color::before { color: #B10000; }
-
.si-showwcase::before { content: "\f403"; }
+
.si-showwcase::before { content: "\f405"; }
.si-showwcase.si--color::before { color: #0A0D14; }
-
.si-shutterstock::before { content: "\f404"; }
+
.si-shutterstock::before { content: "\f406"; }
.si-shutterstock.si--color::before { color: #EE2B24; }
-
.si-sidekiq::before { content: "\f405"; }
+
.si-sidekiq::before { content: "\f407"; }
.si-sidekiq.si--color::before { color: #B1003E; }
-
.si-sidequest::before { content: "\f406"; }
+
.si-sidequest::before { content: "\f408"; }
.si-sidequest.si--color::before { color: #101227; }
-
.si-siemens::before { content: "\f407"; }
+
.si-siemens::before { content: "\f409"; }
.si-siemens.si--color::before { color: #009999; }
-
.si-sifive::before { content: "\f408"; }
+
.si-sifive::before { content: "\f40a"; }
.si-sifive.si--color::before { color: #252323; }
-
.si-signal::before { content: "\f409"; }
+
.si-signal::before { content: "\f40b"; }
.si-signal.si--color::before { color: #3B45FD; }
-
.si-silverairways::before { content: "\f40a"; }
+
.si-silverairways::before { content: "\f40c"; }
.si-silverairways.si--color::before { color: #D0006F; }
-
.si-similarweb::before { content: "\f40b"; }
+
.si-similarweb::before { content: "\f40d"; }
.si-similarweb.si--color::before { color: #092540; }
-
.si-simkl::before { content: "\f40c"; }
+
.si-simkl::before { content: "\f40e"; }
.si-simkl.si--color::before { color: #000000; }
-
.si-simpleanalytics::before { content: "\f40d"; }
+
.si-simpleanalytics::before { content: "\f40f"; }
.si-simpleanalytics.si--color::before { color: #FF4F64; }
-
.si-simpleicons::before { content: "\f40e"; }
+
.si-simpleicons::before { content: "\f410"; }
.si-simpleicons.si--color::before { color: #111111; }
-
.si-simplelogin::before { content: "\f40f"; }
+
.si-simplelogin::before { content: "\f411"; }
.si-simplelogin.si--color::before { color: #EA319F; }
-
.si-simplenote::before { content: "\f410"; }
+
.si-simplenote::before { content: "\f412"; }
.si-simplenote.si--color::before { color: #3361CC; }
-
.si-simplex::before { content: "\f411"; }
+
.si-simplex::before { content: "\f413"; }
.si-simplex.si--color::before { color: #000000; }
-
.si-sinaweibo::before { content: "\f412"; }
+
.si-sinaweibo::before { content: "\f414"; }
.si-sinaweibo.si--color::before { color: #E6162D; }
-
.si-singaporeairlines::before { content: "\f413"; }
+
.si-singaporeairlines::before { content: "\f415"; }
.si-singaporeairlines.si--color::before { color: #F99F1C; }
-
.si-singlestore::before { content: "\f414"; }
+
.si-singlestore::before { content: "\f416"; }
.si-singlestore.si--color::before { color: #AA00FF; }
-
.si-sitecore::before { content: "\f415"; }
+
.si-sitecore::before { content: "\f417"; }
.si-sitecore.si--color::before { color: #EB1F1F; }
-
.si-sitepoint::before { content: "\f416"; }
+
.si-sitepoint::before { content: "\f418"; }
.si-sitepoint.si--color::before { color: #258AAF; }
-
.si-siyuan::before { content: "\f417"; }
+
.si-siyuan::before { content: "\f419"; }
.si-siyuan.si--color::before { color: #D23F31; }
-
.si-skaffold::before { content: "\f418"; }
+
.si-skaffold::before { content: "\f41a"; }
.si-skaffold.si--color::before { color: #2AA2D6; }
-
.si-sketch::before { content: "\f419"; }
+
.si-sketch::before { content: "\f41b"; }
.si-sketch.si--color::before { color: #F7B500; }
-
.si-sketchfab::before { content: "\f41a"; }
+
.si-sketchfab::before { content: "\f41c"; }
.si-sketchfab.si--color::before { color: #1CAAD9; }
-
.si-sketchup::before { content: "\f41b"; }
+
.si-sketchup::before { content: "\f41d"; }
.si-sketchup.si--color::before { color: #005F9E; }
-
.si-skillshare::before { content: "\f41c"; }
+
.si-skillshare::before { content: "\f41e"; }
.si-skillshare.si--color::before { color: #00FF84; }
-
.si-skoda::before { content: "\f41d"; }
+
.si-skoda::before { content: "\f41f"; }
.si-skoda.si--color::before { color: #0E3A2F; }
-
.si-sky::before { content: "\f41e"; }
+
.si-sky::before { content: "\f420"; }
.si-sky.si--color::before { color: #0072C9; }
-
.si-skypack::before { content: "\f41f"; }
+
.si-skypack::before { content: "\f421"; }
.si-skypack.si--color::before { color: #3167FF; }
-
.si-slack::before { content: "\f420"; }
+
.si-slack::before { content: "\f422"; }
.si-slack.si--color::before { color: #4A154B; }
-
.si-slackware::before { content: "\f421"; }
+
.si-slackware::before { content: "\f423"; }
.si-slackware.si--color::before { color: #000000; }
-
.si-slashdot::before { content: "\f422"; }
+
.si-slashdot::before { content: "\f424"; }
.si-slashdot.si--color::before { color: #026664; }
-
.si-slickpic::before { content: "\f423"; }
+
.si-slickpic::before { content: "\f425"; }
.si-slickpic.si--color::before { color: #FF880F; }
-
.si-slides::before { content: "\f424"; }
+
.si-slides::before { content: "\f426"; }
.si-slides.si--color::before { color: #E4637C; }
-
.si-slideshare::before { content: "\f425"; }
+
.si-slideshare::before { content: "\f427"; }
.si-slideshare.si--color::before { color: #008ED2; }
-
.si-slint::before { content: "\f426"; }
+
.si-slint::before { content: "\f428"; }
.si-slint.si--color::before { color: #2379F4; }
-
.si-smart::before { content: "\f427"; }
+
.si-smart::before { content: "\f429"; }
.si-smart.si--color::before { color: #D7E600; }
-
.si-smartthings::before { content: "\f428"; }
+
.si-smartthings::before { content: "\f42a"; }
.si-smartthings.si--color::before { color: #15BFFF; }
-
.si-smashingmagazine::before { content: "\f429"; }
+
.si-smashingmagazine::before { content: "\f42b"; }
.si-smashingmagazine.si--color::before { color: #E85C33; }
-
.si-smrt::before { content: "\f42a"; }
+
.si-smrt::before { content: "\f42c"; }
.si-smrt.si--color::before { color: #EE2E24; }
-
.si-smugmug::before { content: "\f42b"; }
+
.si-smugmug::before { content: "\f42d"; }
.si-smugmug.si--color::before { color: #6DB944; }
-
.si-snapchat::before { content: "\f42c"; }
+
.si-snapchat::before { content: "\f42e"; }
.si-snapchat.si--color::before { color: #FFFC00; }
-
.si-snapcraft::before { content: "\f42d"; }
+
.si-snapcraft::before { content: "\f42f"; }
.si-snapcraft.si--color::before { color: #82BEA0; }
-
.si-snapdragon::before { content: "\f42e"; }
+
.si-snapdragon::before { content: "\f430"; }
.si-snapdragon.si--color::before { color: #C33139; }
-
.si-sncf::before { content: "\f42f"; }
+
.si-sncf::before { content: "\f431"; }
.si-sncf.si--color::before { color: #CA0939; }
-
.si-snort::before { content: "\f430"; }
+
.si-snort::before { content: "\f432"; }
.si-snort.si--color::before { color: #F6A7AA; }
-
.si-snowflake::before { content: "\f431"; }
+
.si-snowflake::before { content: "\f433"; }
.si-snowflake.si--color::before { color: #29B5E8; }
-
.si-snowpack::before { content: "\f432"; }
+
.si-snowpack::before { content: "\f434"; }
.si-snowpack.si--color::before { color: #2E5E82; }
-
.si-snyk::before { content: "\f433"; }
+
.si-snyk::before { content: "\f435"; }
.si-snyk.si--color::before { color: #4C4A73; }
-
.si-socialblade::before { content: "\f434"; }
+
.si-socialblade::before { content: "\f436"; }
.si-socialblade.si--color::before { color: #B3382C; }
-
.si-society6::before { content: "\f435"; }
+
.si-society6::before { content: "\f437"; }
.si-society6.si--color::before { color: #000000; }
-
.si-socket::before { content: "\f436"; }
+
.si-socket::before { content: "\f438"; }
.si-socket.si--color::before { color: #C93CD7; }
-
.si-socketdotio::before { content: "\f437"; }
+
.si-socketdotio::before { content: "\f439"; }
.si-socketdotio.si--color::before { color: #010101; }
-
.si-softcatala::before { content: "\f438"; }
+
.si-softcatala::before { content: "\f43a"; }
.si-softcatala.si--color::before { color: #BA2626; }
-
.si-softpedia::before { content: "\f439"; }
+
.si-softpedia::before { content: "\f43b"; }
.si-softpedia.si--color::before { color: #002873; }
-
.si-sogou::before { content: "\f43a"; }
+
.si-sogou::before { content: "\f43c"; }
.si-sogou.si--color::before { color: #FB6022; }
-
.si-solana::before { content: "\f43b"; }
+
.si-solana::before { content: "\f43d"; }
.si-solana.si--color::before { color: #9945FF; }
-
.si-solid::before { content: "\f43c"; }
+
.si-solid::before { content: "\f43e"; }
.si-solid.si--color::before { color: #2C4F7C; }
-
.si-solidity::before { content: "\f43d"; }
+
.si-solidity::before { content: "\f43f"; }
.si-solidity.si--color::before { color: #363636; }
-
.si-sololearn::before { content: "\f43e"; }
+
.si-sololearn::before { content: "\f440"; }
.si-sololearn.si--color::before { color: #149EF2; }
-
.si-solus::before { content: "\f43f"; }
+
.si-solus::before { content: "\f441"; }
.si-solus.si--color::before { color: #5294E2; }
-
.si-sonar::before { content: "\f440"; }
+
.si-sonar::before { content: "\f442"; }
.si-sonar.si--color::before { color: #FD3456; }
-
.si-sonarcloud::before { content: "\f441"; }
+
.si-sonarcloud::before { content: "\f443"; }
.si-sonarcloud.si--color::before { color: #F3702A; }
-
.si-sonarlint::before { content: "\f442"; }
+
.si-sonarlint::before { content: "\f444"; }
.si-sonarlint.si--color::before { color: #CB2029; }
-
.si-sonarqube::before { content: "\f443"; }
+
.si-sonarqube::before { content: "\f445"; }
.si-sonarqube.si--color::before { color: #4E9BCD; }
-
.si-sonarr::before { content: "\f444"; }
+
.si-sonarr::before { content: "\f446"; }
.si-sonarr.si--color::before { color: #2596BE; }
-
.si-sonatype::before { content: "\f445"; }
+
.si-sonatype::before { content: "\f447"; }
.si-sonatype.si--color::before { color: #1B1C30; }
-
.si-songkick::before { content: "\f446"; }
+
.si-songkick::before { content: "\f448"; }
.si-songkick.si--color::before { color: #F80046; }
-
.si-songoda::before { content: "\f447"; }
+
.si-songoda::before { content: "\f449"; }
.si-songoda.si--color::before { color: #FC494A; }
-
.si-sonicwall::before { content: "\f448"; }
+
.si-sonicwall::before { content: "\f44a"; }
.si-sonicwall.si--color::before { color: #FF791A; }
-
.si-sonos::before { content: "\f449"; }
+
.si-sonos::before { content: "\f44b"; }
.si-sonos.si--color::before { color: #000000; }
-
.si-sony::before { content: "\f44a"; }
+
.si-sony::before { content: "\f44c"; }
.si-sony.si--color::before { color: #FFFFFF; }
-
.si-soriana::before { content: "\f44b"; }
+
.si-soriana::before { content: "\f44d"; }
.si-soriana.si--color::before { color: #D52B1E; }
-
.si-soundcharts::before { content: "\f44c"; }
+
.si-soundcharts::before { content: "\f44e"; }
.si-soundcharts.si--color::before { color: #0C1528; }
-
.si-soundcloud::before { content: "\f44d"; }
+
.si-soundcloud::before { content: "\f44f"; }
.si-soundcloud.si--color::before { color: #FF5500; }
-
.si-sourceengine::before { content: "\f44e"; }
+
.si-sourceengine::before { content: "\f450"; }
.si-sourceengine.si--color::before { color: #F79A10; }
-
.si-sourceforge::before { content: "\f44f"; }
+
.si-sourceforge::before { content: "\f451"; }
.si-sourceforge.si--color::before { color: #FF6600; }
-
.si-sourcehut::before { content: "\f450"; }
+
.si-sourcehut::before { content: "\f452"; }
.si-sourcehut.si--color::before { color: #000000; }
-
.si-sourcetree::before { content: "\f451"; }
+
.si-sourcetree::before { content: "\f453"; }
.si-sourcetree.si--color::before { color: #0052CC; }
-
.si-southwestairlines::before { content: "\f452"; }
+
.si-southwestairlines::before { content: "\f454"; }
.si-southwestairlines.si--color::before { color: #304CB2; }
-
.si-spacemacs::before { content: "\f453"; }
+
.si-spacemacs::before { content: "\f455"; }
.si-spacemacs.si--color::before { color: #9266CC; }
-
.si-spaceship::before { content: "\f454"; }
+
.si-spaceship::before { content: "\f456"; }
.si-spaceship.si--color::before { color: #394EFF; }
-
.si-spacex::before { content: "\f455"; }
+
.si-spacex::before { content: "\f457"; }
.si-spacex.si--color::before { color: #000000; }
-
.si-spacy::before { content: "\f456"; }
+
.si-spacy::before { content: "\f458"; }
.si-spacy.si--color::before { color: #09A3D5; }
-
.si-sparkar::before { content: "\f457"; }
+
.si-sparkar::before { content: "\f459"; }
.si-sparkar.si--color::before { color: #FF5C83; }
-
.si-sparkasse::before { content: "\f458"; }
+
.si-sparkasse::before { content: "\f45a"; }
.si-sparkasse.si--color::before { color: #FF0000; }
-
.si-sparkfun::before { content: "\f459"; }
+
.si-sparkfun::before { content: "\f45b"; }
.si-sparkfun.si--color::before { color: #E53525; }
-
.si-sparkpost::before { content: "\f45a"; }
+
.si-sparkpost::before { content: "\f45c"; }
.si-sparkpost.si--color::before { color: #FA6423; }
-
.si-spdx::before { content: "\f45b"; }
+
.si-spdx::before { content: "\f45d"; }
.si-spdx.si--color::before { color: #4398CC; }
-
.si-speakerdeck::before { content: "\f45c"; }
+
.si-speakerdeck::before { content: "\f45e"; }
.si-speakerdeck.si--color::before { color: #009287; }
-
.si-spectrum::before { content: "\f45d"; }
+
.si-spectrum::before { content: "\f45f"; }
.si-spectrum.si--color::before { color: #7B16FF; }
-
.si-speedtest::before { content: "\f45e"; }
+
.si-speedtest::before { content: "\f460"; }
.si-speedtest.si--color::before { color: #141526; }
-
.si-speedypage::before { content: "\f45f"; }
+
.si-speedypage::before { content: "\f461"; }
.si-speedypage.si--color::before { color: #1C71F9; }
-
.si-spoj::before { content: "\f460"; }
+
.si-spoj::before { content: "\f462"; }
.si-spoj.si--color::before { color: #337AB7; }
-
.si-sphinx::before { content: "\f461"; }
+
.si-sphinx::before { content: "\f463"; }
.si-sphinx.si--color::before { color: #000000; }
-
.si-spigotmc::before { content: "\f462"; }
+
.si-spigotmc::before { content: "\f464"; }
.si-spigotmc.si--color::before { color: #ED8106; }
-
.si-spine::before { content: "\f463"; }
+
.si-spine::before { content: "\f465"; }
.si-spine.si--color::before { color: #FF4000; }
-
.si-spinnaker::before { content: "\f464"; }
+
.si-spinnaker::before { content: "\f466"; }
.si-spinnaker.si--color::before { color: #139BB4; }
-
.si-splunk::before { content: "\f465"; }
+
.si-splunk::before { content: "\f467"; }
.si-splunk.si--color::before { color: #000000; }
-
.si-spond::before { content: "\f466"; }
+
.si-spond::before { content: "\f468"; }
.si-spond.si--color::before { color: #EE4353; }
-
.si-spotify::before { content: "\f467"; }
+
.si-spotify::before { content: "\f469"; }
.si-spotify.si--color::before { color: #1ED760; }
-
.si-spotlight::before { content: "\f468"; }
+
.si-spotlight::before { content: "\f46a"; }
.si-spotlight.si--color::before { color: #352A71; }
-
.si-spreadshirt::before { content: "\f469"; }
+
.si-spreadshirt::before { content: "\f46b"; }
.si-spreadshirt.si--color::before { color: #00B2A5; }
-
.si-spreaker::before { content: "\f46a"; }
+
.si-spreaker::before { content: "\f46c"; }
.si-spreaker.si--color::before { color: #F5C300; }
-
.si-spring::before { content: "\f46b"; }
+
.si-spring::before { content: "\f46d"; }
.si-spring.si--color::before { color: #6DB33F; }
-
.si-spring_creators::before { content: "\f46c"; }
+
.si-spring_creators::before { content: "\f46e"; }
.si-spring_creators.si--color::before { color: #000000; }
-
.si-springboot::before { content: "\f46d"; }
+
.si-springboot::before { content: "\f46f"; }
.si-springboot.si--color::before { color: #6DB33F; }
-
.si-springsecurity::before { content: "\f46e"; }
+
.si-springsecurity::before { content: "\f470"; }
.si-springsecurity.si--color::before { color: #6DB33F; }
-
.si-spyderide::before { content: "\f46f"; }
+
.si-spyderide::before { content: "\f471"; }
.si-spyderide.si--color::before { color: #8C0000; }
-
.si-sqlalchemy::before { content: "\f470"; }
+
.si-sqlalchemy::before { content: "\f472"; }
.si-sqlalchemy.si--color::before { color: #D71F00; }
-
.si-sqlite::before { content: "\f471"; }
+
.si-sqlite::before { content: "\f473"; }
.si-sqlite.si--color::before { color: #003B57; }
-
.si-square::before { content: "\f472"; }
+
.si-square::before { content: "\f474"; }
.si-square.si--color::before { color: #3E4348; }
-
.si-squareenix::before { content: "\f473"; }
+
.si-squareenix::before { content: "\f475"; }
.si-squareenix.si--color::before { color: #ED1C24; }
-
.si-squarespace::before { content: "\f474"; }
+
.si-squarespace::before { content: "\f476"; }
.si-squarespace.si--color::before { color: #000000; }
-
.si-srgssr::before { content: "\f475"; }
+
.si-srgssr::before { content: "\f477"; }
.si-srgssr.si--color::before { color: #AF001E; }
-
.si-ssrn::before { content: "\f476"; }
+
.si-ssrn::before { content: "\f478"; }
.si-ssrn.si--color::before { color: #154881; }
-
.si-sst::before { content: "\f477"; }
+
.si-sst::before { content: "\f479"; }
.si-sst.si--color::before { color: #E27152; }
-
.si-stackexchange::before { content: "\f478"; }
+
.si-stackexchange::before { content: "\f47a"; }
.si-stackexchange.si--color::before { color: #1E5397; }
-
.si-stackoverflow::before { content: "\f479"; }
+
.si-stackoverflow::before { content: "\f47b"; }
.si-stackoverflow.si--color::before { color: #F58025; }
-
.si-stackbit::before { content: "\f47a"; }
+
.si-stackbit::before { content: "\f47c"; }
.si-stackbit.si--color::before { color: #207BEA; }
-
.si-stackblitz::before { content: "\f47b"; }
+
.si-stackblitz::before { content: "\f47d"; }
.si-stackblitz.si--color::before { color: #1269D3; }
-
.si-stackedit::before { content: "\f47c"; }
+
.si-stackedit::before { content: "\f47e"; }
.si-stackedit.si--color::before { color: #606060; }
-
.si-stackhawk::before { content: "\f47d"; }
+
.si-stackhawk::before { content: "\f47f"; }
.si-stackhawk.si--color::before { color: #00CBC6; }
-
.si-stackshare::before { content: "\f47e"; }
+
.si-stackshare::before { content: "\f480"; }
.si-stackshare.si--color::before { color: #0690FA; }
-
.si-stadia::before { content: "\f47f"; }
+
.si-stadia::before { content: "\f481"; }
.si-stadia.si--color::before { color: #CD2640; }
-
.si-staffbase::before { content: "\f480"; }
+
.si-staffbase::before { content: "\f482"; }
.si-staffbase.si--color::before { color: #00A4FD; }
-
.si-stagetimer::before { content: "\f481"; }
+
.si-stagetimer::before { content: "\f483"; }
.si-stagetimer.si--color::before { color: #00A66C; }
-
.si-standardresume::before { content: "\f482"; }
+
.si-standardresume::before { content: "\f484"; }
.si-standardresume.si--color::before { color: #2A3FFB; }
-
.si-standardjs::before { content: "\f483"; }
+
.si-standardjs::before { content: "\f485"; }
.si-standardjs.si--color::before { color: #F3DF49; }
-
.si-startrek::before { content: "\f484"; }
+
.si-startrek::before { content: "\f486"; }
.si-startrek.si--color::before { color: #FFE200; }
-
.si-starbucks::before { content: "\f485"; }
+
.si-starbucks::before { content: "\f487"; }
.si-starbucks.si--color::before { color: #006241; }
-
.si-stardock::before { content: "\f486"; }
+
.si-stardock::before { content: "\f488"; }
.si-stardock.si--color::before { color: #004B8D; }
-
.si-starlingbank::before { content: "\f487"; }
+
.si-starlingbank::before { content: "\f489"; }
.si-starlingbank.si--color::before { color: #6935D3; }
-
.si-starship::before { content: "\f488"; }
+
.si-starship::before { content: "\f48a"; }
.si-starship.si--color::before { color: #DD0B78; }
-
.si-startdotgg::before { content: "\f489"; }
+
.si-startdotgg::before { content: "\f48b"; }
.si-startdotgg.si--color::before { color: #2E75BA; }
-
.si-startpage::before { content: "\f48a"; }
+
.si-startpage::before { content: "\f48c"; }
.si-startpage.si--color::before { color: #6563FF; }
-
.si-starz::before { content: "\f48b"; }
+
.si-starz::before { content: "\f48d"; }
.si-starz.si--color::before { color: #082125; }
-
.si-statamic::before { content: "\f48c"; }
+
.si-statamic::before { content: "\f48e"; }
.si-statamic.si--color::before { color: #FF269E; }
-
.si-statista::before { content: "\f48d"; }
+
.si-statista::before { content: "\f48f"; }
.si-statista.si--color::before { color: #001327; }
-
.si-statuspage::before { content: "\f48e"; }
+
.si-statuspage::before { content: "\f490"; }
.si-statuspage.si--color::before { color: #172B4D; }
-
.si-statuspal::before { content: "\f48f"; }
+
.si-statuspal::before { content: "\f491"; }
.si-statuspal.si--color::before { color: #4934BF; }
-
.si-steam::before { content: "\f490"; }
+
.si-steam::before { content: "\f492"; }
.si-steam.si--color::before { color: #000000; }
-
.si-steamdeck::before { content: "\f491"; }
+
.si-steamdeck::before { content: "\f493"; }
.si-steamdeck.si--color::before { color: #1A9FFF; }
-
.si-steamdb::before { content: "\f492"; }
+
.si-steamdb::before { content: "\f494"; }
.si-steamdb.si--color::before { color: #000000; }
-
.si-steamworks::before { content: "\f493"; }
+
.si-steamworks::before { content: "\f495"; }
.si-steamworks.si--color::before { color: #1E1E1E; }
-
.si-steelseries::before { content: "\f494"; }
+
.si-steelseries::before { content: "\f496"; }
.si-steelseries.si--color::before { color: #FF5200; }
-
.si-steem::before { content: "\f495"; }
+
.si-steem::before { content: "\f497"; }
.si-steem.si--color::before { color: #171FC9; }
-
.si-steemit::before { content: "\f496"; }
+
.si-steemit::before { content: "\f498"; }
.si-steemit.si--color::before { color: #06D6A9; }
-
.si-steinberg::before { content: "\f497"; }
+
.si-steinberg::before { content: "\f499"; }
.si-steinberg.si--color::before { color: #C90827; }
-
.si-stellar::before { content: "\f498"; }
+
.si-stellar::before { content: "\f49a"; }
.si-stellar.si--color::before { color: #7D00FF; }
-
.si-stencil::before { content: "\f499"; }
+
.si-stencil::before { content: "\f49b"; }
.si-stencil.si--color::before { color: #5530FF; }
-
.si-stencyl::before { content: "\f49a"; }
+
.si-stencyl::before { content: "\f49c"; }
.si-stencyl.si--color::before { color: #8E1C04; }
-
.si-stimulus::before { content: "\f49b"; }
+
.si-stimulus::before { content: "\f49d"; }
.si-stimulus.si--color::before { color: #77E8B9; }
-
.si-stmicroelectronics::before { content: "\f49c"; }
+
.si-stmicroelectronics::before { content: "\f49e"; }
.si-stmicroelectronics.si--color::before { color: #03234B; }
-
.si-stockx::before { content: "\f49d"; }
+
.si-stockx::before { content: "\f49f"; }
.si-stockx.si--color::before { color: #006340; }
-
.si-stopstalk::before { content: "\f49e"; }
+
.si-stopstalk::before { content: "\f4a0"; }
.si-stopstalk.si--color::before { color: #536DFE; }
-
.si-storyblok::before { content: "\f49f"; }
+
.si-storyblok::before { content: "\f4a1"; }
.si-storyblok.si--color::before { color: #09B3AF; }
-
.si-storybook::before { content: "\f4a0"; }
+
.si-storybook::before { content: "\f4a2"; }
.si-storybook.si--color::before { color: #FF4785; }
-
.si-strapi::before { content: "\f4a1"; }
+
.si-strapi::before { content: "\f4a3"; }
.si-strapi.si--color::before { color: #4945FF; }
-
.si-strava::before { content: "\f4a2"; }
+
.si-strava::before { content: "\f4a4"; }
.si-strava.si--color::before { color: #FC4C02; }
-
.si-streamlabs::before { content: "\f4a3"; }
+
.si-streamlabs::before { content: "\f4a5"; }
.si-streamlabs.si--color::before { color: #80F5D2; }
-
.si-streamlit::before { content: "\f4a4"; }
+
.si-streamlit::before { content: "\f4a6"; }
.si-streamlit.si--color::before { color: #FF4B4B; }
-
.si-streamrunners::before { content: "\f4a5"; }
+
.si-streamrunners::before { content: "\f4a7"; }
.si-streamrunners.si--color::before { color: #6644F8; }
-
.si-stremio::before { content: "\f4a6"; }
+
.si-stremio::before { content: "\f4a8"; }
.si-stremio.si--color::before { color: #685CEE; }
-
.si-stripe::before { content: "\f4a7"; }
+
.si-stripe::before { content: "\f4a9"; }
.si-stripe.si--color::before { color: #635BFF; }
-
.si-strongswan::before { content: "\f4a8"; }
+
.si-strongswan::before { content: "\f4aa"; }
.si-strongswan.si--color::before { color: #E00033; }
-
.si-stryker::before { content: "\f4a9"; }
+
.si-stryker::before { content: "\f4ab"; }
.si-stryker.si--color::before { color: #E74C3C; }
-
.si-stubhub::before { content: "\f4aa"; }
+
.si-stubhub::before { content: "\f4ac"; }
.si-stubhub.si--color::before { color: #003168; }
-
.si-studio3t::before { content: "\f4ab"; }
+
.si-studio3t::before { content: "\f4ad"; }
.si-studio3t.si--color::before { color: #17AF66; }
-
.si-styledcomponents::before { content: "\f4ac"; }
+
.si-styledcomponents::before { content: "\f4ae"; }
.si-styledcomponents.si--color::before { color: #DB7093; }
-
.si-stylelint::before { content: "\f4ad"; }
+
.si-stylelint::before { content: "\f4af"; }
.si-stylelint.si--color::before { color: #263238; }
-
.si-styleshare::before { content: "\f4ae"; }
+
.si-styleshare::before { content: "\f4b0"; }
.si-styleshare.si--color::before { color: #212121; }
-
.si-stylus::before { content: "\f4af"; }
+
.si-stylus::before { content: "\f4b1"; }
.si-stylus.si--color::before { color: #333333; }
-
.si-subaru::before { content: "\f4b0"; }
+
.si-subaru::before { content: "\f4b2"; }
.si-subaru.si--color::before { color: #013C74; }
-
.si-sublimetext::before { content: "\f4b1"; }
+
.si-sublimetext::before { content: "\f4b3"; }
.si-sublimetext.si--color::before { color: #FF9800; }
-
.si-substack::before { content: "\f4b2"; }
+
.si-substack::before { content: "\f4b4"; }
.si-substack.si--color::before { color: #FF6719; }
-
.si-subtitleedit::before { content: "\f4b3"; }
+
.si-subtitleedit::before { content: "\f4b5"; }
.si-subtitleedit.si--color::before { color: #CC2424; }
-
.si-subversion::before { content: "\f4b4"; }
+
.si-subversion::before { content: "\f4b6"; }
.si-subversion.si--color::before { color: #809CC9; }
-
.si-suckless::before { content: "\f4b5"; }
+
.si-suckless::before { content: "\f4b7"; }
.si-suckless.si--color::before { color: #1177AA; }
-
.si-sui::before { content: "\f4b6"; }
+
.si-sui::before { content: "\f4b8"; }
.si-sui.si--color::before { color: #4DA2FF; }
-
.si-sumologic::before { content: "\f4b7"; }
+
.si-sumologic::before { content: "\f4b9"; }
.si-sumologic.si--color::before { color: #000099; }
-
.si-suno::before { content: "\f4b8"; }
+
.si-suno::before { content: "\f4ba"; }
.si-suno.si--color::before { color: #000000; }
-
.si-sunrise::before { content: "\f4b9"; }
+
.si-sunrise::before { content: "\f4bb"; }
.si-sunrise.si--color::before { color: #DA291C; }
-
.si-supabase::before { content: "\f4ba"; }
+
.si-supabase::before { content: "\f4bc"; }
.si-supabase.si--color::before { color: #3FCF8E; }
-
.si-superuser::before { content: "\f4bb"; }
+
.si-superuser::before { content: "\f4bd"; }
.si-superuser.si--color::before { color: #38A1CE; }
-
.si-supercrease::before { content: "\f4bc"; }
+
.si-supercrease::before { content: "\f4be"; }
.si-supercrease.si--color::before { color: #000000; }
-
.si-supermicro::before { content: "\f4bd"; }
+
.si-supermicro::before { content: "\f4bf"; }
.si-supermicro.si--color::before { color: #151F6D; }
-
.si-surfshark::before { content: "\f4be"; }
+
.si-surfshark::before { content: "\f4c0"; }
.si-surfshark.si--color::before { color: #1EBFBF; }
-
.si-surrealdb::before { content: "\f4bf"; }
+
.si-surrealdb::before { content: "\f4c1"; }
.si-surrealdb.si--color::before { color: #FF00A0; }
-
.si-surveymonkey::before { content: "\f4c0"; }
+
.si-surveymonkey::before { content: "\f4c2"; }
.si-surveymonkey.si--color::before { color: #00BF6F; }
-
.si-suse::before { content: "\f4c1"; }
+
.si-suse::before { content: "\f4c3"; }
.si-suse.si--color::before { color: #0C322C; }
-
.si-suzuki::before { content: "\f4c2"; }
+
.si-suzuki::before { content: "\f4c4"; }
.si-suzuki.si--color::before { color: #E30613; }
-
.si-svelte::before { content: "\f4c3"; }
+
.si-svelte::before { content: "\f4c5"; }
.si-svelte.si--color::before { color: #FF3E00; }
-
.si-svg::before { content: "\f4c4"; }
+
.si-svg::before { content: "\f4c6"; }
.si-svg.si--color::before { color: #FFB13B; }
-
.si-svgdotjs::before { content: "\f4c5"; }
+
.si-svgdotjs::before { content: "\f4c7"; }
.si-svgdotjs.si--color::before { color: #FF0066; }
-
.si-svgo::before { content: "\f4c6"; }
+
.si-svgo::before { content: "\f4c8"; }
.si-svgo.si--color::before { color: #3E7FC1; }
-
.si-svgtrace::before { content: "\f4c7"; }
+
.si-svgtrace::before { content: "\f4c9"; }
.si-svgtrace.si--color::before { color: #F453C4; }
-
.si-swagger::before { content: "\f4c8"; }
+
.si-swagger::before { content: "\f4ca"; }
.si-swagger.si--color::before { color: #85EA2D; }
-
.si-swarm::before { content: "\f4c9"; }
+
.si-swarm::before { content: "\f4cb"; }
.si-swarm.si--color::before { color: #FFA633; }
-
.si-sway::before { content: "\f4ca"; }
+
.si-sway::before { content: "\f4cc"; }
.si-sway.si--color::before { color: #68751C; }
-
.si-swc::before { content: "\f4cb"; }
+
.si-swc::before { content: "\f4cd"; }
.si-swc.si--color::before { color: #F8C457; }
-
.si-swift::before { content: "\f4cc"; }
+
.si-swift::before { content: "\f4ce"; }
.si-swift.si--color::before { color: #F05138; }
-
.si-swiggy::before { content: "\f4cd"; }
+
.si-swiggy::before { content: "\f4cf"; }
.si-swiggy.si--color::before { color: #FC8019; }
-
.si-swiper::before { content: "\f4ce"; }
+
.si-swiper::before { content: "\f4d0"; }
.si-swiper.si--color::before { color: #6332F6; }
-
.si-swr::before { content: "\f4cf"; }
+
.si-swr::before { content: "\f4d1"; }
.si-swr.si--color::before { color: #000000; }
-
.si-symantec::before { content: "\f4d0"; }
+
.si-symantec::before { content: "\f4d2"; }
.si-symantec.si--color::before { color: #FDB511; }
-
.si-symbolab::before { content: "\f4d1"; }
+
.si-symbolab::before { content: "\f4d3"; }
.si-symbolab.si--color::before { color: #DB3F59; }
-
.si-symfony::before { content: "\f4d2"; }
+
.si-symfony::before { content: "\f4d4"; }
.si-symfony.si--color::before { color: #000000; }
-
.si-symphony::before { content: "\f4d3"; }
+
.si-symphony::before { content: "\f4d5"; }
.si-symphony.si--color::before { color: #0098FF; }
-
.si-sympy::before { content: "\f4d4"; }
+
.si-sympy::before { content: "\f4d6"; }
.si-sympy.si--color::before { color: #3B5526; }
-
.si-syncthing::before { content: "\f4d5"; }
+
.si-syncthing::before { content: "\f4d7"; }
.si-syncthing.si--color::before { color: #0891D1; }
-
.si-synology::before { content: "\f4d6"; }
+
.si-synology::before { content: "\f4d8"; }
.si-synology.si--color::before { color: #B5B5B6; }
-
.si-system76::before { content: "\f4d7"; }
+
.si-system76::before { content: "\f4d9"; }
.si-system76.si--color::before { color: #585048; }
-
.si-tabelog::before { content: "\f4d8"; }
+
.si-tabelog::before { content: "\f4da"; }
.si-tabelog.si--color::before { color: #F2CC38; }
-
.si-tablecheck::before { content: "\f4d9"; }
+
.si-tablecheck::before { content: "\f4db"; }
.si-tablecheck.si--color::before { color: #7935D2; }
-
.si-tacobell::before { content: "\f4da"; }
+
.si-tacobell::before { content: "\f4dc"; }
.si-tacobell.si--color::before { color: #38096C; }
-
.si-tado::before { content: "\f4db"; }
+
.si-tado::before { content: "\f4dd"; }
.si-tado.si--color::before { color: #FFA900; }
-
.si-taichigraphics::before { content: "\f4dc"; }
+
.si-taichigraphics::before { content: "\f4de"; }
.si-taichigraphics.si--color::before { color: #000000; }
-
.si-taichilang::before { content: "\f4dd"; }
+
.si-taichilang::before { content: "\f4df"; }
.si-taichilang.si--color::before { color: #000000; }
-
.si-tails::before { content: "\f4de"; }
+
.si-tails::before { content: "\f4e0"; }
.si-tails.si--color::before { color: #56347C; }
-
.si-tailscale::before { content: "\f4df"; }
+
.si-tailscale::before { content: "\f4e1"; }
.si-tailscale.si--color::before { color: #242424; }
-
.si-tailwindcss::before { content: "\f4e0"; }
+
.si-tailwindcss::before { content: "\f4e2"; }
.si-tailwindcss.si--color::before { color: #06B6D4; }
-
.si-taipy::before { content: "\f4e1"; }
+
.si-taipy::before { content: "\f4e3"; }
.si-taipy.si--color::before { color: #FF371A; }
-
.si-taketwointeractivesoftware::before { content: "\f4e2"; }
+
.si-taketwointeractivesoftware::before { content: "\f4e4"; }
.si-taketwointeractivesoftware.si--color::before { color: #000000; }
-
.si-talend::before { content: "\f4e3"; }
+
.si-talend::before { content: "\f4e5"; }
.si-talend.si--color::before { color: #FF6D70; }
-
.si-talenthouse::before { content: "\f4e4"; }
+
.si-talenthouse::before { content: "\f4e6"; }
.si-talenthouse.si--color::before { color: #000000; }
-
.si-talos::before { content: "\f4e5"; }
+
.si-talos::before { content: "\f4e7"; }
.si-talos.si--color::before { color: #FF7300; }
-
.si-tamiya::before { content: "\f4e6"; }
+
.si-tamiya::before { content: "\f4e8"; }
.si-tamiya.si--color::before { color: #000000; }
-
.si-tampermonkey::before { content: "\f4e7"; }
+
.si-tampermonkey::before { content: "\f4e9"; }
.si-tampermonkey.si--color::before { color: #00485B; }
-
.si-taobao::before { content: "\f4e8"; }
+
.si-taobao::before { content: "\f4ea"; }
.si-taobao.si--color::before { color: #E94F20; }
-
.si-tapas::before { content: "\f4e9"; }
+
.si-tapas::before { content: "\f4eb"; }
.si-tapas.si--color::before { color: #FFCE00; }
-
.si-target::before { content: "\f4ea"; }
+
.si-target::before { content: "\f4ec"; }
.si-target.si--color::before { color: #CC0000; }
-
.si-tarom::before { content: "\f4eb"; }
+
.si-tarom::before { content: "\f4ed"; }
.si-tarom.si--color::before { color: #003366; }
-
.si-task::before { content: "\f4ec"; }
+
.si-task::before { content: "\f4ee"; }
.si-task.si--color::before { color: #29BEB0; }
-
.si-tasmota::before { content: "\f4ed"; }
+
.si-tasmota::before { content: "\f4ef"; }
.si-tasmota.si--color::before { color: #1FA3EC; }
-
.si-tata::before { content: "\f4ee"; }
+
.si-tata::before { content: "\f4f0"; }
.si-tata.si--color::before { color: #486AAE; }
-
.si-tcs::before { content: "\f4ef"; }
+
.si-tcs::before { content: "\f4f1"; }
.si-tcs.si--color::before { color: #EE3984; }
-
.si-tauri::before { content: "\f4f0"; }
+
.si-tauri::before { content: "\f4f2"; }
.si-tauri.si--color::before { color: #24C8D8; }
-
.si-taxbuzz::before { content: "\f4f1"; }
+
.si-taxbuzz::before { content: "\f4f3"; }
.si-taxbuzz.si--color::before { color: #ED8B0B; }
-
.si-teal::before { content: "\f4f2"; }
+
.si-teal::before { content: "\f4f4"; }
.si-teal.si--color::before { color: #005149; }
-
.si-teamcity::before { content: "\f4f3"; }
+
.si-teamcity::before { content: "\f4f5"; }
.si-teamcity.si--color::before { color: #000000; }
-
.si-teamspeak::before { content: "\f4f4"; }
+
.si-teamspeak::before { content: "\f4f6"; }
.si-teamspeak.si--color::before { color: #4B69B6; }
-
.si-teamviewer::before { content: "\f4f5"; }
+
.si-teamviewer::before { content: "\f4f7"; }
.si-teamviewer.si--color::before { color: #050A52; }
-
.si-techcrunch::before { content: "\f4f6"; }
+
.si-techcrunch::before { content: "\f4f8"; }
.si-techcrunch.si--color::before { color: #029F00; }
-
.si-ted::before { content: "\f4f7"; }
+
.si-ted::before { content: "\f4f9"; }
.si-ted.si--color::before { color: #E62B1E; }
-
.si-teepublic::before { content: "\f4f8"; }
+
.si-teepublic::before { content: "\f4fa"; }
.si-teepublic.si--color::before { color: #4E64DF; }
-
.si-teespring::before { content: "\f4f9"; }
+
.si-teespring::before { content: "\f4fb"; }
.si-teespring.si--color::before { color: #ED2761; }
-
.si-tekton::before { content: "\f4fa"; }
+
.si-tekton::before { content: "\f4fc"; }
.si-tekton.si--color::before { color: #FD495C; }
-
.si-tele5::before { content: "\f4fb"; }
+
.si-tele5::before { content: "\f4fd"; }
.si-tele5.si--color::before { color: #FF00FF; }
-
.si-telequebec::before { content: "\f4fc"; }
+
.si-telequebec::before { content: "\f4fe"; }
.si-telequebec.si--color::before { color: #1343FB; }
-
.si-telefonica::before { content: "\f4fd"; }
+
.si-telefonica::before { content: "\f4ff"; }
.si-telefonica.si--color::before { color: #0066FF; }
-
.si-telegram::before { content: "\f4fe"; }
+
.si-telegram::before { content: "\f500"; }
.si-telegram.si--color::before { color: #26A5E4; }
-
.si-telegraph::before { content: "\f4ff"; }
+
.si-telegraph::before { content: "\f501"; }
.si-telegraph.si--color::before { color: #FAFAFA; }
-
.si-temporal::before { content: "\f500"; }
+
.si-temporal::before { content: "\f502"; }
.si-temporal.si--color::before { color: #000000; }
-
.si-tensorflow::before { content: "\f501"; }
+
.si-tensorflow::before { content: "\f503"; }
.si-tensorflow.si--color::before { color: #FF6F00; }
-
.si-teradata::before { content: "\f502"; }
+
.si-teradata::before { content: "\f504"; }
.si-teradata.si--color::before { color: #F37440; }
-
.si-teratail::before { content: "\f503"; }
+
.si-teratail::before { content: "\f505"; }
.si-teratail.si--color::before { color: #F4C51C; }
-
.si-termius::before { content: "\f504"; }
+
.si-termius::before { content: "\f506"; }
.si-termius.si--color::before { color: #000000; }
-
.si-terraform::before { content: "\f505"; }
+
.si-terraform::before { content: "\f507"; }
.si-terraform.si--color::before { color: #844FBA; }
-
.si-tesco::before { content: "\f506"; }
+
.si-tesco::before { content: "\f508"; }
.si-tesco.si--color::before { color: #00539F; }
-
.si-tesla::before { content: "\f507"; }
+
.si-tesla::before { content: "\f509"; }
.si-tesla.si--color::before { color: #CC0000; }
-
.si-testcafe::before { content: "\f508"; }
+
.si-testcafe::before { content: "\f50a"; }
.si-testcafe.si--color::before { color: #36B6E5; }
-
.si-testin::before { content: "\f509"; }
+
.si-testin::before { content: "\f50b"; }
.si-testin.si--color::before { color: #007DD7; }
-
.si-testinglibrary::before { content: "\f50a"; }
+
.si-testinglibrary::before { content: "\f50c"; }
.si-testinglibrary.si--color::before { color: #E33332; }
-
.si-testrail::before { content: "\f50b"; }
+
.si-testrail::before { content: "\f50d"; }
.si-testrail.si--color::before { color: #65C179; }
-
.si-tether::before { content: "\f50c"; }
+
.si-tether::before { content: "\f50e"; }
.si-tether.si--color::before { color: #50AF95; }
-
.si-textpattern::before { content: "\f50d"; }
+
.si-textpattern::before { content: "\f50f"; }
.si-textpattern.si--color::before { color: #FFDA44; }
-
.si-tga::before { content: "\f50e"; }
+
.si-tga::before { content: "\f510"; }
.si-tga.si--color::before { color: #0014FF; }
-
.si-thangs::before { content: "\f50f"; }
+
.si-thangs::before { content: "\f511"; }
.si-thangs.si--color::before { color: #FFBC00; }
-
.si-thanos::before { content: "\f510"; }
+
.si-thanos::before { content: "\f512"; }
.si-thanos.si--color::before { color: #6D41FF; }
-
.si-thealgorithms::before { content: "\f511"; }
+
.si-thealgorithms::before { content: "\f513"; }
.si-thealgorithms.si--color::before { color: #00BCB4; }
-
.si-theboringcompany::before { content: "\f512"; }
+
.si-theboringcompany::before { content: "\f514"; }
.si-theboringcompany.si--color::before { color: #000000; }
-
.si-theconversation::before { content: "\f513"; }
+
.si-theconversation::before { content: "\f515"; }
.si-theconversation.si--color::before { color: #D8352A; }
-
.si-thefinals::before { content: "\f514"; }
+
.si-thefinals::before { content: "\f516"; }
.si-thefinals.si--color::before { color: #D31F3C; }
-
.si-theguardian::before { content: "\f515"; }
+
.si-theguardian::before { content: "\f517"; }
.si-theguardian.si--color::before { color: #052962; }
-
.si-theirishtimes::before { content: "\f516"; }
+
.si-theirishtimes::before { content: "\f518"; }
.si-theirishtimes.si--color::before { color: #000000; }
-
.si-themighty::before { content: "\f517"; }
+
.si-themighty::before { content: "\f519"; }
.si-themighty.si--color::before { color: #D0072A; }
-
.si-themodelsresource::before { content: "\f518"; }
+
.si-themodelsresource::before { content: "\f51a"; }
.si-themodelsresource.si--color::before { color: #3A75BD; }
-
.si-themoviedatabase::before { content: "\f519"; }
+
.si-themoviedatabase::before { content: "\f51b"; }
.si-themoviedatabase.si--color::before { color: #01B4E4; }
-
.si-thenorthface::before { content: "\f51a"; }
+
.si-thenorthface::before { content: "\f51c"; }
.si-thenorthface.si--color::before { color: #000000; }
-
.si-theodinproject::before { content: "\f51b"; }
+
.si-theodinproject::before { content: "\f51d"; }
.si-theodinproject.si--color::before { color: #A9792B; }
-
.si-theregister::before { content: "\f51c"; }
+
.si-theregister::before { content: "\f51e"; }
.si-theregister.si--color::before { color: #FF0000; }
-
.si-thesoundsresource::before { content: "\f51d"; }
+
.si-thesoundsresource::before { content: "\f51f"; }
.si-thesoundsresource.si--color::before { color: #39BE6B; }
-
.si-thespritersresource::before { content: "\f51e"; }
+
.si-thespritersresource::before { content: "\f520"; }
.si-thespritersresource.si--color::before { color: #BE3939; }
-
.si-thewashingtonpost::before { content: "\f51f"; }
+
.si-thewashingtonpost::before { content: "\f521"; }
.si-thewashingtonpost.si--color::before { color: #231F20; }
-
.si-theweatherchannel::before { content: "\f520"; }
+
.si-theweatherchannel::before { content: "\f522"; }
.si-theweatherchannel.si--color::before { color: #003399; }
-
.si-thingiverse::before { content: "\f521"; }
+
.si-thingiverse::before { content: "\f523"; }
.si-thingiverse.si--color::before { color: #248BFB; }
-
.si-thinkpad::before { content: "\f522"; }
+
.si-thinkpad::before { content: "\f524"; }
.si-thinkpad.si--color::before { color: #EE2624; }
-
.si-thirdweb::before { content: "\f523"; }
+
.si-thirdweb::before { content: "\f525"; }
.si-thirdweb.si--color::before { color: #F213A4; }
-
.si-threadless::before { content: "\f524"; }
+
.si-threadless::before { content: "\f526"; }
.si-threadless.si--color::before { color: #0099FF; }
-
.si-threads::before { content: "\f525"; }
+
.si-threads::before { content: "\f527"; }
.si-threads.si--color::before { color: #000000; }
-
.si-threedotjs::before { content: "\f526"; }
+
.si-threedotjs::before { content: "\f528"; }
.si-threedotjs.si--color::before { color: #000000; }
-
.si-threema::before { content: "\f527"; }
+
.si-threema::before { content: "\f529"; }
.si-threema.si--color::before { color: #3FE669; }
-
.si-thumbtack::before { content: "\f528"; }
+
.si-thumbtack::before { content: "\f52a"; }
.si-thumbtack.si--color::before { color: #009FD9; }
-
.si-thunderbird::before { content: "\f529"; }
+
.si-thunderbird::before { content: "\f52b"; }
.si-thunderbird.si--color::before { color: #0A84FF; }
-
.si-thunderstore::before { content: "\f52a"; }
+
.si-thunderstore::before { content: "\f52c"; }
.si-thunderstore.si--color::before { color: #23FFB0; }
-
.si-thurgauerkantonalbank::before { content: "\f52b"; }
+
.si-thurgauerkantonalbank::before { content: "\f52d"; }
.si-thurgauerkantonalbank.si--color::before { color: #006D41; }
-
.si-thymeleaf::before { content: "\f52c"; }
+
.si-thymeleaf::before { content: "\f52e"; }
.si-thymeleaf.si--color::before { color: #005F0F; }
-
.si-ticketmaster::before { content: "\f52d"; }
+
.si-ticketmaster::before { content: "\f52f"; }
.si-ticketmaster.si--color::before { color: #026CDF; }
-
.si-ticktick::before { content: "\f52e"; }
+
.si-ticktick::before { content: "\f530"; }
.si-ticktick.si--color::before { color: #4772FA; }
-
.si-tidal::before { content: "\f52f"; }
+
.si-tidal::before { content: "\f531"; }
.si-tidal.si--color::before { color: #000000; }
-
.si-tiddlywiki::before { content: "\f530"; }
+
.si-tiddlywiki::before { content: "\f532"; }
.si-tiddlywiki.si--color::before { color: #111111; }
-
.si-tide::before { content: "\f531"; }
+
.si-tide::before { content: "\f533"; }
.si-tide.si--color::before { color: #4050FB; }
-
.si-tidyverse::before { content: "\f532"; }
+
.si-tidyverse::before { content: "\f534"; }
.si-tidyverse.si--color::before { color: #1A162D; }
-
.si-tietoevry::before { content: "\f533"; }
+
.si-tietoevry::before { content: "\f535"; }
.si-tietoevry.si--color::before { color: #063752; }
-
.si-tiktok::before { content: "\f534"; }
+
.si-tiktok::before { content: "\f536"; }
.si-tiktok.si--color::before { color: #000000; }
-
.si-tildapublishing::before { content: "\f535"; }
+
.si-tildapublishing::before { content: "\f537"; }
.si-tildapublishing.si--color::before { color: #FFA282; }
-
.si-tile::before { content: "\f536"; }
+
.si-tile::before { content: "\f538"; }
.si-tile.si--color::before { color: #000000; }
-
.si-timescale::before { content: "\f537"; }
+
.si-timescale::before { content: "\f539"; }
.si-timescale.si--color::before { color: #FDB515; }
-
.si-tina::before { content: "\f538"; }
+
.si-tina::before { content: "\f53a"; }
.si-tina.si--color::before { color: #EC4815; }
-
.si-tinder::before { content: "\f539"; }
+
.si-tinder::before { content: "\f53b"; }
.si-tinder.si--color::before { color: #FF6B6B; }
-
.si-tindie::before { content: "\f53a"; }
+
.si-tindie::before { content: "\f53c"; }
.si-tindie.si--color::before { color: #17AEB9; }
-
.si-tinkercad::before { content: "\f53b"; }
+
.si-tinkercad::before { content: "\f53d"; }
.si-tinkercad.si--color::before { color: #1477D1; }
-
.si-tinygrad::before { content: "\f53c"; }
+
.si-tinygrad::before { content: "\f53e"; }
.si-tinygrad.si--color::before { color: #FFFFFF; }
-
.si-tinyletter::before { content: "\f53d"; }
+
.si-tinyletter::before { content: "\f53f"; }
.si-tinyletter.si--color::before { color: #ED1C24; }
-
.si-tistory::before { content: "\f53e"; }
+
.si-tistory::before { content: "\f540"; }
.si-tistory.si--color::before { color: #000000; }
-
.si-tldraw::before { content: "\f53f"; }
+
.si-tldraw::before { content: "\f541"; }
.si-tldraw.si--color::before { color: #FAFAFA; }
-
.si-tmux::before { content: "\f540"; }
+
.si-tmux::before { content: "\f542"; }
.si-tmux.si--color::before { color: #1BB91F; }
-
.si-todoist::before { content: "\f541"; }
+
.si-todoist::before { content: "\f543"; }
.si-todoist.si--color::before { color: #E44332; }
-
.si-toggl::before { content: "\f542"; }
+
.si-toggl::before { content: "\f544"; }
.si-toggl.si--color::before { color: #FFDE91; }
-
.si-toggltrack::before { content: "\f543"; }
+
.si-toggltrack::before { content: "\f545"; }
.si-toggltrack.si--color::before { color: #E57CD8; }
-
.si-tokyometro::before { content: "\f544"; }
+
.si-tokyometro::before { content: "\f546"; }
.si-tokyometro.si--color::before { color: #149DD3; }
-
.si-toll::before { content: "\f545"; }
+
.si-toll::before { content: "\f547"; }
.si-toll.si--color::before { color: #007A68; }
-
.si-toml::before { content: "\f546"; }
+
.si-toml::before { content: "\f548"; }
.si-toml.si--color::before { color: #9C4121; }
-
.si-tomorrowland::before { content: "\f547"; }
+
.si-tomorrowland::before { content: "\f549"; }
.si-tomorrowland.si--color::before { color: #000000; }
-
.si-tomtom::before { content: "\f548"; }
+
.si-tomtom::before { content: "\f54a"; }
.si-tomtom.si--color::before { color: #DF1B12; }
-
.si-ton::before { content: "\f549"; }
+
.si-ton::before { content: "\f54b"; }
.si-ton.si--color::before { color: #0098EA; }
-
.si-topdotgg::before { content: "\f54a"; }
+
.si-topdotgg::before { content: "\f54c"; }
.si-topdotgg.si--color::before { color: #FF3366; }
-
.si-topcoder::before { content: "\f54b"; }
+
.si-topcoder::before { content: "\f54d"; }
.si-topcoder.si--color::before { color: #29A7DF; }
-
.si-toptal::before { content: "\f54c"; }
+
.si-toptal::before { content: "\f54e"; }
.si-toptal.si--color::before { color: #3863A0; }
-
.si-torbrowser::before { content: "\f54d"; }
+
.si-torbrowser::before { content: "\f54f"; }
.si-torbrowser.si--color::before { color: #7D4698; }
-
.si-torproject::before { content: "\f54e"; }
+
.si-torproject::before { content: "\f550"; }
.si-torproject.si--color::before { color: #7D4698; }
-
.si-torizon::before { content: "\f54f"; }
+
.si-torizon::before { content: "\f551"; }
.si-torizon.si--color::before { color: #FAAF00; }
-
.si-toshiba::before { content: "\f550"; }
+
.si-toshiba::before { content: "\f552"; }
.si-toshiba.si--color::before { color: #FF0000; }
-
.si-totvs::before { content: "\f551"; }
+
.si-totvs::before { content: "\f553"; }
.si-totvs.si--color::before { color: #363636; }
-
.si-tourbox::before { content: "\f552"; }
+
.si-tourbox::before { content: "\f554"; }
.si-tourbox.si--color::before { color: #231F20; }
-
.si-tower::before { content: "\f553"; }
+
.si-tower::before { content: "\f555"; }
.si-tower.si--color::before { color: #00CAF4; }
-
.si-toyota::before { content: "\f554"; }
+
.si-toyota::before { content: "\f556"; }
.si-toyota.si--color::before { color: #EB0A1E; }
-
.si-tplink::before { content: "\f555"; }
+
.si-tplink::before { content: "\f557"; }
.si-tplink.si--color::before { color: #4ACBD6; }
-
.si-tqdm::before { content: "\f556"; }
+
.si-tqdm::before { content: "\f558"; }
.si-tqdm.si--color::before { color: #FFC107; }
-
.si-traccar::before { content: "\f557"; }
+
.si-traccar::before { content: "\f559"; }
.si-traccar.si--color::before { color: #000000; }
-
.si-tradingview::before { content: "\f558"; }
+
.si-tradingview::before { content: "\f55a"; }
.si-tradingview.si--color::before { color: #131622; }
-
.si-traefikmesh::before { content: "\f559"; }
+
.si-traefikmesh::before { content: "\f55b"; }
.si-traefikmesh.si--color::before { color: #9D0FB0; }
-
.si-traefikproxy::before { content: "\f55a"; }
+
.si-traefikproxy::before { content: "\f55c"; }
.si-traefikproxy.si--color::before { color: #24A1C1; }
-
.si-trailforks::before { content: "\f55b"; }
+
.si-trailforks::before { content: "\f55d"; }
.si-trailforks.si--color::before { color: #FFCD00; }
-
.si-trainerroad::before { content: "\f55c"; }
+
.si-trainerroad::before { content: "\f55e"; }
.si-trainerroad.si--color::before { color: #DA291C; }
-
.si-trakt::before { content: "\f55d"; }
+
.si-trakt::before { content: "\f55f"; }
.si-trakt.si--color::before { color: #ED1C24; }
-
.si-transifex::before { content: "\f55e"; }
+
.si-transifex::before { content: "\f560"; }
.si-transifex.si--color::before { color: #0064AB; }
-
.si-transmission::before { content: "\f55f"; }
+
.si-transmission::before { content: "\f561"; }
.si-transmission.si--color::before { color: #D70008; }
-
.si-transportforireland::before { content: "\f560"; }
+
.si-transportforireland::before { content: "\f562"; }
.si-transportforireland.si--color::before { color: #00B274; }
-
.si-transportforlondon::before { content: "\f561"; }
+
.si-transportforlondon::before { content: "\f563"; }
.si-transportforlondon.si--color::before { color: #113B92; }
-
.si-travisci::before { content: "\f562"; }
+
.si-travisci::before { content: "\f564"; }
.si-travisci.si--color::before { color: #3EAAAF; }
-
.si-treehouse::before { content: "\f563"; }
+
.si-treehouse::before { content: "\f565"; }
.si-treehouse.si--color::before { color: #5FCF80; }
-
.si-trello::before { content: "\f564"; }
+
.si-trello::before { content: "\f566"; }
.si-trello.si--color::before { color: #0052CC; }
-
.si-trendmicro::before { content: "\f565"; }
+
.si-trendmicro::before { content: "\f567"; }
.si-trendmicro.si--color::before { color: #D71921; }
-
.si-treyarch::before { content: "\f566"; }
+
.si-treyarch::before { content: "\f568"; }
.si-treyarch.si--color::before { color: #000000; }
-
.si-tricentis::before { content: "\f567"; }
+
.si-tricentis::before { content: "\f569"; }
.si-tricentis.si--color::before { color: #12438C; }
-
.si-trilium::before { content: "\f568"; }
+
.si-trilium::before { content: "\f56a"; }
.si-trilium.si--color::before { color: #000000; }
-
.si-triller::before { content: "\f569"; }
+
.si-triller::before { content: "\f56b"; }
.si-triller.si--color::before { color: #FF0089; }
-
.si-trillertv::before { content: "\f56a"; }
+
.si-trillertv::before { content: "\f56c"; }
.si-trillertv.si--color::before { color: #E61414; }
-
.si-trimble::before { content: "\f56b"; }
+
.si-trimble::before { content: "\f56d"; }
.si-trimble.si--color::before { color: #0063A3; }
-
.si-trino::before { content: "\f56c"; }
+
.si-trino::before { content: "\f56e"; }
.si-trino.si--color::before { color: #DD00A1; }
-
.si-tripdotcom::before { content: "\f56d"; }
+
.si-tripdotcom::before { content: "\f56f"; }
.si-tripdotcom.si--color::before { color: #287DFA; }
-
.si-tripadvisor::before { content: "\f56e"; }
+
.si-tripadvisor::before { content: "\f570"; }
.si-tripadvisor.si--color::before { color: #34E0A1; }
-
.si-trivago::before { content: "\f56f"; }
+
.si-trivago::before { content: "\f571"; }
.si-trivago.si--color::before { color: #E32851; }
-
.si-trivy::before { content: "\f570"; }
+
.si-trivy::before { content: "\f572"; }
.si-trivy.si--color::before { color: #1904DA; }
-
.si-trove::before { content: "\f571"; }
+
.si-trove::before { content: "\f573"; }
.si-trove.si--color::before { color: #2D004B; }
-
.si-trpc::before { content: "\f572"; }
+
.si-trpc::before { content: "\f574"; }
.si-trpc.si--color::before { color: #2596BE; }
-
.si-truenas::before { content: "\f573"; }
+
.si-truenas::before { content: "\f575"; }
.si-truenas.si--color::before { color: #0095D5; }
-
.si-trueup::before { content: "\f574"; }
+
.si-trueup::before { content: "\f576"; }
.si-trueup.si--color::before { color: #4E71DA; }
-
.si-trulia::before { content: "\f575"; }
+
.si-trulia::before { content: "\f577"; }
.si-trulia.si--color::before { color: #0A0B09; }
-
.si-trustedshops::before { content: "\f576"; }
+
.si-trustedshops::before { content: "\f578"; }
.si-trustedshops.si--color::before { color: #FFDC0F; }
-
.si-trustpilot::before { content: "\f577"; }
+
.si-trustpilot::before { content: "\f579"; }
.si-trustpilot.si--color::before { color: #00B67A; }
-
.si-tryitonline::before { content: "\f578"; }
+
.si-tryitonline::before { content: "\f57a"; }
.si-tryitonline.si--color::before { color: #303030; }
-
.si-tryhackme::before { content: "\f579"; }
+
.si-tryhackme::before { content: "\f57b"; }
.si-tryhackme.si--color::before { color: #212C42; }
-
.si-tsnode::before { content: "\f57a"; }
+
.si-tsnode::before { content: "\f57c"; }
.si-tsnode.si--color::before { color: #3178C6; }
-
.si-tubi::before { content: "\f57b"; }
+
.si-tubi::before { content: "\f57d"; }
.si-tubi.si--color::before { color: #7408FF; }
-
.si-tui::before { content: "\f57c"; }
+
.si-tui::before { content: "\f57e"; }
.si-tui.si--color::before { color: #D40E14; }
-
.si-tumblr::before { content: "\f57d"; }
+
.si-tumblr::before { content: "\f57f"; }
.si-tumblr.si--color::before { color: #36465D; }
-
.si-tunein::before { content: "\f57e"; }
+
.si-tunein::before { content: "\f580"; }
.si-tunein.si--color::before { color: #14D8CC; }
-
.si-turbo::before { content: "\f57f"; }
+
.si-turbo::before { content: "\f581"; }
.si-turbo.si--color::before { color: #5CD8E5; }
-
.si-turborepo::before { content: "\f580"; }
+
.si-turborepo::before { content: "\f582"; }
.si-turborepo.si--color::before { color: #EF4444; }
-
.si-turbosquid::before { content: "\f581"; }
+
.si-turbosquid::before { content: "\f583"; }
.si-turbosquid.si--color::before { color: #FF8135; }
-
.si-turkishairlines::before { content: "\f582"; }
+
.si-turkishairlines::before { content: "\f584"; }
.si-turkishairlines.si--color::before { color: #C70A0C; }
-
.si-turso::before { content: "\f583"; }
+
.si-turso::before { content: "\f585"; }
.si-turso.si--color::before { color: #4FF8D2; }
-
.si-tuta::before { content: "\f584"; }
+
.si-tuta::before { content: "\f586"; }
.si-tuta.si--color::before { color: #850122; }
-
.si-tvtime::before { content: "\f585"; }
+
.si-tvtime::before { content: "\f587"; }
.si-tvtime.si--color::before { color: #FFD400; }
-
.si-tv4play::before { content: "\f586"; }
+
.si-tv4play::before { content: "\f588"; }
.si-tv4play.si--color::before { color: #E0001C; }
-
.si-twilio::before { content: "\f587"; }
+
.si-twilio::before { content: "\f589"; }
.si-twilio.si--color::before { color: #F22F46; }
-
.si-twinkly::before { content: "\f588"; }
+
.si-twinkly::before { content: "\f58a"; }
.si-twinkly.si--color::before { color: #FCC15E; }
-
.si-twinmotion::before { content: "\f589"; }
+
.si-twinmotion::before { content: "\f58b"; }
.si-twinmotion.si--color::before { color: #000000; }
-
.si-twitch::before { content: "\f58a"; }
+
.si-twitch::before { content: "\f58c"; }
.si-twitch.si--color::before { color: #9146FF; }
-
.si-typeform::before { content: "\f58b"; }
+
.si-typeform::before { content: "\f58d"; }
.si-typeform.si--color::before { color: #262627; }
-
.si-typeorm::before { content: "\f58c"; }
+
.si-typeorm::before { content: "\f58e"; }
.si-typeorm.si--color::before { color: #FE0803; }
-
.si-typer::before { content: "\f58d"; }
+
.si-typer::before { content: "\f58f"; }
.si-typer.si--color::before { color: #000000; }
-
.si-typescript::before { content: "\f58e"; }
+
.si-typescript::before { content: "\f590"; }
.si-typescript.si--color::before { color: #3178C6; }
-
.si-typo3::before { content: "\f58f"; }
+
.si-typo3::before { content: "\f591"; }
.si-typo3.si--color::before { color: #FF8700; }
-
.si-typst::before { content: "\f590"; }
+
.si-typst::before { content: "\f592"; }
.si-typst.si--color::before { color: #239DAD; }
-
.si-udotsdotnews::before { content: "\f591"; }
+
.si-udotsdotnews::before { content: "\f593"; }
.si-udotsdotnews.si--color::before { color: #005EA6; }
-
.si-uber::before { content: "\f592"; }
+
.si-uber::before { content: "\f594"; }
.si-uber.si--color::before { color: #000000; }
-
.si-ubereats::before { content: "\f593"; }
+
.si-ubereats::before { content: "\f595"; }
.si-ubereats.si--color::before { color: #06C167; }
-
.si-ubiquiti::before { content: "\f594"; }
+
.si-ubiquiti::before { content: "\f596"; }
.si-ubiquiti.si--color::before { color: #0559C9; }
-
.si-ubisoft::before { content: "\f595"; }
+
.si-ubisoft::before { content: "\f597"; }
.si-ubisoft.si--color::before { color: #000000; }
-
.si-ublockorigin::before { content: "\f596"; }
+
.si-ublockorigin::before { content: "\f598"; }
.si-ublockorigin.si--color::before { color: #800000; }
-
.si-ubuntu::before { content: "\f597"; }
+
.si-ubuntu::before { content: "\f599"; }
.si-ubuntu.si--color::before { color: #E95420; }
-
.si-ubuntumate::before { content: "\f598"; }
+
.si-ubuntumate::before { content: "\f59a"; }
.si-ubuntumate.si--color::before { color: #84A454; }
-
.si-udacity::before { content: "\f599"; }
+
.si-udacity::before { content: "\f59b"; }
.si-udacity.si--color::before { color: #02B3E4; }
-
.si-udemy::before { content: "\f59a"; }
+
.si-udemy::before { content: "\f59c"; }
.si-udemy.si--color::before { color: #A435F0; }
-
.si-ufc::before { content: "\f59b"; }
+
.si-ufc::before { content: "\f59d"; }
.si-ufc.si--color::before { color: #D20A0A; }
-
.si-uikit::before { content: "\f59c"; }
+
.si-uikit::before { content: "\f59e"; }
.si-uikit.si--color::before { color: #2396F3; }
-
.si-uipath::before { content: "\f59d"; }
+
.si-uipath::before { content: "\f59f"; }
.si-uipath.si--color::before { color: #FA4616; }
-
.si-ukca::before { content: "\f59e"; }
+
.si-ukca::before { content: "\f5a0"; }
.si-ukca.si--color::before { color: #000000; }
-
.si-ultralytics::before { content: "\f59f"; }
+
.si-ultralytics::before { content: "\f5a1"; }
.si-ultralytics.si--color::before { color: #111F68; }
-
.si-ulule::before { content: "\f5a0"; }
+
.si-ulule::before { content: "\f5a2"; }
.si-ulule.si--color::before { color: #18A5D6; }
-
.si-umami::before { content: "\f5a1"; }
+
.si-umami::before { content: "\f5a3"; }
.si-umami.si--color::before { color: #000000; }
-
.si-umbraco::before { content: "\f5a2"; }
+
.si-umbraco::before { content: "\f5a4"; }
.si-umbraco.si--color::before { color: #3544B1; }
-
.si-uml::before { content: "\f5a3"; }
+
.si-uml::before { content: "\f5a5"; }
.si-uml.si--color::before { color: #FABD14; }
-
.si-unacademy::before { content: "\f5a4"; }
+
.si-unacademy::before { content: "\f5a6"; }
.si-unacademy.si--color::before { color: #08BD80; }
-
.si-underarmour::before { content: "\f5a5"; }
+
.si-underarmour::before { content: "\f5a7"; }
.si-underarmour.si--color::before { color: #1D1D1D; }
-
.si-underscoredotjs::before { content: "\f5a6"; }
+
.si-underscoredotjs::before { content: "\f5a8"; }
.si-underscoredotjs.si--color::before { color: #0371B5; }
-
.si-undertale::before { content: "\f5a7"; }
+
.si-undertale::before { content: "\f5a9"; }
.si-undertale.si--color::before { color: #E71D29; }
-
.si-unicode::before { content: "\f5a8"; }
+
.si-unicode::before { content: "\f5aa"; }
.si-unicode.si--color::before { color: #5455FE; }
-
.si-unilever::before { content: "\f5a9"; }
+
.si-unilever::before { content: "\f5ab"; }
.si-unilever.si--color::before { color: #1F36C7; }
-
.si-uniqlo::before { content: "\f5aa"; }
+
.si-uniqlo::before { content: "\f5ac"; }
.si-uniqlo.si--color::before { color: #FF0000; }
-
.si-uniqlo_ja::before { content: "\f5ab"; }
+
.si-uniqlo_ja::before { content: "\f5ad"; }
.si-uniqlo_ja.si--color::before { color: #FF0000; }
-
.si-unitedairlines::before { content: "\f5ac"; }
+
.si-unitedairlines::before { content: "\f5ae"; }
.si-unitedairlines.si--color::before { color: #002244; }
-
.si-unitednations::before { content: "\f5ad"; }
+
.si-unitednations::before { content: "\f5af"; }
.si-unitednations.si--color::before { color: #009EDB; }
-
.si-unity::before { content: "\f5ae"; }
+
.si-unity::before { content: "\f5b0"; }
.si-unity.si--color::before { color: #FFFFFF; }
-
.si-unjs::before { content: "\f5af"; }
+
.si-unjs::before { content: "\f5b1"; }
.si-unjs.si--color::before { color: #ECDC5A; }
-
.si-unlicense::before { content: "\f5b0"; }
+
.si-unlicense::before { content: "\f5b2"; }
.si-unlicense.si--color::before { color: #808080; }
-
.si-unocss::before { content: "\f5b1"; }
+
.si-unocss::before { content: "\f5b3"; }
.si-unocss.si--color::before { color: #333333; }
-
.si-unpkg::before { content: "\f5b2"; }
+
.si-unpkg::before { content: "\f5b4"; }
.si-unpkg.si--color::before { color: #000000; }
-
.si-unraid::before { content: "\f5b3"; }
+
.si-unraid::before { content: "\f5b5"; }
.si-unraid.si--color::before { color: #F15A2C; }
-
.si-unrealengine::before { content: "\f5b4"; }
+
.si-unrealengine::before { content: "\f5b6"; }
.si-unrealengine.si--color::before { color: #0E1128; }
-
.si-unsplash::before { content: "\f5b5"; }
+
.si-unsplash::before { content: "\f5b7"; }
.si-unsplash.si--color::before { color: #000000; }
-
.si-untappd::before { content: "\f5b6"; }
+
.si-untappd::before { content: "\f5b8"; }
.si-untappd.si--color::before { color: #FFC000; }
-
.si-upcloud::before { content: "\f5b7"; }
+
.si-upcloud::before { content: "\f5b9"; }
.si-upcloud.si--color::before { color: #7B00FF; }
-
.si-uphold::before { content: "\f5b8"; }
+
.si-uphold::before { content: "\f5ba"; }
.si-uphold.si--color::before { color: #49CC68; }
-
.si-uplabs::before { content: "\f5b9"; }
+
.si-uplabs::before { content: "\f5bb"; }
.si-uplabs.si--color::before { color: #3930D8; }
-
.si-upptime::before { content: "\f5ba"; }
+
.si-upptime::before { content: "\f5bc"; }
.si-upptime.si--color::before { color: #1ABC9C; }
-
.si-ups::before { content: "\f5bb"; }
+
.si-ups::before { content: "\f5bd"; }
.si-ups.si--color::before { color: #150400; }
-
.si-upstash::before { content: "\f5bc"; }
+
.si-upstash::before { content: "\f5be"; }
.si-upstash.si--color::before { color: #00E9A3; }
-
.si-uptimekuma::before { content: "\f5bd"; }
+
.si-uptimekuma::before { content: "\f5bf"; }
.si-uptimekuma.si--color::before { color: #5CDD8B; }
-
.si-upwork::before { content: "\f5be"; }
+
.si-upwork::before { content: "\f5c0"; }
.si-upwork.si--color::before { color: #6FDA44; }
-
.si-usps::before { content: "\f5bf"; }
+
.si-usps::before { content: "\f5c1"; }
.si-usps.si--color::before { color: #333366; }
-
.si-utorrent::before { content: "\f5c0"; }
+
.si-utorrent::before { content: "\f5c2"; }
.si-utorrent.si--color::before { color: #76B83F; }
-
.si-uv::before { content: "\f5c1"; }
+
.si-uv::before { content: "\f5c3"; }
.si-uv.si--color::before { color: #DE5FE9; }
-
.si-v::before { content: "\f5c2"; }
+
.si-v::before { content: "\f5c4"; }
.si-v.si--color::before { color: #5D87BF; }
-
.si-v0::before { content: "\f5c3"; }
+
.si-v0::before { content: "\f5c5"; }
.si-v0.si--color::before { color: #000000; }
-
.si-v2ex::before { content: "\f5c4"; }
+
.si-v2ex::before { content: "\f5c6"; }
.si-v2ex.si--color::before { color: #1F1F1F; }
-
.si-v8::before { content: "\f5c5"; }
+
.si-v8::before { content: "\f5c7"; }
.si-v8.si--color::before { color: #4B8BF5; }
-
.si-vaadin::before { content: "\f5c6"; }
+
.si-vaadin::before { content: "\f5c8"; }
.si-vaadin.si--color::before { color: #00B4F0; }
-
.si-vagrant::before { content: "\f5c7"; }
+
.si-vagrant::before { content: "\f5c9"; }
.si-vagrant.si--color::before { color: #1868F2; }
-
.si-vala::before { content: "\f5c8"; }
+
.si-vala::before { content: "\f5ca"; }
.si-vala.si--color::before { color: #7239B3; }
-
.si-valorant::before { content: "\f5c9"; }
+
.si-valorant::before { content: "\f5cb"; }
.si-valorant.si--color::before { color: #FA4454; }
-
.si-valve::before { content: "\f5ca"; }
+
.si-valve::before { content: "\f5cc"; }
.si-valve.si--color::before { color: #F74843; }
-
.si-vapor::before { content: "\f5cb"; }
+
.si-vapor::before { content: "\f5cd"; }
.si-vapor.si--color::before { color: #0D0D0D; }
-
.si-vault::before { content: "\f5cc"; }
+
.si-vault::before { content: "\f5ce"; }
.si-vault.si--color::before { color: #FFEC6E; }
-
.si-vaultwarden::before { content: "\f5cd"; }
+
.si-vaultwarden::before { content: "\f5cf"; }
.si-vaultwarden.si--color::before { color: #000000; }
-
.si-vauxhall::before { content: "\f5ce"; }
+
.si-vauxhall::before { content: "\f5d0"; }
.si-vauxhall.si--color::before { color: #EB001E; }
-
.si-vbulletin::before { content: "\f5cf"; }
+
.si-vbulletin::before { content: "\f5d1"; }
.si-vbulletin.si--color::before { color: #184D66; }
-
.si-vectary::before { content: "\f5d0"; }
+
.si-vectary::before { content: "\f5d2"; }
.si-vectary.si--color::before { color: #6100FF; }
-
.si-vectorlogozone::before { content: "\f5d1"; }
+
.si-vectorlogozone::before { content: "\f5d3"; }
.si-vectorlogozone.si--color::before { color: #184D66; }
-
.si-vectorworks::before { content: "\f5d2"; }
+
.si-vectorworks::before { content: "\f5d4"; }
.si-vectorworks.si--color::before { color: #000000; }
-
.si-veeam::before { content: "\f5d3"; }
+
.si-veeam::before { content: "\f5d5"; }
.si-veeam.si--color::before { color: #00B336; }
-
.si-veed::before { content: "\f5d4"; }
+
.si-veed::before { content: "\f5d6"; }
.si-veed.si--color::before { color: #B6FF60; }
-
.si-veepee::before { content: "\f5d5"; }
+
.si-veepee::before { content: "\f5d7"; }
.si-veepee.si--color::before { color: #EC008C; }
-
.si-vega::before { content: "\f5d6"; }
+
.si-vega::before { content: "\f5d8"; }
.si-vega.si--color::before { color: #2450B2; }
-
.si-vegas::before { content: "\f5d7"; }
+
.si-vegas::before { content: "\f5d9"; }
.si-vegas.si--color::before { color: #1A1A1A; }
-
.si-velocity::before { content: "\f5d8"; }
+
.si-velocity::before { content: "\f5da"; }
.si-velocity.si--color::before { color: #1BBAE0; }
-
.si-velog::before { content: "\f5d9"; }
+
.si-velog::before { content: "\f5db"; }
.si-velog.si--color::before { color: #20C997; }
-
.si-vencord::before { content: "\f5da"; }
+
.si-vencord::before { content: "\f5dc"; }
.si-vencord.si--color::before { color: #D3859B; }
-
.si-venmo::before { content: "\f5db"; }
+
.si-venmo::before { content: "\f5dd"; }
.si-venmo.si--color::before { color: #008CFF; }
-
.si-vercel::before { content: "\f5dc"; }
+
.si-vercel::before { content: "\f5de"; }
.si-vercel.si--color::before { color: #000000; }
-
.si-verdaccio::before { content: "\f5dd"; }
+
.si-verdaccio::before { content: "\f5df"; }
.si-verdaccio.si--color::before { color: #4B5E40; }
-
.si-veritas::before { content: "\f5de"; }
+
.si-veritas::before { content: "\f5e0"; }
.si-veritas.si--color::before { color: #B1181E; }
-
.si-verizon::before { content: "\f5df"; }
+
.si-verizon::before { content: "\f5e1"; }
.si-verizon.si--color::before { color: #CD040B; }
-
.si-vespa::before { content: "\f5e0"; }
+
.si-vespa::before { content: "\f5e2"; }
.si-vespa.si--color::before { color: #85B09A; }
-
.si-vestel::before { content: "\f5e1"; }
+
.si-vestel::before { content: "\f5e3"; }
.si-vestel.si--color::before { color: #DD052B; }
-
.si-vexxhost::before { content: "\f5e2"; }
+
.si-vexxhost::before { content: "\f5e4"; }
.si-vexxhost.si--color::before { color: #2A1659; }
-
.si-vfairs::before { content: "\f5e3"; }
+
.si-vfairs::before { content: "\f5e5"; }
.si-vfairs.si--color::before { color: #EF4678; }
-
.si-viadeo::before { content: "\f5e4"; }
+
.si-viadeo::before { content: "\f5e6"; }
.si-viadeo.si--color::before { color: #F07355; }
-
.si-viaplay::before { content: "\f5e5"; }
+
.si-viaplay::before { content: "\f5e7"; }
.si-viaplay.si--color::before { color: #FE365F; }
-
.si-viber::before { content: "\f5e6"; }
+
.si-viber::before { content: "\f5e8"; }
.si-viber.si--color::before { color: #7360F2; }
-
.si-viblo::before { content: "\f5e7"; }
+
.si-viblo::before { content: "\f5e9"; }
.si-viblo.si--color::before { color: #5387C6; }
-
.si-victoriametrics::before { content: "\f5e8"; }
+
.si-victoriametrics::before { content: "\f5ea"; }
.si-victoriametrics.si--color::before { color: #621773; }
-
.si-victronenergy::before { content: "\f5e9"; }
+
.si-victronenergy::before { content: "\f5eb"; }
.si-victronenergy.si--color::before { color: #0066B2; }
-
.si-vim::before { content: "\f5ea"; }
+
.si-vim::before { content: "\f5ec"; }
.si-vim.si--color::before { color: #019733; }
-
.si-vimeo::before { content: "\f5eb"; }
+
.si-vimeo::before { content: "\f5ed"; }
.si-vimeo.si--color::before { color: #1AB7EA; }
-
.si-vimeolivestream::before { content: "\f5ec"; }
+
.si-vimeolivestream::before { content: "\f5ee"; }
.si-vimeolivestream.si--color::before { color: #0A0A20; }
-
.si-virgin::before { content: "\f5ed"; }
+
.si-virgin::before { content: "\f5ef"; }
.si-virgin.si--color::before { color: #E10A0A; }
-
.si-virginatlantic::before { content: "\f5ee"; }
+
.si-virginatlantic::before { content: "\f5f0"; }
.si-virginatlantic.si--color::before { color: #DA0530; }
-
.si-virginmedia::before { content: "\f5ef"; }
+
.si-virginmedia::before { content: "\f5f1"; }
.si-virginmedia.si--color::before { color: #ED1A37; }
-
.si-virtualbox::before { content: "\f5f0"; }
+
.si-virtualbox::before { content: "\f5f2"; }
.si-virtualbox.si--color::before { color: #2F61B4; }
-
.si-virustotal::before { content: "\f5f1"; }
+
.si-virustotal::before { content: "\f5f3"; }
.si-virustotal.si--color::before { color: #394EFF; }
-
.si-visa::before { content: "\f5f2"; }
+
.si-visa::before { content: "\f5f4"; }
.si-visa.si--color::before { color: #1A1F71; }
-
.si-visx::before { content: "\f5f3"; }
+
.si-visx::before { content: "\f5f5"; }
.si-visx.si--color::before { color: #FF1231; }
-
.si-vite::before { content: "\f5f4"; }
+
.si-vite::before { content: "\f5f6"; }
.si-vite.si--color::before { color: #646CFF; }
-
.si-vitepress::before { content: "\f5f5"; }
+
.si-vitepress::before { content: "\f5f7"; }
.si-vitepress.si--color::before { color: #5C73E7; }
-
.si-vitess::before { content: "\f5f6"; }
+
.si-vitess::before { content: "\f5f8"; }
.si-vitess.si--color::before { color: #F16728; }
-
.si-vitest::before { content: "\f5f7"; }
+
.si-vitest::before { content: "\f5f9"; }
.si-vitest.si--color::before { color: #6E9F18; }
-
.si-vivawallet::before { content: "\f5f8"; }
+
.si-vivawallet::before { content: "\f5fa"; }
.si-vivawallet.si--color::before { color: #1F263A; }
-
.si-vivaldi::before { content: "\f5f9"; }
+
.si-vivaldi::before { content: "\f5fb"; }
.si-vivaldi.si--color::before { color: #EF3939; }
-
.si-vivino::before { content: "\f5fa"; }
+
.si-vivino::before { content: "\f5fc"; }
.si-vivino.si--color::before { color: #A61A30; }
-
.si-vivint::before { content: "\f5fb"; }
+
.si-vivint::before { content: "\f5fd"; }
.si-vivint.si--color::before { color: #212721; }
-
.si-vivo::before { content: "\f5fc"; }
+
.si-vivo::before { content: "\f5fe"; }
.si-vivo.si--color::before { color: #415FFF; }
-
.si-vk::before { content: "\f5fd"; }
+
.si-vk::before { content: "\f5ff"; }
.si-vk.si--color::before { color: #0077FF; }
-
.si-vlcmediaplayer::before { content: "\f5fe"; }
+
.si-vlcmediaplayer::before { content: "\f600"; }
.si-vlcmediaplayer.si--color::before { color: #FF8800; }
-
.si-vmware::before { content: "\f5ff"; }
+
.si-vmware::before { content: "\f601"; }
.si-vmware.si--color::before { color: #607078; }
-
.si-vodafone::before { content: "\f600"; }
+
.si-vodafone::before { content: "\f602"; }
.si-vodafone.si--color::before { color: #E60000; }
-
.si-voidlinux::before { content: "\f601"; }
+
.si-voidlinux::before { content: "\f603"; }
.si-voidlinux.si--color::before { color: #478061; }
-
.si-voipdotms::before { content: "\f602"; }
+
.si-voipdotms::before { content: "\f604"; }
.si-voipdotms.si--color::before { color: #E1382D; }
-
.si-volkswagen::before { content: "\f603"; }
+
.si-volkswagen::before { content: "\f605"; }
.si-volkswagen.si--color::before { color: #151F5D; }
-
.si-volvo::before { content: "\f604"; }
+
.si-volvo::before { content: "\f606"; }
.si-volvo.si--color::before { color: #003057; }
-
.si-vonage::before { content: "\f605"; }
+
.si-vonage::before { content: "\f607"; }
.si-vonage.si--color::before { color: #000000; }
-
.si-vorondesign::before { content: "\f606"; }
+
.si-vorondesign::before { content: "\f608"; }
.si-vorondesign.si--color::before { color: #ED3023; }
-
.si-vowpalwabbit::before { content: "\f607"; }
+
.si-vowpalwabbit::before { content: "\f609"; }
.si-vowpalwabbit.si--color::before { color: #FF81F9; }
-
.si-vox::before { content: "\f608"; }
+
.si-vox::before { content: "\f60a"; }
.si-vox.si--color::before { color: #DA074A; }
-
.si-vrchat::before { content: "\f609"; }
+
.si-vrchat::before { content: "\f60b"; }
.si-vrchat.si--color::before { color: #000000; }
-
.si-vsco::before { content: "\f60a"; }
+
.si-vsco::before { content: "\f60c"; }
.si-vsco.si--color::before { color: #000000; }
-
.si-vscodium::before { content: "\f60b"; }
+
.si-vscodium::before { content: "\f60d"; }
.si-vscodium.si--color::before { color: #2F80ED; }
-
.si-vtex::before { content: "\f60c"; }
+
.si-vtex::before { content: "\f60e"; }
.si-vtex.si--color::before { color: #ED125F; }
-
.si-vuedotjs::before { content: "\f60d"; }
+
.si-vuedotjs::before { content: "\f60f"; }
.si-vuedotjs.si--color::before { color: #4FC08D; }
-
.si-vuetify::before { content: "\f60e"; }
+
.si-vuetify::before { content: "\f610"; }
.si-vuetify.si--color::before { color: #1867C0; }
-
.si-vulkan::before { content: "\f60f"; }
+
.si-vulkan::before { content: "\f611"; }
.si-vulkan.si--color::before { color: #A41E22; }
-
.si-vultr::before { content: "\f610"; }
+
.si-vultr::before { content: "\f612"; }
.si-vultr.si--color::before { color: #007BFC; }
-
.si-vyond::before { content: "\f611"; }
+
.si-vyond::before { content: "\f613"; }
.si-vyond.si--color::before { color: #D95E26; }
-
.si-w3schools::before { content: "\f612"; }
+
.si-w3schools::before { content: "\f614"; }
.si-w3schools.si--color::before { color: #04AA6D; }
-
.si-wacom::before { content: "\f613"; }
+
.si-wacom::before { content: "\f615"; }
.si-wacom.si--color::before { color: #000000; }
-
.si-wagmi::before { content: "\f614"; }
+
.si-wagmi::before { content: "\f616"; }
.si-wagmi.si--color::before { color: #000000; }
-
.si-wagtail::before { content: "\f615"; }
+
.si-wagtail::before { content: "\f617"; }
.si-wagtail.si--color::before { color: #43B1B0; }
-
.si-wails::before { content: "\f616"; }
+
.si-wails::before { content: "\f618"; }
.si-wails.si--color::before { color: #DF0000; }
-
.si-wakatime::before { content: "\f617"; }
+
.si-wakatime::before { content: "\f619"; }
.si-wakatime.si--color::before { color: #000000; }
-
.si-walkman::before { content: "\f618"; }
+
.si-walkman::before { content: "\f61a"; }
.si-walkman.si--color::before { color: #000000; }
-
.si-wallabag::before { content: "\f619"; }
+
.si-wallabag::before { content: "\f61b"; }
.si-wallabag.si--color::before { color: #3F6184; }
-
.si-walletconnect::before { content: "\f61a"; }
+
.si-walletconnect::before { content: "\f61c"; }
.si-walletconnect.si--color::before { color: #3B99FC; }
-
.si-walmart::before { content: "\f61b"; }
+
.si-walmart::before { content: "\f61d"; }
.si-walmart.si--color::before { color: #0071CE; }
-
.si-wantedly::before { content: "\f61c"; }
+
.si-wantedly::before { content: "\f61e"; }
.si-wantedly.si--color::before { color: #21BDDB; }
-
.si-wappalyzer::before { content: "\f61d"; }
+
.si-wappalyzer::before { content: "\f61f"; }
.si-wappalyzer.si--color::before { color: #4608AD; }
-
.si-warnerbros::before { content: "\f61e"; }
+
.si-warnerbros::before { content: "\f620"; }
.si-warnerbros.si--color::before { color: #004DB4; }
-
.si-warp::before { content: "\f61f"; }
+
.si-warp::before { content: "\f621"; }
.si-warp.si--color::before { color: #01A4FF; }
-
.si-wasabi::before { content: "\f620"; }
+
.si-wasabi::before { content: "\f622"; }
.si-wasabi.si--color::before { color: #01CD3E; }
-
.si-wasmcloud::before { content: "\f621"; }
+
.si-wasmcloud::before { content: "\f623"; }
.si-wasmcloud.si--color::before { color: #00BC8E; }
-
.si-wasmer::before { content: "\f622"; }
+
.si-wasmer::before { content: "\f624"; }
.si-wasmer.si--color::before { color: #4946DD; }
-
.si-watchtower::before { content: "\f623"; }
+
.si-watchtower::before { content: "\f625"; }
.si-watchtower.si--color::before { color: #416271; }
-
.si-wattpad::before { content: "\f624"; }
+
.si-wattpad::before { content: "\f626"; }
.si-wattpad.si--color::before { color: #FF500A; }
-
.si-wayland::before { content: "\f625"; }
+
.si-wayland::before { content: "\f627"; }
.si-wayland.si--color::before { color: #FFBC00; }
-
.si-waze::before { content: "\f626"; }
+
.si-waze::before { content: "\f628"; }
.si-waze.si--color::before { color: #33CCFF; }
-
.si-wazirx::before { content: "\f627"; }
+
.si-wazirx::before { content: "\f629"; }
.si-wazirx.si--color::before { color: #3067F0; }
-
.si-wearos::before { content: "\f628"; }
+
.si-wearos::before { content: "\f62a"; }
.si-wearos.si--color::before { color: #4285F4; }
-
.si-weasyl::before { content: "\f629"; }
+
.si-weasyl::before { content: "\f62b"; }
.si-weasyl.si--color::before { color: #990000; }
-
.si-webdotde::before { content: "\f62a"; }
+
.si-webdotde::before { content: "\f62c"; }
.si-webdotde.si--color::before { color: #FFD800; }
-
.si-web3dotjs::before { content: "\f62b"; }
+
.si-web3dotjs::before { content: "\f62d"; }
.si-web3dotjs.si--color::before { color: #F16822; }
-
.si-webassembly::before { content: "\f62c"; }
+
.si-webassembly::before { content: "\f62e"; }
.si-webassembly.si--color::before { color: #654FF0; }
-
.si-webauthn::before { content: "\f62d"; }
+
.si-webauthn::before { content: "\f62f"; }
.si-webauthn.si--color::before { color: #3423A6; }
-
.si-webcomponentsdotorg::before { content: "\f62e"; }
+
.si-webcomponentsdotorg::before { content: "\f630"; }
.si-webcomponentsdotorg.si--color::before { color: #29ABE2; }
-
.si-webdriverio::before { content: "\f62f"; }
+
.si-webdriverio::before { content: "\f631"; }
.si-webdriverio.si--color::before { color: #EA5906; }
-
.si-webex::before { content: "\f630"; }
+
.si-webex::before { content: "\f632"; }
.si-webex.si--color::before { color: #000000; }
-
.si-webflow::before { content: "\f631"; }
+
.si-webflow::before { content: "\f633"; }
.si-webflow.si--color::before { color: #146EF5; }
-
.si-webgl::before { content: "\f632"; }
+
.si-webgl::before { content: "\f634"; }
.si-webgl.si--color::before { color: #990000; }
-
.si-webgpu::before { content: "\f633"; }
+
.si-webgpu::before { content: "\f635"; }
.si-webgpu.si--color::before { color: #005A9C; }
-
.si-weblate::before { content: "\f634"; }
+
.si-weblate::before { content: "\f636"; }
.si-weblate.si--color::before { color: #2ECCAA; }
-
.si-webmin::before { content: "\f635"; }
+
.si-webmin::before { content: "\f637"; }
.si-webmin.si--color::before { color: #7DA0D0; }
-
.si-webmoney::before { content: "\f636"; }
+
.si-webmoney::before { content: "\f638"; }
.si-webmoney.si--color::before { color: #036CB5; }
-
.si-webpack::before { content: "\f637"; }
+
.si-webpack::before { content: "\f639"; }
.si-webpack.si--color::before { color: #8DD6F9; }
-
.si-webrtc::before { content: "\f638"; }
+
.si-webrtc::before { content: "\f63a"; }
.si-webrtc.si--color::before { color: #333333; }
-
.si-webstorm::before { content: "\f639"; }
+
.si-webstorm::before { content: "\f63b"; }
.si-webstorm.si--color::before { color: #000000; }
-
.si-webtoon::before { content: "\f63a"; }
+
.si-webtoon::before { content: "\f63c"; }
.si-webtoon.si--color::before { color: #00D564; }
-
.si-webtrees::before { content: "\f63b"; }
+
.si-webtrees::before { content: "\f63d"; }
.si-webtrees.si--color::before { color: #2694E8; }
-
.si-wechat::before { content: "\f63c"; }
+
.si-wechat::before { content: "\f63e"; }
.si-wechat.si--color::before { color: #07C160; }
-
.si-wegame::before { content: "\f63d"; }
+
.si-wegame::before { content: "\f63f"; }
.si-wegame.si--color::before { color: #FAAB00; }
-
.si-weightsandbiases::before { content: "\f63e"; }
+
.si-weightsandbiases::before { content: "\f640"; }
.si-weightsandbiases.si--color::before { color: #FFBE00; }
-
.si-welcometothejungle::before { content: "\f63f"; }
+
.si-welcometothejungle::before { content: "\f641"; }
.si-welcometothejungle.si--color::before { color: #FFCD00; }
-
.si-wellfound::before { content: "\f640"; }
+
.si-wellfound::before { content: "\f642"; }
.si-wellfound.si--color::before { color: #000000; }
-
.si-wellsfargo::before { content: "\f641"; }
+
.si-wellsfargo::before { content: "\f643"; }
.si-wellsfargo.si--color::before { color: #D71E28; }
-
.si-wemo::before { content: "\f642"; }
+
.si-wemo::before { content: "\f644"; }
.si-wemo.si--color::before { color: #72D44C; }
-
.si-westerndigital::before { content: "\f643"; }
+
.si-westerndigital::before { content: "\f645"; }
.si-westerndigital.si--color::before { color: #995DFF; }
-
.si-westernunion::before { content: "\f644"; }
+
.si-westernunion::before { content: "\f646"; }
.si-westernunion.si--color::before { color: #FFDD00; }
-
.si-wetransfer::before { content: "\f645"; }
+
.si-wetransfer::before { content: "\f647"; }
.si-wetransfer.si--color::before { color: #409FFF; }
-
.si-wezterm::before { content: "\f646"; }
+
.si-wezterm::before { content: "\f648"; }
.si-wezterm.si--color::before { color: #4E49EE; }
-
.si-wgpu::before { content: "\f647"; }
+
.si-wgpu::before { content: "\f649"; }
.si-wgpu.si--color::before { color: #40E0D0; }
-
.si-whatsapp::before { content: "\f648"; }
+
.si-whatsapp::before { content: "\f64a"; }
.si-whatsapp.si--color::before { color: #25D366; }
-
.si-wheniwork::before { content: "\f649"; }
+
.si-wheniwork::before { content: "\f64b"; }
.si-wheniwork.si--color::before { color: #51A33D; }
-
.si-wikidotgg::before { content: "\f64a"; }
+
.si-wikidotgg::before { content: "\f64c"; }
.si-wikidotgg.si--color::before { color: #FF1985; }
-
.si-wikidotjs::before { content: "\f64b"; }
+
.si-wikidotjs::before { content: "\f64d"; }
.si-wikidotjs.si--color::before { color: #1976D2; }
-
.si-wikibooks::before { content: "\f64c"; }
+
.si-wikibooks::before { content: "\f64e"; }
.si-wikibooks.si--color::before { color: #006699; }
-
.si-wikidata::before { content: "\f64d"; }
+
.si-wikidata::before { content: "\f64f"; }
.si-wikidata.si--color::before { color: #006699; }
-
.si-wikimediacommons::before { content: "\f64e"; }
+
.si-wikimediacommons::before { content: "\f650"; }
.si-wikimediacommons.si--color::before { color: #006699; }
-
.si-wikimediafoundation::before { content: "\f64f"; }
+
.si-wikimediafoundation::before { content: "\f651"; }
.si-wikimediafoundation.si--color::before { color: #000000; }
-
.si-wikipedia::before { content: "\f650"; }
+
.si-wikipedia::before { content: "\f652"; }
.si-wikipedia.si--color::before { color: #000000; }
-
.si-wikiquote::before { content: "\f651"; }
+
.si-wikiquote::before { content: "\f653"; }
.si-wikiquote.si--color::before { color: #006699; }
-
.si-wikiversity::before { content: "\f652"; }
+
.si-wikiversity::before { content: "\f654"; }
.si-wikiversity.si--color::before { color: #00649A; }
-
.si-wikivoyage::before { content: "\f653"; }
+
.si-wikivoyage::before { content: "\f655"; }
.si-wikivoyage.si--color::before { color: #006699; }
-
.si-winamp::before { content: "\f654"; }
+
.si-winamp::before { content: "\f656"; }
.si-winamp.si--color::before { color: #F93821; }
-
.si-wine::before { content: "\f655"; }
+
.si-wine::before { content: "\f657"; }
.si-wine.si--color::before { color: #800000; }
-
.si-wipro::before { content: "\f656"; }
+
.si-wipro::before { content: "\f658"; }
.si-wipro.si--color::before { color: #341C53; }
-
.si-wire::before { content: "\f657"; }
+
.si-wire::before { content: "\f659"; }
.si-wire.si--color::before { color: #000000; }
-
.si-wireguard::before { content: "\f658"; }
+
.si-wireguard::before { content: "\f65a"; }
.si-wireguard.si--color::before { color: #88171A; }
-
.si-wireshark::before { content: "\f659"; }
+
.si-wireshark::before { content: "\f65b"; }
.si-wireshark.si--color::before { color: #1679A7; }
-
.si-wise::before { content: "\f65a"; }
+
.si-wise::before { content: "\f65c"; }
.si-wise.si--color::before { color: #9FE870; }
-
.si-wish::before { content: "\f65b"; }
+
.si-wish::before { content: "\f65d"; }
.si-wish.si--color::before { color: #32E476; }
-
.si-wistia::before { content: "\f65c"; }
+
.si-wistia::before { content: "\f65e"; }
.si-wistia.si--color::before { color: #58B7FE; }
-
.si-wix::before { content: "\f65d"; }
+
.si-wix::before { content: "\f65f"; }
.si-wix.si--color::before { color: #0C6EFC; }
-
.si-wizzair::before { content: "\f65e"; }
+
.si-wizzair::before { content: "\f660"; }
.si-wizzair.si--color::before { color: #C6007E; }
-
.si-wolfram::before { content: "\f65f"; }
+
.si-wolfram::before { content: "\f661"; }
.si-wolfram.si--color::before { color: #DD1100; }
-
.si-wolframlanguage::before { content: "\f660"; }
+
.si-wolframlanguage::before { content: "\f662"; }
.si-wolframlanguage.si--color::before { color: #DD1100; }
-
.si-wolframmathematica::before { content: "\f661"; }
+
.si-wolframmathematica::before { content: "\f663"; }
.si-wolframmathematica.si--color::before { color: #DD1100; }
-
.si-wondershare::before { content: "\f662"; }
+
.si-wondershare::before { content: "\f664"; }
.si-wondershare.si--color::before { color: #000000; }
-
.si-wondersharefilmora::before { content: "\f663"; }
+
.si-wondersharefilmora::before { content: "\f665"; }
.si-wondersharefilmora.si--color::before { color: #07273D; }
-
.si-woo::before { content: "\f664"; }
+
.si-woo::before { content: "\f666"; }
.si-woo.si--color::before { color: #96588A; }
-
.si-woocommerce::before { content: "\f665"; }
+
.si-woocommerce::before { content: "\f667"; }
.si-woocommerce.si--color::before { color: #96588A; }
-
.si-wordpress::before { content: "\f666"; }
+
.si-wordpress::before { content: "\f668"; }
.si-wordpress.si--color::before { color: #21759B; }
-
.si-workplace::before { content: "\f667"; }
+
.si-workplace::before { content: "\f669"; }
.si-workplace.si--color::before { color: #4526CE; }
-
.si-worldhealthorganization::before { content: "\f668"; }
+
.si-worldhealthorganization::before { content: "\f66a"; }
.si-worldhealthorganization.si--color::before { color: #0093D5; }
-
.si-wpengine::before { content: "\f669"; }
+
.si-wpengine::before { content: "\f66b"; }
.si-wpengine.si--color::before { color: #0ECAD4; }
-
.si-wprocket::before { content: "\f66a"; }
+
.si-wprocket::before { content: "\f66c"; }
.si-wprocket.si--color::before { color: #F56640; }
-
.si-wpexplorer::before { content: "\f66b"; }
+
.si-wpexplorer::before { content: "\f66d"; }
.si-wpexplorer.si--color::before { color: #2563EB; }
-
.si-writedotas::before { content: "\f66c"; }
+
.si-writedotas::before { content: "\f66e"; }
.si-writedotas.si--color::before { color: #5AC4EE; }
-
.si-wwe::before { content: "\f66d"; }
+
.si-wwe::before { content: "\f66f"; }
.si-wwe.si--color::before { color: #000000; }
-
.si-wwise::before { content: "\f66e"; }
+
.si-wwise::before { content: "\f670"; }
.si-wwise.si--color::before { color: #00549F; }
-
.si-wxt::before { content: "\f66f"; }
+
.si-wxt::before { content: "\f671"; }
.si-wxt.si--color::before { color: #67D55E; }
-
.si-wykop::before { content: "\f670"; }
+
.si-wykop::before { content: "\f672"; }
.si-wykop.si--color::before { color: #367DA9; }
-
.si-wyze::before { content: "\f671"; }
+
.si-wyze::before { content: "\f673"; }
.si-wyze.si--color::before { color: #1DF0BB; }
-
.si-x::before { content: "\f672"; }
+
.si-x::before { content: "\f674"; }
.si-x.si--color::before { color: #000000; }
-
.si-xdotorg::before { content: "\f673"; }
+
.si-xdotorg::before { content: "\f675"; }
.si-xdotorg.si--color::before { color: #F28834; }
-
.si-xampp::before { content: "\f674"; }
+
.si-xampp::before { content: "\f676"; }
.si-xampp.si--color::before { color: #FB7A24; }
-
.si-xcode::before { content: "\f675"; }
+
.si-xcode::before { content: "\f677"; }
.si-xcode.si--color::before { color: #147EFB; }
-
.si-xdadevelopers::before { content: "\f676"; }
+
.si-xdadevelopers::before { content: "\f678"; }
.si-xdadevelopers.si--color::before { color: #EA7100; }
-
.si-xendit::before { content: "\f677"; }
+
.si-xendit::before { content: "\f679"; }
.si-xendit.si--color::before { color: #4573FF; }
-
.si-xero::before { content: "\f678"; }
+
.si-xero::before { content: "\f67a"; }
.si-xero.si--color::before { color: #13B5EA; }
-
.si-xfce::before { content: "\f679"; }
+
.si-xfce::before { content: "\f67b"; }
.si-xfce.si--color::before { color: #2284F2; }
-
.si-xiaohongshu::before { content: "\f67a"; }
+
.si-xiaohongshu::before { content: "\f67c"; }
.si-xiaohongshu.si--color::before { color: #FF2442; }
-
.si-xiaomi::before { content: "\f67b"; }
+
.si-xiaomi::before { content: "\f67d"; }
.si-xiaomi.si--color::before { color: #FF6900; }
-
.si-xing::before { content: "\f67c"; }
+
.si-xing::before { content: "\f67e"; }
.si-xing.si--color::before { color: #006567; }
-
.si-xml::before { content: "\f67d"; }
+
.si-xml::before { content: "\f67f"; }
.si-xml.si--color::before { color: #005FAD; }
-
.si-xmpp::before { content: "\f67e"; }
+
.si-xmpp::before { content: "\f680"; }
.si-xmpp.si--color::before { color: #002B5C; }
-
.si-xo::before { content: "\f67f"; }
+
.si-xo::before { content: "\f681"; }
.si-xo.si--color::before { color: #5ED9C7; }
-
.si-xrp::before { content: "\f680"; }
+
.si-xrp::before { content: "\f682"; }
.si-xrp.si--color::before { color: #25A768; }
-
.si-xsplit::before { content: "\f681"; }
+
.si-xsplit::before { content: "\f683"; }
.si-xsplit.si--color::before { color: #0095DE; }
-
.si-xstate::before { content: "\f682"; }
+
.si-xstate::before { content: "\f684"; }
.si-xstate.si--color::before { color: #2C3E50; }
-
.si-xubuntu::before { content: "\f683"; }
+
.si-xubuntu::before { content: "\f685"; }
.si-xubuntu.si--color::before { color: #0044AA; }
-
.si-ycombinator::before { content: "\f684"; }
+
.si-xyflow::before { content: "\f686"; }
+
.si-xyflow.si--color::before { color: #1A192B; }
+
.si-ycombinator::before { content: "\f687"; }
.si-ycombinator.si--color::before { color: #F0652F; }
-
.si-yabai::before { content: "\f685"; }
+
.si-yabai::before { content: "\f688"; }
.si-yabai.si--color::before { color: #00364B; }
-
.si-yale::before { content: "\f686"; }
+
.si-yale::before { content: "\f689"; }
.si-yale.si--color::before { color: #FFD900; }
-
.si-yamahacorporation::before { content: "\f687"; }
+
.si-yamahacorporation::before { content: "\f68a"; }
.si-yamahacorporation.si--color::before { color: #4B1E78; }
-
.si-yamahamotorcorporation::before { content: "\f688"; }
+
.si-yamahamotorcorporation::before { content: "\f68b"; }
.si-yamahamotorcorporation.si--color::before { color: #E60012; }
-
.si-yaml::before { content: "\f689"; }
+
.si-yaml::before { content: "\f68c"; }
.si-yaml.si--color::before { color: #CB171E; }
-
.si-yandexcloud::before { content: "\f68a"; }
+
.si-yandexcloud::before { content: "\f68d"; }
.si-yandexcloud.si--color::before { color: #5282FF; }
-
.si-yarn::before { content: "\f68b"; }
+
.si-yarn::before { content: "\f68e"; }
.si-yarn.si--color::before { color: #2C8EBB; }
-
.si-yelp::before { content: "\f68c"; }
+
.si-yelp::before { content: "\f68f"; }
.si-yelp.si--color::before { color: #FF1A1A; }
-
.si-yeti::before { content: "\f68d"; }
+
.si-yeti::before { content: "\f690"; }
.si-yeti.si--color::before { color: #00263C; }
-
.si-yii::before { content: "\f68e"; }
+
.si-yii::before { content: "\f691"; }
.si-yii.si--color::before { color: #40B3D8; }
-
.si-yoast::before { content: "\f68f"; }
+
.si-yoast::before { content: "\f692"; }
.si-yoast.si--color::before { color: #A61E69; }
-
.si-yolo::before { content: "\f690"; }
+
.si-yolo::before { content: "\f693"; }
.si-yolo.si--color::before { color: #111F68; }
-
.si-youhodler::before { content: "\f691"; }
+
.si-youhodler::before { content: "\f694"; }
.si-youhodler.si--color::before { color: #546DF9; }
-
.si-youtube::before { content: "\f692"; }
+
.si-youtube::before { content: "\f695"; }
.si-youtube.si--color::before { color: #FF0000; }
-
.si-youtubegaming::before { content: "\f693"; }
+
.si-youtubegaming::before { content: "\f696"; }
.si-youtubegaming.si--color::before { color: #FF0000; }
-
.si-youtubekids::before { content: "\f694"; }
+
.si-youtubekids::before { content: "\f697"; }
.si-youtubekids.si--color::before { color: #FF0000; }
-
.si-youtubemusic::before { content: "\f695"; }
+
.si-youtubemusic::before { content: "\f698"; }
.si-youtubemusic.si--color::before { color: #FF0000; }
-
.si-youtubeshorts::before { content: "\f696"; }
+
.si-youtubeshorts::before { content: "\f699"; }
.si-youtubeshorts.si--color::before { color: #FF0000; }
-
.si-youtubestudio::before { content: "\f697"; }
+
.si-youtubestudio::before { content: "\f69a"; }
.si-youtubestudio.si--color::before { color: #FF0000; }
-
.si-youtubetv::before { content: "\f698"; }
+
.si-youtubetv::before { content: "\f69b"; }
.si-youtubetv.si--color::before { color: #FF0000; }
-
.si-yr::before { content: "\f699"; }
+
.si-yr::before { content: "\f69c"; }
.si-yr.si--color::before { color: #00B9F1; }
-
.si-yubico::before { content: "\f69a"; }
+
.si-yubico::before { content: "\f69d"; }
.si-yubico.si--color::before { color: #84BD00; }
-
.si-yunohost::before { content: "\f69b"; }
+
.si-yunohost::before { content: "\f69e"; }
.si-yunohost.si--color::before { color: #000000; }
-
.si-zabka::before { content: "\f69c"; }
+
.si-zabka::before { content: "\f69f"; }
.si-zabka.si--color::before { color: #006420; }
-
.si-zaim::before { content: "\f69d"; }
+
.si-zaim::before { content: "\f6a0"; }
.si-zaim.si--color::before { color: #50A135; }
-
.si-zalando::before { content: "\f69e"; }
+
.si-zalando::before { content: "\f6a1"; }
.si-zalando.si--color::before { color: #FF6900; }
-
.si-zalo::before { content: "\f69f"; }
+
.si-zalo::before { content: "\f6a2"; }
.si-zalo.si--color::before { color: #0068FF; }
-
.si-zap::before { content: "\f6a0"; }
+
.si-zap::before { content: "\f6a3"; }
.si-zap.si--color::before { color: #00549E; }
-
.si-zapier::before { content: "\f6a1"; }
+
.si-zapier::before { content: "\f6a4"; }
.si-zapier.si--color::before { color: #FF4F00; }
-
.si-zara::before { content: "\f6a2"; }
+
.si-zara::before { content: "\f6a5"; }
.si-zara.si--color::before { color: #000000; }
-
.si-zazzle::before { content: "\f6a3"; }
+
.si-zazzle::before { content: "\f6a6"; }
.si-zazzle.si--color::before { color: #212121; }
-
.si-zcash::before { content: "\f6a4"; }
+
.si-zcash::before { content: "\f6a7"; }
.si-zcash.si--color::before { color: #F3B724; }
-
.si-zcool::before { content: "\f6a5"; }
+
.si-zcool::before { content: "\f6a8"; }
.si-zcool.si--color::before { color: #FFF200; }
-
.si-zdf::before { content: "\f6a6"; }
+
.si-zdf::before { content: "\f6a9"; }
.si-zdf.si--color::before { color: #FA7D19; }
-
.si-zebpay::before { content: "\f6a7"; }
+
.si-zebpay::before { content: "\f6aa"; }
.si-zebpay.si--color::before { color: #2072EF; }
-
.si-zebratechnologies::before { content: "\f6a8"; }
+
.si-zebratechnologies::before { content: "\f6ab"; }
.si-zebratechnologies.si--color::before { color: #000000; }
-
.si-zedindustries::before { content: "\f6a9"; }
+
.si-zedindustries::before { content: "\f6ac"; }
.si-zedindustries.si--color::before { color: #084CCF; }
-
.si-zelle::before { content: "\f6aa"; }
+
.si-zelle::before { content: "\f6ad"; }
.si-zelle.si--color::before { color: #6D1ED4; }
-
.si-zend::before { content: "\f6ab"; }
+
.si-zend::before { content: "\f6ae"; }
.si-zend.si--color::before { color: #0679EA; }
-
.si-zendesk::before { content: "\f6ac"; }
+
.si-zendesk::before { content: "\f6af"; }
.si-zendesk.si--color::before { color: #03363D; }
-
.si-zenn::before { content: "\f6ad"; }
+
.si-zenn::before { content: "\f6b0"; }
.si-zenn.si--color::before { color: #3EA8FF; }
-
.si-zenodo::before { content: "\f6ae"; }
+
.si-zenodo::before { content: "\f6b1"; }
.si-zenodo.si--color::before { color: #1682D4; }
-
.si-zensar::before { content: "\f6af"; }
+
.si-zensar::before { content: "\f6b2"; }
.si-zensar.si--color::before { color: #000000; }
-
.si-zerodha::before { content: "\f6b0"; }
+
.si-zerodha::before { content: "\f6b3"; }
.si-zerodha.si--color::before { color: #387ED1; }
-
.si-zerotier::before { content: "\f6b1"; }
+
.si-zerotier::before { content: "\f6b4"; }
.si-zerotier.si--color::before { color: #FFB441; }
-
.si-zettlr::before { content: "\f6b2"; }
+
.si-zettlr::before { content: "\f6b5"; }
.si-zettlr.si--color::before { color: #1CB27E; }
-
.si-zhihu::before { content: "\f6b3"; }
+
.si-zhihu::before { content: "\f6b6"; }
.si-zhihu.si--color::before { color: #0084FF; }
-
.si-zig::before { content: "\f6b4"; }
+
.si-zig::before { content: "\f6b7"; }
.si-zig.si--color::before { color: #F7A41D; }
-
.si-zigbee::before { content: "\f6b5"; }
+
.si-zigbee::before { content: "\f6b8"; }
.si-zigbee.si--color::before { color: #EB0443; }
-
.si-zigbee2mqtt::before { content: "\f6b6"; }
+
.si-zigbee2mqtt::before { content: "\f6b9"; }
.si-zigbee2mqtt.si--color::before { color: #FFC135; }
-
.si-ziggo::before { content: "\f6b7"; }
+
.si-ziggo::before { content: "\f6ba"; }
.si-ziggo.si--color::before { color: #F48C00; }
-
.si-zilch::before { content: "\f6b8"; }
+
.si-zilch::before { content: "\f6bb"; }
.si-zilch.si--color::before { color: #00D287; }
-
.si-zillow::before { content: "\f6b9"; }
+
.si-zillow::before { content: "\f6bc"; }
.si-zillow.si--color::before { color: #006AFF; }
-
.si-zincsearch::before { content: "\f6ba"; }
+
.si-zincsearch::before { content: "\f6bd"; }
.si-zincsearch.si--color::before { color: #5BA37F; }
-
.si-zingat::before { content: "\f6bb"; }
+
.si-zingat::before { content: "\f6be"; }
.si-zingat.si--color::before { color: #009CFB; }
-
.si-zod::before { content: "\f6bc"; }
+
.si-zod::before { content: "\f6bf"; }
.si-zod.si--color::before { color: #3E67B1; }
-
.si-zoho::before { content: "\f6bd"; }
+
.si-zoho::before { content: "\f6c0"; }
.si-zoho.si--color::before { color: #E42527; }
-
.si-zoiper::before { content: "\f6be"; }
+
.si-zoiper::before { content: "\f6c1"; }
.si-zoiper.si--color::before { color: #F47920; }
-
.si-zomato::before { content: "\f6bf"; }
+
.si-zomato::before { content: "\f6c2"; }
.si-zomato.si--color::before { color: #E23744; }
-
.si-zoom::before { content: "\f6c0"; }
+
.si-zoom::before { content: "\f6c3"; }
.si-zoom.si--color::before { color: #0B5CFF; }
-
.si-zorin::before { content: "\f6c1"; }
+
.si-zorin::before { content: "\f6c4"; }
.si-zorin.si--color::before { color: #15A6F0; }
-
.si-zotero::before { content: "\f6c2"; }
+
.si-zotero::before { content: "\f6c5"; }
.si-zotero.si--color::before { color: #CC2936; }
-
.si-zsh::before { content: "\f6c3"; }
+
.si-zsh::before { content: "\f6c6"; }
.si-zsh.si--color::before { color: #F15A24; }
-
.si-zulip::before { content: "\f6c4"; }
+
.si-zulip::before { content: "\f6c7"; }
.si-zulip.si--color::before { color: #6492FE; }
-
.si-zyte::before { content: "\f6c5"; }
+
.si-zyte::before { content: "\f6c8"; }
.si-zyte.si--color::before { color: #B02CCE; }
scripts/simple-icons/src/simple-icons.woff2

This is a binary file and will not be displayed.

+2 -1
src/_archetypes/blog.ts
···
title: title,
summary: "",
draft: true,
-
date: new Date(Date.now()).toISOString().split("T")[0],
+
published: new Date(Date.now()).toISOString().split("T")[0],
+
templateEngine: ["vto", "md"],
},
};
}
+4 -4
src/_components/about/technology_item.vto
···
<li>
-
<strong class="mr-1">{{ tech.type }}</strong> โ€“
-
<a class="ml-1 text-blue underline" href="{{tech.link}}">
-
{{ tech.name }}
-
</a>
+
<strong class="mr-1">{{ tech.type }}</strong> โ€“
+
<a class="ml-1 text-ctp-blue underline" href="{{tech.link}}">
+
{{ tech.name }}
+
</a>
</li>
+12 -6
src/_components/flag_text.vto
···
<!-- dprint-ignore-file -->
{{ if flag == "trans" }}
-
<p class="trans-flag inline">
-
<span class="text-trans-blue">t</span><span class="text-trans-pink">r</span><span class="text-white">a</span><span class="text-trans-pink">n</span><span class="text-trans-blue">s</span>
-
</p>
+
<span class="trans-flag">
+
<span class="text-trans-blue">t</span><span class="text-trans-pink">r</span><span
+
class="text-white"
+
>a</span><span class="text-trans-pink">n</span><span class="text-trans-blue">s</span>
+
</span>
{{ else if flag == "lesbian" }}
-
<p class="lesbian-flag inline">
-
<span class="text-lesbian-orange1">l</span><span class="text-lesbian-orange2">e</span><span class="text-lesbian-orange3">s</span><span class="text-white">b</span><span class="text-lesbian-pink1">i</span><span class="text-lesbian-pink2">a</span><span class="text-lesbian-pink3">n</span>
-
</p>
+
<span class="lesbian-flag inline">
+
<span class="text-lesbian-orange1">l</span><span class="text-lesbian-orange2">e</span><span
+
class="text-lesbian-orange3"
+
>s</span><span class="text-white">b</span><span class="text-lesbian-pink1">i</span><span
+
class="text-lesbian-pink2"
+
>a</span><span class="text-lesbian-pink3">n</span>
+
</span>
{{ /if }}
+34 -35
src/_components/footer.vto
···
<footer
-
class="bg-mantle min-h-24 inset-x-0 bottom-0 border-t-2 border-surface1 grid text-text grid-cols-3"
+
class="bg-ctp-mantle min-h-24 inset-x-0 bottom-0 border-t-2 border-ctp-surface1 grid text-ctp-text grid-cols-3"
>
-
{{ await comp.logo() }}
-
<div class="mt-2">
-
<p class="text-overlay2 text-lg">Social</p>
-
<ul
-
class="grid grid-cols-3 grid-rows-2 md:block list-none text-3xl lg:text-4xl text-subtext1 space-x-1 md:space-x-2 lg:space-x-3"
-
>
-
{{ for link of author.links }}
-
<li class="inline-block">
-
<a
-
href="{{link.link}}"
-
rel="me"
-
aria-label="{{author.name}}'s {{link.description}}"
-
>
-
<i class="si si-{{link.service}} {{link.extra_classes}}"></i>
-
</a>
-
</li>
-
{{ /for }}
-
<li class="inline-block lg:text-[2rem] text-[1.75rem]">
-
<a href="/blog.rss" aria-label="Blog RSS Feed">
-
<i class="si si-rss"></i>
-
</a>
-
</li>
-
</ul>
-
</div>
-
<div class="mt-2">
-
<p class="text-overlay2 text-lg">Info</p>
-
<p class="text-lg text-overlay1">&copy; 2025 dish</p>
-
<a
-
href="https://git.pyrox.dev/pyrox/new-blog/commit/{{ commit }}"
-
target="_blank"
-
class="text-blue underline"
-
>version {{ commit |> substring(0, 8) }}</a>
-
</div>
+
{{ await comp.logo() }}
+
<div class="mt-2">
+
<p class="text-ctp-overlay2 text-lg">Social</p>
+
<ul
+
class="grid grid-cols-3 grid-rows-2 md:block list-none text-3xl lg:text-4xl text-ctp-subtext1 space-x-1 md:space-x-2 lg:space-x-3"
+
>
+
{{ for link of author.links }}
+
<li class="inline-block">
+
<a
+
href="{{link.link}}"
+
rel="me"
+
aria-label="{{author.name}}'s {{link.description}}"
+
>
+
<i class="u-url si si-{{link.service}} {{link.extra_classes}}"></i>
+
</a>
+
</li>
+
{{ /for }}
+
<li class="inline-block lg:text-[2rem] text-[1.75rem]">
+
<a href="/blog.rss" aria-label="Blog RSS Feed">
+
<i class="si si-rss"></i>
+
</a>
+
</li>
+
</ul>
+
</div>
+
<div class="mt-2">
+
<p class="text-ctp-overlay2 text-lg">Info</p>
+
<p class="text-lg text-ctp-overlay1">&copy; 2025 dish</p>
+
<a
+
href="https://git.pyrox.dev/pyrox/new-blog/commit/{{ commit }}"
+
target="_blank"
+
class="text-ctp-blue underline"
+
>version {{ commit |> substring(0, 8) }}</a>
+
</div>
</footer>
-
<div style="display:none" class="latte"></div>
+9
src/_components/footnotes.vto
···
+
<hr class="border-ctp-overlay1 mb-2">
+
<ul>
+
{{ for fn of footnotes }}
+
<li class="fn" id="{{ fn.id }}">
+
<span class="fn-label">{{ fn.rawId }}</span>: {{ fn.content }}
+
<a href="#{{ fn.refId }}" class="fn-backref" aria-label="Back to reference"></a>
+
</li>
+
{{ /for }}
+
</ul>
+36 -7
src/_components/head.vto
···
<link rel="alternate" type="application/feed+json" href="/blog.json" />
<link rel="alternate" type="application/rss+xml" href="/blog.rss" />
{{# Stylesheets #}}
-
<link rel="stylesheet" href="/static/fonts.css" />
<link
-
rel="stylesheet"
-
href='/static/styles.css?v={{ new Date(Date.now()).toISOString() |> date("t") }}'
+
rel="stylesheet"
+
href='/static/styles.css?v={{ new Date(Date.now()).toISOString() |> date("t") }}'
/>
<link
-
rel="stylesheet"
-
href='/static/icons/bsi.min.css?v={{ new Date(Date.now()).toISOString() |> date("t") }}'
+
rel="stylesheet"
+
href='/styles.css?v={{ new Date(Date.now()).toISOString() |> date("t") }}'
/>
<link
-
rel="stylesheet"
-
href='/static/icons/si.min.css?v={{ new Date(Date.now()).toISOString() |> date("t") }}'
+
rel="stylesheet"
+
href='/static/icons/bsi.min.css?v={{ new Date(Date.now()).toISOString() |> date("t") }}'
+
/>
+
<link
+
rel="stylesheet"
+
href='/static/icons/si.min.css?v={{ new Date(Date.now()).toISOString() |> date("t") }}'
/>
{{# Page Metadata #}}
<link rel="canonical" href="{{ url |> url(true) }}" />
<title>{{ title }}</title>
+
{{ if !production }}
+
<script defer src="/static/scripts/open-in-editor.js"></script>
+
<script src="/static/scripts/highlight-accessibility.js"></script>
+
{{# Load Sa11y #}}
+
<link rel="preconnect" href="https://cdn.jsdelivr.net">
+
<link
+
rel="stylesheet"
+
href="https://cdn.jsdelivr.net/gh/ryersondmp/sa11y@latest/dist/css/sa11y.min.css"
+
/>
+
<script
+
src="https://cdn.jsdelivr.net/combine/gh/ryersondmp/sa11y@latest/dist/js/lang/en.umd.js,gh/ryersondmp/sa11y@latest/dist/js/sa11y.umd.min.js"
+
></script>
+
<script defer>
+
Sa11y.Lang.addI18n(Sa11yLangEn.strings);
+
const sa11y = new Sa11y.Sa11y({
+
checkRoot: "body",
+
readabilityRoot: "main",
+
developerChecksOnByDefault: true,
+
showGoodLinkButton: false,
+
showGoodImageButton: false,
+
});
+
</script>
+
{{ /if }}
+
+
{{# Disable Dark Reader #}}
+
<meta name="darkreader-lock">
+4 -4
src/_components/logo.vto
···
<div class="flex flex-row justify-center gap-x-2 lg:gap-x-4 content-center">
-
<i
-
class="bi bi-exclamation-triangle text-yellow self-center justify-self-end text-2xl lg:text-4xl"
-
></i>
-
<p class="text-text text-lg lg:text-xl self-center">a space</p>
+
<i
+
class="bi bi-exclamation-triangle text-ctp-yellow self-center justify-self-end text-2xl lg:text-4xl"
+
></i>
+
<p class="text-ctp-text font-mono text-lg lg:text-xl self-center">0x64697368</p>
</div>
+5
src/_components/lorem_ipsum.vto
···
+
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore
+
et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut
+
aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse
+
cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in
+
culpa qui officia deserunt mollit anim id est laborum.
+19 -14
src/_components/navbar.vto
···
-
<header class="bg-mantle min-h-20 flex flex-row justify-around mb-2">
-
<a class="flex flex-row justify-center gap-x-4 content-center" href="/">
-
{{ await comp.logo() }}
-
</a>
-
<nav
-
aria-label="Main"
-
class="flex flex-row text-xl lg:text-3xl text-mauve underline gap-x-4 lg:gap-x-16 justify-center"
-
>
-
{{ for link of nav.links }}
-
<a class="underline self-center" href="{{ link.link }}">{{ link.name }}</a>
-
{{ /for }}
-
</nav>
-
<div></div>
-
<p class="hidden lg:block text-overlay1 self-center">search coming soon</p>
+
<header class="bg-ctp-mantle min-h-20 flex flex-row justify-around mb-2">
+
<a class="flex flex-row justify-center gap-x-4 content-center" href="/">
+
{{ await comp.logo() }}
+
</a>
+
<nav
+
aria-label="Main"
+
class="flex flex-row text-xl lg:text-3xl text-ctp-mauve underline gap-x-4 lg:gap-x-16 justify-center"
+
>
+
{{ for link of nav.links }}
+
<a
+
class="underline self-center"
+
href="{{ link.link }}"
+
{{ if link.name == "About" }}
+
rel="author"{{ /if }}
+
>{{ link.name }}</a>
+
{{ /for }}
+
</nav>
+
<div></div>
+
<p class="hidden lg:block text-ctp-overlay1 self-center">search coming soon</p>
</header>
+26 -26
src/_components/post_card.vto
···
{{ if compact }}
-
<li class="bg-surface0 rounded">
-
<a href="{{ post.url }}">
-
<div class="m-4 pb-1">
-
<p class="text-subtext1 text-lg">{{ post.title }}</p>
-
<p class="inline italic text-subtext0">{{ post.summary }}</p>
-
<p class="float-right inline text-blue">
-
<time datetime="{{ post.published |> date('date') }}">
-
{{ post.published |> date('DATE') }}
-
</time>
-
</p>
-
</div>
-
</a>
-
</li>
+
<li class="bg-ctp-surface0 rounded">
+
<a href="{{ post.url }}">
+
<div class="m-4 py-1">
+
<p class="text-ctp-subtext1 text-lg">{{ post.title }}</p>
+
<p class="inline italic text-ctp-subtext0">{{ post.summary }}</p>
+
<p class="float-right inline text-ctp-blue">
+
<time datetime="{{ post.published |> date('SHORT_DATE') }}">
+
{{ post.published |> date("DATE") }}
+
</time>
+
</p>
+
</div>
+
</a>
+
</li>
{{ else }}
-
<li class="bg-surface0 rounded-md w-3/4 lg:w-full">
-
<a href="{{ post.url }}">
-
<div class="m-6 py-2">
-
<h2 class="text-subtext1 font-serif text-2xl mb-2">{{ post.title }}</h2>
-
<h3 class="text-lg lg:inline italic text-subtext0">{{ post.summary }}</h3>
-
<p class="text-lg lg:float-right lg:inline text-blue">
-
<time datetime="{{ post.published |> date('date') }}">
-
{{ post.published |> date('DATE') }}
-
</time>
-
</p>
-
</div>
-
</a>
-
</li>
+
<li class="bg-ctp-surface0 rounded-md w-3/4 lg:w-full">
+
<a href="{{ post.url }}">
+
<div class="m-6 py-2">
+
<h2 class="text-ctp-subtext1 font-serif text-2xl mb-2">{{ post.title }}</h2>
+
<h3 class="text-lg lg:inline italic text-ctp-subtext0">{{ post.summary }}</h3>
+
<p class="text-lg lg:float-right lg:inline text-ctp-blue">
+
<time datetime="{{ post.published |> date('SHORT_DATE') }}">
+
{{ post.published |> date("DATE") }}
+
</time>
+
</p>
+
</div>
+
</a>
+
</li>
{{ /if }}
+12 -12
src/_components/project_card.vto
···
-
<li class="bg-surface0 p-4 text-lg rounded-md">
-
<h2 class="text-2xl font-serif mb-2">{{ project.name }}</h2>
-
<h3 class="italic">{{ project.description }}</h3>
-
<p>Techs Used: {{ project.techs }}</p>
-
<p>
-
Developed Since:
-
<strong><time datetime="{{ project.start |> date('date') }}">
-
{{ project.start |> date('POST_DATE') }}
-
</time></strong>
-
</p>
-
<p>Status: {{ project.status }}</p>
-
<a class="underline text-blue" href="{{ project.link }}">{{ project.link }}</a>
+
<li class="bg-ctp-surface0 p-4 text-lg rounded-md">
+
<h2 class="text-2xl font-serif mb-2">{{ project.name }}</h2>
+
<h3 class="italic">{{ project.description }}</h3>
+
<p>Techs Used: {{ project.techs }}</p>
+
<p>
+
Developed Since:
+
<strong><time datetime="{{ project.start |> date('date') }}">
+
{{ project.start |> date("POST_DATE") }}
+
</time></strong>
+
</p>
+
<p>Status: {{ project.status }}</p>
+
<a class="underline text-ctp-blue" href="{{ project.link }}">{{ project.link }}</a>
</li>
+20
src/_components/table_of_contents.vto
···
+
<nav class="toc" aria-labelledby="toc-header">
+
<h2 class="text-ctp-overlay1 mb-1" id="toc-header">Table of Contents</h2>
+
<ol class="toc-l1">
+
{{ for item of toc }}
+
<li>
+
<a href="#{{ item.slug }}">{{ item.text }}</a>
+
+
{{ if item.children.length }}
+
<ul>
+
{{ for child of item.children }}
+
<li class="toc-l2">
+
<a href="#{{ child.slug }}">{{ child.text }}</a>
+
</li>
+
{{ /for }}
+
</ul>
+
{{ /if }}
+
</li>
+
{{ /for }}
+
</ol>
+
</nav>
+21
src/_components/webring.vto
···
+
<li
+
class="mb-2 lg:mb-4 px-2 py-1 bg-ctp-surface0 text-center text-lg rounded-md w-full sm:w-1/2 xl:w-1/3"
+
>
+
<p><a href="{{ring.all}}" class="text-serif text-2xl text-ctp-mauve">{{ ring.name }}</a></p>
+
<a
+
href="{{ring.previous}}"
+
class="text-ctp-green"
+
aria-label="Previous site in the {{ring.name}}"
+
>&lt; Previous</a> |
+
{{ if ring.random }}
+
<a
+
href="{{ring.random}}"
+
class="text-ctp-peach"
+
aria-label="Random site in the {{ring.name}}"
+
>Random</a> |
+
{{ /if }}
+
<a href="{{ring.all}}" class="text-ctp-sapphire" aria-label="Site list for the {{ring.name}}"
+
>All</a> |
+
<a href="{{ring.next}}" class="text-ctp-maroon" aria-label="Next site in the {{ring.name}}"
+
>Next &gt;</a>
+
</li>
+25 -5
src/_data/about.toml
···
-
[[techs]]
-
type = "Static Site Generator"
-
name = "Lume"
-
link = "https://lume.land"
-
[[techs]]
type = "Color Scheme"
name = "Catppuccin Mocha"
···
type = "Font"
name = "IBM Plex Serif"
link = "https://www.ibm.com/plex/"
+
+
[[techs]]
+
type = "Icon Font"
+
name = "Bootstrap Icons"
+
link = "https://icons.getbootstrap.com"
+
+
[[techs]]
+
type = "Icon Font"
+
name = "Simple Icons"
+
link = "https://simpleicons.org/"
+
+
[[techs]]
+
type = "Search Engine"
+
name = "Pagefind"
+
link = "https://pagefind.app/"
+
+
[[techs]]
+
type = "Static Site Generator"
+
name = "Lume"
+
link = "https://lume.land"
+
+
[[techs]]
+
type = "Syntax Highlighter"
+
name = "Shiki"
+
link = "https://shiki.style/"
+1 -1
src/_data/author.toml
···
name = "dish"
url = "https://pyrox.dev"
pronouns = "fox/it/she"
-
icon = "static/images/author.png"
+
image = "static/images/author.png"
[[links]]
service = "lastdotfm"
link = "https://www.last.fm/user/thehedgeh0g"
+41
src/_data/decap_cms.toml
···
+
media_folder = "src/static/media"
+
public_folder = "/static/media"
+
[backend]
+
name = "git-gateway"
+
branch = "main"
+
+
[[collections]]
+
name = "blog"
+
label = "Blog Posts"
+
label_singular = "Blog Post"
+
folder = "src/blog"
+
extension = "md"
+
format = "yaml-frontmatter"
+
+
# Metadata Fields
+
[[collections.fields]]
+
name = "title"
+
label = "Title"
+
widget = "string"
+
[[collections.fields]]
+
name = "summary"
+
label = "Summary"
+
widget = "text"
+
[[collections.fields]]
+
name = "draft"
+
label = "Draft Status"
+
widget = "boolean"
+
[[collections.fields]]
+
name = "published"
+
label = "Publish Date"
+
widget = "datetime"
+
date_format = "YYYY-MM-DD"
+
[[collections.fields]]
+
name = "templateEngines"
+
label = "Template Engines"
+
widget = "hidden"
+
default = ["vto", "md"]
+
[[collections.fields]]
+
name = "body"
+
label = "Post Content"
+
widget = "markdown"
+75
src/_data/volunteering.toml
···
+
[orgs]
+
+
[orgs.bb]
+
name = "Binary Breakers"
+
homepage = "https://binarybreakers.com"
+
+
[[orgs.bb.events]]
+
name = "The Breakout: Cozy Edition"
+
role = "Chat Moderation"
+
[[orgs.bb.events]]
+
name = "The Breakout: Spring BreakOUT"
+
role = "Chat Moderation"
+
[[orgs.bb.events]]
+
name = "The Breakout: Summer GAYmes"
+
role = "Chat Moderation"
+
+
+
[orgs.furs]
+
name = "Fastest Furs"
+
homepage = "https://fastestfurs.com"
+
+
[[orgs.furs.events]]
+
name = "Fastest Furs LIVE at FWA 2025"
+
role = "Chat Moderation"
+
+
+
[orgs.fatales]
+
name = "Frame Fatales"
+
homepage = "https://framefatales.com"
+
+
[[orgs.fatales.events]]
+
name = "Frost Fatales 2025"
+
role = "In-Studio Stream Tech, Cam Ops"
+
[[orgs.fatales.events]]
+
name = "Flame Fatales 2024"
+
role = "Chat Moderation"
+
[[orgs.fatales.events]]
+
name = "Frost Fatales 2024"
+
role = "Chat Moderation"
+
+
+
[orgs.gdq]
+
name = "Games Done Quick"
+
homepage = "https://gamesdonequick.com/"
+
+
[[orgs.gdq.events]]
+
name = "Summer Games Done Quick 2025"
+
role = "Chat Moderation"
+
[[orgs.gdq.events]]
+
name = "Awesome Games Done Quick 2025"
+
role = "Chat Moderation"
+
[[orgs.gdq.events]]
+
name = "Summer Games Done Quick 2024"
+
role = "Chat Moderation"
+
[[orgs.gdq.events]]
+
name = "Awesome Games Done Quick 2024"
+
role = "Chat Moderation"
+
+
+
[orgs.zt]
+
name = "Zeldathon"
+
homepage = "https://zeldathon.com"
+
+
[[orgs.zt.events]]
+
name = "Zeldathon Voyage"
+
role = "Chat Moderation"
+
+
+
[orgs.la]
+
name = "Lady Arcaders"
+
homepage = "https://ladyarcaders.com/"
+
+
[[orgs.la.events]]
+
name = "Out of Bounds 2ronto"
+
role = "Chat Moderation"
+31
src/_data/webrings.toml
···
+
[[rings]]
+
name = "Lady Arcaders Webring"
+
previous = "https://ladyarcaders.com/webring/6/previous/"
+
random = "https://ladyarcaders.com/webring/6/random"
+
all = "https://ladyarcaders.com/webring/"
+
next = "https://ladyarcaders.com/webring/6/next/"
+
+
[[rings]]
+
name = "roboring"
+
previous = "https://stellophiliac.github.io/roboring/dish/previous"
+
all = "https://stellophiliac.github.io/roboring"
+
next = "https://stellophiliac.github.io/roboring/dish/next"
+
+
[[rings]]
+
name = "Catppuccin Webring"
+
previous = "https://ctp-webr.ing/dish/previous"
+
all = "https://ctp-webr.ing/"
+
next = "https://ctp-webr.ing/dish/next"
+
+
[[rings_notworking]]
+
name = "IndieWeb Webring"
+
previous = "https://xn--sr8hvo.ws/previous"
+
all = "https://xn--sr8hvo.ws"
+
next = "https://xn--sr8hvo.ws/next"
+
+
[[rings]]
+
name = "No AI Webring"
+
previous = "https://baccyflap.com/noai/?prv&s=pyr"
+
random = "https://baccyflap.com/noai/?rnd"
+
all = "https://baccyflap.com/noai"
+
next = "https://baccyflap.com/noai/?nxt&s=pyr"
+43 -18
src/_includes/layouts/about.vto
···
{{ layout "layouts/base.vto" }}
-
<main class="min-h-screen text-text justify-self-center w-full lg:w-1/2 h-card">
-
<h1 class="my-8 text-5xl text-bold text-mauve">
-
About
-
<span class="p-name p-nickname inline">
-
dish
-
</span>
-
</h1>
+
<main class="ml-4 my-8 min-h-screen text-ctp-text justify-self-center w-full lg:w-1/2 h-card">
+
<h1 class="text-5xl text-bold text-ctp-mauve">
+
About
+
<span class="p-name p-nickname inline">
+
dish
+
</span>
+
</h1>
+
<img
+
class="h-64 w-64 rounded-full my-4"
+
src="/static/images/author.png"
+
transform-images="avif webp 300@2"
+
alt="dish at Frost Fatales 2025. She has her head tilted 45 degrees to the left and is wearing a face mask with the trans flag on it."
+
/>
+
+
<div class="text-lg h-entry">
+
{{ content }}
+
</div>
+
+
<h2 class="mt-8 mb-1 text-ctp-mauve text-2xl">Webrings!</h2>
+
<p class="text-ctp-text text-lg mb-4">
+
We're a big fan of old-school web discovery. Here's the
+
<a href="https://en.wikipedia.org/wiki/Webring" class="text-ctp-blue underline">webrings</a>
+
we're part of:
+
</p>
+
<ul>
+
{{ for ring of webrings.rings }}
+
{{ await comp.webring({ "ring": ring }) }}
+
{{ /for }}
+
</ul>
-
<div class="text-lg">
-
{{ content }}
-
</div>
+
<h2 class="mt-8 text-ctp-mauve text-2xl">About This Site</h2>
+
<p class="text-ctp-text text-lg">I've used the following to build this site:</p>
+
<ul>
+
{{ for tech of about.techs }}
+
{{ await comp.about.technology_item({ "tech": tech }) }}
+
{{ /for }}
+
</ul>
-
<h2 class="mt-8 text-mauve text-2xl">About This Site</h2>
-
<p class="text-text text-lg">I've used the following to build this site:</p>
-
<ul>
-
{{ for tech of about.techs }}
-
{{ await comp.about.technology_item({"tech": tech}) }}
-
{{ /for }}
-
</ul>
-
</main>
+
<p class="mt-4 text-lg">
+
Profile picture by Richard Ngo. <a
+
class="text-ctp-blue underline"
+
href="https://photos.gamesdonequick.com/FrostFatales2025/i-B3c9P48/A"
+
>Original Source</a> from Games Done Quick, modified by dish.
+
</p>
+
</main>
{{ /layout }}
+8 -8
src/_includes/layouts/base.vto
···
<!DOCTYPE html>
<html lang="en-US">
-
<head>
-
{{ await comp.head({"url": url, "title": title}) }}
-
</head>
-
<body id="body" class="mocha bg-crust grid">
-
{{ await comp.navbar() }}
+
<head>
+
{{ await comp.head({ "url": url, "title": title }) }}
+
</head>
+
<body id="body" class="mocha bg-ctp-crust grid">
+
{{ await comp.navbar() }}
-
{{ content }}
+
{{ content }}
-
{{ await comp.footer() }}
-
</body>
+
{{ await comp.footer() }}
+
</body>
</html>
+15 -15
src/_includes/layouts/blog-list.vto
···
{{ layout "layouts/base.vto" }}
-
<main class="min-h-screen text-text justify-self-center px-4 lg:px-0 w-full lg:w-1/2">
-
<h1 class="text-5xl my-8">Blog</h1>
-
<a
-
class="lg:inline float-right -mt-20 lg:mr-1.5"
-
href="/blog.rss"
-
aria-label="Blog RSS Feed"
-
>
-
<i class="text-5xl si si-rss"></i>
-
</a>
-
<ul class="mt-8">
-
{{ for post of search.pages("category=blog", "published=desc") }}
-
{{ await comp.post_card({"post": post}) }}
-
{{ /for }}
-
</ul>
-
</main>
+
<main class="min-h-screen text-ctp-text justify-self-center px-4 lg:px-0 w-full lg:w-1/2">
+
<h1 class="text-5xl my-8">Blog</h1>
+
<a
+
class="lg:inline float-right -mt-20 lg:mr-1.5"
+
href="/blog.rss"
+
aria-label="Blog RSS Feed"
+
>
+
<i class="text-5xl si si-rss"></i>
+
</a>
+
<ul class="mt-8">
+
{{ for post of search.pages("category=blog", "published=desc") }}
+
{{ await comp.post_card({ "post": post }) }}
+
{{ /for }}
+
</ul>
+
</main>
{{ /layout }}
+38 -18
src/_includes/layouts/blog-post.vto
···
{{ layout "layouts/base.vto" }}
-
<main class="min-h-screen text-text justify-self-center w-full lg:w-1/2">
-
<article class="h-entry">
-
<h1 class="text-5xl font-serif mt-8 p-name">{{ title }}</h1>
-
<h2 class="text-2xl font-sans mt-4 text-subtext0">
-
Published on
-
<time class="dt-published" datetime="{{ published |> date }}">
-
{{ published |> date('POST_DATE') }}
-
</time>
-
</h2>
-
<h2 class="text-2xl font-sans mb-8 text-overlay1">
-
By
-
<span class="inline p-author">{{ author.name }}</span>
-
</h2>
+
<main class="min-h-screen text-ctp-text justify-self-center w-full lg:w-1/2">
+
<article class="h-entry">
+
<h1 class="text-5xl font-serif mt-8 p-name">{{ title }}</h1>
-
<div class="e-content text-lg">
-
{{ content }}
-
</div>
-
</article>
-
</main>
+
<h2 class="mt-4 text-ctp-subtext0">
+
Published on
+
<time class="dt-published" datetime="{{ published |> date }}">
+
{{ published |> date("POST_DATE") }}
+
</time>
+
</h2>
+
+
<h2 class="hidden text-ctp-overlay1">
+
By
+
<span class="inline p-author h-card">{{ author.name }}</span>
+
</h2>
+
+
<h2 class="text-ctp-overlay1">
+
{{ readingInfo.words }} words, about {{ readingInfo.minutes }}
+
minute{{ if readingInfo.minutes != 1 }}s{{ /if }}
+
</h2>
+
+
{{ if enable_toc != false }}
+
{{ if toc.length }}
+
{{ await comp.table_of_contents({ "toc": toc }) }}
+
{{ else }}
+
<div class="mb-8"></div>
+
{{ /if }}
+
{{ /if }}
+
+
<div class="e-content text-lg">
+
{{ content }}
+
</div>
+
</article>
+
{{ if footnotes.length }}
+
<section aria-label="Footnotes">
+
{{ await comp.footnotes({ "footnotes": footnotes }) }}
+
</section>
+
{{ /if }}
+
</main>
{{ /layout }}
+22 -19
src/_includes/layouts/home.vto
···
{{ layout "layouts/base.vto" }}
-
<main class="min-h-screen text-text justify-self-center w-full lg:w-1/2">
-
<h1 class="mt-8 text-5xl text-bold text-mauve">hi, I'm dish</h1>
-
{{# Profile picture goes here #}}
-
<div class="h-64 w-64 content-center text-center border-2 mt-4">
-
there'll be a picture here in the future, promise!
-
</div>
-
<h2 class="text-2xl mt-4">Student, Sysadmin, and UX Crafter</h2>
-
<p class="text-lg mt-2">
-
Howdy! I play with computers, with an emphasis on accessible, secure, and enjoyable
-
experiences.
-
</p>
-
<!-- <div class="h-4"></div> -->
-
<h2 class="my-8 text-2xl">Recent blog posts:</h2>
-
<ul class="lg:w-3/4">
-
{{ for post of search.pages("category=blog", "date", 5) }}
-
{{ await comp.post_card({"post": post, compact: true}) }}
-
{{ /for }}
-
</ul>
-
</main>
+
<main class="min-h-screen text-ctp-text justify-self-center w-full lg:w-1/2 h-card">
+
<h1 class="mt-8 text-5xl text-bold text-ctp-mauve">
+
hi, I'm <span><a href="/about" rel="me" class="u-url u-uid p-name p-nickname">dish</a></span>
+
</h1>
+
<img
+
class="h-64 w-64 rounded-full mt-4"
+
src="/static/images/author.png"
+
transform-images="avif webp 300@2"
+
alt="dish at Frost Fatales 2025. She has her head tilted 45 degrees to the left and is wearing a face mask with the trans flag on it."
+
/>
+
<h2 class="text-2xl mt-4 p-note">Student, Sysadmin, and UX Crafter</h2>
+
<p class="text-lg mt-2">
+
Howdy! I play with computers, with an emphasis on accessible, secure, and enjoyable
+
experiences.
+
</p>
+
<h2 class="my-8 text-2xl">Recent blog posts:</h2>
+
<ul class="lg:w-3/4">
+
{{ for post of search.pages("category=blog", "published=desc", 5) }}
+
{{ await comp.post_card({ "post": post, compact: true }) }}
+
{{ /for }}
+
</ul>
+
</main>
{{ /layout }}
+8 -8
src/_includes/layouts/projects.vto
···
{{ layout "layouts/base.vto" }}
-
<main class="min-h-screen text-text justify-self-center w-full lg:w-1/2">
-
<h1 class="my-8 text-5xl text-bold text-mauve">Projects</h1>
-
<ul class="space-y-4">
-
{{ for project of projects.projects }}
-
{{ await comp.project_card({"project": project}) }}
-
{{ /for }}
-
</ul>
-
</main>
+
<main class="min-h-screen text-ctp-text justify-self-center w-full lg:w-1/2">
+
<h1 class="my-8 text-5xl text-bold text-ctp-mauve">Projects</h1>
+
<ul class="space-y-4">
+
{{ for project of projects.projects }}
+
{{ await comp.project_card({ "project": project }) }}
+
{{ /for }}
+
</ul>
+
</main>
{{ /layout }}
+23
src/_includes/layouts/volunteering.vto
···
+
{{ layout "layouts/base.vto" }}
+
<main class="ml-4 my-8 min-h-screen text-ctp-text justify-self-center w-full lg:w-1/2 h-card">
+
<h1 class="text-5xl text-bold text-ctp-mauve">
+
dish's Volunteering
+
</h1>
+
+
<br>
+
+
<div class="text-xl">
+
{{ content }}
+
<br>
+
{{ for org of volunteering.orgs }}
+
<h2 class="text-3xl">{{ org.name }}</h2>
+
<ul>
+
{{ for ev of org.events }}
+
<li class="text-xl">{{ ev.name }} - {{ ev.role }}</li>
+
{{ /for }}
+
</ul>
+
<br>
+
{{ /for }}
+
</div>
+
</main>
+
{{ /layout }}
+1282
src/_includes/mocha.css
···
+
@theme inline {
+
--color-ctp-rosewater: var(--catppuccin-color-rosewater);
+
--color-ctp-rosewater-500: var(--catppuccin-color-rosewater-500);
+
--color-ctp-rosewater-400: var(--catppuccin-color-rosewater-400);
+
--color-ctp-rosewater-300: var(--catppuccin-color-rosewater-300);
+
--color-ctp-rosewater-200: var(--catppuccin-color-rosewater-200);
+
--color-ctp-rosewater-100: var(--catppuccin-color-rosewater-100);
+
--color-ctp-rosewater-50: var(--catppuccin-color-rosewater-50);
+
--color-ctp-rosewater-600: var(--catppuccin-color-rosewater-600);
+
--color-ctp-rosewater-700: var(--catppuccin-color-rosewater-700);
+
--color-ctp-rosewater-800: var(--catppuccin-color-rosewater-800);
+
--color-ctp-rosewater-900: var(--catppuccin-color-rosewater-900);
+
--color-ctp-rosewater-950: var(--catppuccin-color-rosewater-950);
+
--color-ctp-flamingo: var(--catppuccin-color-flamingo);
+
--color-ctp-flamingo-500: var(--catppuccin-color-flamingo-500);
+
--color-ctp-flamingo-400: var(--catppuccin-color-flamingo-400);
+
--color-ctp-flamingo-300: var(--catppuccin-color-flamingo-300);
+
--color-ctp-flamingo-200: var(--catppuccin-color-flamingo-200);
+
--color-ctp-flamingo-100: var(--catppuccin-color-flamingo-100);
+
--color-ctp-flamingo-50: var(--catppuccin-color-flamingo-50);
+
--color-ctp-flamingo-600: var(--catppuccin-color-flamingo-600);
+
--color-ctp-flamingo-700: var(--catppuccin-color-flamingo-700);
+
--color-ctp-flamingo-800: var(--catppuccin-color-flamingo-800);
+
--color-ctp-flamingo-900: var(--catppuccin-color-flamingo-900);
+
--color-ctp-flamingo-950: var(--catppuccin-color-flamingo-950);
+
--color-ctp-pink: var(--catppuccin-color-pink);
+
--color-ctp-pink-500: var(--catppuccin-color-pink-500);
+
--color-ctp-pink-400: var(--catppuccin-color-pink-400);
+
--color-ctp-pink-300: var(--catppuccin-color-pink-300);
+
--color-ctp-pink-200: var(--catppuccin-color-pink-200);
+
--color-ctp-pink-100: var(--catppuccin-color-pink-100);
+
--color-ctp-pink-50: var(--catppuccin-color-pink-50);
+
--color-ctp-pink-600: var(--catppuccin-color-pink-600);
+
--color-ctp-pink-700: var(--catppuccin-color-pink-700);
+
--color-ctp-pink-800: var(--catppuccin-color-pink-800);
+
--color-ctp-pink-900: var(--catppuccin-color-pink-900);
+
--color-ctp-pink-950: var(--catppuccin-color-pink-950);
+
--color-ctp-mauve: var(--catppuccin-color-mauve);
+
--color-ctp-mauve-500: var(--catppuccin-color-mauve-500);
+
--color-ctp-mauve-400: var(--catppuccin-color-mauve-400);
+
--color-ctp-mauve-300: var(--catppuccin-color-mauve-300);
+
--color-ctp-mauve-200: var(--catppuccin-color-mauve-200);
+
--color-ctp-mauve-100: var(--catppuccin-color-mauve-100);
+
--color-ctp-mauve-50: var(--catppuccin-color-mauve-50);
+
--color-ctp-mauve-600: var(--catppuccin-color-mauve-600);
+
--color-ctp-mauve-700: var(--catppuccin-color-mauve-700);
+
--color-ctp-mauve-800: var(--catppuccin-color-mauve-800);
+
--color-ctp-mauve-900: var(--catppuccin-color-mauve-900);
+
--color-ctp-mauve-950: var(--catppuccin-color-mauve-950);
+
--color-ctp-red: var(--catppuccin-color-red);
+
--color-ctp-red-500: var(--catppuccin-color-red-500);
+
--color-ctp-red-400: var(--catppuccin-color-red-400);
+
--color-ctp-red-300: var(--catppuccin-color-red-300);
+
--color-ctp-red-200: var(--catppuccin-color-red-200);
+
--color-ctp-red-100: var(--catppuccin-color-red-100);
+
--color-ctp-red-50: var(--catppuccin-color-red-50);
+
--color-ctp-red-600: var(--catppuccin-color-red-600);
+
--color-ctp-red-700: var(--catppuccin-color-red-700);
+
--color-ctp-red-800: var(--catppuccin-color-red-800);
+
--color-ctp-red-900: var(--catppuccin-color-red-900);
+
--color-ctp-red-950: var(--catppuccin-color-red-950);
+
--color-ctp-maroon: var(--catppuccin-color-maroon);
+
--color-ctp-maroon-500: var(--catppuccin-color-maroon-500);
+
--color-ctp-maroon-400: var(--catppuccin-color-maroon-400);
+
--color-ctp-maroon-300: var(--catppuccin-color-maroon-300);
+
--color-ctp-maroon-200: var(--catppuccin-color-maroon-200);
+
--color-ctp-maroon-100: var(--catppuccin-color-maroon-100);
+
--color-ctp-maroon-50: var(--catppuccin-color-maroon-50);
+
--color-ctp-maroon-600: var(--catppuccin-color-maroon-600);
+
--color-ctp-maroon-700: var(--catppuccin-color-maroon-700);
+
--color-ctp-maroon-800: var(--catppuccin-color-maroon-800);
+
--color-ctp-maroon-900: var(--catppuccin-color-maroon-900);
+
--color-ctp-maroon-950: var(--catppuccin-color-maroon-950);
+
--color-ctp-peach: var(--catppuccin-color-peach);
+
--color-ctp-peach-500: var(--catppuccin-color-peach-500);
+
--color-ctp-peach-400: var(--catppuccin-color-peach-400);
+
--color-ctp-peach-300: var(--catppuccin-color-peach-300);
+
--color-ctp-peach-200: var(--catppuccin-color-peach-200);
+
--color-ctp-peach-100: var(--catppuccin-color-peach-100);
+
--color-ctp-peach-50: var(--catppuccin-color-peach-50);
+
--color-ctp-peach-600: var(--catppuccin-color-peach-600);
+
--color-ctp-peach-700: var(--catppuccin-color-peach-700);
+
--color-ctp-peach-800: var(--catppuccin-color-peach-800);
+
--color-ctp-peach-900: var(--catppuccin-color-peach-900);
+
--color-ctp-peach-950: var(--catppuccin-color-peach-950);
+
--color-ctp-yellow: var(--catppuccin-color-yellow);
+
--color-ctp-yellow-500: var(--catppuccin-color-yellow-500);
+
--color-ctp-yellow-400: var(--catppuccin-color-yellow-400);
+
--color-ctp-yellow-300: var(--catppuccin-color-yellow-300);
+
--color-ctp-yellow-200: var(--catppuccin-color-yellow-200);
+
--color-ctp-yellow-100: var(--catppuccin-color-yellow-100);
+
--color-ctp-yellow-50: var(--catppuccin-color-yellow-50);
+
--color-ctp-yellow-600: var(--catppuccin-color-yellow-600);
+
--color-ctp-yellow-700: var(--catppuccin-color-yellow-700);
+
--color-ctp-yellow-800: var(--catppuccin-color-yellow-800);
+
--color-ctp-yellow-900: var(--catppuccin-color-yellow-900);
+
--color-ctp-yellow-950: var(--catppuccin-color-yellow-950);
+
--color-ctp-green: var(--catppuccin-color-green);
+
--color-ctp-green-500: var(--catppuccin-color-green-500);
+
--color-ctp-green-400: var(--catppuccin-color-green-400);
+
--color-ctp-green-300: var(--catppuccin-color-green-300);
+
--color-ctp-green-200: var(--catppuccin-color-green-200);
+
--color-ctp-green-100: var(--catppuccin-color-green-100);
+
--color-ctp-green-50: var(--catppuccin-color-green-50);
+
--color-ctp-green-600: var(--catppuccin-color-green-600);
+
--color-ctp-green-700: var(--catppuccin-color-green-700);
+
--color-ctp-green-800: var(--catppuccin-color-green-800);
+
--color-ctp-green-900: var(--catppuccin-color-green-900);
+
--color-ctp-green-950: var(--catppuccin-color-green-950);
+
--color-ctp-teal: var(--catppuccin-color-teal);
+
--color-ctp-teal-500: var(--catppuccin-color-teal-500);
+
--color-ctp-teal-400: var(--catppuccin-color-teal-400);
+
--color-ctp-teal-300: var(--catppuccin-color-teal-300);
+
--color-ctp-teal-200: var(--catppuccin-color-teal-200);
+
--color-ctp-teal-100: var(--catppuccin-color-teal-100);
+
--color-ctp-teal-50: var(--catppuccin-color-teal-50);
+
--color-ctp-teal-600: var(--catppuccin-color-teal-600);
+
--color-ctp-teal-700: var(--catppuccin-color-teal-700);
+
--color-ctp-teal-800: var(--catppuccin-color-teal-800);
+
--color-ctp-teal-900: var(--catppuccin-color-teal-900);
+
--color-ctp-teal-950: var(--catppuccin-color-teal-950);
+
--color-ctp-sky: var(--catppuccin-color-sky);
+
--color-ctp-sky-500: var(--catppuccin-color-sky-500);
+
--color-ctp-sky-400: var(--catppuccin-color-sky-400);
+
--color-ctp-sky-300: var(--catppuccin-color-sky-300);
+
--color-ctp-sky-200: var(--catppuccin-color-sky-200);
+
--color-ctp-sky-100: var(--catppuccin-color-sky-100);
+
--color-ctp-sky-50: var(--catppuccin-color-sky-50);
+
--color-ctp-sky-600: var(--catppuccin-color-sky-600);
+
--color-ctp-sky-700: var(--catppuccin-color-sky-700);
+
--color-ctp-sky-800: var(--catppuccin-color-sky-800);
+
--color-ctp-sky-900: var(--catppuccin-color-sky-900);
+
--color-ctp-sky-950: var(--catppuccin-color-sky-950);
+
--color-ctp-sapphire: var(--catppuccin-color-sapphire);
+
--color-ctp-sapphire-500: var(--catppuccin-color-sapphire-500);
+
--color-ctp-sapphire-400: var(--catppuccin-color-sapphire-400);
+
--color-ctp-sapphire-300: var(--catppuccin-color-sapphire-300);
+
--color-ctp-sapphire-200: var(--catppuccin-color-sapphire-200);
+
--color-ctp-sapphire-100: var(--catppuccin-color-sapphire-100);
+
--color-ctp-sapphire-50: var(--catppuccin-color-sapphire-50);
+
--color-ctp-sapphire-600: var(--catppuccin-color-sapphire-600);
+
--color-ctp-sapphire-700: var(--catppuccin-color-sapphire-700);
+
--color-ctp-sapphire-800: var(--catppuccin-color-sapphire-800);
+
--color-ctp-sapphire-900: var(--catppuccin-color-sapphire-900);
+
--color-ctp-sapphire-950: var(--catppuccin-color-sapphire-950);
+
--color-ctp-blue: var(--catppuccin-color-blue);
+
--color-ctp-blue-500: var(--catppuccin-color-blue-500);
+
--color-ctp-blue-400: var(--catppuccin-color-blue-400);
+
--color-ctp-blue-300: var(--catppuccin-color-blue-300);
+
--color-ctp-blue-200: var(--catppuccin-color-blue-200);
+
--color-ctp-blue-100: var(--catppuccin-color-blue-100);
+
--color-ctp-blue-50: var(--catppuccin-color-blue-50);
+
--color-ctp-blue-600: var(--catppuccin-color-blue-600);
+
--color-ctp-blue-700: var(--catppuccin-color-blue-700);
+
--color-ctp-blue-800: var(--catppuccin-color-blue-800);
+
--color-ctp-blue-900: var(--catppuccin-color-blue-900);
+
--color-ctp-blue-950: var(--catppuccin-color-blue-950);
+
--color-ctp-lavender: var(--catppuccin-color-lavender);
+
--color-ctp-lavender-500: var(--catppuccin-color-lavender-500);
+
--color-ctp-lavender-400: var(--catppuccin-color-lavender-400);
+
--color-ctp-lavender-300: var(--catppuccin-color-lavender-300);
+
--color-ctp-lavender-200: var(--catppuccin-color-lavender-200);
+
--color-ctp-lavender-100: var(--catppuccin-color-lavender-100);
+
--color-ctp-lavender-50: var(--catppuccin-color-lavender-50);
+
--color-ctp-lavender-600: var(--catppuccin-color-lavender-600);
+
--color-ctp-lavender-700: var(--catppuccin-color-lavender-700);
+
--color-ctp-lavender-800: var(--catppuccin-color-lavender-800);
+
--color-ctp-lavender-900: var(--catppuccin-color-lavender-900);
+
--color-ctp-lavender-950: var(--catppuccin-color-lavender-950);
+
--color-ctp-text: var(--catppuccin-color-text);
+
--color-ctp-subtext1: var(--catppuccin-color-subtext1);
+
--color-ctp-subtext0: var(--catppuccin-color-subtext0);
+
--color-ctp-overlay2: var(--catppuccin-color-overlay2);
+
--color-ctp-overlay1: var(--catppuccin-color-overlay1);
+
--color-ctp-overlay0: var(--catppuccin-color-overlay0);
+
--color-ctp-surface2: var(--catppuccin-color-surface2);
+
--color-ctp-surface1: var(--catppuccin-color-surface1);
+
--color-ctp-surface0: var(--catppuccin-color-surface0);
+
--color-ctp-base: var(--catppuccin-color-base);
+
--color-ctp-mantle: var(--catppuccin-color-mantle);
+
--color-ctp-crust: var(--catppuccin-color-crust);
+
}
+
@layer base {
+
:root {
+
--catppuccin-color-rosewater: #dc8a78;
+
--catppuccin-color-rosewater-500: #dc8a78;
+
--catppuccin-color-rosewater-400: #de998c;
+
--catppuccin-color-rosewater-300: #e0a69c;
+
--catppuccin-color-rosewater-200: #e2b1ab;
+
--catppuccin-color-rosewater-100: #e4bcb8;
+
--catppuccin-color-rosewater-50: #e6c6c4;
+
--catppuccin-color-rosewater-600: #d28372;
+
--catppuccin-color-rosewater-700: #c27969;
+
--catppuccin-color-rosewater-800: #af6d5e;
+
--catppuccin-color-rosewater-900: #9a5f52;
+
--catppuccin-color-rosewater-950: #804e43;
+
--catppuccin-color-flamingo: #dd7878;
+
--catppuccin-color-flamingo-500: #dd7878;
+
--catppuccin-color-flamingo-400: #df8b8c;
+
--catppuccin-color-flamingo-300: #e19b9c;
+
--catppuccin-color-flamingo-200: #e3a9ab;
+
--catppuccin-color-flamingo-100: #e4b5b8;
+
--catppuccin-color-flamingo-50: #e6c1c4;
+
--catppuccin-color-flamingo-600: #d37272;
+
--catppuccin-color-flamingo-700: #c26969;
+
--catppuccin-color-flamingo-800: #b05e5e;
+
--catppuccin-color-flamingo-900: #9a5252;
+
--catppuccin-color-flamingo-950: #804343;
+
--catppuccin-color-pink: #ea76cb;
+
--catppuccin-color-pink-500: #ea76cb;
+
--catppuccin-color-pink-400: #eb89d0;
+
--catppuccin-color-pink-300: #eb9ad4;
+
--catppuccin-color-pink-200: #eca8d9;
+
--catppuccin-color-pink-100: #ecb5dd;
+
--catppuccin-color-pink-50: #edc1e1;
+
--catppuccin-color-pink-600: #df70c2;
+
--catppuccin-color-pink-700: #ce67b2;
+
--catppuccin-color-pink-800: #ba5da1;
+
--catppuccin-color-pink-900: #a4518e;
+
--catppuccin-color-pink-950: #884275;
+
--catppuccin-color-mauve: #8839ef;
+
--catppuccin-color-mauve-500: #8839ef;
+
--catppuccin-color-mauve-400: #9763f0;
+
--catppuccin-color-mauve-300: #a47ef0;
+
--catppuccin-color-mauve-200: #af93f1;
+
--catppuccin-color-mauve-100: #baa5f1;
+
--catppuccin-color-mauve-50: #c4b5f2;
+
--catppuccin-color-mauve-600: #8236e4;
+
--catppuccin-color-mauve-700: #7731d2;
+
--catppuccin-color-mauve-800: #6b2bbe;
+
--catppuccin-color-mauve-900: #5e25a7;
+
--catppuccin-color-mauve-950: #4d1d8b;
+
--catppuccin-color-red: #d20f39;
+
--catppuccin-color-red-500: #d20f39;
+
--catppuccin-color-red-400: #d55664;
+
--catppuccin-color-red-300: #d87680;
+
--catppuccin-color-red-200: #db8d95;
+
--catppuccin-color-red-100: #dea1a8;
+
--catppuccin-color-red-50: #e1b1b8;
+
--catppuccin-color-red-600: #c80e36;
+
--catppuccin-color-red-700: #b90c31;
+
--catppuccin-color-red-800: #a7092b;
+
--catppuccin-color-red-900: #930725;
+
--catppuccin-color-red-950: #7a051d;
+
--catppuccin-color-maroon: #e64553;
+
--catppuccin-color-maroon-500: #e64553;
+
--catppuccin-color-maroon-400: #e76972;
+
--catppuccin-color-maroon-300: #e88289;
+
--catppuccin-color-maroon-200: #e9969c;
+
--catppuccin-color-maroon-100: #eaa7ad;
+
--catppuccin-color-maroon-50: #ebb6bb;
+
--catppuccin-color-maroon-600: #dc414f;
+
--catppuccin-color-maroon-700: #ca3c48;
+
--catppuccin-color-maroon-800: #b73540;
+
--catppuccin-color-maroon-900: #a12e38;
+
--catppuccin-color-maroon-950: #86242d;
+
--catppuccin-color-peach: #fe640b;
+
--catppuccin-color-peach-500: #fe640b;
+
--catppuccin-color-peach-400: #fd7c57;
+
--catppuccin-color-peach-300: #fb9077;
+
--catppuccin-color-peach-200: #faa08f;
+
--catppuccin-color-peach-100: #f8afa3;
+
--catppuccin-color-peach-50: #f7bcb4;
+
--catppuccin-color-peach-600: #f25f0a;
+
--catppuccin-color-peach-700: #e05708;
+
--catppuccin-color-peach-800: #cb4e07;
+
--catppuccin-color-peach-900: #b24405;
+
--catppuccin-color-peach-950: #943703;
+
--catppuccin-color-yellow: #df8e1d;
+
--catppuccin-color-yellow-500: #df8e1d;
+
--catppuccin-color-yellow-400: #e19c5a;
+
--catppuccin-color-yellow-300: #e2a879;
+
--catppuccin-color-yellow-200: #e4b391;
+
--catppuccin-color-yellow-100: #e6bea4;
+
--catppuccin-color-yellow-50: #e7c8b5;
+
--catppuccin-color-yellow-600: #d5871b;
+
--catppuccin-color-yellow-700: #c47c18;
+
--catppuccin-color-yellow-800: #b27015;
+
--catppuccin-color-yellow-900: #9c6211;
+
--catppuccin-color-yellow-950: #82500c;
+
--catppuccin-color-green: #40a02b;
+
--catppuccin-color-green-500: #40a02b;
+
--catppuccin-color-green-400: #66aa5e;
+
--catppuccin-color-green-300: #7fb47c;
+
--catppuccin-color-green-200: #94bd93;
+
--catppuccin-color-green-100: #a5c6a6;
+
--catppuccin-color-green-50: #b4ceb6;
+
--catppuccin-color-green-600: #3d9929;
+
--catppuccin-color-green-700: #378c25;
+
--catppuccin-color-green-800: #317f20;
+
--catppuccin-color-green-900: #2a6f1b;
+
--catppuccin-color-green-950: #215b15;
+
--catppuccin-color-teal: #179299;
+
--catppuccin-color-teal-500: #179299;
+
--catppuccin-color-teal-400: #569fa5;
+
--catppuccin-color-teal-300: #75abb1;
+
--catppuccin-color-teal-200: #8db6bb;
+
--catppuccin-color-teal-100: #a0c0c5;
+
--catppuccin-color-teal-50: #b0c9ce;
+
--catppuccin-color-teal-600: #158b92;
+
--catppuccin-color-teal-700: #138086;
+
--catppuccin-color-teal-800: #107379;
+
--catppuccin-color-teal-900: #0d656a;
+
--catppuccin-color-teal-950: #085357;
+
--catppuccin-color-sky: #04a5e5;
+
--catppuccin-color-sky-500: #04a5e5;
+
--catppuccin-color-sky-400: #53afe7;
+
--catppuccin-color-sky-300: #74b8e8;
+
--catppuccin-color-sky-200: #8bc0ea;
+
--catppuccin-color-sky-100: #9fc8ec;
+
--catppuccin-color-sky-50: #b0d0ed;
+
--catppuccin-color-sky-600: #049ddb;
+
--catppuccin-color-sky-700: #0391ca;
+
--catppuccin-color-sky-800: #0283b6;
+
--catppuccin-color-sky-900: #0272a0;
+
--catppuccin-color-sky-950: #015e85;
+
--catppuccin-color-sapphire: #209fb5;
+
--catppuccin-color-sapphire-500: #209fb5;
+
--catppuccin-color-sapphire-400: #59aabd;
+
--catppuccin-color-sapphire-300: #77b3c4;
+
--catppuccin-color-sapphire-200: #8ebdcb;
+
--catppuccin-color-sapphire-100: #a0c5d2;
+
--catppuccin-color-sapphire-50: #b1cdd8;
+
--catppuccin-color-sapphire-600: #1e98ad;
+
--catppuccin-color-sapphire-700: #1b8b9f;
+
--catppuccin-color-sapphire-800: #177e90;
+
--catppuccin-color-sapphire-900: #136e7e;
+
--catppuccin-color-sapphire-950: #0e5b68;
+
--catppuccin-color-blue: #1e66f5;
+
--catppuccin-color-blue-500: #1e66f5;
+
--catppuccin-color-blue-400: #587ef5;
+
--catppuccin-color-blue-300: #7791f5;
+
--catppuccin-color-blue-200: #8da1f5;
+
--catppuccin-color-blue-100: #a0b0f5;
+
--catppuccin-color-blue-50: #b1bdf5;
+
--catppuccin-color-blue-600: #1c61ea;
+
--catppuccin-color-blue-700: #1959d8;
+
--catppuccin-color-blue-800: #1650c3;
+
--catppuccin-color-blue-900: #1245ac;
+
--catppuccin-color-blue-950: #0d388f;
+
--catppuccin-color-lavender: #7287fd;
+
--catppuccin-color-lavender-500: #7287fd;
+
--catppuccin-color-lavender-400: #8696fc;
+
--catppuccin-color-lavender-300: #97a4fb;
+
--catppuccin-color-lavender-200: #a5b0fb;
+
--catppuccin-color-lavender-100: #b2bbfa;
+
--catppuccin-color-lavender-50: #bec5f9;
+
--catppuccin-color-lavender-600: #6d81f2;
+
--catppuccin-color-lavender-700: #6476df;
+
--catppuccin-color-lavender-800: #596aca;
+
--catppuccin-color-lavender-900: #4e5db1;
+
--catppuccin-color-lavender-950: #3f4c94;
+
--catppuccin-color-text: #4c4f69;
+
--catppuccin-color-subtext1: #5c5f77;
+
--catppuccin-color-subtext0: #6c6f85;
+
--catppuccin-color-overlay2: #7c7f93;
+
--catppuccin-color-overlay1: #8c8fa1;
+
--catppuccin-color-overlay0: #9ca0b0;
+
--catppuccin-color-surface2: #acb0be;
+
--catppuccin-color-surface1: #bcc0cc;
+
--catppuccin-color-surface0: #ccd0da;
+
--catppuccin-color-base: #eff1f5;
+
--catppuccin-color-mantle: #e6e9ef;
+
--catppuccin-color-crust: #dce0e8;
+
}
+
@variant dark {
+
:root {
+
--catppuccin-color-rosewater: #f5e0dc;
+
--catppuccin-color-rosewater-500: #f5e0dc;
+
--catppuccin-color-rosewater-400: #f6e3e0;
+
--catppuccin-color-rosewater-300: #f7e7e4;
+
--catppuccin-color-rosewater-200: #f8eae7;
+
--catppuccin-color-rosewater-100: #f9edeb;
+
--catppuccin-color-rosewater-50: #faf0ee;
+
--catppuccin-color-rosewater-600: #ead6d2;
+
--catppuccin-color-rosewater-700: #d8c6c3;
+
--catppuccin-color-rosewater-800: #c4b3b1;
+
--catppuccin-color-rosewater-900: #ad9e9d;
+
--catppuccin-color-rosewater-950: #918585;
+
--catppuccin-color-flamingo: #f2cdcd;
+
--catppuccin-color-flamingo-500: #f2cdcd;
+
--catppuccin-color-flamingo-400: #f3d3d3;
+
--catppuccin-color-flamingo-300: #f5d8d8;
+
--catppuccin-color-flamingo-200: #f6dede;
+
--catppuccin-color-flamingo-100: #f7e3e3;
+
--catppuccin-color-flamingo-50: #f9e8e8;
+
--catppuccin-color-flamingo-600: #e7c4c4;
+
--catppuccin-color-flamingo-700: #d6b5b5;
+
--catppuccin-color-flamingo-800: #c2a4a5;
+
--catppuccin-color-flamingo-900: #ab9193;
+
--catppuccin-color-flamingo-950: #8f797c;
+
--catppuccin-color-pink: #f5c2e7;
+
--catppuccin-color-pink-500: #f5c2e7;
+
--catppuccin-color-pink-400: #f6c9ea;
+
--catppuccin-color-pink-300: #f7d0ec;
+
--catppuccin-color-pink-200: #f8d7ef;
+
--catppuccin-color-pink-100: #f9ddf1;
+
--catppuccin-color-pink-50: #fae3f3;
+
--catppuccin-color-pink-600: #eab9dd;
+
--catppuccin-color-pink-700: #d8abcc;
+
--catppuccin-color-pink-800: #c49bba;
+
--catppuccin-color-pink-900: #ad89a5;
+
--catppuccin-color-pink-950: #91738b;
+
--catppuccin-color-mauve: #cba6f7;
+
--catppuccin-color-mauve-500: #cba6f7;
+
--catppuccin-color-mauve-400: #d1b2f8;
+
--catppuccin-color-mauve-300: #d7bcf9;
+
--catppuccin-color-mauve-200: #dcc6f9;
+
--catppuccin-color-mauve-100: #e2d0fa;
+
--catppuccin-color-mauve-50: #e7d9fb;
+
--catppuccin-color-mauve-600: #c29fec;
+
--catppuccin-color-mauve-700: #b392da;
+
--catppuccin-color-mauve-800: #a285c7;
+
--catppuccin-color-mauve-900: #8f75b0;
+
--catppuccin-color-mauve-950: #786394;
+
--catppuccin-color-red: #f38ba8;
+
--catppuccin-color-red-500: #f38ba8;
+
--catppuccin-color-red-400: #f49cb3;
+
--catppuccin-color-red-300: #f5abbe;
+
--catppuccin-color-red-200: #f7b8c7;
+
--catppuccin-color-red-100: #f8c4d1;
+
--catppuccin-color-red-50: #f9d0d9;
+
--catppuccin-color-red-600: #e885a1;
+
--catppuccin-color-red-700: #d67b95;
+
--catppuccin-color-red-800: #c36f88;
+
--catppuccin-color-red-900: #ac6279;
+
--catppuccin-color-red-950: #905367;
+
--catppuccin-color-maroon: #eba0ac;
+
--catppuccin-color-maroon-500: #eba0ac;
+
--catppuccin-color-maroon-400: #edadb7;
+
--catppuccin-color-maroon-300: #efb8c0;
+
--catppuccin-color-maroon-200: #f1c3ca;
+
--catppuccin-color-maroon-100: #f3cdd2;
+
--catppuccin-color-maroon-50: #f5d6db;
+
--catppuccin-color-maroon-600: #e099a5;
+
--catppuccin-color-maroon-700: #cf8d98;
+
--catppuccin-color-maroon-800: #bc808b;
+
--catppuccin-color-maroon-900: #a6717c;
+
--catppuccin-color-maroon-950: #8b5f6a;
+
--catppuccin-color-peach: #fab387;
+
--catppuccin-color-peach-500: #fab387;
+
--catppuccin-color-peach-400: #fbbc99;
+
--catppuccin-color-peach-300: #fbc5a8;
+
--catppuccin-color-peach-200: #fcceb6;
+
--catppuccin-color-peach-100: #fcd6c3;
+
--catppuccin-color-peach-50: #fdddcf;
+
--catppuccin-color-peach-600: #efab81;
+
--catppuccin-color-peach-700: #dd9e78;
+
--catppuccin-color-peach-800: #c88f6e;
+
--catppuccin-color-peach-900: #b17e63;
+
--catppuccin-color-peach-950: #946a55;
+
--catppuccin-color-yellow: #f9e2af;
+
--catppuccin-color-yellow-500: #f9e2af;
+
--catppuccin-color-yellow-400: #fae5b9;
+
--catppuccin-color-yellow-300: #fae8c3;
+
--catppuccin-color-yellow-200: #fbebcb;
+
--catppuccin-color-yellow-100: #fbeed4;
+
--catppuccin-color-yellow-50: #fcf1dc;
+
--catppuccin-color-yellow-600: #eed8a7;
+
--catppuccin-color-yellow-700: #dcc79b;
+
--catppuccin-color-yellow-800: #c7b58d;
+
--catppuccin-color-yellow-900: #b0a07e;
+
--catppuccin-color-yellow-950: #93866b;
+
--catppuccin-color-green: #a6e3a1;
+
--catppuccin-color-green-500: #a6e3a1;
+
--catppuccin-color-green-400: #b2e6ae;
+
--catppuccin-color-green-300: #bce9b9;
+
--catppuccin-color-green-200: #c6ecc4;
+
--catppuccin-color-green-100: #d0efcd;
+
--catppuccin-color-green-50: #d9f2d7;
+
--catppuccin-color-green-600: #9fd99a;
+
--catppuccin-color-green-700: #92c88f;
+
--catppuccin-color-green-800: #85b682;
+
--catppuccin-color-green-900: #75a074;
+
--catppuccin-color-green-950: #638663;
+
--catppuccin-color-teal: #94e2d5;
+
--catppuccin-color-teal-500: #94e2d5;
+
--catppuccin-color-teal-400: #a3e5da;
+
--catppuccin-color-teal-300: #b1e8de;
+
--catppuccin-color-teal-200: #bdebe3;
+
--catppuccin-color-teal-100: #c8eee7;
+
--catppuccin-color-teal-50: #d3f1eb;
+
--catppuccin-color-teal-600: #8dd8cc;
+
--catppuccin-color-teal-700: #83c7bc;
+
--catppuccin-color-teal-800: #77b5ac;
+
--catppuccin-color-teal-900: #69a098;
+
--catppuccin-color-teal-950: #588681;
+
--catppuccin-color-sky: #89dceb;
+
--catppuccin-color-sky-500: #89dceb;
+
--catppuccin-color-sky-400: #9ae0ed;
+
--catppuccin-color-sky-300: #aae4ef;
+
--catppuccin-color-sky-200: #b7e7f1;
+
--catppuccin-color-sky-100: #c4ebf3;
+
--catppuccin-color-sky-50: #cfeef5;
+
--catppuccin-color-sky-600: #83d2e1;
+
--catppuccin-color-sky-700: #79c2d0;
+
--catppuccin-color-sky-800: #6eb0bd;
+
--catppuccin-color-sky-900: #619ba7;
+
--catppuccin-color-sky-950: #52828d;
+
--catppuccin-color-sapphire: #74c7ec;
+
--catppuccin-color-sapphire-500: #74c7ec;
+
--catppuccin-color-sapphire-400: #8bceee;
+
--catppuccin-color-sapphire-300: #9ed4f0;
+
--catppuccin-color-sapphire-200: #aedaf2;
+
--catppuccin-color-sapphire-100: #bce0f4;
+
--catppuccin-color-sapphire-50: #c9e5f6;
+
--catppuccin-color-sapphire-600: #6fbee2;
+
--catppuccin-color-sapphire-700: #66b0d1;
+
--catppuccin-color-sapphire-800: #5d9fbe;
+
--catppuccin-color-sapphire-900: #538ca8;
+
--catppuccin-color-sapphire-950: #46768e;
+
--catppuccin-color-blue: #89b4fa;
+
--catppuccin-color-blue-500: #89b4fa;
+
--catppuccin-color-blue-400: #9abdfb;
+
--catppuccin-color-blue-300: #aac6fb;
+
--catppuccin-color-blue-200: #b7cefc;
+
--catppuccin-color-blue-100: #c4d6fc;
+
--catppuccin-color-blue-50: #cfdefd;
+
--catppuccin-color-blue-600: #83acef;
+
--catppuccin-color-blue-700: #799fdd;
+
--catppuccin-color-blue-800: #6e90c9;
+
--catppuccin-color-blue-900: #617fb2;
+
--catppuccin-color-blue-950: #526b96;
+
--catppuccin-color-lavender: #b4befe;
+
--catppuccin-color-lavender-500: #b4befe;
+
--catppuccin-color-lavender-400: #bdc6fe;
+
--catppuccin-color-lavender-300: #c6cdfe;
+
--catppuccin-color-lavender-200: #ced4fe;
+
--catppuccin-color-lavender-100: #d6dbfe;
+
--catppuccin-color-lavender-50: #dee2ff;
+
--catppuccin-color-lavender-600: #acb5f3;
+
--catppuccin-color-lavender-700: #9fa8e1;
+
--catppuccin-color-lavender-800: #9098cc;
+
--catppuccin-color-lavender-900: #7f86b5;
+
--catppuccin-color-lavender-950: #6b7099;
+
--catppuccin-color-text: #cdd6f4;
+
--catppuccin-color-subtext1: #bac2de;
+
--catppuccin-color-subtext0: #a6adc8;
+
--catppuccin-color-overlay2: #9399b2;
+
--catppuccin-color-overlay1: #7f849c;
+
--catppuccin-color-overlay0: #6c7086;
+
--catppuccin-color-surface2: #585b70;
+
--catppuccin-color-surface1: #45475a;
+
--catppuccin-color-surface0: #313244;
+
--catppuccin-color-base: #1e1e2e;
+
--catppuccin-color-mantle: #181825;
+
--catppuccin-color-crust: #11111b;
+
}
+
}
+
.latte {
+
--catppuccin-color-rosewater: #dc8a78;
+
--catppuccin-color-rosewater-500: #dc8a78;
+
--catppuccin-color-rosewater-400: #de998c;
+
--catppuccin-color-rosewater-300: #e0a69c;
+
--catppuccin-color-rosewater-200: #e2b1ab;
+
--catppuccin-color-rosewater-100: #e4bcb8;
+
--catppuccin-color-rosewater-50: #e6c6c4;
+
--catppuccin-color-rosewater-600: #d28372;
+
--catppuccin-color-rosewater-700: #c27969;
+
--catppuccin-color-rosewater-800: #af6d5e;
+
--catppuccin-color-rosewater-900: #9a5f52;
+
--catppuccin-color-rosewater-950: #804e43;
+
--catppuccin-color-flamingo: #dd7878;
+
--catppuccin-color-flamingo-500: #dd7878;
+
--catppuccin-color-flamingo-400: #df8b8c;
+
--catppuccin-color-flamingo-300: #e19b9c;
+
--catppuccin-color-flamingo-200: #e3a9ab;
+
--catppuccin-color-flamingo-100: #e4b5b8;
+
--catppuccin-color-flamingo-50: #e6c1c4;
+
--catppuccin-color-flamingo-600: #d37272;
+
--catppuccin-color-flamingo-700: #c26969;
+
--catppuccin-color-flamingo-800: #b05e5e;
+
--catppuccin-color-flamingo-900: #9a5252;
+
--catppuccin-color-flamingo-950: #804343;
+
--catppuccin-color-pink: #ea76cb;
+
--catppuccin-color-pink-500: #ea76cb;
+
--catppuccin-color-pink-400: #eb89d0;
+
--catppuccin-color-pink-300: #eb9ad4;
+
--catppuccin-color-pink-200: #eca8d9;
+
--catppuccin-color-pink-100: #ecb5dd;
+
--catppuccin-color-pink-50: #edc1e1;
+
--catppuccin-color-pink-600: #df70c2;
+
--catppuccin-color-pink-700: #ce67b2;
+
--catppuccin-color-pink-800: #ba5da1;
+
--catppuccin-color-pink-900: #a4518e;
+
--catppuccin-color-pink-950: #884275;
+
--catppuccin-color-mauve: #8839ef;
+
--catppuccin-color-mauve-500: #8839ef;
+
--catppuccin-color-mauve-400: #9763f0;
+
--catppuccin-color-mauve-300: #a47ef0;
+
--catppuccin-color-mauve-200: #af93f1;
+
--catppuccin-color-mauve-100: #baa5f1;
+
--catppuccin-color-mauve-50: #c4b5f2;
+
--catppuccin-color-mauve-600: #8236e4;
+
--catppuccin-color-mauve-700: #7731d2;
+
--catppuccin-color-mauve-800: #6b2bbe;
+
--catppuccin-color-mauve-900: #5e25a7;
+
--catppuccin-color-mauve-950: #4d1d8b;
+
--catppuccin-color-red: #d20f39;
+
--catppuccin-color-red-500: #d20f39;
+
--catppuccin-color-red-400: #d55664;
+
--catppuccin-color-red-300: #d87680;
+
--catppuccin-color-red-200: #db8d95;
+
--catppuccin-color-red-100: #dea1a8;
+
--catppuccin-color-red-50: #e1b1b8;
+
--catppuccin-color-red-600: #c80e36;
+
--catppuccin-color-red-700: #b90c31;
+
--catppuccin-color-red-800: #a7092b;
+
--catppuccin-color-red-900: #930725;
+
--catppuccin-color-red-950: #7a051d;
+
--catppuccin-color-maroon: #e64553;
+
--catppuccin-color-maroon-500: #e64553;
+
--catppuccin-color-maroon-400: #e76972;
+
--catppuccin-color-maroon-300: #e88289;
+
--catppuccin-color-maroon-200: #e9969c;
+
--catppuccin-color-maroon-100: #eaa7ad;
+
--catppuccin-color-maroon-50: #ebb6bb;
+
--catppuccin-color-maroon-600: #dc414f;
+
--catppuccin-color-maroon-700: #ca3c48;
+
--catppuccin-color-maroon-800: #b73540;
+
--catppuccin-color-maroon-900: #a12e38;
+
--catppuccin-color-maroon-950: #86242d;
+
--catppuccin-color-peach: #fe640b;
+
--catppuccin-color-peach-500: #fe640b;
+
--catppuccin-color-peach-400: #fd7c57;
+
--catppuccin-color-peach-300: #fb9077;
+
--catppuccin-color-peach-200: #faa08f;
+
--catppuccin-color-peach-100: #f8afa3;
+
--catppuccin-color-peach-50: #f7bcb4;
+
--catppuccin-color-peach-600: #f25f0a;
+
--catppuccin-color-peach-700: #e05708;
+
--catppuccin-color-peach-800: #cb4e07;
+
--catppuccin-color-peach-900: #b24405;
+
--catppuccin-color-peach-950: #943703;
+
--catppuccin-color-yellow: #df8e1d;
+
--catppuccin-color-yellow-500: #df8e1d;
+
--catppuccin-color-yellow-400: #e19c5a;
+
--catppuccin-color-yellow-300: #e2a879;
+
--catppuccin-color-yellow-200: #e4b391;
+
--catppuccin-color-yellow-100: #e6bea4;
+
--catppuccin-color-yellow-50: #e7c8b5;
+
--catppuccin-color-yellow-600: #d5871b;
+
--catppuccin-color-yellow-700: #c47c18;
+
--catppuccin-color-yellow-800: #b27015;
+
--catppuccin-color-yellow-900: #9c6211;
+
--catppuccin-color-yellow-950: #82500c;
+
--catppuccin-color-green: #40a02b;
+
--catppuccin-color-green-500: #40a02b;
+
--catppuccin-color-green-400: #66aa5e;
+
--catppuccin-color-green-300: #7fb47c;
+
--catppuccin-color-green-200: #94bd93;
+
--catppuccin-color-green-100: #a5c6a6;
+
--catppuccin-color-green-50: #b4ceb6;
+
--catppuccin-color-green-600: #3d9929;
+
--catppuccin-color-green-700: #378c25;
+
--catppuccin-color-green-800: #317f20;
+
--catppuccin-color-green-900: #2a6f1b;
+
--catppuccin-color-green-950: #215b15;
+
--catppuccin-color-teal: #179299;
+
--catppuccin-color-teal-500: #179299;
+
--catppuccin-color-teal-400: #569fa5;
+
--catppuccin-color-teal-300: #75abb1;
+
--catppuccin-color-teal-200: #8db6bb;
+
--catppuccin-color-teal-100: #a0c0c5;
+
--catppuccin-color-teal-50: #b0c9ce;
+
--catppuccin-color-teal-600: #158b92;
+
--catppuccin-color-teal-700: #138086;
+
--catppuccin-color-teal-800: #107379;
+
--catppuccin-color-teal-900: #0d656a;
+
--catppuccin-color-teal-950: #085357;
+
--catppuccin-color-sky: #04a5e5;
+
--catppuccin-color-sky-500: #04a5e5;
+
--catppuccin-color-sky-400: #53afe7;
+
--catppuccin-color-sky-300: #74b8e8;
+
--catppuccin-color-sky-200: #8bc0ea;
+
--catppuccin-color-sky-100: #9fc8ec;
+
--catppuccin-color-sky-50: #b0d0ed;
+
--catppuccin-color-sky-600: #049ddb;
+
--catppuccin-color-sky-700: #0391ca;
+
--catppuccin-color-sky-800: #0283b6;
+
--catppuccin-color-sky-900: #0272a0;
+
--catppuccin-color-sky-950: #015e85;
+
--catppuccin-color-sapphire: #209fb5;
+
--catppuccin-color-sapphire-500: #209fb5;
+
--catppuccin-color-sapphire-400: #59aabd;
+
--catppuccin-color-sapphire-300: #77b3c4;
+
--catppuccin-color-sapphire-200: #8ebdcb;
+
--catppuccin-color-sapphire-100: #a0c5d2;
+
--catppuccin-color-sapphire-50: #b1cdd8;
+
--catppuccin-color-sapphire-600: #1e98ad;
+
--catppuccin-color-sapphire-700: #1b8b9f;
+
--catppuccin-color-sapphire-800: #177e90;
+
--catppuccin-color-sapphire-900: #136e7e;
+
--catppuccin-color-sapphire-950: #0e5b68;
+
--catppuccin-color-blue: #1e66f5;
+
--catppuccin-color-blue-500: #1e66f5;
+
--catppuccin-color-blue-400: #587ef5;
+
--catppuccin-color-blue-300: #7791f5;
+
--catppuccin-color-blue-200: #8da1f5;
+
--catppuccin-color-blue-100: #a0b0f5;
+
--catppuccin-color-blue-50: #b1bdf5;
+
--catppuccin-color-blue-600: #1c61ea;
+
--catppuccin-color-blue-700: #1959d8;
+
--catppuccin-color-blue-800: #1650c3;
+
--catppuccin-color-blue-900: #1245ac;
+
--catppuccin-color-blue-950: #0d388f;
+
--catppuccin-color-lavender: #7287fd;
+
--catppuccin-color-lavender-500: #7287fd;
+
--catppuccin-color-lavender-400: #8696fc;
+
--catppuccin-color-lavender-300: #97a4fb;
+
--catppuccin-color-lavender-200: #a5b0fb;
+
--catppuccin-color-lavender-100: #b2bbfa;
+
--catppuccin-color-lavender-50: #bec5f9;
+
--catppuccin-color-lavender-600: #6d81f2;
+
--catppuccin-color-lavender-700: #6476df;
+
--catppuccin-color-lavender-800: #596aca;
+
--catppuccin-color-lavender-900: #4e5db1;
+
--catppuccin-color-lavender-950: #3f4c94;
+
--catppuccin-color-text: #4c4f69;
+
--catppuccin-color-subtext1: #5c5f77;
+
--catppuccin-color-subtext0: #6c6f85;
+
--catppuccin-color-overlay2: #7c7f93;
+
--catppuccin-color-overlay1: #8c8fa1;
+
--catppuccin-color-overlay0: #9ca0b0;
+
--catppuccin-color-surface2: #acb0be;
+
--catppuccin-color-surface1: #bcc0cc;
+
--catppuccin-color-surface0: #ccd0da;
+
--catppuccin-color-base: #eff1f5;
+
--catppuccin-color-mantle: #e6e9ef;
+
--catppuccin-color-crust: #dce0e8;
+
}
+
.frappe {
+
--catppuccin-color-rosewater: #f2d5cf;
+
--catppuccin-color-rosewater-500: #f2d5cf;
+
--catppuccin-color-rosewater-400: #f3dad4;
+
--catppuccin-color-rosewater-300: #f5deda;
+
--catppuccin-color-rosewater-200: #f6e3df;
+
--catppuccin-color-rosewater-100: #f7e7e4;
+
--catppuccin-color-rosewater-50: #f9ebe9;
+
--catppuccin-color-rosewater-600: #e7ccc6;
+
--catppuccin-color-rosewater-700: #d6bdb9;
+
--catppuccin-color-rosewater-800: #c3aca9;
+
--catppuccin-color-rosewater-900: #ad9998;
+
--catppuccin-color-rosewater-950: #928284;
+
--catppuccin-color-flamingo: #eebebe;
+
--catppuccin-color-flamingo-500: #eebebe;
+
--catppuccin-color-flamingo-400: #f0c6c6;
+
--catppuccin-color-flamingo-300: #f2cdcd;
+
--catppuccin-color-flamingo-200: #f3d4d4;
+
--catppuccin-color-flamingo-100: #f5dbdb;
+
--catppuccin-color-flamingo-50: #f7e2e2;
+
--catppuccin-color-flamingo-600: #e4b6b6;
+
--catppuccin-color-flamingo-700: #d3a9aa;
+
--catppuccin-color-flamingo-800: #c09a9c;
+
--catppuccin-color-flamingo-900: #aa898d;
+
--catppuccin-color-flamingo-950: #90757b;
+
--catppuccin-color-pink: #f4b8e4;
+
--catppuccin-color-pink-500: #f4b8e4;
+
--catppuccin-color-pink-400: #f5c1e7;
+
--catppuccin-color-pink-300: #f6c9ea;
+
--catppuccin-color-pink-200: #f7d1ed;
+
--catppuccin-color-pink-100: #f8d8ef;
+
--catppuccin-color-pink-50: #fadff2;
+
--catppuccin-color-pink-600: #e9b0da;
+
--catppuccin-color-pink-700: #d8a3cb;
+
--catppuccin-color-pink-800: #c495ba;
+
--catppuccin-color-pink-900: #ae85a6;
+
--catppuccin-color-pink-950: #93728f;
+
--catppuccin-color-mauve: #ca9ee6;
+
--catppuccin-color-mauve-500: #ca9ee6;
+
--catppuccin-color-mauve-400: #d0abe9;
+
--catppuccin-color-mauve-300: #d6b7eb;
+
--catppuccin-color-mauve-200: #dcc2ee;
+
--catppuccin-color-mauve-100: #e1ccf0;
+
--catppuccin-color-mauve-50: #e7d6f3;
+
--catppuccin-color-mauve-600: #c197dc;
+
--catppuccin-color-mauve-700: #b38dcd;
+
--catppuccin-color-mauve-800: #a381bb;
+
--catppuccin-color-mauve-900: #9173a8;
+
--catppuccin-color-mauve-950: #7b6490;
+
--catppuccin-color-red: #e78284;
+
--catppuccin-color-red-500: #e78284;
+
--catppuccin-color-red-400: #ea9597;
+
--catppuccin-color-red-300: #eca5a7;
+
--catppuccin-color-red-200: #efb4b5;
+
--catppuccin-color-red-100: #f1c1c2;
+
--catppuccin-color-red-50: #f3cdce;
+
--catppuccin-color-red-600: #dd7d7f;
+
--catppuccin-color-red-700: #cc7478;
+
--catppuccin-color-red-800: #ba6b70;
+
--catppuccin-color-red-900: #a56168;
+
--catppuccin-color-red-950: #8c555e;
+
--catppuccin-color-maroon: #ea999c;
+
--catppuccin-color-maroon-500: #ea999c;
+
--catppuccin-color-maroon-400: #eca7a9;
+
--catppuccin-color-maroon-300: #eeb4b6;
+
--catppuccin-color-maroon-200: #f1bfc1;
+
--catppuccin-color-maroon-100: #f3cacb;
+
--catppuccin-color-maroon-50: #f5d4d5;
+
--catppuccin-color-maroon-600: #e09396;
+
--catppuccin-color-maroon-700: #cf888d;
+
--catppuccin-color-maroon-800: #bc7d82;
+
--catppuccin-color-maroon-900: #a77077;
+
--catppuccin-color-maroon-950: #8d6169;
+
--catppuccin-color-peach: #ef9f76;
+
--catppuccin-color-peach-500: #ef9f76;
+
--catppuccin-color-peach-400: #f1ac8c;
+
--catppuccin-color-peach-300: #f2b89f;
+
--catppuccin-color-peach-200: #f4c3af;
+
--catppuccin-color-peach-100: #f6cdbd;
+
--catppuccin-color-peach-50: #f7d6ca;
+
--catppuccin-color-peach-600: #e59872;
+
--catppuccin-color-peach-700: #d38e6c;
+
--catppuccin-color-peach-800: #c08266;
+
--catppuccin-color-peach-900: #ab745f;
+
--catppuccin-color-peach-950: #906458;
+
--catppuccin-color-yellow: #e5c890;
+
--catppuccin-color-yellow-500: #e5c890;
+
--catppuccin-color-yellow-400: #e8cea0;
+
--catppuccin-color-yellow-300: #ebd5ae;
+
--catppuccin-color-yellow-200: #eddabb;
+
--catppuccin-color-yellow-100: #f0e0c6;
+
--catppuccin-color-yellow-50: #f2e6d1;
+
--catppuccin-color-yellow-600: #dbbf8b;
+
--catppuccin-color-yellow-700: #cbb182;
+
--catppuccin-color-yellow-800: #b8a279;
+
--catppuccin-color-yellow-900: #a4906f;
+
--catppuccin-color-yellow-950: #8a7b64;
+
--catppuccin-color-green: #a6d189;
+
--catppuccin-color-green-500: #a6d189;
+
--catppuccin-color-green-400: #b2d69a;
+
--catppuccin-color-green-300: #bcdbaa;
+
--catppuccin-color-green-200: #c6e0b7;
+
--catppuccin-color-green-100: #d0e5c4;
+
--catppuccin-color-green-50: #d9e9cf;
+
--catppuccin-color-green-600: #9fc884;
+
--catppuccin-color-green-700: #93b97c;
+
--catppuccin-color-green-800: #87a974;
+
--catppuccin-color-green-900: #78966b;
+
--catppuccin-color-green-950: #678060;
+
--catppuccin-color-teal: #81c8be;
+
--catppuccin-color-teal-500: #81c8be;
+
--catppuccin-color-teal-400: #94cec6;
+
--catppuccin-color-teal-300: #a5d5cd;
+
--catppuccin-color-teal-200: #b4dad4;
+
--catppuccin-color-teal-100: #c1e0db;
+
--catppuccin-color-teal-50: #cde6e2;
+
--catppuccin-color-teal-600: #7cbfb6;
+
--catppuccin-color-teal-700: #73b1aa;
+
--catppuccin-color-teal-800: #6aa29c;
+
--catppuccin-color-teal-900: #5f908d;
+
--catppuccin-color-teal-950: #537b7b;
+
--catppuccin-color-sky: #99d1db;
+
--catppuccin-color-sky-500: #99d1db;
+
--catppuccin-color-sky-400: #a7d6df;
+
--catppuccin-color-sky-300: #b4dbe3;
+
--catppuccin-color-sky-200: #bfe0e7;
+
--catppuccin-color-sky-100: #cae5ea;
+
--catppuccin-color-sky-50: #d4e9ee;
+
--catppuccin-color-sky-600: #93c8d2;
+
--catppuccin-color-sky-700: #88b9c3;
+
--catppuccin-color-sky-800: #7ca9b3;
+
--catppuccin-color-sky-900: #6f96a0;
+
--catppuccin-color-sky-950: #60808a;
+
--catppuccin-color-sapphire: #85c1dc;
+
--catppuccin-color-sapphire-500: #85c1dc;
+
--catppuccin-color-sapphire-400: #97c8e0;
+
--catppuccin-color-sapphire-300: #a7cfe4;
+
--catppuccin-color-sapphire-200: #b5d6e7;
+
--catppuccin-color-sapphire-100: #c2ddeb;
+
--catppuccin-color-sapphire-50: #cee3ee;
+
--catppuccin-color-sapphire-600: #80b9d3;
+
--catppuccin-color-sapphire-700: #77abc4;
+
--catppuccin-color-sapphire-800: #6d9cb4;
+
--catppuccin-color-sapphire-900: #628ba1;
+
--catppuccin-color-sapphire-950: #55778b;
+
--catppuccin-color-blue: #8caaee;
+
--catppuccin-color-blue-500: #8caaee;
+
--catppuccin-color-blue-400: #9db5f0;
+
--catppuccin-color-blue-300: #abbff2;
+
--catppuccin-color-blue-200: #b9c9f3;
+
--catppuccin-color-blue-100: #c5d2f5;
+
--catppuccin-color-blue-50: #d0daf7;
+
--catppuccin-color-blue-600: #86a3e4;
+
--catppuccin-color-blue-700: #7d97d4;
+
--catppuccin-color-blue-800: #728ac2;
+
--catppuccin-color-blue-900: #677bad;
+
--catppuccin-color-blue-950: #596a95;
+
--catppuccin-color-lavender: #babbf1;
+
--catppuccin-color-lavender-500: #babbf1;
+
--catppuccin-color-lavender-400: #c2c3f2;
+
--catppuccin-color-lavender-300: #cacbf4;
+
--catppuccin-color-lavender-200: #d2d2f5;
+
--catppuccin-color-lavender-100: #d9daf7;
+
--catppuccin-color-lavender-50: #e0e0f8;
+
--catppuccin-color-lavender-600: #b2b3e7;
+
--catppuccin-color-lavender-700: #a5a6d6;
+
--catppuccin-color-lavender-800: #9698c4;
+
--catppuccin-color-lavender-900: #8687af;
+
--catppuccin-color-lavender-950: #727496;
+
--catppuccin-color-text: #c6d0f5;
+
--catppuccin-color-subtext1: #b5bfe2;
+
--catppuccin-color-subtext0: #a5adce;
+
--catppuccin-color-overlay2: #949cbb;
+
--catppuccin-color-overlay1: #838ba7;
+
--catppuccin-color-overlay0: #737994;
+
--catppuccin-color-surface2: #626880;
+
--catppuccin-color-surface1: #51576d;
+
--catppuccin-color-surface0: #414559;
+
--catppuccin-color-base: #303446;
+
--catppuccin-color-mantle: #292c3c;
+
--catppuccin-color-crust: #232634;
+
}
+
.macchiato {
+
--catppuccin-color-rosewater: #f4dbd6;
+
--catppuccin-color-rosewater-500: #f4dbd6;
+
--catppuccin-color-rosewater-400: #f5dfdb;
+
--catppuccin-color-rosewater-300: #f6e3df;
+
--catppuccin-color-rosewater-200: #f7e7e3;
+
--catppuccin-color-rosewater-100: #f8eae8;
+
--catppuccin-color-rosewater-50: #faeeec;
+
--catppuccin-color-rosewater-600: #e9d1cd;
+
--catppuccin-color-rosewater-700: #d7c1be;
+
--catppuccin-color-rosewater-800: #c4b0ad;
+
--catppuccin-color-rosewater-900: #ad9b9b;
+
--catppuccin-color-rosewater-950: #918384;
+
--catppuccin-color-flamingo: #f0c6c6;
+
--catppuccin-color-flamingo-500: #f0c6c6;
+
--catppuccin-color-flamingo-400: #f2cdcd;
+
--catppuccin-color-flamingo-300: #f3d3d3;
+
--catppuccin-color-flamingo-200: #f5d9d9;
+
--catppuccin-color-flamingo-100: #f6dfdf;
+
--catppuccin-color-flamingo-50: #f8e5e5;
+
--catppuccin-color-flamingo-600: #e5bdbe;
+
--catppuccin-color-flamingo-700: #d4afb0;
+
--catppuccin-color-flamingo-800: #c09fa1;
+
--catppuccin-color-flamingo-900: #aa8d90;
+
--catppuccin-color-flamingo-950: #8f777b;
+
--catppuccin-color-pink: #f5bde6;
+
--catppuccin-color-pink-500: #f5bde6;
+
--catppuccin-color-pink-400: #f6c5e9;
+
--catppuccin-color-pink-300: #f7cceb;
+
--catppuccin-color-pink-200: #f8d4ee;
+
--catppuccin-color-pink-100: #f9dbf0;
+
--catppuccin-color-pink-50: #fae1f3;
+
--catppuccin-color-pink-600: #eab5dc;
+
--catppuccin-color-pink-700: #d8a7cc;
+
--catppuccin-color-pink-800: #c498ba;
+
--catppuccin-color-pink-900: #ae86a6;
+
--catppuccin-color-pink-950: #92728d;
+
--catppuccin-color-mauve: #c6a0f6;
+
--catppuccin-color-mauve-500: #c6a0f6;
+
--catppuccin-color-mauve-400: #cdadf7;
+
--catppuccin-color-mauve-300: #d3b8f8;
+
--catppuccin-color-mauve-200: #d9c3f9;
+
--catppuccin-color-mauve-100: #dfcdfa;
+
--catppuccin-color-mauve-50: #e5d6fb;
+
--catppuccin-color-mauve-600: #bd99eb;
+
--catppuccin-color-mauve-700: #af8eda;
+
--catppuccin-color-mauve-800: #9f81c7;
+
--catppuccin-color-mauve-900: #8c72b1;
+
--catppuccin-color-mauve-950: #766196;
+
--catppuccin-color-red: #ed8796;
+
--catppuccin-color-red-500: #ed8796;
+
--catppuccin-color-red-400: #ef99a5;
+
--catppuccin-color-red-300: #f1a8b2;
+
--catppuccin-color-red-200: #f3b6be;
+
--catppuccin-color-red-100: #f4c3c9;
+
--catppuccin-color-red-50: #f6cfd3;
+
--catppuccin-color-red-600: #e28190;
+
--catppuccin-color-red-700: #d17886;
+
--catppuccin-color-red-800: #be6d7c;
+
--catppuccin-color-red-900: #a86170;
+
--catppuccin-color-red-950: #8d5362;
+
--catppuccin-color-maroon: #ee99a0;
+
--catppuccin-color-maroon-500: #ee99a0;
+
--catppuccin-color-maroon-400: #f0a7ad;
+
--catppuccin-color-maroon-300: #f2b4b8;
+
--catppuccin-color-maroon-200: #f3bfc3;
+
--catppuccin-color-maroon-100: #f5cacd;
+
--catppuccin-color-maroon-50: #f7d4d6;
+
--catppuccin-color-maroon-600: #e39299;
+
--catppuccin-color-maroon-700: #d2878f;
+
--catppuccin-color-maroon-800: #bf7b83;
+
--catppuccin-color-maroon-900: #a96e76;
+
--catppuccin-color-maroon-950: #8e5d67;
+
--catppuccin-color-peach: #f5a97f;
+
--catppuccin-color-peach-500: #f5a97f;
+
--catppuccin-color-peach-400: #f6b493;
+
--catppuccin-color-peach-300: #f7bea4;
+
--catppuccin-color-peach-200: #f8c8b3;
+
--catppuccin-color-peach-100: #f9d1c0;
+
--catppuccin-color-peach-50: #fadacc;
+
--catppuccin-color-peach-600: #eaa27a;
+
--catppuccin-color-peach-700: #d89572;
+
--catppuccin-color-peach-800: #c4886a;
+
--catppuccin-color-peach-900: #ae7961;
+
--catppuccin-color-peach-950: #926656;
+
--catppuccin-color-yellow: #eed49f;
+
--catppuccin-color-yellow-500: #eed49f;
+
--catppuccin-color-yellow-400: #f0d9ac;
+
--catppuccin-color-yellow-300: #f2ddb8;
+
--catppuccin-color-yellow-200: #f3e2c3;
+
--catppuccin-color-yellow-100: #f5e6cd;
+
--catppuccin-color-yellow-50: #f7ebd6;
+
--catppuccin-color-yellow-600: #e3cb99;
+
--catppuccin-color-yellow-700: #d2bb8e;
+
--catppuccin-color-yellow-800: #bfaa82;
+
--catppuccin-color-yellow-900: #a99775;
+
--catppuccin-color-yellow-950: #8e7f66;
+
--catppuccin-color-green: #a6da95;
+
--catppuccin-color-green-500: #a6da95;
+
--catppuccin-color-green-400: #b2dea4;
+
--catppuccin-color-green-300: #bce2b1;
+
--catppuccin-color-green-200: #c6e6bd;
+
--catppuccin-color-green-100: #d0eac8;
+
--catppuccin-color-green-50: #d9edd3;
+
--catppuccin-color-green-600: #9fd08f;
+
--catppuccin-color-green-700: #93c185;
+
--catppuccin-color-green-800: #85af7b;
+
--catppuccin-color-green-900: #769b6f;
+
--catppuccin-color-green-950: #648261;
+
--catppuccin-color-teal: #8bd5ca;
+
--catppuccin-color-teal-500: #8bd5ca;
+
--catppuccin-color-teal-400: #9cdad0;
+
--catppuccin-color-teal-300: #abded6;
+
--catppuccin-color-teal-200: #b8e3dc;
+
--catppuccin-color-teal-100: #c4e7e1;
+
--catppuccin-color-teal-50: #d0ebe7;
+
--catppuccin-color-teal-600: #85ccc1;
+
--catppuccin-color-teal-700: #7bbcb3;
+
--catppuccin-color-teal-800: #70aba4;
+
--catppuccin-color-teal-900: #639792;
+
--catppuccin-color-teal-950: #557f7d;
+
--catppuccin-color-sky: #91d7e3;
+
--catppuccin-color-sky-500: #91d7e3;
+
--catppuccin-color-sky-400: #a1dbe6;
+
--catppuccin-color-sky-300: #afe0e9;
+
--catppuccin-color-sky-200: #bbe4ec;
+
--catppuccin-color-sky-100: #c7e8ef;
+
--catppuccin-color-sky-50: #d2ecf2;
+
--catppuccin-color-sky-600: #8bcdd9;
+
--catppuccin-color-sky-700: #80bec9;
+
--catppuccin-color-sky-800: #75adb8;
+
--catppuccin-color-sky-900: #6899a4;
+
--catppuccin-color-sky-950: #58818b;
+
--catppuccin-color-sapphire: #7dc4e4;
+
--catppuccin-color-sapphire-500: #7dc4e4;
+
--catppuccin-color-sapphire-400: #91cbe7;
+
--catppuccin-color-sapphire-300: #a3d2ea;
+
--catppuccin-color-sapphire-200: #b2d8ed;
+
--catppuccin-color-sapphire-100: #bfdeef;
+
--catppuccin-color-sapphire-50: #cce4f2;
+
--catppuccin-color-sapphire-600: #78bbda;
+
--catppuccin-color-sapphire-700: #6fadca;
+
--catppuccin-color-sapphire-800: #659db9;
+
--catppuccin-color-sapphire-900: #5a8ba4;
+
--catppuccin-color-sapphire-950: #4d768c;
+
--catppuccin-color-blue: #8aadf4;
+
--catppuccin-color-blue-500: #8aadf4;
+
--catppuccin-color-blue-400: #9bb7f5;
+
--catppuccin-color-blue-300: #aac1f6;
+
--catppuccin-color-blue-200: #b8caf7;
+
--catppuccin-color-blue-100: #c4d3f8;
+
--catppuccin-color-blue-50: #cfdbfa;
+
--catppuccin-color-blue-600: #84a5e9;
+
--catppuccin-color-blue-700: #7a99d8;
+
--catppuccin-color-blue-800: #6f8bc5;
+
--catppuccin-color-blue-900: #637baf;
+
--catppuccin-color-blue-950: #546895;
+
--catppuccin-color-lavender: #b7bdf8;
+
--catppuccin-color-lavender-500: #b7bdf8;
+
--catppuccin-color-lavender-400: #c0c5f9;
+
--catppuccin-color-lavender-300: #c8ccf9;
+
--catppuccin-color-lavender-200: #d0d4fa;
+
--catppuccin-color-lavender-100: #d8dbfb;
+
--catppuccin-color-lavender-50: #dfe1fc;
+
--catppuccin-color-lavender-600: #afb5ed;
+
--catppuccin-color-lavender-700: #a2a7dc;
+
--catppuccin-color-lavender-800: #9398c8;
+
--catppuccin-color-lavender-900: #8286b2;
+
--catppuccin-color-lavender-950: #6d7297;
+
--catppuccin-color-text: #cad3f5;
+
--catppuccin-color-subtext1: #b8c0e0;
+
--catppuccin-color-subtext0: #a5adcb;
+
--catppuccin-color-overlay2: #939ab7;
+
--catppuccin-color-overlay1: #8087a2;
+
--catppuccin-color-overlay0: #6e738d;
+
--catppuccin-color-surface2: #5b6078;
+
--catppuccin-color-surface1: #494d64;
+
--catppuccin-color-surface0: #363a4f;
+
--catppuccin-color-base: #24273a;
+
--catppuccin-color-mantle: #1e2030;
+
--catppuccin-color-crust: #181926;
+
}
+
.mocha {
+
--catppuccin-color-rosewater: #f5e0dc;
+
--catppuccin-color-rosewater-500: #f5e0dc;
+
--catppuccin-color-rosewater-400: #f6e3e0;
+
--catppuccin-color-rosewater-300: #f7e7e4;
+
--catppuccin-color-rosewater-200: #f8eae7;
+
--catppuccin-color-rosewater-100: #f9edeb;
+
--catppuccin-color-rosewater-50: #faf0ee;
+
--catppuccin-color-rosewater-600: #ead6d2;
+
--catppuccin-color-rosewater-700: #d8c6c3;
+
--catppuccin-color-rosewater-800: #c4b3b1;
+
--catppuccin-color-rosewater-900: #ad9e9d;
+
--catppuccin-color-rosewater-950: #918585;
+
--catppuccin-color-flamingo: #f2cdcd;
+
--catppuccin-color-flamingo-500: #f2cdcd;
+
--catppuccin-color-flamingo-400: #f3d3d3;
+
--catppuccin-color-flamingo-300: #f5d8d8;
+
--catppuccin-color-flamingo-200: #f6dede;
+
--catppuccin-color-flamingo-100: #f7e3e3;
+
--catppuccin-color-flamingo-50: #f9e8e8;
+
--catppuccin-color-flamingo-600: #e7c4c4;
+
--catppuccin-color-flamingo-700: #d6b5b5;
+
--catppuccin-color-flamingo-800: #c2a4a5;
+
--catppuccin-color-flamingo-900: #ab9193;
+
--catppuccin-color-flamingo-950: #8f797c;
+
--catppuccin-color-pink: #f5c2e7;
+
--catppuccin-color-pink-500: #f5c2e7;
+
--catppuccin-color-pink-400: #f6c9ea;
+
--catppuccin-color-pink-300: #f7d0ec;
+
--catppuccin-color-pink-200: #f8d7ef;
+
--catppuccin-color-pink-100: #f9ddf1;
+
--catppuccin-color-pink-50: #fae3f3;
+
--catppuccin-color-pink-600: #eab9dd;
+
--catppuccin-color-pink-700: #d8abcc;
+
--catppuccin-color-pink-800: #c49bba;
+
--catppuccin-color-pink-900: #ad89a5;
+
--catppuccin-color-pink-950: #91738b;
+
--catppuccin-color-mauve: #cba6f7;
+
--catppuccin-color-mauve-500: #cba6f7;
+
--catppuccin-color-mauve-400: #d1b2f8;
+
--catppuccin-color-mauve-300: #d7bcf9;
+
--catppuccin-color-mauve-200: #dcc6f9;
+
--catppuccin-color-mauve-100: #e2d0fa;
+
--catppuccin-color-mauve-50: #e7d9fb;
+
--catppuccin-color-mauve-600: #c29fec;
+
--catppuccin-color-mauve-700: #b392da;
+
--catppuccin-color-mauve-800: #a285c7;
+
--catppuccin-color-mauve-900: #8f75b0;
+
--catppuccin-color-mauve-950: #786394;
+
--catppuccin-color-red: #f38ba8;
+
--catppuccin-color-red-500: #f38ba8;
+
--catppuccin-color-red-400: #f49cb3;
+
--catppuccin-color-red-300: #f5abbe;
+
--catppuccin-color-red-200: #f7b8c7;
+
--catppuccin-color-red-100: #f8c4d1;
+
--catppuccin-color-red-50: #f9d0d9;
+
--catppuccin-color-red-600: #e885a1;
+
--catppuccin-color-red-700: #d67b95;
+
--catppuccin-color-red-800: #c36f88;
+
--catppuccin-color-red-900: #ac6279;
+
--catppuccin-color-red-950: #905367;
+
--catppuccin-color-maroon: #eba0ac;
+
--catppuccin-color-maroon-500: #eba0ac;
+
--catppuccin-color-maroon-400: #edadb7;
+
--catppuccin-color-maroon-300: #efb8c0;
+
--catppuccin-color-maroon-200: #f1c3ca;
+
--catppuccin-color-maroon-100: #f3cdd2;
+
--catppuccin-color-maroon-50: #f5d6db;
+
--catppuccin-color-maroon-600: #e099a5;
+
--catppuccin-color-maroon-700: #cf8d98;
+
--catppuccin-color-maroon-800: #bc808b;
+
--catppuccin-color-maroon-900: #a6717c;
+
--catppuccin-color-maroon-950: #8b5f6a;
+
--catppuccin-color-peach: #fab387;
+
--catppuccin-color-peach-500: #fab387;
+
--catppuccin-color-peach-400: #fbbc99;
+
--catppuccin-color-peach-300: #fbc5a8;
+
--catppuccin-color-peach-200: #fcceb6;
+
--catppuccin-color-peach-100: #fcd6c3;
+
--catppuccin-color-peach-50: #fdddcf;
+
--catppuccin-color-peach-600: #efab81;
+
--catppuccin-color-peach-700: #dd9e78;
+
--catppuccin-color-peach-800: #c88f6e;
+
--catppuccin-color-peach-900: #b17e63;
+
--catppuccin-color-peach-950: #946a55;
+
--catppuccin-color-yellow: #f9e2af;
+
--catppuccin-color-yellow-500: #f9e2af;
+
--catppuccin-color-yellow-400: #fae5b9;
+
--catppuccin-color-yellow-300: #fae8c3;
+
--catppuccin-color-yellow-200: #fbebcb;
+
--catppuccin-color-yellow-100: #fbeed4;
+
--catppuccin-color-yellow-50: #fcf1dc;
+
--catppuccin-color-yellow-600: #eed8a7;
+
--catppuccin-color-yellow-700: #dcc79b;
+
--catppuccin-color-yellow-800: #c7b58d;
+
--catppuccin-color-yellow-900: #b0a07e;
+
--catppuccin-color-yellow-950: #93866b;
+
--catppuccin-color-green: #a6e3a1;
+
--catppuccin-color-green-500: #a6e3a1;
+
--catppuccin-color-green-400: #b2e6ae;
+
--catppuccin-color-green-300: #bce9b9;
+
--catppuccin-color-green-200: #c6ecc4;
+
--catppuccin-color-green-100: #d0efcd;
+
--catppuccin-color-green-50: #d9f2d7;
+
--catppuccin-color-green-600: #9fd99a;
+
--catppuccin-color-green-700: #92c88f;
+
--catppuccin-color-green-800: #85b682;
+
--catppuccin-color-green-900: #75a074;
+
--catppuccin-color-green-950: #638663;
+
--catppuccin-color-teal: #94e2d5;
+
--catppuccin-color-teal-500: #94e2d5;
+
--catppuccin-color-teal-400: #a3e5da;
+
--catppuccin-color-teal-300: #b1e8de;
+
--catppuccin-color-teal-200: #bdebe3;
+
--catppuccin-color-teal-100: #c8eee7;
+
--catppuccin-color-teal-50: #d3f1eb;
+
--catppuccin-color-teal-600: #8dd8cc;
+
--catppuccin-color-teal-700: #83c7bc;
+
--catppuccin-color-teal-800: #77b5ac;
+
--catppuccin-color-teal-900: #69a098;
+
--catppuccin-color-teal-950: #588681;
+
--catppuccin-color-sky: #89dceb;
+
--catppuccin-color-sky-500: #89dceb;
+
--catppuccin-color-sky-400: #9ae0ed;
+
--catppuccin-color-sky-300: #aae4ef;
+
--catppuccin-color-sky-200: #b7e7f1;
+
--catppuccin-color-sky-100: #c4ebf3;
+
--catppuccin-color-sky-50: #cfeef5;
+
--catppuccin-color-sky-600: #83d2e1;
+
--catppuccin-color-sky-700: #79c2d0;
+
--catppuccin-color-sky-800: #6eb0bd;
+
--catppuccin-color-sky-900: #619ba7;
+
--catppuccin-color-sky-950: #52828d;
+
--catppuccin-color-sapphire: #74c7ec;
+
--catppuccin-color-sapphire-500: #74c7ec;
+
--catppuccin-color-sapphire-400: #8bceee;
+
--catppuccin-color-sapphire-300: #9ed4f0;
+
--catppuccin-color-sapphire-200: #aedaf2;
+
--catppuccin-color-sapphire-100: #bce0f4;
+
--catppuccin-color-sapphire-50: #c9e5f6;
+
--catppuccin-color-sapphire-600: #6fbee2;
+
--catppuccin-color-sapphire-700: #66b0d1;
+
--catppuccin-color-sapphire-800: #5d9fbe;
+
--catppuccin-color-sapphire-900: #538ca8;
+
--catppuccin-color-sapphire-950: #46768e;
+
--catppuccin-color-blue: #89b4fa;
+
--catppuccin-color-blue-500: #89b4fa;
+
--catppuccin-color-blue-400: #9abdfb;
+
--catppuccin-color-blue-300: #aac6fb;
+
--catppuccin-color-blue-200: #b7cefc;
+
--catppuccin-color-blue-100: #c4d6fc;
+
--catppuccin-color-blue-50: #cfdefd;
+
--catppuccin-color-blue-600: #83acef;
+
--catppuccin-color-blue-700: #799fdd;
+
--catppuccin-color-blue-800: #6e90c9;
+
--catppuccin-color-blue-900: #617fb2;
+
--catppuccin-color-blue-950: #526b96;
+
--catppuccin-color-lavender: #b4befe;
+
--catppuccin-color-lavender-500: #b4befe;
+
--catppuccin-color-lavender-400: #bdc6fe;
+
--catppuccin-color-lavender-300: #c6cdfe;
+
--catppuccin-color-lavender-200: #ced4fe;
+
--catppuccin-color-lavender-100: #d6dbfe;
+
--catppuccin-color-lavender-50: #dee2ff;
+
--catppuccin-color-lavender-600: #acb5f3;
+
--catppuccin-color-lavender-700: #9fa8e1;
+
--catppuccin-color-lavender-800: #9098cc;
+
--catppuccin-color-lavender-900: #7f86b5;
+
--catppuccin-color-lavender-950: #6b7099;
+
--catppuccin-color-text: #cdd6f4;
+
--catppuccin-color-subtext1: #bac2de;
+
--catppuccin-color-subtext0: #a6adc8;
+
--catppuccin-color-overlay2: #9399b2;
+
--catppuccin-color-overlay1: #7f849c;
+
--catppuccin-color-overlay0: #6c7086;
+
--catppuccin-color-surface2: #585b70;
+
--catppuccin-color-surface1: #45475a;
+
--catppuccin-color-surface0: #313244;
+
--catppuccin-color-base: #1e1e2e;
+
--catppuccin-color-mantle: #181825;
+
--catppuccin-color-crust: #11111b;
+
}
+
}
+
@custom-variant latte (&:where(.latte, .latte *));
+
@custom-variant frappe (&:where(.frappe, .frappe *));
+
@custom-variant macchiato (&:where(.macchiato, .macchiato *));
+
@custom-variant mocha (&:where(.mocha, .mocha *));
+10 -13
src/about.md
···
Hello, I'm dish.
-
My main focuses are cybersecurity, system administration, and user experience.
-
-
I enjoy building things from scratch, tinkering, and try to deeply understand the tools I work with.
-
-
<br>
+
My main focuses are cybersecurity, system administration, and user experience. I enjoy building
+
things from scratch, tinkering, and try to deeply understand the tools I work with. {.p-note}
Currently, I'm a student at a university in the United States, working towards a Bachelor's Degree
in Cybersecurity.
···
However, my personal interests lie slightly closer to networking and system administration rather
than pure cybersecurity.
-
<br>
-
I've run my own homelab and servers for years(in fact, this website is hosted on one of them!), and they've been a very enjoyable experience to maintain.
+
I've run my own homelab and servers for years(in fact, this website is hosted on one of them!), and
+
they've been a very enjoyable experience to maintain.
-
<br>
-
In my personal life, I'm a {{ await comp.flag_text({flag:"trans"}) }} woman, and I spend lots of time advocating for trans rights in the spaces I'm in.
-
I feel very strongly that trans rights are human rights, and do my best to uplift all voices, though I am not perfect.
+
In my personal life, I'm a {{ await comp.flag_text({flag:"trans"}) }} woman, and I spend lots of
+
time advocating for trans rights in the spaces I'm in. I feel very strongly that trans rights are
+
human rights, and do my best to uplift all voices, though I am not perfect.
-
<br>
-
<br>
-
Find more about my projects on the Projects page, or read my blog(both linked in the header!), as I've put a lot of time into my projects and that blog.
+
Find more about my projects on the [[projects]] page, or read my [[blog/index.md|blog]], as I've put
+
a lot of time into both. Finally, I do a lot of [[volunteering]], especially for charity marathons!
+
Check out my work on that page.
+247
src/blog/consider-the-interface.md
···
+
---
+
title: Consider the Interface
+
summary: 'Why new technology kinda... sucks'
+
draft: true
+
published: 2025-03-02
+
templateEngine: [vto, md]
+
---
+
+
## Introduction
+
+
Technology always changes. That's something we take for granted, and it's something that will
+
continue for decades, centuries, and millennia to come. However, our technological prowess and
+
advancement always comes at a cost. There's always something sacrificed in the name of progress.
+
+
For the past few years, I've had a looming sense of dread about tech. This isn't a doomsday
+
premonition, a prophecy, or anything like that. I've just noticed things changing in ways that don't
+
make sense. Popular series disappearing, YouTube videos vanishing, and subscription prices
+
constantly increasing.
+
+
I think that this is something we're really going to have to reconcile, especially as we move into
+
this new age of generative AI, stolen and derivative works, and in general, as corporations seek to
+
take over our daily lives in ways they haven't tried before.
+
+
I was inspired to write this after watching a
+
[video by Drew Gooden](https://www.youtube.com/watch?v=P-TANCVoHlc) called _"Technology isn't fun
+
anymore"_, and one he referenced called
+
_[Why Young People Love Old Things](https://www.youtube.com/watch?v=0dEJiQnotR8)_, by the channel
+
Genuine Curiosity. These two videos helped me work out and describe the feeling I've felt about how
+
technology is going backwards while trying to seem like it's going forward.
+
+
As Drew mentions in his video, many companies seem to be making decisions that are against their
+
best interests, such as TV manufacturers enabling "Motion Smoothing" features by default, which can
+
then lead to major video artifacting, and in essence, degrades the viewing experience.
+
+
While I'm not going to explore the economic or market reasons behind these seemingly nonsensical
+
decisions, I do want to share my own experience with this sort of thing and try to examine why I do
+
the things that I do. Further, this is all from my own perspective, and while I do try to utilize
+
others' perspectives to elaborate on my own opinions, at the end of the day, this is how I see the
+
world. This is not intended to be an objective piece, just want to make that clear.
+
+
## Tactility
+
+
There's something special about using something tactile. Whether that's a temperature dial in a car,
+
a light switch, or using a mouse, it's a vastly different experience than the omnipresent
+
touchscreens and mousepads so many people use today. It feels like it better connects you to the
+
actual experience and action you're doing, giving you a better feeling of control and appreciation
+
for what you're doing. Touchscreens and mousepads have absolutely advanced in their capabilities,
+
with Apple's being leagues ahead of anyone else, capable of recognizing complex gestures,
+
distinguish from many fingers at once, and they give you control you might not otherwise have.
+
+
However, whenever I use one, it feels distinctly disconnected from the actual thing I'm doing. Yes,
+
it's better than the competitors, but it's still just sliding your fingers over a flat surface. On
+
the other hand, when I'm using my mouse, there's a distinct _click_ when I press down on the mouse
+
buttons, the scroll wheel has a slight whirring noise as it spins, my hand physically moves across
+
my desk. In essence, it's like I'm actually pointing at something, which is of course the original
+
purpose of a mouse, to be a "pointing device." Windows' Computer Management utility even calls the
+
section where you can find these the "Mice and other pointing devices" section.
+
+
This was a main point brought up in the Genuine Curiosity video, how that sense of tactility helps
+
us be better connected to what we're doing. This also connects to another article I've read, this
+
one about
+
[how to design physical car controls](https://www.theturnsignalblog.com/the-subtle-art-of-designing-physical-control-for-cars/).
+
This article brought up some very interesting ideas about how to make something digital feel analog,
+
such as with force feedback mechanisms. However, the article brings up one main point at the start
+
that I'd like to call your attention to:
+
+
> When you see any physical control, you automatically get certain expectations from its physical
+
> properties like size, shape, and weight.
+
+
This highlights something that we all intuitively understand, but in general, don't think about,
+
unless something goes wildly against this. How many times have you tried to pull on a door with a
+
handle, only to realize that it's marked "Push" instead? That design goes against this principle. We
+
intuitively know how things operate, and human-centered design takes that into account.
+
+
However, touchscreens are not human-centered. They do not give any sort of force feedback(aside from
+
your keyboard _maybe_ having some sort of haptic feedback), and they are by and large flat panes of
+
glass or plastic with no defining features. They don't have any sort of texture, no knobs or
+
switches or buttons, in fact, the ideal touchscreen is one that has no distinguishing features
+
whatsoever. This, I would argue, is not ideal. Touchscreens are designed for you to be constantly
+
looking at and engaged with them, and if you're not looking at them, your ability to use them is
+
severely hindered. On the other hand, in many cars, you can adjust the temperature or music volume
+
without ever taking your eyes off the road, because the controls were designed so that you need to
+
think as little as possible to understand how they work.
+
+
The issue comes when these two technologies combine. The lack of any sort of feedback, combined with
+
the fact that you're driving a 2000+ pound block of metal and plastic down a highway, creates a
+
deadly combo. There's no way to know what you're doing without taking your eyes off the road. And
+
that's incredibly dangerous when you're the driver of a car. It's why when I buy a car, I'm going to
+
be looking for one that has no touchscreen, preferably. I don't want to be a distracted driver, and
+
another point on a bar chart.
+
+
To be clear, I don't think any of these are novel revelations. Many folks have said this exact kind
+
of thing before, and it's constantly ignored. However, I think that we're at a critical turning
+
point in how we interface with computers. More and more, for better or for worse, is being done
+
through voice and chat-like interfaces. Not your typical desktop and web browser experience, but
+
asking questions and receiving answers(whether or not they're correct, I'm personally very against
+
generative AI) has become a core user experience in many places, even if it isn't the right UX for
+
the use.
+
+
### Mechanisms
+
+
Another point of tactility that isn't so obvious in its utility is the ability to see the mechanisms
+
of how things work. I built my own blog and know how it works. I know what happens and when to make
+
the webpage you're reading right now. I like biking, and I can see clearly how it works, it's simple
+
and elegant. With a car, this is getting harder and harder to do. More and more critical components
+
of your car are controlled by electronic black boxes that take inputs and give outputs, with no real
+
way to understand how they work.
+
+
If you're a programmer or maker or some sort of creative type, you hopefully understand what I mean.
+
Being able to make things and understand what went into them, find out how they work, show someone
+
how two paints blend together, that to me is the magic of making things. This could be its own
+
article on its own(and it may be in the future!), but this is something I strongly emphasize with.
+
If I want to, I can take apart the keyboard I'm typing this on. I can open up my desktop, recompile
+
my kernel, add another line to this document. I know exactly where to go in my blog to make changes
+
to my HTML validator, and I can show someone why I think I did something in an interesting way.
+
+
To me, this is the fundamental misunderstanding of modern technology. Many people(not saying even
+
close to a majority, but a substantial amount nonetheless) enjoy tinkering. They buy things just to
+
take them apart and learn how they work. They read through code and fix bugs. They work to create
+
something they find beautiful, in whatever way that is. This is why I fell in love with technology,
+
and why I don't like modern technology as much. The joy I feel from taking apart an old laptop to
+
replace the failing boot drive is the same I get from writing code to render nice tables in a Django
+
app.
+
+
## Simplicity
+
+
Before you say anything: Yes, I know that user interfaces have gotten way simpler in many ways, and
+
especially in positive ways too, such as improved focus on accessibility and ensuring that things
+
"just work". However, I also see a trend of there being fewer and fewer escape hatches to allow
+
power-users the ability to go beyond what the normal interface allows. To be clear, I think this is
+
a good idea from a business perspective, as power users are not a large market, and so products that
+
aim to have mass-market appeal don't have a necessity for this kind of feature.
+
+
However, the aspect I want to focus on here is the underlying technical complexity. In some ways,
+
complexity is needed. The world is a big place, there's a lot of people with a lot of needs. There
+
needs to be complexity somewhere, but it feels like the world is gravitating towards needless
+
complexity all the time. I see so many cases of basic static web apps being built with massive JS
+
frameworks, shipping megabytes of code for something that displays a list of items from a server.
+
Sure, you might need _some_ JS, but not millions of bytes on it. They're not free to use(in terms of
+
maintenance burden), and they're definitely not free for end-users(JS takes way longer to execute,
+
while CSS and HTML are much faster, since they're not full programming languages). Therefore,
+
technologies like CSS-in-JS[^CSS-in-JS] just feel like they overcomplicate things, instead of making
+
it easier. Now, I'd have to deal with increased JS bundle sizes, harder debugging, and an overall
+
worse developer and user experience.
+
+
Something you will hear me emphasize a lot is good user experience. It is one of the areas I most
+
heavily focus on, as this site hopefully demonstrates. I aim to keep page sizes small, everything
+
compressed, and reduce the amount of JavaScript needed at runtime. This makes my pages performant
+
and also accessible. I also try to keep the colors well-balanced, using a variety of accessibility
+
checkers, both automated and manual, to make my content as available as possible. And so, I would
+
argue, the ever-increasing complexity of modern front-end development simply goes against that, and
+
makes things less accessible. By reducing the amount of JavaScript needed for a webpage, you
+
increase the number of users you can have, because your site is then more accessible to those with
+
low-end devices. Ensuring that users with low-end devices have the ability to access a site, even if
+
they have to disable JS to do it, is important(barring situations such as payment processing or
+
anything else that absolutely **REQUIRES** JS).
+
+
## Ownership
+
+
Another thing I notice with new products, for better or for worse, is that you don't own them. It's
+
always a subscription service, or it's a cloud service with proprietary file formats, or a streaming
+
service that will delete content that barely doesn't hit popularity metrics this month. As someone
+
who enjoys coming back to things weeks, months, sometimes even years after I last interacted with
+
them, this is devastating. The fact that so much of the stuff I enjoy today could be gone tomorrow
+
is frankly a little bit terrifying. It's why I'm a chronic archivist and that person that tells you
+
to back up your stuff. Because this matters to me, and I wish it mattered to more folks.
+
+
### You don't own new things
+
+
This is the big issue in all of this. Companies like
+
[Steam](https://www.ign.com/articles/steam-now-warns-customers-theyre-buying-a-license-not-a-game-before-they-continue-to-payment),
+
[Amazon](https://blog.the-ebook-reader.com/2025/02/22/amazon-now-openly-discloses-youre-buying-a-license-to-view-kindle-ebooks/),
+
and more are reminding customers at checkout that when they buy something, **it's not theirs.** And
+
yet, many will still click the Buy button, because these companies make it hard to realize you're
+
just getting a license, and they can take that away at any time. Hell, even the US FTC
+
[has a page](https://consumer.ftc.gov/consumer-alerts/2024/04/do-you-really-own-digital-items-you-paid)
+
on the fact you don't really own digital items. As consumers, we should be advocating for permanent
+
access to content, whether that's through the DRM-free game downloads offered by GOG, DRM-free books
+
from SmashWords, or any other number of companies that respect you more as a consumer.
+
+
### Repairability
+
+
I am a massive advocate for consumer right-to-repair and easily accessible repair guides for
+
everyone. If you own a device, you should be able to open it up and repair it if you want to, or
+
send it to someone to do that for you. There shouldn't be anything in the way of you doing so, and
+
allowing customers to repair their own devices can build trust in a brand in a way that no other
+
form of consumer control can do. Allowing customers to peer behind the curtain and see how their
+
devices work, understand how everything fits together, is to me, more powerful a statement of
+
customer trust than anything else. It signals that you trust your users and you want them to use
+
your devices however they want. It gives the customer a feeling of control, which many companies are
+
seeking to take away.
+
+
## Algorithms
+
+
{{ await comp.lorem_ipsum() }}
+
+
## What I use
+
+
{{ await comp.lorem_ipsum() }}
+
+
### RSS Reader
+
+
{{ await comp.lorem_ipsum() }}
+
+
### Self-Hosted Music Server
+
+
{{ await comp.lorem_ipsum() }}
+
+
### Mechanical Keyboard / Mouse
+
+
As mentioned above, tactility is one of the key aspects of older devices that I love, and
+
specifically, keyboards. There's a reason so many folks love old IBM Model M keyboards, and that's
+
because IBM designed springs that were light enough to press down quickly but heavy enough to give
+
feedback on whether you pressed a key. While I don't have one of those, I do use a keyboard with
+
tactile keys(Gazzew U4T Boba 62g switches, for the keyboard nerds), which helps replicate that
+
feeling but in a more budget and space-friendly way(I use a 75% keyboard).
+
+
To me, this is the ideal typing device. It allows me to do proper 10-finger touch typing, is small
+
enough that I don't have to move my hands much to reach every single key, even the function keys to
+
change music or whatever, and feels like I'm actually typing. I love my Framework Laptop so much,
+
but its keyboard will never compare to my mechanical. The mechanical one feels built for typing, and
+
gives the right amount of feedback that I can just keep typing and typing without looking at the
+
keyboard, while with the laptop, I look down somewhat frequently. I'm used to touch-typing, so it's
+
not _too big_ of a deal, but it still ruins the flow when I have to.
+
+
The same goes for my mouse. I use a Logitech MX Master 3, and it's a really nice mouse. Using it
+
instead of a touchpad lets my arm and wrist do the work of moving the cursor where I want it to go.
+
I don't have to consciously think about how to do it, my mind just works. With touchpads, I'm
+
constantly readjusting my fingers to make sure I can move my mouse, they can get in the way when I'm
+
typing, and they feel less satisfying to click than a mouse does.
+
+
A lot of this is subjective, no doubt, but having these tools allows me to work more productively
+
than I could without them. They help me stay in the flow of typing, coding, gaming, or anything else
+
I'm doing, and they do genuinely make my life better. I would not have written so much in this blog
+
post if I wasn't doing it on my keyboard, laptop keyboards, even ones as well-made as the
+
Framework's, just don't compare to a proper mechanical switch that's designed for a good typing
+
experience.
+
+
## Conclusion
+
+
{{ await comp.lorem_ipsum() }}
+
+
[^CSS-in-JS]: To be honest, I've never quite understood the need for CSS-in-JS. It always felt to me
+
like it was more trouble than it's worth. Maybe someone can explain what the benefits are?
+
Because to me, I would just write CSS with composable classes, like I do for this site. I can
+
always grep to see what classes are unused, and even if I don't, PurgeCSS/LightningCSS remove
+
unused styles anyways.
+1
src/blog/example-blog-post-2.md
···
summary: "Testing how posts work in lume"
draft: true
published: 2025-02-14
+
templateEngine: [md]
---
## example blog post 2
+11
src/blog/example-blog-post.md
···
---
## meow meow! {#meow-meow}
+
+
<!-- deno-fmt-ignore-start -->
+
> [!failure]+ Open default
+
> You should see this
+
+
> [!bug]- Closed default
+
> You shouldn't see this
+
+
> [!error] No folding
+
> You shouldn't be able to close this
+
<!-- deno-fmt-ignore-end -->
+57
src/blog/frost-fatales-2025-not-really-behind-the-scenes.md
···
+
---
+
title: Frost Fatales 2025 (not really) Behind the Scenes
+
summary: "dish&apos;s experience at Frost Fatales 2025"
+
draft: true
+
published: 2025-03-15
+
templateEngine: [vto, md]
+
---
+
+
Recently, I got the opportunity to volunteer in-studio at the charity speedrunning event _Frost
+
Fatales 2025_, where we raised a total of **$150,675** for the
+
[National Women's Law Center](https://nwlc.org). This was an incredible opportunity for me
+
personally, so I was thrilled that I was able to volunteer. I've never done something like this
+
before, so I was both incredibly nervous but also super excited. I've been a member of the Frame
+
Fatales community for about a year now, and this was a position I hadn't expected getting. Here, I
+
just want to go over a few of my thoughts on the experience, and why I would highly encourage anyone
+
who feels femme or like a woman to join, even if they're not a gamer or speedrunner or may even feel
+
like they don't belong.
+
+
<!-- deno-fmt-ignore-start -->
+
> [!note]- One small note
+
> Please don't see this as me trying to force you to join, as much as I encourage it! Frame
+
> Fatales is a super inclusive and wonderful community, even for femme nonbinary folks, trans women,
+
> and of course cis women.
+
<!-- deno-fmt-ignore-end -->
+
+
## Frame Fatales
+
+
First, what is Frame Fatales?
+
+
To quote [its website](https://framefatales.com):
+
+
> Frame Fatales is a community of women and femmes who are interested in speedrunning, charity
+
> events, and gaming! It is a space for you if you identify as femme or a woman in any way that is
+
> meaningful to you. Cis, trans, nonbinary, and gender non-conforming individuals are all welcome to
+
> join the Fatales community!
+
+
And to put it more simply: If you see yourself as a woman or femme in any way that is meaningful to
+
you, you're welcome in the community. It's a space for anyone who feels they may belong. As a trans
+
woman, this space has been wonderful to help me explore my identity and find folks in the same place
+
as me. I was welcomed just as I am now even a year ago, when I identified as "fem-leaning
+
nonbinary", and you'll be welcomed the same.
+
+
## The Experience
+
+
<!-- deno-fmt-ignore-start -->
+
> [!info] Legal Stuff
+
> I am under an NDA for a lot of my experience. I'm trying to be as detailed as I can,
+
> but at the same time I am going to err on the side of caution when I need to.
+
> I can't show pictures of studio stuff, software interfaces, the address of the studio, or anything like that.
+
<!-- deno-fmt-ignore-end -->
+
+
With that out of the way, I will say that this has been a very good experience. The folks I worked
+
with were wonderful, and the atmosphere was very positive all around. GDQ has built a lot of nice
+
behind-the-scenes tooling that makes it really easy for beginners like me to do well and succeed,
+
and I genuinely think that its one of their strengths. I can do the same things that folks with 5+
+
years of experience can do, and in about the same amount of time, because the tooling has been
+
well-thought-out and is designed to make things intuitive and fast.
+2 -2
src/blog/hello-world.md
···
title: Hello World!
summary: 'The first real blog post'
draft: false
-
published: '2025-02-20'
+
published: 2025-02-20
---
Well, here we are again. This the 8th rewrite of this blog, and hopefully the final one, since Lume
···
neato!), and hopefully inspires you to create your own Lume-based blog.
<!-- deno-fmt-ignore-start -->
-
> [!note] Disclaimer!
+
> [!note]- Disclaimer!
> I'm by no means a wizard with this stuff, my code is pretty messy.
> However, I am happy with it, and that's what matters for me.
<!-- deno-fmt-ignore-end -->
+1 -1
src/blog/index.md
···
---
-
title: blog
+
title: Blog
summary: "dish's blog posts"
layout: layouts/blog-list.vto
category: "index"
+1 -1
src/index.md
···
---
-
title: a space
+
title: "0x64697368"
summary: "Lover of computers, programming, and sysadmin."
layout: layouts/home.vto
---
+8 -5
src/static/icons/bsi.min.css
···
@font-face {
font-display: block;
font-family: bootstrap-icons;
-
src: url("/static/icons/bsi.min.woff2?v=1740282679") format("woff2");
+
src: url("/static/icons/bsi.min.woff2?v=1741053800") format("woff2");
}
.bi::before,
[class*=" bi-"]::before,
···
vertical-align: -0.125em;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
-
}.bi-bug::before {
+
}.bi-arrow-return-left::before {
+
content: "\f131";
+
}
+
.bi-bug::before {
content: "\f1dc";
}
.bi-check-circle::before {
···
.bi-exclamation-triangle::before {
content: "\f33b";
}
+
.bi-hash::before {
+
content: "\f40a";
+
}
.bi-info-circle::before {
content: "\f431";
}
···
}
.bi-list-ul::before {
content: "\f478";
-
}
-
.bi-paragraph::before {
-
content: "\f4b4";
}
.bi-pencil::before {
content: "\f4cb";
src/static/icons/bsi.min.woff2

This is a binary file and will not be displayed.

+2 -2
src/static/icons/si.min.css
···
@font-face {
font-family: "Simple Icons";
src:
-
url("/static/icons/si.min.woff2?v=1739249025") format("woff2")
+
url("/static/icons/si.min.woff2?v=1740520259") format("woff2"),
}
.si {
font-style: normal;
font-family: "Simple Icons", sans-serif;
vertical-align: middle;
-
}.si-bluesky::before { content: "\eb81"; }.si-forgejo::before { content: "\edf3"; }.si-github::before { content: "\ee42"; }.si-kofi::before { content: "\eff6"; }.si-lastdotfm::before { content: "\f01f"; }.si-rss::before { content: "\f38e"; }
+
}.si-bluesky::before { content: "\eb81"; }.si-forgejo::before { content: "\edf3"; }.si-github::before { content: "\ee42"; }.si-kofi::before { content: "\eff7"; }.si-lastdotfm::before { content: "\f020"; }.si-rss::before { content: "\f38f"; }
src/static/icons/si.min.woff2

This is a binary file and will not be displayed.

src/static/images/author.png

This is a binary file and will not be displayed.

+29
src/static/scripts/highlight-accessibility.js
···
+
const delay = (ms) => new Promise((res) => setTimeout(res, ms));
+
+
function highlightElement(xpath, url) {
+
url2 = url.replace("index.html", "");
+
if (!(window.location.pathname == url2)) {
+
window.location.pathname = url2;
+
console.info(
+
`Returned Early: ${window.location.pathname} does not equal ${url2}`,
+
);
+
return;
+
}
+
const node = document.evaluate(
+
xpath,
+
document,
+
null,
+
XPathResult.FIRST_ORDERED_NODE_TYPE,
+
null,
+
);
+
+
el = node.singleNodeValue;
+
const prevBorder = el.style.border;
+
const prevRadius = el.style.borderRadius;
+
el.style.border = "solid red";
+
// el.style.borderRadius = "100%";
+
el.scrollIntoView({ behavior: "smooth", block: "center" });
+
// delay(5000);
+
// el.style.border = prevBorder;
+
// el.style.borderRadius = prevRadius;
+
}
+11
src/static/scripts/open-in-editor.js
···
+
// Taken from https://github.com/pixeldesu/pixelde.su/blob/main/src/assets/js/modules/vscode.js
+
// Adopted by dish
+
const editorTargets = document.querySelectorAll("[data-editor-file]");
+
editorTargets.forEach((target) => {
+
target.addEventListener("click", (event) => {
+
globalThis.open(
+
`zed://file/${event.currentTarget.dataset.editorFile}`,
+
"_self",
+
);
+
});
+
});
+152 -109
src/static/styles.css
···
@import "tailwindcss";
-
.latte {
-
--ctp-rosewater: rgb(220 138 120);
-
--ctp-flamingo: rgb(221 120 120);
-
--ctp-pink: rgb(234 118 203);
-
--ctp-mauve: rgb(136 57 239);
-
--ctp-red: rgb(210 15 57);
-
--ctp-maroon: rgb(230 69 83);
-
--ctp-peach: rgb(254 100 11);
-
--ctp-yellow: rgb(223 142 29);
-
--ctp-green: rgb(64 160 43);
-
--ctp-teal: rgb(23 146 153);
-
--ctp-sky: rgb(4 165 229);
-
--ctp-sapphire: rgb(32 159 181);
-
--ctp-blue: rgb(30 102 245);
-
--ctp-lavender: rgb(114 135 253);
-
--ctp-text: rgb(76 79 105);
-
--ctp-subtext1: rgb(92 95 119);
-
--ctp-subtext0: rgb(108 111 133);
-
--ctp-overlay2: rgb(124 127 147);
-
--ctp-overlay1: rgb(140 143 161);
-
--ctp-overlay0: rgb(156 160 176);
-
--ctp-surface2: rgb(172 176 190);
-
--ctp-surface1: rgb(188 192 204);
-
--ctp-surface0: rgb(204 208 218);
-
--ctp-base: rgb(239 241 245);
-
--ctp-mantle: rgb(230 233 239);
-
--ctp-crust: rgb(220 224 232);
-
--callout-blend-mode: darken;
-
}
+
@import "mocha.css";
+
.mocha {
-
--ctp-rosewater: rgb(245 224 220);
-
--ctp-flamingo: rgb(242 205 205);
-
--ctp-pink: rgb(245 194 231);
-
--ctp-mauve: rgb(203 166 247);
-
--ctp-red: rgb(243 139 168);
-
--ctp-maroon: rgb(235 160 172);
-
--ctp-peach: rgb(250 179 135);
-
--ctp-yellow: rgb(249 226 175);
-
--ctp-green: rgb(166 227 161);
-
--ctp-teal: rgb(148 226 213);
-
--ctp-sky: rgb(137 220 235);
-
--ctp-sapphire: rgb(116 199 236);
-
--ctp-blue: rgb(137 180 250);
-
--ctp-lavender: rgb(180 190 254);
-
--ctp-text: rgb(205 214 244);
-
--ctp-subtext1: rgb(186 194 222);
-
--ctp-subtext0: rgb(166 173 200);
-
--ctp-overlay2: rgb(147 153 178);
-
--ctp-overlay1: rgb(127 132 156);
-
--ctp-overlay0: rgb(108 112 134);
-
--ctp-surface2: rgb(88 91 112);
-
--ctp-surface1: rgb(69 71 90);
-
--ctp-surface0: rgb(49 50 68);
-
--ctp-base: rgb(30 30 46);
-
--ctp-mantle: rgb(24 24 37);
-
--ctp-crust: rgb(17 17 27);
--callout-blend-mode: lighten;
}
@theme {
-
--color-*: initial;
+
/* Remove initial variables we don't need */
+
--blur-*: initial;
+
--perspective-*: initial;
+
--drop-shadow-*: initial;
+
--shadow-*: initial;
+
--inset-shadow-*: initial;
+
--ease-*: initial;
+
--animate-*: initial;
--font-sans: "Inter", "ui-sans-serif", "system-ui", "sans-serif";
--font-serif: "IBM Plex Serif", "ui-serif", "serif";
-
--text-inherit: inherit;
-
--p-callout: 12px 12px 12px 24px;
-
/* Flag Colors */
--color-trans-blue: #5bcffa;
--color-trans-pink: #f5abb9;
···
--color-lesbian-pink3: #a50062;
}
-
@theme inline {
-
--color-rosewater: var(--ctp-rosewater);
-
--color-flamingo: var(--ctp-flamingo);
-
--color-pink: var(--ctp-pink);
-
--color-mauve: var(--ctp-mauve);
-
--color-red: var(--ctp-red);
-
--color-maroon: var(--ctp-maroon);
-
--color-peach: var(--ctp-peach);
-
--color-yellow: var(--ctp-yellow);
-
--color-green: var(--ctp-green);
-
--color-teal: var(--ctp-teal);
-
--color-sky: var(--ctp-sky);
-
--color-sapphire: var(--ctp-sapphire);
-
--color-blue: var(--ctp-blue);
-
--color-lavender: var(--ctp-lavender);
-
--color-text: var(--ctp-text);
-
--color-subtext1: var(--ctp-subtext1);
-
--color-subtext0: var(--ctp-subtext0);
-
--color-overlay2: var(--ctp-overlay2);
-
--color-overlay1: var(--ctp-overlay1);
-
--color-overlay0: var(--ctp-overlay0);
-
--color-surface2: var(--ctp-surface2);
-
--color-surface1: var(--ctp-surface1);
-
--color-surface0: var(--ctp-surface0);
-
--color-base: var(--ctp-base);
-
--color-mantle: var(--ctp-mantle);
-
--color-crust: var(--ctp-crust);
+
@layer components {
+
[data-editor-file] {
+
@apply transition-all rounded-md;
+
pointer-events: auto;
+
}
+
[data-editor-file]:hover {
+
@apply transition-all outline-ctp-blue outline-2 outline-offset-4
+
bg-ctp-blue/10 pl-1;
+
}
}
@utility h-entry {
a {
-
@apply text-blue underline;
+
@apply text-ctp-blue underline;
+
}
+
+
h2 {
+
@apply text-2xl font-sans;
}
p {
@apply mb-6;
}
+
+
blockquote {
+
@apply border-l-2 pl-6 relative border-ctp-overlay0 italic;
+
left: -0.5rem;
+
}
+
div.callout-content > p {
@apply mb-0;
}
h2:has(a.header-anchor) {
-
@apply text-3xl text-mauve relative mb-8 no-underline;
+
@apply text-3xl text-ctp-mauve relative mb-8;
left: -1.75rem;
}
-
h2:has(a.header-anchor)::before {
-
@apply text-2xl relative mr-1;
-
top: 0.25rem;
+
+
h3:has(a.header-anchor) {
+
@apply text-2xl text-ctp-mauve relative mb-6;
+
left: -1.75rem;
+
}
+
+
a.header-anchor::before {
+
@apply relative mr-1 inline-block;
font-family: "bootstrap-icons";
-
content: "\F4B4";
+
content: "\F40A";
+
top: 0.225rem;
}
}
@utility header-anchor {
-
@apply text-mauve!;
+
@apply text-ctp-mauve!;
+
}
+
+
/* Disable <detail> folding on non-folding admonitions */
+
@utility no-fold {
+
pointer-events: none;
}
+
/* Callouts/Admonitions */
@utility callout {
-
@apply border-1 rounded-sm py-2 pl-2 pr-4 border-solid overflow-hidden;
-
border-color: --alpha(var(--callout-color) / 50%);
+
@apply outline-1 rounded-sm py-2 pl-2 pr-4 outline-solid overflow-hidden;
+
outline-color: --alpha(var(--callout-color) / 50%);
margin: 1em 0;
mix-blend-mode: var(--callout-blend-mode);
background-color: --alpha(var(--callout-color) / 15%);
.callout-title {
-
@apply text-lg mb-1 flex gap-2 items-start font-semibold text-inherit;
+
@apply text-lg mb-2 flex gap-2 items-start font-semibold w-full;
color: rgb(var(--callout-color));
-
.callout-title-icon {
+
&::before {
@apply flex items-center text-xl leading-7 mr-1;
flex: 0 0 auto;
+
font-family: "bootstrap-icons";
+
content: var(--callout-icon);
}
-
.callout-fold {
-
@apply justify-self-end ml-auto;
+
.no-fold &::after {
+
content: "" !important;
+
}
+
+
&::after {
+
margin-left: auto;
+
font-family: "bootstrap-icons";
+
background-color: rgb(var(--callout-color));
+
content: "\F285";
+
}
+
+
[open] &::after {
+
margin-left: auto;
font-family: "bootstrap-icons";
background-color: rgb(var(--callout-color));
+
content: "\F282";
}
}
.callout-content {
@apply overflow-x-auto pl-2;
+
+
[data-editor-file]:hover {
+
@apply relative top-2 mr-2;
+
}
}
-
&[data-callout="todo"],
-
&[data-callout="info"],
&[data-callout="note"] {
-
--callout-color: var(--ctp-blue);
+
--callout-color: var(--color-ctp-blue);
+
--callout-icon: "\F4CB";
+
}
+
+
&[data-callout="todo"] {
+
--callout-color: var(--color-ctp-blue);
+
--callout-icon: "\F26B";
+
}
+
+
&[data-callout="info"] {
+
--callout-color: var(--color-ctp-blue-700);
+
--callout-icon: "\F431";
}
&[data-callout="success"],
&[data-callout="check"],
&[data-callout="done"] {
-
--callout-color: var(--ctp-green);
+
--callout-color: var(--color-ctp-green);
+
--callout-icon: "\F272";
}
&[data-callout="warning"],
&[data-callout="caution"],
&[data-callout="attention"] {
-
--callout-color: var(--ctp-yellow);
+
--callout-color: var(--color-ctp-yellow);
+
--callout-icon: "\F33B";
+
}
+
+
&[data-callout="question"] {
+
--callout-color: var(--color-ctp-yellow-900);
+
--callout-icon: "\F505";
}
&[data-callout="danger"],
&[data-callout="error"] {
-
--callout-color: var(--ctp-red);
+
--callout-color: var(--color-ctp-maroon-400);
+
--callout-icon: "\F46F";
+
}
+
+
&[data-callout="failure"] {
+
--callout-color: var(--color-ctp-maroon-800);
+
--callout-icon: "\F659";
+
}
+
+
&[data-callout="bug"] {
+
--callout-color: var(--color-ctp-maroon);
+
--callout-icon: "\F1DC";
}
&[data-callout="tip"],
&[data-callout="hint"] {
-
--callout-color: var(--ctp-teal);
+
--callout-color: var(--color-ctp-teal);
+
--callout-icon: "\F7F6";
}
&[data-callout="example"] {
-
--callout-color: var(--ctp-mauve);
+
--callout-color: var(--color-ctp-mauve);
+
--callout-icon: "\F478";
}
&[data-callout="abstract"],
&[data-callout="summary"],
&[data-callout="tldr"] {
-
--callout-color: var(--ctp-sky);
+
--callout-color: var(--color-ctp-sky);
+
--callout-icon: "\F727";
}
&[data-callout="quote"],
&[data-callout="cite"] {
-
--callout-color: var(--ctp-overlay0);
+
--callout-color: var(--color-ctp-overlay0);
+
--callout-icon: "\F6B0";
+
}
+
}
+
+
/* Start Footnotes */
+
+
@utility fn {
+
@apply mb-2;
+
p {
+
@apply inline;
+
}
+
[data-editor-file] {
+
@apply inline;
}
}
+
@utility fn-backref {
+
&::before {
+
@apply inline-block text-ctp-blue align-bottom;
+
content: "\F131";
+
font-family: "bootstrap-icons";
+
}
+
}
+
+
/* End Footnotes */
+
+
/* Start ToC */
+
+
@utility toc {
+
@apply mt-3 mb-8;
+
}
+
+
@utility toc-l1 {
+
@apply border-l-2 border-ctp-overlay0 pl-2 ml-1 text-xl;
+
}
+
+
@utility toc-l2 {
+
@apply text-base border-l-2 pl-2 border-ctp-surface2 first-of-type:mt-1 last-of-type:mb-1;
+
}
+
+
/* End ToC */
+
+
/* Extra arbitrary styles */
details.callout .callout-title {
margin: 0;
cursor: pointer;
+13
src/volunteering.md
···
+
---
+
title: dish's Volunteering
+
summary: "Who is dish? Find out here."
+
layout: "layouts/volunteering.vto"
+
templateEngine: [vto, md]
+
---
+
+
I'm a very active volunteer in a lot of communities. Find out what I've done below, and feel free to
+
contact me if you'd like a volunteer for your event!
+
+
> [!note]+ Notice of non-endorsement I am not an official spokesperson for these communities, nor
+
> should my involvement in their events be seen as an endorsement of me. This page is more for my
+
> own tracking.